#ifndef CONFIG_H #define CONFIG_H /* Define one of these depending on which malloc wrapper you want to use. */ #undef USE_GWMEM_NATIVE #undef USE_GWMEM_CHECK #undef USE_GWMEM_SLOW /* 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 your compiler supports the __func__ magic symbol. This is part of C99. */ #undef HAVE___FUNC__ /* Define if your compiler supports the __FUNCTION__ magic symbol. */ #undef HAVE___FUNCTION__ /* Make sure __func__ does something useful. */ #if defined(HAVE___FUNC__) /* Nothing to do. Life is so wonderful. */ #elif defined(HAVE___FUNCTION__) #define __func__ __FUNCTION__ #else #define __func__ "unknown" #endif /* Define if you have getopt.h. */ #undef HAVE_GETOPT_H /* Define if you have getopt(3). */ #undef HAVE_GETOPT /* Define if you have a declaration for getopt(3) in . */ #undef HAVE_GETOPT_IN_STDIO_H /* Define if you have a declaration for getopt(3) in . */ #undef HAVE_GETOPT_IN_UNISTD_H /* Define if you have getopt_long(3). */ #undef HAVE_GETOPT_LONG /* Define gateway name */ #undef GW_NAME /* the VERSION symbol - for older autoconfs */ #undef VERSION /* WMLScript debugging. */ #undef WS_DEBUG /* 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 header file. */ #undef HAVE_SYS_POLL_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 the z library (-lz). */ #undef HAVE_LIBZ /* Define if there is a socklen_t in */ #undef HAVE_SOCKLEN_T /* Define if the PAM headers are on the local machine */ #undef HAVE_SECURITY_PAM_APPL_H /* Define if you want to turn off assertion checking */ #undef NO_GWASSERT /* Define if you have . */ #undef HAVE_SYSLOG_H /* Define if you have and want to use the ssl library (-lssl) */ #undef HAVE_LIBSSL /* Defined if we're using OpenSSL WTLS */ #undef HAVE_WTLS_OPENSSL /* Define if you have and want to use the MySQL client library (-lmysqlclient) */ #undef HAVE_MYSQL /* Define if you have and want to use the sdb client library (-lsdb) */ #undef HAVE_SDB /* Define if you want to use the MySQL support for DLR (delivery reports) */ #undef DLR_MYSQL /* Define if you want to use the simple database library (libSDB) support for DLR */ #undef DLR_SDB /* Define version of used libSDB */ #undef LIBSDB_VERSION /* Define if you want to have cookie support for the WSP */ #undef ENABLE_COOKIES #endif