[hipl-dev] [Branch ~hipl-core/hipl/trunk] Rev 5142: Drop unnecessary trailing commas from autoconf macros.

  • From: noreply@xxxxxxxxxxxxx
  • To: HIPL core team <hipl-dev@xxxxxxxxxxxxx>
  • Date: Fri, 12 Nov 2010 15:21:40 -0000

------------------------------------------------------------
revno: 5142
committer: Diego Biurrun <diego@xxxxxxxxxx>
branch nick: trunk
timestamp: Fri 2010-11-12 16:15:18 +0100
message:
  Drop unnecessary trailing commas from autoconf macros.
  
  It is possible to pass less than the full number of arguments to autoconf
  macros. In this case, defaults will be used. Leaving the left out arguments
  empty achieves the same thing. Since we just leave out unused arguments
  everywhere else, drop the trailing commas from a few macro invocations.
modified:
  configure.ac


--
lp:hipl
https://code.launchpad.net/~hipl-core/hipl/trunk

Your team HIPL core team is subscribed to branch lp:hipl.
To unsubscribe from this branch go to 
https://code.launchpad.net/~hipl-core/hipl/trunk/+edit-subscription
=== modified file 'configure.ac'
--- configure.ac        2010-10-29 12:51:08 +0000
+++ configure.ac        2010-11-12 15:15:18 +0000
@@ -36,12 +36,12 @@
 # Check for ec crypto in openssl
 AC_CHECK_FUNC(EC_KEY_new,
               AC_DEFINE(HAVE_EC_CRYPTO)
-              AH_TEMPLATE(HAVE_EC_CRYPTO, [Defined to 1 if ec is enabled.]),)
+              AH_TEMPLATE(HAVE_EC_CRYPTO, [Defined to 1 if ec is enabled.]))
 # We need the math lib in the registration extension.
 AC_CHECK_LIB(m, pow,, AC_MSG_ERROR(Math lib not found))
 # The unit tests depend on 'check' (http://check.sourceforge.net/)
 AC_CHECK_LIB(check, suite_create,,
-             AC_MSG_WARN(libcheck (http://check.sourceforge.net/) not found: 
HIPL unit tests are not available),)
+             AC_MSG_WARN(libcheck (http://check.sourceforge.net/) not found: 
HIPL unit tests are not available))
 AM_CONDITIONAL(HIP_UNITTESTS, test x"$ac_cv_lib_check_suite_create" = xyes)
 
 # If no --prefix option is passed to configure, $prefix is empty. But we want

Other related posts:

  • » [hipl-dev] [Branch ~hipl-core/hipl/trunk] Rev 5142: Drop unnecessary trailing commas from autoconf macros. - noreply