mirror of
https://github.com/php/php-src.git
synced 2026-04-28 10:43:30 +02:00
f590b34530
PR #13498 bumped the required OpenSSL version to 1.1.1, but apparently only for non Windows system. We catch up somewhat by dropping support for OpenSSL < 1.1.0 on Windows; besides completely removing detection of old OpenSSL versions in `SETUP_OPENSSL`, we also ensure that all bundled extension using this function do no longer accept OpenSSL < 1.1.0, to avoid to still be able to build these extensions with older `phpize` scripts. We do not cater to `--phar-native-ssl` yet; that might better be addressed by #14578. Closes GH-14973.
32 lines
1.2 KiB
JavaScript
32 lines
1.2 KiB
JavaScript
// vim:ft=javascript
|
|
|
|
ARG_WITH("ldap", "LDAP support", "no");
|
|
|
|
if (PHP_LDAP != "no") {
|
|
|
|
if (CHECK_HEADER_ADD_INCLUDE("ldap.h", "CFLAGS_LDAP", PHP_PHP_BUILD + "\\include\\openldap;" + PHP_PHP_BUILD + "\\openldap\\include;" + PHP_LDAP) &&
|
|
CHECK_HEADER_ADD_INCLUDE("lber.h", "CFLAGS_LDAP", PHP_PHP_BUILD + "\\include\\openldap;" + PHP_PHP_BUILD + "\\openldap\\include;" + PHP_LDAP) &&
|
|
SETUP_OPENSSL("ldap", PHP_LDAP) >= 2 &&
|
|
CHECK_LIB("oldap32_a.lib", "ldap", PHP_LDAP) &&
|
|
CHECK_LIB("olber32_a.lib", "ldap", PHP_LDAP)&&
|
|
CHECK_LIB("libsasl.lib", "ldap", PHP_LDAP)) {
|
|
EXTENSION('ldap', 'ldap.c', null, "/DZEND_ENABLE_STATIC_TSRMLS_CACHE=1");
|
|
|
|
AC_DEFINE('HAVE_LDAP_PARSE_RESULT', 1);
|
|
AC_DEFINE('HAVE_LDAP_PARSE_REFERENCE', 1);
|
|
AC_DEFINE('HAVE_LDAP_START_TLS_S', 1);
|
|
AC_DEFINE('HAVE_LDAP', 1);
|
|
AC_DEFINE('HAVE_LDAP_SASL', 1);
|
|
AC_DEFINE('HAVE_LDAP_CONTROL_FIND', 1);
|
|
AC_DEFINE('HAVE_LDAP_PARSE_EXTENDED_RESULT', 1);
|
|
AC_DEFINE('HAVE_LDAP_EXTENDED_OPERATION_S', 1);
|
|
AC_DEFINE('HAVE_LDAP_PASSWD', 1);
|
|
AC_DEFINE('HAVE_LDAP_WHOAMI_S', 1);
|
|
AC_DEFINE('HAVE_LDAP_REFRESH_S', 1);
|
|
AC_DEFINE('HAVE_LDAP_EXTENDED_OPERATION', 1);
|
|
|
|
} else {
|
|
WARNING("ldap not enabled; libraries and headers not found");
|
|
}
|
|
}
|