File tree Expand file tree Collapse file tree 3 files changed +12
-0
lines changed
Expand file tree Collapse file tree 3 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -825,7 +825,12 @@ PERL_INCDIR = $(PERL)\Lib$(PERL_ARCH)\Core
825825PERL_LIB = $(PERL_INCDIR ) \perl.lib
826826!else
827827PERL_DLL = perl$(PERL_VER ) .dll
828+ !if exist($(PERL_INCDIR)\perl$(PERL_VER).lib)
828829PERL_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
829834!endif
830835
831836CFLAGS = $(CFLAGS ) -DFEAT_PERL
Original file line number Diff line number Diff line change 4444# define PERL_NO_INLINE_FUNCTIONS
4545#endif
4646
47+ /* Work around for using MSVC and ActivePerl 5.18. */
48+ #ifdef _MSC_VER
49+ # define __inline__ __inline
50+ #endif
51+
4752#include <EXTERN.h>
4853#include <perl.h>
4954#include <XSUB.h>
Original file line number Diff line number Diff line change @@ -738,6 +738,8 @@ static char *(features[]) =
738738
739739static int included_patches [] =
740740{ /* Add new patch number below this line */
741+ /**/
742+ 128 ,
741743/**/
742744 127 ,
743745/**/
You can’t perform that action at this time.
0 commit comments