You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by be...@apache.org on 2014/05/03 04:36:19 UTC

[2/7] git commit: Updated indentation in libprocess configure.ac.

Updated indentation in libprocess configure.ac.


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

Branch: refs/heads/master
Commit: 2c4b2be892b0523e43260f54123fb7d8499321d7
Parents: 1a088bf
Author: Benjamin Hindman <be...@gmail.com>
Authored: Fri May 2 18:37:45 2014 -0700
Committer: Benjamin Hindman <be...@gmail.com>
Committed: Fri May 2 18:40:36 2014 -0700

----------------------------------------------------------------------
 3rdparty/libprocess/configure.ac | 30 +++++++++++++++---------------
 1 file changed, 15 insertions(+), 15 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/2c4b2be8/3rdparty/libprocess/configure.ac
----------------------------------------------------------------------
diff --git a/3rdparty/libprocess/configure.ac b/3rdparty/libprocess/configure.ac
index fc5e2ad..0c7cc6d 100644
--- a/3rdparty/libprocess/configure.ac
+++ b/3rdparty/libprocess/configure.ac
@@ -105,7 +105,7 @@ esac
 # Include directories used by package managers (e.g., MacPorts).
 if test "x$enable_bundled" = "xno" && \
    test "x$OS_NAME" = "xdarwin"; then
-    CPPFLAGS="$CPPFLAGS -I/opt/local/include"
+  CPPFLAGS="$CPPFLAGS -I/opt/local/include"
 fi
 
 # Used for conditionally building source files (e.g., only want to
@@ -113,20 +113,20 @@ fi
 AM_CONDITIONAL([OS_LINUX], [test "x$OS_NAME" = "xlinux"])
 
 if test -n "`echo $with_boost`"; then
-    CPPFLAGS="$CPPFLAGS -I${with_boost}/include"
+  CPPFLAGS="$CPPFLAGS -I${with_boost}/include"
 fi
 
 # Check if user has asked us to use a preinstalled Boost, or if they asked
 # us to ignore all bundled libraries while compiling and linking.
 if test "x$without_bundled_boost" = "xyes" || \
    test "x$enable_bundled" != "xyes"; then
-	# Check if headers and library were located.
-	AC_CHECK_HEADERS([boost/version.hpp], [found_boost=yes])
+  # Check if headers and library were located.
+  AC_CHECK_HEADERS([boost/version.hpp], [found_boost=yes])
 
-	if test "x$found_boost" = "xyes"; then
-		with_bundled_boost=no
-	else
-		AC_MSG_ERROR([cannot find Boost
+  if test "x$found_boost" = "xyes"; then
+    with_bundled_boost=no
+  else
+    AC_MSG_ERROR([cannot find Boost
 -------------------------------------------------------------------
 You have requested the use of a non-bundled Boost but no suitable
 Boost could be found.
@@ -136,9 +136,9 @@ path via --with-boost=DIR, or check that the path you provided is
 correct if you're already doing this.
 -------------------------------------------------------------------
 ])
-	fi
+  fi
 else
-    with_bundled_boost=yes
+  with_bundled_boost=yes
 fi
 
 AM_CONDITIONAL([WITH_BUNDLED_BOOST], [test "x$with_bundled_boost" = "xyes"])
@@ -225,11 +225,11 @@ AM_CONDITIONAL([HAS_GPERFTOOLS], [test "x$gperftools" = "xyes"])
 if test "x$with_zlib" = "xyes"; then
   AC_CHECK_LIB([z], [deflate, gzread, gzwrite, inflate], [],
                [AC_MSG_ERROR([cannot find libz
-  -------------------------------------------------------------------
-  This means HTTP responses will be slower because we cannot use
-  compression; you probably want to download and install zlib, but
-  you can get away without it by doing --without-zlib.
-  -------------------------------------------------------------------
+-------------------------------------------------------------------
+This means HTTP responses will be slower because we cannot use
+compression; you probably want to download and install zlib, but
+you can get away without it by doing --without-zlib.
+-------------------------------------------------------------------
   ])])
 fi