mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-11 19:54:03 +00:00
CONFIGURE: Fix missing parentheses
This commit is contained in:
parent
89ce812855
commit
fab21fb706
10
configure
vendored
10
configure
vendored
@ -6990,7 +6990,7 @@ case $_host_cpu in
|
||||
_ext_neon=no
|
||||
# SSE2 is always available on x86_64
|
||||
if !(test "$have_clang" = yes && ((test $_clang_major -gt 5) || (test $_clang_major -eq 5 && test $_clang_minor -gt 0))) &&
|
||||
!(test "$have_gcc" = yes && ((test $_cxx_major -gt 4) || (test $_cxx_major -eq 4 && test $_cxx_minor -gt 9))); then
|
||||
!(test "$have_gcc" = yes && ((test $_cxx_major -gt 4) || (test $_cxx_major -eq 4 && test $_cxx_minor -gt 9))); then
|
||||
# Need GCC 4.9+ or Clang 5.0+ for target pragma
|
||||
_ext_avx2=no
|
||||
fi
|
||||
@ -7003,8 +7003,8 @@ case $_host_cpu in
|
||||
_ext_avx2=no
|
||||
fi
|
||||
_ext_neon=no
|
||||
if !(test "$have_clang" = yes && (test $_clang_major -gt 5) || (test $_clang_major -eq 5 && test $_clang_minor -gt 0)) &&
|
||||
!(test "$have_gcc" = yes && (test $_cxx_major -gt 4) || (test $_cxx_major -eq 4 && test $_cxx_minor -gt 9)); then
|
||||
if !(test "$have_clang" = yes && ((test $_clang_major -gt 5) || (test $_clang_major -eq 5 && test $_clang_minor -gt 0))) &&
|
||||
!(test "$have_gcc" = yes && ((test $_cxx_major -gt 4) || (test $_cxx_major -eq 4 && test $_cxx_minor -gt 9))); then
|
||||
# Need GCC 4.9+ or Clang 5.0+ for target pragma
|
||||
_ext_sse2=no
|
||||
_ext_avx2=no
|
||||
@ -7024,8 +7024,8 @@ case $_host_cpu in
|
||||
fi
|
||||
_ext_sse2=no
|
||||
_ext_avx2=no
|
||||
if !(test "$have_clang" = yes && (test $_clang_major -gt 19) || (test $_clang_major -eq 19 && test $_clang_minor -gt 1)) &&
|
||||
!(test "$have_gcc" = yes && (test $_cxx_major -gt 4) || (test $_cxx_major -eq 4 && test $_cxx_minor -gt 9)); then
|
||||
if !(test "$have_clang" = yes && ((test $_clang_major -gt 19) || (test $_clang_major -eq 19 && test $_clang_minor -gt 1))) &&
|
||||
!(test "$have_gcc" = yes && ((test $_cxx_major -gt 4) || (test $_cxx_major -eq 4 && test $_cxx_minor -gt 9))); then
|
||||
# Need GCC 4.9+ or Clang 19.1+ for target pragma
|
||||
_ext_neon=no
|
||||
fi
|
||||
|
Loading…
Reference in New Issue
Block a user