mirror of
https://github.com/php/php-src.git
synced 2026-04-03 06:02:23 +02:00
This syncs few inconsistencies between the Windows and Autotools build systems: - HAVE_OPENSSL_EXT is now defined in the same style on both systems (undefined - extension is not available, defined to 1 - extension is available) - HAVE_OPENSSL removed as it was only defined on Windows
13 lines
311 B
JavaScript
13 lines
311 B
JavaScript
// vim:ft=javascript
|
|
|
|
ARG_WITH("openssl", "OpenSSL support", "no,shared");
|
|
|
|
if (PHP_OPENSSL != "no") {
|
|
var ret = SETUP_OPENSSL("openssl", PHP_OPENSSL);
|
|
|
|
if (ret > 0) {
|
|
EXTENSION("openssl", "openssl.c xp_ssl.c");
|
|
AC_DEFINE("HAVE_OPENSSL_EXT", 1, "Define to 1 if the openssl extension is available.");
|
|
}
|
|
}
|