From: Nicholas Clark Date: Wed, 11 Apr 2007 08:02:43 +0000 (+0000) Subject: If the test programs for strtoul(), strtoull() or strtouq() fail, don't X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=9597a80ff342f48dfe496f06722f3cd183dad1b6;p=p5sagit%2Fp5-mst-13.2.git If the test programs for strtoul(), strtoull() or strtouq() fail, don't assume that the functions work. p4raw-id: //depot/perl@30904 --- diff --git a/Configure b/Configure index b317e44..70351f4 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