diff options
author | Martin Baulig <martin@home-of-linux.org> | 1998-08-26 20:43:09 +0800 |
---|---|---|
committer | Martin Baulig <martin@src.gnome.org> | 1998-08-26 20:43:09 +0800 |
commit | 4da4e492496efde4b1daaf6883a985332154a64b (patch) | |
tree | 7ea0e3ef704b41c0b47b31efd42a00bdbdaac8a6 /macros | |
parent | 5d410b8d4330ea687579595b681ad91090136ea3 (diff) | |
download | gsoc2013-evolution-4da4e492496efde4b1daaf6883a985332154a64b.tar gsoc2013-evolution-4da4e492496efde4b1daaf6883a985332154a64b.tar.gz gsoc2013-evolution-4da4e492496efde4b1daaf6883a985332154a64b.tar.bz2 gsoc2013-evolution-4da4e492496efde4b1daaf6883a985332154a64b.tar.lz gsoc2013-evolution-4da4e492496efde4b1daaf6883a985332154a64b.tar.xz gsoc2013-evolution-4da4e492496efde4b1daaf6883a985332154a64b.tar.zst gsoc2013-evolution-4da4e492496efde4b1daaf6883a985332154a64b.zip |
Use `AC_MSG_WARN' if LibGTop cannot be found and the `fail' argument is
1998-08-26 Martin Baulig <martin@home-of-linux.org>
* gnome-libgtop-check.m4 (GNOME_INIT_LIBGTOP): Use `AC_MSG_WARN'
if LibGTop cannot be found and the `fail' argument is not given.
svn path=/trunk/; revision=340
Diffstat (limited to 'macros')
-rw-r--r-- | macros/ChangeLog | 5 | ||||
-rw-r--r-- | macros/gnome-libgtop-check.m4 | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/macros/ChangeLog b/macros/ChangeLog index 93d0587399..e62301dac7 100644 --- a/macros/ChangeLog +++ b/macros/ChangeLog @@ -1,3 +1,8 @@ +1998-08-26 Martin Baulig <martin@home-of-linux.org> + + * gnome-libgtop-check.m4 (GNOME_INIT_LIBGTOP): Use `AC_MSG_WARN' + if LibGTop cannot be found and the `fail' argument is not given. + 1998-08-24 Martin Baulig <martin@home-of-linux.org> * gnome-support.m4 (GCC_NEED_DECLARATIONS): Added `setreuid', diff --git a/macros/gnome-libgtop-check.m4 b/macros/gnome-libgtop-check.m4 index fc8fe80cae..a8fbfb6d74 100644 --- a/macros/gnome-libgtop-check.m4 +++ b/macros/gnome-libgtop-check.m4 @@ -82,7 +82,7 @@ AC_DEFUN([GNOME_LIBGTOP_HOOK], 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) + AC_MSG_WARN(LibGTop >= $min_libgtop_version not found) fi fi |