config.m4 639 B

12345678910111213141516171819
  1. dnl config.m4 for extension json
  2. PHP_ARG_ENABLE(json, whether to enable JavaScript Object Serialization support,
  3. [ --disable-json Disable JavaScript Object Serialization support], yes)
  4. if test "$PHP_JSON" != "no"; then
  5. AC_DEFINE([HAVE_JSON],1 ,[whether to enable JavaScript Object Serialization support])
  6. AC_HEADER_STDC
  7. PHP_NEW_EXTENSION(json,
  8. json.c \
  9. json_encoder.c \
  10. json_parser.tab.c \
  11. json_scanner.c,
  12. $ext_shared,, -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1)
  13. PHP_INSTALL_HEADERS([ext/json], [php_json.h php_json_parser.h php_json_scanner.h])
  14. PHP_ADD_MAKEFILE_FRAGMENT()
  15. PHP_SUBST(JSON_SHARED_LIBADD)
  16. fi