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