1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/stdcpp/include/config/stl_kai.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,58 @@
1.4 +// STLport config file for KAI C++ compiler
1.5 +
1.6 +#if defined(_XOPEN_SOURCE) && (_XOPEN_VERSION - 0 >= 4)
1.7 +# define _STLP_RAND48 1
1.8 +#endif
1.9 +
1.10 +# ifndef __KAI_STRICT /* _NO_LONGLONG */
1.11 +# define _STLP_LONG_LONG long long
1.12 +# endif
1.13 +
1.14 +# if !defined (__EXCEPTIONS) && ! defined (_EXCEPTIONS)
1.15 +# define _STLP_HAS_NO_EXCEPTIONS
1.16 +# endif
1.17 +
1.18 +# ifndef __BUILDING_STLPORT
1.19 +# define _STLP_LINK_TIME_INSTANTIATION 1
1.20 +# endif
1.21 +
1.22 +// two levels of macros do not work good with kcc.
1.23 +# define _STLP_NATIVE_HEADER(header) <../include/##header>
1.24 +# define _STLP_NATIVE_C_HEADER(header) <../include/##header>
1.25 +# define _STLP_NATIVE_CPP_C_HEADER(header) <../include/##header>
1.26 +# define _STLP_NATIVE_CPP_RUNTIME_HEADER(header) <../include/##header>
1.27 +
1.28 +# ifdef _WIN32
1.29 +# define _STLP_MINIMUM_IMPORT_STD
1.30 +# endif
1.31 +
1.32 +// KAI C++ uses EDG front-end, but apparently different switches
1.33 +// # define __EDG_SWITCHES 1
1.34 +
1.35 +
1.36 +# define _STLP_VENDOR_GLOBAL_CSTD 1
1.37 +# define _STLP_VENDOR_MB_NAMESPACE std
1.38 +
1.39 +// boris : some of those may also apply to KCC 3.4
1.40 +# if __KCC_VERSION < 4000
1.41 +# define _STLP_VENDOR_GLOBAL_EXCEPT_STD 1
1.42 +
1.43 +# endif
1.44 +
1.45 +// this is multiplatform compiler, so here should go system-dependant section
1.46 +// This really should be in platform-specific files, like stl_solaris.h
1.47 +# ifdef __linux__
1.48 +# define _STLP_NO_NATIVE_WIDE_STREAMS 1
1.49 +# define _STLP_NO_NATIVE_WIDE_FUNCTIONS 1
1.50 +# elif defined (__sun) || defined (sun)
1.51 +// # define _STLP_VENDOR_MB_NAMESPACE
1.52 +# include <config/stl_solaris.h>
1.53 +# elif defined (__hpux)
1.54 +# define _STLP_NO_NATIVE_WIDE_FUNCTIONS
1.55 +# elif defined (__sgi)
1.56 +// this requires some discrimination on whether we are actually on
1.57 +// a system officially supported by KAI.
1.58 +# define _STLP_HAS_NO_NEW_C_HEADERS 1
1.59 +# include <standards.h>
1.60 +# endif
1.61 +