diff options
author | Marton Balint <cus@passwd.hu> | 2018-09-14 01:17:35 +0200 |
---|---|---|
committer | Marton Balint <cus@passwd.hu> | 2018-10-03 22:03:29 +0200 |
commit | 826972c9d81a66f14353a67908940b84dbce785f (patch) | |
tree | 700aebcca9433713c78da10124f7a32359293022 /libavformat/Makefile | |
parent | 45fa756fa4dd88d3631f28fe569a04119634f7f7 (diff) | |
download | ffmpeg-826972c9d81a66f14353a67908940b84dbce785f.tar.gz |
avformat/udp: use factorized ip functions
Signed-off-by: Marton Balint <cus@passwd.hu>
Diffstat (limited to 'libavformat/Makefile')
-rw-r--r-- | libavformat/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/Makefile b/libavformat/Makefile index ccb39b5469..467ae2d87e 100644 --- a/libavformat/Makefile +++ b/libavformat/Makefile @@ -609,8 +609,8 @@ TLS-OBJS-$(CONFIG_OPENSSL) += tls_openssl.o TLS-OBJS-$(CONFIG_SECURETRANSPORT) += tls_securetransport.o TLS-OBJS-$(CONFIG_SCHANNEL) += tls_schannel.o OBJS-$(CONFIG_TLS_PROTOCOL) += tls.o $(TLS-OBJS-yes) -OBJS-$(CONFIG_UDP_PROTOCOL) += udp.o -OBJS-$(CONFIG_UDPLITE_PROTOCOL) += udp.o +OBJS-$(CONFIG_UDP_PROTOCOL) += udp.o ip.o +OBJS-$(CONFIG_UDPLITE_PROTOCOL) += udp.o ip.o OBJS-$(CONFIG_UNIX_PROTOCOL) += unix.o # external library protocols |