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 /m4macros | |
parent | [#897] Added a proposed ChangeLog entry (diff) | |
download | kea-57a2beb736911317954cd3800f3e8d0bc556b778.tar.xz kea-57a2beb736911317954cd3800f3e8d0bc556b778.zip |
[#2218] Added quotes and double quotes
Diffstat (limited to 'm4macros')
-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 |
3 files changed, 10 insertions, 10 deletions
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"]) |