From 64ca94c91020626edf626a7e639e168dba9e7d74 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Mon, 6 Jul 2009 14:40:06 +0200 Subject: output/httpd: include sys/types.h On Mac OS X, the httpd plugin cannot be compiled, because OS X's system headers do nto include sys/types.h, although they use u_int32_t. --- NEWS | 2 ++ src/output/httpd_output_plugin.c | 1 + 2 files changed, 3 insertions(+) diff --git a/NEWS b/NEWS index 8c3d17862..8872c3c1f 100644 --- a/NEWS +++ b/NEWS @@ -1,4 +1,6 @@ ver 0.15.1 (2009/??/??) +* output: + - httpd: include sys/types.h (fixes Mac OS X) * commands: - don't resume playback when stopping during pause * database: fixed NULL pointer dereference after charset change diff --git a/src/output/httpd_output_plugin.c b/src/output/httpd_output_plugin.c index 02fa1cf17..edfc1063d 100644 --- a/src/output/httpd_output_plugin.c +++ b/src/output/httpd_output_plugin.c @@ -28,6 +28,7 @@ #include +#include #include #include #include -- cgit v1.2.3