[Scummvm-git-logs] scummvm master -> 07072805026255b7f4668aa20a5e16bf7e72a7df

lephilousophe noreply at scummvm.org
Sun May 18 10:32:44 UTC 2025


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

Summary:
0707280502 CONFIGURE: Remove needless condition for GCC version


Commit: 07072805026255b7f4668aa20a5e16bf7e72a7df
    https://github.com/scummvm/scummvm/commit/07072805026255b7f4668aa20a5e16bf7e72a7df
Author: Orgad Shaneh (orgads at gmail.com)
Date: 2025-05-18T12:32:42+02:00

Commit Message:
CONFIGURE: Remove needless condition for GCC version

The last version for GCC 4.x is 4.9.x, so testing for <=9 is redundant.

Changed paths:
    configure


diff --git a/configure b/configure
index 953e08ad34d..8014aa52a0d 100755
--- a/configure
+++ b/configure
@@ -2395,9 +2395,7 @@ if test "$have_gcc" = yes; then
 				fi
 
 				# Many false positives with Common::Serializer
-				if test $_cxx_minor -le 9; then
-					append_var CXXFLAGS "-Wno-maybe-uninitialized"
-				fi
+				append_var CXXFLAGS "-Wno-maybe-uninitialized"
 			fi
 		fi
 	fi




More information about the Scummvm-git-logs mailing list