From 95f73bcf6dd90053087c3a62901db31240b38f09 Mon Sep 17 00:00:00 2001 From: David Schleef Date: Thu, 6 Nov 2003 22:14:17 +0000 Subject: make sure config.h is included first Original commit message from CVS: make sure config.h is included first --- gst/law/alaw-decode.c | 3 +++ gst/law/alaw-encode.c | 3 +++ gst/law/mulaw-decode.c | 3 +++ gst/law/mulaw-encode.c | 3 +++ gst/level/gstlevel.c | 3 +++ 5 files changed, 15 insertions(+) diff --git a/gst/law/alaw-decode.c b/gst/law/alaw-decode.c index 62954763..c0eb3c14 100644 --- a/gst/law/alaw-decode.c +++ b/gst/law/alaw-decode.c @@ -19,6 +19,9 @@ * Boston, MA 02111-1307, USA. */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif #include #include "alaw-decode.h" diff --git a/gst/law/alaw-encode.c b/gst/law/alaw-encode.c index cc86537f..be3ec77a 100644 --- a/gst/law/alaw-encode.c +++ b/gst/law/alaw-encode.c @@ -19,6 +19,9 @@ * Boston, MA 02111-1307, USA. */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif #include #include "alaw-encode.h" diff --git a/gst/law/mulaw-decode.c b/gst/law/mulaw-decode.c index ce1fd947..5986400e 100644 --- a/gst/law/mulaw-decode.c +++ b/gst/law/mulaw-decode.c @@ -17,6 +17,9 @@ * Boston, MA 02111-1307, USA. */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif #include #include "mulaw-decode.h" #include "mulaw-conversion.h" diff --git a/gst/law/mulaw-encode.c b/gst/law/mulaw-encode.c index 9dd2e470..414ac7fc 100644 --- a/gst/law/mulaw-encode.c +++ b/gst/law/mulaw-encode.c @@ -17,6 +17,9 @@ * Boston, MA 02111-1307, USA. */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif #include #include "mulaw-encode.h" #include "mulaw-conversion.h" diff --git a/gst/level/gstlevel.c b/gst/level/gstlevel.c index c19ce33c..6f89a38d 100644 --- a/gst/level/gstlevel.c +++ b/gst/level/gstlevel.c @@ -21,6 +21,9 @@ * Boston, MA 02111-1307, USA. */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif #include #include "gstlevel.h" #include "math.h" -- cgit