summaryrefslogtreecommitdiff
path: root/reentr.pl
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2002-04-14 14:26:14 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2002-04-14 14:26:14 +0000
commitd63eadf0e1c600c12cc482df8bc1d1727a71393d (patch)
treea97d66c63efe63fe99e8465fa58c6107e478af00 /reentr.pl
parenteb7113c4ef89803d6f551b53ba7d614b7fabe48d (diff)
downloadperl-d63eadf0e1c600c12cc482df8bc1d1727a71393d.tar.gz
Simplify the _r probing code by adding the i_systime
only for the APIs where it matters. p4raw-id: //depot/perl@15910
Diffstat (limited to 'reentr.pl')
-rw-r--r--reentr.pl47
1 files changed, 25 insertions, 22 deletions
diff --git a/reentr.pl b/reentr.pl
index 6b1f21c147..13c0c2e479 100644
--- a/reentr.pl
+++ b/reentr.pl
@@ -169,7 +169,8 @@ while (<DATA>) {
$prereqh = "$h.h";
$prereqsh = "\$$prereqs $prereqh";
}
- print <<EOF if $opts{U};
+ if ($opts{U}) {
+ print <<EOF;
?RCS: \$Id: d_${f}_r.U,v $
?RCS:
?RCS: Copyright (c) 2002 Jarkko Hietaniemi
@@ -207,12 +208,13 @@ set ${f}_r d_${f}_r
eval \$inlibc
case "\$d_${f}_r" in
"\$define")
- hdrs="\$i_systypes sys/types.h define stdio.h $prereqsh"
- case "$h" in
- time)
- hdrs="\$hdrs \$i_systime sys/time.h"
- ;;
- esac
+EOF
+ my $hdrs = "\$i_systypes sys/types.h define stdio.h $prereqsh";
+ if ($h eq 'time') {
+ $hdrs .= " \$i_systime sys/time.h";
+ }
+ print <<EOF;
+ hdrs="$hdrs"
case "\$d_${f}_r_proto:\$usethreads" in
":define") d_${f}_r_proto=define
set d_${f}_r_proto ${f}_r \$hdrs
@@ -222,26 +224,27 @@ case "\$d_${f}_r" in
case "\$d_${f}_r_proto" in
define)
EOF
- for my $p (@p) {
- my ($r, $a) = ($p =~ /^(.)_(.+)/);
- my $v = join(", ", map { $m{$_} } split '', $a);
- if ($opts{U}) {
- print <<EOF ;
+ }
+ for my $p (@p) {
+ my ($r, $a) = ($p =~ /^(.)_(.+)/);
+ my $v = join(", ", map { $m{$_} } split '', $a);
+ if ($opts{U}) {
+ print <<EOF ;
case "\$${f}_r_proto" in
''|0) try='$m{$r} ${f}_r($v);'
./protochk "extern \$try" \$hdrs && ${f}_r_proto=$p ;;
esac
EOF
- }
- $seenh{$f}->{$p}++;
- push @{$seena{$f}}, $p;
- $seenp{$p}++;
- $seent{$f} = $t;
- $seens{$f} = $m{S};
- $seend{$f} = $m{D};
- }
- if ($opts{U}) {
- print <<EOF;
+ }
+ $seenh{$f}->{$p}++;
+ push @{$seena{$f}}, $p;
+ $seenp{$p}++;
+ $seent{$f} = $t;
+ $seens{$f} = $m{S};
+ $seend{$f} = $m{D};
+ }
+ if ($opts{U}) {
+ print <<EOF;
case "\$${f}_r_proto" in
''|0) d_${f}_r=undef
${f}_r_proto=0