diff options
author | Peter Tissen <dravorek@gmail.com> | 2015-03-06 19:39:27 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-03-06 22:45:56 +0100 |
commit | 79f83523f7718ddb292c8e03f27a0b5ee7047230 (patch) | |
tree | ed00033c12155259786c4dd2832d5d10d2c88519 /libavutil | |
parent | 42493843dc6f990ebab6b82df2e9cfab0e019b80 (diff) | |
download | ffmpeg-79f83523f7718ddb292c8e03f27a0b5ee7047230.tar.gz |
configure: Make compilable with VS2015 (missing hunk)
This hunk was missing in the github pull request when i downloaded it,
but is needed
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavutil')
-rw-r--r-- | libavutil/internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/internal.h b/libavutil/internal.h index 143e2db495..08ee6e5ba2 100644 --- a/libavutil/internal.h +++ b/libavutil/internal.h @@ -164,7 +164,7 @@ #include "libm.h" -#if defined(_MSC_VER) +#if defined(_MSC_VER) && _MSC_VER < 1900 #pragma comment(linker, "/include:"EXTERN_PREFIX"avpriv_strtod") #pragma comment(linker, "/include:"EXTERN_PREFIX"avpriv_snprintf") #endif |