From 618dcd6520560ad69fc57c46c73528c1755151e6 Mon Sep 17 00:00:00 2001 From: Darek Slusarczyk Date: Tue, 8 Aug 2017 15:52:53 +0200 Subject: [PATCH] JSON: fix config.w32 / Install headers on windows --- NEWS | 1 + ext/json/config.w32 | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index 5085cb108d1..7ff08499018 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 c37d9a9025e..c1a8ccfb306 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"); }