summaryrefslogtreecommitdiff
path: root/Configure
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2007-04-11 08:02:43 +0000
committerNicholas Clark <nick@ccl4.org>2007-04-11 08:02:43 +0000
commit9597a80ff342f48dfe496f06722f3cd183dad1b6 (patch)
tree8a94284f5cb0e89d11908f1caf920f977b6880f9 /Configure
parentdbdce04c0d799286b0e4da51c403118fec194d47 (diff)
downloadperl-9597a80ff342f48dfe496f06722f3cd183dad1b6.tar.gz
If the test programs for strtoul(), strtoull() or strtouq() fail, don't
assume that the functions work. p4raw-id: //depot/perl@30904
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure9
1 files changed, 9 insertions, 0 deletions
diff --git a/Configure b/Configure
index b317e44475..70351f4206 100755
--- a/Configure
+++ b/Configure
@@ -17660,6 +17660,9 @@ EOM
d_strtoul="$undef"
;;
esac
+ else
+ echo "(I can't seem to compile the test program--assuming it doesn't)"
+ d_strtoul="$undef"
fi
;;
esac
@@ -17714,6 +17717,9 @@ EOM
d_strtoull="$undef"
;;
esac
+ else
+ echo "(I can't seem to compile the test program--assuming it doesn't)"
+ d_strtoull="$undef"
fi
;;
esac
@@ -17766,6 +17772,9 @@ EOM
d_strtouq="$undef"
;;
esac
+ else
+ echo "(I can't seem to compile the test program--assuming it doesn't)"
+ d_strtouq="$undef"
fi
;;
esac