Merge branch 'PHP-7.4'

* PHP-7.4:
  Allow lookup of distro-packaged QDBM headers on Debian
This commit is contained in:
Christoph M. Becker 2019-09-23 09:54:59 +02:00
commit 72f73f95b5

View file

@ -141,6 +141,10 @@ if test "$PHP_QDBM" != "no"; then
THIS_PREFIX=$i
THIS_INCLUDE=$i/include/depot.h
break
elif test -f "$i/include/qdbm/depot.h"; then
THIS_PREFIX=$i
THIS_INCLUDE=$i/include/qdbm/depot.h
break
fi
done