summaryrefslogtreecommitdiffstats
path: root/lib/libssl/ssl
diff options
context:
space:
mode:
authormiod <miod@openbsd.org>2014-04-11 22:51:51 +0000
committermiod <miod@openbsd.org>2014-04-11 22:51:51 +0000
commit252ab50e97329c98e35321ea2ec8c92fe431ade1 (patch)
treea649b8c46aa5c3335641153b8def35fa5e000c14 /lib/libssl/ssl
parentDon't blindly increase offsets by the return value of snprintf, if there (diff)
downloadwireguard-openbsd-252ab50e97329c98e35321ea2ec8c92fe431ade1.tar.xz
wireguard-openbsd-252ab50e97329c98e35321ea2ec8c92fe431ade1.zip
Move build machinery for libcrypto from libssl/crypto to libcrypto, as well
as configuration files; split manpages and .pc files between libcrypto and libssl. No functional change, only there to make engineering easier, and libcrypto sources are still found in libssl/src/crypto at the moment. ok reyk@, also discussed with deraadt@ beck@ and the usual crypto suspects.
Diffstat (limited to 'lib/libssl/ssl')
-rw-r--r--lib/libssl/ssl/Makefile9
1 files changed, 4 insertions, 5 deletions
diff --git a/lib/libssl/ssl/Makefile b/lib/libssl/ssl/Makefile
index edc8b1ac6d0..8c51f2f55e1 100644
--- a/lib/libssl/ssl/Makefile
+++ b/lib/libssl/ssl/Makefile
@@ -1,16 +1,15 @@
-# $OpenBSD: Makefile,v 1.30 2014/04/10 20:00:27 deraadt Exp $
+# $OpenBSD: Makefile,v 1.31 2014/04/11 22:51:54 miod Exp $
LIB= ssl
-SSLEAYDIST= src
-
-LSSL_SRC= ${.CURDIR}/../${SSLEAYDIST}/ssl
+SSL_SRC= ${.CURDIR}/../../libssl/src
+LSSL_SRC= ${SSL_SRC}/ssl
CFLAGS+= -DTERMIOS -DANSI_SOURCE
CFLAGS+= -DOPENSSL_NO_RC5 -DOPENSSL_NO_KRB5
CFLAGS+= -DOPENSSL_NO_SSL2
CFLAGS+= -DOPENSSL_NO_BUF_FREELISTS -DOPENSSL_NO_HEARTBEATS
-CFLAGS+= -I${.CURDIR}/../${SSLEAYDIST} -I${.CURDIR}/../${SSLEAYDIST}/crypto
+CFLAGS+= -I${SSL_SRC} -I${SSL_SRC}/crypto
SRCS=\
s2_meth.c s2_srvr.c s2_clnt.c s2_lib.c s2_enc.c s2_pkt.c \