diff options
author | Vanilla I. Shu <vanilla@FreeBSD.org> | 2001-04-23 04:25:26 +0000 |
---|---|---|
committer | Vanilla I. Shu <vanilla@FreeBSD.org> | 2001-04-23 04:25:26 +0000 |
commit | 7c60afc43758de3dbb046670d3d074c5f81bdce7 (patch) | |
tree | c5e3dac1e1abe9288e708f47aee0923751e1d354 /www/mod_php4/scripts | |
parent | a2dae989594a1a932d527b830b32062c16241daf (diff) |
Notes
Diffstat (limited to 'www/mod_php4/scripts')
-rw-r--r-- | www/mod_php4/scripts/configure.php | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/www/mod_php4/scripts/configure.php b/www/mod_php4/scripts/configure.php index 585fb91eee0e..1f731e1745f4 100644 --- a/www/mod_php4/scripts/configure.php +++ b/www/mod_php4/scripts/configure.php @@ -113,8 +113,15 @@ while [ "$1" ]; do ;; \"PostgreSQL\") echo "LIB_DEPENDS+= pq.2:\${PORTSDIR}/databases/postgresql7" - echo "CONFIGURE_ARGS+=--with-pgsql=\${PREFIX}" - if /usr/bin/ldd ${PREFIX}/bin/postgres 2> /dev/null | /usr/bin/grep -q "libssl"; then + if [ -x ${PREFIX}/pgsql/bin/postgres -a ! -x ${PREFIX}/bin/postgres ]; then + PGPREFIX=${PREFIX}/pgsql + else + PGPREFIX=${PREFIX} + echo "CFLAGS+=-I\${PREFIX}/include/pgsql" + fi + echo "PGPREFIX=${PGPREFIX}" + echo "CONFIGURE_ARGS+=--with-pgsql=\${PGPREFIX}" + if /usr/bin/ldd ${PGPREFIX}/bin/postgres 2> /dev/null | /usr/bin/grep -q "libssl"; then echo "USE_OPENSSL= yes" LIBS="${LIBS} -L\${OPENSSLBASE}/lib -lcrypto -lssl" fi |