[Lunar-commits] r20012 - in moonbase/trunk: compilers/php zbeta/php5
striker
striker at lunar-linux.org
Tue May 9 14:26:26 UTC 2006
Author: striker
Date: 2006-05-09 14:26:25 +0000 (Tue, 09 May 2006)
New Revision: 20012
Modified:
moonbase/trunk/compilers/php/CONFIGURE
moonbase/trunk/zbeta/php5/CONFIGURE
Log:
multibyte string support
Modified: moonbase/trunk/compilers/php/CONFIGURE
===================================================================
--- moonbase/trunk/compilers/php/CONFIGURE 2006-05-09 13:33:49 UTC (rev 20011)
+++ moonbase/trunk/compilers/php/CONFIGURE 2006-05-09 14:26:25 UTC (rev 20012)
@@ -15,10 +15,21 @@
OPTS="$OPTS --enable-sockets"
fi
+ if query "Enable ncurses support (experimental)?" y; then
+ OPTS="$OPTS --with-ncurses"
+ fi
+
if module_installed lighttpd; then
mquery FASTCGI "Build FastCGI version (required by lighttpd)?" y
fi
+ if query "Enable multibyte string support?" n; then
+ OPTS="$OPTS --enable-mbstring"
+ if query "Disable multibyte regular expression functions?" n; then
+ OPTS="$OPTS --disable-mbregex"
+ fi
+ fi
+
echo 'CONFIGURED="y"' >> $MODULE_CONFIG
echo 'OPTS='\"$OPTS\" >> $MODULE_CONFIG
Modified: moonbase/trunk/zbeta/php5/CONFIGURE
===================================================================
--- moonbase/trunk/zbeta/php5/CONFIGURE 2006-05-09 13:33:49 UTC (rev 20011)
+++ moonbase/trunk/zbeta/php5/CONFIGURE 2006-05-09 14:26:25 UTC (rev 20012)
@@ -23,6 +23,13 @@
mquery FASTCGI "Build FastCGI version (required by lighttpd)?" y
fi
+ if query "Enable multibyte string support?" n; then
+ OPTS="$OPTS --enable-mbstring"
+ if query "Disable multibyte regular expression functions?" n; then
+ OPTS="$OPTS --disable-mbregex"
+ fi
+ fi
+
echo 'CONFIGURED="y"' >> $MODULE_CONFIG
echo 'OPTS='\"$OPTS\" >> $MODULE_CONFIG
More information about the Lunar-commits
mailing list