Bug 175232 - incomplete information what library is expected
Summary: incomplete information what library is expected
Status: RESOLVED FIXED
Alias: None
Product: buildsystem
Classification: Developer tools
Component: KDE4 (cmake) (show other bugs)
Version: unspecified
Platform: Compiled Sources Linux
: NOR normal
Target Milestone: ---
Assignee: Alexander Neundorf
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2008-11-15 17:03 UTC by Thorsten Staerk
Modified: 2008-11-15 18:33 UTC (History)
1 user (show)

See Also:
Latest Commit:
Version Fixed In:
Sentry Crash Report:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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