diff options
author | Martin Baulig <martin@home-of-linux.org> | 1998-08-24 00:26:47 +0800 |
---|---|---|
committer | Martin Baulig <martin@src.gnome.org> | 1998-08-24 00:26:47 +0800 |
commit | 8a43c4945942bdc2a6e44f7202e67d849d45d2ba (patch) | |
tree | 9b919bcbbf4d93fc9752ade54f45cbdd64bed3d2 /macros/gnome-libgtop-check.m4 | |
parent | ea96ac1a829d393cc6b014d8f4cd9cad82c29b3e (diff) | |
download | gsoc2013-evolution-8a43c4945942bdc2a6e44f7202e67d849d45d2ba.tar.gz gsoc2013-evolution-8a43c4945942bdc2a6e44f7202e67d849d45d2ba.tar.zst gsoc2013-evolution-8a43c4945942bdc2a6e44f7202e67d849d45d2ba.zip |
You can give this macro two parameters: the required version number and an
1998-08-23 Martin Baulig <martin@home-of-linux.org>
* gnome-libgtop-check.m4 (GNOME_INIT_LIBGTOP): You can give
this macro two parameters: the required version number and
an optional `fail' argument to make it fail if LibGTop is
not found.
svn path=/trunk/; revision=330
Diffstat (limited to 'macros/gnome-libgtop-check.m4')
-rw-r--r-- | macros/gnome-libgtop-check.m4 | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/macros/gnome-libgtop-check.m4 b/macros/gnome-libgtop-check.m4 index 25a7bf924e..fc8fe80cae 100644 --- a/macros/gnome-libgtop-check.m4 +++ b/macros/gnome-libgtop-check.m4 @@ -11,9 +11,9 @@ AC_DEFUN([GNOME_LIBGTOP_TYPES], ]) dnl -dnl GNOME_LIBGTOP_HOOK (script-if-libgtop-enabled, failflag) +dnl GNOME_LIBGTOP_HOOK (minversion, script-if-libgtop-enabled, failflag) dnl -dnl if failflag is "fail" then GNOME_LIBGTOP_HOOK will abort if gtopConf.sh +dnl if failflag is "fail" then GNOME_LIBGTOP_HOOK will abort if LibGTop dnl is not found. dnl @@ -75,13 +75,20 @@ AC_DEFUN([GNOME_LIBGTOP_HOOK], if test x$no_libgtop = x ; then AC_DEFINE(HAVE_LIBGTOP) AC_MSG_RESULT(yes) + dnl Note that an empty true branch is not valid sh syntax. + ifelse([$2], [], :, [$2]) else AC_MSG_RESULT(no) + if test "x$3" = "xfail"; then + AC_MSG_ERROR(LibGTop >= $min_libgtop_version not found) + else + AC_MSG_ERROR(LibGTop >= $min_libgtop_version not found) + fi fi AM_CONDITIONAL(HAVE_LIBGTOP, test x$no_libgtop != xyes) ]) AC_DEFUN([GNOME_INIT_LIBGTOP],[ - GNOME_LIBGTOP_HOOK([],) + GNOME_LIBGTOP_HOOK($1,[],$2) ]) |