]> git.eshelyaron.com Git - emacs.git/commitdiff
Suppress deprecation warnings on macOS (bug#58966)
authorGerd Möllmann <gerd@gnu.org>
Thu, 3 Nov 2022 09:39:37 +0000 (10:39 +0100)
committerGerd Möllmann <gerd@gnu.org>
Thu, 3 Nov 2022 09:42:35 +0000 (10:42 +0100)
* configure.ac (CHECK_LISP_OBJECT_TYPE): Add
-Wno-deprecated-declarations for darwin.

configure.ac

index 63cb9c412ec9081e63b01c37138a9f5663d1f332..c9d1eb570929e3b51bcccb073b8786b2c8767e19 100644 (file)
@@ -1144,6 +1144,12 @@ 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])