Merge trunk version 204345 into gupc branch.
[official-gcc.git] / libgupc / ax_prog_doxygen.m4
blob3c62294fe693ad382b5b4c7010b9e5d7b0f5c7b6
1 # ===========================================================================
2 #      http://www.gnu.org/software/autoconf-archive/ax_prog_doxygen.html
3 # ===========================================================================
5 # SYNOPSIS
7 #   DX_INIT_DOXYGEN(PROJECT-NAME, DOXYFILE-PATH, [OUTPUT-DIR])
8 #   DX_DOXYGEN_FEATURE(ON|OFF)
9 #   DX_DOT_FEATURE(ON|OFF)
10 #   DX_HTML_FEATURE(ON|OFF)
11 #   DX_CHM_FEATURE(ON|OFF)
12 #   DX_CHI_FEATURE(ON|OFF)
13 #   DX_MAN_FEATURE(ON|OFF)
14 #   DX_RTF_FEATURE(ON|OFF)
15 #   DX_XML_FEATURE(ON|OFF)
16 #   DX_PDF_FEATURE(ON|OFF)
17 #   DX_PS_FEATURE(ON|OFF)
19 # DESCRIPTION
21 #   The DX_*_FEATURE macros control the default setting for the given
22 #   Doxygen feature. Supported features are 'DOXYGEN' itself, 'DOT' for
23 #   generating graphics, 'HTML' for plain HTML, 'CHM' for compressed HTML
24 #   help (for MS users), 'CHI' for generating a seperate .chi file by the
25 #   .chm file, and 'MAN', 'RTF', 'XML', 'PDF' and 'PS' for the appropriate
26 #   output formats. The environment variable DOXYGEN_PAPER_SIZE may be
27 #   specified to override the default 'a4wide' paper size.
29 #   By default, HTML, PDF and PS documentation is generated as this seems to
30 #   be the most popular and portable combination. MAN pages created by
31 #   Doxygen are usually problematic, though by picking an appropriate subset
32 #   and doing some massaging they might be better than nothing. CHM and RTF
33 #   are specific for MS (note that you can't generate both HTML and CHM at
34 #   the same time). The XML is rather useless unless you apply specialized
35 #   post-processing to it.
37 #   The macros mainly control the default state of the feature. The use can
38 #   override the default by specifying --enable or --disable. The macros
39 #   ensure that contradictory flags are not given (e.g.,
40 #   --enable-doxygen-html and --enable-doxygen-chm,
41 #   --enable-doxygen-anything with --disable-doxygen, etc.) Finally, each
42 #   feature will be automatically disabled (with a warning) if the required
43 #   programs are missing.
45 #   Once all the feature defaults have been specified, call DX_INIT_DOXYGEN
46 #   with the following parameters: a one-word name for the project for use
47 #   as a filename base etc., an optional configuration file name (the
48 #   default is 'Doxyfile', the same as Doxygen's default), and an optional
49 #   output directory name (the default is 'doxygen-doc').
51 #   Automake Support
53 #   The following is a template aminclude.am file for use with Automake.
54 #   Make targets and variables values are controlled by the various
55 #   DX_COND_* conditionals set by autoconf.
57 #   The provided targets are:
59 #     doxygen-doc: Generate all doxygen documentation.
61 #     doxygen-run: Run doxygen, which will generate some of the
62 #                  documentation (HTML, CHM, CHI, MAN, RTF, XML)
63 #                  but will not do the post processing required
64 #                  for the rest of it (PS, PDF, and some MAN).
66 #     doxygen-man: Rename some doxygen generated man pages.
68 #     doxygen-ps:  Generate doxygen PostScript documentation.
70 #     doxygen-pdf: Generate doxygen PDF documentation.
72 #   Note that by default these are not integrated into the automake targets.
73 #   If doxygen is used to generate man pages, you can achieve this
74 #   integration by setting man3_MANS to the list of man pages generated and
75 #   then adding the dependency:
77 #     $(man3_MANS): doxygen-doc
79 #   This will cause make to run doxygen and generate all the documentation.
81 #   The following variable is intended for use in Makefile.am:
83 #     DX_CLEANFILES = everything to clean.
85 #   Then add this variable to MOSTLYCLEANFILES.
87 #     ----- begin aminclude.am -------------------------------------
89 #     ## --------------------------------- ##
90 #     ## Format-independent Doxygen rules. ##
91 #     ## --------------------------------- ##
93 #     if DX_COND_doc
95 #     ## ------------------------------- ##
96 #     ## Rules specific for HTML output. ##
97 #     ## ------------------------------- ##
99 #     if DX_COND_html
101 #     DX_CLEAN_HTML = @DX_DOCDIR@/html
103 #     endif DX_COND_html
105 #     ## ------------------------------ ##
106 #     ## Rules specific for CHM output. ##
107 #     ## ------------------------------ ##
109 #     if DX_COND_chm
111 #     DX_CLEAN_CHM = @DX_DOCDIR@/chm
113 #     if DX_COND_chi
115 #     DX_CLEAN_CHI = @DX_DOCDIR@/@PACKAGE@.chi
117 #     endif DX_COND_chi
119 #     endif DX_COND_chm
121 #     ## ------------------------------ ##
122 #     ## Rules specific for MAN output. ##
123 #     ## ------------------------------ ##
125 #     if DX_COND_man
127 #     DX_CLEAN_MAN = @DX_DOCDIR@/man
129 #     endif DX_COND_man
131 #     ## ------------------------------ ##
132 #     ## Rules specific for RTF output. ##
133 #     ## ------------------------------ ##
135 #     if DX_COND_rtf
137 #     DX_CLEAN_RTF = @DX_DOCDIR@/rtf
139 #     endif DX_COND_rtf
141 #     ## ------------------------------ ##
142 #     ## Rules specific for XML output. ##
143 #     ## ------------------------------ ##
145 #     if DX_COND_xml
147 #     DX_CLEAN_XML = @DX_DOCDIR@/xml
149 #     endif DX_COND_xml
151 #     ## ----------------------------- ##
152 #     ## Rules specific for PS output. ##
153 #     ## ----------------------------- ##
155 #     if DX_COND_ps
157 #     DX_CLEAN_PS = @DX_DOCDIR@/@PACKAGE@.ps
159 #     DX_PS_GOAL = doxygen-ps
161 #     doxygen-ps: @DX_DOCDIR@/@PACKAGE@.ps
163 #     @DX_DOCDIR@/@PACKAGE@.ps: @DX_DOCDIR@/@PACKAGE@.tag
164 #         cd @DX_DOCDIR@/latex; \
165 #         rm -f *.aux *.toc *.idx *.ind *.ilg *.log *.out; \
166 #         $(DX_LATEX) refman.tex; \
167 #         $(MAKEINDEX_PATH) refman.idx; \
168 #         $(DX_LATEX) refman.tex; \
169 #         countdown=5; \
170 #         while $(DX_EGREP) 'Rerun (LaTeX|to get cross-references right)' \
171 #                           refman.log > /dev/null 2>&1 \
172 #            && test $$countdown -gt 0; do \
173 #             $(DX_LATEX) refman.tex; \
174 #             countdown=`expr $$countdown - 1`; \
175 #         done; \
176 #         $(DX_DVIPS) -o ../@PACKAGE@.ps refman.dvi
178 #     endif DX_COND_ps
180 #     ## ------------------------------ ##
181 #     ## Rules specific for PDF output. ##
182 #     ## ------------------------------ ##
184 #     if DX_COND_pdf
186 #     DX_CLEAN_PDF = @DX_DOCDIR@/@PACKAGE@.pdf
188 #     DX_PDF_GOAL = doxygen-pdf
190 #     doxygen-pdf: @DX_DOCDIR@/@PACKAGE@.pdf
192 #     @DX_DOCDIR@/@PACKAGE@.pdf: @DX_DOCDIR@/@PACKAGE@.tag
193 #         cd @DX_DOCDIR@/latex; \
194 #         rm -f *.aux *.toc *.idx *.ind *.ilg *.log *.out; \
195 #         $(DX_PDFLATEX) refman.tex; \
196 #         $(DX_MAKEINDEX) refman.idx; \
197 #         $(DX_PDFLATEX) refman.tex; \
198 #         countdown=5; \
199 #         while $(DX_EGREP) 'Rerun (LaTeX|to get cross-references right)' \
200 #                           refman.log > /dev/null 2>&1 \
201 #            && test $$countdown -gt 0; do \
202 #             $(DX_PDFLATEX) refman.tex; \
203 #             countdown=`expr $$countdown - 1`; \
204 #         done; \
205 #         mv refman.pdf ../@PACKAGE@.pdf
207 #     endif DX_COND_pdf
209 #     ## ------------------------------------------------- ##
210 #     ## Rules specific for LaTeX (shared for PS and PDF). ##
211 #     ## ------------------------------------------------- ##
213 #     if DX_COND_latex
215 #     DX_CLEAN_LATEX = @DX_DOCDIR@/latex
217 #     endif DX_COND_latex
219 #     .PHONY: doxygen-run doxygen-doc $(DX_PS_GOAL) $(DX_PDF_GOAL)
221 #     .INTERMEDIATE: doxygen-run $(DX_PS_GOAL) $(DX_PDF_GOAL)
223 #     doxygen-run: @DX_DOCDIR@/@PACKAGE@.tag
225 #     doxygen-doc: doxygen-run $(DX_PS_GOAL) $(DX_PDF_GOAL)
227 #     @DX_DOCDIR@/@PACKAGE@.tag: $(DX_CONFIG) $(pkginclude_HEADERS)
228 #         rm -rf @DX_DOCDIR@
229 #         $(DX_ENV) $(DX_DOXYGEN) $(srcdir)/$(DX_CONFIG)
231 #     DX_CLEANFILES = \
232 #         @DX_DOCDIR@/@PACKAGE@.tag \
233 #         -r \
234 #         $(DX_CLEAN_HTML) \
235 #         $(DX_CLEAN_CHM) \
236 #         $(DX_CLEAN_CHI) \
237 #         $(DX_CLEAN_MAN) \
238 #         $(DX_CLEAN_RTF) \
239 #         $(DX_CLEAN_XML) \
240 #         $(DX_CLEAN_PS) \
241 #         $(DX_CLEAN_PDF) \
242 #         $(DX_CLEAN_LATEX)
244 #     endif DX_COND_doc
246 #     ----- end aminclude.am ---------------------------------------
248 # LICENSE
250 #   Copyright (c) 2009 Oren Ben-Kiki <oren@ben-kiki.org>
252 #   Copying and distribution of this file, with or without modification, are
253 #   permitted in any medium without royalty provided the copyright notice
254 #   and this notice are preserved. This file is offered as-is, without any
255 #   warranty.
257 #serial 11
259 ## ----------##
260 ## Defaults. ##
261 ## ----------##
263 DX_ENV=""
264 AC_DEFUN([DX_FEATURE_doc],  ON)
265 AC_DEFUN([DX_FEATURE_dot],  OFF)
266 AC_DEFUN([DX_FEATURE_man],  OFF)
267 AC_DEFUN([DX_FEATURE_html], ON)
268 AC_DEFUN([DX_FEATURE_chm],  OFF)
269 AC_DEFUN([DX_FEATURE_chi],  OFF)
270 AC_DEFUN([DX_FEATURE_rtf],  OFF)
271 AC_DEFUN([DX_FEATURE_xml],  OFF)
272 AC_DEFUN([DX_FEATURE_pdf],  ON)
273 AC_DEFUN([DX_FEATURE_ps],   ON)
275 ## --------------- ##
276 ## Private macros. ##
277 ## --------------- ##
279 # DX_ENV_APPEND(VARIABLE, VALUE)
280 # ------------------------------
281 # Append VARIABLE="VALUE" to DX_ENV for invoking doxygen.
282 AC_DEFUN([DX_ENV_APPEND], [AC_SUBST([DX_ENV], ["$DX_ENV $1='$2'"])])
284 # DX_DIRNAME_EXPR
285 # ---------------
286 # Expand into a shell expression prints the directory part of a path.
287 AC_DEFUN([DX_DIRNAME_EXPR],
288          [[expr ".$1" : '\(\.\)[^/]*$' \| "x$1" : 'x\(.*\)/[^/]*$']])
290 # DX_IF_FEATURE(FEATURE, IF-ON, IF-OFF)
291 # -------------------------------------
292 # Expands according to the M4 (static) status of the feature.
293 AC_DEFUN([DX_IF_FEATURE], [ifelse(DX_FEATURE_$1, ON, [$2], [$3])])
295 # DX_REQUIRE_PROG(VARIABLE, PROGRAM)
296 # ----------------------------------
297 # Require the specified program to be found for the DX_CURRENT_FEATURE to work.
298 AC_DEFUN([DX_REQUIRE_PROG], [
299 AC_PATH_TOOL([$1], [$2])
300 if test "$DX_FLAG_[]DX_CURRENT_FEATURE$$1" = 1; then
301     AC_MSG_WARN([$2 not found - will not DX_CURRENT_DESCRIPTION])
302     AC_SUBST(DX_FLAG_[]DX_CURRENT_FEATURE, 0)
306 # DX_TEST_FEATURE(FEATURE)
307 # ------------------------
308 # Expand to a shell expression testing whether the feature is active.
309 AC_DEFUN([DX_TEST_FEATURE], [test "$DX_FLAG_$1" = 1])
311 # DX_CHECK_DEPEND(REQUIRED_FEATURE, REQUIRED_STATE)
312 # -------------------------------------------------
313 # Verify that a required features has the right state before trying to turn on
314 # the DX_CURRENT_FEATURE.
315 AC_DEFUN([DX_CHECK_DEPEND], [
316 test "$DX_FLAG_$1" = "$2" \
317 || AC_MSG_ERROR([doxygen-DX_CURRENT_FEATURE ifelse([$2], 1,
318                             requires, contradicts) doxygen-DX_CURRENT_FEATURE])
321 # DX_CLEAR_DEPEND(FEATURE, REQUIRED_FEATURE, REQUIRED_STATE)
322 # ----------------------------------------------------------
323 # Turn off the DX_CURRENT_FEATURE if the required feature is off.
324 AC_DEFUN([DX_CLEAR_DEPEND], [
325 test "$DX_FLAG_$1" = "$2" || AC_SUBST(DX_FLAG_[]DX_CURRENT_FEATURE, 0)
328 # DX_FEATURE_ARG(FEATURE, DESCRIPTION,
329 #                CHECK_DEPEND, CLEAR_DEPEND,
330 #                REQUIRE, DO-IF-ON, DO-IF-OFF)
331 # --------------------------------------------
332 # Parse the command-line option controlling a feature. CHECK_DEPEND is called
333 # if the user explicitly turns the feature on (and invokes DX_CHECK_DEPEND),
334 # otherwise CLEAR_DEPEND is called to turn off the default state if a required
335 # feature is disabled (using DX_CLEAR_DEPEND). REQUIRE performs additional
336 # requirement tests (DX_REQUIRE_PROG). Finally, an automake flag is set and
337 # DO-IF-ON or DO-IF-OFF are called according to the final state of the feature.
338 AC_DEFUN([DX_ARG_ABLE], [
339     AC_DEFUN([DX_CURRENT_FEATURE], [$1])
340     AC_DEFUN([DX_CURRENT_DESCRIPTION], [$2])
341     AC_ARG_ENABLE(doxygen-$1,
342                   [AS_HELP_STRING(DX_IF_FEATURE([$1], [--disable-doxygen-$1],
343                                                       [--enable-doxygen-$1]),
344                                   DX_IF_FEATURE([$1], [don't $2], [$2]))],
345                   [
346 case "$enableval" in
348 y|Y|yes|Yes|YES)
349     AC_SUBST([DX_FLAG_$1], 1)
350     $3
351 ;; #(
352 n|N|no|No|NO)
353     AC_SUBST([DX_FLAG_$1], 0)
354 ;; #(
356     AC_MSG_ERROR([invalid value '$enableval' given to doxygen-$1])
358 esac
359 ], [
360 AC_SUBST([DX_FLAG_$1], [DX_IF_FEATURE([$1], 1, 0)])
363 if DX_TEST_FEATURE([$1]); then
364     $5
365     :
367 if DX_TEST_FEATURE([$1]); then
368     AM_CONDITIONAL(DX_COND_$1, :)
369     $6
370     :
371 else
372     AM_CONDITIONAL(DX_COND_$1, false)
373     $7
374     :
378 ## -------------- ##
379 ## Public macros. ##
380 ## -------------- ##
382 # DX_XXX_FEATURE(DEFAULT_STATE)
383 # -----------------------------
384 AC_DEFUN([DX_DOXYGEN_FEATURE], [AC_DEFUN([DX_FEATURE_doc],  [$1])])
385 AC_DEFUN([DX_DOT_FEATURE],     [AC_DEFUN([DX_FEATURE_dot], [$1])])
386 AC_DEFUN([DX_MAN_FEATURE],     [AC_DEFUN([DX_FEATURE_man],  [$1])])
387 AC_DEFUN([DX_HTML_FEATURE],    [AC_DEFUN([DX_FEATURE_html], [$1])])
388 AC_DEFUN([DX_CHM_FEATURE],     [AC_DEFUN([DX_FEATURE_chm],  [$1])])
389 AC_DEFUN([DX_CHI_FEATURE],     [AC_DEFUN([DX_FEATURE_chi],  [$1])])
390 AC_DEFUN([DX_RTF_FEATURE],     [AC_DEFUN([DX_FEATURE_rtf],  [$1])])
391 AC_DEFUN([DX_XML_FEATURE],     [AC_DEFUN([DX_FEATURE_xml],  [$1])])
392 AC_DEFUN([DX_XML_FEATURE],     [AC_DEFUN([DX_FEATURE_xml],  [$1])])
393 AC_DEFUN([DX_PDF_FEATURE],     [AC_DEFUN([DX_FEATURE_pdf],  [$1])])
394 AC_DEFUN([DX_PS_FEATURE],      [AC_DEFUN([DX_FEATURE_ps],   [$1])])
396 # DX_INIT_DOXYGEN(PROJECT, [CONFIG-FILE], [OUTPUT-DOC-DIR])
397 # ---------------------------------------------------------
398 # PROJECT also serves as the base name for the documentation files.
399 # The default CONFIG-FILE is "Doxyfile" and OUTPUT-DOC-DIR is "doxygen-doc".
400 AC_DEFUN([DX_INIT_DOXYGEN], [
402 #Variables:
403 AC_SUBST([DX_PROJECT], [$1])
405 # Files:
406 AC_SUBST([DX_CONFIG], [ifelse([$2], [], Doxyfile, [$2])])
407 AC_SUBST([DX_DOCDIR], [ifelse([$3], [], doxygen-doc, [$3])])
409 # Environment variables used inside doxygen.cfg:
410 DX_ENV_APPEND(SRCDIR, $srcdir)
411 DX_ENV_APPEND(PROJECT, $DX_PROJECT)
412 DX_ENV_APPEND(DOCDIR, $DX_DOCDIR)
413 DX_ENV_APPEND(VERSION, $PACKAGE_VERSION)
415 # Doxygen itself:
416 DX_ARG_ABLE(doc, [generate any doxygen documentation],
417             [],
418             [],
419             [DX_REQUIRE_PROG([DX_DOXYGEN], doxygen)
420              DX_REQUIRE_PROG([DX_PERL], perl)
421              DX_REQUIRE_PROG([DX_FILE], file)],
422             [DX_ENV_APPEND(PERL_PATH, $DX_PERL)
423              AC_SUBST(DOXYGEN_VERSION, [`${DX_DOXYGEN} --version`])],
424             [AC_SUBST(DOXYGEN_VERSION)])
426 # Dot for graphics:
427 DX_ARG_ABLE(dot, [generate graphics for doxygen documentation],
428             [DX_CHECK_DEPEND(doc, 1)],
429             [DX_CLEAR_DEPEND(doc, 1)],
430             [DX_REQUIRE_PROG([DX_DOT], dot)],
431             [DX_ENV_APPEND(HAVE_DOT, YES)
432              AC_SUBST(HAVE_DOT, YES)
433              DX_ENV_APPEND(DOT_PATH, [`DX_DIRNAME_EXPR($DX_DOT)`])],
434             [AC_SUBST(HAVE_DOT, NO)
435              DX_ENV_APPEND(HAVE_DOT, NO)])
437 # Man pages generation:
438 DX_ARG_ABLE(man, [generate doxygen manual pages],
439             [DX_CHECK_DEPEND(doc, 1)],
440             [DX_CLEAR_DEPEND(doc, 1)],
441             [],
442             [DX_ENV_APPEND(GENERATE_MAN, YES)],
443             [DX_ENV_APPEND(GENERATE_MAN, NO)])
445 # RTF file generation:
446 DX_ARG_ABLE(rtf, [generate doxygen RTF documentation],
447             [DX_CHECK_DEPEND(doc, 1)],
448             [DX_CLEAR_DEPEND(doc, 1)],
449             [],
450             [DX_ENV_APPEND(GENERATE_RTF, YES)],
451             [DX_ENV_APPEND(GENERATE_RTF, NO)])
453 # XML file generation:
454 DX_ARG_ABLE(xml, [generate doxygen XML documentation],
455             [DX_CHECK_DEPEND(doc, 1)],
456             [DX_CLEAR_DEPEND(doc, 1)],
457             [],
458             [DX_ENV_APPEND(GENERATE_XML, YES)],
459             [DX_ENV_APPEND(GENERATE_XML, NO)])
461 # (Compressed) HTML help generation:
462 DX_ARG_ABLE(chm, [generate doxygen compressed HTML help documentation],
463             [DX_CHECK_DEPEND(doc, 1)],
464             [DX_CLEAR_DEPEND(doc, 1)],
465             [DX_REQUIRE_PROG([DX_HHC], hhc)],
466             [DX_ENV_APPEND(HHC_PATH, $DX_HHC)
467              DX_ENV_APPEND(GENERATE_HTML, YES)
468              DX_ENV_APPEND(GENERATE_HTMLHELP, YES)],
469             [DX_ENV_APPEND(GENERATE_HTMLHELP, NO)])
471 # Seperate CHI file generation.
472 DX_ARG_ABLE(chi, [generate doxygen seperate compressed HTML help index file],
473             [DX_CHECK_DEPEND(chm, 1)],
474             [DX_CLEAR_DEPEND(chm, 1)],
475             [],
476             [DX_ENV_APPEND(GENERATE_CHI, YES)],
477             [DX_ENV_APPEND(GENERATE_CHI, NO)])
479 # Plain HTML pages generation:
480 DX_ARG_ABLE(html, [generate doxygen plain HTML documentation],
481             [DX_CHECK_DEPEND(doc, 1) DX_CHECK_DEPEND(chm, 0)],
482             [DX_CLEAR_DEPEND(doc, 1) DX_CLEAR_DEPEND(chm, 0)],
483             [],
484             [DX_ENV_APPEND(GENERATE_HTML, YES)],
485             [DX_TEST_FEATURE(chm) || DX_ENV_APPEND(GENERATE_HTML, NO)])
487 # PostScript file generation:
488 DX_ARG_ABLE(ps, [generate doxygen PostScript documentation],
489             [DX_CHECK_DEPEND(doc, 1)],
490             [DX_CLEAR_DEPEND(doc, 1)],
491             [DX_REQUIRE_PROG([DX_LATEX], latex)
492              DX_REQUIRE_PROG([DX_MAKEINDEX], makeindex)
493              DX_REQUIRE_PROG([DX_DVIPS], dvips)
494              DX_REQUIRE_PROG([DX_EGREP], egrep)])
496 # PDF file generation:
497 DX_ARG_ABLE(pdf, [generate doxygen PDF documentation],
498             [DX_CHECK_DEPEND(doc, 1)],
499             [DX_CLEAR_DEPEND(doc, 1)],
500             [DX_REQUIRE_PROG([DX_PDFLATEX], pdflatex)
501              DX_REQUIRE_PROG([DX_MAKEINDEX], makeindex)
502              DX_REQUIRE_PROG([DX_EGREP], egrep)])
504 # LaTeX generation for PS and/or PDF:
505 if DX_TEST_FEATURE(ps) || DX_TEST_FEATURE(pdf); then
506     AM_CONDITIONAL(DX_COND_latex, :)
507     DX_ENV_APPEND(GENERATE_LATEX, YES)
508 else
509     AM_CONDITIONAL(DX_COND_latex, false)
510     DX_ENV_APPEND(GENERATE_LATEX, NO)
513 # Paper size for PS and/or PDF:
514 AC_ARG_VAR(DOXYGEN_PAPER_SIZE,
515            [letter (default), a4, a4wide, legal or executive])
516 case "$DOXYGEN_PAPER_SIZE" in
519     DOXYGEN_PAPER_SIZE="letter"
520 ;; #(
521 a4wide|a4|letter|legal|executive)
522     DX_ENV_APPEND(PAPER_SIZE, $DOXYGEN_PAPER_SIZE)
523 ;; #(
525     AC_MSG_ERROR([unknown DOXYGEN_PAPER_SIZE='$DOXYGEN_PAPER_SIZE'])
526     DOXYGEN_PAPER_SIZE="letter"
528 esac
529 DX_ENV_APPEND(PAPER_SIZE, "$DOXYGEN_PAPER_SIZE")
531 AC_ARG_VAR(DOXYGEN_HTML_LOGO,
532            [Location of small logo graphic (for HTML)])
533 if test -n "$DOXYGEN_HTML_LOGO"; then
534     if ! test -f "$DOXYGEN_HTML_LOGO"; then
535       AC_MSG_ERROR([not a file: "$DOXYGEN_HTML_LOGO"])
536     fi
539 AC_ARG_VAR(DOXYGEN_LOGO,
540            [Location of larger logo graphic (for PDF)])
541 if test -n "$DOXYGEN_LOGO"; then
542   if ! test -f "$DOXYGEN_LOGO"; then
543     AC_MSG_ERROR([not a file: "$DOXYGEN_LOGO"])
544   fi
547 AC_ARG_VAR(DOXYGEN_TITLE,
548            [Doxygen document title])
549 if test -z "$DOXYGEN_TITLE"; then
550   DOXYGEN_TITLE="${PACKAGE_NAME}"
553 AC_ARG_VAR(DOXYGEN_AUTHOR,
554            [Doxygen document author])
555 if test -z "$DOXYGEN_AUTHOR"; then
556   DOXYGEN_AUTHOR="Generated by doxygen ${DOXYGEN_VERSION}"
559 AC_ARG_VAR(DOXYGEN_DATETIME,
560            [Doxygen date and time value])
561 if test -z "$DOXYGEN_DATETIME"; then
562   DOXYGEN_DATETIME=`date +'%D %T'`
565 AC_ARG_VAR(DOXYGEN_DATE,
566            [Doxygen date value])
567 if test -z "$DOXYGEN_DATE"; then
568   DOXYGEN_DATE=`date +%D`
571 #For debugging:
572 #echo DX_FLAG_doc=$DX_FLAG_doc
573 #echo DX_FLAG_dot=$DX_FLAG_dot
574 #echo DX_FLAG_man=$DX_FLAG_man
575 #echo DX_FLAG_html=$DX_FLAG_html
576 #echo DX_FLAG_chm=$DX_FLAG_chm
577 #echo DX_FLAG_chi=$DX_FLAG_chi
578 #echo DX_FLAG_rtf=$DX_FLAG_rtf
579 #echo DX_FLAG_xml=$DX_FLAG_xml
580 #echo DX_FLAG_pdf=$DX_FLAG_pdf
581 #echo DX_FLAG_ps=$DX_FLAG_ps
582 #echo DX_ENV=$DX_ENV