diff options
author | Nicholas Clark <nick@ccl4.org> | 2007-04-11 08:02:43 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2007-04-11 08:02:43 +0000 |
commit | 9597a80ff342f48dfe496f06722f3cd183dad1b6 (patch) | |
tree | 8a94284f5cb0e89d11908f1caf920f977b6880f9 /Configure | |
parent | dbdce04c0d799286b0e4da51c403118fec194d47 (diff) | |
download | perl-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-x | Configure | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -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 |