Bug 175232

Summary: incomplete information what library is expected
Product: [Developer tools] buildsystem Reporter: Thorsten Staerk <dev>
Component: KDE4 (cmake)Assignee: Alexander Neundorf <neundorf>
Status: RESOLVED FIXED    
Severity: normal CC: christophe
Priority: NOR    
Version: unspecified   
Target Milestone: ---   
Platform: Compiled Sources   
OS: Linux   
Latest Commit: Version Fixed In:
Sentry Crash Report:

Description Thorsten Staerk 2008-11-15 17:03:05 UTC
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.
Comment 1 Thorsten Staerk 2008-11-15 17:03:15 UTC
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 ".*")
Comment 2 Thorsten Staerk 2008-11-15 17:04:35 UTC
assigning this bug to a nice guy...
Comment 3 Christophe Marin 2008-11-15 17:05:44 UTC
& to the correct product :)
Comment 4 Thorsten Staerk 2008-11-15 18:33:53 UTC
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