aboutsummaryrefslogtreecommitdiff
path: root/www/lynx-current
diff options
context:
space:
mode:
authorAndrey A. Chernov <ache@FreeBSD.org>2007-05-27 23:00:50 +0000
committerAndrey A. Chernov <ache@FreeBSD.org>2007-05-27 23:00:50 +0000
commit63fe60d35e27dbc08303f3e6356e576623166971 (patch)
tree10704c472a8b035dad40afeea7a4ae279365cd44 /www/lynx-current
parenta4deae8088def95d808fbcb497e3a52724d16b74 (diff)
downloadports-63fe60d35e27dbc08303f3e6356e576623166971.tar.gz
ports-63fe60d35e27dbc08303f3e6356e576623166971.zip
Move OSVERSION check after bsd.port.pre.mk
Notes
Notes: svn path=/head/; revision=192152
Diffstat (limited to 'www/lynx-current')
-rw-r--r--www/lynx-current/Makefile12
1 files changed, 6 insertions, 6 deletions
diff --git a/www/lynx-current/Makefile b/www/lynx-current/Makefile
index a5b3768f5f21..5cb652665a58 100644
--- a/www/lynx-current/Makefile
+++ b/www/lynx-current/Makefile
@@ -31,18 +31,18 @@ CONFIGURE_ARGS= --with-zlib --libdir="${L_LIB}" \
--with-mime-libdir=${PREFIX}/etc \
--with-libiconv-prefix=${LOCALBASE}
-.if ${OSVERSION} >= 602107
-CONFIGURE_ARGS+= --with-screen=ncursesw
-.else
-CONFIGURE_ARGS+= --with-screen=ncurses
-.endif
-
.ifndef NO_OPENSSL
USE_OPENSSL= yes
.endif
.include <bsd.port.pre.mk>
+.if ${OSVERSION} >= 602107
+CONFIGURE_ARGS+= --with-screen=ncursesw
+.else
+CONFIGURE_ARGS+= --with-screen=ncurses
+.endif
+
.ifdef USE_OPENSSL
CONFIGURE_ARGS+= --with-ssl=${OPENSSLBASE}
.endif