From 1496b9192d5d643426b9ab78660324e04a4a54b0 Mon Sep 17 00:00:00 2001 From: Bradlee Speice Date: Fri, 20 Jul 2012 18:33:57 -0400 Subject: [PATCH] Change default build behavior to build with docs --- configure.ac | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/configure.ac b/configure.ac index 12df880..169215c 100644 --- a/configure.ac +++ b/configure.ac @@ -64,13 +64,13 @@ if test "$with_examples" != "no"; then fi # Check for doxygen -AC_ARG_WITH(docs, [ --with-docs build documentation for libcvautomation @<:@default=no@:>@]) +AC_ARG_WITH(docs, [ --with-docs build documentation for libcvautomation @<:@default=yes@:>@]) AC_ARG_ENABLE(man, [ --enable-man enable building the 'man' pages for libcvautomation only works if --with-docs is enabled @<:@default=enable@:>@]) AC_ARG_ENABLE(tex, [ --enable-tex enable building the 'latex' pages for libcvautomation only works if --with-docs is enabled @<:@default=disable@:>@]) -if test "$with_docs" == "yes"; then +if test "$with_docs" != "no"; then AC_CHECK_PROGS([Doxygen], [doxygen], [missing]) if test "$Doxygen" == "missing"; then @@ -79,11 +79,11 @@ if test "$with_docs" == "yes"; then enable_man="no" enable_tex="no" else - AM_CONDITIONAL(BUILD_DOXYGEN, [test "$with_docs" == "yes"]) + AM_CONDITIONAL(BUILD_DOXYGEN, [test "$with_docs" != "no"]) AC_CONFIG_FILES([docs/Doxyfile_library] [docs/Doxyfile_example]) fi else - AM_CONDITIONAL(BUILD_DOXYGEN, [test "$with_docs" == "yes"]) #false + AM_CONDITIONAL(BUILD_DOXYGEN, [test "$with_docs" != "no"]) #false enable_man="no" enable_tex="no" fi