diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 2001-07-01 20:43:41 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 2001-07-01 20:43:41 +0000 |
commit | 984a723c9274fa719d9d436a914d3899d5c626f8 (patch) | |
tree | 7f8ad17ac8c2a4e47e19e0105a96cd13d300550f /sbin/isakmpd/Makefile | |
parent | 1b1cf9310c1ee499d272e783c7ed479e12387ddd (diff) |
ISAKMP configuration, a.k.a IKECFG or "mode-config", protocol implementation.
Disabled, has no configuration mechanism yet. This will be used for roaming
users, who are going to get parameters like IP-address and nameserver from its
peer, very much like DHCP, but securily inside an ISAKMP connection and still
in time before negotiation of IPsec connections. You may see stylistic fixes
in this commit too. Add some not yet used Makefile magic to deal with DNSSEC-
enabled OpenSSL too. The IKECFG code work was sponsered by Gatespace Inc.
Thank you! Configuration will come very soon, btw.
Diffstat (limited to 'sbin/isakmpd/Makefile')
-rw-r--r-- | sbin/isakmpd/Makefile | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/sbin/isakmpd/Makefile b/sbin/isakmpd/Makefile index 9a7d49d9921..ce5d06b8d6a 100644 --- a/sbin/isakmpd/Makefile +++ b/sbin/isakmpd/Makefile @@ -1,8 +1,8 @@ -# $OpenBSD: Makefile,v 1.38 2001/05/31 20:21:37 angelos Exp $ +# $OpenBSD: Makefile,v 1.39 2001/07/01 20:43:39 niklas Exp $ # $EOM: Makefile,v 1.78 2000/10/15 21:33:42 niklas Exp $ # -# Copyright (c) 1998, 1999, 2000 Niklas Hallqvist. All rights reserved. +# Copyright (c) 1998, 1999, 2000, 2001 Niklas Hallqvist. All rights reserved. # Copyright (c) 2000, 2001 Håkan Olsson. All rights reserved. # # Redistribution and use in source and binary forms, with or without @@ -53,9 +53,9 @@ OS= openbsd # Compile-time configuration of otherwise optional features #FEATURES= tripledes des blowfish cast policy x509 ec aggressive debug gmp -#FEATURES+= dnssec +#FEATURES+= isakmp_cfg dnssec FEATURES= tripledes des blowfish cast policy x509 ec aggressive debug -#FEATURES+= +#FEATURES= .PATH: ${.CURDIR}/sysdep/${OS} @@ -124,6 +124,9 @@ CFLAGS+= -Wall -DNEED_SYSDEP_APP \ # strcpy (_y_, _x_); \ # })' +# Enable this if you have a DNSSEC enabled OpenSSL +#LWRESLIB= /usr/local/lib/liblwres.a + SUBDIR= apps .include "sysdep/${OS}/Makefile.sysdep" @@ -173,7 +176,8 @@ LDADD+= -lcrypto DPADD+= ${LIBCRYPTO} .endif -SRCS+= ${IPSEC_SRCS} ${X509} ${POLICY} ${EC} ${AGGRESSIVE} ${DNSSEC} +SRCS+= ${IPSEC_SRCS} ${X509} ${POLICY} ${EC} ${AGGRESSIVE} ${DNSSEC} \ + ${ISAKMP_CFG} CFLAGS+= ${IPSEC_CFLAGS} ${DNSSEC_CFLAGS} LDADD+= ${DESLIB} ${LWRESLIB} |