Skip to content

Commit 2dfb746

Browse files
committed
Merge branch 'PHP-7.3'
* PHP-7.3: Sync with e0fe667
2 parents b27d867 + fdaa540 commit 2dfb746

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

ext/json/Makefile.frag.w32

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
ext\json\json_scanner.c: ext\json\json_scanner.re
3-
$(RE2C) -t ext/json/php_json_scanner_defs.h --no-generation-date -bci -o ext/json/json_scanner.c ext/json/json_scanner.re
3+
$(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
44

55
ext\json\json_parser.tab.c: ext\json\json_parser.y
66
$(BISON) --defines -l ext/json/json_parser.y -o ext/json/json_parser.tab.c

ext/pdo/Makefile.frag.w32

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

22
ext\pdo\pdo_sql_parser.c: ext\pdo\pdo_sql_parser.re
33
cd $(PHP_SRC_DIR)
4-
$(RE2C) --no-generation-date -o ext/pdo/pdo_sql_parser.c ext/pdo/pdo_sql_parser.re
4+
$(RE2C) $(RE2C_FLAGS) --no-generation-date -o ext/pdo/pdo_sql_parser.c ext/pdo/pdo_sql_parser.re
55

ext/phar/Makefile.frag.w32

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

22
ext\phar\phar_path_check.c: ext\phar\phar_path_check.re
33
cd $(PHP_SRC_DIR)
4-
$(RE2C) --no-generation-date -b -o ext/phar/phar_path_check.c ext/phar/phar_path_check.re
4+
$(RE2C) $(RE2C_FLAGS) --no-generation-date -b -o ext/phar/phar_path_check.c ext/phar/phar_path_check.re
55

ext/standard/Makefile.frag.w32

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11

22
ext\standard\var_unserializer.c: ext\standard\var_unserializer.re
33
cd $(PHP_SRC_DIR)
4-
$(RE2C) --no-generation-date -b -o ext/standard/var_unserializer.c ext/standard/var_unserializer.re
4+
$(RE2C) $(RE2C_FLAGS) --no-generation-date -b -o ext/standard/var_unserializer.c ext/standard/var_unserializer.re
55

66
ext\standard\url_scanner_ex.c: ext\standard\url_scanner_ex.re
77
cd $(PHP_SRC_DIR)
8-
$(RE2C) --no-generation-date -b -o ext/standard/url_scanner_ex.c ext/standard/url_scanner_ex.re
8+
$(RE2C) $(RE2C_FLAGS) --no-generation-date -b -o ext/standard/url_scanner_ex.c ext/standard/url_scanner_ex.re
99

1010
$(BUILD_DIR)\ext\standard\basic_functions.obj: $(PHP_SRC_DIR)\Zend\zend_language_parser.h
1111

0 commit comments

Comments
 (0)