diff options
author | Martin Storsjö <martin@martin.st> | 2011-02-06 00:19:49 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2011-11-05 12:09:30 +0200 |
commit | 558d192d23bf76a476c0d84d212611e529c64529 (patch) | |
tree | 45a58b6119fca5b9753401d879714f897d6d2272 /libavformat/Makefile | |
parent | 1606e551ff4ace23da8a372ebb1147da36566372 (diff) | |
download | ffmpeg-558d192d23bf76a476c0d84d212611e529c64529.tar.gz |
avformat: Add the tls protocol, using OpenSSL or gnutls
Note, this protocol doesn't yet check verify the server
certificate against a local database of trusted CA root
certificates.
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavformat/Makefile')
-rw-r--r-- | libavformat/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/Makefile b/libavformat/Makefile index e9bcd28a93..5da01aa60b 100644 --- a/libavformat/Makefile +++ b/libavformat/Makefile @@ -334,6 +334,7 @@ OBJS-$(CONFIG_RTMP_PROTOCOL) += $(RTMP-OBJS-yes) OBJS-$(CONFIG_RTP_PROTOCOL) += rtpproto.o OBJS-$(CONFIG_TCP_PROTOCOL) += tcp.o +OBJS-$(CONFIG_TLS_PROTOCOL) += tls.o OBJS-$(CONFIG_UDP_PROTOCOL) += udp.o EXAMPLES = metadata output |