On Wed, 14 Sep 2011, Bram Moolenaar wrote:
Patch 7.3.304 Problem: Strawberry Perl doesn't work on MS-Windows. Solution: Use xsubpp if needed. (Yasuhiro Matsumoto) Files: src/Make_ming.mak, src/Make_mvc.mak
This is missing a parenthesis, as I pointed out in the thread (but didn't send an updated patch on-list -- didn't think it'd be applied so quickly, and wanted to try gists.github.com).
*** ../vim-7.3.303/src/Make_mvc.mak 2011-06-12 20:31:25.000000000 +0200 --- src/Make_mvc.mak 2011-09-14 10:46:08.000000000 +0200 *************** *** 785,790 **** --- 785,795 ---- PERL_INC = /I $(PERL_INCDIR) PERL_OBJ = $(OUTDIR)\if_perl.obj $(OUTDIR)\if_perlsfio.obj XSUBPP = $(PERL)\lib\ExtUtils\xsubpp + !if exist($(XSUBPP)
Needs a parenthesis at the end of the line above. The resulting line: !if exist($(XSUBPP) should be !if exist($(XSUBPP)) -- Best, Ben -- 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
