diff options
author | Côme Chilliet <mcmic@php.net> | 2019-02-04 13:04:46 +0100 |
---|---|---|
committer | Côme Chilliet <mcmic@php.net> | 2019-02-04 13:10:05 +0100 |
commit | f0ddc93f46b31d117ae1c18dbce2bf39f1b91b94 (patch) | |
tree | a8b1e6a04d3cc06d8f3bdda9dcf2e13ffd4ccc4c /ext/ldap/config.m4 | |
parent | 53ce98ca0c93ac5b7d9c756801ffadc36ea01ff9 (diff) | |
download | php-git-f0ddc93f46b31d117ae1c18dbce2bf39f1b91b94.tar.gz |
Removed ldap_sort and LDAP_DEPRECATED build flag
ldap_sort was deprecated in PHP7, it is now removed.
This allows removing the LDAP_DEPRECATED flag when building against
openldap.
Diffstat (limited to 'ext/ldap/config.m4')
-rw-r--r-- | ext/ldap/config.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/ldap/config.m4 b/ext/ldap/config.m4 index 6a34fb7434..38bd8ee56d 100644 --- a/ext/ldap/config.m4 +++ b/ext/ldap/config.m4 @@ -90,7 +90,7 @@ PHP_ARG_WITH(ldap-sasl,for LDAP Cyrus SASL support, if test "$PHP_LDAP" != "no"; then - PHP_NEW_EXTENSION(ldap, ldap.c, $ext_shared,,-DLDAP_DEPRECATED=1) + PHP_NEW_EXTENSION(ldap, ldap.c, $ext_shared,,) if test "$PHP_LDAP" = "yes"; then for i in /usr/local /usr; do |