summaryrefslogtreecommitdiff
path: root/Configure
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>1999-08-02 14:52:40 +0000
committerJarkko Hietaniemi <jhi@iki.fi>1999-08-02 14:52:40 +0000
commit6e58d65cdee942efacbebb436841cff48d4c4061 (patch)
treeeb6a19539f37a865307503d47d2ea84fc45e1be3 /Configure
parentbd4fc1f042e08965c82768f3b6911e13617c4bb2 (diff)
downloadperl-6e58d65cdee942efacbebb436841cff48d4c4061.tar.gz
AIX long long probing requires LL suffix for
the ll constant. The suffix doesn't seem to bother other ll platforms. p4raw-id: //depot/cfgperl@3891
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure4
1 files changed, 2 insertions, 2 deletions
diff --git a/Configure b/Configure
index 1e17dd4cb1..bd158a4232 100755
--- a/Configure
+++ b/Configure
@@ -20,7 +20,7 @@
# $Id: Head.U,v 3.0.1.9 1997/02/28 15:02:09 ram Exp $
#
-# Generated on Mon Aug 2 15:32:21 EET DST 1999 [metaconfig 3.0 PL70]
+# Generated on Mon Aug 2 17:42:55 EET DST 1999 [metaconfig 3.0 PL70]
# (with additional metaconfig patches by perlbug@perl.com)
cat >/tmp/c1$$ <<EOF
@@ -6789,7 +6789,7 @@ if $test X"$sPRId64" = X -a X"$d_longlong" = X"$define" -a X"$longlongsize" = X8
#include <sys/types.h>
#include <stdio.h>
int main() {
- long long q = 12345678901;
+ long long q = 12345678901LL; /* AIX cc requires the LL prefix. */
printf("%lld\n", q);
}
EOCP