Update png_archive version to 1.6.35

PiperOrigin-RevId: 248373911
This commit is contained in:
Mihai Maruseac 2019-05-15 11:42:22 -07:00 committed by Gunhan Gulsoy
parent 714572bd06
commit a5c387b5ed
2 changed files with 6 additions and 6 deletions

View File

@ -16,8 +16,8 @@ include (ExternalProject)
include (GNUInstallDirs)
set(png_INCLUDE_DIR ${CMAKE_CURRENT_BINARY_DIR}/external/png_archive)
set(png_URL https://mirror.bazel.build/github.com/glennrp/libpng/archive/v1.6.34.tar.gz)
set(png_HASH SHA256=e45ce5f68b1d80e2cb9a2b601605b374bdf51e1798ef1c2c2bd62131dfcf9eef)
set(png_URL https://mirror.bazel.build/github.com/glennrp/libpng/archive/v1.6.35.tar.gz)
set(png_HASH SHA256=6d59d6a154ccbb772ec11772cb8f8beb0d382b61e7ccc62435bf7311c9f4b210)
set(png_BUILD ${CMAKE_BINARY_DIR}/png/src/png)
set(png_INSTALL ${CMAKE_BINARY_DIR}/png/install)

View File

@ -230,12 +230,12 @@ def tf_workspace(path_prefix = "", tf_repo_name = ""):
name = "png_archive",
build_file = clean_dep("//third_party:png.BUILD"),
patch_file = clean_dep("//third_party:png_fix_rpi.patch"),
sha256 = "e45ce5f68b1d80e2cb9a2b601605b374bdf51e1798ef1c2c2bd62131dfcf9eef",
strip_prefix = "libpng-1.6.34",
sha256 = "6d59d6a154ccbb772ec11772cb8f8beb0d382b61e7ccc62435bf7311c9f4b210",
strip_prefix = "libpng-1.6.35",
system_build_file = clean_dep("//third_party/systemlibs:png.BUILD"),
urls = [
"https://mirror.bazel.build/github.com/glennrp/libpng/archive/v1.6.34.tar.gz",
"https://github.com/glennrp/libpng/archive/v1.6.34.tar.gz",
"http://mirror.tensorflow.org/github.com/glennrp/libpng/archive/v1.6.35.tar.gz",
"https://github.com/glennrp/libpng/archive/v1.6.35.tar.gz",
],
)