diff options
author | Sascha Schumann <sas@php.net> | 2002-04-21 10:18:34 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 2002-04-21 10:18:34 +0000 |
commit | 9a7418906cea46a01a039f61b16789354932feaa (patch) | |
tree | 4e5e4c6bfb206670cfb7c41d2624360f7ad624cc | |
parent | 8a41f93fcc0fea266ccdb28298d411cca8208b1f (diff) | |
download | php-git-9a7418906cea46a01a039f61b16789354932feaa.tar.gz |
Also support --disable-shared installations of pgsql
-rw-r--r-- | ext/pgsql/config.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
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 |