23 lines
658 B
Plaintext
23 lines
658 B
Plaintext
--- lib/libxview/notify/ntfy.h.orig 1993-06-29 07:18:14.000000000 +0200
|
|
+++ lib/libxview/notify/ntfy.h 2003-12-30 01:31:13.000000000 +0100
|
|
@@ -22,6 +22,10 @@
|
|
#include <sys/rusage.h>
|
|
#endif
|
|
#include <sys/resource.h>
|
|
+#if (defined(BSD) && (BSD >= 199103))
|
|
+#include <sys/wait.h>
|
|
+#include <sys/signal.h>
|
|
+#endif
|
|
#include <xview/notify.h>
|
|
|
|
/*
|
|
@@ -149,7 +153,7 @@ typedef struct ntfy_condition {
|
|
*/
|
|
typedef struct ntfy_wait3_data {
|
|
int pid; /* Process waiting for */
|
|
-#ifndef SVR4
|
|
+#if !defined(SVR4) && !(defined(BSD) && (BSD >= 199103))
|
|
union wait status; /* Return value from wait3 */
|
|
#else SVR4
|
|
int status; /* Return value from wait3 */
|