summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph M. Becker <cmbecker69@gmx.de>2019-09-23 09:54:59 +0200
committerChristoph M. Becker <cmbecker69@gmx.de>2019-09-23 09:54:59 +0200
commit72f73f95b50c05136468f5e183327fbd9af48bd5 (patch)
tree91b8155a6255865c279dfa5127afd38307806fee
parent01bdc68379f9aa80640c95db40102de5148f04b9 (diff)
parent7a81505f6f9db06d2f876dd8e87c0dc546834260 (diff)
downloadphp-git-72f73f95b50c05136468f5e183327fbd9af48bd5.tar.gz
Merge branch 'PHP-7.4'
* PHP-7.4: Allow lookup of distro-packaged QDBM headers on Debian
-rw-r--r--ext/dba/config.m44
1 files changed, 4 insertions, 0 deletions
diff --git a/ext/dba/config.m4 b/ext/dba/config.m4
index dcf01d0d13..1e80319218 100644
--- a/ext/dba/config.m4
+++ b/ext/dba/config.m4
@@ -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