Mercurial > vim
comparison src/Make_mvc.mak @ 5560:4b92012f6b18 v7.4.128
updated for version 7.4.128
Problem: Perl 5.18 for MSVC doesn't work.
Solution: Add check in makefile and define __inline. (Ken Takata)
author | Bram Moolenaar <bram@vim.org> |
---|---|
date | Sat, 14 Dec 2013 11:50:35 +0100 |
parents | 42927712b3d9 |
children | 1e2bfe4f3e90 |
comparison
equal
deleted
inserted
replaced
5559:4e448701bb52 | 5560:4b92012f6b18 |
---|---|
823 # Version-dependent stuff | 823 # Version-dependent stuff |
824 !if $(PERL_VER) == 55 | 824 !if $(PERL_VER) == 55 |
825 PERL_LIB = $(PERL_INCDIR)\perl.lib | 825 PERL_LIB = $(PERL_INCDIR)\perl.lib |
826 !else | 826 !else |
827 PERL_DLL = perl$(PERL_VER).dll | 827 PERL_DLL = perl$(PERL_VER).dll |
828 !if exist($(PERL_INCDIR)\perl$(PERL_VER).lib) | |
828 PERL_LIB = $(PERL_INCDIR)\perl$(PERL_VER).lib | 829 PERL_LIB = $(PERL_INCDIR)\perl$(PERL_VER).lib |
830 !else | |
831 # For ActivePerl 5.18 and later | |
832 PERL_LIB = $(PERL_INCDIR)\libperl$(PERL_VER).a | |
833 !endif | |
829 !endif | 834 !endif |
830 | 835 |
831 CFLAGS = $(CFLAGS) -DFEAT_PERL | 836 CFLAGS = $(CFLAGS) -DFEAT_PERL |
832 | 837 |
833 # Do we want to load Perl dynamically? | 838 # Do we want to load Perl dynamically? |