Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/config.h.in

    r1f86d5e r107b01a  
    5252#undef CFA_VERSION_SHORT
    5353
    54 /* Have compiler warning cast-function-type. */
    55 #undef HAVE_CAST_FUNCTION_TYPE
     54/* Define to one of `_getb67', `GETB67', `getb67' for Cray-2 and Cray-YMP
     55   systems. This function is required for `alloca.c' support on those systems.
     56   */
     57#undef CRAY_STACKSEG_END
     58
     59/* Define to 1 if using `alloca.c'. */
     60#undef C_ALLOCA
     61
     62/* Define to 1 if you have `alloca', as a function or macro. */
     63#undef HAVE_ALLOCA
     64
     65/* Define to 1 if you have <alloca.h> and it should be used (not on Ultrix).
     66   */
     67#undef HAVE_ALLOCA_H
    5668
    5769/* Define to 1 if you have the <dlfcn.h> header file. */
    5870#undef HAVE_DLFCN_H
    5971
     72/* Define to 1 if you have the <fenv.h> header file. */
     73#undef HAVE_FENV_H
     74
     75/* Define to 1 if you have the <float.h> header file. */
     76#undef HAVE_FLOAT_H
     77
    6078/* Define to 1 if you have the <inttypes.h> header file. */
    6179#undef HAVE_INTTYPES_H
    6280
    63 /* Have keywords _FloatXX. */
    64 #undef HAVE_KEYWORDS_FLOATXX
    65 
    6681/* Define to 1 if you have the <libintl.h> header file. */
    6782#undef HAVE_LIBINTL_H
    6883
     84/* Define to 1 if you have the <limits.h> header file. */
     85#undef HAVE_LIMITS_H
     86
    6987/* Define to 1 if you have the <malloc.h> header file. */
    7088#undef HAVE_MALLOC_H
     
    7391#undef HAVE_MEMORY_H
    7492
     93/* Define to 1 if you have the `memset' function. */
     94#undef HAVE_MEMSET
     95
     96/* Define to 1 if you have the `putenv' function. */
     97#undef HAVE_PUTENV
     98
     99/* Define to 1 if stdbool.h conforms to C99. */
     100#undef HAVE_STDBOOL_H
     101
     102/* Define to 1 if you have the <stddef.h> header file. */
     103#undef HAVE_STDDEF_H
     104
    75105/* Define to 1 if you have the <stdint.h> header file. */
    76106#undef HAVE_STDINT_H
     
    79109#undef HAVE_STDLIB_H
    80110
     111/* Define to 1 if you have the `strchr' function. */
     112#undef HAVE_STRCHR
     113
    81114/* Define to 1 if you have the <strings.h> header file. */
    82115#undef HAVE_STRINGS_H
     
    85118#undef HAVE_STRING_H
    86119
     120/* Define to 1 if you have the `strtol' function. */
     121#undef HAVE_STRTOL
     122
    87123/* Define to 1 if you have the <sys/stat.h> header file. */
    88124#undef HAVE_SYS_STAT_H
     
    94130#undef HAVE_UNISTD_H
    95131
    96 /* Define to 1 if the system has the type `_Float32'. */
    97 #undef HAVE__FLOAT32
     132/* Define to 1 if the system has the type `_Bool'. */
     133#undef HAVE__BOOL
    98134
    99135/* Define to the sub-directory where libtool stores uninstalled libraries. */
     
    120156/* Define to the version of this package. */
    121157#undef PACKAGE_VERSION
     158
     159/* If using the C implementation of alloca, define if you know the
     160   direction of stack growth for your system; otherwise it will be
     161   automatically deduced at runtime.
     162        STACK_DIRECTION > 0 => grows toward higher addresses
     163        STACK_DIRECTION < 0 => grows toward lower addresses
     164        STACK_DIRECTION = 0 => direction of growth unknown */
     165#undef STACK_DIRECTION
    122166
    123167/* Define to 1 if you have the ANSI C header files. */
     
    136180   `char[]'. */
    137181#undef YYTEXT_POINTER
     182
     183/* Define for Solaris 2.5.1 so the uint32_t typedef from <sys/synch.h>,
     184   <pthread.h>, or <semaphore.h> is not used. If the typedef were allowed, the
     185   #define below would cause a syntax error. */
     186#undef _UINT32_T
     187
     188/* Define for Solaris 2.5.1 so the uint8_t typedef from <sys/synch.h>,
     189   <pthread.h>, or <semaphore.h> is not used. If the typedef were allowed, the
     190   #define below would cause a syntax error. */
     191#undef _UINT8_T
     192
     193/* Define to `__inline__' or `__inline' if that's what the C compiler
     194   calls it, or to nothing if 'inline' is not supported under any name.  */
     195#ifndef __cplusplus
     196#undef inline
     197#endif
     198
     199/* Define to the type of a signed integer type of width exactly 16 bits if
     200   such a type exists and the standard includes do not define it. */
     201#undef int16_t
     202
     203/* Define to the type of a signed integer type of width exactly 32 bits if
     204   such a type exists and the standard includes do not define it. */
     205#undef int32_t
     206
     207/* Define to the type of a signed integer type of width exactly 8 bits if such
     208   a type exists and the standard includes do not define it. */
     209#undef int8_t
     210
     211/* Define to the equivalent of the C99 'restrict' keyword, or to
     212   nothing if this is not supported.  Do not define if restrict is
     213   supported directly.  */
     214#undef restrict
     215/* Work around a bug in Sun C++: it does not support _Restrict or
     216   __restrict__, even though the corresponding Sun C compiler ends up with
     217   "#define restrict _Restrict" or "#define restrict __restrict__" in the
     218   previous line.  Perhaps some future version of Sun C++ will work with
     219   restrict; if so, hopefully it defines __RESTRICT like Sun C does.  */
     220#if defined __SUNPRO_CC && !defined __RESTRICT
     221# define _Restrict
     222# define __restrict__
     223#endif
     224
     225/* Define to `unsigned int' if <sys/types.h> does not define. */
     226#undef size_t
     227
     228/* Define to the type of an unsigned integer type of width exactly 16 bits if
     229   such a type exists and the standard includes do not define it. */
     230#undef uint16_t
     231
     232/* Define to the type of an unsigned integer type of width exactly 32 bits if
     233   such a type exists and the standard includes do not define it. */
     234#undef uint32_t
     235
     236/* Define to the type of an unsigned integer type of width exactly 8 bits if
     237   such a type exists and the standard includes do not define it. */
     238#undef uint8_t
Note: See TracChangeset for help on using the changeset viewer.