summaryrefslogtreecommitdiff
path: root/x11/rxvt-devel
diff options
context:
space:
mode:
authorCheng-Lung Sung <clsung@FreeBSD.org>2006-05-29 13:29:10 +0000
committerCheng-Lung Sung <clsung@FreeBSD.org>2006-05-29 13:29:10 +0000
commitb8bb9a6d26ec306b8878b4fb130ab62051d6efa9 (patch)
tree504e1f71c798627ed428c9910a01011d9d870d53 /x11/rxvt-devel
parent- Update to 2.14.2 (diff)
- 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>
Notes
Notes: svn path=/head/; revision=163838
Diffstat (limited to 'x11/rxvt-devel')
-rw-r--r--x11/rxvt-devel/Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/x11/rxvt-devel/Makefile b/x11/rxvt-devel/Makefile
index dbe5f1fd746a..ec6cf67b55bf 100644
--- a/x11/rxvt-devel/Makefile
+++ b/x11/rxvt-devel/Makefile
@@ -93,6 +93,11 @@ CONFIGURE_ARGS+= --enable-rxvt-scroll
CONFIGURE_ARGS+= --enable-smart-resize
.endif # WITH_SMART_RESIZE
#
+# 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
@@ -117,9 +122,10 @@ pre-everything::
@${ECHO_MSG} "WITHOUT_BACKSPACE_KEY=yes disable handling of the backspace key"
@${ECHO_MSG} "WITHOUT_DELETE_KEY=yes disable handling of the delete key"
@${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_GRAPHICS=yes enable rxvt own graphics mode"
@${ECHO_MSG} "WITH_GREEK_KEYBOARD=yes add support for greek keyboard"
- @${ECHO_MSG} "WITH_LINESPACE=yes add support for line-spacing"
+ @${ECHO_MSG} "WITH_LINESPACE=yes add support for line-spacing"
@${ECHO_MSG} "WITH_MENUBAR=yes add support for rxvt menu bar system"
@${ECHO_MSG} "WITH_MOUSEWHEEL=yes add support for scrolling via mouse wheel"
@${ECHO_MSG} " or buttons 4 & 5"