diff options
author | Brendan Long <self@brendanlong.com> | 2014-10-20 02:27:15 -0600 |
---|---|---|
committer | Sebastian Dröge <sebastian@centricular.com> | 2014-10-20 13:05:27 +0200 |
commit | eee5110fb4eb39d101c125c39a588754e8acb7ac (patch) | |
tree | 474c722d77aa5d0881c52478c71f2a7d4c1c7851 /configure.ac | |
parent | 5eb538f9e2eb22867d30a67215ad6007012e8ebf (diff) | |
download | gstreamer-plugins-bad-eee5110fb4eb39d101c125c39a588754e8acb7ac.tar.gz |
gl: Check for GLU before trying to use it in configure.ac
https://bugzilla.gnome.org/show_bug.cgi?id=738816
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 76c430c4b..8c2574d8e 100644 --- a/configure.ac +++ b/configure.ac @@ -845,7 +845,7 @@ else fi dnl check if we can include both GL and GLES2 at the same time -if test "x$HAVE_GL" = "xyes" -a "x$HAVE_GLES2" = "xyes"; then +if test "x$HAVE_GL" = "xyes" -a "x$HAVE_GLU" = "xyes" -a "x$HAVE_GLES2" = "xyes"; then GL_INCLUDES=" #ifndef GL_GLEXT_PROTOTYPES #define GL_GLEXT_PROTOTYPES 1 |