diff options
author | Matthias Ringwald <mringwal@inf.ethz.ch> | 2008-04-04 00:42:57 +0100 |
---|---|---|
committer | Matthias Ringwald <mringwal@inf.ethz.ch> | 2008-04-04 00:42:57 +0100 |
commit | 8a62355600845fdec4bba3a5a1e18683972a2953 (patch) | |
tree | 0710bb6b2ea800635dbbd610c0a2aaf5f0d35e0b | |
parent | a50219269aa4522530de7b7a26bc4e95a5cda1dd (diff) | |
download | xine-lib-8a62355600845fdec4bba3a5a1e18683972a2953.tar.gz xine-lib-8a62355600845fdec4bba3a5a1e18683972a2953.tar.bz2 |
List OpenGL if detected
A typo in the tests prevents listing of " - OpenGL" as enabled output
plugins if OpenGL & GLU but not GLUT is detected.
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index d4a817025..be32b1cf5 100644 --- a/configure.ac +++ b/configure.ac @@ -3031,7 +3031,7 @@ if test "x$no_x" != "xyes"; then echo " - XvMC (XVideo motion compensation)" fi if test "x$ac_have_opengl" = "xyes" -a "x$ac_have_glut" = "xyes" -o \ - x$"ac_have_opengl" = "xyes" -a "x$ac_have_glu" = "xyes"; then + "x$ac_have_opengl" = "xyes" -a "x$ac_have_glu" = "xyes"; then echo " - OpenGL" fi if test "x$ac_have_sunfb" = "xyes"; then |