2010-01-24 13:42:23 +01:00
|
|
|
$NetBSD: patch-aa,v 1.2 2010/01/24 12:42:23 leot1990 Exp $
|
2009-10-03 18:28:40 +02:00
|
|
|
|
|
|
|
According to wait(2) to use wait4() <sys/resource.h> and <sys/wait.h> should
|
|
|
|
be included.
|
|
|
|
|
2010-01-24 13:42:23 +01:00
|
|
|
--- src/ApvlvUtil.cpp.orig 2010-01-20 05:52:51.000000000 +0100
|
2009-10-03 18:28:40 +02:00
|
|
|
+++ src/ApvlvUtil.cpp
|
2010-01-24 13:42:23 +01:00
|
|
|
@@ -30,7 +30,8 @@
|
2009-10-03 18:28:40 +02:00
|
|
|
|
|
|
|
#include <stdlib.h>
|
2010-01-24 13:42:23 +01:00
|
|
|
#ifndef WIN32
|
2009-10-03 18:28:40 +02:00
|
|
|
-#include <wait.h>
|
|
|
|
+#include <sys/resource.h>
|
|
|
|
+#include <sys/wait.h>
|
2010-01-24 13:42:23 +01:00
|
|
|
#endif
|
2009-10-03 18:28:40 +02:00
|
|
|
#include <gtk/gtk.h>
|
|
|
|
|