From: Bram Moolenaar Date: Wed, 22 Feb 2017 21:04:04 +0000 (+0100) Subject: patch 8.0.0348: using shadow dir on Mac lack +clipboard X-Git-Tag: v8.0.0348 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b7a59906d7ce41b7e74ec31b910375c21e427c0a;p=thirdparty%2Fvim.git patch 8.0.0348: using shadow dir on Mac lack +clipboard Problem: When building with a shadow directory on macOS lacks the +clipboard feature. Solution: Link *.m files, specifically os_macosx.m. (Kazunobu Kuriyama) --- diff --git a/src/Makefile b/src/Makefile index b5d39ec2c1..2c670061a8 100644 --- a/src/Makefile +++ b/src/Makefile @@ -2763,7 +2763,7 @@ SHADOWDIR = shadow shadow: runtime pixmaps mkdir $(SHADOWDIR) - cd $(SHADOWDIR); ln -s ../*.[ch] ../*.in ../*.sh ../*.xs ../*.xbm ../gui_gtk_res.xml ../toolcheck ../proto ../vimtutor ../gvimtutor ../mkinstalldirs . + cd $(SHADOWDIR); ln -s ../*.[chm] ../*.in ../*.sh ../*.xs ../*.xbm ../gui_gtk_res.xml ../toolcheck ../proto ../vimtutor ../gvimtutor ../mkinstalldirs . mkdir $(SHADOWDIR)/auto cd $(SHADOWDIR)/auto; ln -s ../../auto/configure . mkdir $(SHADOWDIR)/po diff --git a/src/version.c b/src/version.c index 2a54dc9cf6..e70a0f938f 100644 --- a/src/version.c +++ b/src/version.c @@ -764,6 +764,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 348, /**/ 347, /**/