diff options
author | Anatol Belski <ab@php.net> | 2017-04-24 15:46:22 +0200 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2017-04-24 15:46:22 +0200 |
commit | f7b8322b144122baddaf365c37dca3b8e547725e (patch) | |
tree | ca9924a9a749816b7d94029155f3fca636dcfc03 /ext | |
parent | dd36541f2cb67223085a68f63c35a6a9c37e7a86 (diff) | |
download | php-git-f7b8322b144122baddaf365c37dca3b8e547725e.tar.gz |
Support also no,shared configure arg vals by default
This indirectly fixes bug #74398 where --with-extname is expected to be
configured shared with our default dependency package. With a non
default deps, it still can be enforced --with-extname=static
Diffstat (limited to 'ext')
-rw-r--r-- | ext/openssl/config.w32 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/openssl/config.w32 b/ext/openssl/config.w32 index 066d7bc853..c9608531b7 100644 --- a/ext/openssl/config.w32 +++ b/ext/openssl/config.w32 @@ -1,7 +1,7 @@ // $Id$ // vim:ft=javascript -ARG_WITH("openssl", "OpenSSL support", "no"); +ARG_WITH("openssl", "OpenSSL support", "no,shared"); if (PHP_OPENSSL != "no") { if (CHECK_LIB("ssleay32.lib", "openssl", PHP_OPENSSL) && |