diff options
author | pav <pav@FreeBSD.org> | 2012-03-02 22:56:37 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2012-03-02 22:56:37 +0800 |
commit | 695efea0ec6d8f58c0418314007f4d5248b66aaf (patch) | |
tree | 5b7c1c08829036ce9e4f2f103d6c1c6ce1f25ce2 /www/lynx-current | |
parent | 29330e7c69f0413b170fb891a108ed00eac3c41f (diff) | |
download | freebsd-ports-gnome-695efea0ec6d8f58c0418314007f4d5248b66aaf.tar.gz freebsd-ports-gnome-695efea0ec6d8f58c0418314007f4d5248b66aaf.tar.zst freebsd-ports-gnome-695efea0ec6d8f58c0418314007f4d5248b66aaf.zip |
- Remove conditional checks for FreeBSD 6.X
PR: ports/165608
Submitted by: pgollucci
Approved by: portmgr (hat)
Diffstat (limited to 'www/lynx-current')
-rw-r--r-- | www/lynx-current/Makefile | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/www/lynx-current/Makefile b/www/lynx-current/Makefile index 46a516dc213b..ae25f93edf06 100644 --- a/www/lynx-current/Makefile +++ b/www/lynx-current/Makefile @@ -33,7 +33,9 @@ CONFIGURE_ARGS= --with-zlib --libdir="${L_LIB}" \ --enable-idna \ --enable-ipv6 \ --with-mime-libdir=${PREFIX}/etc \ - --with-libiconv-prefix=${LOCALBASE} + --with-libiconv-prefix=${LOCALBASE} \ + --with-screen=ncursesw + MAKE_JOBS_UNSAFE= yes .ifndef NO_OPENSSL @@ -42,12 +44,6 @@ USE_OPENSSL= yes .include <bsd.port.pre.mk> -.if ${OSVERSION} < 602107 || (${OSVERSION} >= 700000 && ${OSVERSION} < 700033) -CONFIGURE_ARGS+= --with-screen=ncurses -.else -CONFIGURE_ARGS+= --with-screen=ncursesw -.endif - .ifdef USE_OPENSSL CONFIGURE_ARGS+= --with-ssl=${OPENSSLBASE} .endif |