os/ossrv/stdcpp/include/config/stl_solaris.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
sl@0
     2
// include system features file
sl@0
     3
# include <sys/feature_tests.h>
sl@0
     4
sl@0
     5
// system-dependent defines 
sl@0
     6
sl@0
     7
# if defined (__SunOS_5_8) && ! defined (_STLP_HAS_NO_NEW_C_HEADERS) && ( __cplusplus >= 199711L)
sl@0
     8
#  define _STLP_HAS_NATIVE_FLOAT_ABS
sl@0
     9
# endif
sl@0
    10
sl@0
    11
#if defined(_XOPEN_SOURCE) && (_XOPEN_VERSION - 0 >= 4)
sl@0
    12
# define _STLP_RAND48 1
sl@0
    13
#endif
sl@0
    14
sl@0
    15
#if (defined(_XOPEN_SOURCE) && (_XOPEN_VERSION - 0 == 4)) || defined (__SunOS_5_6)
sl@0
    16
# define _STLP_WCHAR_SUNPRO_EXCLUDE 1
sl@0
    17
# define _STLP_NO_NATIVE_WIDE_FUNCTIONS 1
sl@0
    18
#endif
sl@0
    19
sl@0
    20
// boris : this should always be defined for Solaris 5 & 6. Any ideas how to do it ?
sl@0
    21
# if !(defined ( __KCC ) && __KCC_VERSION > 3400 ) && \
sl@0
    22
  ((defined(__SunOS_5_5_1) || defined(__SunOS_5_6) ))
sl@0
    23
#  ifndef _STLP_NO_NATIVE_MBSTATE_T
sl@0
    24
#   define _STLP_NO_NATIVE_MBSTATE_T 1
sl@0
    25
#  endif
sl@0
    26
# endif /* KCC */
sl@0
    27
sl@0
    28
// For SPARC we use lightweight synchronization
sl@0
    29
# if defined (__sparc) /* && (defined (_REENTRANT) || defined (_PTHREADS)) */ && ((defined (__GNUC__) && defined (__sparc_v9__)) || \
sl@0
    30
(defined (__sparcv9) && ! defined (_STLP_NO_OWN_IOSTREAMS)) ) \
sl@0
    31
&& !defined(_NOTHREADS) && ! defined (_STLP_NO_SPARC_SOLARIS_THREADS)
sl@0
    32
# define _STLP_SPARC_SOLARIS_THREADS
sl@0
    33
# define _STLP_THREADS_DEFINED
sl@0
    34
# endif
sl@0
    35