]> Git Repo - VerusCoin.git/commitdiff
add conditional for --enable-man, default is yes
authornomnombtc <[email protected]>
Fri, 26 Aug 2016 23:12:41 +0000 (01:12 +0200)
committerJack Grigg <[email protected]>
Thu, 2 Mar 2017 19:18:22 +0000 (11:18 -0800)
configure.ac

index 3db6cdf42628612bcec152eec1f9daa15d22a366..6a57c2e3b4b85015602d12d54e9357d961d9ef61 100644 (file)
@@ -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])
 
This page took 0.031489 seconds and 4 git commands to generate.