summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDarek Slusarczyk <dariusz.slusarczyk@oracle.com>2017-08-08 15:52:53 +0200
committerDarek Slusarczyk <dariusz.slusarczyk@oracle.com>2017-08-08 15:52:53 +0200
commit618dcd6520560ad69fc57c46c73528c1755151e6 (patch)
tree7bee59957a255405bc9fcc53d61bb4dd2dce64bb
parent4c9fe5a4907b71e72dac5175d6b1952f0077f988 (diff)
downloadphp-git-618dcd6520560ad69fc57c46c73528c1755151e6.tar.gz
JSON: fix config.w32 / Install headers on windows
-rw-r--r--NEWS1
-rw-r--r--ext/json/config.w322
2 files changed, 2 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 5085cb108d..7ff0849901 100644
--- a/NEWS
+++ b/NEWS
@@ -578,6 +578,7 @@ PHP NEWS
- JSON:
. Fixed bug #73526 (php_json_encode depth issue). (Jakub Zelenka)
+ . Install headers on windows. (Darek Slusarczyk)
- Mysqlnd:
. Fixed bug #64526 (Add missing mysqlnd.* parameters to php.ini-*). (cmb)
diff --git a/ext/json/config.w32 b/ext/json/config.w32
index c37d9a9025..c1a8ccfb30 100644
--- a/ext/json/config.w32
+++ b/ext/json/config.w32
@@ -17,6 +17,6 @@ if (PHP_JSON != "no") {
ADD_SOURCES(configure_module_dirname, "json_encoder.c json_parser.tab.c json_scanner.c", "json");
- PHP_INSTALL_HEADERS("ext/json/", "php_json.h");
+ PHP_INSTALL_HEADERS("ext/json/", "php_json.h php_json_parser.h php_json_scanner.h");
}