Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 1 | Check for header and library separately and check for GLESv2 before egl |
| 2 | this is to overcome an annoying issue with rpi/userland where egl depends |
| 3 | on sysmbols from libGLESv2 |
| 4 | |
| 5 | -Khem |
| 6 | Index: gst-plugins-gl-0.10.3/configure.ac |
| 7 | =================================================================== |
| 8 | --- gst-plugins-gl-0.10.3.orig/configure.ac |
| 9 | +++ gst-plugins-gl-0.10.3/configure.ac |
| 10 | @@ -183,8 +183,10 @@ case $host in |
| 11 | else |
| 12 | AC_CHECK_HEADERS([EGL/egl.h], [HAVE_EGL=yes], [HAVE_EGL=no]) |
| 13 | if test "x$HAVE_EGL" = "xyes"; then |
| 14 | - AG_GST_CHECK_LIBHEADER(EGL, EGL, eglGetError,, EGL/egl.h,, AC_MSG_ERROR([EGL is required])) |
| 15 | - AG_GST_CHECK_LIBHEADER(GLES2, GLESv2, glTexImage2D,, GLES2/gl2.h,, AC_MSG_ERROR([OpenGLES2 is required])) |
| 16 | + AC_CHECK_HEADERS([GLES2/gl2.h],, AC_MSG_ERROR([OpenGLES2 is required])) |
| 17 | + AC_CHECK_LIB(GLESv2,[glTexImage2D],, AC_MSG_ERROR([OpenGLES2 is required])) |
| 18 | + AC_CHECK_HEADERS([EGL/egl.h],, AC_MSG_ERROR([EGL is required])) |
| 19 | + AC_CHECK_LIB(EGL,[eglGetError],, AC_MSG_ERROR([EGL is required])) |
| 20 | GL_LIBS="$LIBS $X_LIBS -lEGL -lGLESv2" |
| 21 | GL_BACKEND=x11ES2 |
| 22 | GL_TYPE=gles |