diff options
Diffstat (limited to 'ext/json/config.w32')
-rw-r--r-- | ext/json/config.w32 | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/ext/json/config.w32 b/ext/json/config.w32 new file mode 100644 index 0000000..cedbf42 --- /dev/null +++ b/ext/json/config.w32 @@ -0,0 +1,11 @@ +// $Id$ +// vim:ft=javascript + +ARG_ENABLE("json", "JavaScript Object Serialization support", "yes"); + +if (PHP_JSON != "no") { + EXTENSION('json', 'json.c', PHP_JSON_SHARED, ""); + ADD_SOURCES(configure_module_dirname, "JSON_parser.c utf8_decode.c", "json"); + PHP_INSTALL_HEADERS("ext/json/", "php_json.h"); +} + |