[pisa-src] r1578 - trunk/configure.ac

  • From: Diego Biurrun <diego@xxxxxxxxxx>
  • To: pisa-src@xxxxxxxxxxxxx
  • Date: Sat, 07 Nov 2009 21:49:15 +0100

Author: biurrun
Date: Sat Nov  7 21:49:14 2009
New Revision: 1578

Log:
whitespace cosmetics: fix indentation, break a long line

Modified:
   trunk/configure.ac

Modified: trunk/configure.ac
==============================================================================
--- trunk/configure.ac  Sat Nov  7 21:44:47 2009        (r1577)
+++ trunk/configure.ac  Sat Nov  7 21:49:14 2009        (r1578)
@@ -24,9 +24,10 @@
 
 # Checks for libraries.
 AC_CHECK_LIB(m, pow, AC_DEFINE(HAVE_LIBM_POW, 1,
-       [Define if you have pow function in libm.]), )
+             [Define if you have pow function in libm.]), )
 AC_CHECK_LIB([crypto], DSA_generate_key,, AC_MSG_ERROR(openssl lib not found))
-AC_CHECK_LIB([config], [config_setting_index],, AC_MSG_ERROR(libconfig lib not 
found))
+AC_CHECK_LIB([config], [config_setting_index],,
+             AC_MSG_ERROR(libconfig lib not found))
 AC_CHECK_LIB(pthread, pthread_create)
 
 # Checks for header files.
@@ -42,10 +43,10 @@
 AC_CHECK_TYPES([ptrdiff_t])
 
 AC_ARG_ENABLE(debug,
-             AC_HELP_STRING([--enable-debug],
-                            [enable debug mode (default=yes)]),
-             [enable_debug=$enableval],
-             [enable_debug=yes])
+              AC_HELP_STRING([--enable-debug],
+                             [enable debug mode (default=yes)]),
+              [enable_debug=$enableval],
+              [enable_debug=yes])
 AC_MSG_CHECKING([whether to have verbose debug])
 AC_MSG_RESULT([$enable_debug])
 if test x"$enable_debug" = x"yes"; then
@@ -54,10 +55,10 @@
 fi
 
 AC_ARG_ENABLE(performance,
-             AC_HELP_STRING([--enable-performance],
-                            [Performance measurement support (default=no)]),
-             [enable_performance=$enableval],
-             [enable_performance=no])
+              AC_HELP_STRING([--enable-performance],
+                             [Performance measurement support (default=no)]),
+              [enable_performance=$enableval],
+              [enable_performance=no])
 AC_MSG_CHECKING([whether to use performance measurement])
 AC_MSG_RESULT([$enable_performance])
 if test x"$enable_performance" = x"yes"; then
@@ -67,10 +68,10 @@
 AM_CONDITIONAL(PISA_PERFORMANCE, test x"$enable_performance" = x"yes")
 
 AC_ARG_ENABLE(logging,
-             AC_HELP_STRING([--enable-logging],
-                            [Logging (default=no)]),
-             [enable_logging=$enableval],
-             [enable_logging=no])
+              AC_HELP_STRING([--enable-logging],
+                             [Logging (default=no)]),
+              [enable_logging=$enableval],
+              [enable_logging=no])
 AC_MSG_CHECKING([whether to use logging])
 AC_MSG_RESULT([$enable_logging])
 if test x"$enable_logging" = x"yes"; then
@@ -80,10 +81,10 @@
 AM_CONDITIONAL(PISA_LOGGING, test x"$enable_logging" = x"yes")
 
 AC_ARG_ENABLE(openwrt,
-             AC_HELP_STRING([--enable-openwrt],
-                            [enable building of OpenWRT supporting parts 
(default=no)]),
-             [enable_openwrt=$enableval],
-             [enable_openwrt=no])
+              AC_HELP_STRING([--enable-openwrt],
+                             [enable building of OpenWRT supporting parts 
(default=no)]),
+              [enable_openwrt=$enableval],
+              [enable_openwrt=no])
 AC_MSG_CHECKING([whether to use OpenWRT])
 AC_MSG_RESULT([$enable_openwrt])
 if test x"$enable_openwrt" = x"yes"; then

Other related posts:

  • » [pisa-src] r1578 - trunk/configure.ac - Diego Biurrun