Skip to content

Commit

Permalink
- minor changes for older perl/ExtUtils::MM
Browse files Browse the repository at this point in the history
  • Loading branch information
Tony Cook committed Jan 13, 2006
1 parent 8866668 commit 5a7e62b
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
1 change: 1 addition & 0 deletions Changes
Expand Up @@ -1296,6 +1296,7 @@ Revision history for Perl extension Imager.
- constify the Imager API
- document Imager::Filter::Mandelbrot
- convert dynfilt/flines.c to Imager::Filter::Flines
- minor changes for older perl/ExtUtils::MM

=================================================================

Expand Down
10 changes: 6 additions & 4 deletions Makefile.PL
Expand Up @@ -163,6 +163,8 @@ exit;


sub MY::postamble {
my $self = shift;
my $perl = $self->{PERLRUN} ? '$(PERLRUN)' : '$(PERL)';
'
dyntest.$(MYEXTLIB) : dynfilt/Makefile
cd dynfilt && $(MAKE) $(PASTHRU)
Expand All @@ -174,11 +176,11 @@ imconfig.h : Makefile.PL
$(ECHO) "imconfig.h out-of-date with respect to $?"
$(PERLRUN) Makefile.PL
$(ECHO) "==> Your Makefile has been rebuilt - re-run your make command <=="
'.qq!
lib/Imager/APIRef.pm : \$(C_FILES) apidocs.perl
$perl apidocs.perl lib/Imager/APIRef.pm
lib/Imager/APIRef.pm : $(C_FILES) apidocs.perl
$(PERLRUN) apidocs.perl lib/Imager/APIRef.pm
';
!;

}

Expand Down
1 change: 1 addition & 0 deletions t/t66paste.t
@@ -1,5 +1,6 @@
#!perl -w
use strict;
use lib 't';
use Test::More tests => 15;

BEGIN { use_ok("Imager") }
Expand Down
1 change: 1 addition & 0 deletions t/t92samples.t
@@ -1,5 +1,6 @@
#!perl -w
# packaging test - make sure we included the samples in the MANIFEST <sigh>
use lib 't';
use Test::More;
use ExtUtils::Manifest qw(maniread);

Expand Down

0 comments on commit 5a7e62b

Please sign in to comment.