blob: 790c86d5eab6938aac965a82662d9c090c342399 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// $Id$
// vim:ft=javascript
ARG_ENABLE("json", "JavaScript Object Serialization support", "yes");
if (PHP_JSON != "no") {
EXTENSION('json', 'json.c', PHP_JSON_SHARED, "");
PHP_NEW_EXTENSION(json,
json.c \
json_parser.tab.c \
json_scanner.c,
$ext_shared)
PHP_INSTALL_HEADERS("ext/json/", "php_json.h");
}
|