summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRodrigo Saboya <saboya@users.noreply.github.com>2017-01-16 15:48:08 -0200
committerLars Wendler <polynomial-c@gentoo.org>2017-01-17 18:38:57 +0100
commit5993df809e309937b59d1a545fe7bc9f264b5711 (patch)
treebd091e0124aa9c8461b59d31d088103653f2f6fb /app-admin/sysklogd/files
parentdev-php/ffmpeg-php: Remove package wrt bug 602164 (diff)
downloadgentoo-5993df809e309937b59d1a545fe7bc9f264b5711.tar.gz
gentoo-5993df809e309937b59d1a545fe7bc9f264b5711.tar.bz2
gentoo-5993df809e309937b59d1a545fe7bc9f264b5711.zip
app-admin/sysklogd: Fixing build issue with Glibc 2.24. bug #604232
Closes: https://github.com/gentoo/gentoo/pull/3508
Diffstat (limited to 'app-admin/sysklogd/files')
-rw-r--r--app-admin/sysklogd/files/sysklogd-1.5-glibc-2.24.patch11
1 files changed, 11 insertions, 0 deletions
diff --git a/app-admin/sysklogd/files/sysklogd-1.5-glibc-2.24.patch b/app-admin/sysklogd/files/sysklogd-1.5-glibc-2.24.patch
new file mode 100644
index 000000000000..fcddb7574590
--- /dev/null
+++ b/app-admin/sysklogd/files/sysklogd-1.5-glibc-2.24.patch
@@ -0,0 +1,11 @@
+--- sysklogd-1.5.1/syslogd.c
++++ sysklogd-1.5.1/syslogd.c
+@@ -2094,7 +2094,7 @@
+ (void) signal(SIGCHLD, reapchild); /* reset signal handler -ASP */
+ wait ((int *)0);
+ #else
+- union wait status;
++ int status;
+
+ while (wait3(&status, WNOHANG, (struct rusage *) NULL) > 0)
+ ;