diff options
author | Hakan Olsson <ho@cvs.openbsd.org> | 2001-08-15 09:16:31 +0000 |
---|---|---|
committer | Hakan Olsson <ho@cvs.openbsd.org> | 2001-08-15 09:16:31 +0000 |
commit | f9b6fa26ddd0e5f251f9a35af1b7efbf5baef6e0 (patch) | |
tree | f2a223ab56b9b066579588d1d7d377e267563e56 /sbin/isakmpd/Makefile | |
parent | 7a1a2d18f3ece62b6426065fd502cb8f64da7511 (diff) |
Support trusted public (RSA) keys as files too. niklas@ ok.
Diffstat (limited to 'sbin/isakmpd/Makefile')
-rw-r--r-- | sbin/isakmpd/Makefile | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/sbin/isakmpd/Makefile b/sbin/isakmpd/Makefile index 73f535071e9..fb84be311ea 100644 --- a/sbin/isakmpd/Makefile +++ b/sbin/isakmpd/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.41 2001/07/06 09:35:57 ho Exp $ +# $OpenBSD: Makefile,v 1.42 2001/08/15 09:16:29 ho Exp $ # $EOM: Makefile,v 1.78 2000/10/15 21:33:42 niklas Exp $ # @@ -51,9 +51,9 @@ OS= openbsd # Compile-time configuration of otherwise optional features #FEATURES= tripledes des blowfish cast policy x509 ec aggressive debug gmp -#FEATURES+= isakmp_cfg dnssec +#FEATURES+= rawkey isakmp_cfg dnssec FEATURES= tripledes des blowfish cast policy x509 ec aggressive debug -#FEATURES= +FEATURES+= rawkey .PATH: ${.CURDIR}/sysdep/${OS} @@ -169,6 +169,11 @@ DPADD+= ${LIBKEYNOTE} ${LIBM} CFLAGS+= -DUSE_KEYNOTE .endif +.ifdef USE_RAWKEY +USE_LIBCRYPTO= yes +CFLAGS+= -DUSE_RAWKEY +.endif + .ifdef USE_LIBCRYPTO CFLAGS+= -DUSE_LIBCRYPTO LDADD+= -lcrypto |