[Lunar-commits] r24428 - moonbase/trunk/sql/mysql
Terry Chan
tchan at lunar-linux.org
Mon May 14 19:58:09 CEST 2007
Author: tchan
Date: 2007-05-14 19:58:09 +0200 (Mon, 14 May 2007)
New Revision: 24428
Modified:
moonbase/trunk/sql/mysql/CONFIGURE
Log:
Fixed the extra-charsets option to allow the choice of NONE. Reduces the size
of the mysql install by roughly two-thirds.
Modified: moonbase/trunk/sql/mysql/CONFIGURE
===================================================================
--- moonbase/trunk/sql/mysql/CONFIGURE 2007-05-14 15:26:53 UTC (rev 24427)
+++ moonbase/trunk/sql/mysql/CONFIGURE 2007-05-14 17:58:09 UTC (rev 24428)
@@ -50,10 +50,12 @@
OPTS="$OPTS --without-embedded-server"
fi
- if query "Enable all charachter sets? " n; then
+ if query "Enable all character sets? " y; then
OPTS="$OPTS --with-extra-charsets=all"
+ elif query "Enable just complex character sets? " y; then
+ OPTS="$OPTS --with-extra-charsets=complex"
else
- OPTS="$OPTS --with-extra-charsets=complex"
+ OPTS="$OPTS --disable-nls"
fi
echo 'CONFIGURED="y"' >> $MODULE_CONFIG
More information about the Lunar-commits
mailing list