summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim.muller@collabora.co.uk>2009-06-10 21:36:19 +0100
committerTim-Philipp Müller <tim.muller@collabora.co.uk>2009-06-10 21:37:29 +0100
commit249d9b4aa161e28d7c14fc1f2570ed2377724af8 (patch)
treeed7270502d7a81f529e9c8ea7d54fa0a6a97d8c4
parent79e97ec5ec0a2a798cfbf259cf05730dbeeb0acf (diff)
Don't include config.h multiple times when build audio testchannel app.
Fixes build problem on win32 (#585075).
-rw-r--r--gst-libs/gst/audio/testchannels.c10
1 files changed, 2 insertions, 8 deletions
diff --git a/gst-libs/gst/audio/testchannels.c b/gst-libs/gst/audio/testchannels.c
index fa0729799..53ca51d8e 100644
--- a/gst-libs/gst/audio/testchannels.c
+++ b/gst-libs/gst/audio/testchannels.c
@@ -17,14 +17,8 @@
* Boston, MA 02111-1307, USA.
*/
-#ifdef HAVE_CONFIG_H
-#include "config.h"
-#endif
-
-#include <gst/gst.h>
-
-#include <multichannel.c>
-#include <audio-enumtypes.c>
+#include "multichannel.c"
+#include "audio-enumtypes.c"
gint
main (gint argc, gchar * argv[])