diff options
author | Gerd Möllmann <gerd@gnu.org> | 2022-11-03 10:39:37 +0100 |
---|---|---|
committer | Gerd Möllmann <gerd@gnu.org> | 2022-11-03 10:42:35 +0100 |
commit | d16494cffbed79a916482558ae5ed1bdcc67c88d (patch) | |
tree | 5522815cf222a5154a8eae539b72a22d6a02e603 /configure.ac | |
parent | dffc34a2d4a2320acd2ce454115f2c9631eb4ce2 (diff) | |
download | emacs-d16494cffbed79a916482558ae5ed1bdcc67c88d.tar.gz emacs-d16494cffbed79a916482558ae5ed1bdcc67c88d.tar.bz2 emacs-d16494cffbed79a916482558ae5ed1bdcc67c88d.zip |
Suppress deprecation warnings on macOS (bug#58966)
* configure.ac (CHECK_LISP_OBJECT_TYPE): Add
-Wno-deprecated-declarations for darwin.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 63cb9c412ec..c9d1eb57092 100644 --- a/configure.ac +++ b/configure.ac @@ -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]) |