summaryrefslogtreecommitdiff
path: root/sbin/iked/Makefile
diff options
context:
space:
mode:
authorYASUOKA Masahiko <yasuoka@cvs.openbsd.org>2024-07-13 12:22:47 +0000
committerYASUOKA Masahiko <yasuoka@cvs.openbsd.org>2024-07-13 12:22:47 +0000
commitbc7304d910477e4c473ae4a6c5dc2ef2db807c6d (patch)
treeb6bec27aabe2f7281fcd1dde16928a8e8699503c /sbin/iked/Makefile
parent26645bfb61e3f02e4cdc5642dfaa16bfd1c86a7b (diff)
Add RADIUS support. Authentication, accounting, and "Dynamic
Authorization Extensions"(DAE) are supported. feedback markus stu ok tobhe
Diffstat (limited to 'sbin/iked/Makefile')
-rw-r--r--sbin/iked/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/sbin/iked/Makefile b/sbin/iked/Makefile
index 2d0f5365898..783e2eb0705 100644
--- a/sbin/iked/Makefile
+++ b/sbin/iked/Makefile
@@ -1,18 +1,18 @@
-# $OpenBSD: Makefile,v 1.22 2021/05/28 18:01:39 tobhe Exp $
+# $OpenBSD: Makefile,v 1.23 2024/07/13 12:22:46 yasuoka Exp $
PROG= iked
SRCS= ca.c chap_ms.c config.c control.c crypto.c dh.c \
eap.c iked.c ikev2.c ikev2_msg.c ikev2_pld.c \
log.c ocsp.c pfkey.c policy.c print.c proc.c timer.c util.c \
- imsg_util.c smult_curve25519_ref.c vroute.c
+ imsg_util.c radius.c smult_curve25519_ref.c vroute.c
SRCS+= eap_map.c ikev2_map.c
SRCS+= crypto_hash.c sntrup761.c
SRCS+= parse.y
MAN= iked.conf.5 iked.8
#NOMAN= yes
-LDADD= -lutil -levent -lcrypto
-DPADD= ${LIBUTIL} ${LIBEVENT} ${LIBCRYPTO}
+LDADD= -lutil -levent -lcrypto -lradius
+DPADD= ${LIBUTIL} ${LIBEVENT} ${LIBCRYPTO} ${LIBRADIUS}
CFLAGS+= -Wall -I${.CURDIR}
CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes
CFLAGS+= -Wmissing-declarations