diff options
author | Anatol Belski <ab@php.net> | 2018-08-13 09:18:38 +0200 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2018-08-13 09:18:38 +0200 |
commit | fdaa540fd8340b466af950ad65a1623b345a051c (patch) | |
tree | b2019d00c97b52f10fd1f6c34098d12d7aa0064e /ext | |
parent | 9eb51ce364d7e41e2410b733ae68c16a27130125 (diff) | |
download | php-git-fdaa540fd8340b466af950ad65a1623b345a051c.tar.gz |
Sync with e0fe6674
Diffstat (limited to 'ext')
-rw-r--r-- | ext/json/Makefile.frag.w32 | 2 | ||||
-rw-r--r-- | ext/pdo/Makefile.frag.w32 | 2 | ||||
-rw-r--r-- | ext/phar/Makefile.frag.w32 | 2 | ||||
-rw-r--r-- | ext/standard/Makefile.frag.w32 | 4 |
4 files changed, 5 insertions, 5 deletions
diff --git a/ext/json/Makefile.frag.w32 b/ext/json/Makefile.frag.w32 index eaf47e22be..ceaf2595cb 100644 --- a/ext/json/Makefile.frag.w32 +++ b/ext/json/Makefile.frag.w32 @@ -1,6 +1,6 @@ ext\json\json_scanner.c: ext\json\json_scanner.re - $(RE2C) -t ext/json/php_json_scanner_defs.h --no-generation-date -bci -o ext/json/json_scanner.c ext/json/json_scanner.re + $(RE2C) $(RE2C_FLAGS) -t ext/json/php_json_scanner_defs.h --no-generation-date -bci -o ext/json/json_scanner.c ext/json/json_scanner.re ext\json\json_parser.tab.c: ext\json\json_parser.y $(BISON) --defines -l ext/json/json_parser.y -o ext/json/json_parser.tab.c diff --git a/ext/pdo/Makefile.frag.w32 b/ext/pdo/Makefile.frag.w32 index 3e21fad7e4..3958f95a9f 100644 --- a/ext/pdo/Makefile.frag.w32 +++ b/ext/pdo/Makefile.frag.w32 @@ -1,5 +1,5 @@ ext\pdo\pdo_sql_parser.c: ext\pdo\pdo_sql_parser.re cd $(PHP_SRC_DIR) - $(RE2C) --no-generation-date -o ext/pdo/pdo_sql_parser.c ext/pdo/pdo_sql_parser.re + $(RE2C) $(RE2C_FLAGS) --no-generation-date -o ext/pdo/pdo_sql_parser.c ext/pdo/pdo_sql_parser.re diff --git a/ext/phar/Makefile.frag.w32 b/ext/phar/Makefile.frag.w32 index c50b1dbc51..29906a3723 100644 --- a/ext/phar/Makefile.frag.w32 +++ b/ext/phar/Makefile.frag.w32 @@ -1,5 +1,5 @@ ext\phar\phar_path_check.c: ext\phar\phar_path_check.re cd $(PHP_SRC_DIR) - $(RE2C) --no-generation-date -b -o ext/phar/phar_path_check.c ext/phar/phar_path_check.re + $(RE2C) $(RE2C_FLAGS) --no-generation-date -b -o ext/phar/phar_path_check.c ext/phar/phar_path_check.re diff --git a/ext/standard/Makefile.frag.w32 b/ext/standard/Makefile.frag.w32 index 640e4840d3..15ad0789fd 100644 --- a/ext/standard/Makefile.frag.w32 +++ b/ext/standard/Makefile.frag.w32 @@ -1,11 +1,11 @@ ext\standard\var_unserializer.c: ext\standard\var_unserializer.re cd $(PHP_SRC_DIR) - $(RE2C) --no-generation-date -b -o ext/standard/var_unserializer.c ext/standard/var_unserializer.re + $(RE2C) $(RE2C_FLAGS) --no-generation-date -b -o ext/standard/var_unserializer.c ext/standard/var_unserializer.re ext\standard\url_scanner_ex.c: ext\standard\url_scanner_ex.re cd $(PHP_SRC_DIR) - $(RE2C) --no-generation-date -b -o ext/standard/url_scanner_ex.c ext/standard/url_scanner_ex.re + $(RE2C) $(RE2C_FLAGS) --no-generation-date -b -o ext/standard/url_scanner_ex.c ext/standard/url_scanner_ex.re $(BUILD_DIR)\ext\standard\basic_functions.obj: $(PHP_SRC_DIR)\Zend\zend_language_parser.h |