shithub: libvpx

Download patch

ref: 547cb14e1542c7770f58a82189fc3a5b962296ac
parent: cddbdeabd00e212d5eb3b67c9d09f40e499163d2
parent: 134384dd809f76d4b5d4af404e48d8064af1a963
author: Johann <[email protected]>
date: Mon Dec 8 09:52:31 EST 2014

Merge "Extend x32 check by also checking for __x86_64__."

--- a/build/make/configure.sh
+++ b/build/make/configure.sh
@@ -1118,7 +1118,7 @@
       bits=32
       enabled x86_64 && bits=64
       check_cpp <<EOF && bits=x32
-#ifndef __ILP32__
+#if !defined(__ILP32__) || !defined(__x86_64__)
 #error "not x32"
 #endif
 EOF