config.h.in
上传用户:gzpyjq
上传日期:2013-01-31
资源大小:1852k
文件大小:4k
源码类别:

手机WAP编程

开发平台:

WINDOWS

  1. #ifndef CONFIG_H
  2. #define CONFIG_H
  3. /* Define one of these depending on which malloc wrapper you want to use. */
  4. #undef USE_GWMEM_NATIVE
  5. #undef USE_GWMEM_CHECK
  6. #undef USE_GWMEM_SLOW
  7. /* Define if you want information about lock collisions to be collected.
  8.  * These are useful for finding performance bottlenecks. */
  9. #undef MUTEX_STATS
  10. /* Define if you want log file timestamps in localtime instead of GMT. */
  11. #undef LOG_TIMESTAMP_LOCALTIME
  12. /* Define if you have the ANSI C header files.  */
  13. #undef STDC_HEADERS
  14. /* Define if your compiler supports the __func__ magic symbol. This is
  15.    part of C99. */
  16. #undef HAVE___FUNC__
  17. /* Define if your compiler supports the __FUNCTION__ magic symbol. */
  18. #undef HAVE___FUNCTION__
  19. /* Make sure __func__ does something useful. */
  20. #if defined(HAVE___FUNC__)
  21.     /* Nothing to do. Life is so wonderful. */
  22. #elif defined(HAVE___FUNCTION__)
  23.     #define __func__ __FUNCTION__
  24. #else
  25.     #define __func__ "unknown"
  26. #endif
  27. /* Define if you have getopt.h. */
  28. #undef HAVE_GETOPT_H
  29. /* Define if you have getopt(3). */
  30. #undef HAVE_GETOPT
  31. /* Define if you have a declaration for getopt(3) in <stdio.h>. */
  32. #undef HAVE_GETOPT_IN_STDIO_H
  33. /* Define if you have a declaration for getopt(3) in <unistd.h>. */
  34. #undef HAVE_GETOPT_IN_UNISTD_H
  35. /* Define if you have getopt_long(3). */
  36. #undef HAVE_GETOPT_LONG
  37. /* Define gateway name */
  38. #undef GW_NAME
  39. /* the VERSION symbol - for older autoconfs */
  40. #undef VERSION
  41. /* WMLScript debugging. */
  42. #undef WS_DEBUG
  43. /* Define if you have the gettimeofday function.  */
  44. #undef HAVE_GETTIMEOFDAY
  45. /* Define if you have the select function.  */
  46. #undef HAVE_SELECT
  47. /* Define if you have the socket function.  */
  48. #undef HAVE_SOCKET
  49. /* Define if you have the <fcntl.h> header file.  */
  50. #undef HAVE_FCNTL_H
  51. /* Define if you have the <pthread.h> header file.  */
  52. #undef HAVE_PTHREAD_H
  53. /* Define if you have the <sys/ioctl.h> header file.  */
  54. #undef HAVE_SYS_IOCTL_H
  55. /* Define if you have the <sys/types.h> header file.  */
  56. #undef HAVE_SYS_TYPES_H
  57. /* Define if you have the <unistd.h> header file.  */
  58. #undef HAVE_UNISTD_H
  59. /* Define if you have the <sys/poll.h> header file.  */
  60. #undef HAVE_SYS_POLL_H
  61. /* Define if you have the m library (-lm).  */
  62. #undef HAVE_LIBM
  63. /* Define if you have the nsl library (-lnsl).  */
  64. #undef HAVE_LIBNSL
  65. /* Define if you have the pthread library (-lpthread).  */
  66. #undef HAVE_LIBPTHREAD
  67. /* Define if you have the socket library (-lsocket).  */
  68. #undef HAVE_LIBSOCKET
  69. /* Define if you have the xml library (-lxml).  */
  70. #undef HAVE_LIBXML
  71. /* Define if you have the z library (-lz).  */
  72. #undef HAVE_LIBZ
  73. /* Define if there is a socklen_t in <sys/socket.h> */
  74. #undef HAVE_SOCKLEN_T
  75. /* Define if the PAM headers are on the local machine */
  76. #undef HAVE_SECURITY_PAM_APPL_H
  77. /* Define if you want to turn off assertion checking */
  78. #undef NO_GWASSERT
  79. /* Define if you have <syslog.h>.  */
  80. #undef HAVE_SYSLOG_H
  81. /* Define if you have and want to use the ssl library (-lssl) */
  82. #undef HAVE_LIBSSL
  83. /* Defined if we're using OpenSSL WTLS */
  84. #undef HAVE_WTLS_OPENSSL
  85. /* Define if you have and want to use the MySQL client library (-lmysqlclient) */
  86. #undef HAVE_MYSQL
  87. /* Define if you have and want to use the sdb client library (-lsdb) */
  88. #undef HAVE_SDB
  89. /* Define if you want to use the MySQL support for DLR (delivery reports) */
  90. #undef DLR_MYSQL
  91. /* Define if you want to use the simple database library (libSDB) support for DLR */
  92. #undef DLR_SDB
  93. /* Define version of used libSDB */
  94. #undef LIBSDB_VERSION
  95. /* Define if you want to have cookie support for the WSP */
  96. #undef ENABLE_COOKIES
  97.                      
  98. #endif