Patch 9.0.0658 (after 9.0.0657)
Problem: Tiny build fails on Mac OS.
Solution: Define FEAT_CLIPBOARD only for normal build.
Files: src/vim.h
*** ../vim-9.0.0657/src/vim.h 2022-10-04 16:23:39.010042185 +0100
--- src/vim.h 2022-10-04 16:47:10.512242839 +0100
***************
*** 163,169 ****
*/
#include "feature.h"
! #if defined(MACOS_X_DARWIN) && !defined(FEAT_CLIPBOARD)
# define FEAT_CLIPBOARD
#endif
--- 163,170 ----
*/
#include "feature.h"
! #if defined(MACOS_X_DARWIN) && defined(FEAT_NORMAL) \
! && !defined(FEAT_CLIPBOARD)
# define FEAT_CLIPBOARD
#endif
*** ../vim-9.0.0657/src/version.c 2022-10-04 16:49:56.548022916 +0100
--- src/version.c 2022-10-04 16:49:21.744069059 +0100
***************
*** 701,702 ****
--- 701,704 ----
{ /* Add new patch number below this line */
+ /**/
+ 658,
/**/
--
This sentence is not sure that it exists, but if it does, it will
certainly consider the possibility that other sentences exist.
/// 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/20221004155048.5D9591C09A3%40moolenaar.net.