diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2012-09-04 14:30:37 +0100 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2012-09-05 17:07:30 +0300 |
commit | 4fa661a857f16d4afd322920442b075c2a84ec4c (patch) | |
tree | b3103384656707ecb3d8b2cfaa4a28ce8e065fe7 /libavutil/Makefile | |
parent | 0db2d94280e260af5f3ad7993c5a6357462f17c9 (diff) | |
download | ffmpeg-4fa661a857f16d4afd322920442b075c2a84ec4c.tar.gz |
lavu: add snprintf(), vsnprint() and strtod() replacements for MS runtime.
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavutil/Makefile')
-rw-r--r-- | libavutil/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavutil/Makefile b/libavutil/Makefile index 48f872d535..cf9b32f6d2 100644 --- a/libavutil/Makefile +++ b/libavutil/Makefile @@ -87,6 +87,9 @@ OBJS = adler32.o \ utils.o \ xtea.o \ +OBJS-$(HAVE_MSVCRT) += ../compat/msvcrt/snprintf.o \ + ../compat/strtod.o + TESTPROGS = adler32 \ aes \ avstring \ |