Skip to content

Commit 18a0ef9

Browse files
committed
updated for version 7.4.507
Problem: Building with MingW and Perl. Solution: Remove quotes. (Ken Takata)
1 parent f2cbd8b commit 18a0ef9

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/Make_cyg_ming.mak

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ XSUBPPTRY=$(PERLLIB)/ExtUtils/xsubpp
132132
endif
133133
XSUBPP_EXISTS=$(shell $(PERLEXE) -e "print 1 unless -e '$(XSUBPPTRY)'")
134134
ifeq "$(XSUBPP_EXISTS)" ""
135-
XSUBPP=$(PERLEXE) "$(XSUBPPTRY)"
135+
XSUBPP=$(PERLEXE) $(XSUBPPTRY)
136136
else
137137
XSUBPP=xsubpp
138138
endif
@@ -809,7 +809,7 @@ endif
809809

810810
if_perl.c: if_perl.xs typemap
811811
$(XSUBPP) -prototypes -typemap \
812-
"$(PERLTYPEMAP)" if_perl.xs > $@
812+
$(PERLTYPEMAP) if_perl.xs > $@
813813

814814
$(OUTDIR)/netbeans.o: netbeans.c $(INCL) $(NBDEBUG_INCL) $(NBDEBUG_SRC)
815815
$(CC) -c $(CFLAGS) netbeans.c -o $(OUTDIR)/netbeans.o

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+
507,
744746
/**/
745747
506,
746748
/**/

0 commit comments

Comments
 (0)