Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 29 Jul 2002 13:15:33 -0700 (PDT)
From:      Jens Rehsack <rehsack@liwing.de>
To:        freebsd-gnats-submit@FreeBSD.org
Subject:   ports/41131: adding some more configuration parameters to www/mod_php4
Message-ID:  <200207292015.g6TKFX7r089434@www.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         41131
>Category:       ports
>Synopsis:       adding some more configuration parameters to www/mod_php4
>Confidential:   no
>Severity:       non-critical
>Priority:       medium
>Responsible:    freebsd-ports
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Mon Jul 29 13:20:01 PDT 2002
>Closed-Date:
>Last-Modified:
>Originator:     Jens Rehsack
>Release:        4.6-STABLE
>Organization:
LiWing IT-Services
>Environment:
FreeBSD webdev.muppets.liwing.de 4.6-PRERELEASE FreeBSD 4.6-PRERELEASE #0: Tue May  7 16:20:03 GMT 2002
root@webdev.muppets.liwing.de:/var/tmp/obj/export/sources/src/sys/WEBDEV  i386
>Description:
Just a few more lines to configure.php :-)
f.e. Java, ODBC and GDM support was missing      
>How-To-Repeat:

>Fix:
--- configure.php.ori	Mon Jul 29 13:56:25 2002
+++ configure.php.new	Mon Jul 29 14:56:56 2002
@@ -21,6 +21,7 @@
 GD2		"GD 2.x library support" OFF \
 zlib		"zlib library support" ON \
 bzip2		"bzip2 library support" OFF \
+gmp		"GNU MultiPrecision library support" OFF \
 mcrypt		"Encryption support" OFF \
 mhash		"Crypto-hashing support" OFF \
 pdflib		"pdflib support" OFF \
@@ -32,6 +33,8 @@
 SybaseCT	"Sybase/MS-SQL database support (CT-lib)" OFF \
 Interbase	"Interbase 6 database support (Firebird)" OFF \
 dBase		"dBase database support" OFF \
+unixODBC	"unixODBC support" OFF \
+iODBC		"iODBC support" OFF \
 OpenLDAP1	"OpenLDAP 1.x support" OFF \
 OpenLDAP2	"OpenLDAP 2.x support" OFF \
 OpenSSL		"OpenSSL support" OFF \
@@ -59,6 +62,7 @@
 sysvshm		"System V shared memory support" OFF \
 transsid	"Transparent session id" OFF \
 yaz		"YAZ support (ANSI/NISO Z39.50)" OFF \
+java		"Java support" OFF \
 2> $tempfile
 
 	retval=$?
@@ -131,6 +135,9 @@
 			fi
 			echo "CONFIGURE_ARGS+=--with-bz2=${BZ2PREFIX}"
 			;;
+		\"gmp\")
+			echo "CONFIGURE_ARGS+=--with-gmp"
+			;;
 		\"mcrypt\")
 			echo "LIB_DEPENDS+=	mcrypt.7:\${PORTSDIR}/security/libmcrypt"
 			echo "CONFIGURE_ARGS+=--with-mcrypt=\${LOCALBASE}"
@@ -211,6 +218,14 @@
 		\"dBase\")
 			echo "CONFIGURE_ARGS+=--with-dbase"
 			;;
+		\"unixODBC\")
+			echo "LIB_DEPENDS+=	odbc.1:${PORTSDIR}/databases/unixODBC"
+			echo "CONFIGURE_ARGS+=--with-unixodbc"
+			;;
+		\"iODBC\")
+			echo "LIB_DEPENDS+=iodbc.3:${PORTSDIR}/databases/libiodbc"
+			echo "CONFIGURE_ARGS+=--with-iodbc"
+			;;
 		\"OpenLDAP1\")
 			echo "LIB_DEPENDS+=	ldap.1:\${PORTSDIR}/net/openldap"
 			echo "LIB_DEPENDS+=	lber.1:\${PORTSDIR}/net/openldap"
@@ -349,6 +364,10 @@
 		\"yaz\")
 			echo "LIB_DEPENDS+=	yaz.1:\${PORTSDIR}/net/yaz"
 			echo "CONFIGURE_ARGS+=--with-yaz=\${LOCALBASE}/bin"
+			;;
+		\"java\")
+			echo "USE_JAVA=1.3+"
+			echo "CONFIGURE_ARGS+=--with-java"
 			;;
 		*)
 			echo "Invalid option(s): $*" > /dev/stderr
>Release-Note:
>Audit-Trail:
>Unformatted:

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-ports" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200207292015.g6TKFX7r089434>