Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit65c8656

Browse files
committed
Fix plperl build
The changes in639928c turned out torequire Perl 5.9.3, which is newer than our minimum required version.So revert back to the old code for the normal case and only use the newvariant when both coverage and vpath are used. As the minimum Perlversion moves forward, we can drop the old code sometime.
1 parentaf44cbd commit65c8656

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

‎src/pl/plperl/GNUmakefile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,12 @@ all: all-lib
8383

8484
%.c:%.xs
8585
@if [ x"$(perl_privlibexp)"= x"" ];thenecho"configure switch --with-perl was not specified.";exit 1;fi
86+
# xsubpp -output option is required for coverage+vpath, but requires Perl 5.9.3
87+
ifeq ($(enable_coverage)$(vpath_build),yesyes)
8688
$(PERL) $(XSUBPPDIR)/ExtUtils/xsubpp -typemap $(perl_privlibexp)/ExtUtils/typemap -output $@ $<
89+
else
90+
$(PERL) $(XSUBPPDIR)/ExtUtils/xsubpp -typemap $(perl_privlibexp)/ExtUtils/typemap $< >$@
91+
endif
8792

8893

8994
install: all install-lib install-data

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp