diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2012-12-13 10:02:57 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2012-12-14 12:02:33 +0100 |
commit | 933ebedd200088600809a1149bb1670c58e25c62 (patch) | |
tree | 2badfb7330239ac0c1cdd6fea3157a4c11dddd86 /package/gettext/gettext-uclibc-sched_param-def.patch | |
parent | 4f3a4c96312e27ca82f6c26a0179536a11594b95 (diff) | |
download | buildroot-novena-933ebedd200088600809a1149bb1670c58e25c62.tar.gz buildroot-novena-933ebedd200088600809a1149bb1670c58e25c62.zip |
gettext: bump to version 0.18.1.1
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/gettext/gettext-uclibc-sched_param-def.patch')
-rw-r--r-- | package/gettext/gettext-uclibc-sched_param-def.patch | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/package/gettext/gettext-uclibc-sched_param-def.patch b/package/gettext/gettext-uclibc-sched_param-def.patch new file mode 100644 index 000000000..4e392780f --- /dev/null +++ b/package/gettext/gettext-uclibc-sched_param-def.patch @@ -0,0 +1,20 @@ +uclibc defines __GLIBC__ but it does not expose struct shed_param as much as glibc +and is not needed too per standard. gnulib attempts to use it but we have to account +for it because in this case uclibc does not behave like glibc. + +-Khem + +http://bugs.gentoo.org/336484 +http://bugs.gentoo.org/323377 + +--- gettext/gettext-tools/gnulib-lib/spawn.in.h ++++ gettext/gettext-tools/gnulib-lib/spawn.in.h +@@ -31,7 +31,7 @@ + + /* Get definitions of 'struct sched_param' and 'sigset_t'. + But avoid namespace pollution on glibc systems. */ +-#ifndef __GLIBC__ ++#if !defined __GLIBC__ || defined __UCLIBC__ + # include <sched.h> + # include <signal.h> + #endif |