Make sure all socket headers are protected by ifdefs.

git-svn-id: file:///home/lennart/svn/public/pulseaudio/branches/ossman@399 fefdeb5f-60dc-0310-8127-8f9354f1896f
This commit is contained in:
Pierre Ossman 2006-01-05 21:15:09 +00:00
parent e28ce8c59f
commit 8f3c364b47
9 changed files with 65 additions and 20 deletions

View file

@ -27,9 +27,14 @@
#include <errno.h>
#include <stdio.h>
#include <assert.h>
#include <arpa/inet.h>
#include <unistd.h>
#ifdef HAVE_ARPA_INET_H
#include <arpa/inet.h>
#endif
#ifdef HAVE_NETINET_IN_H
#include <netinet/in.h>
#endif
#include "module.h"
#include "socket-server.h"