Hi, 2014/11/5 Wed 21:53:49 UTC+9 Bram Moolenaar wrote: > Patch 7.4.496 > Problem: Many lines are both in Make_cyg.mak and Make_ming.mak > Solution: Move the common parts to one file. (Ken Takata) > Files: src/INSTALLpc.txt, src/Make_cyg.mak, src/Make_cyg_ming.mak, > src/Make_ming.mak, src/Make_mvc.mak, Filelist
I had a report that this patch had a problem with if_perl: https://bitbucket.org/k_takata/vim-ktakata-mq/issue/1/vim-build-errors-when-using-patch-74496 I added double quotations with the patch, but it caused the problem. They should be removed: --- a/src/Make_cyg_ming.mak +++ b/src/Make_cyg_ming.mak @@ -132,7 +132,7 @@ XSUBPPTRY=$(PERLLIB)/ExtUtils/xsubpp endif XSUBPP_EXISTS=$(shell $(PERLEXE) -e "print 1 unless -e '$(XSUBPPTRY)'") ifeq "$(XSUBPP_EXISTS)" "" -XSUBPP=$(PERLEXE) "$(XSUBPPTRY)" +XSUBPP=$(PERLEXE) $(XSUBPPTRY) else XSUBPP=xsubpp endif @@ -809,7 +809,7 @@ endif if_perl.c: if_perl.xs typemap $(XSUBPP) -prototypes -typemap \ - "$(PERLTYPEMAP)" if_perl.xs > $@ + $(PERLTYPEMAP) if_perl.xs > $@ $(OUTDIR)/netbeans.o: netbeans.c $(INCL) $(NBDEBUG_INCL) $(NBDEBUG_SRC) $(CC) -c $(CFLAGS) netbeans.c -o $(OUTDIR)/netbeans.o Regards, Ken Takata -- -- 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]. For more options, visit https://groups.google.com/d/optout.
