Updated doxyfiles to use proper top_srcdir macro in INPUT field. Updated macro files to display one-line messages. Other minor details.

git-svn-id: https://svn.code.sf.net/p/flaim/code/trunk@1091 0109f412-320b-0410-ab79-c3e0c5ffbbe6
This commit is contained in:
jcalcote
2009-04-23 23:46:34 +00:00
parent 40fba2fbce
commit 79b06014d7
20 changed files with 3800 additions and 302 deletions

View File

@@ -2,7 +2,7 @@
# Process this file with autoconf to produce a configure script.
AC_PREREQ([2.62])
AC_INIT([SQLFLAIM],[6.0],[flaim-users@forge.novell.com])
AC_INIT([SQLFLAIM], [6.0], [flaim-users@forge.novell.com])
AM_INIT_AUTOMAKE([-Wall -Werror])
LT_PREREQ([2.2])
LT_INIT([dlopen])

View File

@@ -1,21 +1,24 @@
# AC_PROG_TRY_DOXYGEN([quiet])
# ----------------------------
# AC_PROG_TRY_DOXYGEN(["quiet"])
# ------------------------------
# AC_PROG_TRY_DOXYGEN tests for an existing doxygen source
# documentation program. It sets or uses the environment
# variable DOXYGEN.
#
# If no arguments are given to this macro, and no doxygen
# program can be found, it prints a very visible message
# to STDOUT and to the config.log file. If the "quiet"
# argument is passed, then only the normal "check" line
# is displayed. (Technically, any passing any value in
# the first argument has the same effect as "quiet".)
# program can be found, it prints a warning message to STDOUT
# and to the config.log file. If the "quiet" argument is passed,
# then only the normal "check" line is displayed.
#
# Makes DOXYGEN precious to Autoconf. You can use DOXYGEN in
# your Makefile.in files with @DOXYGEN@.
# Makes the DOXYGEN variable precious to Autoconf. You can
# use the DOXYGEN variable in your Makefile.in files with
# @DOXYGEN@.
#
# NOTE: Currently, passing any value in the first argument has
# the same effect as passing "quiet", however, you should
# not rely on this, as all other words are reserved.
#
# Author: John Calcote <john.calcote@gmail.com>
# Modified: 2009-04-22
# Modified: 2009-04-23
# License: AllPermissive
#
AC_DEFUN([AC_PROG_TRY_DOXYGEN],
@@ -24,10 +27,6 @@ AC_ARG_VAR([DOXYGEN], [Doxygen source doc generation program])dnl
AC_CHECK_PROGS([DOXYGEN], [doxygen$EXEEXT])
m4_ifvaln([$1],,
[if test -z "$DOXYGEN"; then
AC_MSG_WARN([
-----------------------------------------
No Doxygen program found - continuing
without Doxygen documentation support.
-----------------------------------------])
AC_MSG_WARN([Doxygen program not found - continuing without Doxygen support])
fi])dnl
])