diff options
author | Benjamin Otte <otte@gnome.org> | 2003-06-29 19:46:12 +0000 |
---|---|---|
committer | Benjamin Otte <otte@gnome.org> | 2003-06-29 19:46:12 +0000 |
commit | 90da904f1e435812ce245928b80cfd325785ff37 (patch) | |
tree | 308c8167f16721bbfe4a047e6d798ade33aa968e /gst/effectv | |
parent | 7519af569b22f502f88b9c80e7ce26522e1e9aad (diff) |
compatibility fix for new GST_DEBUG stuff.
Original commit message from CVS:
compatibility fix for new GST_DEBUG stuff.
Includes fixes for missing includes for config.h and unistd.h
I only ensured for plugins I can build that they work, so if some of them are still broken, you gotta fix them yourselves unfortunately.
Diffstat (limited to 'gst/effectv')
-rw-r--r-- | gst/effectv/gstaging.c | 3 | ||||
-rw-r--r-- | gst/effectv/gstdice.c | 3 | ||||
-rw-r--r-- | gst/effectv/gstedge.c | 3 | ||||
-rw-r--r-- | gst/effectv/gstquark.c | 3 | ||||
-rw-r--r-- | gst/effectv/gstrev.c | 3 | ||||
-rw-r--r-- | gst/effectv/gstshagadelic.c | 3 | ||||
-rw-r--r-- | gst/effectv/gstvertigo.c | 3 | ||||
-rw-r--r-- | gst/effectv/gstwarp.c | 3 |
8 files changed, 24 insertions, 0 deletions
diff --git a/gst/effectv/gstaging.c b/gst/effectv/gstaging.c index e60b49ec..d427a1e3 100644 --- a/gst/effectv/gstaging.c +++ b/gst/effectv/gstaging.c @@ -21,6 +21,9 @@ * Boston, MA 02111-1307, USA. */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif #include <string.h> #include "gsteffectv.h" diff --git a/gst/effectv/gstdice.c b/gst/effectv/gstdice.c index 4286f07e..a9fabd26 100644 --- a/gst/effectv/gstdice.c +++ b/gst/effectv/gstdice.c @@ -10,6 +10,9 @@ * 270 degrees. The amount of rotation for each square is chosen at random. */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif #include <string.h> #include <gst/gst.h> #include "gsteffectv.h" diff --git a/gst/effectv/gstedge.c b/gst/effectv/gstedge.c index 4d25fddd..f169c249 100644 --- a/gst/effectv/gstedge.c +++ b/gst/effectv/gstedge.c @@ -21,6 +21,9 @@ * Boston, MA 02111-1307, USA. */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif #include <string.h> #include <gst/gst.h> #include "gsteffectv.h" diff --git a/gst/effectv/gstquark.c b/gst/effectv/gstquark.c index c48cddad..12aacb52 100644 --- a/gst/effectv/gstquark.c +++ b/gst/effectv/gstquark.c @@ -21,6 +21,9 @@ * Boston, MA 02111-1307, USA. */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif #include <math.h> #include <string.h> #include <gst/gst.h> diff --git a/gst/effectv/gstrev.c b/gst/effectv/gstrev.c index 870e47a9..88b3a8b8 100644 --- a/gst/effectv/gstrev.c +++ b/gst/effectv/gstrev.c @@ -40,6 +40,9 @@ * Boston, MA 02111-1307, USA. */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif #include <math.h> #include <string.h> #include <gst/gst.h> diff --git a/gst/effectv/gstshagadelic.c b/gst/effectv/gstshagadelic.c index 38fbb7a3..f97fdae6 100644 --- a/gst/effectv/gstshagadelic.c +++ b/gst/effectv/gstshagadelic.c @@ -22,6 +22,9 @@ * Boston, MA 02111-1307, USA. */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif #include <math.h> #include <string.h> #include <gst/gst.h> diff --git a/gst/effectv/gstvertigo.c b/gst/effectv/gstvertigo.c index 0c5d507f..0216690b 100644 --- a/gst/effectv/gstvertigo.c +++ b/gst/effectv/gstvertigo.c @@ -22,6 +22,9 @@ */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif #include <math.h> #include <string.h> #include <gst/gst.h> diff --git a/gst/effectv/gstwarp.c b/gst/effectv/gstwarp.c index e82dcaad..d08c2656 100644 --- a/gst/effectv/gstwarp.c +++ b/gst/effectv/gstwarp.c @@ -27,6 +27,9 @@ * by sam lantinga slouken@devolution.com */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif #include <string.h> #include <math.h> #include <gst/gst.h> |