------------------------------------------------- 7.12 Tue Apr 19 12:24:41 BST 2016 Enhancements: - version ranges are now supported for PREREQS, etc. - Metadata is now represented internally as Meta Spec 2.0 - ExtUtils::Command has been re-incorporated at 1.19 of that module - Refactored XS handling - XSMULTI=>1 - put multiple *.xs under lib, it "just works" and XSBUILD for refined control of XSMULTI - can do "make test" without first doing "make" Bug fixes: - Handle new warnings from File::Path - Resolve RT#106572 specifying AUTHOR via command-line is broken - Warning on missing TEST_REQUIRES and CONFIGURE_REQUIRES - Sanitise make_type on Win32 - Cygwin rebase fixes - Makefile starting comments reflect decoded @ARGV, not raw - Add various targets to .PHONY to avoid disk IO with dmake - Fixed race condition in realclean - improve static-build lib detection - Eliminate non-error STDERR - Make WriteEmptyMakefile Makefile functional when called in subdir - manifypods fixes - perllocal.pod generation "Perl in Space" fix - PASTHRU fixes - Fix distsignature dependencies for parallel make - Check exit status for commands in "make ci" target - Less noisey output during building sub-modules - Fix dos2unix() on Windows - stop makeaperl from polluting @ARGV in cases where ARGV contains args with spaces - Fix regression when both test.pl and t/*.t are present - Refactored internals to remove DirHandle usage - MM_Unix::find_perl() dont repeatedly stat the same path in a loop - No longer repeatedly attempt to load CPAN::Meta if it is now available VMS fixes: - Made MM_VMS::oneline build continuation lines properly - Implemented XSMULTI and XSBUILD - Resurrect PASTHRU on VMS - make_macro should handle multiple macros - Fix regression with File::Spec changes in previous release Win32 fixes: - t/echo.t needs SHELL env for Win32 gmake Dist fixes: - Made %ExtraPrereqs match bundled prereqs - Included MANIFEST.SKIP from ExtUtils::Manifest - The bundled Encode::Locale has been updated to 1.04 Test fixes: - test PL_FILES of a "module" - Various tests no longer require a separate .pm file for testing - Support v5.6.1 in various tests - test static build if $ENV{AUTHOR_TESTING} - XS tests now pluggable - test for "Perl in Space" Doc fixes: - better document for PL_FILES, oneliner method - FAQ updated 7.11_06 Tue Mar 29 19:22:38 BST 2016 Bug fixes: - Backported change from blead for Win32 miniperl 7.11_05 Sat Mar 19 09:41:02 GMT 2016 Bug fixes: - Less noisey output during building sub-modules - Fix dos2unix() on Windows VMS fixes: - Implemented XSMULTI and XSBUILD - Resurrect PASTHRU on VMS 7.11_04 Mon Feb 15 11:20:14 GMT 2016 Enhancements: - Added find_tests_recursive_in() method Bug fixes: - Fix regression when both test.pl and t/*.t are present - Refactored internals to remove DirHandle usage VMS fixes: - make_macro should handle multiple macros - Fix regression with File::Spec changes in previous release Win32 fixes: - t/echo.t needs SHELL env for Win32 gmake 7.11_03 Wed Nov 25 15:23:25 GMT 2015 Bug fixes: - stop makeaperl from polluting @ARGV in cases where ARGV contains args with spaces 7.11_02 Sat Nov 21 20:05:45 GMT 2015 Bug fixes: - MM_Unix::find_perl() dont repeatedly stat the same path in a loop 7.11_01 Thu Nov 12 11:58:58 GMT 2015 Includes all the Changes noted for v7.06 and the following: Bug fixes: - Use of intermediate files to store META.* and *.ppd files has been reverted - No longer repeatedly attempt to load CPAN::Meta if it is now available - Made MM_VMS::oneline build continuation lines properly
36 lines
1.6 KiB
Text
36 lines
1.6 KiB
Text
$NetBSD: patch-ab,v 1.13 2016/04/20 15:00:04 mef Exp $
|
|
|
|
Changes:
|
|
o More general adaptation for BSDs
|
|
o Install scripts in DESTINSTALLSITESCRIPT instead of DESTINSTALLSCRIPT
|
|
o Ignore installed packlist when creating new packlist.
|
|
|
|
--- lib/ExtUtils/MM_Unix.pm.orig 2016-04-19 20:24:21.000000000 +0900
|
|
+++ lib/ExtUtils/MM_Unix.pm 2016-04-20 21:57:39.000000000 +0900
|
|
@@ -1022,7 +1022,7 @@ sub xs_make_dynamic_lib {
|
|
push(@m," \$(RM_F) \$\@\n");
|
|
|
|
my $libs = '$(LDLOADLIBS)';
|
|
- if (($Is{NetBSD} || $Is{Interix} || $Is{Android}) && $Config{'useshrplib'} eq 'true') {
|
|
+ if (( $Is{BSD} || $Is{Interix} || $Is{Android}) && $Config{'useshrplib'} eq 'true') {
|
|
# Use nothing on static perl platforms, and to the flags needed
|
|
# to link against the shared libperl library on shared perl
|
|
# platforms. We peek at lddlflags to see if we need -Wl,-R
|
|
@@ -2235,7 +2235,7 @@ q{ read "}.$self->catfile('$(PERL_ARCHL
|
|
q{ "$(INST_LIB)" "$(DESTINSTALLPRIVLIB)" \
|
|
"$(INST_ARCHLIB)" "$(DESTINSTALLARCHLIB)" \
|
|
"$(INST_BIN)" "$(DESTINSTALLBIN)" \
|
|
- "$(INST_SCRIPT)" "$(DESTINSTALLSCRIPT)" \
|
|
+ "$(INST_SCRIPT)" "$(DESTINSTALLSITESCRIPT)" \
|
|
"$(INST_MAN1DIR)" "$(DESTINSTALLMAN1DIR)" \
|
|
"$(INST_MAN3DIR)" "$(DESTINSTALLMAN3DIR)"
|
|
$(NOECHO) $(WARN_IF_OLD_PACKLIST) \
|
|
@@ -2246,7 +2246,7 @@ pure_site_install :: all
|
|
$(NOECHO) $(MOD_INSTALL) \
|
|
};
|
|
push @m,
|
|
-q{ read "}.$self->catfile('$(SITEARCHEXP)','auto','$(FULLEXT)','.packlist').q{" \
|
|
+q{ read "" \
|
|
write "}.$self->catfile('$(DESTINSTALLSITEARCH)','auto','$(FULLEXT)','.packlist').q{" \
|
|
} unless $self->{NO_PACKLIST};
|
|
|