]> granicus.if.org Git - libvpx/commitdiff
configure: Disable webm_io when target is VS 7/8/9.
authorTom Finegan <tomfinegan@google.com>
Sat, 9 Apr 2016 00:10:28 +0000 (17:10 -0700)
committerTom Finegan <tomfinegan@google.com>
Sat, 9 Apr 2016 01:50:32 +0000 (18:50 -0700)
libwebm now requires stdint.h, and the noted Visual Studio versions
omit it.

Change-Id: I7e5de131c357cb7a99c33452b2b623882817df0f

build/make/configure.sh

index d888268dc8fa59623530e5a4c3ad00b04b0c0de2..b4d6bc99f8abf6d146f084fe42e585d121a0fd1f 100644 (file)
@@ -1187,6 +1187,12 @@ EOF
               soft_disable avx2
               ;;
           esac
+          case $vc_version in
+            7|8|9)
+              echo "${tgt_cc} omits stdint.h, disabling webm-io..."
+              soft_disable webm_io
+              ;;
+          esac
           ;;
       esac