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 /libavcodec | |
parent | 61b203ffe6c71789acb14f51483d63fe9e516842 (diff) | |
download | ffmpeg-d64341e498fa46c6cf4c23d408177d7489559654.tar.gz |
configure: Prefix libc-related variables with "libc_"
Simplifies host/target libc detection splitting.
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile index f71554d124..2925dd56c1 100644 --- a/libavcodec/Makefile +++ b/libavcodec/Makefile @@ -25,8 +25,6 @@ OBJS = allcodecs.o \ raw.o \ utils.o \ -OBJS-$(HAVE_MSVCRT) += file_open.o - # parts needed for many different codecs OBJS-$(CONFIG_AANDCTTABLES) += aandcttab.o OBJS-$(CONFIG_AC3DSP) += ac3dsp.o @@ -677,6 +675,7 @@ OBJS-$(CONFIG_REMOVE_EXTRADATA_BSF) += remove_extradata_bsf.o OBJS-$(CONFIG_TEXT2MOVSUB_BSF) += movsub_bsf.o # thread libraries +OBJS-$(HAVE_LIBC_MSVCRT) += file_open.o OBJS-$(HAVE_PTHREADS) += pthread.o pthread_slice.o pthread_frame.o OBJS-$(HAVE_W32THREADS) += pthread.o pthread_slice.o pthread_frame.o |