diff options
author | Rong-En Fan <rafan@FreeBSD.org> | 2007-06-17 08:34:27 +0000 |
---|---|---|
committer | Rong-En Fan <rafan@FreeBSD.org> | 2007-06-17 08:34:27 +0000 |
commit | 2c2f9291dac147d20cfa88d719915800fd808f85 (patch) | |
tree | 746b85e65d585439cbeb03ffdc11bff736bb841e /www/lynx | |
parent | 77fbb7c312d467779d54e2eea01b436afafc250c (diff) | |
download | ports-2c2f9291dac147d20cfa88d719915800fd808f85.tar.gz ports-2c2f9291dac147d20cfa88d719915800fd808f85.zip |
- Force lynx to pick up ncurses from base. This fixes build when
1) devel/ncurses is installed, and 2) use OpenSSL from ports.
In that case, lynx picks up ncurses/ncurses.h which is from ports
and somehow it does not include term.h
PR: ports/113515
Reported by: Ighighi <ighighi at gmail.com>
Approved by: Jason Harris <jharris at widomaker.com> (maintainer)
Notes
Notes:
svn path=/head/; revision=193715
Diffstat (limited to 'www/lynx')
-rw-r--r-- | www/lynx/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/www/lynx/Makefile b/www/lynx/Makefile index 4b51a55189ba..cc2fe551d1a5 100644 --- a/www/lynx/Makefile +++ b/www/lynx/Makefile @@ -24,7 +24,7 @@ WRKSRC= ${WRKDIR}/${PORTNAME}2-8-6 GNU_CONFIGURE= yes CONFIGURE_ARGS+=--with-screen=ncurses --with-zlib --libdir="${L_LIB}" \ --enable-nsl-fork --enable-persistent-cookies \ - --enable-ipv6 + --enable-ipv6 --with-curses-dir=/usr .if defined(ENABLE_DEFAULT_COLORS) CONFIGURE_ARGS+=--enable-default-colors |