Merge pull request #6748
9ee5ac8
Rewrite help texts for features enabled by default. (Pavel Janík)
This commit is contained in:
commit
e10a4ab904
1 changed files with 7 additions and 7 deletions
14
configure.ac
14
configure.ac
|
@ -69,8 +69,8 @@ PKG_PROG_PKG_CONFIG
|
||||||
|
|
||||||
# Enable wallet
|
# Enable wallet
|
||||||
AC_ARG_ENABLE([wallet],
|
AC_ARG_ENABLE([wallet],
|
||||||
[AS_HELP_STRING([--enable-wallet],
|
[AS_HELP_STRING([--disable-wallet],
|
||||||
[enable wallet (default is yes)])],
|
[disable wallet (enabled by default)])],
|
||||||
[enable_wallet=$enableval],
|
[enable_wallet=$enableval],
|
||||||
[enable_wallet=yes])
|
[enable_wallet=yes])
|
||||||
|
|
||||||
|
@ -87,7 +87,7 @@ AC_ARG_ENABLE([upnp-default],
|
||||||
[use_upnp_default=no])
|
[use_upnp_default=no])
|
||||||
|
|
||||||
AC_ARG_ENABLE(tests,
|
AC_ARG_ENABLE(tests,
|
||||||
AS_HELP_STRING([--enable-tests],[compile tests (default is yes)]),
|
AS_HELP_STRING([--disable-tests],[do not compile tests (default is to compile)]),
|
||||||
[use_tests=$enableval],
|
[use_tests=$enableval],
|
||||||
[use_tests=yes])
|
[use_tests=yes])
|
||||||
|
|
||||||
|
@ -108,8 +108,8 @@ AC_ARG_WITH([qrencode],
|
||||||
[use_qr=auto])
|
[use_qr=auto])
|
||||||
|
|
||||||
AC_ARG_ENABLE([hardening],
|
AC_ARG_ENABLE([hardening],
|
||||||
[AS_HELP_STRING([--enable-hardening],
|
[AS_HELP_STRING([--disable-hardening],
|
||||||
[attempt to harden the resulting executables (default is yes)])],
|
[do not attempt to harden the resulting executables (default is to harden)])],
|
||||||
[use_hardening=$enableval],
|
[use_hardening=$enableval],
|
||||||
[use_hardening=yes])
|
[use_hardening=yes])
|
||||||
|
|
||||||
|
@ -120,8 +120,8 @@ AC_ARG_ENABLE([reduce-exports],
|
||||||
[use_reduce_exports=no])
|
[use_reduce_exports=no])
|
||||||
|
|
||||||
AC_ARG_ENABLE([ccache],
|
AC_ARG_ENABLE([ccache],
|
||||||
[AS_HELP_STRING([--enable-ccache],
|
[AS_HELP_STRING([--disable-ccache],
|
||||||
[use ccache for building (default is yes if ccache is found)])],
|
[do not use ccache for building (default is to use if found)])],
|
||||||
[use_ccache=$enableval],
|
[use_ccache=$enableval],
|
||||||
[use_ccache=auto])
|
[use_ccache=auto])
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue