Changeset 20074 for branches/vendor/third/perl/NetWare/config_H.wc
- Timestamp:
- 02/09/04 14:10:55 (6 years ago)
- Files:
-
- 1 modified
-
branches/vendor/third/perl/NetWare/config_H.wc (modified) (12 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/vendor/third/perl/NetWare/config_H.wc
r18449 r20074 8 8 * For a more permanent change edit undef and rerun config_h.SH. 9 9 * 10 * $Id: config_H.wc,v 1.1.1. 1 2003-01-10 13:43:16zacheiss Exp $10 * $Id: config_H.wc,v 1.1.1.2 2004-02-09 19:00:24 zacheiss Exp $ 11 11 */ 12 12 … … 27 27 #define LOC_SED "" /**/ 28 28 29 /* HAS_AINTL: 30 * This symbol, if defined, indicates that the aintl routine is 31 * available. If copysignl is also present we can emulate modfl. 32 */ 33 /*#define HAS_AINTL / **/ 34 29 35 /* HAS_ALARM: 30 36 * This symbol, if defined, indicates that the alarm routine is … … 39 45 /*#define HASATTRIBUTE /**/ 40 46 #ifndef HASATTRIBUTE 47 #ifdef __attribute__ 48 #undef __attribute__ 49 #endif 41 50 #define __attribute__(_arg_) 42 51 #endif … … 127 136 */ 128 137 #define HAS_DUP2 /**/ 138 139 /* HAS_FAST_STDIO: 140 * This symbol, if defined, indicates that the "fast stdio" 141 * is available to manipulate the stdio buffers directly. 142 */ 143 /*#define HAS_FAST_STDIO /**/ 129 144 130 145 /* HAS_FCHDIR: … … 1126 1141 #endif 1127 1142 #if 42 != 1 && 42 != 42 1128 # include "Bletch: How does this C preprocessor c atenate tokens?"1143 # include "Bletch: How does this C preprocessor concatenate tokens?" 1129 1144 #endif 1130 1145 … … 1597 1612 #define HAS_NTOHS /**/ 1598 1613 1614 /* HAS_ILOGBL: 1615 * This symbol, if defined, indicates that the ilogbl routine is 1616 * available. If scalbnl is also present we can emulate frexpl. 1617 */ 1618 /*#define HAS_ILOGBL /**/ 1619 1599 1620 /* HAS_INT64_T: 1600 1621 * This symbol will defined if the C compiler supports int64_t. … … 1789 1810 /*#define HAS_SCHED_YIELD /**/ 1790 1811 1812 /* HAS_PTHREAD_ATTR_SETSCOPE: 1813 * This symbol, if defined, indicates that the pthread_attr_setscope 1814 * system call is available to set the contention scope attribute of 1815 * a thread attribute object. 1816 */ 1817 /*#define HAS_PTHREAD_ATTR_SETSCOPE / **/ 1818 1791 1819 /* HAS_READV: 1792 1820 * This symbol, if defined, indicates that the readv routine is … … 1839 1867 */ 1840 1868 /*#define HAS_SEM /**/ 1869 1870 /* HAS_SCALBNL: 1871 * This symbol, if defined, indicates that the scalbnl routine is 1872 * available. If ilogbl is also present we can emulate frexpl. 1873 */ 1874 /*#define HAS_SCALBNL /**/ 1841 1875 1842 1876 /* HAS_SENDMSG: … … 2976 3010 */ 2977 3011 /* SIG_SIZE: 2978 * This variable contains the number of elements of the sig_name2979 * and sig_numarrays, excluding the final NULL entry.3012 * This variable contains the number of elements of the SIG_NAME 3013 * and SIG_NUM arrays, excluding the final NULL entry. 2980 3014 */ 2981 3015 #define SIG_NAME "ZERO", "NUM01", "INT", "QUIT", "ILL", "NUM05", "NUM06", "NUM07", "FPE", "KILL", "NUM10", "SEGV", "NUM12", "PIPE", "ALRM", "TERM", "NUM16", "NUM17", "NUM18", "NUM19", "CHLD", "BREAK", "ABRT", "STOP", "NUM24", "CONT", "CLD", 0 /**/ … … 3125 3159 #ifndef USE_64_BIT_ALL 3126 3160 /*#define USE_64_BIT_ALL /**/ 3161 #endif 3162 3163 /* USE_FAST_STDIO: 3164 * This symbol, if defined, indicates that Perl should 3165 * be built to use 'fast stdio'. 3166 * Defaults to define in Perls 5.8 and earlier, to undef later. 3167 */ 3168 #ifndef USE_FAST_STDIO 3169 #define USE_FAST_STDIO /**/ 3127 3170 #endif 3128 3171 … … 3334 3377 #endif 3335 3378 3379 /* HAS_COPYSIGNL: 3380 * This symbol, if defined, indicates that the copysignl routine is 3381 * available. If aintl is also present we can emulate modfl. 3382 */ 3383 /*#define HAS_COPYSIGNL /**/ 3384 3336 3385 /* HAS_DBMINIT_PROTO: 3337 3386 * This symbol, if defined, indicates that the system provides … … 3424 3473 /* HAS_PTHREAD_ATFORK: 3425 3474 * This symbol, if defined, indicates that the pthread_atfork routine 3426 * is available setup fork handlers.3475 * is available to setup fork handlers. 3427 3476 */ 3428 3477 /*#define HAS_PTHREAD_ATFORK /**/
