diff options
author | Daniel S. Lewart <lewart@uiuc.edu> | 1999-09-06 16:18:12 -0500 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 1999-09-07 07:36:17 +0000 |
commit | 716026f96c8d48603497e3610163f08d8c9aeae6 (patch) | |
tree | 9569828764878647f95b4fe1a3de2027517a1a4f /hints/hpux.sh | |
parent | 6ca3630670af1127da43d67cce45a7333e771bbd (diff) | |
download | perl-716026f96c8d48603497e3610163f08d8c9aeae6.tar.gz |
HP-UX 10.20 and gcc 2.8.1 break UINT32_MAX.
To: perl5-porters@perl.org
Subject: [ID 19990906.007] Not OK: perl 5.00561 on PA-RISC1.1 10.20
Message-Id: <199909070218.VAA29232@www.cvm.uiuc.edu>
p4raw-id: //depot/cfgperl@4096
Diffstat (limited to 'hints/hpux.sh')
-rw-r--r-- | hints/hpux.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/hints/hpux.sh b/hints/hpux.sh index eb9b6856e7..8b2023aa81 100644 --- a/hints/hpux.sh +++ b/hints/hpux.sh @@ -192,6 +192,11 @@ case "$ldlibpthname" in '') ldlibpthname=SHLIB_PATH ;; esac +# HP-UX 10.20 and gcc 2.8.1 break UINT32_MAX. +case "$cc" in +*gcc*) ccflags="$ccflags -DUINT32_MAX_BROKEN" ;; +esac + # Date: Fri, 6 Sep 96 23:15:31 CDT # From: "Daniel S. Lewart" <d-lewart@uiuc.edu> # I looked through the gcc.info and found this: |