diff options
author | Francis Dupont <fdupont@isc.org> | 2022-01-10 16:04:56 +0100 |
---|---|---|
committer | Francis Dupont <fdupont@isc.org> | 2022-01-12 15:09:35 +0100 |
commit | 57a2beb736911317954cd3800f3e8d0bc556b778 (patch) | |
tree | 0f73c9937289177dbd1db9b09dfa40a0ff17ce53 | |
parent | [#897] Added a proposed ChangeLog entry (diff) | |
download | kea-57a2beb736911317954cd3800f3e8d0bc556b778.tar.xz kea-57a2beb736911317954cd3800f3e8d0bc556b778.zip |
[#2218] Added quotes and double quotes
-rw-r--r-- | configure.ac | 26 | ||||
-rw-r--r-- | m4macros/ax_boost_for_kea.m4 | 10 | ||||
-rw-r--r-- | m4macros/ax_crypto.m4 | 4 | ||||
-rw-r--r-- | m4macros/ax_gtest.m4 | 6 |
4 files changed, 23 insertions, 23 deletions
diff --git a/configure.ac b/configure.ac index 33796df382..3bb451a19b 100644 --- a/configure.ac +++ b/configure.ac @@ -339,7 +339,7 @@ esac werror_extras= AC_ARG_WITH(werror, - AS_HELP_STRING([--with-werror],[Compile using -Werror (default=no)]), + [AS_HELP_STRING([--with-werror],[Compile using -Werror (default=no)])], [ case "${withval}" in yes) with_werror=1 ;; @@ -643,12 +643,12 @@ enable_benchmark="no" BENCHMARK_INCLUDES= AC_ARG_WITH([benchmark-source], - [AS_HELP_STRING([--with-benchmark-source=PATH], + [AS_HELP_STRING([--with-benchmark-source[[=PATH]]], [location of the benchmark source])], [enable_benchmark="yes" ; BENCHMARK_SOURCE="$withval"]) AC_ARG_WITH([benchmark], - [AS_HELP_STRING([--with-benchmark=PATH], + [AS_HELP_STRING([--with-benchmark[[=PATH]]], [specify a path to benchmark header files (PATH/include) and library (PATH/lib)])], [benchmark_path="$withval"; enable_benchmark="yes"], [benchmark_path="no"]) @@ -665,8 +665,8 @@ defaultdirs="/usr /usr/local /usr/pkg /opt /opt/local" # the software is not built with MySQL support enabled. mysql_config="no" AC_ARG_WITH([mysql], - AS_HELP_STRING([--with-mysql=PATH], - [path to the MySQL 'mysql_config' script (MySQL is used for the DHCP database)]), + [AS_HELP_STRING([--with-mysql[[=PATH]]], + [path to the MySQL 'mysql_config' script (MySQL is used for the DHCP database)])], [mysql_config="$withval"]) deprec_msg="no" @@ -745,8 +745,8 @@ AM_CONDITIONAL(HAVE_MYSQL, test "$MYSQL_CONFIG" != "") pg_config="no" AC_ARG_WITH([pgsql], - AS_HELP_STRING([--with-pgsql=PATH], - [path to the PostgreSQL 'pg_config' script]), + [AS_HELP_STRING([--with-pgsql[[=PATH]]], + [path to the PostgreSQL 'pg_config' script])], [pg_config="$withval"]) deprec_msg="no" @@ -839,8 +839,8 @@ fi cql_config="no" AC_ARG_WITH([cql], - AS_HELP_STRING([--with-cql=PATH], - [path to pkg-config or the Cassandra CQL 'cql_config' script (deprecated)]), + [AS_HELP_STRING([--with-cql[[=PATH]]], + [path to pkg-config or the Cassandra CQL 'cql_config' script (deprecated)])], [cql_config="$withval"]) if test "${cql_config}" = "yes" ; then @@ -1292,8 +1292,8 @@ if test "x$enable_shell" != xno -o "x$enable_generate_docs" != xno; then AM_PATH_PYTHON([2.7]) AC_ARG_WITH(site-packages, - AS_HELP_STRING([--with-site-packages], - [place to install Kea Python module]), + [AS_HELP_STRING([--with-site-packages], + [place to install Kea Python module])], [pythondir=$withval; pkgpythondir=${pythondir}/$PACKAGE_NAME]) if test "$pythondir" = "yes"; then @@ -1346,11 +1346,11 @@ fi AM_CONDITIONAL(CA_TLS_TEST, test x$ca_tls_test != xno) AC_ARG_WITH([sphinx], - AS_HELP_STRING([--with-sphinx=PATH],[path to sphinx-build tool]), + [AS_HELP_STRING([--with-sphinx=PATH],[path to sphinx-build tool])], [sphinx_path="$withval"]) AC_ARG_WITH([pdflatex], - AS_HELP_STRING([--with-pdflatex=PATH],[path to pdflatex tool]), + [AS_HELP_STRING([--with-pdflatex=PATH],[path to pdflatex tool])], [pdflatex_path="$withval"]) PDFLATEX=no diff --git a/m4macros/ax_boost_for_kea.m4 b/m4macros/ax_boost_for_kea.m4 index c79393877a..155083b93c 100644 --- a/m4macros/ax_boost_for_kea.m4 +++ b/m4macros/ax_boost_for_kea.m4 @@ -50,8 +50,8 @@ boost_lib_path= # # If explicitly specified, use it. AC_ARG_WITH([boost-include], - AS_HELP_STRING([--with-boost-include=PATH], - [specify exact directory for Boost headers]), + [AS_HELP_STRING([--with-boost-include=PATH], + [specify exact directory for Boost headers])], [boost_include_path="$withval"]) # If not specified, try some common paths. if test -z "$with_boost_include"; then @@ -165,14 +165,14 @@ void testfn(void) { BOOST_STATIC_ASSERT(true); } # Get libs when explicitly configured AC_ARG_WITH([boost-libs], - AS_HELP_STRING([--with-boost-libs=SPEC], - [specify Boost libraries to link with, e.g., '-lboost_system']), + [AS_HELP_STRING([--with-boost-libs=SPEC], + [specify Boost libraries to link with, e.g., '-lboost_system'])], [BOOST_LIBS="$withval" DISTCHECK_BOOST_CONFIGURE_FLAG="$DISTCHECK_BOOST_CONFIGURE_FLAG --with-boost-libs=$withval"]) # Get lib dir when explicitly configured AC_ARG_WITH([boost-lib-dir], - AS_HELP_STRING([--with-boost-lib-dir=PATH],[specify directory where to find Boost libraries]), + [AS_HELP_STRING([--with-boost-lib-dir=PATH],[specify directory where to find Boost libraries])], [BOOST_LIB_DIR="$withval" DISTCHECK_BOOST_CONFIGURE_FLAG="$DISTCHECK_BOOST_CONFIGURE_FLAG --with-boost-lib-dir=$withval"]) diff --git a/m4macros/ax_crypto.m4 b/m4macros/ax_crypto.m4 index e1b43f8f0c..6786bac1ef 100644 --- a/m4macros/ax_crypto.m4 +++ b/m4macros/ax_crypto.m4 @@ -94,8 +94,8 @@ if test "${use_openssl}" != "auto" -a "${use_openssl}" != "no" ; then botan_config="no" fi AC_ARG_WITH([botan-config], - AS_HELP_STRING([--with-botan-config=PATH], - [specify the path to the botan-config script]), + [AS_HELP_STRING([--with-botan-config=PATH], + [specify the path to the botan-config script])], [botan_config="$withval"]) distcheck_botan="--with-botan-config=$botan_config" if test "${botan_config}" = "no" ; then diff --git a/m4macros/ax_gtest.m4 b/m4macros/ax_gtest.m4 index 06403ba857..2681b4314c 100644 --- a/m4macros/ax_gtest.m4 +++ b/m4macros/ax_gtest.m4 @@ -4,17 +4,17 @@ enable_gtest="no" GTEST_INCLUDES= AC_ARG_WITH([gtest-source], - [AS_HELP_STRING([--with-gtest-source=PATH], + [AS_HELP_STRING([--with-gtest-source[[=PATH]]], [location of the Googletest source])], [enable_gtest="yes" ; GTEST_SOURCE="$withval"]) AC_ARG_WITH([gtest], - [AS_HELP_STRING([--with-gtest=PATH], + [AS_HELP_STRING([--with-gtest[[=PATH]]], [specify a path to gtest header files (PATH/include) and library (PATH/lib)])], [gtest_path="$withval"; enable_gtest="yes"], [gtest_path="no"]) AC_ARG_WITH([lcov], - [AS_HELP_STRING([--with-lcov=PROGRAM], + [AS_HELP_STRING([--with-lcov[[=PROGRAM]]], [enable gtest and coverage target using the specified lcov])], [lcov="$withval"], [lcov="no"]) |