aboutsummaryrefslogtreecommitdiff
path: root/www/elinks
diff options
context:
space:
mode:
authorBeat Gaetzi <beat@FreeBSD.org>2012-02-20 09:55:29 +0000
committerBeat Gaetzi <beat@FreeBSD.org>2012-02-20 09:55:29 +0000
commitc48756f2560ec169b215d1df46995a6a80dcd29d (patch)
treebcd4712c26f03e3f532ba94f9e5c7f6cd3ca38aa /www/elinks
parent92de5ae736fb97d24377f9474db95c48983061e3 (diff)
Notes
Diffstat (limited to 'www/elinks')
-rw-r--r--www/elinks/Makefile9
1 files changed, 8 insertions, 1 deletions
diff --git a/www/elinks/Makefile b/www/elinks/Makefile
index 9d7ce92404b5..b2d098cac225 100644
--- a/www/elinks/Makefile
+++ b/www/elinks/Makefile
@@ -49,7 +49,8 @@ OPTIONS= 88COLORS "Enable 88 color support" on \
RUBYSCRIPT "Enable Ruby scripting support" off \
LUASCRIPT "Enable Lua scripting support" off \
GUILESCRIPT "Enable Guile scripting support" off \
- ICONV "Enable iconv support" off
+ ICONV "Enable iconv support" off \
+ MOUSE "Enable mouse support" on
.include <bsd.port.pre.mk>
@@ -156,6 +157,12 @@ CONFIGURE_ARGS+= --enable-gopher
CONFIGURE_ARGS+= --disable-gopher
.endif
+.if defined(WITH_MOUSE)
+CONFIGURE_ARGS+= --enable-mouse
+.else
+CONFIGURE_ARGS+= --disable-mouse
+.endif
+
.if defined(WITH_FINGER)
CONFIGURE_ARGS+= --enable-finger
.else