undo r1111 in some way: include sys/socket.h and sys/un.h but wrap it in #ifdef

HAVE_xxx_H. This should be safe because config.h should be the first included
header in all .c files and creds.h is never included by any external tools



git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@1115 fefdeb5f-60dc-0310-8127-8f9354f1896f
This commit is contained in:
Lennart Poettering 2006-07-20 00:52:44 +00:00
parent 246e30aec7
commit 0ff247db73

View file

@ -24,6 +24,16 @@
#include <sys/types.h> #include <sys/types.h>
/* config.h must be included before this file */
#ifdef HAVE_SYS_SOCKET_H
#include <sys/socket.h>
#endif
#ifdef HAVE_SYS_UN_H
#include <sys/un.h>
#endif
typedef struct pa_creds pa_creds; typedef struct pa_creds pa_creds;
#if defined(SCM_CREDENTIALS) #if defined(SCM_CREDENTIALS)