]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[#2218] Added quotes and double quotes
authorFrancis Dupont <fdupont@isc.org>
Mon, 10 Jan 2022 15:04:56 +0000 (16:04 +0100)
committerFrancis Dupont <fdupont@isc.org>
Wed, 12 Jan 2022 14:09:35 +0000 (15:09 +0100)
configure.ac
m4macros/ax_boost_for_kea.m4
m4macros/ax_crypto.m4
m4macros/ax_gtest.m4

index 33796df382f74d5e2e333af2b55b72ec2b6a5bea..3bb451a19b985a06bdfb897a785b3b279e184dca 100644 (file)
@@ -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
 
index c79393877adc4a677f2efb4afab4f8f993813d31..155083b93c6a3df0d2dedb658020586be5cf3cfd 100644 (file)
@@ -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"])
 
index e1b43f8f0ce258042494428b74890e933692f468..6786bac1ef781f04ede9c314ddf0ec5ed3b68cec 100644 (file)
@@ -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
index 06403ba857f55daff8061cad63f9fa5170e285af..2681b4314c72752bd805917b19ec503b524eff2e 100644 (file)
@@ -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"])