IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jan 23, 2007, 4:54:15 PM (19 years ago)
Author:
magnier
Message:

cleaned up Doxygen groups

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psModules/configure.ac

    r11250 r11253  
    9696
    9797dnl doxygen -------------------------------------------------------------------
    98 
    99 AC_CHECK_PROG([doxygen], [doxygen], [true], [false])
    100 AM_CONDITIONAL(DOXYGEN, test x$doxygen = xtrue)
     98dnl doxygen doc generation is very, very slow so we're turing it off by default
     99
     100dnl save LIBS/CFLAGS/LDFLAGS
     101TMP_LIBS=${LIBS}
     102TMP_CFLAGS=${CFLAGS}
     103TMP_LDFLAGS=${LDFLAGS}
     104TMP_CPPFLAGS=${CPPFLAGS}
     105
     106AC_ARG_ENABLE(doxygen,
     107  [AS_HELP_STRING(--enable-doxygen ,enable manpage generation)],
     108  [AC_MSG_RESULT(doxygen enabled)
     109    AC_PATH_PROG([DOXYGEN], [doxygen], [])
     110  ],
     111  [AC_MSG_RESULT([doxygen disabled])
     112    doxygen=off
     113  ]
     114)
     115AM_CONDITIONAL([HAVE_DOXYGEN], test -n "$DOXYGEN" -a "x$doxygen" != "xoff")
     116
     117dnl restore the CFLAGS/LDFLAGS
     118LIBS=${TMP_LIBS}
     119CFLAGS=${TMP_CFLAGS}
     120LDFLAGS=${TMP_LDFLAGS}
     121CPPFLAGS=${TMP_CPPFLAGS}
    101122
    102123dnl ------------------------------------------------------------
Note: See TracChangeset for help on using the changeset viewer.