Repository: mesos Updated Branches: refs/heads/master 03a4c596d -> c010c5c93
Fixed LDFLAGS for prefix installation of libev. Review: https://reviews.apache.org/r/24733 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/c010c5c9 Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/c010c5c9 Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/c010c5c9 Branch: refs/heads/master Commit: c010c5c938165d7ed8213c6b27bf891a0026a56e Parents: 03a4c59 Author: Vinod Kone <[email protected]> Authored: Thu Aug 14 21:00:54 2014 -0700 Committer: Vinod Kone <[email protected]> Committed: Thu Aug 14 22:05:55 2014 -0700 ---------------------------------------------------------------------- 3rdparty/libprocess/configure.ac | 6 ++++++ 1 file changed, 6 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/mesos/blob/c010c5c9/3rdparty/libprocess/configure.ac ---------------------------------------------------------------------- diff --git a/3rdparty/libprocess/configure.ac b/3rdparty/libprocess/configure.ac index f552e60..7ba4fad 100644 --- a/3rdparty/libprocess/configure.ac +++ b/3rdparty/libprocess/configure.ac @@ -166,6 +166,11 @@ if test -n "`echo $with_picojson`"; then CPPFLAGS="$CPPFLAGS -I${with_picojson}/include" fi +if test -n "`echo $with_libev`"; then + CPPFLAGS="$CPPFLAGS -I${with_libev}/include" + LDFLAGS="$LDFLAGS -L${with_libev}/lib" +fi + if test -n "`echo $with_glog`"; then CPPFLAGS="$CPPFLAGS -I${with_glog}/src" LDFLAGS="$LDFLAGS -L${with_glog}/lib" @@ -189,6 +194,7 @@ fi if test -n "`echo $with_http-parser`"; then CPPFLAGS="$CPPFLAGS -I${with_http-parser}/include" + LDFLAGS="$LDFLAGS -I${with_http-parser}/lib" fi if test -n "`echo $with_protobuf`"; then
