summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Sing <jsing@cvs.openbsd.org>2019-11-02 13:38:34 +0000
committerJoel Sing <jsing@cvs.openbsd.org>2019-11-02 13:38:34 +0000
commit8f93975f87a06e4a06bf05fa454bb6c50081a5d1 (patch)
tree9cd76f471eefed554900478fec462d288f3763d2
parentc2a6f1f96d12af95fc3d17317ff16eabe9fcc753 (diff)
Build rpki-client with LibreSSL.
-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 d3994672154..9e68bc55bca 100644
--- a/usr.sbin/rpki-client/Makefile
+++ b/usr.sbin/rpki-client/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.9 2019/10/16 17:43:29 claudio Exp $
+# $OpenBSD: Makefile,v 1.10 2019/11/02 13:38:33 jsing Exp $
PROG= rpki-client
SRCS= as.c cert.c cms.c crl.c io.c ip.c log.c main.c mft.c \
@@ -6,7 +6,7 @@ SRCS= as.c cert.c cms.c crl.c io.c ip.c log.c main.c mft.c \
roa.c rsync.c tal.c validate.c x509.c
MAN= rpki-client.8
-LDADD= /usr/local/lib/eopenssl/libcrypto.a
-CFLAGS= -I/usr/local/include/eopenssl
+LDADD+= -lcrypto
+DPADD+= ${LIBCRYPTO}
.include <bsd.prog.mk>