diff options
-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 |