diff options
author | rafan <rafan@FreeBSD.org> | 2008-07-03 09:28:05 +0800 |
---|---|---|
committer | rafan <rafan@FreeBSD.org> | 2008-07-03 09:28:05 +0800 |
commit | 61bef8e952137be0e6d246138dbbc760d82d20cf (patch) | |
tree | 1cb926c83a19394459691575a5764e774d7da193 | |
parent | 934f48761e6505a39a94b4ad26c9cd7acdf81c62 (diff) | |
download | freebsd-ports-gnome-61bef8e952137be0e6d246138dbbc760d82d20cf.tar.gz freebsd-ports-gnome-61bef8e952137be0e6d246138dbbc760d82d20cf.tar.zst freebsd-ports-gnome-61bef8e952137be0e6d246138dbbc760d82d20cf.zip |
Force commit to note we have more changes in previous update
- Enable nested table display
- Backport some configuration options (optional) from www/lynx-current
While I'm here,
- Fix indent in OPTIONS
- Fix some style issues
Noticed by: danfe
-rw-r--r-- | www/lynx/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/www/lynx/Makefile b/www/lynx/Makefile index f3a1abcbefc2..0c586afa7e84 100644 --- a/www/lynx/Makefile +++ b/www/lynx/Makefile @@ -29,9 +29,9 @@ CONFIGURE_ARGS+=--with-zlib --libdir="${L_LIB}" \ --enable-nested-tables --enable-gzip-help \ OPTIONS= SSL "SSL support" on \ - DEFAULT_COLORS "Colors support" off \ - IPV6 "IPV6 support" off \ - NLS "Native language support" on + DEFAULT_COLORS "Colors support" off \ + IPV6 "IPv6 support" off \ + NLS "Native language support" on .include <bsd.port.pre.mk> @@ -51,7 +51,7 @@ CONFIGURE_ARGS+=--enable-nls --with-libiconv-prefix="${LOCALBASE}" PLIST_SUB+= NLS='' .endif -.if defined(WITH_IPV6) && ! defined(NO_INET6) +.if defined(WITH_IPV6) && !defined(NO_INET6) CONFIGURE_ARGS+=--enable-ipv6 .else CONFIGURE_ARGS+=--disable-ipv6 |