1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/stdcpp/include/config/stl_solaris.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,35 @@
1.4 +
1.5 +// include system features file
1.6 +# include <sys/feature_tests.h>
1.7 +
1.8 +// system-dependent defines
1.9 +
1.10 +# if defined (__SunOS_5_8) && ! defined (_STLP_HAS_NO_NEW_C_HEADERS) && ( __cplusplus >= 199711L)
1.11 +# define _STLP_HAS_NATIVE_FLOAT_ABS
1.12 +# endif
1.13 +
1.14 +#if defined(_XOPEN_SOURCE) && (_XOPEN_VERSION - 0 >= 4)
1.15 +# define _STLP_RAND48 1
1.16 +#endif
1.17 +
1.18 +#if (defined(_XOPEN_SOURCE) && (_XOPEN_VERSION - 0 == 4)) || defined (__SunOS_5_6)
1.19 +# define _STLP_WCHAR_SUNPRO_EXCLUDE 1
1.20 +# define _STLP_NO_NATIVE_WIDE_FUNCTIONS 1
1.21 +#endif
1.22 +
1.23 +// boris : this should always be defined for Solaris 5 & 6. Any ideas how to do it ?
1.24 +# if !(defined ( __KCC ) && __KCC_VERSION > 3400 ) && \
1.25 + ((defined(__SunOS_5_5_1) || defined(__SunOS_5_6) ))
1.26 +# ifndef _STLP_NO_NATIVE_MBSTATE_T
1.27 +# define _STLP_NO_NATIVE_MBSTATE_T 1
1.28 +# endif
1.29 +# endif /* KCC */
1.30 +
1.31 +// For SPARC we use lightweight synchronization
1.32 +# if defined (__sparc) /* && (defined (_REENTRANT) || defined (_PTHREADS)) */ && ((defined (__GNUC__) && defined (__sparc_v9__)) || \
1.33 +(defined (__sparcv9) && ! defined (_STLP_NO_OWN_IOSTREAMS)) ) \
1.34 +&& !defined(_NOTHREADS) && ! defined (_STLP_NO_SPARC_SOLARIS_THREADS)
1.35 +# define _STLP_SPARC_SOLARIS_THREADS
1.36 +# define _STLP_THREADS_DEFINED
1.37 +# endif
1.38 +