diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2015-07-26 23:19:56 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2015-07-26 23:19:56 +0200 |
commit | 27e61a716c893a6ae67ca8f859c735bc0b0b799a (patch) | |
tree | 5061f79f4095f0b24d8b261a209cfe6214cea95a /configure | |
parent | 867686997cbacd06cf5056c2741494bda23a7819 (diff) | |
parent | 5fd553d31272d5ed42a7a5a0ecaab7b3452da83a (diff) | |
download | ffmpeg-27e61a716c893a6ae67ca8f859c735bc0b0b799a.tar.gz |
Merge commit '5fd553d31272d5ed42a7a5a0ecaab7b3452da83a'
* commit '5fd553d31272d5ed42a7a5a0ecaab7b3452da83a':
configure: Only redefine inline to __inline for msvc if necessary
Conflicts:
configure
Merged-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 13 |
1 files changed, 12 insertions, 1 deletions
@@ -3680,7 +3680,7 @@ probe_cc(){ _ld_lib='lib%.a' _ld_path='-libpath:' _flags='-nologo' - _cflags='-D_USE_MATH_DEFINES -D_CRT_SECURE_NO_WARNINGS -Dinline=__inline -Dstrtoll=_strtoi64' + _cflags='-D_USE_MATH_DEFINES -D_CRT_SECURE_NO_WARNINGS -Dstrtoll=_strtoi64' disable stripping elif $_cc --version 2>/dev/null | grep -q ^cparser; then _type=cparser @@ -5683,6 +5683,17 @@ EOF fi fi +for pfx in "" host_; do + pfx_no_=${pfx%_} + varname=${pfx_no_}cc_type + eval "type=\$$varname" + if [ $type = "msvc" ]; then + check_${pfx}cc <<EOF || add_${pfx}cflags -Dinline=__inline +static inline int foo(int a) { return a; } +EOF + fi +done + case $as_type in clang) add_asflags -Qunused-arguments |