summaryrefslogtreecommitdiff
path: root/libavformat/Makefile
diff options
context:
space:
mode:
authorwm4 <nfxjfg@googlemail.com>2015-05-27 12:57:50 +0200
committerMichael Niedermayer <michaelni@gmx.at>2015-05-27 21:48:47 +0200
commit4a006b9eb7e7d736fd00e6045b5612978ef6404b (patch)
tree1f2f4e523c4c8c89ee7d9299c297a9bd43ec7b92 /libavformat/Makefile
parent07fc47909f6f3a8faa92c2715e07bba6d833074c (diff)
lavf: split tls.c
Move the OpenSSL and GnuTLS implementations to their own files. Other than the connection code (including options) and some boilerplate, no code is actually shared. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/Makefile')
-rw-r--r--libavformat/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavformat/Makefile b/libavformat/Makefile
index bca9d5b9d4..83ea2a652d 100644
--- a/libavformat/Makefile
+++ b/libavformat/Makefile
@@ -521,7 +521,8 @@ OBJS-$(CONFIG_SCTP_PROTOCOL) += sctp.o
OBJS-$(CONFIG_SRTP_PROTOCOL) += srtpproto.o srtp.o
OBJS-$(CONFIG_SUBFILE_PROTOCOL) += subfile.o
OBJS-$(CONFIG_TCP_PROTOCOL) += tcp.o
-OBJS-$(CONFIG_TLS_PROTOCOL) += tls.o
+OBJS-$(CONFIG_TLS_GNUTLS_PROTOCOL) += tls_gnutls.o tls.o
+OBJS-$(CONFIG_TLS_OPENSSL_PROTOCOL) += tls_openssl.o tls.o
OBJS-$(CONFIG_UDP_PROTOCOL) += udp.o
OBJS-$(CONFIG_UDPLITE_PROTOCOL) += udp.o
OBJS-$(CONFIG_UNIX_PROTOCOL) += unix.o