From: Marcus Holland-Moritz <mhx-perl@gmx.net>
Date: Thu, 29 Apr 2004 17:38:32 +0000 (+0000)
Subject: The openbsd 64-bit test should use $uquadtype rather
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=013ad2b3dc942a88b74694d57893e4e37ffaeb82;p=p5sagit%2Fp5-mst-13.2.git

The openbsd 64-bit test should use $uquadtype rather
than hardcoding unsigned long long.

p4raw-id: //depot/perl@22752
---

diff --git a/hints/openbsd.sh b/hints/openbsd.sh
index b7f4d79..0d9f19d 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
 		;;