diff options
author | Derek Buitenhuis <derek.buitenhuis@gmail.com> | 2012-09-24 18:44:20 -0400 |
---|---|---|
committer | Derek Buitenhuis <derek.buitenhuis@gmail.com> | 2012-09-25 18:14:14 -0400 |
commit | 5ae9fa13f5ac640bec113120d540f70971aa635d (patch) | |
tree | 859f54e978977b136151ebac1733c18f1d4de175 /libavutil/Makefile | |
parent | de73ae6b1a3ff0398988dc683f94ea07e3bb1372 (diff) | |
download | ffmpeg-5ae9fa13f5ac640bec113120d540f70971aa635d.tar.gz |
MinGW: Use our snprintf/vsnprintf when MinGW's is broken
All versions of MinGW-w64 prior to version 3, as well as
all versions of MinGW32 have broken implementations of
vsnprintf.
Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
Diffstat (limited to 'libavutil/Makefile')
-rw-r--r-- | libavutil/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libavutil/Makefile b/libavutil/Makefile index 75039b1887..18a5a63557 100644 --- a/libavutil/Makefile +++ b/libavutil/Makefile @@ -94,8 +94,9 @@ OBJS = adler32.o \ utils.o \ xtea.o \ -OBJS-$(HAVE_MSVCRT) += ../compat/msvcrt/snprintf.o \ - ../compat/strtod.o +OBJS-$(HAVE_BROKEN_SNPRINTF) += ../compat/msvcrt/snprintf.o + +OBJS-$(HAVE_MSVCRT) += ../compat/strtod.o TESTPROGS = adler32 \ aes \ |