[BACK]Return to config.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / lex

Annotation of src/usr.bin/lex/config.h, Revision 1.4

1.4     ! tedu        1: /*     $OpenBSD: config.h,v 1.3 1996/10/26 21:50:30 tholo Exp $        */
1.2       deraadt     2:
1.4     ! tedu        3: /* config.h.  Generated from conf.in by configure.  */
        !             4: /* conf.in.  Generated from configure.ac by autoheader.  */
1.1       deraadt     5:
1.4     ! tedu        6: /* Define to one of `_getb67', `GETB67', `getb67' for Cray-2 and Cray-YMP
        !             7:    systems. This function is required for `alloca.c' support on those systems.
        !             8:    */
        !             9: /* #undef CRAY_STACKSEG_END */
        !            10:
        !            11: /* Define to 1 if using `alloca.c'. */
        !            12: /* #undef C_ALLOCA */
        !            13:
        !            14: /* Define to 1 if translation of program messages to the user's native
        !            15:    language is requested. */
        !            16: /* #undef ENABLE_NLS */
        !            17:
        !            18: /* Define to 1 if you have `alloca', as a function or macro. */
        !            19: #define HAVE_ALLOCA 1
        !            20:
        !            21: /* Define to 1 if you have <alloca.h> and it should be used (not on Ultrix).
        !            22:    */
        !            23: /* #undef HAVE_ALLOCA_H */
        !            24:
        !            25: /* Define to 1 if you have the MacOS X function CFLocaleCopyCurrent in the
        !            26:    CoreFoundation framework. */
        !            27: /* #undef HAVE_CFLOCALECOPYCURRENT */
        !            28:
        !            29: /* Define to 1 if you have the MacOS X function CFPreferencesCopyAppValue in
        !            30:    the CoreFoundation framework. */
        !            31: /* #undef HAVE_CFPREFERENCESCOPYAPPVALUE */
        !            32:
        !            33: /* Define if the GNU dcgettext() function is already present or preinstalled.
        !            34:    */
        !            35: /* #undef HAVE_DCGETTEXT */
        !            36:
        !            37: /* Define to 1 if you have the <dlfcn.h> header file. */
        !            38: #define HAVE_DLFCN_H 1
        !            39:
        !            40: /* Define to 1 if you have the `dup2' function. */
        !            41: #define HAVE_DUP2 1
        !            42:
        !            43: /* Define to 1 if you have the `fork' function. */
        !            44: #define HAVE_FORK 1
        !            45:
        !            46: /* Define if the GNU gettext() function is already present or preinstalled. */
        !            47: /* #undef HAVE_GETTEXT */
        !            48:
        !            49: /* Define if you have the iconv() function and it works. */
        !            50: #define HAVE_ICONV 1
        !            51:
        !            52: /* Define to 1 if you have the <inttypes.h> header file. */
        !            53: #define HAVE_INTTYPES_H 1
        !            54:
        !            55: /* Define to 1 if you have the `isascii' function. */
        !            56: #define HAVE_ISASCII 1
        !            57:
        !            58: /* Define to 1 if you have the <libintl.h> header file. */
        !            59: /* #undef HAVE_LIBINTL_H */
        !            60:
        !            61: /* Define to 1 if you have the `m' library (-lm). */
        !            62: #define HAVE_LIBM 1
        !            63:
        !            64: /* pthread library */
        !            65: #define HAVE_LIBPTHREAD 1
        !            66:
        !            67: /* Define to 1 if you have the <limits.h> header file. */
        !            68: #define HAVE_LIMITS_H 1
        !            69:
        !            70: /* Define to 1 if you have the <locale.h> header file. */
        !            71: #define HAVE_LOCALE_H 1
        !            72:
        !            73: /* Define to 1 if your system has a GNU libc compatible `malloc' function, and
        !            74:    to 0 otherwise. */
        !            75: #define HAVE_MALLOC 1
        !            76:
        !            77: /* Define to 1 if you have the <malloc.h> header file. */
        !            78: #define HAVE_MALLOC_H 1
        !            79:
        !            80: /* Define to 1 if you have the <memory.h> header file. */
        !            81: #define HAVE_MEMORY_H 1
        !            82:
        !            83: /* Define to 1 if you have the `memset' function. */
        !            84: #define HAVE_MEMSET 1
        !            85:
        !            86: /* Define to 1 if you have the <netinet/in.h> header file. */
        !            87: #define HAVE_NETINET_IN_H 1
        !            88:
        !            89: /* Define to 1 if you have the `pow' function. */
        !            90: #define HAVE_POW 1
        !            91:
        !            92: /* Define to 1 if you have the <pthread.h> header file. */
        !            93: #define HAVE_PTHREAD_H 1
        !            94:
        !            95: /* Define to 1 if your system has a GNU libc compatible `realloc' function,
        !            96:    and to 0 otherwise. */
        !            97: #define HAVE_REALLOC 1
        !            98:
        !            99: /* Define to 1 if you have the `regcomp' function. */
        !           100: #define HAVE_REGCOMP 1
        !           101:
        !           102: /* Define to 1 if you have the <regex.h> header file. */
        !           103: #define HAVE_REGEX_H 1
        !           104:
        !           105: /* Define to 1 if you have the `setlocale' function. */
        !           106: #define HAVE_SETLOCALE 1
        !           107:
        !           108: /* Define to 1 if stdbool.h conforms to C99. */
        !           109: #define HAVE_STDBOOL_H 1
        !           110:
        !           111: /* Define to 1 if you have the <stddef.h> header file. */
        !           112: #define HAVE_STDDEF_H 1
        !           113:
        !           114: /* Define to 1 if you have the <stdint.h> header file. */
        !           115: #define HAVE_STDINT_H 1
1.1       deraadt   116:
1.4     ! tedu      117: /* Define to 1 if you have the <stdlib.h> header file. */
        !           118: #define HAVE_STDLIB_H 1
1.1       deraadt   119:
1.4     ! tedu      120: /* Define to 1 if you have the `strchr' function. */
        !           121: #define HAVE_STRCHR 1
1.1       deraadt   122:
1.4     ! tedu      123: /* Define to 1 if you have the <strings.h> header file. */
        !           124: #define HAVE_STRINGS_H 1
1.1       deraadt   125:
1.4     ! tedu      126: /* Define to 1 if you have the <string.h> header file. */
1.1       deraadt   127: #define HAVE_STRING_H 1
                    128:
1.4     ! tedu      129: /* Define to 1 if you have the `strtol' function. */
        !           130: #define HAVE_STRTOL 1
        !           131:
        !           132: /* Define to 1 if you have the <sys/stat.h> header file. */
        !           133: #define HAVE_SYS_STAT_H 1
        !           134:
        !           135: /* Define to 1 if you have the <sys/types.h> header file. */
1.1       deraadt   136: #define HAVE_SYS_TYPES_H 1
                    137:
1.4     ! tedu      138: /* Define to 1 if you have <sys/wait.h> that is POSIX.1 compatible. */
        !           139: #define HAVE_SYS_WAIT_H 1
        !           140:
        !           141: /* Define to 1 if you have the <unistd.h> header file. */
        !           142: #define HAVE_UNISTD_H 1
        !           143:
        !           144: /* Define to 1 if you have the `vfork' function. */
        !           145: #define HAVE_VFORK 1
        !           146:
        !           147: /* Define to 1 if you have the <vfork.h> header file. */
        !           148: /* #undef HAVE_VFORK_H */
        !           149:
        !           150: /* Define to 1 if `fork' works. */
        !           151: #define HAVE_WORKING_FORK 1
        !           152:
        !           153: /* Define to 1 if `vfork' works. */
        !           154: #define HAVE_WORKING_VFORK 1
        !           155:
        !           156: /* Define to 1 if the system has the type `_Bool'. */
        !           157: #define HAVE__BOOL 1
        !           158:
        !           159: /* Define to the sub-directory in which libtool stores uninstalled libraries.
        !           160:    */
        !           161: #define LT_OBJDIR ".libs/"
        !           162:
        !           163: /* Define to the m4 executable name. */
        !           164: #define M4 "/usr/bin/m4"
        !           165:
        !           166: /* Define to 1 if your C compiler doesn't accept -c and -o together. */
        !           167: /* #undef NO_MINUS_C_MINUS_O */
        !           168:
        !           169: /* Name of package */
        !           170: #define PACKAGE "flex"
        !           171:
        !           172: /* Define to the address where bug reports for this package should be sent. */
        !           173: #define PACKAGE_BUGREPORT "flex-help@lists.sourceforge.net"
        !           174:
        !           175: /* Define to the full name of this package. */
        !           176: #define PACKAGE_NAME "the fast lexical analyser generator"
        !           177:
        !           178: /* Define to the full name and version of this package. */
        !           179: #define PACKAGE_STRING "the fast lexical analyser generator 2.5.39"
        !           180:
        !           181: /* Define to the one symbol short name of this package. */
        !           182: #define PACKAGE_TARNAME "flex"
        !           183:
        !           184: /* Define to the home page for this package. */
        !           185: #define PACKAGE_URL ""
        !           186:
        !           187: /* Define to the version of this package. */
        !           188: #define PACKAGE_VERSION "2.5.39"
        !           189:
        !           190: /* If using the C implementation of alloca, define if you know the
        !           191:    direction of stack growth for your system; otherwise it will be
        !           192:    automatically deduced at runtime.
        !           193:        STACK_DIRECTION > 0 => grows toward higher addresses
        !           194:        STACK_DIRECTION < 0 => grows toward lower addresses
        !           195:        STACK_DIRECTION = 0 => direction of growth unknown */
        !           196: /* #undef STACK_DIRECTION */
        !           197:
        !           198: /* Define to 1 if you have the ANSI C header files. */
        !           199: #define STDC_HEADERS 1
        !           200:
        !           201: /* Version number of package */
        !           202: #define VERSION "2.5.39"
        !           203:
        !           204: /* Define to 1 if `lex' declares `yytext' as a `char *' by default, not a
        !           205:    `char[]'. */
        !           206: #define YYTEXT_POINTER 1
        !           207:
        !           208: /* Define to empty if `const' does not conform to ANSI C. */
        !           209: /* #undef const */
        !           210:
        !           211: /* Define to rpl_malloc if the replacement function should be used. */
        !           212: /* #undef malloc */
        !           213:
        !           214: /* Define to `int' if <sys/types.h> does not define. */
        !           215: /* #undef pid_t */
        !           216:
        !           217: /* Define to rpl_realloc if the replacement function should be used. */
        !           218: /* #undef realloc */
        !           219:
        !           220: /* Define to `unsigned int' if <sys/types.h> does not define. */
        !           221: /* #undef size_t */
1.1       deraadt   222:
1.4     ! tedu      223: /* Define as `fork' if `vfork' does not work. */
        !           224: /* #undef vfork */