diff options
author | fredb <fredb> | 2001-02-03 19:04:50 +0000 |
---|---|---|
committer | fredb <fredb> | 2001-02-03 19:04:50 +0000 |
commit | d347c6a0c52231393590483684708286257fff8b (patch) | |
tree | 2cae44be7b13131ecb8fba0ac52088e6d2785ef8 /www | |
parent | 11d65eefb23621ea80470a482b768cb9f40f4cd2 (diff) | |
download | pkgsrc-d347c6a0c52231393590483684708286257fff8b.tar.gz |
Make INET6 work again, fix supplied by Olaf Seibert in PR pkg/12124.
Additionally remove redundant CPPFLAGS setting, and respect setting of
CPPFLAGS in builder's environment.
Diffstat (limited to 'www')
-rw-r--r-- | www/lynx/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/www/lynx/Makefile b/www/lynx/Makefile index 805692a9eaf..24bc203a919 100644 --- a/www/lynx/Makefile +++ b/www/lynx/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.34 2001/01/11 20:59:04 tv Exp $ +# $NetBSD: Makefile,v 1.35 2001/02/03 19:04:50 fredb Exp $ # DISTNAME= lynx2.8.3rel.1 @@ -46,7 +46,6 @@ BUILD_DEFS+= LYNX_SCREEN_LIB USE_SOCKS USE_INET6 CONFIGURE_ARGS+= --enable-nls CONFIGURE_ARGS+= --with-nls-datadir=${PREFIX}/share CONFIGURE_ARGS+= --without-included-gettext -CONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include" # Note: --enable-{default-colors,scrollbar} are simply ignored # for certain settings of --with-screen. @@ -156,7 +155,7 @@ DEPENDS+= socks5-1.0.2:../../net/socks5 # Do IPV6 on systems which can support it. .if defined(USE_INET6) && ${USE_INET6} == YES -CONFIGURE_ENV+= CPPFLAGS=-DINET6 +CPPFLAGS+= -DINET6 .endif .include "../../mk/bsd.pkg.mk" |