From: James Zern Date: Thu, 5 Feb 2015 03:16:12 +0000 (-0800) Subject: configure: enable x86inc for all intel platforms X-Git-Tag: v1.4.0~177^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=769fe6e2b38d9dbb8b60f3af9e0555614d77caf8;p=platform%2Fupstream%2Flibvpx.git configure: enable x86inc for all intel platforms there are no known issues since: 10d5e09 Fix issues in 32bit PIC enabled build related issues: #808, #924 Change-Id: I80454f95fe6b4ce630fdd434d740ce8b0d42951b --- diff --git a/build/make/configure.sh b/build/make/configure.sh index c0b5072..7235091 100644 --- a/build/make/configure.sh +++ b/build/make/configure.sh @@ -1259,14 +1259,7 @@ EOF fi fi - tgt_os_no_version=$(echo "${tgt_os}" | tr -d "[0-9]") - if [ "${tgt_os_no_version}" = "openbsd" ] || [ "`uname`" = "OpenBSD" ]; then - openbsd_like=yes - fi - # Default use_x86inc to yes when we are 64 bit, non-pic, or on any - # non-Darwin target. - if [ "${tgt_isa}" = "x86_64" ] || [ "${pic}" != "yes" ] || \ - [ "${openbsd_like}" != "yes" ]; then + if [ "${tgt_isa}" = "x86_64" ] || [ "${tgt_isa}" = "x86" ]; then soft_enable use_x86inc fi