home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / stlpt453.zip / STLport-4.5.3 / stlport / config / _prolog.h < prev    next >
C/C++ Source or Header  |  2001-10-28  |  1KB  |  47 lines

  1.  
  2. #if defined (_STLP_MSVC) || defined (__ICL) || defined (__BORLANDC__)
  3.  
  4. # if defined (__BORLANDC__)
  5. #  if (__BORLANDC__ >= 0x510)
  6. #  pragma option push -Vx- -Ve- -a8 -b -pc -w-inl -w-aus -w-sig -w-8062 -w-8041 -w-8008 -w-8012 -w-8027 -w-8057 -w-8091 -w-8092 -w-8066  /* P_O_1 */
  7. #  endif
  8. # else
  9. # if !(defined (_STLP_MSVC) && (_STLP_MSVC < 1200))
  10. #  pragma warning(push)
  11. # endif
  12. # pragma pack(push,8)
  13. # include <config/_msvc_warnings_off.h>
  14. # endif
  15.  
  16.  
  17. #elif defined(__sgi) && !defined(__GNUC__) && (_MIPS_SIM != _MIPS_SIM_ABI32)
  18.  
  19. #pragma set woff 1209
  20. #pragma set woff 1174
  21. #pragma set woff 1375
  22. // from iterator_base.h
  23. #pragma set woff 1183
  24.  
  25. #elif defined(__DECCXX)
  26.  
  27. # ifdef __PRAGMA_ENVIRONMENT
  28. #  pragma __environment __save
  29. #  pragma __environment __header_defaults
  30. # endif
  31.  
  32. #elif defined(__IBMCPP__)
  33. // supress EDC3130: A constant is being used as a conditional expression
  34. #pragma info(nocnd)
  35.  
  36. #elif defined (__HP_aCC)
  37. /* _REENTRANT selects Posix 1c threads unless draft4 selected.
  38.  *  * This usage is obsolescent, "-D_POSIX_C_SOURCE=199506" is preferred */
  39. # if 0 /* defined (_REENTRANT) && ! defined (_POSIX_C_SOURCE) */
  40. #  define _POSIX_C_SOURCE 199506
  41. # endif
  42. #elif defined (__WATCOMCPLUSPLUS__)
  43. # pragma warning 604 10 // must lookahead to determine...
  44. # pragma warning 594 10 // resolved as declaration/type
  45. # pragma warning 595 10 // resolved as an expression
  46. #endif
  47.