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
This commit is contained in:
Tom Finegan 2016-04-08 17:10:28 -07:00
parent 6a0e771555
commit 985786c780

View 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