summaryrefslogtreecommitdiff
path: root/usr.sbin/rpki-client/Makefile
diff options
context:
space:
mode:
authorClaudio Jeker <claudio@cvs.openbsd.org>2021-01-08 08:09:08 +0000
committerClaudio Jeker <claudio@cvs.openbsd.org>2021-01-08 08:09:08 +0000
commitc8e9e3a8a13b7a67eed0506692a72941ed2f9e5b (patch)
treee641ea6b4d21ab722f0fef22714727f78adbef44 /usr.sbin/rpki-client/Makefile
parent6c8de5dfd65756456f0077b107df32a8e3bd0eae (diff)
Start using the ibuf API (ibuf_dynamic, ibuf_add, ibuf_close) for writing
data between processes. This completely decouples the write side. rpki-client can't really use the imsg framework but it can use the ibuf bits wich imsg is built on. OK benno@ job@
Diffstat (limited to 'usr.sbin/rpki-client/Makefile')
-rw-r--r--usr.sbin/rpki-client/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/rpki-client/Makefile b/usr.sbin/rpki-client/Makefile
index ba83ccaa3c9..151d4889d8a 100644
--- a/usr.sbin/rpki-client/Makefile
+++ b/usr.sbin/rpki-client/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.15 2020/12/09 11:29:04 claudio Exp $
+# $OpenBSD: Makefile,v 1.16 2021/01/08 08:09:07 claudio Exp $
PROG= rpki-client
SRCS= as.c cert.c cms.c crl.c gbr.c io.c ip.c log.c main.c mft.c output.c \
@@ -6,8 +6,8 @@ SRCS= as.c cert.c cms.c crl.c gbr.c io.c ip.c log.c main.c mft.c output.c \
roa.c rsync.c tal.c validate.c x509.c
MAN= rpki-client.8
-LDADD+= -lcrypto
-DPADD+= ${LIBCRYPTO}
+LDADD+= -lcrypto -lutil
+DPADD+= ${LIBCRYPTO} ${LIBUTIL}
CFLAGS+= -Wall -I${.CURDIR}
CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes