summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYasuo Ohgaki <yohgaki@php.net>2001-12-18 23:47:12 +0000
committerYasuo Ohgaki <yohgaki@php.net>2001-12-18 23:47:12 +0000
commitee012b03c1141f86231339b186b407b0587bab7a (patch)
treeb7475b6e284541ced546ff420e7a307131c3dac1
parent43617d0d5065e2f93b90372b9150a7d00d2bdc8a (diff)
downloadphp-git-ee012b03c1141f86231339b186b407b0587bab7a.tar.gz
Get rid of useless path from seach path
-rw-r--r--ext/pgsql/config.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/pgsql/config.m4 b/ext/pgsql/config.m4
index b053fd5da1..3a8e1eff75 100644
--- a/ext/pgsql/config.m4
+++ b/ext/pgsql/config.m4
@@ -19,14 +19,14 @@ if test "$PHP_PGSQL" != "no"; then
fi
for i in $PGSQL_SEARCH_PATHS; do
- for j in include include/pgsql include/postgres include/postgresql src/include/libpq ""; do
+ for j in include include/pgsql include/postgres include/postgresql ""; do
if test -r "$i/$j/libpq-fe.h"; then
PGSQL_INC_BASE=$i
PGSQL_INCLUDE=$i/$j
fi
done
- for j in lib lib/pgsql lib/postgres lib/postgresql src/interfaces/libpq ""; do
+ for j in lib lib/pgsql lib/postgres lib/postgresql ""; do
if test -f "$i/$j/libpq.so"; then
PGSQL_LIBDIR=$i/$j
fi