From fe0496b9253e88edaeae0264e2f55168b1a33de1 Mon Sep 17 00:00:00 2001 From: Steve Peters Date: Thu, 29 Sep 2005 18:04:29 +0000 Subject: [PATCH 1/1] With XSLoader on CPAN now, add XSLoader as a prerequisite in Makefile.PL if the compatible version is less than 5.006 (the first version with XSLoader). p4raw-id: //depot/perl@25662 --- utils/h2xs.PL | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/utils/h2xs.PL b/utils/h2xs.PL index 19452de..6eaa97e 100644 --- a/utils/h2xs.PL +++ b/utils/h2xs.PL @@ -1883,15 +1883,16 @@ EOP warn "Writing $ext$modpname/Makefile.PL\n"; open(PL, ">Makefile.PL") || die "Can't create $ext$modpname/Makefile.PL: $!\n"; -my $prereq_pm; +my $prereq_pm = ''; if ( $compat_version < 5.00702 and $new_test ) { - $prereq_pm = q%'Test::More' => 0%; + $prereq_pm .= q%'Test::More' => 0, %; } -else + +if ( $compat_version < 5.00600 and !$opt_X) { - $prereq_pm = ''; + $prereq_pm .= q%'XSLoader' => 0, %; } print PL <<"END"; -- 1.8.3.1