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.

66 lines
1.2 KiB

27 years ago
27 years ago
27 years ago
  1. #define ZEND_API
  2. @TOP@
  3. /* This is the default configuration file to read */
  4. #define USE_CONFIG_FILE 1
  5. /* these are defined by automake */
  6. #undef PACKAGE
  7. #undef VERSION
  8. /* define uint by configure if it is missed (QNX and BSD derived) */
  9. #undef uint
  10. /* define ulong by configure if it is missed (most probably is) */
  11. #undef ulong
  12. /* Undefine if you want stricter XML/SGML compliance by default */
  13. /* (this disables "<?expression?>" by default) */
  14. #define T_DEFAULT_SHORT_OPEN_TAG 1
  15. /* Define both of these if you want the bundled REGEX library */
  16. #define REGEX 0
  17. #define HSREGEX 0
  18. #undef ZEND_DEBUG
  19. /* Define if you want to enable memory limit support */
  20. #define MEMORY_LIMIT 0
  21. /* Define to compile Zend thread safe */
  22. #undef ZTS
  23. #undef HAVE_LIBDL
  24. @BOTTOM@
  25. #ifdef HAVE_STDLIB_H
  26. # include <stdlib.h>
  27. #endif
  28. #ifdef HAVE_SYS_TYPES_H
  29. # include <sys/types.h>
  30. #endif
  31. #ifdef HAVE_STRING_H
  32. # include <string.h>
  33. #else
  34. # include <strings.h>
  35. #endif
  36. /* Define if you have stdiostream.h */
  37. #undef HAVE_STDIOSTREAM_H
  38. #if ZEND_BROKEN_SPRINTF
  39. int zend_sprintf(char *buffer, const char *format, ...);
  40. #else
  41. # define zend_sprintf sprintf
  42. #endif
  43. /*
  44. * Local variables:
  45. * tab-width: 4
  46. * c-basic-offset: 4
  47. * End:
  48. */