You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by vi...@apache.org on 2014/08/15 17:44:06 UTC

git commit: Fixed LDFLAGS for prefix installation of libev.

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 <vi...@gmail.com>
Authored: Thu Aug 14 21:00:54 2014 -0700
Committer: Vinod Kone <vi...@gmail.com>
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