diff options
author | Sebastian Dröge <slomo@circular-chaos.org> | 2013-07-10 11:24:34 +0200 |
---|---|---|
committer | Matthew Waters <ystreet00@gmail.com> | 2014-03-15 18:36:57 +0100 |
commit | 19dff69a2e6762c7c2ef4ef67d31fefed94223f2 (patch) | |
tree | 62f75c8d5c853fd220b9f84cbd7e7af2e167786b /tests | |
parent | b71a246426c94748c680fa8359f2a4805b2afd7c (diff) | |
download | gstreamer-plugins-bad-19dff69a2e6762c7c2ef4ef67d31fefed94223f2.tar.gz |
[729/906] gl: Include config.h everywhere
Diffstat (limited to 'tests')
-rw-r--r-- | tests/check/pipelines/simple-launch-lines.c | 1 | ||||
-rw-r--r-- | tests/examples/clutter/clutteractor.c | 4 | ||||
-rw-r--r-- | tests/examples/clutter/clutteractortee.c | 3 | ||||
-rw-r--r-- | tests/examples/clutter/cluttershare.c | 3 | ||||
-rw-r--r-- | tests/examples/gtk/fxtest/fxtest.c | 3 | ||||
-rw-r--r-- | tests/examples/gtk/fxtest/pixbufdrop.c | 3 | ||||
-rw-r--r-- | tests/examples/gtk/gstgtk.c | 3 | ||||
-rw-r--r-- | tests/examples/sdl/sdlshare.c | 3 |
8 files changed, 21 insertions, 2 deletions
diff --git a/tests/check/pipelines/simple-launch-lines.c b/tests/check/pipelines/simple-launch-lines.c index 65f4e8a79..3605f1257 100644 --- a/tests/check/pipelines/simple-launch-lines.c +++ b/tests/check/pipelines/simple-launch-lines.c @@ -18,7 +18,6 @@ * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, * Boston, MA 02110-1301, USA. */ - #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/tests/examples/clutter/clutteractor.c b/tests/examples/clutter/clutteractor.c index 69e4d87ae..c25321798 100644 --- a/tests/examples/clutter/clutteractor.c +++ b/tests/examples/clutter/clutteractor.c @@ -17,7 +17,9 @@ * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, * Boston, MA 02110-1301, USA. */ - +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif #define CLUTTER_VERSION_MIN_REQUIRED CLUTTER_VERSION_1_8 diff --git a/tests/examples/clutter/clutteractortee.c b/tests/examples/clutter/clutteractortee.c index 657e8f628..a46f32383 100644 --- a/tests/examples/clutter/clutteractortee.c +++ b/tests/examples/clutter/clutteractortee.c @@ -17,6 +17,9 @@ * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, * Boston, MA 02110-1301, USA. */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif #define GLIB_DISABLE_DEPRECATION_WARNINGS #define CLUTTER_VERSION_MIN_REQUIRED CLUTTER_VERSION_1_8 diff --git a/tests/examples/clutter/cluttershare.c b/tests/examples/clutter/cluttershare.c index b06b27bac..6b7311f49 100644 --- a/tests/examples/clutter/cluttershare.c +++ b/tests/examples/clutter/cluttershare.c @@ -17,6 +17,9 @@ * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, * Boston, MA 02110-1301, USA. */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif #include <GL/gl.h> diff --git a/tests/examples/gtk/fxtest/fxtest.c b/tests/examples/gtk/fxtest/fxtest.c index 124beb140..c4a8e0b52 100644 --- a/tests/examples/gtk/fxtest/fxtest.c +++ b/tests/examples/gtk/fxtest/fxtest.c @@ -17,6 +17,9 @@ * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, * Boston, MA 02110-1301, USA. */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif #define GLIB_DISABLE_DEPRECATION_WARNINGS diff --git a/tests/examples/gtk/fxtest/pixbufdrop.c b/tests/examples/gtk/fxtest/pixbufdrop.c index 585306843..d9f363bfd 100644 --- a/tests/examples/gtk/fxtest/pixbufdrop.c +++ b/tests/examples/gtk/fxtest/pixbufdrop.c @@ -17,6 +17,9 @@ * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, * Boston, MA 02110-1301, USA. */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif #define GLIB_DISABLE_DEPRECATION_WARNINGS diff --git a/tests/examples/gtk/gstgtk.c b/tests/examples/gtk/gstgtk.c index ec52f9ca3..dc680a1b5 100644 --- a/tests/examples/gtk/gstgtk.c +++ b/tests/examples/gtk/gstgtk.c @@ -17,6 +17,9 @@ * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, * Boston, MA 02110-1301, USA. */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif #include "gstgtk.h" diff --git a/tests/examples/sdl/sdlshare.c b/tests/examples/sdl/sdlshare.c index 62c20992f..866554475 100644 --- a/tests/examples/sdl/sdlshare.c +++ b/tests/examples/sdl/sdlshare.c @@ -17,6 +17,9 @@ * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, * Boston, MA 02110-1301, USA. */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif #ifdef WIN32 #include <windows.h> |