diff options
author | jlam <jlam@pkgsrc.org> | 2001-06-11 06:34:17 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2001-06-11 06:34:17 +0000 |
commit | c4e71c5e7a56600bcceba68cbed656ef7246e444 (patch) | |
tree | 6b373d2a314b8d27a2d1f47c4cb173dc5c0d7a48 /security/racoon | |
parent | a057ade2a392070aecc8ee511ae1cab01869b513 (diff) | |
download | pkgsrc-c4e71c5e7a56600bcceba68cbed656ef7246e444.tar.gz |
CPPFLAGS is now passed to MAKE_ENV and CONFIGURE_ENV by bsd.pkg.mk, so
adapt by moving CPPFLAGS settings to top-level, and removing explicit
inclusion of CPPFLAGS into MAKE_ENV and CONFIGURE_ENV.
Diffstat (limited to 'security/racoon')
-rw-r--r-- | security/racoon/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/security/racoon/Makefile b/security/racoon/Makefile index a9f8c6a9850..90f597bb7cb 100644 --- a/security/racoon/Makefile +++ b/security/racoon/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.33 2001/04/18 03:14:55 itojun Exp $ +# $NetBSD: Makefile,v 1.34 2001/06/11 06:34:49 jlam Exp $ # DISTNAME= racoon-20010418a @@ -23,8 +23,9 @@ BUILD_DEFS+= USE_INET6 # between 1.4 and 1.5, there were period where we had RSA-less # /usr/lib/libcrypto. we do not support that configuration in the pkgsrc. USE_SSL= yes -CONFIGURE_ENV+= CPPFLAGS=-I${LOCALBASE}/include CFLAGS=-I${LOCALBASE}/include \ - LIBS="-L${LOCALBASE}/lib -L${WRKSRC}/../libipsec" +CPPFLAGS+= -I${LOCALBASE}/include +CFLAGS+= -I${LOCALBASE}/include +CONFIGURE_ENV+= LIBS="-L${LOCALBASE}/lib -L${WRKSRC}/../libipsec" CONFLICTS+= racoon-* |