diff options
author | Reyk Floeter <reyk@cvs.openbsd.org> | 2015-01-22 09:26:06 +0000 |
---|---|---|
committer | Reyk Floeter <reyk@cvs.openbsd.org> | 2015-01-22 09:26:06 +0000 |
commit | 9103d48d709d6d658783a600cec2c3803e2d79ca (patch) | |
tree | 2114bd7cdbc0f9dcb3d6bcf3a0bc332b37dec167 /usr.sbin/relayd/Makefile | |
parent | d8c6bc473f24342a7779cf1d21ce977aa7fd6dd1 (diff) |
LibreSSL now supports loading of CA certificates from memory, replace
the internal and long-serving ssl_ctx_load_verify_memory() function
with a call to the SSL_CTX_load_verify_mem() API function. The
ssl_privsep.c file with hacks for using OpenSSL in privsep'ed
processes can now go away; portable versions of smtpd and relayd
should start depending on LibreSSL or they have to carry ssl_privsep.c
in openbsd-compat to work with legacy OpenSSL. No functional change.
Based on previous discussions with gilles@ bluhm@ and many others
OK bluhm@ (as part of the libcrypto/libssl/libtls diff)
Diffstat (limited to 'usr.sbin/relayd/Makefile')
-rw-r--r-- | usr.sbin/relayd/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/relayd/Makefile b/usr.sbin/relayd/Makefile index e573d9acfd5..066acfa72f9 100644 --- a/usr.sbin/relayd/Makefile +++ b/usr.sbin/relayd/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.27 2014/04/21 14:57:17 reyk Exp $ +# $OpenBSD: Makefile,v 1.28 2015/01/22 09:26:05 reyk Exp $ PROG= relayd SRCS= parse.y @@ -6,7 +6,7 @@ SRCS+= agentx.c ca.c carp.c check_icmp.c check_script.c \ check_tcp.c config.c control.c hce.c log.c name2id.c \ pfe.c pfe_filter.c pfe_route.c proc.c \ relay.c relay_http.c relay_udp.c relayd.c \ - shuffle.c snmp.c ssl.c ssl_privsep.c + shuffle.c snmp.c ssl.c MAN= relayd.8 relayd.conf.5 LDADD= -levent -lssl -lcrypto -lutil |