To: vim_dev@googlegroups.com Subject: Patch 9.0.0830 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 9.0.0830 Problem: Compiling with Perl on Mac 12 fails. Solution: Suppress infinite warnings. (closes #11499) Files: src/if_perl.xs *** ../vim-9.0.0829/src/if_perl.xs 2022-10-01 19:43:48.606494048 +0100 --- src/if_perl.xs 2022-11-04 22:30:58.520277241 +0000 *************** *** 145,150 **** --- 145,155 ---- # define EXTERN_C #endif + // Suppress Infinite warnings when compiling XS modules under macOS 12 Monterey. + #if defined(__clang__) && defined(__clang_major__) && __clang_major__ > 11 + #pragma clang diagnostic ignored "-Wcompound-token-split-by-macro" + #endif + /* Compatibility hacks over */ static PerlInterpreter *perl_interp = NULL; *** ../vim-9.0.0829/src/version.c 2022-11-04 21:58:30.846679779 +0000 --- src/version.c 2022-11-04 22:31:45.688198337 +0000 *************** *** 697,698 **** --- 697,700 ---- { /* Add new patch number below this line */ + /**/ + 830, /**/ -- hundred-and-one symptoms of being an internet addict: 21. Your dog has its own home page. /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\ /// \\\ \\\ sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ /// \\\ help me help AIDS victims -- http://ICCF-Holland.org ///