#ifndef CONFIG_H #define CONFIG_H /* Define if you want to enable use of experimental HTTP implementation. */ #undef USE_HTTP2 /* Define one of these depending on which malloc wrapper you want to use. */ #undef USE_GWMEM_NATIVE #undef USE_GWMEM_CHECK /* Define if you want information about lock collisions to be collected. * These are useful for finding performance bottlenecks. */ #undef MUTEX_STATS /* Define if you want log file timestamps in localtime instead of GMT. */ #undef LOG_TIMESTAMP_LOCALTIME /* Define if you have the ANSI C header files. */ #undef STDC_HEADERS /* Define if you have getopt.h. */ #undef HAVE_GETOPT_H /* Define if you have getopt(3). */ #undef HAVE_GETOPT /* Define if you have getopt_long(3). */ #undef HAVE_GETOPT_LONG /* the VERSION symbol - for older autoconfs */ #undef VERSION /* WMLScript debugging. */ #undef WS_DEBUG /* Define if you have the cfmakeraw function. */ #undef HAVE_CFMAKERAW /* Define if you have the gettimeofday function. */ #undef HAVE_GETTIMEOFDAY /* Define if you have the select function. */ #undef HAVE_SELECT /* Define if you have the socket function. */ #undef HAVE_SOCKET /* Define if you have the header file. */ #undef HAVE_FCNTL_H /* Define if you have the header file. */ #undef HAVE_PTHREAD_H /* Define if you have the header file. */ #undef HAVE_SYS_IOCTL_H /* Define if you have the header file. */ #undef HAVE_SYS_TYPES_H /* Define if you have the header file. */ #undef HAVE_UNISTD_H /* Define if you have the m library (-lm). */ #undef HAVE_LIBM /* Define if you have the nsl library (-lnsl). */ #undef HAVE_LIBNSL /* Define if you have the pthread library (-lpthread). */ #undef HAVE_LIBPTHREAD /* Define if you have the socket library (-lsocket). */ #undef HAVE_LIBSOCKET /* Define if you have the xml library (-lxml). */ #undef HAVE_LIBXML /* Define if you have version 1.8.6 of libxml. */ #undef HAVE_LIBXML_1_8_6 /* Define if you have the z library (-lz). */ #undef HAVE_LIBZ /* Defined if there is a socklen_t in */ #undef HAVE_SOCKLEN_T /* Defined if we have getnameinfo() in */ #undef HAVE_GETNAMEINFO #endif