From 9a7418906cea46a01a039f61b16789354932feaa Mon Sep 17 00:00:00 2001 From: Sascha Schumann Date: Sun, 21 Apr 2002 10:18:34 +0000 Subject: [PATCH] Also support --disable-shared installations of pgsql --- ext/pgsql/config.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/pgsql/config.m4 b/ext/pgsql/config.m4 index d4e80322d0..cab47976e3 100644 --- a/ext/pgsql/config.m4 +++ b/ext/pgsql/config.m4 @@ -30,7 +30,7 @@ if test "$PHP_PGSQL" != "no"; then done for j in lib lib/pgsql lib/postgres lib/postgresql ""; do - if test -f "$i/$j/libpq.so"; then + if test -f "$i/$j/libpq.so" || test -f "$i/$j/libpq.a"; then PGSQL_LIBDIR=$i/$j fi done -- 2.50.1