diff options
author | ehaupt <ehaupt@FreeBSD.org> | 2012-04-15 03:25:10 +0800 |
---|---|---|
committer | ehaupt <ehaupt@FreeBSD.org> | 2012-04-15 03:25:10 +0800 |
commit | 3500917541aeaaa1cfed21f3c1e0ba5577b4552b (patch) | |
tree | 2511a640388c90cda5b06cd7e1f0b56a11d4f149 /x11 | |
parent | 1e6fde7b19a3e52d6425e2dfcb8baeb43632a0f7 (diff) | |
download | freebsd-ports-gnome-3500917541aeaaa1cfed21f3c1e0ba5577b4552b.tar.gz freebsd-ports-gnome-3500917541aeaaa1cfed21f3c1e0ba5577b4552b.tar.zst freebsd-ports-gnome-3500917541aeaaa1cfed21f3c1e0ba5577b4552b.zip |
Add an option for dabbrev-expand support.
PR: 166648
Submitted by: Oliver Fromme <olli@secnetix.de>
Diffstat (limited to 'x11')
-rw-r--r-- | x11/xterm/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/x11/xterm/Makefile b/x11/xterm/Makefile index 45cfe21603a5..f94dcbfa2578 100644 --- a/x11/xterm/Makefile +++ b/x11/xterm/Makefile @@ -26,7 +26,8 @@ OPTIONS= WIDE_CHARS "enable wide-character support" on \ 256_COLOR "enable 256-color support" off \ DEC_LOCATOR "enable DECterm Locator support" off \ PCRE "use PCRE for regular-expressions" off \ - GNOME "include gnome support for .desktop file" off + GNOME "include gnome support for .desktop file" off \ + DABBREV "enable support for dabbrev-expand" off CPPFLAGS+= -I${LOCALBASE}/include @@ -61,6 +62,10 @@ PLIST_SUB+= GNOME="" PLIST_SUB+= GNOME="@comment " .endif +.if defined(WITH_DABBREV) +CONFIGURE_ARGS+= --enable-dabbrev +.endif + MAN1= resize.1 koi8rxterm.1 uxterm.1 xterm.1 .include <bsd.port.pre.mk> |