summaryrefslogtreecommitdiff
path: root/www/mod_php3
diff options
context:
space:
mode:
authorAndreas Klemm <andreas@FreeBSD.org>1998-06-27 13:52:34 +0000
committerAndreas Klemm <andreas@FreeBSD.org>1998-06-27 13:52:34 +0000
commit50e81692acfd9757e00129fc2cab3e82fcf53761 (patch)
tree0d1fcb0d70090f34a83d8b1ab627e7dd7552e665 /www/mod_php3
parentchecksums changed on mastersite... (diff)
William sent patches to me so support dbase type database...
If there are any problems related to this, send him an e-mail, I can't test this ! Submitted by: William Lloyd <wlloyd@mpd.ca>
Notes
Notes: svn path=/head/; revision=11561
Diffstat (limited to 'www/mod_php3')
-rw-r--r--www/mod_php3/Makefile14
1 files changed, 9 insertions, 5 deletions
diff --git a/www/mod_php3/Makefile b/www/mod_php3/Makefile
index cd1edd56705f..d46c2e453526 100644
--- a/www/mod_php3/Makefile
+++ b/www/mod_php3/Makefile
@@ -1,9 +1,9 @@
-# New ports collection makefile for: apache HTTPD / php 2.0.1
-# Version required: 1.2.5 / 2.0.1
+# New ports collection makefile for: apache HTTPD / php
+# Version required: 1.2.6 / 3.0
# Date created: Wed Sep 3 18:28:20 CEST 1997
# Whom: Andreas Klemm <andreas@klemm.gtn.com>
#
-# $Id$
+# $Id: Makefile,v 1.45 1998/06/14 09:57:32 andreas Exp $
#
DISTNAME= apache_1.2.6
@@ -37,11 +37,11 @@ PHP3_CONF_ARGS= --prefix=${PREFIX} \
--with-system-regex --with-apache=${WRKSRC} \
--with-config-file-path=${PREFIX}/lib --disable-debug
-.if !defined(PHP3_DBTYPE) || ${PHP3_DBTYPE} != msql && ${PHP3_DBTYPE} != mysql && ${PHP3_DBTYPE} != pgsql
+.if !defined(PHP3_DBTYPE) || ${PHP3_DBTYPE} != msql && ${PHP3_DBTYPE} != mysql && ${PHP3_DBTYPE} != pgsql && ${PHP3_DBTYPE} != dbase
pre-fetch:
@ ${ECHO}
@ ${ECHO} "You must set variable PHP3_DBTYPE to msql, mysql or pgsql by typing"
- @ ${ECHO} "make PHP3_DBTYPE=[ msql | mysql | pgsql ]"
+ @ ${ECHO} "make PHP3_DBTYPE=[ dbase | msql | mysql | pgsql ]"
@ ${FALSE}
.elif defined(PHP3_DBTYPE)
.if ${PHP3_DBTYPE} == msql
@@ -53,6 +53,8 @@ PHP3_CONF_ARGS+= --with-mysql=${PREFIX}
.elif ${PHP3_DBTYPE} == pgsql
BUILD_DEPENDS+= ${PREFIX}/pgsql/bin/psql:${PORTSDIR}/databases/postgresql
PHP3_CONF_ARGS+= --with-pgsql=${PREFIX}/pgsql
+.elif ${PHP3_DBTYPE} == dbase
+PHP3_CONF_ARGS+= --with-dbase
.endif
.endif
@@ -75,6 +77,8 @@ pre-configure:
${ECHO} "EXTRA_LIBS=-lmd libphp3.a -L${PREFIX}/lib/mysql -lmysqlclient -L${PREFIX}/lib -lgd -lm" >> ${WRKSRC}/src/Configuration
.elif defined(PHP3_DBTYPE) && ${PHP3_DBTYPE} == pgsql
${ECHO} "EXTRA_LIBS=-lmd libphp3.a -L${PREFIX}/pgsql/lib -lpq -L${PREFIX}/lib -lgd -lm" >> ${WRKSRC}/src/Configuration
+.elif defined(PHP3_DBTYPE) && ${PHP3_DBTYPE} == dbase
+ ${ECHO} "EXTRA_LIBS=-lmd libphp3.a libdbf.a -L${PREFIX}/lib -lgd -lm" >> ${WRKSRC}/src/Configuration
.endif
post-install: