From 4f30d28ff03569e9dd889e05bf0ffc2181dafaf6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Manuel=20J=C3=A1quez=20Leal?= Date: Fri, 29 Apr 2016 13:11:48 +0200 Subject: [PATCH] plugin: fix macro processor check Instead of #ifdef it should be used #if becasuse USE_GST_GL_HELPERS is always defined in config.h, but it would be 0 or 1 depending on the configure output. https://bugzilla.gnome.org/show_bug.cgi?id=765702 --- gst/vaapi/gstvaapipluginbase.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/vaapi/gstvaapipluginbase.h b/gst/vaapi/gstvaapipluginbase.h index 0694bf74c7..2e538929e5 100644 --- a/gst/vaapi/gstvaapipluginbase.h +++ b/gst/vaapi/gstvaapipluginbase.h @@ -31,7 +31,7 @@ #include #include -#ifdef USE_GST_GL_HELPERS +#if USE_GST_GL_HELPERS # include #endif