Source: kdenlive Version: 0.8.2.1-1 Tags: patch User: [email protected] Usertags: qt48-transition
Hi, Your package fails to build against Qt 4.8 which is currently in experimental. The transition to unstable/testing is tracked in bug #653903. I'm attaching a patch that contains the necessary changes. It can be applied even before Qt 4.8 enters unstable. Build log: > [ 42%] Building CXX object > src/cmake_bindir/CMakeFiles/kdenlive.dir/videoglwidget.o > /tmp/buildd/kdenlive-0.8.2.1/src/videoglwidget.cpp: In member function > 'virtual void > VideoGLWidget::resizeGL(int, int)': > /tmp/buildd/kdenlive-0.8.2.1/src/videoglwidget.cpp:80:35: error: 'gluOrtho2D' > was not declared > in this scope > make[3]: *** [src/cmake_bindir/CMakeFiles/kdenlive.dir/videoglwidget.o] Error > 1 Regards, Felix
Description: Fix FTBFS with Qt 4.8. Author: Felix Geyer <[email protected]> --- kdenlive-0.8.2.1.orig/src/videoglwidget.cpp +++ kdenlive-0.8.2.1/src/videoglwidget.cpp @@ -1,6 +1,7 @@ #include <QtGui> #include <QtOpenGL> +#include <GL/glu.h> #include "videoglwidget.h" #ifndef GL_TEXTURE_RECTANGLE_EXT

