Repository: parquet-cpp
Updated Branches:
  refs/heads/master 3fee42058 -> 1c673ed5b


PARQUET-821: Fix zlib download

Author: Uwe L. Korn <[email protected]>

Closes #212 from xhochy/PARQUET-821 and squashes the following commits:

549461f [Uwe L. Korn] PARQUET-821: Fix zlib download


Project: http://git-wip-us.apache.org/repos/asf/parquet-cpp/repo
Commit: http://git-wip-us.apache.org/repos/asf/parquet-cpp/commit/1c673ed5
Tree: http://git-wip-us.apache.org/repos/asf/parquet-cpp/tree/1c673ed5
Diff: http://git-wip-us.apache.org/repos/asf/parquet-cpp/diff/1c673ed5

Branch: refs/heads/master
Commit: 1c673ed5b301dfe6af412278ee892cbbac9a6d9f
Parents: 3fee420
Author: Uwe L. Korn <[email protected]>
Authored: Tue Jan 3 07:54:46 2017 -0500
Committer: Wes McKinney <[email protected]>
Committed: Tue Jan 3 07:54:46 2017 -0500

----------------------------------------------------------------------
 cmake_modules/ThirdpartyToolchain.cmake | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/parquet-cpp/blob/1c673ed5/cmake_modules/ThirdpartyToolchain.cmake
----------------------------------------------------------------------
diff --git a/cmake_modules/ThirdpartyToolchain.cmake 
b/cmake_modules/ThirdpartyToolchain.cmake
index ea0b583..48fee19 100644
--- a/cmake_modules/ThirdpartyToolchain.cmake
+++ b/cmake_modules/ThirdpartyToolchain.cmake
@@ -190,12 +190,12 @@ if (NOT ZLIB_FOUND)
   if (CMAKE_VERSION VERSION_GREATER "3.2")
     # BUILD_BYPRODUCTS is a 3.2+ feature
     ExternalProject_Add(zlib_ep
-      URL "http://zlib.net/zlib-1.2.8.tar.gz";
+      URL "http://zlib.net/fossils/zlib-1.2.8.tar.gz";
       BUILD_BYPRODUCTS "${ZLIB_STATIC_LIB}"
       CMAKE_ARGS ${ZLIB_CMAKE_ARGS})
   else()
     ExternalProject_Add(zlib_ep
-      URL "http://zlib.net/zlib-1.2.8.tar.gz";
+      URL "http://zlib.net/fossils/zlib-1.2.8.tar.gz";
       CMAKE_ARGS ${ZLIB_CMAKE_ARGS})
   endif()
 else()

Reply via email to