Skip to content

Commit b678df5

Browse files
committed
Merge branch 'PHP-7.4' into PHP-8.0
* PHP-7.4: Fix #80280: ADD_EXTENSION_DEP() fails for ext/standard and ext/date
2 parents 50d75ae + 8b59e4e commit b678df5

File tree

3 files changed

+4
-0
lines changed

3 files changed

+4
-0
lines changed

NEWS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ PHP NEWS
55
- Core:
66
. Fixed bug #8055 (Abstract trait methods returning "self" cannot be
77
fulfilled by traits). (Nikita)
8+
. Fixed bug #80280 (ADD_EXTENSION_DEP() fails for ext/standard and ext/date).
9+
(cmb)
810

911
- IMAP:
1012
. Fixed bug #76618 (segfault on imap_reopen). (girgias)

ext/date/config.w32

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
// vim:ft=javascript
22

33
EXTENSION("date", "php_date.c", false, "/Iext/date/lib /DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 /DHAVE_TIMELIB_CONFIG_H=1");
4+
PHP_DATE = "yes";
45
ADD_SOURCES("ext/date/lib", "astro.c timelib.c dow.c parse_date.c parse_tz.c tm2unixtime.c unixtime2tm.c parse_iso_intervals.c interval.c", "date");
56

67
ADD_FLAG('CFLAGS_DATE', "/wd4244");

ext/standard/config.w32

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,6 @@ EXTENSION("standard", "array.c base64.c basic_functions.c browscap.c \
3737
user_filters.c uuencode.c filters.c proc_open.c password.c \
3838
streamsfuncs.c http.c flock_compat.c random.c hrtime.c", false /* never shared */,
3939
'/DZEND_ENABLE_STATIC_TSRMLS_CACHE=1');
40+
PHP_STANDARD = "yes";
4041
ADD_MAKEFILE_FRAGMENT();
4142
PHP_INSTALL_HEADERS("", "ext/standard");

0 commit comments

Comments
 (0)