1.1 --- a/epoc32/include/stdapis/stlport/config/stl_confix.h Tue Mar 16 16:12:26 2010 +0000
1.2 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000
1.3 @@ -1,78 +0,0 @@
1.4 -/*
1.5 - * Copyright (c) 1999
1.6 - * Boris Fomitchev
1.7 - *
1.8 - * This material is provided "as is", with absolutely no warranty expressed
1.9 - * or implied. Any use is at your own risk.
1.10 - *
1.11 - * Permission to use or copy this software for any purpose is hereby granted
1.12 - * without fee, provided the above notices are retained on all copies.
1.13 - * Permission to modify the code and to distribute modified code is granted,
1.14 - * provided the above notices are retained, and a notice that the code was
1.15 - * modified is included with the above copyright notice.
1.16 - *
1.17 - */
1.18 -
1.19 -/*
1.20 - * STLport configuration file
1.21 - * It is internal STLport header - DO NOT include it directly
1.22 - * Purpose of this file : to define STLport settings that depend on
1.23 - * compiler flags or can be otherwise missed
1.24 - *
1.25 - */
1.26 -
1.27 -#ifndef _STLP_CONFIX_H
1.28 -# define _STLP_CONFIX_H
1.29 -
1.30 -/* If, by any chance, C compiler gets there, try to help it to pass smoothly */
1.31 -# if ! defined (__cplusplus) && ! defined (_STLP_HAS_NO_NAMESPACES)
1.32 -# define _STLP_HAS_NO_NAMESPACES
1.33 -# endif
1.34 -
1.35 -# if defined(__MINGW32__)
1.36 -# define _STLP_NO_DRAND48
1.37 -# endif
1.38 -
1.39 -/* Modena C++ library */
1.40 -#if defined (__MWERKS__) && __MWERKS__ <= 0x2303 || (defined (__KCC) && __KCC_VERSION < 3400)
1.41 -# include <mcompile.h>
1.42 -# define _STLP_USE_MSIPL 1
1.43 -# if defined (__KCC) || (defined(__MSL_CPP__) && \
1.44 - ( (__MSL_CPP__ >= 0x5000 && defined( _MSL_NO_MESSAGE_FACET )) || \
1.45 - (__MSL_CPP__ < 0x5000 && defined( MSIPL_NL_TYPES ))) \
1.46 - )
1.47 -# define _STLP_NO_NATIVE_MESSAGE_FACET 1
1.48 -# endif
1.49 -#endif
1.50 -
1.51 -/* common switches for EDG front-end */
1.52 -# if defined (__EDG_SWITCHES)
1.53 -# if !(defined(_TYPENAME) || defined (_TYPENAME_IS_KEYWORD))
1.54 -# undef _STLP_NEED_TYPENAME
1.55 -# define _STLP_NEED_TYPENAME 1
1.56 -# endif
1.57 -# if !defined(_WCHAR_T_IS_KEYWORD)
1.58 -# undef _STLP_NO_WCHAR_T
1.59 -# define _STLP_NO_WCHAR_T 1
1.60 -# endif
1.61 -# ifndef _PARTIAL_SPECIALIZATION_OF_CLASS_TEMPLATES
1.62 -# undef _STLP_NO_CLASS_PARTIAL_SPECIALIZATION
1.63 -# define _STLP_NO_CLASS_PARTIAL_SPECIALIZATION 1
1.64 -# endif
1.65 -# ifndef _MEMBER_TEMPLATES
1.66 -# undef _STLP_NO_MEMBER_TEMPLATES
1.67 -# define _STLP_NO_MEMBER_TEMPLATES 1
1.68 -# undef _STLP_NO_MEMBER_TEMPLATE_CLASSES
1.69 -# define _STLP_NO_MEMBER_TEMPLATE_CLASSES 1
1.70 -# endif
1.71 -# if !defined(_MEMBER_TEMPLATE_KEYWORD)
1.72 -# undef _STLP_NO_MEMBER_TEMPLATE_KEYWORD
1.73 -# define _STLP_NO_MEMBER_TEMPLATE_KEYWORD 1
1.74 -# endif
1.75 -# if !defined (__EXCEPTIONS) && ! defined (_EXCEPTIONS)
1.76 -# undef _STLP_HAS_NO_EXCEPTIONS
1.77 -# define _STLP_HAS_NO_EXCEPTIONS
1.78 -# endif
1.79 -# undef __EDG_SWITCHES
1.80 -# endif /* EDG */
1.81 -#endif