blob: 996b86829dee20e9682e6d2c01f1887c64f1e82e (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// $Id$
// vim:ft=javascript
ARG_ENABLE("json", "JavaScript Object Serialization support", "yes");
if (PHP_JSON != "no") {
EXTENSION('json', 'json.c', PHP_JSON_SHARED, "/DZEND_ENABLE_STATIC_TSRMLS_CACHE=1");
ADD_SOURCES(configure_module_dirname, "json_encoder.c json_parser.tab.c json_scanner.c", "json");
PHP_INSTALL_HEADERS("ext/json/", "php_json.h");
}
|