From: Yasuo Ohgaki Date: Tue, 18 Dec 2001 23:47:12 +0000 (+0000) Subject: Get rid of useless path from seach path X-Git-Tag: PRE_ISSET_PATCH~479 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ee012b03c1141f86231339b186b407b0587bab7a;p=php Get rid of useless path from seach path --- 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