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

  • From: Diego Biurrun <diego@xxxxxxxxxx>
  • To: pisa-src@xxxxxxxxxxxxx
  • Date: Tue, 10 Nov 2009 20:12:51 +0100

Author: biurrun
Date: Tue Nov 10 20:12:50 2009
New Revision: 1627

Log:
Macro calls appearing as arguments of macro calls should be quoted.

Modified:
   trunk/configure.ac

Modified: trunk/configure.ac
==============================================================================
--- trunk/configure.ac  Tue Nov 10 19:21:44 2009        (r1626)
+++ trunk/configure.ac  Tue Nov 10 20:12:50 2009        (r1627)
@@ -27,17 +27,16 @@
 
 
 # library checks
-AC_CHECK_LIB([crypto], DSA_generate_key,, AC_MSG_ERROR(OpenSSL not found))
-AC_CHECK_LIB([config], [config_setting_index],,
-             AC_MSG_ERROR(libconfig not found))
-AC_CHECK_LIB(pthread, pthread_create,,AC_MSG_ERROR(libpthread not found))
+AC_CHECK_LIB([crypto], DSA_generate_key,, [AC_MSG_ERROR(OpenSSL not found)])
+AC_CHECK_LIB([config], [config_setting_index],, [AC_MSG_ERROR(libconfig not 
found)])
+AC_CHECK_LIB(pthread, pthread_create,, [AC_MSG_ERROR(libpthread not found)])
 
 
 # compile-time options
 AC_MSG_CHECKING([whether to have verbose debug])
 AC_ARG_ENABLE(debug,
-              AC_HELP_STRING([--enable-debug],
-                             [debug mode (default=yes)]),
+              [AC_HELP_STRING([--enable-debug],
+                              [debug mode (default=yes)])],
               [enable_debug=$enableval],
               [enable_debug=yes])
 if test x"$enable_debug" = x"yes"; then
@@ -48,8 +47,8 @@
 
 AC_MSG_CHECKING([whether to use performance measurement])
 AC_ARG_ENABLE(performance,
-              AC_HELP_STRING([--enable-performance],
-                             [performance measurement (default=no)]),
+              [AC_HELP_STRING([--enable-performance],
+                              [performance measurement (default=no)])],
               [enable_performance=$enableval],
               [enable_performance=no])
 if test x"$enable_performance" = x"yes"; then
@@ -61,8 +60,8 @@
 
 AC_MSG_CHECKING([whether to use logging])
 AC_ARG_ENABLE(logging,
-              AC_HELP_STRING([--enable-logging],
-                             [logging (default=no)]),
+              [AC_HELP_STRING([--enable-logging],
+                              [logging (default=no)])],
               [enable_logging=$enableval],
               [enable_logging=no])
 if test x"$enable_logging" = x"yes"; then

Other related posts:

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