We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1e69309 + 8345fe9 commit 2e92643Copy full SHA for 2e92643
1 file changed
acinclude.m4
@@ -95,8 +95,13 @@ AC_DEFUN([LIBZMQ_CHECK_DOC_BUILD], [{
95
AS_HELP_STRING([--without-docs],
96
[Don't build and install man pages [default=build]]),
97
[with_docs=$withval])
98
+ AC_ARG_WITH([documentation], [AS_HELP_STRING([--without-documentation],
99
+ [Don't build and install man pages [default=build] DEPRECATED: use --without-docs])])
100
- if test "x$with_docs" = "xno"; then
101
+ if test "x$with_documentation" = "xno"; then
102
+ AC_MSG_WARN([--without-documentation is DEPRECATED and will be removed in the next release, use --without-docs])
103
+ fi
104
+ if test "x$with_docs" = "xno" || test "x$with_documentation" = "xno"; then
105
libzmq_build_doc="no"
106
libzmq_install_man="no"
107
else
0 commit comments