From: Sebastian Dröge Date: Wed, 10 Jul 2013 09:30:16 +0000 (+0200) Subject: [730/906] glcompat: Properly check for GLchar and other types X-Git-Tag: 1.19.3~507^2~11802 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a98180cd539347b4440420c221feb703bc5d03f7;p=platform%2Fupstream%2Fgstreamer.git [730/906] glcompat: Properly check for GLchar and other types On Android for example these are no #defines but typedefs --- diff --git a/gst-libs/gst/gl/glprototypes/gstgl_compat.h b/gst-libs/gst/gl/glprototypes/gstgl_compat.h index 6271917..a0f1ec4 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