Version: 4.2 (using Devel) OS: Linux Installed from: Compiled sources I just tried to kompile kdepimlibs and got the info that I would need libical 0.33. I asked in #kontact - this is not true, I need libical 0.33 OR HIGHER. This is because 0.33 is handed over to a cmake function as minversion. The output from the cmake macro is missing "or higher" - I attach a patch.
linux-dtnt:~/kdelibs # svn diff Index: cmake/modules/MacroLogFeature.cmake =================================================================== --- cmake/modules/MacroLogFeature.cmake (revision 871997) +++ cmake/modules/MacroLogFeature.cmake (working copy) @@ -70,7 +70,7 @@ IF (NOT ${_var}) IF (${_minvers} MATCHES ".*") - SET(_logtext "${_logtext}, ${_minvers}") + SET(_logtext "${_logtext}, ${_minvers} or higher") ENDIF (${_minvers} MATCHES ".*") SET(_logtext "${_logtext}: ${_description} <${_url}>") IF (${_comments} MATCHES ".*")
assigning this bug to a nice guy...
& to the correct product :)
SVN commit 884713 by tstaerk: Tell the correct version information about needed libraries. BUGS:175232 M +1 -1 MacroLogFeature.cmake WebSVN link: http://websvn.kde.org/?view=rev&revision=884713