diff options
author | mbr <mbr@FreeBSD.org> | 2003-03-23 16:23:10 +0800 |
---|---|---|
committer | mbr <mbr@FreeBSD.org> | 2003-03-23 16:23:10 +0800 |
commit | c66361603983841b5a64edaf809e85212cf05a90 (patch) | |
tree | 30c6da2678fba9adfa2847aded4c677971c2e884 /www | |
parent | a57bc65d24a172a2fe4ff7522a1036bdf0a2458d (diff) | |
download | freebsd-ports-gnome-c66361603983841b5a64edaf809e85212cf05a90.tar.gz freebsd-ports-gnome-c66361603983841b5a64edaf809e85212cf05a90.tar.zst freebsd-ports-gnome-c66361603983841b5a64edaf809e85212cf05a90.zip |
Add recode support after librecode is fixed now.
Diffstat (limited to 'www')
-rw-r--r-- | www/mod_php4/scripts/configure.php | 5 | ||||
-rw-r--r-- | www/mod_php5/scripts/configure.php | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/www/mod_php4/scripts/configure.php b/www/mod_php4/scripts/configure.php index f55e213f92b5..e5d760c37052 100644 --- a/www/mod_php4/scripts/configure.php +++ b/www/mod_php4/scripts/configure.php @@ -47,6 +47,7 @@ FTP "File Transfer Protocol support" OFF \ CURL "CURL support" OFF \ gettext "gettext library support" OFF \ iconv "iconv support" OFF \ +recode "recode support" OFF \ pspell "pspell support" OFF \ mbregex "multibyte regular expressions module" OFF \ mbstring "multibyte string module" OFF \ @@ -315,6 +316,10 @@ while [ "$1" ]; do ICONV=1 fi ;; + \"recode\") + echo "LIB_DEPENDS+= recode.3:\${PORTSDIR}/converters/recode" + echo "CONFIGURE_ARGS+=--with-recode=\${LOCALBASE}" + ;; \"pspell\") echo "LIB_DEPENDS+= aspell.15:\${PORTSDIR}/textproc/aspell" echo "CONFIGURE_ARGS+=--with-pspell=\${LOCALBASE}" diff --git a/www/mod_php5/scripts/configure.php b/www/mod_php5/scripts/configure.php index f55e213f92b5..e5d760c37052 100644 --- a/www/mod_php5/scripts/configure.php +++ b/www/mod_php5/scripts/configure.php @@ -47,6 +47,7 @@ FTP "File Transfer Protocol support" OFF \ CURL "CURL support" OFF \ gettext "gettext library support" OFF \ iconv "iconv support" OFF \ +recode "recode support" OFF \ pspell "pspell support" OFF \ mbregex "multibyte regular expressions module" OFF \ mbstring "multibyte string module" OFF \ @@ -315,6 +316,10 @@ while [ "$1" ]; do ICONV=1 fi ;; + \"recode\") + echo "LIB_DEPENDS+= recode.3:\${PORTSDIR}/converters/recode" + echo "CONFIGURE_ARGS+=--with-recode=\${LOCALBASE}" + ;; \"pspell\") echo "LIB_DEPENDS+= aspell.15:\${PORTSDIR}/textproc/aspell" echo "CONFIGURE_ARGS+=--with-pspell=\${LOCALBASE}" |