Skip to content

Commit dd712db

Browse files
committed
PHPC-852: Do not depend on date and standard extensions in config.w32
1 parent 4a7f6d5 commit dd712db

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

config.w32

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,10 @@ ARG_ENABLE("mongodb", "MongoDB support", "no");
4646
ARG_WITH("mongodb-sasl", "MongoDB: Build against Cyrus-SASL", "yes");
4747

4848
if (PHP_MONGODB != "no") {
49-
ADD_EXTENSION_DEP("mongodb", "date", false);
49+
/* Note: ADD_EXTENSION_DEP() cannot be used to declare that we depend on the
50+
* date and standard extensions. Assume that they're always enabled. */
5051
ADD_EXTENSION_DEP("mongodb", "json", false);
5152
ADD_EXTENSION_DEP("mongodb", "spl", false);
52-
ADD_EXTENSION_DEP("mongodb", "standard", false);
5353

5454
/* MongoDB does not actually depend on PHP's OpenSSL extension, but this is in
5555
* place to ensure that later SSL library checks succeed. This can be removed

0 commit comments

Comments
 (0)