]> git.eshelyaron.com Git - emacs.git/commitdiff
Improve suppression of bogus macOS warnings
authorPaul Eggert <eggert@cs.ucla.edu>
Thu, 3 Nov 2022 18:09:53 +0000 (11:09 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Thu, 3 Nov 2022 18:10:32 +0000 (11:10 -0700)
* configure.ac: On macOS, always use -Wno-deprecated-declarations,
as the false alarms appear even if --disable-gcc-warnings is given
(Bug#58966).

configure.ac

index c9d1eb570929e3b51bcccb073b8786b2c8767e19..b656dba4d996784a203100f033b76776683517dc 100644 (file)
@@ -1144,12 +1144,6 @@ AS_IF([test $gl_gcc_warnings = no],
     gl_WARN_ADD([-Wno-int-in-bool-context])
   fi
 
-  # Suppress deprecation warnings from using sprintf variants,
-  # starting with Xcode 14.1 on macOS 13.
-  if test $opsys = darwin; then
-    gl_WARN_ADD([-Wno-deprecated-declarations])
-  fi
-
   # This causes too much noise in the MinGW build
   if test $opsys = mingw32; then
     gl_WARN_ADD([-Wno-pointer-sign])
@@ -1176,6 +1170,13 @@ if test "$emacs_cv_clang" = yes; then
   gl_WARN_ADD([-Wno-tautological-constant-out-of-range-compare])
 fi
 
+# Suppress deprecation warnings from using sprintf variants,
+# starting with Xcode 14.1 on macOS 13.
+# These warnings are false alarms, as Emacs usage of sprintf is safe.
+if test $opsys = darwin; then
+  gl_WARN_ADD([-Wno-deprecated-declarations])
+fi
+
 # Use a slightly smaller set of warning options for lib/.
 nw=
 nw="$nw -Wunused-macros"