diff options
author | Tom Cooksey <thomas.cooksey@nokia.com> | 2009-09-16 15:55:01 +0200 |
---|---|---|
committer | Tom Cooksey <thomas.cooksey@nokia.com> | 2009-09-16 16:02:13 +0200 |
commit | 0d5f6cdb1dbe67ce66b56f8cd4974a1c3199f1b2 (patch) | |
tree | 2d0778c3f94e6e085050cfafb3ec361e287723cb /configure | |
parent | 90fce5ee772b6cedb3f896adcc3d986ed7a1af57 (diff) | |
download | qt4-tools-0d5f6cdb1dbe67ce66b56f8cd4974a1c3199f1b2.tar.gz |
Make EGL a requirement for building OpenGL on QWS
Currently, QtOpenGL on QWS needs to link against an EGL library. While
we'd one day like to change that, it will be that way in Qt 4.6.
Reviewed-By: Paul
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -4864,9 +4864,9 @@ if [ "$PLATFORM_X11" = "yes" -o "$PLATFORM_QWS" = "yes" ]; then CFG_EGL=yes CFG_EGL_GLES_INCLUDES=yes fi - if ( [ "$CFG_OPENGL" = "es1" ] || [ "$CFG_OPENGL" = "es1cl" ] || [ "$CFG_OPENGL" = "es2" ] ) && [ "$CFG_EGL" != "yes" ] && [ "$PLATFORM_X11" = "yes" ]; then + if ( [ "$CFG_OPENGL" = "es1" ] || [ "$CFG_OPENGL" = "es1cl" ] || [ "$CFG_OPENGL" = "es2" ] ) && [ "$CFG_EGL" != "yes" ]; then echo "The EGL functionality test failed!" - echo " EGL is required for OpenGL ES on X11 to manage contexts & surfaces." + echo " EGL is required for OpenGL ES to manage contexts & surfaces." echo " You might need to modify the include and library search paths by editing" echo " QMAKE_INCDIR_EGL, QMAKE_LIBDIR_EGL and QMAKE_LIBS_EGL in" echo " ${XQMAKESPEC}." |