libnih: SIGCLD is not portable, use SIGCHLD instead.

This commit is contained in:
Juan RP 2015-05-28 07:45:09 +02:00
parent 53716bd9c7
commit 049c70eb01
2 changed files with 12 additions and 1 deletions

View file

@ -0,0 +1,11 @@
--- nih/signal.c.orig 2015-05-28 07:43:36.187018255 +0200
+++ nih/signal.c 2015-05-28 07:44:15.098421531 +0200
@@ -87,7 +87,7 @@ static const SignalName signal_names[] =
{ SIGSTKFLT, "STKFLT" },
#endif
{ SIGCHLD, "CHLD" },
- { SIGCLD, "CLD" },
+ { SIGCHLD, "CLD" },
{ SIGCONT, "CONT" },
{ SIGSTOP, "STOP" },
{ SIGTSTP, "TSTP" },

View file

@ -1,7 +1,7 @@
# Template file for 'libnih'
pkgname=libnih
version=1.0.3
revision=2
revision=3
build_style=gnu-configure
configure_args="--enable-threading"
hostmakedepends="automake libtool gettext-devel pkg-config"