Repository: hadoop Updated Branches: refs/heads/branch-2 b085c5ef6 -> a0450b96a
HDFS-8922. Link the native_mini_dfs test library with libdl, since IBM Java requires it (Ayappan via Colin P. McCabe) (cherry picked from commit 7642f64c24961d2b4772591a0957e2699162a083) Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/a0450b96 Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/a0450b96 Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/a0450b96 Branch: refs/heads/branch-2 Commit: a0450b96a22c30384f593d127a57f953ecaa1202 Parents: b085c5e Author: Colin Patrick Mccabe <[email protected]> Authored: Thu Aug 20 13:57:32 2015 -0700 Committer: Colin Patrick Mccabe <[email protected]> Committed: Thu Aug 20 14:40:37 2015 -0700 ---------------------------------------------------------------------- hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt | 3 +++ hadoop-hdfs-project/hadoop-hdfs/src/CMakeLists.txt | 1 + 2 files changed, 4 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/a0450b96/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt ---------------------------------------------------------------------- diff --git a/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt b/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt index c842dc9..842fb2e 100644 --- a/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt +++ b/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt @@ -847,6 +847,9 @@ Release 2.8.0 - UNRELEASED HDFS-8908. TestAppendSnapshotTruncate may fail with IOException: Failed to replace a bad datanode. (Tsz Wo Nicholas Sze via yliu) + HDFS-8922. Link the native_mini_dfs test library with libdl, since IBM Java + requires it (Ayappan via Colin P. McCabe) + Release 2.7.2 - UNRELEASED INCOMPATIBLE CHANGES http://git-wip-us.apache.org/repos/asf/hadoop/blob/a0450b96/hadoop-hdfs-project/hadoop-hdfs/src/CMakeLists.txt ---------------------------------------------------------------------- diff --git a/hadoop-hdfs-project/hadoop-hdfs/src/CMakeLists.txt b/hadoop-hdfs-project/hadoop-hdfs/src/CMakeLists.txt index b4a3b40..2f8620b 100644 --- a/hadoop-hdfs-project/hadoop-hdfs/src/CMakeLists.txt +++ b/hadoop-hdfs-project/hadoop-hdfs/src/CMakeLists.txt @@ -144,6 +144,7 @@ add_library(native_mini_dfs ) target_link_libraries(native_mini_dfs ${JAVA_JVM_LIBRARY} + ${LIB_DL} ${OS_LINK_LIBRARIES} )
