IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 5357


Ignore:
Timestamp:
Oct 17, 2005, 2:21:14 PM (21 years ago)
Author:
desonia
Message:

fixed so that doxygen is not required.

Location:
branches/rel8/psModules
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/rel8/psModules/Makefile.am

    r5067 r5357  
    88EXTRA_DIST = Doxyfile.in psmodule-config.in psmodule.pc.in
    99
     10if DOXYGEN
     11
    1012docs: Doxyfile $(prefix)/docs/psmodule $(mandir)/man3
    11         $(DOXYGEN)
     13        doxygen Doxyfile
    1214        mv -f $(prefix)/docs/psmodule/man/man3/* $(mandir)/man3
    1315        rm -rf $(prefix)/docs/psmodule/man
     
    2426CLEANFILES = $(prefix)/docs/psmodule/*
    2527
     28endif
     29
    2630test: check
  • branches/rel8/psModules/configure.ac

    r5324 r5357  
    4747dnl doxygen -------------------------------------------------------------------
    4848
    49 AC_PATH_PROG([DOXYGEN], [doxygen], [missing])
    50 if test "$DOXYGEN" = "missing" ; then
    51   AC_MSG_ERROR([doxygen is required])
    52 fi
    53 
    54 dnl needed by doxygen
    55 AC_PATH_PROG([PERL], [perl], [missing])
    56 if test "$PERL" = "missing" ; then
    57   AC_MSG_ERROR([perl is required])
    58 fi
     49AC_CHECK_PROG([doxygen], [doxygen], [true], [false])
     50AM_CONDITIONAL(DOXYGEN, test x$doxygen = xtrue)
    5951
    6052dnl pslib ---------------------------------------------------------------------
Note: See TracChangeset for help on using the changeset viewer.