summaryrefslogtreecommitdiff
path: root/debian/patches/qdbm-is-usr_include_qdbm.patch
blob: 2469b9b7c8a15b630415be90ec48b51950dbc62d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Description: Look for qdbm under $prefix/include/qdbm too.
 The Debian package ships the header files under that directory, for
 unknown reasons.
Origin: vendor
Forwarded: not-needed
Last-Update: 2010-02-21

--- php5.orig/ext/dba/config.m4
+++ php5/ext/dba/config.m4
@@ -113,6 +113,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