From 61dfdc19b96343fccd0dba092e3dc0fc5a07f3e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Wed, 10 Jul 2013 11:30:16 +0200 Subject: [PATCH] [730/906] glcompat: Properly check for GLchar and other types On Android for example these are no #defines but typedefs --- gst-libs/gst/gl/glprototypes/gstgl_compat.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gst-libs/gst/gl/glprototypes/gstgl_compat.h b/gst-libs/gst/gl/glprototypes/gstgl_compat.h index 6271917108..a0f1ec4829 100644 --- a/gst-libs/gst/gl/glprototypes/gstgl_compat.h +++ b/gst-libs/gst/gl/glprototypes/gstgl_compat.h @@ -22,16 +22,16 @@ #define __GST_GL_COMPAT_H__ /* undefined typedefs */ -#ifndef GLeglImageOES +#ifndef HAVE_GLEGLIMAGEOES typedef gpointer GLeglImageOES; #endif -#ifndef GLchar +#ifndef HAVE_GLCHAR typedef gchar GLchar; #endif -#ifndef GLsizeiptr +#ifndef HAVE_GLSIZEIPTR typedef ptrdiff_t GLsizeiptr; #endif -#ifndef GLintptr +#ifndef HAVE_GLINTPTR typedef ptrdiff_t GLintptr; #endif