Skip to content

Commit 64ff6d1

Browse files
h-eastchrisbra
authored andcommitted
patch 9.1.1822: Makefile still supports Perl < 5.005
Problem: Makefile still supports Perl < 5.005 Solution: Remove support for Perl < 5.005, it's long been obsolete (Hirohito Higashi) closes: #18474 Signed-off-by: Hirohito Higashi <[email protected]> Signed-off-by: Christian Brabandt <[email protected]>
1 parent fabe9a4 commit 64ff6d1

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/Makefile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3120,9 +3120,8 @@ lintinstall:
31203120
$(CCC) $<
31213121

31223122
auto/if_perl.c: if_perl.xs
3123-
$(PERL) -e 'unless ( $$] >= 5.005 ) { for (qw(na defgv errgv)) { print "#define PL_$$_ $$_\n" }}' > $@
31243123
$(PERL) $(PERL_XSUBPP) -prototypes -typemap \
3125-
$(PERLLIB)/ExtUtils/typemap if_perl.xs >> $@
3124+
$(PERLLIB)/ExtUtils/typemap if_perl.xs > $@
31263125

31273126
auto/osdef.h: auto/config.h osdef.sh osdef1.h.in osdef2.h.in
31283127
CC="$(CC) $(OSDEF_CFLAGS)" srcdir=$(srcdir) sh $(srcdir)/osdef.sh

src/version.c

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

730730
static int included_patches[] =
731731
{ /* Add new patch number below this line */
732+
/**/
733+
1822,
732734
/**/
733735
1821,
734736
/**/

0 commit comments

Comments
 (0)