source:
scripts/patches/procps-3.2.5-fix_mips-1.patch@
76a1d35
Last change on this file since 76a1d35 was 7f65c0e, checked in by , 19 years ago | |
---|---|
|
|
File size: 834 bytes |
-
proc/procps.h
Submitted By: Ryan Oliver <ryan.oliver@pha.com.au> Date: 2005-02-04 Initial Package Version: 3.2.5 Upstream Status: Origin: Jim Gifford, Ryan Oliver Description: Fixes procps build for mips32 with glibc > 20041124 (changes in sysdeps/mips/sgidefs.h). Don't only test whether _ABIN32 is defined, also test that it matches _MIPS_SIM before setting KLONG. diff -uNr procps-3.2.5-orig/proc/procps.h procps-3.2.5/proc/procps.h
old new 31 31 // 32 32 // Unknown: PA-RISC and zSeries 33 33 // 34 #if defined(k64test) || defined(_ABIN32)34 #if defined(k64test) || (defined(_ABIN32) && _MIPS_SIM == _ABIN32) 35 35 #define KLONG long long // not typedef; want "unsigned KLONG" to work 36 36 #define KLF "L" 37 37 #define STRTOUKL strtoull
Note:
See TracBrowser
for help on using the repository browser.