aboutsummaryrefslogtreecommitdiffstats
path: root/x11/rxvt
diff options
context:
space:
mode:
authorclsung <clsung@FreeBSD.org>2006-05-29 21:29:10 +0800
committerclsung <clsung@FreeBSD.org>2006-05-29 21:29:10 +0800
commit7ac40bff0b3b6b683ae147707b2e11e5a876c386 (patch)
tree10926665d22ec02135679ddaedf5c558de26d873 /x11/rxvt
parentbe5e1d759e1a2f1bf1dd23aa2ada5239b0b1eb9d (diff)
downloadfreebsd-ports-gnome-7ac40bff0b3b6b683ae147707b2e11e5a876c386.tar.gz
freebsd-ports-gnome-7ac40bff0b3b6b683ae147707b2e11e5a876c386.tar.zst
freebsd-ports-gnome-7ac40bff0b3b6b683ae147707b2e11e5a876c386.zip
- Add a new know WITH_XGETDEFAULT
- from submitter WITH_XGETDEFAULT which enables resource checking via X's function instead of rxvt's own version. I'm using this option for a long time, it would be better if I can turn it on via a knob.Add a new know WITH_XGETDEFAULT which enables resource checking via X's function instead of rxvt's own version. I'm using this option for a long time, it would be better if I can turn it on via a knob. PR: 96152 Submitted by: Rong-En Fan <rafan_AT_infor dot org>
Diffstat (limited to 'x11/rxvt')
-rw-r--r--x11/rxvt/Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/x11/rxvt/Makefile b/x11/rxvt/Makefile
index 40af330ed0c4..4c77b0f0a329 100644
--- a/x11/rxvt/Makefile
+++ b/x11/rxvt/Makefile
@@ -74,6 +74,11 @@ CONFIGURE_ARGS+= --enable-menubar
CONFIGURE_ARGS+= --enable-next-scroll
.endif
#
+# make resources checking via XGetDefault()
+.if defined(WITH_XGETDEFAULT)
+CONFIGURE_ARGS+= --enable-xgetdefault
+.endif # WITH_XGETDEFAULT
+#
# XIM (X Input Method) protocol support
.ifndef(WITHOUT_XIM)
CONFIGURE_ARGS+= --enable-xim
@@ -90,6 +95,7 @@ pre-fetch:
@${ECHO_MSG} "You may use the following build options:"
@${ECHO_MSG} ""
@${ECHO_MSG} "WITHOUT_XIM=yes disable support for XIM (X Input Method) protocol"
+ @${ECHO_MSG} "WITH_XGETDEFAULT=yes make resources checking via XGetDefault()"
@${ECHO_MSG} "WITH_BIG5=yes add support for Chinese characters (BIG5)"
@${ECHO_MSG} "WITH_GB=yes add support for Chinese characters (GB)"
@${ECHO_MSG} "WITH_GREEK_KEYBOARD=yes add support for greek keyboard"