You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@heron.apache.org by ni...@apache.org on 2021/02/01 13:41:11 UTC

[incubator-heron] branch master updated: Reverting Glog back to 0.3.5 (#3672)

This is an automated email from the ASF dual-hosted git repository.

nicknezis pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-heron.git


The following commit(s) were added to refs/heads/master by this push:
     new bfdbd43  Reverting Glog back to 0.3.5 (#3672)
bfdbd43 is described below

commit bfdbd4382f28ded4bf792f750e7e7da9c3ac83ce
Author: Nicholas Nezis <ni...@gmail.com>
AuthorDate: Mon Feb 1 08:40:59 2021 -0500

    Reverting Glog back to 0.3.5 (#3672)
---
 WORKSPACE                   | 5 +++--
 third_party/glog/glog.BUILD | 2 --
 2 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/WORKSPACE b/WORKSPACE
index e44193f..4281a2a 100644
--- a/WORKSPACE
+++ b/WORKSPACE
@@ -279,8 +279,9 @@ http_archive(
 http_archive(
     name = "com_github_google_glog",
     build_file = "@//:third_party/glog/glog.BUILD",
-    strip_prefix = "glog-0.4.0",
-    urls = ["https://github.com/google/glog/archive/v0.4.0.tar.gz"],
+    sha256 = "7580e408a2c0b5a89ca214739978ce6ff480b5e7d8d7698a2aa92fadc484d1e0",
+    strip_prefix = "glog-0.3.5",
+    urls = ["https://github.com/google/glog/archive/v0.3.5.tar.gz"],
 )
 
 http_archive(
diff --git a/third_party/glog/glog.BUILD b/third_party/glog/glog.BUILD
index 34e83b1..716c38c 100644
--- a/third_party/glog/glog.BUILD
+++ b/third_party/glog/glog.BUILD
@@ -41,7 +41,6 @@ common_script = [
 ]
 
 mac_script = "\n".join(common_script + [
-    './autogen.sh',
     './configure --prefix=$$INSTALL_DIR --enable-shared=no',
     'make install',
     'rm -rf $$TMP_DIR',
@@ -51,7 +50,6 @@ linux_script = "\n".join(common_script + [
      'export VAR_LIBS="-Wl,--rpath -Wl,$$UNWIND_DIR/lib -L$$UNWIND_DIR/lib"',
      'export VAR_INCL="-I$$UNWIND_DIR/include"',
      'export VAR_LD="-L$$UNWIND_DIR/lib"',
-     './autogen.sh',
      'autoreconf -f -i',
      './configure --prefix=$$INSTALL_DIR --enable-shared=no LIBS="$$VAR_LIBS" CPPFLAGS="$$VAR_INCL" LDFLAGS="$$VAR_LD"',
      'make install LIBS="$$VAR_LIBS" CPPFLAGS="$$VAR_INCL" LDFLAGS="$$VAR_LD"',