You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kudu.apache.org by to...@apache.org on 2017/01/24 17:19:08 UTC

[3/3] kudu git commit: Fix dependencies for util_compression target

Fix dependencies for util_compression target

A few dependencies were missing which caused build failures on OSX.

Verified by running ldd -r build/debug/lib/libkudu_util_compression.so
and checking there were no undefined symbols after the fix.

Change-Id: Ia42a73a6e1850dfb151e6624374acb472c9621a3
Reviewed-on: http://gerrit.cloudera.org:8080/5778
Tested-by: Kudu Jenkins
Reviewed-by: Alexey Serbin <as...@cloudera.com>


Project: http://git-wip-us.apache.org/repos/asf/kudu/repo
Commit: http://git-wip-us.apache.org/repos/asf/kudu/commit/ff38c6b5
Tree: http://git-wip-us.apache.org/repos/asf/kudu/tree/ff38c6b5
Diff: http://git-wip-us.apache.org/repos/asf/kudu/diff/ff38c6b5

Branch: refs/heads/master
Commit: ff38c6b5a69333a9aba47a0862b3d05b500acebb
Parents: 3ef4fba
Author: Todd Lipcon <to...@apache.org>
Authored: Mon Jan 23 21:39:12 2017 -0800
Committer: Todd Lipcon <to...@apache.org>
Committed: Tue Jan 24 17:08:09 2017 +0000

----------------------------------------------------------------------
 src/kudu/util/CMakeLists.txt | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kudu/blob/ff38c6b5/src/kudu/util/CMakeLists.txt
----------------------------------------------------------------------
diff --git a/src/kudu/util/CMakeLists.txt b/src/kudu/util/CMakeLists.txt
index 4e3cba9..f2c0cde 100644
--- a/src/kudu/util/CMakeLists.txt
+++ b/src/kudu/util/CMakeLists.txt
@@ -247,8 +247,11 @@ ADD_EXPORTABLE_LIBRARY(kudu_util
 set(UTIL_COMPRESSION_SRCS
   compression/compression_codec.cc)
 set(UTIL_COMPRESSION_LIBS
+  kudu_util
   util_compression_proto
-  util
+
+  glog
+  gutil
   lz4
   snappy
   zlib)