diff options
author | Pete Fritchman <petef@FreeBSD.org> | 2001-11-25 09:32:44 +0000 |
---|---|---|
committer | Pete Fritchman <petef@FreeBSD.org> | 2001-11-25 09:32:44 +0000 |
commit | 8fd1acc825144877ac0286a41ce87af138c08457 (patch) | |
tree | 506ea02368130c537cd8b01969f06293d044ac73 /lang/pike | |
parent | Add mod_log_mysql-1.09, allows Apache to log to a MySQL database (diff) |
Fix PostgreSQL support:
- depend on ${PREFIX}/bin/pgsql, not ${PREFIX}/pgsql/bin/pgsql (as postgres
conforms to hier(7) now)
- fix typo: PostgresSQL -> PostgreSQL
PR: 32239
Submitted by: Anthony Kim <anthony.kim@vw.com>
Notes
Notes:
svn path=/head/; revision=50523
Diffstat (limited to 'lang/pike')
-rw-r--r-- | lang/pike/scripts/configure.pike | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/pike/scripts/configure.pike b/lang/pike/scripts/configure.pike index 07ace70ee980..a03a23b61650 100644 --- a/lang/pike/scripts/configure.pike +++ b/lang/pike/scripts/configure.pike @@ -77,9 +77,9 @@ while [ "$1" ]; do MySQL=1 ;; \"PostgreSQL\") - echo "BUILD_DEPENDS+= \${PREFIX}/pgsql/bin/psql:\${PORTSDIR}/databases/postgresql7" >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc + echo "BUILD_DEPENDS+= \${PREFIX}/bin/psql:\${PORTSDIR}/databases/postgresql7" >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc echo "CONFIGURE_ARGS+= --with-pgsql=\${PREFIX}/pgsql" >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc - PostgresSQL=1 + PostgreSQL=1 ;; \"mSQL\") echo "BUILD_DEPENDS+= msql:\${PORTSDIR}/databases/msql" >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc |