From 103c3ac5a789dc0ec9855c18800a0616940351b1 Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Mon, 12 Nov 2007 23:36:20 -0600 Subject: [PATCH] configure: Doxygen is disabled by default; manpages are included in dist Signed-off-by: Dan McGee --- configure.ac | 4 ++-- doc/Makefile.am | 16 +++++++++------- 2 files changed, 11 insertions(+), 9 deletions(-) diff --git a/configure.ac b/configure.ac index 65637ee6..9a5f3b3e 100644 --- a/configure.ac +++ b/configure.ac @@ -100,8 +100,8 @@ AC_ARG_WITH(db-ext, # Help line for doxygen AC_ARG_ENABLE(doxygen, - AC_HELP_STRING([--disable-doxygen], [do not build API docs via Doxygen]), - [wantdoxygen=$enableval], [wantdoxygen=yes]) + AC_HELP_STRING([--enable-doxygen], [build your own API docs via Doxygen]), + [wantdoxygen=$enableval], [wantdoxygen=no]) # Help line for asciidoc AC_ARG_ENABLE(asciidoc, diff --git a/doc/Makefile.am b/doc/Makefile.am index a42141fa..abc761b8 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -1,7 +1,7 @@ # We have to do some funny stuff here with the manpages. In order to ensure # a dist tarball doesn't get put out there without manpages, we keep those # files listed in EXTRA_DIST no matter what. However, we only add them to -# man_MANS if --enable-asciidoc was used. +# man_MANS if --enable-asciidoc and/or --enable-doxygen are used. ASCIIDOC_MANS = \ pacman.8 \ @@ -12,14 +12,15 @@ ASCIIDOC_MANS = \ pacman.conf.5 \ libalpm.3 -if USE_DOXYGEN DOXYGEN_MANS = $(wildcard man3/*.3) -endif + +man_MANS = if USE_ASCIIDOC -man_MANS = $(ASCIIDOC_MANS) $(DOXYGEN_MANS) -else -man_MANS = $(DOXYGEN_MANS) +man_MANS += $(ASCIIDOC_MANS) +endif +if USE_DOXYGEN +man_MANS += $(DOXYGEN_MANS) endif EXTRA_DIST = \ @@ -33,7 +34,8 @@ EXTRA_DIST = \ libalpm.3.txt \ footer.txt \ Doxyfile \ - $(ASCIIDOC_MANS) + $(ASCIIDOC_MANS) \ + $(DOXYGEN_MANS) # Files that should be removed, but which Automake does not know. MOSTLYCLEANFILES = $(DOXYGEN_MANS) *.xml