summaryrefslogtreecommitdiff
path: root/Porting/bisect-runner.pl
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2011-10-08 00:17:36 +0200
committerNicholas Clark <nick@ccl4.org>2011-10-08 00:17:36 +0200
commitaf7c500f1fae390fe16b1457fc4bfe5d2fd4aa22 (patch)
treed61fc49c114f7dbfa06ca35dc8ca024bd8fd512c /Porting/bisect-runner.pl
parent61a9130e47c4757bccfe2496e1130f814aaec049 (diff)
downloadperl-af7c500f1fae390fe16b1457fc4bfe5d2fd4aa22.tar.gz
bisect-runner.pl now emulates -Dnoextensions if Configure doesn't provide it.
Diffstat (limited to 'Porting/bisect-runner.pl')
-rwxr-xr-xPorting/bisect-runner.pl50
1 files changed, 31 insertions, 19 deletions
diff --git a/Porting/bisect-runner.pl b/Porting/bisect-runner.pl
index e81cae0e74..1be252d98a 100755
--- a/Porting/bisect-runner.pl
+++ b/Porting/bisect-runner.pl
@@ -251,7 +251,7 @@ revision. The bisect run will find the first commit where it passes.
=item *
--Dusethreads
+-Dnoextensions=Encode
=item *
@@ -263,7 +263,9 @@ revision. The bisect run will find the first commit where it passes.
Arguments to pass to F<Configure>. Repeated C<-A> arguments are passed
through as is. C<-D> and C<-U> are processed in order, and override
-previous settings for the same parameter.
+previous settings for the same parameter. F<bisect-runner.pl> emulates
+C<-Dnoextensions> when F<Configure> itself does not provide it, as it's
+often very useful to be able to disable some XS extensions.
=item *
@@ -546,26 +548,18 @@ EOPATCH
}
}
-if ($major < 5 && extract_from_file('Configure',
- qr/^if test ! -t 0; then$/)) {
+if ($major < 8 && !extract_from_file('Configure',
+ qr/^\t\tif test ! -t 0; then$/)) {
# Before dfe9444ca7881e71, Configure would refuse to run if stdin was not a
# tty. With that commit, the tty requirement was dropped for -de and -dE
+ # Commit aaeb8e512e8e9e14 dropped the tty requirement for -S
# For those older versions, it's probably easiest if we simply remove the
# sanity test.
- apply_patch(<<'EOPATCH');
-diff --git a/Configure b/Configure
-index 0071a7c..8a61caa 100755
---- a/Configure
-+++ b/Configure
-@@ -93,7 +93,2 @@ esac
-
--: Sanity checks
--if test ! -t 0; then
-- echo "Say 'sh $me', not 'sh <$me'"
-- exit 1
--fi
-
-EOPATCH
+ edit_file('Configure', sub {
+ my $code = shift;
+ $code =~ s/test ! -t 0/test Perl = rules/;
+ return $code;
+ });
}
if ($major < 10 && extract_from_file('Configure', qr/^set malloc\.h i_malloc$/)) {
@@ -778,7 +772,7 @@ if ($options{'force-manifest'}) {
}
}
-my @ARGS = $target eq 'config.sh' ? '-dEs' : '-des';
+my @ARGS = '-dEs';
foreach my $key (sort keys %defines) {
my $val = $defines{$key};
if (ref $val) {
@@ -809,6 +803,24 @@ if (!$pid) {
waitpid $pid, 0
or die "wait for Configure, pid $pid failed: $!";
+# Emulate noextensions if Configure doesn't support it.
+if (-f 'config.sh') {
+ if ($major < 10 && $defines{noextensions}) {
+ edit_file('config.sh', sub {
+ my @lines = split /\n/, shift;
+ my @ext = split /\s+/, $defines{noextensions};
+ foreach (@lines) {
+ next unless /^extensions=/ || /^dynamic_ext/;
+ foreach my $ext (@ext) {
+ s/\b$ext( )?\b/$1/;
+ }
+ }
+ return join "\n", @lines;
+ });
+ }
+ system './Configure -S </dev/null' and die;
+}
+
if ($target =~ /config\.s?h/) {
match_and_exit($target) if $match && -f $target;
report_and_exit(!-f $target, 'could build', 'could not build', $target);