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

------------------------------------------------------------------------------
Come build with us! The BlackBerry® Developer Conference in SF, CA
is the only developer event you need to attend this year. Jumpstart your
developing skills, take BlackBerry mobile applications to market and stay 
ahead of the curve. Join us from November 9-12, 2009. Register now!
http://p.sf.net/sfu/devconf
_______________________________________________
Kdenlive-devel mailing list
Kdenlive-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/kdenlive-devel

Reply via email to