diff options
author | rafan <rafan@FreeBSD.org> | 2007-06-17 16:34:27 +0800 |
---|---|---|
committer | rafan <rafan@FreeBSD.org> | 2007-06-17 16:34:27 +0800 |
commit | b2395a4e71488f363a8685409cd45dfc3533ecc7 (patch) | |
tree | b87369283e1b7c1ea4e117cfc78afdcfe5cb916b /www/lynx | |
parent | b569c54838c80e8567f0b33efc4693383f571235 (diff) | |
download | freebsd-ports-graphics-b2395a4e71488f363a8685409cd45dfc3533ecc7.tar.gz freebsd-ports-graphics-b2395a4e71488f363a8685409cd45dfc3533ecc7.tar.zst freebsd-ports-graphics-b2395a4e71488f363a8685409cd45dfc3533ecc7.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)
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 4b51a55189b..cc2fe551d1a 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 |