shithub: libvpx

Download patch

ref: 985786c780cfb21c347ef627d90b8001f2a62e9f
parent: 6a0e7715552758f016d3a79838021528b6bf9bf2
author: Tom Finegan <tomfinegan@google.com>
date: Fri Apr 8 13:10:28 EDT 2016

configure: Disable webm_io when target is VS 7/8/9.

libwebm now requires stdint.h, and the noted Visual Studio versions
omit it.

Change-Id: I7e5de131c357cb7a99c33452b2b623882817df0f

--- a/build/make/configure.sh
+++ b/build/make/configure.sh
@@ -1187,6 +1187,12 @@
               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