<div class="gmail_quote">On Fri, Jun 4, 2010 at 8:03 AM, Michael Wild <span dir="ltr">&lt;<a href="mailto:themiwi@gmail.com">themiwi@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;">
The log looks like this (I&#39;ve put a message(&quot;log = ${log}&quot;) into ExternalProject.cmake to get this, since the numeric error code is 0):<br>
<br>
&lt;snip&gt;<br>
-- downloading...<br>
     src=&#39;<a href="http://downloads.sourceforge.net/project/freefoam/ThirdParty/zlib/zlib-1.2.5.tar.gz" target="_blank">http://downloads.sourceforge.net/project/freefoam/ThirdParty/zlib/zlib-1.2.5.tar.gz</a>&#39;<br>

     dst=&#39;/Users/mwild/Projects/FreeFOAM/build-pu/ThirdParty/zlib/src/zlib-1.2.5.tar.gz&#39;<br>
     timeout=&#39;none&#39;<br>
log = About to connect() to <a href="http://downloads.sourceforge.net" target="_blank">downloads.sourceforge.net</a> port 80 (#0)<br>
  Trying 216.34.181.59... connected<br>
Connected to <a href="http://downloads.sourceforge.net" target="_blank">downloads.sourceforge.net</a> (216.34.181.59) port 80 (#0)<br>
GET /project/freefoam/ThirdParty/zlib/zlib-1.2.5.tar.gz HTTP/1.1<br>
Host: <a href="http://downloads.sourceforge.net" target="_blank">downloads.sourceforge.net</a><br>
Accept: */*<br>
<br>
HTTP/1.1 302 Found<br>
X-Powered-By: PHP/5.2.9<br>
Content-Disposition: attachment; filename=&quot;zlib-1.2.5.tar.gz&quot;<br>
Location: <a href="http://surfnet.dl.sourceforge.net/project/freefoam/ThirdParty/zlib/zlib-1.2.5.tar.gz
Content-type" target="_blank">http://surfnet.dl.sourceforge.net/project/freefoam/ThirdParty/zlib/zlib-1.2.5.tar.gz<br>
Content-type</a>: text/html<br>
Content-Length: 0<br>
Date: Fri, 04 Jun 2010 07:52:13 GMT<br>
Server: lighttpd/1.4.26<br>
<br>
Connection #0 to host <a href="http://downloads.sourceforge.net" target="_blank">downloads.sourceforge.net</a> left intact<br>
Closing connection #0<br>
<br>
-- downloading... done<br>
&lt;/snip&gt;<br>
<br>
So you see, CMake really thinks this succeeded.<br></blockquote><div><br></div><div>Hmm. I wonder if there&#39;s some sort of curl option we should be passing to get redirects to work automatically...?</div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">

<br>
I really am looking forward to the EXPECTED_MD5 feature, please also make it available through ExternalProject_Add! Currently I&#39;m doing this manually via an additional step, but it&#39;s awfully fragile...<br></blockquote>
<div><br></div><div>It is. That was actually the main motivation for the additional file(DOWNLOAD arg... In CMake &#39;next&#39; there&#39;s a URL_MD5 arg to ExternalProject_Add now.</div><div><br></div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">

<font color="#888888"><br>
Michael<br>
</font><div><div></div><div class="h5"><br>
On 4. Jun, 2010, at 13:57 , David Cole wrote:<br>
<br>
&gt; I&#39;m pretty sure the original intent was for file(DOWNLOAD ...) to not raise<br>
&gt; errors so that scripts can analyze status and log and decide what to do next<br>
&gt; rather than forcing a CMake error...<br>
&gt;<br>
&gt; I recently added EXPECTED_MD5 to file(DOWNLOAD in the &#39;next&#39; branch of<br>
&gt; CMake. If a download fails when there&#39;s an expected MD5 sum given, then it<br>
&gt; *does* raise an error. Perhaps you&#39;ll find that useful in the next<br>
&gt; release...<br>
&gt;<br>
&gt; Cheers,<br>
&gt; David C.<br>
&gt;<br>
&gt;<br>
&gt; On Fri, Jun 4, 2010 at 7:55 AM, David Cole &lt;<a href="mailto:david.cole@kitware.com">david.cole@kitware.com</a>&gt; wrote:<br>
&gt;<br>
&gt;&gt; What if you do something this...? What do status and log tell you?<br>
&gt;&gt;<br>
&gt;&gt; set(remote &quot;http://......&quot;)<br>
&gt;&gt; set(local &quot;some file name&quot;)<br>
&gt;&gt;<br>
&gt;&gt; file(DOWNLOAD<br>
&gt;&gt;<br>
&gt;&gt;  &quot;${remote}&quot;<br>
&gt;&gt;<br>
&gt;&gt;  &quot;${local}&quot;<br>
&gt;&gt;<br>
&gt;&gt;  STATUS status<br>
&gt;&gt;<br>
&gt;&gt;  LOG log)<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; list(GET status 0 status_code)<br>
&gt;&gt;<br>
&gt;&gt; list(GET status 1 status_string)<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; if(NOT status_code EQUAL 0)<br>
&gt;&gt;<br>
&gt;&gt;  message(FATAL_ERROR &quot;error: downloading &#39;${remote}&#39; failed<br>
&gt;&gt;<br>
&gt;&gt;  status_code: ${status_code}<br>
&gt;&gt;<br>
&gt;&gt;  status_string: ${status_string}<br>
&gt;&gt;<br>
&gt;&gt;  log: ${log}<br>
&gt;&gt;<br>
&gt;&gt; &quot;)<br>
&gt;&gt;<br>
&gt;&gt; endif()<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; On Fri, Jun 4, 2010 at 4:00 AM, Michael Wild &lt;<a href="mailto:themiwi@gmail.com">themiwi@gmail.com</a>&gt; wrote:<br>
&gt;&gt;<br>
&gt;&gt;&gt; When downloading something from <a href="http://downloads.sourceforge.net/." target="_blank">http://downloads.sourceforge.net/.</a>.. you<br>
&gt;&gt;&gt; always get a 302 redirect to one of the many mirror servers. Unfortunately,<br>
&gt;&gt;&gt; it seems that file(DOWNLOAD ...) doesn&#39;t follow the redirect, but just stops<br>
&gt;&gt;&gt; and leaves an empty file behind. No error, no nothing. Is this intentional?<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; I&#39;d rather not use a specific mirror...<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Michael<br>
&gt;&gt;&gt; _______________________________________________<br>
&gt;&gt;&gt; Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Visit other Kitware open-source projects at<br>
&gt;&gt;&gt; <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Please keep messages on-topic and check the CMake FAQ at:<br>
&gt;&gt;&gt; <a href="http://www.cmake.org/Wiki/CMake_FAQ" target="_blank">http://www.cmake.org/Wiki/CMake_FAQ</a><br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Follow this link to subscribe/unsubscribe:<br>
&gt;&gt;&gt; <a href="http://www.cmake.org/mailman/listinfo/cmake" target="_blank">http://www.cmake.org/mailman/listinfo/cmake</a><br>
&gt;&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
<br>
</div></div></blockquote></div><br>