summaryrefslogtreecommitdiff
path: root/ext/dba
diff options
context:
space:
mode:
authorStephen Reay <stephen.reay@me.com>2019-09-22 22:51:36 +0700
committerChristoph M. Becker <cmbecker69@gmx.de>2019-09-23 09:53:31 +0200
commit7a81505f6f9db06d2f876dd8e87c0dc546834260 (patch)
tree498f8ff88a34fcf50de2375f64af67c8adb1c6da /ext/dba
parent3a937c46e0b81da62b00ab78776cc345a9316a31 (diff)
downloadphp-git-7a81505f6f9db06d2f876dd8e87c0dc546834260.tar.gz
Allow lookup of distro-packaged QDBM headers on Debian
Diffstat (limited to 'ext/dba')
-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