diff options
author | miod <> | 2014-04-11 22:51:54 +0000 |
---|---|---|
committer | miod <> | 2014-04-11 22:51:54 +0000 |
commit | e4e5cfce71aea090d747d436ab48c4717f78c97c (patch) | |
tree | afd4b98775fa2752df82417abdf319a3af0bb439 /src/lib/libssl/ssl | |
parent | 3c70ae462fc747402d562cd98a2825922441cdda (diff) | |
download | openbsd-e4e5cfce71aea090d747d436ab48c4717f78c97c.tar.gz openbsd-e4e5cfce71aea090d747d436ab48c4717f78c97c.tar.bz2 openbsd-e4e5cfce71aea090d747d436ab48c4717f78c97c.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 'src/lib/libssl/ssl')
-rw-r--r-- | src/lib/libssl/ssl/Makefile | 9 |
1 files changed, 4 insertions, 5 deletions
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 @@ | |||
1 | # $OpenBSD: Makefile,v 1.30 2014/04/10 20:00:27 deraadt Exp $ | 1 | # $OpenBSD: Makefile,v 1.31 2014/04/11 22:51:54 miod Exp $ |
2 | 2 | ||
3 | LIB= ssl | 3 | LIB= ssl |
4 | 4 | ||
5 | SSLEAYDIST= src | 5 | SSL_SRC= ${.CURDIR}/../../libssl/src |
6 | 6 | LSSL_SRC= ${SSL_SRC}/ssl | |
7 | LSSL_SRC= ${.CURDIR}/../${SSLEAYDIST}/ssl | ||
8 | 7 | ||
9 | CFLAGS+= -DTERMIOS -DANSI_SOURCE | 8 | CFLAGS+= -DTERMIOS -DANSI_SOURCE |
10 | CFLAGS+= -DOPENSSL_NO_RC5 -DOPENSSL_NO_KRB5 | 9 | CFLAGS+= -DOPENSSL_NO_RC5 -DOPENSSL_NO_KRB5 |
11 | CFLAGS+= -DOPENSSL_NO_SSL2 | 10 | CFLAGS+= -DOPENSSL_NO_SSL2 |
12 | CFLAGS+= -DOPENSSL_NO_BUF_FREELISTS -DOPENSSL_NO_HEARTBEATS | 11 | CFLAGS+= -DOPENSSL_NO_BUF_FREELISTS -DOPENSSL_NO_HEARTBEATS |
13 | CFLAGS+= -I${.CURDIR}/../${SSLEAYDIST} -I${.CURDIR}/../${SSLEAYDIST}/crypto | 12 | CFLAGS+= -I${SSL_SRC} -I${SSL_SRC}/crypto |
14 | 13 | ||
15 | SRCS=\ | 14 | SRCS=\ |
16 | s2_meth.c s2_srvr.c s2_clnt.c s2_lib.c s2_enc.c s2_pkt.c \ | 15 | s2_meth.c s2_srvr.c s2_clnt.c s2_lib.c s2_enc.c s2_pkt.c \ |