]> code.delx.au - pulseaudio/commitdiff
undo r1111 in some way: include sys/socket.h and sys/un.h but wrap it in #ifdef
authorLennart Poettering <lennart@poettering.net>
Thu, 20 Jul 2006 00:52:44 +0000 (00:52 +0000)
committerLennart Poettering <lennart@poettering.net>
Thu, 20 Jul 2006 00:52:44 +0000 (00:52 +0000)
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

src/pulsecore/creds.h

index a2acae04bd0bd27bf96f98a6e4449b9f1839fa50..d92ce5989313daf02ad5d5fcf6178c24ce9fa177 100644 (file)
 
 #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;
 
 #if defined(SCM_CREDENTIALS)