clfs-1.2
clfs-2.1
clfs-3.0.0-systemd
clfs-3.0.0-sysvinit
systemd
sysvinit
Last change
on this file since eec901a was 617118d, checked in by Jim Gifford <clfs@…>, 19 years ago |
r561@server (orig r559): root | 2005-06-05 02:38:49 -0700
Fixed Directory Structure
|
-
Property mode
set to
100644
|
File size:
834 bytes
|
Rev | Line | |
---|
[617118d] | 1 | Submitted By: Ryan Oliver <ryan.oliver@pha.com.au>
|
---|
| 2 | Date: 2005-02-04
|
---|
| 3 | Initial Package Version: 3.2.5
|
---|
| 4 | Upstream Status:
|
---|
| 5 | Origin: Jim Gifford, Ryan Oliver
|
---|
| 6 | Description: Fixes procps build for mips32 with glibc > 20041124
|
---|
| 7 | (changes in sysdeps/mips/sgidefs.h). Don't only test whether _ABIN32
|
---|
| 8 | is defined, also test that it matches _MIPS_SIM before setting KLONG.
|
---|
| 9 |
|
---|
| 10 | diff -uNr procps-3.2.5-orig/proc/procps.h procps-3.2.5/proc/procps.h
|
---|
| 11 | --- procps-3.2.5-orig/proc/procps.h 2004-08-20 15:40:13 -0700
|
---|
| 12 | +++ procps-3.2.5/proc/procps.h 2005-02-02 22:46:11 -0800
|
---|
| 13 | @@ -31,7 +31,7 @@
|
---|
| 14 | //
|
---|
| 15 | // Unknown: PA-RISC and zSeries
|
---|
| 16 | //
|
---|
| 17 | -#if defined(k64test) || defined(_ABIN32)
|
---|
| 18 | +#if defined(k64test) || (defined(_ABIN32) && _MIPS_SIM == _ABIN32)
|
---|
| 19 | #define KLONG long long // not typedef; want "unsigned KLONG" to work
|
---|
| 20 | #define KLF "L"
|
---|
| 21 | #define STRTOUKL strtoull
|
---|
Note:
See
TracBrowser
for help on using the repository browser.