diff options
author | Thierry Thomas <thierry@FreeBSD.org> | 2010-06-03 03:06:24 +0800 |
---|---|---|
committer | Thierry Thomas <thierry@FreeBSD.org> | 2010-06-03 03:06:24 +0800 |
commit | fd724bbceb67e2c1ea49f8fa7140e84f2d7c20c3 (patch) | |
tree | ff8f7546d6b0a808b7fb0d3e0bd63b0d62e6b513 /x11 | |
parent | bf7d2998c68c3bf34712113222b54cfc6a4ee0a9 (diff) | |
download | freebsd-ports-gnome-fd724bbceb67e2c1ea49f8fa7140e84f2d7c20c3.tar.gz freebsd-ports-gnome-fd724bbceb67e2c1ea49f8fa7140e84f2d7c20c3.tar.zst freebsd-ports-gnome-fd724bbceb67e2c1ea49f8fa7140e84f2d7c20c3.zip |
Adding an option ISO14755 (on by default) to de-activate the ISO 14755
Unicode screen-selection entry method (aka "the yellow box activated by
Ctrl-Shift").
Submitted by: Sergio Perticone <g4ll0ws (at) gmail.com>
Diffstat (limited to 'x11')
-rw-r--r-- | x11/rxvt-unicode/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/x11/rxvt-unicode/Makefile b/x11/rxvt-unicode/Makefile index 5c4a9275b098..5c275de02077 100644 --- a/x11/rxvt-unicode/Makefile +++ b/x11/rxvt-unicode/Makefile @@ -27,6 +27,7 @@ OPTIONS= \ PERL "Embedded perl interpreter" On \ XIM "Support for XIM (X Input Method) protocol" On \ UNICODE3 "Support Unicode codepoints above 65535" On \ + ISO14755 "Support for extended ISO 14755 modes" On \ COMBINING "Automatic composition of combining chars" On \ MENUBAR "Support for the menu bar system" On \ RXVT_SCROLLBAR "Support for the original rxvt scrollbar" On \ @@ -78,6 +79,11 @@ CONFIGURE_ARGS+= --disable-xim CONFIGURE_ARGS+= --disable-unicode3 .endif +# disable support for extended ISO 14755 modes +.if defined(WITHOUT_ISO14755) +CONFIGURE_ARGS+= --disable-iso14755 +.endif + # disable automatic composition of combining characters # into composite characters .if defined(WITHOUT_COMBINING) |