Skip to content

Commit e10a4ab

Browse files
committed
Merge pull request #6748
9ee5ac8 Rewrite help texts for features enabled by default. (Pavel Janík)
2 parents 5f34a25 + 9ee5ac8 commit e10a4ab

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

configure.ac

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@ PKG_PROG_PKG_CONFIG
6969

7070
# Enable wallet
7171
AC_ARG_ENABLE([wallet],
72-
[AS_HELP_STRING([--enable-wallet],
73-
[enable wallet (default is yes)])],
72+
[AS_HELP_STRING([--disable-wallet],
73+
[disable wallet (enabled by default)])],
7474
[enable_wallet=$enableval],
7575
[enable_wallet=yes])
7676

@@ -87,7 +87,7 @@ AC_ARG_ENABLE([upnp-default],
8787
[use_upnp_default=no])
8888

8989
AC_ARG_ENABLE(tests,
90-
AS_HELP_STRING([--enable-tests],[compile tests (default is yes)]),
90+
AS_HELP_STRING([--disable-tests],[do not compile tests (default is to compile)]),
9191
[use_tests=$enableval],
9292
[use_tests=yes])
9393

@@ -108,8 +108,8 @@ AC_ARG_WITH([qrencode],
108108
[use_qr=auto])
109109

110110
AC_ARG_ENABLE([hardening],
111-
[AS_HELP_STRING([--enable-hardening],
112-
[attempt to harden the resulting executables (default is yes)])],
111+
[AS_HELP_STRING([--disable-hardening],
112+
[do not attempt to harden the resulting executables (default is to harden)])],
113113
[use_hardening=$enableval],
114114
[use_hardening=yes])
115115

@@ -120,8 +120,8 @@ AC_ARG_ENABLE([reduce-exports],
120120
[use_reduce_exports=no])
121121

122122
AC_ARG_ENABLE([ccache],
123-
[AS_HELP_STRING([--enable-ccache],
124-
[use ccache for building (default is yes if ccache is found)])],
123+
[AS_HELP_STRING([--disable-ccache],
124+
[do not use ccache for building (default is to use if found)])],
125125
[use_ccache=$enableval],
126126
[use_ccache=auto])
127127

0 commit comments

Comments
 (0)