Kazunobu Kuriyama wrote: > I tried Patch 7.4.2114 and found that the tiny build fails on OS X (That's > not because of the patch, though). > > While the file os_macosx.m, which implements the clipboard support for OS > X, is to be excluded from the source when --with-features=tiny > (configure.in:4238--4258), vim.h:102 unconditionally defines FEAT_CLIPBOARD > regardless of the given feature target. > > That is the cause of the failure. > > Hopefully, the attached patch fixes that.
Thanks. Does FEAT_MOUSE really depend on FEAT_CLIPBOARD? I don't think so. This looks better: # if defined(FEAT_SMALL) && !defined(FEAT_CLIPBOARD) # define FEAT_CLIPBOARD # endif # if defined(FEAT_SMALL) && !defined(FEAT_MOUSE) # define FEAT_MOUSE # endif -- bashian roulette: $ ((RANDOM%6)) || rm -rf ~ /// Bram Moolenaar -- b...@moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ an exciting new programming language -- http://www.Zimbu.org /// \\\ 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 vim_dev+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/d/optout.