Thanks, Michael and Aaron!<br><br>I pushed your patch (+ a SetError line) here in CMake &#39;next&#39; :<br><a href="http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=ef491f78218e255339278656bf6dc26073fef264">http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=ef491f78218e255339278656bf6dc26073fef264</a><br>
<br><br><div class="gmail_quote">On Fri, Jun 4, 2010 at 11:38 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: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
The following patch does work for me:<br>
<br>
diff --git a/Source/cmFileCommand.cxx b/Source/cmFileCommand.cxx<br>
index 5611527..3b18e0b 100644<br>
--- a/Source/cmFileCommand.cxx<br>
+++ b/Source/cmFileCommand.cxx<br>
@@ -2629,6 +2629,14 @@ cmFileCommand::HandleDownloadCommand(std::vector&lt;std::string&gt;<br>
     return false;<br>
     }<br>
<br>
+  res = ::curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L);<br>
+  if (res != CURLE_OK)<br>
+    {<br>
+    std::string errstring = &quot;FILE(DOWNLOAD ) error; cannot set follow-redirect option: &quot;;<br>
+    errstring += ::curl_easy_strerror(res);<br>
+    return false;<br>
+    }<br>
+<br>
   if(verboseLog.size())<br>
     {<br>
     res = ::curl_easy_setopt(curl, CURLOPT_VERBOSE, 1);<br>
--<br>
<br>
However, I didn&#39;t test it thoroughly, and am not sure whether it would be a good idea to restrict the protocols and number of redirects.<br>
<br>
Michael<br>
<div><div></div><div class="h5"><br>
On 4. Jun, 2010, at 17:08 , &lt;<a href="mailto:aaron.meadows@thomsonreuters.com">aaron.meadows@thomsonreuters.com</a>&gt; &lt;<a href="mailto:aaron.meadows@thomsonreuters.com">aaron.meadows@thomsonreuters.com</a>&gt; wrote:<br>

<br>
&gt; I don&#39;t know what options are compiled in for CMake, but it looks like<br>
&gt; this is the libcurl option required to follow redirects:<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; CURLOPT_FOLLOWLOCATION<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; A parameter set to 1 tells the library to follow any Location: header<br>
&gt; that the server sends as part of an HTTP header.<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; This means that the library will re-send the same request on the new<br>
&gt; location and follow new Location: headers all the way until no more such<br>
&gt; headers are returned. CURLOPT_MAXREDIRS can be used to limit the number<br>
&gt; of redirects libcurl will follow.<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; Since 7.19.4, libcurl can limit what protocols it will automatically<br>
&gt; follow. The accepted protocols are set with CURLOPT_REDIR_PROTOCOLS and<br>
&gt; it excludes the FILE protocol by default.<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; Aaron C. Meadows<br>
&gt;<br>
&gt; ________________________________<br>
&gt;<br>
&gt; From: <a href="mailto:cmake-bounces@cmake.org">cmake-bounces@cmake.org</a> [mailto:<a href="mailto:cmake-bounces@cmake.org">cmake-bounces@cmake.org</a>] On Behalf<br>
&gt; Of David Cole<br>
&gt; Sent: Friday, June 04, 2010 9:47 AM<br>
&gt; To: Michael Wild<br>
&gt; Cc: CMake List<br>
&gt; Subject: Re: [CMake] file(DOWNLOAD) and HTTP 302 (redirect)<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; On Fri, Jun 4, 2010 at 8:03 AM, Michael Wild &lt;<a href="mailto:themiwi@gmail.com">themiwi@gmail.com</a>&gt; wrote:<br>
&gt;<br>
&gt; The log looks like this (I&#39;ve put a message(&quot;log = ${log}&quot;) into<br>
&gt; ExternalProject.cmake to get this, since the numeric error code is 0):<br>
&gt;<br>
&gt; &lt;snip&gt;<br>
&gt; -- downloading...<br>
&gt;<br>
&gt; src=&#39;<a href="http://downloads.sourceforge.net/project/freefoam/ThirdParty/zlib/z" target="_blank">http://downloads.sourceforge.net/project/freefoam/ThirdParty/zlib/z</a><br>
&gt; lib-1.2.5.tar.gz&#39;<br>
&gt;<br>
&gt; dst=&#39;/Users/mwild/Projects/FreeFOAM/build-pu/ThirdParty/zlib/src/zlib-1.<br>
&gt; 2.5.tar.gz&#39;<br>
&gt;    timeout=&#39;none&#39;<br>
&gt; log = About to connect() to <a href="http://downloads.sourceforge.net" target="_blank">downloads.sourceforge.net</a> port 80 (#0)<br>
&gt; Trying 216.34.181.59... connected<br>
&gt; Connected to <a href="http://downloads.sourceforge.net" target="_blank">downloads.sourceforge.net</a> (216.34.181.59) port 80 (#0)<br>
&gt; GET /project/freefoam/ThirdParty/zlib/zlib-1.2.5.tar.gz HTTP/1.1<br>
&gt; Host: <a href="http://downloads.sourceforge.net" target="_blank">downloads.sourceforge.net</a><br>
&gt; Accept: */*<br>
&gt;<br>
&gt; HTTP/1.1 302 Found<br>
&gt; X-Powered-By: PHP/5.2.9<br>
&gt; Content-Disposition: attachment; filename=&quot;zlib-1.2.5.tar.gz&quot;<br>
&gt; Location:<br>
&gt; <a href="http://surfnet.dl.sourceforge.net/project/freefoam/ThirdParty/zlib/zlib-" target="_blank">http://surfnet.dl.sourceforge.net/project/freefoam/ThirdParty/zlib/zlib-</a><br>
&gt; 1.2.5.tar.gz<br>
&gt; Content-type<br>
&gt; &lt;<a href="http://surfnet.dl.sourceforge.net/project/freefoam/ThirdParty/zlib/zlib" target="_blank">http://surfnet.dl.sourceforge.net/project/freefoam/ThirdParty/zlib/zlib</a><br>
</div></div>&gt; -1.2.5.tar.gz%0d%0aContent-type&gt; : text/html<br>
<div><div></div><div class="h5">&gt; Content-Length: 0<br>
&gt; Date: Fri, 04 Jun 2010 07:52:13 GMT<br>
&gt; Server: lighttpd/1.4.26<br>
&gt;<br>
&gt; Connection #0 to host <a href="http://downloads.sourceforge.net" target="_blank">downloads.sourceforge.net</a> left intact<br>
&gt; Closing connection #0<br>
&gt;<br>
&gt; -- downloading... done<br>
&gt; &lt;/snip&gt;<br>
&gt;<br>
&gt; So you see, CMake really thinks this succeeded.<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; Hmm. I wonder if there&#39;s some sort of curl option we should be passing<br>
&gt; to get redirects to work automatically...?<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;       I really am looking forward to the EXPECTED_MD5 feature, please<br>
&gt; also make it available through ExternalProject_Add! Currently I&#39;m doing<br>
&gt; this manually via an additional step, but it&#39;s awfully fragile...<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; It is. That was actually the main motivation for the additional<br>
&gt; file(DOWNLOAD arg... In CMake &#39;next&#39; there&#39;s a URL_MD5 arg to<br>
&gt; ExternalProject_Add now.<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;       Michael<br>
&gt;<br>
&gt;<br>
&gt;       On 4. Jun, 2010, at 13:57 , David Cole wrote:<br>
&gt;<br>
&gt;       &gt; I&#39;m pretty sure the original intent was for file(DOWNLOAD ...)<br>
&gt; to not raise<br>
&gt;       &gt; errors so that scripts can analyze status and log and decide<br>
&gt; what to do next<br>
&gt;       &gt; rather than forcing a CMake error...<br>
&gt;       &gt;<br>
&gt;       &gt; I recently added EXPECTED_MD5 to file(DOWNLOAD in the &#39;next&#39;<br>
&gt; branch of<br>
&gt;       &gt; CMake. If a download fails when there&#39;s an expected MD5 sum<br>
&gt; given, then it<br>
&gt;       &gt; *does* raise an error. Perhaps you&#39;ll find that useful in the<br>
&gt; next<br>
&gt;       &gt; release...<br>
&gt;       &gt;<br>
&gt;       &gt; Cheers,<br>
&gt;       &gt; David C.<br>
&gt;       &gt;<br>
&gt;       &gt;<br>
&gt;       &gt; On Fri, Jun 4, 2010 at 7:55 AM, David Cole<br>
&gt; &lt;<a href="mailto:david.cole@kitware.com">david.cole@kitware.com</a>&gt; wrote:<br>
&gt;       &gt;<br>
&gt;       &gt;&gt; What if you do something this...? What do status and log tell<br>
&gt; you?<br>
&gt;       &gt;&gt;<br>
&gt;       &gt;&gt; set(remote &quot;http://......&quot;)<br>
&gt;       &gt;&gt; set(local &quot;some file name&quot;)<br>
&gt;       &gt;&gt;<br>
&gt;       &gt;&gt; file(DOWNLOAD<br>
&gt;       &gt;&gt;<br>
&gt;       &gt;&gt;  &quot;${remote}&quot;<br>
&gt;       &gt;&gt;<br>
&gt;       &gt;&gt;  &quot;${local}&quot;<br>
&gt;       &gt;&gt;<br>
&gt;       &gt;&gt;  STATUS status<br>
&gt;       &gt;&gt;<br>
&gt;       &gt;&gt;  LOG log)<br>
&gt;       &gt;&gt;<br>
&gt;       &gt;&gt;<br>
&gt;       &gt;&gt; list(GET status 0 status_code)<br>
&gt;       &gt;&gt;<br>
&gt;       &gt;&gt; list(GET status 1 status_string)<br>
&gt;       &gt;&gt;<br>
&gt;       &gt;&gt;<br>
&gt;       &gt;&gt; if(NOT status_code EQUAL 0)<br>
&gt;       &gt;&gt;<br>
&gt;       &gt;&gt;  message(FATAL_ERROR &quot;error: downloading &#39;${remote}&#39; failed<br>
&gt;       &gt;&gt;<br>
&gt;       &gt;&gt;  status_code: ${status_code}<br>
&gt;       &gt;&gt;<br>
&gt;       &gt;&gt;  status_string: ${status_string}<br>
&gt;       &gt;&gt;<br>
&gt;       &gt;&gt;  log: ${log}<br>
&gt;       &gt;&gt;<br>
&gt;       &gt;&gt; &quot;)<br>
&gt;       &gt;&gt;<br>
&gt;       &gt;&gt; endif()<br>
&gt;       &gt;&gt;<br>
&gt;       &gt;&gt;<br>
&gt;       &gt;&gt;<br>
&gt;       &gt;&gt; On Fri, Jun 4, 2010 at 4:00 AM, Michael Wild<br>
&gt; &lt;<a href="mailto:themiwi@gmail.com">themiwi@gmail.com</a>&gt; wrote:<br>
&gt;       &gt;&gt;<br>
&gt;       &gt;&gt;&gt; When downloading something from<br>
</div></div>&gt; <a href="http://downloads.sourceforge.net/" target="_blank">http://downloads.sourceforge.net/</a>. &lt;<a href="http://downloads.sourceforge.net/" target="_blank">http://downloads.sourceforge.net/</a>&gt;<br>

<div><div></div><div class="h5">&gt; .. you<br>
&gt;       &gt;&gt;&gt; always get a 302 redirect to one of the many mirror servers.<br>
&gt; Unfortunately,<br>
&gt;       &gt;&gt;&gt; it seems that file(DOWNLOAD ...) doesn&#39;t follow the<br>
&gt; redirect, but just stops<br>
&gt;       &gt;&gt;&gt; and leaves an empty file behind. No error, no nothing. Is<br>
&gt; this intentional?<br>
&gt;       &gt;&gt;&gt;<br>
&gt;       &gt;&gt;&gt; I&#39;d rather not use a specific mirror...<br>
&gt;       &gt;&gt;&gt;<br>
&gt;       &gt;&gt;&gt; Michael<br>
&gt;       &gt;&gt;&gt; _______________________________________________<br>
&gt;       &gt;&gt;&gt; Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
&gt;       &gt;&gt;&gt;<br>
&gt;       &gt;&gt;&gt; Visit other Kitware open-source projects at<br>
&gt;       &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;&gt;<br>
&gt;       &gt;&gt;&gt; Please keep messages on-topic and check the CMake FAQ at:<br>
&gt;       &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;&gt;<br>
&gt;       &gt;&gt;&gt; Follow this link to subscribe/unsubscribe:<br>
&gt;       &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;&gt;<br>
&gt;       &gt;&gt;<br>
&gt;       &gt;&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; This email was sent to you by Thomson Reuters, the global news and information company.<br>
&gt; Any views expressed in this message are those of the individual sender, except where the sender specifically states them to be the views of Thomson Reuters.<br>
&gt;<br>
&gt; _______________________________________________<br>
&gt; Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
&gt;<br>
&gt; Visit other Kitware open-source projects at <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
&gt;<br>
&gt; Please keep messages on-topic and check the CMake FAQ at: <a href="http://www.cmake.org/Wiki/CMake_FAQ" target="_blank">http://www.cmake.org/Wiki/CMake_FAQ</a><br>
&gt;<br>
&gt; Follow this link to subscribe/unsubscribe:<br>
&gt; <a href="http://www.cmake.org/mailman/listinfo/cmake" target="_blank">http://www.cmake.org/mailman/listinfo/cmake</a><br>
<br>
</div></div></blockquote></div><br>