Update of /cvsroot/perl-win32-gui/Win32-GUI
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2869
Modified Files:
CHANGELOG Makefile.PL
Log Message:
Fix 'make ppm' for perl 5.10
Index: Makefile.PL
===================================================================
RCS file: /cvsroot/perl-win32-gui/Win32-GUI/Makefile.PL,v
retrieving revision 1.29
retrieving revision 1.30
diff -C2 -d -r1.29 -r1.30
*** Makefile.PL 1 Feb 2008 14:25:28 -0000 1.29
--- Makefile.PL 2 Feb 2008 12:50:23 -0000 1.30
***************
*** 65,68 ****
--- 65,75 ----
}
else {
+ print STDERR <<"__OSUNSUPPORTED";
+
+ Building on OS '$^O' is unsupported. Only 'MSWin32' and 'Cygwin' are valid
+ build environments.
+
+ __OSUNSUPPORTED
+
# Attempt to stop CPAN Testers reporting build failures
# for OS's like linux!
***************
*** 84,88 ****
print "$_\t($allowed{$_})\n" for (keys %allowed);
! exit(1);
}
--- 91,95 ----
print "$_\t($allowed{$_})\n" for (keys %allowed);
! die("Build Environment unsupported\n");
}
***************
*** 97,101 ****
print "$_\t($allowed{$_})\n" for (keys %allowed);
! exit(1);
}
--- 104,108 ----
print "$_\t($allowed{$_})\n" for (keys %allowed);
! die("Build Environment unsupported\n");
}
***************
*** 217,220 ****
--- 224,229 ----
File::Find::find(sub { push @demos, $File::Find::name if $File::Find::name =~ /\.(pl|bmp|ico|cur)$/ }, 'samples');
+ (my $dist_ver = $Config{version}) =~ s/^(\d+\.\d+).*$/$1/;
+
my %MakefileArgs = (
NAME => 'Win32::GUI',
***************
*** 223,227 ****
PREREQ_PM => {
'Test::More' => 0,
- 'File::Spec' => 0.9, # Needed on perl 5.8.0 as 0.82 is broken
},
PM => {
--- 232,235 ----
***************
*** 246,250 ****
macro => {
BUILD_TOOLS => './build_tools',
! PPMDISTVNAME => '$(DISTVNAME)-PPM-' . substr($Config{version},0,3),
INST_DEMODIR => '$(INST_LIBDIR)/GUI/demos',
DEMOS => "@demos",
--- 254,258 ----
macro => {
BUILD_TOOLS => './build_tools',
! PPMDISTVNAME => '$(DISTVNAME)-PPM-' . $dist_ver,
INST_DEMODIR => '$(INST_LIBDIR)/GUI/demos',
DEMOS => "@demos",
Index: CHANGELOG
===================================================================
RCS file: /cvsroot/perl-win32-gui/Win32-GUI/CHANGELOG,v
retrieving revision 1.135
retrieving revision 1.136
diff -C2 -d -r1.135 -r1.136
*** CHANGELOG 1 Feb 2008 14:25:28 -0000 1.135
--- CHANGELOG 2 Feb 2008 12:50:23 -0000 1.136
***************
*** 6,26 ****
Win32-GUI ChangeLog
===================
+ [Robert May] : 1 February 2008 - Sample handling
- Makefile.PL - change how we handle build of the samples
- Win32-GUI ChangeLog
- ===================
+ [Robert May] : 1 February 2008 - Prepare for 1.06 release
- Increment version numbers of changed modules. Set Win32::GUI version
to 1.05_90 in preparation for RC1
- Win32-GUI ChangeLog
- ===================
+ [Robert May] : 1 February 2008 - Fix compile with MinGW
- Update most Makefile.PLs, add build_tools/MMUtil.pm and update
MANIFEST to add -mms-bitfields support for mingw-gcc.
- Win32-GUI ChangeLog
- ===================
+ [Robert May] : 31 January 2008 - Misc Fixes
- Makefile.PL - another attempt to prevent spurous CPAN tester reports
--- 6,24 ----
Win32-GUI ChangeLog
===================
+ + [Robert May] : 2 February 2008 - Fix make PPM on 5.10
+ - Makefile.PL - change how we generate the version for PPM to fix for 5.10
+ and remove dependency on File::Spec 0.9, as is messes PPM installs
+
+ [Robert May] : 1 February 2008 - Sample handling
- Makefile.PL - change how we handle build of the samples
+ [Robert May] : 1 February 2008 - Prepare for 1.06 release
- Increment version numbers of changed modules. Set Win32::GUI version
to 1.05_90 in preparation for RC1
+ [Robert May] : 1 February 2008 - Fix compile with MinGW
- Update most Makefile.PLs, add build_tools/MMUtil.pm and update
MANIFEST to add -mms-bitfields support for mingw-gcc.
+ [Robert May] : 31 January 2008 - Misc Fixes
- Makefile.PL - another attempt to prevent spurous CPAN tester reports
|