[Kdenlive-devel] kdelibs5 version dependency

Mikko Rapeli mikko.rapeli at iki.fi
Fri Sep 18 08:11:15 UTC 2009


Should kdenlive update dependency requirements to kdelibs5 4.3?

I just tried compiling on Debian stable/lenny with kdelibs5 4.1 and it
fails. Fixes were simple at this point and #ifdef'ing them out might
work too though I don't if kdelibs provides that kind of version numbers
to compare with.

--- src/titlewidget.cpp (revision 3912)
+++ src/titlewidget.cpp (working copy)
@@ -1450,7 +1450,9 @@
         KFileDialog *fs = new KFileDialog(KUrl(m_projectTitlePath),
"application/x-kdenlivetitle",this);
         fs->setOperationMode(KFileDialog::Saving);
         fs->setMode(KFile::File);
+/* kdelibs5 in lenny don't have this
         fs->setConfirmOverwrite(true);
+*/
         fs->setKeepLocation(true);
         fs->exec();
         url = fs->selectedUrl();
--- src/monitor.cpp     (revision 3912)
+++ src/monitor.cpp     (working copy)
@@ -487,7 +487,9 @@
     KFileDialog *fs = new KFileDialog(KUrl(), "image/png",this);
     fs->setOperationMode(KFileDialog::Saving);
     fs->setMode(KFile::File);
+/* not available in Debian lenny kdelibs5
     fs->setConfirmOverwrite(true);
+*/
     fs->setKeepLocation(true);
     fs->exec();
     QString path = fs->selectedFile();

And now also:

src/kdenlive/src/recmonitor.cpp:33:30: error: KDiskFreeSpaceInfo: No
such file or directory




More information about the Kdenlive mailing list