Repository: mesos Updated Branches: refs/heads/master e488e6dd3 -> 7148db0c8
Patched configure.ac to include $LIBS in the CRAM-MD5 check. Adds $LIBS to build path of the CRAM-MD5 test. See MESOS-3170. Review: https://reviews.apache.org/r/36910 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/7148db0c Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/7148db0c Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/7148db0c Branch: refs/heads/master Commit: 7148db0c851eaf56d564a376324d2b21ad518c33 Parents: e488e6d Author: Chris Heller <[email protected]> Authored: Wed Aug 5 17:17:03 2015 +0200 Committer: Till Toenshoff <[email protected]> Committed: Wed Aug 5 17:17:03 2015 +0200 ---------------------------------------------------------------------- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/mesos/blob/7148db0c/configure.ac ---------------------------------------------------------------------- diff --git a/configure.ac b/configure.ac index 9438d88..230e90d 100644 --- a/configure.ac +++ b/configure.ac @@ -837,7 +837,7 @@ __EOF__ # distcheck failure on OSX by leaking build artefacts (.dsym). AS_IF([test "x${ac_cv_env_CFLAGS_set}" = "x"], [SASL_TEST_CFLAGS=""], [SASL_TEST_CFLAGS=$CFLAGS]) -$CC crammd5_installed.c $CPPFLAGS $SASL_TEST_CFLAGS $LDFLAGS -lsasl2 \ +$CC crammd5_installed.c $CPPFLAGS $SASL_TEST_CFLAGS $LDFLAGS -lsasl2 $LIBS \ -o crammd5_installed 2>&1 >/dev/null # Run the test binary and get its output.
