Forwarding... -- Bruce
-------- Original Message -------- Subject: BLFS svn-20110728 Date: Mon, 22 Aug 2011 08:37:05 +0800 From: Owen Bishop <[email protected]> To: [email protected] Hello there. I came across a few problems during a verbatim installation of KDE via BLFS svn-20110728 : 1) http://www.linuxfromscratch.org/blfs/view/svn/x/qt.html ... qt-x11-free-3.3.8b make fails with ".obj/release-shared/qapplication_x11.o Error 1 {...} ptrdiff_t does not name a type" The fix is at qt-x11-free-3.3.8/include/qvaluelist.h #ifndef QT_NO_STL #include <iterator> #include <list> #endif becomes #ifndef QT_NO_STL #include <iterator> #include <list> #include <cstddef> #endif 2) http://www.linuxfromscratch.org/blfs/view/svn/kde/kdelibs.html ... kdelibs-3.5.10 make fails with an error from the deprecated ANS1_METHOD patch is here https://trac.macports.org/attachment/ticket/25628/kdelibs-3.5.10-ossl-1.x.patch 3) http://www.linuxfromscratch.org/blfs/view/svn/kde/kdelibs.html ... kdelibs-3.5.10 make fails with "invalid conversion from 'const char*' to 'char*" The fix is at kdelibs-3.5.10/kioslave/ftp/ftp.cc lines 879 and 934 On both lines "char *start" becomes "const char *start" 4) http://www.linuxfromscratch.org/blfs/view/svn/kde/kdelibs.html ... kdelibs-3.5.10 make fails with "error: cannot call constructor 'QColor::QColor' directly " kdelibs-3.5.10/kate/part/katehighlight.cpp lines 3228, 3245, 3257 "QColor::Qcolor" becomes "QColor" kdelibs-3.5.10/kate/part/katehighlight.cpp line 2942 delete trailing "r" kdelibs-3.5.10/kate/part/katehighlight.cpp line 2943 prepend with a semicolon kdelibs-3.5.10/kate/part/katehighlight.cpp line 2991 delete trailing "r" Regards, Owen Bishop -- http://linuxfromscratch.org/mailman/listinfo/blfs-dev FAQ: http://www.linuxfromscratch.org/blfs/faq.html Unsubscribe: See the above information page
