pkgsrc/chat/prosody/patches/patch-ad
fhajny a87a1cee13 Update prosody to 0.9.3.
Changes in 0.9.3:
- A config file passed as command line argument is no longer forgotten
  when config is reloaded
- MUC: Allow admins to always bypass restrict_room_creation
- Strip trailing '.' when normalizing hostnames
- HTTP: Prevent silent connection failures
- Components: Allow easier overriding of component authentication by plugins
- Components: Enable TCP keepalives
- Migrator: Better error reporting and improved robustness
- S2S: Include IP in log messages, if hostname is unavailable
- TLS: Log error when initialization fails

Changes in 0.9.2:
- Debian/Ubuntu packages fixed to always generate per-system certs
- TLS: Improved cipher string, and use Prosody's preferred ciphers
- MUC: Fix for Spark clients not displaying room lists
2014-03-10 13:01:17 +00:00

17 lines
335 B
Text

$NetBSD: patch-ad,v 1.3 2014/03/10 13:01:17 fhajny Exp $
Include <sys/param.h> when on UNIX
--- util-src/signal.c.orig 2014-01-12 11:41:40.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"