<div class="gmail_quote">On Thu, Sep 23, 2010 at 10:07 PM, Valentin Pavlyuchenko <span dir="ltr">&lt;<a href="mailto:thevalik@gmail.com">thevalik@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
Sorry, I don&#39;t know how to send you your cookies:)<br>
Yes, you&#39;re absolutely right - cmake 2.8.2, ZLIB_VERSION 1.2.3.4,<br>
find_package(ZLIB REQUIRED)<br>
So what it means?<br>
<br>
P.S. Btw, these are Debian testing (future stable version - it&#39;s in<br>
freeze now) software versions.<br>
<font color="#888888"><br>
--<br>
Best regards,<br>
Valentin Pavlyuchenko<br>
<br>
<br>
<br>
2010/9/23 Nicolás Alvarez &lt;<a href="mailto:nicolas.alvarez@gmail.com">nicolas.alvarez@gmail.com</a>&gt;:<br>
</font><div><div></div><div class="h5">&gt; On 22/09/2010, Valentin Pavlyuchenko &lt;<a href="mailto:thevalik@gmail.com">thevalik@gmail.com</a>&gt; wrote:<br>
&gt;&gt; Hi all,<br>
&gt;&gt;<br>
&gt;&gt; I&#39;m using KDevelop 4.1 from git and I&#39;ve tried opening Amarok project with<br>
&gt;&gt; it.<br>
&gt;&gt; Currently project loading takes about 2 minutes to complete (just<br>
&gt;&gt; cmake project loading, without parsing). My PC is not old one (Core 2<br>
&gt;&gt; Duo, 3.2GHz).<br>
&gt;&gt; Can someone explain me why it is so slow?<br>
&gt;<br>
&gt; Do you happen to have CMake 2.8.2, a zlib.h with ZLIB_VERSION defined<br>
&gt; to a four-component version number, and a find_package(ZLIB) call in<br>
&gt; Amarok&#39;s CMake scripts?<br>
&gt;<br>
&gt; I want cookies if I guessed all that right.<br>
&gt;<br>
&gt; --<br>
&gt; Nicolas<br>
&gt;<br>
&gt; --<br>
&gt; KDevelop-devel mailing list<br>
&gt; <a href="mailto:KDevelop-devel@kdevelop.org">KDevelop-devel@kdevelop.org</a><br>
&gt; <a href="https://barney.cs.uni-potsdam.de/mailman/listinfo/kdevelop-devel" target="_blank">https://barney.cs.uni-potsdam.de/mailman/listinfo/kdevelop-devel</a><br>
&gt;<br>
<br>
--<br>
KDevelop-devel mailing list<br>
<a href="mailto:KDevelop-devel@kdevelop.org">KDevelop-devel@kdevelop.org</a><br>
<a href="https://barney.cs.uni-potsdam.de/mailman/listinfo/kdevelop-devel" target="_blank">https://barney.cs.uni-potsdam.de/mailman/listinfo/kdevelop-devel</a><br>
</div></div></blockquote></div><br><div>Hey,</div><div>I just tracked down the issue. It&#39;s a FindZLIB.cmake problem, the regex they use to match the version is wrong. If you want a quick fix, you can replace the line 41 with:</div>
<div><br></div><div>STRING(REGEX REPLACE &quot;.*#define ZLIB_VERSION \&quot;([0-9]+)\\.([0-9]+)\\.([0-9]+).*&quot; &quot;\\1.\\2.\\3&quot; ZLIB_VERSION_STRING &quot;${ZLIB_H}&quot;)</div><div><br></div><div>(note the change is that it doesn&#39;t expect to be &gt;..._VERSION &quot;n.n.n&quot;&lt; but &gt;..._VERSION &quot;n.n.n&lt;, note the ending quote)</div>
<div>This made that the version was never matched and then it basically didn&#39;t match, it spent all that time looking for it in that huge file (I agree it shouldn&#39;t take that long maybe).</div><div><br></div><div>Does anyone know how to report that bug to cmake? (That&#39;s why I&#39;m CC&#39;ing kde-buildsystem, they might know who to talk to).</div>
<div><br></div><div>Cheers!</div><div>Aleix</div><meta http-equiv="content-type" content="text/html; charset=utf-8">