diff options
author | Marcus Holland-Moritz <mhx-perl@gmx.net> | 2004-04-29 17:38:32 +0000 |
---|---|---|
committer | Marcus Holland-Moritz <mhx-perl@gmx.net> | 2004-04-29 17:38:32 +0000 |
commit | 013ad2b3dc942a88b74694d57893e4e37ffaeb82 (patch) | |
tree | e23748be6644d261e89ba0cfbf04fd5b3815f3e0 /hints/openbsd.sh | |
parent | ff56af3d9a7a9bb968f22d62fb2c82cc10315fa0 (diff) | |
download | perl-013ad2b3dc942a88b74694d57893e4e37ffaeb82.tar.gz |
The openbsd 64-bit test should use $uquadtype rather
than hardcoding unsigned long long.
p4raw-id: //depot/perl@22752
Diffstat (limited to 'hints/openbsd.sh')
-rw-r--r-- | hints/openbsd.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/hints/openbsd.sh b/hints/openbsd.sh index b7f4d794e8..0d9f19d1c2 100644 --- a/hints/openbsd.sh +++ b/hints/openbsd.sh @@ -134,7 +134,7 @@ $define|true|[yY]*) echo "Checking if your C library has broken 64-bit functions..." >&4 $cat >check.c <<EOCP #include <stdio.h> -typedef unsigned long long myULL; +typedef $uquadtype myULL; int main (void) { struct { @@ -174,7 +174,9 @@ EOCP *** You have a C library with broken 64-bit functions. *** 64-bit support does not work reliably in this configuration. +*** Please rerun Configure without -Duse64bitint and/or -Dusemorebits. *** Cannot continue, aborting. + EOM exit 1 ;; |