diff options
author | itojun <itojun@pkgsrc.org> | 2001-02-06 06:06:32 +0000 |
---|---|---|
committer | itojun <itojun@pkgsrc.org> | 2001-02-06 06:06:32 +0000 |
commit | d3e383eff988398232f22eccc48fd81fe7a16fe0 (patch) | |
tree | 63967ef7ebff9af4aa81935e3d8ceb1652edff32 /www | |
parent | 746b9bccb59e567243fe5bb31d1e77887ff7f687 (diff) | |
download | pkgsrc-d3e383eff988398232f22eccc48fd81fe7a16fe0.tar.gz |
1.34 -> 1.35 change (CPPFLAGS=-DINET6) works only if we are on 1.5, not on
current. have some comment about that. we should fix bsd.pkg.mk instaed.
Diffstat (limited to 'www')
-rw-r--r-- | www/lynx/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/www/lynx/Makefile b/www/lynx/Makefile index 24bc203a919..c9597eb6052 100644 --- a/www/lynx/Makefile +++ b/www/lynx/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.35 2001/02/03 19:04:50 fredb Exp $ +# $NetBSD: Makefile,v 1.36 2001/02/06 06:06:32 itojun Exp $ # DISTNAME= lynx2.8.3rel.1 @@ -154,9 +154,12 @@ DEPENDS+= socks5-1.0.2:../../net/socks5 .endif # Do IPV6 on systems which can support it. +# XXX this clause works only for 1.5, not for current .if defined(USE_INET6) && ${USE_INET6} == YES CPPFLAGS+= -DINET6 .endif +# current needs below +#CONFIGURE_ENV+=CPPFLAGS="${CPPFLAGS}" .include "../../mk/bsd.pkg.mk" |