[Lunar-commits] r21966 - moonbase/trunk/editors/vim
Jannis Pohlmann
jannis at lunar-linux.org
Sat Oct 28 15:40:39 CEST 2006
Author: jannis
Date: 2006-10-28 15:40:39 +0200 (Sat, 28 Oct 2006)
New Revision: 21966
Added:
moonbase/trunk/editors/vim/CONFIGURE
Modified:
moonbase/trunk/editors/vim/BUILD
Log:
Add option for enabling multibyte (e.g. UTF-8, unicode in general) support even when compiling without GUI.
Modified: moonbase/trunk/editors/vim/BUILD
===================================================================
--- moonbase/trunk/editors/vim/BUILD 2006-10-27 17:26:39 UTC (rev 21965)
+++ moonbase/trunk/editors/vim/BUILD 2006-10-28 13:40:39 UTC (rev 21966)
@@ -1,4 +1,8 @@
(
+ # Enable multibyte support if this is the user's wish
+ if [[ "$MULTIBYTE" == "y" ]]; then
+ OPTS="$OPTS --enable-multibyte"
+ fi
cd src &&
default_config &&
Added: moonbase/trunk/editors/vim/CONFIGURE
===================================================================
--- moonbase/trunk/editors/vim/CONFIGURE (rev 0)
+++ moonbase/trunk/editors/vim/CONFIGURE 2006-10-28 13:40:39 UTC (rev 21966)
@@ -0,0 +1 @@
+mquery MULTIBYTE "Enable multibyte/unicode support" y
More information about the Lunar-commits
mailing list