diff options
author | Michael Krelin <hacker@klever.net> | 2007-09-30 20:49:49 +0000 |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2007-09-30 20:49:49 +0000 |
commit | e038f25a766aff2840a9ec63ede6b722cdaff865 (patch) | |
tree | 1151ae1b57cbd38d1c3e68fe4e9c82e538cb3789 | |
parent | 6009c3769647135923e1ce7b1c3617a8073df6ab (diff) |
procps: fixed build error, supposedly closing #3081.
I don't know why it worked before, do you?
-rw-r--r-- | packages/procps/procps-3.2.7/linux-limits.patch | 13 | ||||
-rw-r--r-- | packages/procps/procps_3.2.7.bb | 3 |
2 files changed, 15 insertions, 1 deletions
diff --git a/packages/procps/procps-3.2.7/linux-limits.patch b/packages/procps/procps-3.2.7/linux-limits.patch new file mode 100644 index 0000000000..dcd66163ad --- /dev/null +++ b/packages/procps/procps-3.2.7/linux-limits.patch @@ -0,0 +1,13 @@ +diff --git a/pwdx.c b/pwdx.c +index cb96a52..29ebce2 100644 +--- a/pwdx.c ++++ b/pwdx.c +@@ -13,7 +13,7 @@ + #include <stdlib.h> + #include <sys/types.h> + #include <regex.h> +-#include <limits.h> ++#include <linux/limits.h> + #include <unistd.h> + #include <errno.h> + diff --git a/packages/procps/procps_3.2.7.bb b/packages/procps/procps_3.2.7.bb index de7524b2cb..e6a6573635 100644 --- a/packages/procps/procps_3.2.7.bb +++ b/packages/procps/procps_3.2.7.bb @@ -3,7 +3,8 @@ require procps.inc PR = "r5" SRC_URI += "file://procmodule.patch;patch=1 \ - file://psmodule.patch;patch=1" + file://psmodule.patch;patch=1 \ + file://linux-limits.patch;patch=1" FILES = "${bindir}/top.${PN} ${base_bindir}/ps.${PN} ${bindir}/uptime.${PN} ${base_bindir}/kill.${PN} \ ${bindir}/free.${PN} ${bindir}/w ${bindir}/watch ${bindir}/pgrep ${bindir}/pmap ${bindir}/pwdx \ |