diff options
author | drochner <drochner@pkgsrc.org> | 2002-06-17 10:06:50 +0000 |
---|---|---|
committer | drochner <drochner@pkgsrc.org> | 2002-06-17 10:06:50 +0000 |
commit | e73543f982af03fc56abc1a5404c65d60edf5fcc (patch) | |
tree | fefdd79117391ef5e8fd4e9eb4c50ad666a9b827 | |
parent | 7395aab7dd28532867847fafd2049113501133e7 (diff) | |
download | pkgsrc-e73543f982af03fc56abc1a5404c65d60edf5fcc.tar.gz |
kill USE_SSL, use openssl/buildlink.mk instead
(to avoid building against a pkgsrc openssl w/o registering a dependency)
-rw-r--r-- | net/echoping/Makefile | 6 | ||||
-rw-r--r-- | security/racoon/Makefile | 11 |
2 files changed, 7 insertions, 10 deletions
diff --git a/net/echoping/Makefile b/net/echoping/Makefile index b153c83bcea..63911227e8c 100644 --- a/net/echoping/Makefile +++ b/net/echoping/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2001/02/17 18:18:49 wiz Exp $ +# $NetBSD: Makefile,v 1.4 2002/06/17 10:06:52 drochner Exp $ # DISTNAME= echoping-4.1.0 @@ -10,8 +10,10 @@ HOMEPAGE= http://echoping.sourceforge.net/ COMMENT= test performance of a remote TCP service GNU_CONFIGURE= YES -USE_SSL= YES CONFIGURE_ARGS+=--enable-icp CONFIGURE_ARGS+=--with-ssl=${SSLBASE} +USE_BUILDLINK_ONLY= yes + +.include "../../security/openssl/buildlink.mk" .include "../../mk/bsd.pkg.mk" diff --git a/security/racoon/Makefile b/security/racoon/Makefile index 10a1d02574d..7f3f5c99dc8 100644 --- a/security/racoon/Makefile +++ b/security/racoon/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.49 2002/05/13 02:13:48 itojun Exp $ +# $NetBSD: Makefile,v 1.50 2002/06/17 10:06:50 drochner Exp $ # DISTNAME= racoon-20020507a @@ -19,13 +19,7 @@ IGNORE+= "${PKGNAME} requires ipsec-ready NetBSD" .include "../../mk/bsd.prefs.mk" BUILD_DEFS+= USE_INET6 -# we rely upon 1.5-based /usr/lib/libcrypto, or pkgsrc/security/openssl. -# 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 -CPPFLAGS+= -I${LOCALBASE}/include -CFLAGS+= -I${LOCALBASE}/include -LIBPATH= -L${LOCALBASE}/lib +USE_BUILDLINK_ONLY= yes CONFLICTS+= racoon-[0-9]* @@ -57,4 +51,5 @@ post-install: ${INSTALL_DATA} ${WRKSRC}/samples/racoon.conf.sample \ ${PREFIX}/share/examples/racoon +.include "../../security/openssl/buildlink.mk" .include "../../mk/bsd.pkg.mk" |