summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2006-06-21 14:10:54 +0000
committerLennart Poettering <lennart@poettering.net>2006-06-21 14:10:54 +0000
commit7d8a361763d3e5faae591e2e856013b5cdc07dfd (patch)
tree5a04991478c8471d76b7f631caab9568aa9cad68
parent08504c79cd5bf5518ccdaade925bc10e679be7bc (diff)
include config.h everywhere properly
git-svn-id: file:///home/lennart/svn/public/paman/trunk@78 cdefa82f-4ce1-0310-97f5-ab6066f37c3c
-rw-r--r--src/ClientWindow.cc4
-rw-r--r--src/MainWindow.cc4
-rw-r--r--src/ModuleWindow.cc4
-rw-r--r--src/SampleWindow.cc4
-rw-r--r--src/ServerInfoManager.cc4
-rw-r--r--src/SinkInputWindow.cc8
-rw-r--r--src/SinkWindow.cc4
-rw-r--r--src/SourceOutputWindow.cc8
-rw-r--r--src/SourceWindow.cc4
-rw-r--r--src/StatWindow.cc4
-rw-r--r--src/paman.cc4
11 files changed, 48 insertions, 4 deletions
diff --git a/src/ClientWindow.cc b/src/ClientWindow.cc
index 5f1fa53..c249710 100644
--- a/src/ClientWindow.cc
+++ b/src/ClientWindow.cc
@@ -19,6 +19,10 @@
USA.
***/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
#include <iostream>
#include "paman.hh"
diff --git a/src/MainWindow.cc b/src/MainWindow.cc
index 0d916cd..233f539 100644
--- a/src/MainWindow.cc
+++ b/src/MainWindow.cc
@@ -19,6 +19,10 @@
USA.
***/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
#include <iostream>
#include <string>
#include <sstream>
diff --git a/src/ModuleWindow.cc b/src/ModuleWindow.cc
index 22979a6..0c8d185 100644
--- a/src/ModuleWindow.cc
+++ b/src/ModuleWindow.cc
@@ -19,6 +19,10 @@
USA.
***/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
#include <iostream>
#include "paman.hh"
diff --git a/src/SampleWindow.cc b/src/SampleWindow.cc
index d30f10f..ad38f78 100644
--- a/src/SampleWindow.cc
+++ b/src/SampleWindow.cc
@@ -19,6 +19,10 @@
USA.
***/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
#include <iostream>
#include "paman.hh"
diff --git a/src/ServerInfoManager.cc b/src/ServerInfoManager.cc
index 122853e..87c160c 100644
--- a/src/ServerInfoManager.cc
+++ b/src/ServerInfoManager.cc
@@ -19,6 +19,10 @@
USA.
***/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
#include <iostream>
#include <pulse/pulseaudio.h>
diff --git a/src/SinkInputWindow.cc b/src/SinkInputWindow.cc
index 320189b..4c2e15c 100644
--- a/src/SinkInputWindow.cc
+++ b/src/SinkInputWindow.cc
@@ -1,5 +1,3 @@
-#include <iostream>
-
/* $Id$ */
/***
@@ -21,6 +19,12 @@
USA.
***/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
+#include <iostream>
+
#include "paman.hh"
#include "SinkInputWindow.hh"
diff --git a/src/SinkWindow.cc b/src/SinkWindow.cc
index 93f39ec..b22c6e1 100644
--- a/src/SinkWindow.cc
+++ b/src/SinkWindow.cc
@@ -19,6 +19,10 @@
USA.
***/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
#include <iostream>
#include "paman.hh"
diff --git a/src/SourceOutputWindow.cc b/src/SourceOutputWindow.cc
index 836dade..ad1011b 100644
--- a/src/SourceOutputWindow.cc
+++ b/src/SourceOutputWindow.cc
@@ -1,5 +1,3 @@
-#include <iostream>
-
/* $Id$ */
/***
@@ -21,6 +19,12 @@
USA.
***/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
+#include <iostream>
+
#include "paman.hh"
#include "SourceOutputWindow.hh"
diff --git a/src/SourceWindow.cc b/src/SourceWindow.cc
index 52119ce..7a9e949 100644
--- a/src/SourceWindow.cc
+++ b/src/SourceWindow.cc
@@ -19,6 +19,10 @@
USA.
***/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
#include "paman.hh"
#include "SourceWindow.hh"
diff --git a/src/StatWindow.cc b/src/StatWindow.cc
index efa5f17..087c309 100644
--- a/src/StatWindow.cc
+++ b/src/StatWindow.cc
@@ -19,6 +19,10 @@
USA.
***/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
#include "paman.hh"
#include "StatWindow.hh"
diff --git a/src/paman.cc b/src/paman.cc
index cb8122e..8e28bd8 100644
--- a/src/paman.cc
+++ b/src/paman.cc
@@ -19,6 +19,10 @@
USA.
***/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
#include <signal.h>
#include <gtkmm.h>