[hipl-dev] [Branch ~hipl-core/hipl/trunk] Rev 5143: cosmetics: Fix a bunch of typos, add some more whitespace for readability.

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

------------------------------------------------------------
revno: 5143
committer: Diego Biurrun <diego@xxxxxxxxxx>
branch nick: trunk
timestamp: Fri 2010-11-12 16:39:06 +0100
message:
  cosmetics: Fix a bunch of typos, add some more whitespace for readability.
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-11-12 15:15:18 +0000
+++ configure.ac        2010-11-12 15:39:06 +0000
@@ -12,11 +12,13 @@
 AC_DEFINE_UNQUOTED(HIPL_CONFIGURATION, "$@")
 AH_TEMPLATE(HIPL_CONFIGURATION, [options passed to configure])
 
-# Checks for programs.
+
+# program checks
+
 AC_PROG_CC
 AC_PROG_INSTALL
 # AC_PROG_LIBTOOL() could be replaced with LT_INIT(disable-shared) but
-# OpenWRT (Mar 2010) is running too old version of libtool
+# OpenWrt (Mar 2010) is running too old version of libtool
 # LT_INIT(disable-shared)
 AC_PROG_LIBTOOL(disable-shared)
 
@@ -28,22 +30,27 @@
 # Enable silent rules only when available (automake 1.11 or later).
 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
 
-# Check for python for build-system and tools directory
-AM_PATH_PYTHON([2.4.3],, [AC_MSG_ERROR([min. required python version not 
found])])
-
-# Checks for libraries.
-AC_CHECK_LIB(crypto, DSA_generate_key,, AC_MSG_ERROR(openssl lib not found))
-# Check for ec crypto in openssl
+# Check for Python for build-system and tools directory
+AM_PATH_PYTHON([2.4.3],, [AC_MSG_ERROR([Minimum required Python version not 
found.])])
+
+
+
+# library checks
+
+AC_CHECK_LIB(crypto, DSA_generate_key,, AC_MSG_ERROR(OpenSSL not found.))
+# Check for ellyptic curve 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 elliptic curve 
crypto is enabled.]))
 # We need the math lib in the registration extension.
-AC_CHECK_LIB(m, pow,, AC_MSG_ERROR(Math lib not found))
+AC_CHECK_LIB(m, pow,, AC_MSG_ERROR(Math library 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: 
unit tests 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
 # to expand $sysconfdir, which defaults to ${prefix}/etc. So set $prefix.
 if test "x$prefix" = "xNONE"; then
@@ -91,9 +98,13 @@
 # Set the preprocessor flags for the entire project
 AC_SUBST(AM_CPPFLAGS, "-D_POSIX_C_SOURCE=200112L -D_XOPEN_SOURCE=500")
 
+
+
+# configure options
+
 AC_ARG_ENABLE(firewall,
                AS_HELP_STRING([--enable-firewall],
-                              [HIP enabled firewall daemon (default is YES)]),
+                              [HIP firewall daemon (default is YES)]),
                [ac_cv_use_firewall=$enableval],
                [ac_cv_use_firewall=yes])
 AC_CACHE_CHECK([whether to use firewall],
@@ -110,7 +121,7 @@
 
 AC_ARG_ENABLE(rvs,
                AS_HELP_STRING([--enable-rvs],
-                              [HIP Rendezvous Extensions (default is YES)]),
+                              [HIP Rendezvous extensions (default is YES)]),
                [ac_cv_use_rvs=$enableval],
                [ac_cv_use_rvs=yes])
 AC_CACHE_CHECK([whether to use RVS],
@@ -180,7 +191,7 @@
 
 AC_ARG_ENABLE(performance,
                AS_HELP_STRING([--enable-performance],
-                              [Performace measurement support (default is 
NO)]),
+                              [Performance measurement support (default is 
NO)]),
                [ac_cv_use_performance=$enableval],
                [ac_cv_use_performance=no])
 AC_CACHE_CHECK([whether to use performance measurement],
@@ -207,6 +218,7 @@
 fi
 
 
+
 # Parse modules directory
 echo ""
 echo "+-----------------------------------------------";
@@ -221,6 +233,8 @@
 echo "+-----------------------------------------------"
 echo ""
 
+
+
 AC_CONFIG_FILES([ Makefile doc/Doxyfile doc/HOWTO.xml tools/nsupdate.pl 
tools/hipdnsproxy/hipdnsproxy ])
 
 AC_OUTPUT

Other related posts:

  • » [hipl-dev] [Branch ~hipl-core/hipl/trunk] Rev 5143: cosmetics: Fix a bunch of typos, add some more whitespace for readability. - noreply