mirror of
https://github.com/zeromq/libzmq.git
synced 2025-03-19 18:03:50 +00:00
Problem: AS_HELP_STRING improperly quoted
Brackets around defaults in configure --help strings for --with-libsodium and --disable-curve were not displayed. Solution: Add m4 quotes.
This commit is contained in:
parent
9d75a9c27d
commit
54389fefb5
@ -416,7 +416,7 @@ fi
|
|||||||
# To disable curve, use --disable-curve
|
# To disable curve, use --disable-curve
|
||||||
|
|
||||||
AC_ARG_WITH([libsodium],
|
AC_ARG_WITH([libsodium],
|
||||||
AS_HELP_STRING([--with-libsodium], [use libsodium instead of built-in tweetnacl [default=no]]))
|
[AS_HELP_STRING([--with-libsodium], [use libsodium instead of built-in tweetnacl [default=no]])])
|
||||||
|
|
||||||
AS_IF([test "x$with_libsodium" = "xyes"], [
|
AS_IF([test "x$with_libsodium" = "xyes"], [
|
||||||
PKG_CHECK_MODULES([sodium], [libsodium], [libsodium_found=yes], [
|
PKG_CHECK_MODULES([sodium], [libsodium], [libsodium_found=yes], [
|
||||||
@ -425,7 +425,7 @@ AS_IF([test "x$with_libsodium" = "xyes"], [
|
|||||||
])
|
])
|
||||||
|
|
||||||
AC_ARG_ENABLE([curve],
|
AC_ARG_ENABLE([curve],
|
||||||
AS_HELP_STRING([--disable-curve], [disable CURVE security [default=no]]))
|
[AS_HELP_STRING([--disable-curve], [disable CURVE security [default=no]])])
|
||||||
|
|
||||||
if test "x$enable_curve" == "xno"; then
|
if test "x$enable_curve" == "xno"; then
|
||||||
curve_library=""
|
curve_library=""
|
||||||
|
Loading…
x
Reference in New Issue
Block a user