Browse Source
add conditional for --enable-man, default is yes
1.0.8
nomnombtc
9 years ago
committed by
Jack Grigg
No known key found for this signature in database
GPG Key ID: 6A6914DAFBEA00DA
1 changed files with
8 additions and
1 deletions
-
configure.ac
|
|
@ -164,6 +164,13 @@ AC_ARG_ENABLE([zmq], |
|
|
|
|
|
|
|
AC_ARG_WITH([protoc-bindir],[AS_HELP_STRING([--with-protoc-bindir=BIN_DIR],[specify protoc bin path])], [protoc_bin_path=$withval], []) |
|
|
|
|
|
|
|
# Enable manpages |
|
|
|
AC_ARG_ENABLE(man, |
|
|
|
[AS_HELP_STRING([--enable-man], |
|
|
|
[install man pages [default=yes]])],, |
|
|
|
enable_man=yes) |
|
|
|
AM_CONDITIONAL(ENABLE_MAN, test "$enable_man" != no) |
|
|
|
|
|
|
|
# Enable debug |
|
|
|
AC_ARG_ENABLE([debug], |
|
|
|
[AS_HELP_STRING([--enable-debug], |
|
|
@ -975,7 +982,7 @@ AC_SUBST(GMP_LIBS) |
|
|
|
AC_SUBST(GMPXX_LIBS) |
|
|
|
AC_SUBST(LIBSNARK_LIBS) |
|
|
|
AC_SUBST(LIBZCASH_LIBS) |
|
|
|
AC_CONFIG_FILES([Makefile src/Makefile share/setup.nsi share/qt/Info.plist src/test/buildenv.py]) |
|
|
|
AC_CONFIG_FILES([Makefile src/Makefile doc/man/Makefile share/setup.nsi share/qt/Info.plist src/test/buildenv.py]) |
|
|
|
AC_CONFIG_FILES([qa/pull-tester/run-bitcoind-for-test.sh],[chmod +x qa/pull-tester/run-bitcoind-for-test.sh]) |
|
|
|
AC_CONFIG_FILES([qa/pull-tester/tests-config.sh],[chmod +x qa/pull-tester/tests-config.sh]) |
|
|
|
|
|
|
|