diff options
author | Lennart Poettering <lennart@poettering.net> | 2007-09-11 00:56:21 +0000 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2007-09-11 00:56:21 +0000 |
commit | 6ac66e453f9c2007e9b1c6f3776c55eca0cd9140 (patch) | |
tree | a8831e559cce74b4813cae9d7f5fa39c8d887264 | |
parent | e2e2ce79e2697ecbd36e2cf00249dc8c59af232d (diff) |
add missing config.h includes
git-svn-id: file:///home/lennart/svn/public/pulseaudio/branches/lennart@1800 fefdeb5f-60dc-0310-8127-8f9354f1896f
-rw-r--r-- | src/pulsecore/authkey-prop.c | 4 | ||||
-rw-r--r-- | src/pulsecore/props.c | 4 | ||||
-rw-r--r-- | src/pulsecore/x11wrap.c | 4 |
3 files changed, 12 insertions, 0 deletions
diff --git a/src/pulsecore/authkey-prop.c b/src/pulsecore/authkey-prop.c index 3b8304b2..146d7ca0 100644 --- a/src/pulsecore/authkey-prop.c +++ b/src/pulsecore/authkey-prop.c @@ -21,6 +21,10 @@ USA. ***/ +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif + #include <assert.h> #include <string.h> diff --git a/src/pulsecore/props.c b/src/pulsecore/props.c index 4a39f0fb..37e74194 100644 --- a/src/pulsecore/props.c +++ b/src/pulsecore/props.c @@ -21,6 +21,10 @@ USA. ***/ +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif + #include <assert.h> #include <pulse/xmalloc.h> diff --git a/src/pulsecore/x11wrap.c b/src/pulsecore/x11wrap.c index 067b7df0..1bcbcd48 100644 --- a/src/pulsecore/x11wrap.c +++ b/src/pulsecore/x11wrap.c @@ -21,6 +21,10 @@ USA. ***/ +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif + #include <assert.h> #include <stdio.h> |