Merge pull request #82 from mlocati/ldap-alpine

Fix ldap on Alpine
pull/83/head
Michele Locati 2019-12-23 09:51:49 +01:00 committed by GitHub
commit ebff852d98
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 1 deletions

View File

@ -765,7 +765,11 @@ installBundledModule() {
esac esac
;; ;;
ldap) ldap)
docker-php-ext-configure ldap --with-libdir=lib/$(gcc -dumpmachine) case "$(getDistro)" in
debian)
docker-php-ext-configure ldap --with-libdir=lib/$(gcc -dumpmachine)
;;
esac
;; ;;
mssql | pdo_dblib) mssql | pdo_dblib)
case "$1" in case "$1" in