diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2014-04-13 15:49:51 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2014-04-13 15:49:51 +0000 |
commit | dcb5e14d0045b60a0f596917d1ee0a1d0995f798 (patch) | |
tree | df0f2167abbc482e0722f97a8bdc3d29fdb5eb24 /lib/libssl/ssl | |
parent | 85ebc5bc7bbdd3d152da925146d8fae712f58fee (diff) |
Move undocumented internal OPENSSL_DIR interface from libcrypto to libssl,
so that libssl no longer need to access the non-external headers of libcrypto
to build.
No library bump, riding upon the recent update.
Diffstat (limited to 'lib/libssl/ssl')
-rw-r--r-- | lib/libssl/ssl/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/libssl/ssl/Makefile b/lib/libssl/ssl/Makefile index 8c51f2f55e1..805070c5fe9 100644 --- a/lib/libssl/ssl/Makefile +++ b/lib/libssl/ssl/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.31 2014/04/11 22:51:54 miod Exp $ +# $OpenBSD: Makefile,v 1.32 2014/04/13 15:49:50 miod Exp $ LIB= ssl @@ -9,7 +9,7 @@ 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${SSL_SRC} -I${SSL_SRC}/crypto +CFLAGS+= -I${SSL_SRC} SRCS=\ s2_meth.c s2_srvr.c s2_clnt.c s2_lib.c s2_enc.c s2_pkt.c \ @@ -23,6 +23,7 @@ SRCS=\ ssl_asn1.c ssl_txt.c ssl_algs.c \ bio_ssl.c ssl_err.c kssl.c tls_srp.c t1_reneg.c SRCS+= s3_cbc.c +SRCS+= o_dir.c HDRS= srtp.h ssl.h ssl2.h ssl3.h ssl23.h tls1.h dtls1.h kssl.h |