New macro. This checks whether you have the LibGTop documentation

1999-01-23  Martin Baulig  <martin@home-of-linux.org>

	* gnome-libgtop-checks.m4 (GNOME_LIBGTOP_DOCU): New macro. This
	checks whether you have the LibGTop documentation installed and
	defines `HAVE_LIBGTOP_DOCU' if appropriate. Also provides automake
 	conditional.

svn path=/trunk/; revision=618
This commit is contained in:
Martin Baulig
1999-01-23 18:29:06 +00:00
committed by Martin Baulig
parent 2f77d8f40d
commit 95a1254799
2 changed files with 34 additions and 0 deletions

View File

@ -1,3 +1,10 @@
1999-01-23 Martin Baulig <martin@home-of-linux.org>
* gnome-libgtop-checks.m4 (GNOME_LIBGTOP_DOCU): New macro. This
checks whether you have the LibGTop documentation installed and
defines `HAVE_LIBGTOP_DOCU' if appropriate. Also provides automake
conditional.
1999-01-20 Martin Baulig <martin@home-of-linux.org>
* acinclude.m4 (ac_result): Unset CATOBJEXT so

View File

@ -153,3 +153,30 @@ AC_DEFUN([GNOME_LIBGTOP_HOOK],
AC_DEFUN([GNOME_INIT_LIBGTOP],[
GNOME_LIBGTOP_HOOK($1,[ifelse([$3], [], :, [$3])],$2)
])
dnl
dnl GNOME_LIBGTOP_DOCU
dnl
dnl checks whether the documentation of LibGTop is installed
dnl
AC_DEFUN([GNOME_LIBGTOP_DOCU],
[
AC_REQUIRE([GNOME_LIBGTOP_HOOK])
helpdir="$LIBGTOP_DATADIR/gnome/help/libgtop"
AC_MSG_CHECKING(whether you have the LibGTop Documentation)
if test -f "$helpdir/C/topic.dat" ; then
have_libgtop_docu=yes
AC_DEFINE(HAVE_LIBGTOP_DOCU)
else
have_libgtop_docu=no
fi
AC_MSG_RESULT($have_libgtop_docu)
AM_CONDITIONAL(HAVE_LIBGTOP_DOCU, test x$have_libgtop_docu = xyes)
])