summaryrefslogtreecommitdiff
path: root/hints/openbsd.sh
diff options
context:
space:
mode:
authorMarcus Holland-Moritz <mhx-perl@gmx.net>2004-04-29 17:38:32 +0000
committerMarcus Holland-Moritz <mhx-perl@gmx.net>2004-04-29 17:38:32 +0000
commit013ad2b3dc942a88b74694d57893e4e37ffaeb82 (patch)
treee23748be6644d261e89ba0cfbf04fd5b3815f3e0 /hints/openbsd.sh
parentff56af3d9a7a9bb968f22d62fb2c82cc10315fa0 (diff)
downloadperl-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.sh4
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
;;