[Scummvm-git-logs] scummvm master -> fab21fb706850478ffdee67d24e6dbaa5ba81c3f

lephilousophe noreply at scummvm.org
Mon Sep 30 11:44:39 UTC 2024


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
fab21fb706 CONFIGURE: Fix missing parentheses


Commit: fab21fb706850478ffdee67d24e6dbaa5ba81c3f
    https://github.com/scummvm/scummvm/commit/fab21fb706850478ffdee67d24e6dbaa5ba81c3f
Author: Le Philousophe (lephilousophe at users.noreply.github.com)
Date: 2024-09-30T13:44:30+02:00

Commit Message:
CONFIGURE: Fix missing parentheses

Changed paths:
    configure


diff --git a/configure b/configure
index e4561d93ae0..f8284cda550 100755
--- a/configure
+++ b/configure
@@ -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




More information about the Scummvm-git-logs mailing list