You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

118 lines
3.2 KiB

27 years ago
27 years ago
27 years ago
27 years ago
27 years ago
27 years ago
27 years ago
27 years ago
27 years ago
27 years ago
27 years ago
  1. /* This is the default configuration file to read -*- C -*- */
  2. /* these are defined by automake */
  3. #undef PACKAGE
  4. #undef VERSION
  5. #undef HAVE_STRUCT_FLOCK
  6. #undef HAVE_TM_GMTOFF
  7. #define CONFIGURATION_FILE_PATH "php.ini"
  8. #define USE_CONFIG_FILE 1
  9. #undef HAVE_DMALLOC
  10. /* Some global constants defined by conigure */
  11. #undef PHP_BUILD_DATE
  12. #undef PHP_OS
  13. #undef PHP_UNAME
  14. /* define uint by configure if it is missed (QNX and BSD derived) */
  15. #undef uint
  16. /* define ulong by configure if it is missed (most probably is) */
  17. #undef ulong
  18. /* type check for in_addr_t */
  19. #undef in_addr_t
  20. /* Define if you have dirent.h but opendir() resides in libc rather than in libdir */
  21. /* This will cause HAVE_DIRENT_H defined twice sometimes, but it should be problem */
  22. #undef HAVE_DIRENT_H
  23. /* Define if you have the resolv library (-lresolv). */
  24. #undef HAVE_LIBRESOLV
  25. /* Define if you have the pam library (-lpam). */
  26. #define HAVE_LIBPAM 0
  27. /* Define if you have the bind library (-lbind). */
  28. #define HAVE_LIBBIND 0
  29. /* Define if you have Netscape LDAP instead of umich ldap or openldap*/
  30. #define HAVE_NSLDAP 0
  31. /* Define if you want safe mode enabled by default. */
  32. #define PHP_SAFE_MODE 0
  33. /* Set to the path to the dir containing safe mode executables */
  34. #define PHP_SAFE_MODE_EXEC_DIR /usr/local/php/bin
  35. /* Define if you want POST/GET/Cookie track variables by default */
  36. #define PHP_TRACK_VARS 0
  37. /* Undefine if you want stricter XML/SGML compliance by default */
  38. /* (this disables "<?expression?>" by default) */
  39. #define DEFAULT_SHORT_OPEN_TAG 1
  40. /* Undefine if you do not want PHP by default to escape "'" */
  41. /* in GET/POST/Cookie data */
  42. #define MAGIC_QUOTES 1
  43. /* Define both of these if you want the bundled REGEX library */
  44. #define REGEX 0
  45. #define HSREGEX 0
  46. /* Define if you have and want to use libnsl */
  47. #undef HAVE_LIBNSL
  48. /* Define if you have and want to use libsocket */
  49. #undef HAVE_LIBSOCKET
  50. /* Define if you have the sendmail program available */
  51. #define HAVE_SENDMAIL 0
  52. /* Define if you are compiling PHP as an Apache module */
  53. #define APACHE 0
  54. /* Define if you are compiling PHP as an Apache module with mod_charset patch applied (aka Russian Apache)*/
  55. #define USE_TRANSFER_TABLES 0
  56. /* Define if you are compiling PHP as an fhttpd module */
  57. #define FHTTPD 0
  58. /* Define if your Apache creates an ap_config.h header file (only 1.3b6 and later) */
  59. #define HAVE_AP_CONFIG_H 0
  60. /* Define if your Apache has src/include/compat.h */
  61. #define HAVE_OLD_COMPAT_H 0
  62. /* Define if your Apache has src/include/ap_compat.h */
  63. #define HAVE_AP_COMPAT_H 0
  64. #ifndef DEBUG /* should be set to ZEND_DEBUG */
  65. #define DEBUG 0
  66. #endif
  67. /* Define if you want to enable PHP RPC (experimental) */
  68. #define PHP_RPC 0
  69. /* Define if you want to prevent the CGI from working unless REDIRECT_STATUS is defined in the environment */
  70. #define FORCE_CGI_REDIRECT 0
  71. /* Define if you want to prevent the CGI from using path_info and path_translated */
  72. #define DISCARD_PATH 0
  73. /* Define if you want include() and other functions to be able to open
  74. * http and ftp URLs as files.
  75. */
  76. #define PHP3_URL_FOPEN 0
  77. /* Define if you have broken header files like SunOS 4 */
  78. #define MISSING_FCLOSE_DECL 0
  79. /* Define if you have broken sprintf function like SunOS 4 */
  80. #define BROKEN_SPRINTF 0
  81. /* Define to compile PHP/Zend thread safe */
  82. #undef ZTS