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 -- [email protected] -- http://www.Moolenaar.net \\\
/// \\\
\\\ sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ ///
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/vim_dev/20221104223324.B22F11C0739%40moolenaar.net.