summaryrefslogtreecommitdiff
path: root/www/mod_php5
diff options
context:
space:
mode:
authorNick Sayer <nsayer@FreeBSD.org>1999-06-28 23:57:39 +0000
committerNick Sayer <nsayer@FreeBSD.org>1999-06-28 23:57:39 +0000
commit3a7f536abbbcd079b2e3257e3ed9deb87a1ab69a (patch)
tree7eea8f67d6e9fca16356140862c29e2134bcee39 /www/mod_php5
parentUpdate to version 1.1.8 to match JDK. (diff)
Add support to the apache13-php3 port for adding the mcrypt and mhash
libraries.
Notes
Notes: svn path=/head/; revision=19890
Diffstat (limited to 'www/mod_php5')
-rw-r--r--www/mod_php5/scripts/configure.php10
1 files changed, 10 insertions, 0 deletions
diff --git a/www/mod_php5/scripts/configure.php b/www/mod_php5/scripts/configure.php
index 4d8f074346bd..958470a1fe33 100644
--- a/www/mod_php5/scripts/configure.php
+++ b/www/mod_php5/scripts/configure.php
@@ -12,6 +12,8 @@ modssl "Apache: SSL support" OFF \
GD "PHP3: GD library support" ON \
FreeType "PHP3: TrueType font rendering (implies GD)" OFF \
zlib "PHP3: zlib library support" ON \
+mcrypt "PHP3: Encryption support" OFF \
+mhash "PHP3: Crypto-hashing support" OFF \
pdflib "PHP3: pdflib support" OFF \
IMAP "PHP3: IMAP support" OFF \
MySQL "PHP3: MySQL database support" ON \
@@ -60,6 +62,14 @@ while [ "$1" ]; do
\"zlib\")
echo "PHP3_CONF_ARGS+= --with-zlib" >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc
;;
+ \"mcrypt\")
+ echo "BUILD_DEPENDS+= \${PREFIX}/lib/libmcrypt.a:\${PORTSDIR}/security/mcrypt" >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc
+ echo "PHP3_CONF_ARGS+= --with-mcrypt" >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc
+ ;;
+ \"mhash\")
+ echo "BUILD_DEPENDS+= \${PREFIX}/lib/libmhash.a:\${PORTSDIR}/security/mhash" >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc
+ echo "PHP3_CONF_ARGS+= --with-mhash" >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc
+ ;;
\"pdflib\")
echo "BUILD_DEPENDS+= \${PREFIX}/lib/libpdf.a:\${PORTSDIR}/print/pdflib" >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc
echo "PHP3_CONF_ARGS+= --with-pdflib=\${PREFIX}" >> ${WRKDIRPREFIX}${CURDIR}/Makefile.inc