openntpd: unbreak musl build: WAIT_ANY -> -1 in waitpid(2).

This commit is contained in:
Juan RP 2015-05-09 18:59:32 +02:00
parent f312b954e0
commit a0918c133f
2 changed files with 12 additions and 1 deletions

View File

@ -0,0 +1,11 @@
--- src/constraint.c.orig 2015-05-09 18:58:56.300462567 +0200
+++ src/constraint.c 2015-05-09 18:59:02.979453950 +0200
@@ -257,7 +257,7 @@ constraint_check_child(void)
pid_t pid;
do {
- pid = waitpid(WAIT_ANY, &status, WNOHANG);
+ pid = waitpid(-1, &status, WNOHANG);
if (pid <= 0)
continue;

View File

@ -1,7 +1,7 @@
# Template file for 'openntpd'
pkgname=openntpd
version=5.7p4
revision=2
revision=3
build_pie=yes
build_style=gnu-configure
configure_args="--with-privsep-user=$pkgname --with-cacert=/etc/ssl/certs.pem"