aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/cmake/external/png.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/contrib/cmake/external/png.cmake')
-rw-r--r--tensorflow/contrib/cmake/external/png.cmake19
1 files changed, 10 insertions, 9 deletions
diff --git a/tensorflow/contrib/cmake/external/png.cmake b/tensorflow/contrib/cmake/external/png.cmake
index 6cd66a6599..ad2af01bc0 100644
--- a/tensorflow/contrib/cmake/external/png.cmake
+++ b/tensorflow/contrib/cmake/external/png.cmake
@@ -15,32 +15,33 @@
include (ExternalProject)
set(png_INCLUDE_DIR ${CMAKE_CURRENT_BINARY_DIR}/external/png_archive)
-set(png_URL https://storage.googleapis.com/libpng-public-archive/libpng-1.2.53.tar.gz)
-set(png_HASH SHA256=e05c9056d7f323088fd7824d8c6acc03a4a758c4b4916715924edc5dd3223a72)
+set(png_URL https://mirror.bazel.build/github.com/glennrp/libpng/archive/v1.6.34.tar.gz)
+set(png_HASH SHA256=e45ce5f68b1d80e2cb9a2b601605b374bdf51e1798ef1c2c2bd62131dfcf9eef)
set(png_BUILD ${CMAKE_BINARY_DIR}/png/src/png)
set(png_INSTALL ${CMAKE_BINARY_DIR}/png/install)
if(WIN32)
if(${CMAKE_GENERATOR} MATCHES "Visual Studio.*")
set(png_STATIC_LIBRARIES
- debug ${CMAKE_BINARY_DIR}/png/install/lib/libpng12_staticd.lib
- optimized ${CMAKE_BINARY_DIR}/png/install/lib/libpng12_static.lib)
+ debug ${CMAKE_BINARY_DIR}/png/install/lib/libpng16_staticd.lib
+ optimized ${CMAKE_BINARY_DIR}/png/install/lib/libpng16_static.lib)
else()
if(CMAKE_BUILD_TYPE EQUAL Debug)
set(png_STATIC_LIBRARIES
- ${CMAKE_BINARY_DIR}/png/install/lib/libpng12_staticd.lib)
+ ${CMAKE_BINARY_DIR}/png/install/lib/libpng16_staticd.lib)
else()
set(png_STATIC_LIBRARIES
- ${CMAKE_BINARY_DIR}/png/install/lib/libpng12_static.lib)
+ ${CMAKE_BINARY_DIR}/png/install/lib/libpng16_static.lib)
endif()
endif()
else()
- set(png_STATIC_LIBRARIES ${CMAKE_BINARY_DIR}/png/install/lib/libpng12.a)
+ set(png_STATIC_LIBRARIES ${CMAKE_BINARY_DIR}/png/install/lib/libpng16.a)
endif()
set(png_HEADERS
- "${png_INSTALL}/include/libpng12/png.h"
- "${png_INSTALL}/include/libpng12/pngconf.h"
+ "${png_INSTALL}/include/libpng16/png.h"
+ "${png_INSTALL}/include/libpng16/pngconf.h"
+ "${png_INSTALL}/include/libpng16/pnglibconf.h"
)
ExternalProject_Add(png