gl: fix up a few more #if HAVE_FOO
authorTim-Philipp Müller <tim@centricular.com>
Tue, 19 Dec 2017 16:51:24 +0000 (16:51 +0000)
committerTim-Philipp Müller <tim@centricular.com>
Tue, 19 Dec 2017 16:51:24 +0000 (16:51 +0000)
error: "HAVE_PNG" is not defined, evaluates to 0 [-Werror=undef]

ext/gl/effects/gstgleffectssources.c
ext/gl/gstopengl.c
gst-libs/gst/gl/gstglcontext.c
gst-libs/gst/gl/gstglwindow.c
tests/check/pipelines/gl-launch-lines.c

index b83e1d7..a79e257 100644 (file)
@@ -18,7 +18,7 @@
  * Boston, MA 02110-1301, USA.
  */
 
-#if HAVE_CONFIG_H
+#ifdef HAVE_CONFIG_H
 #include "config.h"
 #endif
 
index 683ec01..fc67298 100644 (file)
@@ -85,7 +85,7 @@
 #ifdef HAVE_VIDEO_AGGREGATOR_IN_BASE
 #include "gstglmosaic.h"
 #endif
-#if HAVE_PNG
+#ifdef HAVE_PNG
 #include "gstgldifferencematte.h"
 /* #include "gstglbumper.h" */
 #endif /* HAVE_PNG */
@@ -268,7 +268,7 @@ plugin_init (GstPlugin * plugin)
     return FALSE;
   }
 #endif
-#if HAVE_PNG
+#ifdef HAVE_PNG
   if (!gst_element_register (plugin, "gldifferencematte",
           GST_RANK_NONE, gst_gl_differencematte_get_type ())) {
     return FALSE;
index d89e4db..8baa2ee 100644 (file)
@@ -29,7 +29,7 @@
  * specified and must only be activated in a single thread.
  */
 
-#if HAVE_CONFIG_H
+#ifdef HAVE_CONFIG_H
 # include "config.h"
 #endif
 
index 3818ab1..00ccf66 100644 (file)
@@ -28,7 +28,7 @@
  * either be a user visible window (onscreen) or hidden (offscreen).
  */
 
-#if HAVE_CONFIG_H
+#ifdef HAVE_CONFIG_H
 # include "config.h"
 #endif
 
index 2289f63..a0b2b01 100644 (file)
@@ -187,7 +187,7 @@ GST_START_TEST (test_glfilterapp)
 
 GST_END_TEST
 #ifdef HAVE_PNG
-#if HAVE_JPEG
+#ifdef HAVE_JPEG
 GST_START_TEST (test_gloverlay)
 {
   const gchar *s;
@@ -337,7 +337,7 @@ gl_launch_lines_suite (void)
   tcase_add_test (tc_chain, test_glshader);
   tcase_add_test (tc_chain, test_glfilterapp);
 #ifdef HAVE_PNG
-#if HAVE_JPEG
+#ifdef HAVE_JPEG
   tcase_add_test (tc_chain, test_gloverlay);
 #endif
 #endif
@@ -354,7 +354,7 @@ gl_launch_lines_suite (void)
 #ifdef HAVE_PNG
   tcase_add_test (tc_chain, test_gldifferencematte);
 /*  tcase_add_test (tc_chain, test_glbumper);*/
-#if HAVE_JPEG
+#ifdef HAVE_JPEG
 #endif /* HAVE_JPEG */
 #endif /* HAVE_PNG */
 #endif /* GST_GL_HAVE_OPENGL */