1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/stdcpp/include/config/stl_apple.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,112 @@
1.4 +// STLport configuration file
1.5 +// It is internal STLport header - DO NOT include it directly
1.6 +
1.7 +// common configuration settings for Apple MPW MrCpp / SCpp
1.8 +
1.9 +#if defined(__MRC__) && __MRC__ < 0x500
1.10 +# error Apple's MPW MrCpp v.5.0.0 or better compiler required
1.11 +#endif
1.12 +#if defined(__SC__) && __SC__ < 0x890
1.13 +# error Apple's MPW SCpp v.8.9.0 or better compiler required
1.14 +#endif
1.15 +
1.16 +#ifdef qMacApp
1.17 +# ifndef __CONDITIONALMACROS__ // skip including ConditionalMacros_AC.h if ConditionalMacros.h is already included
1.18 +# include <CoreSwitches_AC.h>
1.19 +# include <ConditionalMacros_AC.h>
1.20 +# include <Types_AC.h>
1.21 +# define _STLP_FILE__ _FILE_AC
1.22 +# define _STLP_DEBUG_MESSAGE
1.23 +# define __stl_debug_message ProgramBreak_AC
1.24 +# include <ConditionalMacros.h>
1.25 +# endif
1.26 +# include <Types.h>
1.27 +#else
1.28 +# include <ConditionalMacros.h>
1.29 +# include <Types.h>
1.30 +#endif
1.31 +
1.32 +#define _STLP_UINT32_T UInt32
1.33 +typedef int wint_t;
1.34 +
1.35 +#ifndef TYPE_BOOL
1.36 +# error <ConditionalMacros.h> must be included. (TYPE_BOOL)
1.37 +#endif
1.38 +#if !TYPE_BOOL
1.39 +# define _STLP_NO_BOOL
1.40 +# define _STLP_DONT_USE_BOOL_TYPEDEF
1.41 +#endif
1.42 +
1.43 +#ifndef TYPE_LONGLONG
1.44 +# error <ConditionalMacros.h> must be included. (TYPE_LONGLONG)
1.45 +#endif
1.46 +#if TYPE_LONGLONG
1.47 +# define _STLP_LONG_LONG long long
1.48 +#endif
1.49 +
1.50 +#if !__option(exceptions)
1.51 +# define _STLP_HAS_NO_EXCEPTIONS
1.52 +#endif
1.53 +
1.54 +#define _STLP_DEBUG_MESSAGE_POST DebugStr("\pSTL diagnosis issued. See 'stderr' for detail.");
1.55 +#define _STLP_ASSERT_MSG_TRAILER " "
1.56 +
1.57 +#ifdef _STLP_DEBUG
1.58 +# define _STLP_THROW(x) (DebugStr("\pSTL is about to throw exception: "#x),throw x)
1.59 +#endif
1.60 +
1.61 +#if defined(__MRC__)
1.62 +# ifndef __spillargs
1.63 +# define __spillargs 1 // MrCpp requires this symbol to be defined as 1 to properly handle va_start; ref.[ file stdarg.h; line 26 ]
1.64 +# endif
1.65 +#endif
1.66 +
1.67 +#if defined(__SC__)
1.68 +#define _STLP_VENDOR_LONG_DOUBLE_MATH //*TY 12/03/2000 - SCpp's native math type is long double
1.69 +#endif
1.70 +
1.71 +#ifndef _STLP_NATIVE_INCLUDE_PATH
1.72 +# if __option(unix_includes)
1.73 +# define _STLP_NATIVE_INCLUDE_PATH ../CIncludes // expects the alias to {CIncludes} under the same folder as {STL}
1.74 +# else
1.75 +# define _STLP_NATIVE_INCLUDE_PATH ::CIncludes // expects the alias to {CIncludes} under the same folder as {STL}
1.76 +# endif
1.77 +#endif
1.78 +#if !defined(_STLP_MAKE_HEADER)
1.79 +# if !__option(unix_includes)
1.80 +# define _STLP_MAKE_HEADER(path, header) <path:header> // Mac uses ":" for directory delimiter
1.81 +# endif
1.82 +#endif
1.83 +
1.84 +# define _STLD _DBG // to keep the length of generated symbols within the compiler limitation
1.85 +
1.86 +#define _STLP_OWN_IOSTREAMS
1.87 +#define _STLP_USE_STDIO_IO 1 //*TY 02/24/2000 - see also ; ref.[ file _fstream.h; line 36 ]
1.88 +#define _STLP_NO_THREADS //*TY 12/17/2000 - multi-thread capability not explored, yet.
1.89 +#undef _REENTRANT //*ty 11/24/2001 - to make sure no thread facility is activated
1.90 +#define _NOTHREADS //*ty 12/07/2001 -
1.91 +
1.92 +// native library limitations
1.93 +#define _STLP_VENDOR_GLOBAL_STD // mpw's c++ libs do not utilize namespace std yet
1.94 +#define _STLP_NO_BAD_ALLOC // known limitation
1.95 +#define _STLP_HAS_NO_NEW_C_HEADERS // known limitation
1.96 +#define _STLP_NO_NEW_NEW_HEADER // known limitation
1.97 +#define _STLP_HAS_NO_NEW_IOSTREAMS // known limitation
1.98 +#define _STLP_NO_NATIVE_MBSTATE_T // known limitation
1.99 +#define _STLP_NO_NATIVE_WIDE_FUNCTIONS // known limitation
1.100 +#define _STLP_NO_NATIVE_WIDE_STREAMS // known limitation
1.101 +#define _STLP_INCOMPLETE_EXCEPTION_HEADER // known limitation
1.102 +#define _STLP_BROKEN_EXCEPTION_CLASS // known limitation
1.103 +
1.104 +// compiler limitations
1.105 +# define _STLP_DONT_SIMULATE_PARTIAL_SPEC_FOR_TYPE_TRAITS
1.106 +
1.107 +# define _STLP_MPWFIX_TRY try{ //*TY 06/01/2000 - exception handling bug workaround
1.108 +# define _STLP_MPWFIX_CATCH }catch(...){throw;} //*TY 06/01/2000 - exception handling bug workaround
1.109 +# define _STLP_MPWFIX_CATCH_ACTION(action) }catch(...){action;throw;} //*TY 06/01/2000 - exception handling bug workaround
1.110 +# define _STLP_THROW_RETURN_BUG // known limitation
1.111 +# define _STLP_NO_CLASS_PARTIAL_SPECIALIZATION // known limitation
1.112 +# define _STLP_NO_PARTIAL_SPECIALIZATION_SYNTAX // known limitation
1.113 +# define _STLP_NO_FUNCTION_TMPL_PARTIAL_ORDER // known limitation
1.114 +# define _STLP_NO_RELOPS_NAMESPACE // known limitation
1.115 +// end of stl_apple.h