summaryrefslogtreecommitdiff
path: root/Configure
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2003-06-13 12:00:06 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2003-06-13 12:00:06 +0000
commit88cf0b85d17739fdbeaecfb7daffd6e2e8cf92a9 (patch)
treeac0875497bcc0caadfeeceb0e34185e1dd8e2670 /Configure
parente85b91f4ef1ea8b91be23d5814d9e629f7fd72f0 (diff)
downloadperl-88cf0b85d17739fdbeaecfb7daffd6e2e8cf92a9.tar.gz
Even more tweakage on symbol scanning from Alan Burlison.
p4raw-id: //depot/perl@19760
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure6
1 files changed, 3 insertions, 3 deletions
diff --git a/Configure b/Configure
index 28b239ecd8..a15eeb76a9 100755
--- a/Configure
+++ b/Configure
@@ -20,7 +20,7 @@
# $Id: Head.U,v 3.0.1.9 1997/02/28 15:02:09 ram Exp $
#
-# Generated on Wed Jun 11 22:38:54 EET DST 2003 [metaconfig 3.0 PL70]
+# Generated on Fri Jun 13 16:12:49 EET DST 2003 [metaconfig 3.0 PL70]
# (with additional metaconfig patches by perlbug@perl.org)
cat >c1$$ <<EOF
@@ -7373,14 +7373,14 @@ yes)
if $contains $tlook $tf >/dev/null 2>&1; then
tval=true;
elif $test "$mistrustnm" = compile -o "$mistrustnm" = run; then
- echo "int main() { extern void *$1$tdc; return(&$1$tc ? 0 : 1); }" > try.c;
+ echo "int main() { extern void *$1$tdc; if (&$1$tc) return(0); else return(1); }" > try.c;
$cc -o try $optimize $ccflags $ldflags try.c >/dev/null 2>&1 $libs && tval=true;
$test "$mistrustnm" = run -a -x try && { $run ./try >/dev/null 2>&1 || tval=false; };
$rm -f try try.c core;
fi;
else
echo "#include <stdio.h>" > try.c;
- echo "int main() { extern void *$1$tdc; return(&$1$tc ? 0 : 1); }" > try.c;
+ echo "int main() { extern void *$1$tdc; if(&$1$tc) return(0); else return(1); }" > try.c;
$cc -o try $optimize $ccflags $ldflags try.c $libs >/dev/null 2>&1 && tval=true;
$rm -f try try.c;
fi;