Files
pkgsrc-ng/chat/prosody/patches/patch-ad
2013-09-26 17:14:40 +02:00

18 lines
337 B
Plaintext

$NetBSD: patch-ad,v 1.2 2011/06/06 14:41:48 schnoebe Exp $
Include <sys/param.h> when on UNIX
--- util-src/signal.c.orig 2011-06-03 15:31:34.000000000 +0000
+++ util-src/signal.c
@@ -29,6 +29,10 @@
#include <signal.h>
#include <stdlib.h>
+#ifdef __unix__
+#include <sys/param.h>
+#endif
+
#include "lua.h"
#include "lauxlib.h"