1 Index: cgicc-3.2.9/Makefile.am
2 ===================================================================
3 --- cgicc-3.2.9.orig/Makefile.am 2010-02-25 16:34:06.000000000 +0100
4 +++ cgicc-3.2.9/Makefile.am 2010-02-25 16:34:14.000000000 +0100
17 -SUBDIRS = cgicc doc support $(DEMO)
18 +SUBDIRS = cgicc $(DOCDIR) support $(DEMO)
22 Index: cgicc-3.2.9/configure.ac
23 ===================================================================
24 --- cgicc-3.2.9.orig/configure.ac 2010-02-25 16:34:06.000000000 +0100
25 +++ cgicc-3.2.9/configure.ac 2010-02-25 16:45:46.000000000 +0100
30 -AC_CHECK_PROG(DOXYGEN, doxygen, doxygen, /bin/echo)
34 + [ --enable-doc build doc [[default=yes]]],
35 + [case "${enableval}" in
36 + yes) cgicc_doc=yes ;;
38 + *) AC_MSG_ERROR(bad value ${enableval} for --enable-doc) ;;
39 + esac], cgicc_doc=yes)
41 +if test "$cgicc_doc" = yes; then
42 + AC_CHECK_PROG(DOXYGEN, doxygen, doxygen)
43 + if test -z "$DOXYGEN" ; then
44 + AC_MSG_ERROR([Doxygen is required to build the documentation])
47 +AM_CONDITIONAL(DOC, test "$cgicc_doc" = yes)
49 dnl Determine host system type