summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2006-07-20 00:52:44 +0000
committerLennart Poettering <lennart@poettering.net>2006-07-20 00:52:44 +0000
commit0ff247db7303d7c452d62bcfc1291075f297dcbd (patch)
treedf8fdd721584c0380a7b2b88a22b7af30cfc9d89
parent246e30aec74c76fd7db53f4c537a4c90b87d5ea4 (diff)
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
-rw-r--r--src/pulsecore/creds.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/pulsecore/creds.h b/src/pulsecore/creds.h
index a2acae04..d92ce598 100644
--- a/src/pulsecore/creds.h
+++ b/src/pulsecore/creds.h
@@ -24,6 +24,16 @@
#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)