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

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

Author: biurrun
Date: Tue Nov 10 20:32:37 2009
New Revision: 1629

Log:
Drop some unnecessary m4 macro quotes.
Quoting now is much less defensive than before, but it is consistent.

Modified:
   trunk/configure.ac

Modified: trunk/configure.ac
==============================================================================
--- trunk/configure.ac  Tue Nov 10 20:24:07 2009        (r1628)
+++ trunk/configure.ac  Tue Nov 10 20:32:37 2009        (r1629)
@@ -5,31 +5,31 @@
 # All rights reserved.
 
 # Set PISA version to Subversion revision number (currently not used).
-m4_define([PISA_VERSION_MAJOR], 0.0)
-m4_define([PISA_VERSION_MINOR], [m4_esyscmd([svn info | grep Revision: | cut 
-d' ' -f2 | tr -d '\n'])])
-m4_define([PISA_VERSION], [PISA_VERSION_MAJOR.PISA_VERSION_MINOR])
+m4_define(PISA_VERSION_MAJOR, 0.0)
+m4_define(PISA_VERSION_MINOR, [m4_esyscmd(svn info | grep Revision: | cut -d' 
' -f2 | tr -d '\n')])
+m4_define(PISA_VERSION, PISA_VERSION_MAJOR.PISA_VERSION_MINOR)
 
-AC_INIT(pisa, [PISA_VERSION], pisa@xxxxxxxxxxxxx)
+AC_INIT(pisa, PISA_VERSION, pisa@xxxxxxxxxxxxx)
 
 AC_CONFIG_AUX_DIR(config)
-AC_CONFIG_FILES([Makefile])
-AC_CONFIG_HEADERS([config.h])
-AC_CONFIG_MACRO_DIR([m4])
+AC_CONFIG_FILES(Makefile)
+AC_CONFIG_HEADERS(config.h)
+AC_CONFIG_MACRO_DIR(m4)
 
-AM_INIT_AUTOMAKE([foreign subdir-objects])
+AM_INIT_AUTOMAKE(foreign subdir-objects)
 
 
 # program checks
 AC_PROG_CC
 AC_PROG_INSTALL
 AC_PROG_LN_S
-AC_PROG_LIBTOOL([disable-shared])
+AC_PROG_LIBTOOL(disable-shared)
 
 
 # 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
@@ -86,7 +86,7 @@
 
 # This is needed to export the _expanded_ value of the variable to config.h.
 AC_DEFINE_UNQUOTED(PISA_SYSCONFDIR, "$(eval echo $sysconfdir)")
-AH_TEMPLATE([PISA_SYSCONFDIR])
+AH_TEMPLATE(PISA_SYSCONFDIR)
 
 
 AC_OUTPUT

Other related posts:

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