home *** CD-ROM | disk | FTP | other *** search
/ Dream 52 / Amiga_Dream_52.iso / Linux / Divers / ImageMagick-4.0.6.tar.gz / ImageMagick-4.0.6.tar / ImageMagick-4.0.6 / xlib / X11 / Xosdefs.h < prev    next >
C/C++ Source or Header  |  1996-12-05  |  3KB  |  114 lines

  1. /*
  2.  * O/S-dependent (mis)feature macro definitions
  3.  *
  4.  * $XConsortium: Xosdefs.h,v 1.14 94/11/30 20:48:05 kaleb Exp $
  5.  *
  6. Copyright (c) 1991  X Consortium
  7.  
  8. Permission is hereby granted, free of charge, to any person obtaining a copy
  9. of this software and associated documentation files (the "Software"), to deal
  10. in the Software without restriction, including without limitation the rights
  11. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  12. copies of the Software, and to permit persons to whom the Software is
  13. furnished to do so, subject to the following conditions:
  14.  
  15. The above copyright notice and this permission notice shall be included in
  16. all copies or substantial portions of the Software.
  17.  
  18. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  19. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  20. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
  21. X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
  22. AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  23. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  24.  
  25. Except as contained in this notice, the name of the X Consortium shall not be
  26. used in advertising or otherwise to promote the sale, use or other dealings
  27. in this Software without prior written authorization from the X Consortium.
  28.  */
  29.  
  30. #ifndef _XOSDEFS_H_
  31. #define _XOSDEFS_H_
  32.  
  33. /*
  34.  * X_NOT_STDC_ENV means does not have ANSI C header files.  Lack of this
  35.  * symbol does NOT mean that the system has stdarg.h.
  36.  *
  37.  * X_NOT_POSIX means does not have POSIX header files.  Lack of this
  38.  * symbol does NOT mean that the POSIX environment is the default.
  39.  * You may still have to define _POSIX_SOURCE to get it.
  40.  */
  41.  
  42. #ifdef NOSTDHDRS
  43. #define X_NOT_POSIX
  44. #define X_NOT_STDC_ENV
  45. #endif
  46.  
  47. #ifdef sony
  48. #if !defined(SYSTYPE_SYSV) && !defined(_SYSTYPE_SYSV)
  49. #define X_NOT_POSIX
  50. #endif
  51. #endif
  52.  
  53. #ifdef UTEK
  54. #define X_NOT_POSIX
  55. #define X_NOT_STDC_ENV
  56. #endif
  57.  
  58. #ifdef vax
  59. #ifndef ultrix            /* assume vanilla BSD */
  60. #define X_NOT_POSIX
  61. #define X_NOT_STDC_ENV
  62. #endif
  63. #endif
  64.  
  65. #ifdef luna
  66. #define X_NOT_POSIX
  67. #define X_NOT_STDC_ENV
  68. #endif
  69.  
  70. #ifdef Mips
  71. #define X_NOT_POSIX
  72. #define X_NOT_STDC_ENV
  73. #endif
  74.   
  75. #ifdef USL
  76. #ifdef SYSV /* (release 3.2) */
  77. #define X_NOT_POSIX
  78. #define X_NOT_STDC_ENV
  79. #endif
  80. #endif
  81.  
  82. #ifdef i386
  83. #ifdef SYSV
  84. #define X_NOT_POSIX
  85. #define X_NOT_STDC_ENV
  86. #endif
  87. #endif
  88.  
  89. #ifdef MOTOROLA
  90. #ifdef SYSV
  91. #define X_NOT_STDC_ENV
  92. #endif
  93. #endif
  94.  
  95. #ifdef sun
  96. #ifdef SVR4
  97. /* define this to whatever it needs to be */
  98. #define X_POSIX_C_SOURCE 199300L
  99. #endif
  100. #endif
  101.  
  102. #ifdef WIN32
  103. #ifndef _POSIX_
  104. #define X_NOT_POSIX
  105. #endif
  106. #endif
  107.  
  108. #if defined(nec_ews_svr2) || defined(SX) || defined(PC_UX)
  109. #define X_NOT_POSIX
  110. #define X_NOT_STDC_ENV
  111. #endif
  112.  
  113. #endif /* _XOSDEFS_H_ */
  114.