From: David Schleef Date: Thu, 6 Nov 2003 22:14:17 +0000 (+0000) Subject: make sure config.h is included first X-Git-Tag: CAPS-ROOT~71 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=95f73bcf6dd90053087c3a62901db31240b38f09;p=platform%2Fupstream%2Fgst-plugins-good.git make sure config.h is included first Original commit message from CVS: make sure config.h is included first --- diff --git a/gst/law/alaw-decode.c b/gst/law/alaw-decode.c index 6295476..c0eb3c1 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 cc86537..be3ec77 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 ce1fd94..5986400 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 9dd2e47..414ac7f 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 c19ce33..6f89a38 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"