os/ossrv/stdcpp/include/config/stl_apple.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// STLport configuration file
sl@0
     2
// It is internal STLport header - DO NOT include it directly
sl@0
     3
sl@0
     4
// common configuration settings for Apple MPW MrCpp / SCpp
sl@0
     5
sl@0
     6
#if defined(__MRC__) && __MRC__ < 0x500
sl@0
     7
# error Apple's MPW MrCpp v.5.0.0 or better compiler required
sl@0
     8
#endif
sl@0
     9
#if defined(__SC__) && __SC__ < 0x890
sl@0
    10
# error Apple's MPW SCpp v.8.9.0 or better compiler required
sl@0
    11
#endif
sl@0
    12
sl@0
    13
#ifdef qMacApp
sl@0
    14
# ifndef __CONDITIONALMACROS__ // skip including ConditionalMacros_AC.h if ConditionalMacros.h is already included
sl@0
    15
# include <CoreSwitches_AC.h>
sl@0
    16
# include <ConditionalMacros_AC.h>
sl@0
    17
# include <Types_AC.h>
sl@0
    18
# define _STLP_FILE__ _FILE_AC
sl@0
    19
# define _STLP_DEBUG_MESSAGE      
sl@0
    20
# define __stl_debug_message ProgramBreak_AC
sl@0
    21
# include <ConditionalMacros.h>
sl@0
    22
# endif
sl@0
    23
# include <Types.h>
sl@0
    24
#else
sl@0
    25
# include <ConditionalMacros.h>
sl@0
    26
# include <Types.h>
sl@0
    27
#endif
sl@0
    28
sl@0
    29
#define _STLP_UINT32_T UInt32
sl@0
    30
typedef int wint_t;
sl@0
    31
sl@0
    32
#ifndef TYPE_BOOL
sl@0
    33
# error <ConditionalMacros.h> must be included. (TYPE_BOOL)
sl@0
    34
#endif
sl@0
    35
#if !TYPE_BOOL
sl@0
    36
# define _STLP_NO_BOOL
sl@0
    37
# define _STLP_DONT_USE_BOOL_TYPEDEF
sl@0
    38
#endif
sl@0
    39
sl@0
    40
#ifndef TYPE_LONGLONG
sl@0
    41
# error <ConditionalMacros.h> must be included. (TYPE_LONGLONG)
sl@0
    42
#endif
sl@0
    43
#if TYPE_LONGLONG
sl@0
    44
# define _STLP_LONG_LONG long long
sl@0
    45
#endif
sl@0
    46
sl@0
    47
#if !__option(exceptions)
sl@0
    48
# define _STLP_HAS_NO_EXCEPTIONS
sl@0
    49
#endif
sl@0
    50
sl@0
    51
#define _STLP_DEBUG_MESSAGE_POST DebugStr("\pSTL diagnosis issued. See 'stderr' for detail.");
sl@0
    52
#define _STLP_ASSERT_MSG_TRAILER " "
sl@0
    53
sl@0
    54
#ifdef _STLP_DEBUG
sl@0
    55
#   define _STLP_THROW(x) (DebugStr("\pSTL is about to throw exception: "#x),throw x)
sl@0
    56
#endif
sl@0
    57
sl@0
    58
#if defined(__MRC__)
sl@0
    59
# ifndef __spillargs
sl@0
    60
#  define __spillargs 1 // MrCpp requires this symbol to be defined as 1 to properly handle va_start; ref.[ file stdarg.h; line 26 ]
sl@0
    61
# endif
sl@0
    62
#endif
sl@0
    63
sl@0
    64
#if defined(__SC__)
sl@0
    65
#define _STLP_VENDOR_LONG_DOUBLE_MATH				//*TY 12/03/2000 - SCpp's native math type is long double
sl@0
    66
#endif
sl@0
    67
sl@0
    68
#ifndef _STLP_NATIVE_INCLUDE_PATH
sl@0
    69
# if __option(unix_includes)
sl@0
    70
#  define _STLP_NATIVE_INCLUDE_PATH ../CIncludes 	// expects the alias to {CIncludes} under the same folder as {STL}
sl@0
    71
# else
sl@0
    72
#  define _STLP_NATIVE_INCLUDE_PATH ::CIncludes 	// expects the alias to {CIncludes} under the same folder as {STL}
sl@0
    73
# endif
sl@0
    74
#endif
sl@0
    75
#if !defined(_STLP_MAKE_HEADER)
sl@0
    76
# if !__option(unix_includes)
sl@0
    77
#  define _STLP_MAKE_HEADER(path, header) <path:header> // Mac uses ":" for directory delimiter
sl@0
    78
# endif
sl@0
    79
#endif
sl@0
    80
sl@0
    81
# define _STLD _DBG	// to keep the length of generated symbols within the compiler limitation
sl@0
    82
sl@0
    83
#define _STLP_OWN_IOSTREAMS
sl@0
    84
#define _STLP_USE_STDIO_IO 1						//*TY 02/24/2000 - see also ; ref.[ file _fstream.h; line 36 ]
sl@0
    85
#define _STLP_NO_THREADS							//*TY 12/17/2000 - multi-thread capability not explored, yet.
sl@0
    86
#undef _REENTRANT									//*ty 11/24/2001 - to make sure no thread facility is activated
sl@0
    87
#define _NOTHREADS									//*ty 12/07/2001 - 
sl@0
    88
sl@0
    89
// native library limitations
sl@0
    90
#define _STLP_VENDOR_GLOBAL_STD						// mpw's c++ libs do not utilize namespace std yet
sl@0
    91
#define _STLP_NO_BAD_ALLOC							// known limitation
sl@0
    92
#define _STLP_HAS_NO_NEW_C_HEADERS					// known limitation
sl@0
    93
#define _STLP_NO_NEW_NEW_HEADER						// known limitation
sl@0
    94
#define _STLP_HAS_NO_NEW_IOSTREAMS					// known limitation
sl@0
    95
#define _STLP_NO_NATIVE_MBSTATE_T					// known limitation
sl@0
    96
#define _STLP_NO_NATIVE_WIDE_FUNCTIONS				// known limitation
sl@0
    97
#define _STLP_NO_NATIVE_WIDE_STREAMS				// known limitation
sl@0
    98
#define _STLP_INCOMPLETE_EXCEPTION_HEADER			// known limitation
sl@0
    99
#define _STLP_BROKEN_EXCEPTION_CLASS				// known limitation
sl@0
   100
sl@0
   101
// compiler limitations
sl@0
   102
# define _STLP_DONT_SIMULATE_PARTIAL_SPEC_FOR_TYPE_TRAITS
sl@0
   103
sl@0
   104
# define _STLP_MPWFIX_TRY try{											//*TY 06/01/2000 - exception handling bug workaround
sl@0
   105
# define _STLP_MPWFIX_CATCH }catch(...){throw;}							//*TY 06/01/2000 - exception handling bug workaround
sl@0
   106
# define _STLP_MPWFIX_CATCH_ACTION(action) }catch(...){action;throw;}	//*TY 06/01/2000 - exception handling bug workaround
sl@0
   107
# define _STLP_THROW_RETURN_BUG						// known limitation 
sl@0
   108
# define _STLP_NO_CLASS_PARTIAL_SPECIALIZATION		// known limitation
sl@0
   109
# define _STLP_NO_PARTIAL_SPECIALIZATION_SYNTAX		// known limitation
sl@0
   110
# define _STLP_NO_FUNCTION_TMPL_PARTIAL_ORDER		// known limitation
sl@0
   111
# define _STLP_NO_RELOPS_NAMESPACE					// known limitation
sl@0
   112
// end of stl_apple.h