]> git.sesse.net Git - ffmpeg/commitdiff
Merge commit '38434a9ff5b9a1a048f32c1c7e2a9519cf12f8ba'
authorJames Almer <jamrial@gmail.com>
Mon, 12 Feb 2018 02:11:06 +0000 (23:11 -0300)
committerJames Almer <jamrial@gmail.com>
Mon, 12 Feb 2018 02:13:17 +0000 (23:13 -0300)
* commit '38434a9ff5b9a1a048f32c1c7e2a9519cf12f8ba':
  configure: Simplify restrict keyword handling

Merged-by: James Almer <jamrial@gmail.com>
1  2 
configure

diff --cc configure
index 1f7978049e19cb14bd679b7b7a953809cfdd6346,b4c6320f7a3283646ab0937a2a970cc99be3b3a4..760aae59f0e798167c616ae228ccda042488fc57
+++ b/configure
@@@ -6495,18 -4973,11 +6494,18 @@@ elif enabled_any msvc icl; the
      # MSVC 2013 and newer can handle it fine.
      # If this declspec fails, force including stdlib.h before the restrict redefinition
      # happens in config.h.
-     if [ $_restrict != restrict ]; then
+     if [ $restrict_keyword != restrict ]; then
          check_cc <<EOF || add_cflags -FIstdlib.h
- __declspec($_restrict) void* foo(int);
+ __declspec($restrict_keyword) void *foo(int);
  EOF
      fi
 +    # the new SSA optimzer in VS2015 U3 is mis-optimizing some parts of the code
 +    # Issue has been fixed in MSVC v19.00.24218.
 +    check_cpp_condition windows.h "_MSC_FULL_VER >= 190024218" ||
 +        check_cflags -d2SSAOptimizer-
 +    # enable utf-8 source processing on VS2015 U2 and newer
 +    check_cpp_condition windows.h "_MSC_FULL_VER >= 190023918" &&
 +        add_cflags -utf-8
  fi
  
  for pfx in "" host_; do
  
  cat > $TMPH <<EOF
  /* Automatically generated by configure - do not modify! */
 -#ifndef LIBAV_CONFIG_H
 -#define LIBAV_CONFIG_H
 -#define LIBAV_CONFIGURATION "$(c_escape $LIBAV_CONFIGURATION)"
 -#define LIBAV_LICENSE "$(c_escape $license)"
 +#ifndef FFMPEG_CONFIG_H
 +#define FFMPEG_CONFIG_H
 +#define FFMPEG_CONFIGURATION "$(c_escape $FFMPEG_CONFIGURATION)"
 +#define FFMPEG_LICENSE "$(c_escape $license)"
 +#define CONFIG_THIS_YEAR 2018
 +#define FFMPEG_DATADIR "$(eval c_escape $datadir)"
  #define AVCONV_DATADIR "$(eval c_escape $datadir)"
  #define CC_IDENT "$(c_escape ${cc_ident:-Unknown compiler})"
- #define av_restrict $_restrict
++#define av_restrict $restrict_keyword
  #define EXTERN_PREFIX "${extern_prefix}"
  #define EXTERN_ASM ${extern_prefix}
 +#define BUILDSUF "$build_suffix"
  #define SLIBSUF "$SLIBSUF"
 +#define HAVE_MMX2 HAVE_MMXEXT
 +#define SWS_MAX_FILTER_SIZE $sws_max_filter_size
  EOF
  
 -test $restrict_keyword != restrict &&
 -    echo "#define restrict $restrict_keyword" >> $TMPH
 +test -n "$assert_level" &&
 +    echo "#define ASSERT_LEVEL $assert_level" >>$TMPH
  
  test -n "$malloc_prefix" &&
      echo "#define MALLOC_PREFIX $malloc_prefix" >>$TMPH