diff options
author | Timothy Pearson <[email protected]> | 2012-02-10 11:10:23 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2012-02-10 11:10:23 -0600 |
commit | 3c74e7815ff2787a3316bd7c8b40949832ed4ca5 (patch) | |
tree | 61cb2e1bfdf4240655f49e525b0703b6685bce68 | |
parent | 5d8b99c785cc26e103a18cbd29291b28eea0aeb3 (diff) | |
download | kipi-plugins-3c74e7815ff2787a3316bd7c8b40949832ed4ca5.tar.gz kipi-plugins-3c74e7815ff2787a3316bd7c8b40949832ed4ca5.zip |
Fix TQGl detection
-rw-r--r-- | kipi-plugins/configure.in.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kipi-plugins/configure.in.in b/kipi-plugins/configure.in.in index 8ad679a..3103327 100644 --- a/kipi-plugins/configure.in.in +++ b/kipi-plugins/configure.in.in @@ -388,10 +388,10 @@ if test "x$build_opengl" != "xno"; then LIBS="$LIBS $LIBQT $KDE_MT_LIBS" AC_TRY_LINK([ - #include <qgl.h> + #include <tqgl.h> ], [ - (void)new QGLWidget((QWidget*)0, "qgl"); + (void)new TQGLWidget((TQWidget*)0, "qgl"); ], ac_cv_kde_qt_has_opengl=yes, ac_cv_kde_qt_has_opengl=no) |