summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDiego Elio 'Flameeyes' Pettenò <flameeyes@gmail.com>2009-05-15 23:42:43 +0200
committerColin Guthrie <cguthrie@mandriva.org>2009-07-16 18:03:57 +0100
commita29c6f86e0853ba65013c029c3bd68b7eb65092f (patch)
tree4b94e5a77dd9c399453a8739016b7731ba9a3712
parentabf6dfbc625006f08fb30fef5814d0c7eb57e2ee (diff)
Add missing headers' include to build on FreeBSD 7.1.
-rw-r--r--src/modules/rtp/rtsp_client.c1
-rw-r--r--src/pulsecore/parseaddr.c2
2 files changed, 3 insertions, 0 deletions
diff --git a/src/modules/rtp/rtsp_client.c b/src/modules/rtp/rtsp_client.c
index 629328ad..cb037de6 100644
--- a/src/modules/rtp/rtsp_client.c
+++ b/src/modules/rtp/rtsp_client.c
@@ -30,6 +30,7 @@
#include <arpa/inet.h>
#include <unistd.h>
#include <sys/ioctl.h>
+#include <netinet/in.h>
#ifdef HAVE_SYS_FILIO_H
#include <sys/filio.h>
diff --git a/src/pulsecore/parseaddr.c b/src/pulsecore/parseaddr.c
index 5b531220..4ec33899 100644
--- a/src/pulsecore/parseaddr.c
+++ b/src/pulsecore/parseaddr.c
@@ -25,6 +25,8 @@
#include <string.h>
#include <stdlib.h>
+#include <arpa/inet.h>
+#include <sys/socket.h>
#include <pulse/xmalloc.h>
#include <pulse/util.h>