From e4e5cfce71aea090d747d436ab48c4717f78c97c Mon Sep 17 00:00:00 2001 From: miod <> Date: Fri, 11 Apr 2014 22:51:54 +0000 Subject: 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. --- src/lib/libssl/ssl/Makefile | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'src/lib/libssl/ssl') diff --git a/src/lib/libssl/ssl/Makefile b/src/lib/libssl/ssl/Makefile index edc8b1ac6d..8c51f2f55e 100644 --- a/src/lib/libssl/ssl/Makefile +++ b/src/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 \ -- cgit v1.2.3-55-g6feb