IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 13224


Ignore:
Timestamp:
May 3, 2007, 4:14:04 PM (19 years ago)
Author:
jhoblitt
Message:

disable doxygen by default

Location:
trunk/Nebulous/nebclient
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Nebulous/nebclient/Makefile.am

    r4926 r13224  
    11# Copyright (C) 2005  Joshua Hoblitt
    22#
    3 # $Id: Makefile.am,v 1.12 2005-08-31 03:02:59 jhoblitt Exp $
     3# $Id: Makefile.am,v 1.13 2007-05-04 02:14:04 jhoblitt Exp $
    44
    55SUBDIRS = src tests
     
    1010EXTRA_DIST = nebulous.wsdl
    1111
     12if HAVE_DOXYGEN
    1213man_MANS = \
    1314    $(top_builddir)/docs/man/man3/@PACKAGE@.3
     
    1516docs/man/man3/@PACKAGE@.3:
    1617        $(DOXYGEN)
     18endif
    1719
    1820clean-local:
  • trunk/Nebulous/nebclient/configure.ac

    r13209 r13224  
    11dnl Copyright (C) 2005  Joshua Hoblitt
    22dnl
    3 dnl $Id: configure.ac,v 1.16 2007-05-04 00:48:08 jhoblitt Exp $
     3dnl $Id: configure.ac,v 1.17 2007-05-04 02:14:04 jhoblitt Exp $
    44
    55AC_PREREQ(2.59)
     
    2020AC_PROG_LIBTOOL
    2121
    22 AC_PATH_PROG([DOXYGEN], [doxygen], [missing])
    23 if test "$DOXYGEN" = "missing" ; then
    24   AC_MSG_ERROR([doxygen is required])
    25 fi
     22AC_ARG_ENABLE(doxygen,
     23  [AS_HELP_STRING(--enable-doxygen ,enable manpage generation)],
     24  [AC_MSG_RESULT(doxygen enabled)
     25    AC_PATH_PROG([DOXYGEN], [doxygen], [])
     26  ],
     27  [AC_MSG_RESULT([doxygen disabled])
     28    doxygen=off
     29  ]
     30)
     31AM_CONDITIONAL([HAVE_DOXYGEN], test -n "$DOXYGEN" -a "x$doxygen" != "xoff")
    2632
    2733dnl needed by doxygen
Note: See TracChangeset for help on using the changeset viewer.