diff options
author | 2007-07-28 22:40:26 +0000 | |
---|---|---|
committer | 2007-07-28 22:40:26 +0000 | |
commit | a620ab74886ae017f6913e84ebaf1a20aca85b1b (patch) | |
tree | b5f32c89afcdade199c3bcca4b8ef247b01eecde /x11-wm/icewm/files | |
parent | clean out unneeded ebuilds (diff) | |
download | gentoo-2-a620ab74886ae017f6913e84ebaf1a20aca85b1b.tar.gz gentoo-2-a620ab74886ae017f6913e84ebaf1a20aca85b1b.tar.bz2 gentoo-2-a620ab74886ae017f6913e84ebaf1a20aca85b1b.zip |
Add patch to build with uclibc
(Portage version: 2.1.2.9)
Diffstat (limited to 'x11-wm/icewm/files')
-rw-r--r-- | x11-wm/icewm/files/digest-icewm-1.2.30-r1 | 3 | ||||
-rw-r--r-- | x11-wm/icewm/files/icewm-uclibc.patch | 31 |
2 files changed, 34 insertions, 0 deletions
diff --git a/x11-wm/icewm/files/digest-icewm-1.2.30-r1 b/x11-wm/icewm/files/digest-icewm-1.2.30-r1 new file mode 100644 index 000000000000..191b31a08926 --- /dev/null +++ b/x11-wm/icewm/files/digest-icewm-1.2.30-r1 @@ -0,0 +1,3 @@ +MD5 8a302c5e629bb81d87cc02004a694ece icewm-1.2.30.tar.gz 809353 +RMD160 6848ac22f6562a8e0bb43def621b26f66bef56a7 icewm-1.2.30.tar.gz 809353 +SHA256 4b802cf77ecf09bc44345f8fba3c11fd08dca0e8272e628b447ecf7289637e1d icewm-1.2.30.tar.gz 809353 diff --git a/x11-wm/icewm/files/icewm-uclibc.patch b/x11-wm/icewm/files/icewm-uclibc.patch new file mode 100644 index 000000000000..e7b273a6c397 --- /dev/null +++ b/x11-wm/icewm/files/icewm-uclibc.patch @@ -0,0 +1,31 @@ +--- orig/icewm-1.2.21/src/acpustatus.cc 2005-05-31 14:23:48 -0500 ++++ work/icewm-1.2.21/src/acpustatus.cc 2005-08-03 18:29:29 -0500 +@@ -25,17 +25,12 @@ + #include "sysdep.h" + #include "default.h" + +-#if defined(linux) +-//#include <linux/kernel.h> +-#include <sys/sysinfo.h> +-#endif + #if defined(sun) && defined(SVR4) + #include <sys/loadavg.h> + #endif + #ifdef HAVE_KSTAT_H + #include <sys/resource.h> + #include <kstat.h> +-#include <sys/sysinfo.h> + #endif + + #ifdef HAVE_SYS_PARAM_H +@@ -54,6 +49,10 @@ + #include <sched.h> + #endif + ++#if defined(linux) || defined(HAVE_KSTAT_H) ++#include <sys/sysinfo.h> ++#endif ++ + #include "intl.h" + + #if (defined(linux) || defined(HAVE_KSTAT_H)) || defined(HAVE_SYSCTL_CP_TIME) |