Skip to content

Commit a16f472

Browse files
committed
patch 7.4.908
Problem: Build error with MingW compiler. (Cesar Romani) Solution: Change #if into #ifdef.
1 parent d94464e commit a16f472

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/if_perl.xs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -611,7 +611,7 @@ perl_runtime_link_init(char *libname, int verbose)
611611
perl_enabled(verbose)
612612
int verbose;
613613
{
614-
#if WIN3264
614+
#ifdef WIN3264
615615
char *dll = DYNAMIC_PERL_DLL;
616616
#else
617617
char *dll = *p_perldll ? (char *)p_perldll : DYNAMIC_PERL_DLL;

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -741,6 +741,8 @@ static char *(features[]) =
741741

742742
static int included_patches[] =
743743
{ /* Add new patch number below this line */
744+
/**/
745+
908,
744746
/**/
745747
907,
746748
/**/

0 commit comments

Comments
 (0)