diff options
author | Patrik Weiskircher <patrik.weiskircher@icore.at> | 2009-05-10 19:54:36 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-05-10 21:15:53 +0200 |
commit | 7e678d2ba966e90c9c5b986446077861b923e3e9 (patch) | |
tree | e87d3e1738d0206a2ea152ccdc1d8f39ae2eb5d0 | |
parent | 3ee3375273fb6627ba885b9c5fd0e9eca16dc4fa (diff) | |
download | mpd-7e678d2ba966e90c9c5b986446077861b923e3e9.tar.gz mpd-7e678d2ba966e90c9c5b986446077861b923e3e9.tar.xz mpd-7e678d2ba966e90c9c5b986446077861b923e3e9.zip |
latest git, httpd_output_plugin compile fix, mac os x
Hello,
While compiling latest git I've received a compile error in the
httpd_output_plugin.
Small patch attached.
Patrik
Diffstat (limited to '')
-rw-r--r-- | src/output/httpd_output_plugin.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/output/httpd_output_plugin.c b/src/output/httpd_output_plugin.c index 6465b108c..02fa1cf17 100644 --- a/src/output/httpd_output_plugin.c +++ b/src/output/httpd_output_plugin.c @@ -33,6 +33,10 @@ #include <unistd.h> #include <errno.h> +#ifdef HAVE_OSX +#include <sys/types.h> +#endif + #undef G_LOG_DOMAIN #define G_LOG_DOMAIN "httpd_output" |