diff options
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 |