diff options
author | thorpej <thorpej@pkgsrc.org> | 2000-04-25 19:10:10 +0000 |
---|---|---|
committer | thorpej <thorpej@pkgsrc.org> | 2000-04-25 19:10:10 +0000 |
commit | 26ad50d3ee35584b2d14ef34e5396cf35987f968 (patch) | |
tree | 2dec0fd5dd8867677f0d2df3ba384c1efd439cbe /security/isakmpd/Makefile | |
parent | 5f43f0b91bc3d4da65e8e56d581751612a04a514 (diff) | |
download | pkgsrc-26ad50d3ee35584b2d14ef34e5396cf35987f968.tar.gz |
If PATENTEDOPENSSLSRC is present in the build environment, then
assume that a full (i.e. "with RSA") OpenSSL installation already
exists on the system (and thus a dependency on ../security/openssl
is not needed).
Diffstat (limited to 'security/isakmpd/Makefile')
-rw-r--r-- | security/isakmpd/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/security/isakmpd/Makefile b/security/isakmpd/Makefile index 74f0e415074..43255cac86c 100644 --- a/security/isakmpd/Makefile +++ b/security/isakmpd/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2000/04/12 15:09:50 itojun Exp $ +# $NetBSD: Makefile,v 1.3 2000/04/25 19:10:11 thorpej Exp $ # DISTNAME= isakmpd-000220 @@ -17,7 +17,12 @@ MAINTAINER= itojun@kame.net IGNORE+= "requires ipsec-ready NetBSD" .endif +# if PATENTEDOPENSSLSRC is defined, then we assume that +# RSA already exists in the OpenSSL built as part of the +# base distribution. +.if !defined(PATENTEDOPENSSLSRC) DEPENDS+= openssl-0.9.4:../../security/openssl +.endif DEPENDS+= gmp-*:../../devel/gmp RESTRICTED= "Crypto; export-controlled" |