diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-12-04 12:21:30 -0500 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-12-09 11:47:43 +0100 |
commit | d64341e498fa46c6cf4c23d408177d7489559654 (patch) | |
tree | aad240f6948a6737f097b7479473713f00160208 /libavformat/Makefile | |
parent | 61b203ffe6c71789acb14f51483d63fe9e516842 (diff) | |
download | ffmpeg-streaming-d64341e498fa46c6cf4c23d408177d7489559654.zip ffmpeg-streaming-d64341e498fa46c6cf4c23d408177d7489559654.tar.gz |
configure: Prefix libc-related variables with "libc_"
Simplifies host/target libc detection splitting.
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 c66b4c6..8605a1c 100644 --- a/libavformat/Makefile +++ b/libavformat/Makefile @@ -23,8 +23,6 @@ OBJS = allformats.o \ url.o \ utils.o \ -OBJS-$(HAVE_MSVCRT) += file_open.o - OBJS-$(CONFIG_NETWORK) += network.o OBJS-$(CONFIG_RIFFDEC) += riffdec.o OBJS-$(CONFIG_RIFFENC) += riffenc.o @@ -388,6 +386,8 @@ OBJS-$(CONFIG_TLS_PROTOCOL) += tls.o OBJS-$(CONFIG_UDP_PROTOCOL) += udp.o OBJS-$(CONFIG_UNIX_PROTOCOL) += unix.o +OBJS-$(HAVE_LIBC_MSVCRT) += file_open.o + SKIPHEADERS-$(CONFIG_FFRTMPCRYPT_PROTOCOL) += rtmpdh.h SKIPHEADERS-$(CONFIG_NETWORK) += network.h rtsp.h |