FS-8623: reapply after update: Fix libvpx Solaris Studio build

This commit is contained in:
Mike Jerris 2016-09-26 14:38:30 -04:00
parent 07073175ee
commit ea463a615e

View File

@ -333,9 +333,19 @@ EOF
check_cflags() {
log check_cflags "$@"
case "$CC" in
*gcc*|*clang)
check_cc -Werror "$@" <<EOF
int x;
EOF
;;
*)
check_cc "$@" <<EOF
int x;
EOF
;;
esac
}
check_cxxflags() {