From 81d62102f205262b0d9a9efe7afdee454381f652 Mon Sep 17 00:00:00 2001 From: ueno Date: Thu, 4 Jan 2007 05:42:53 +0000 Subject: [PATCH] * configure.ac: Use AC_MSG_WARN instead of AC_MSG_ERROR. --- ChangeLog | 2 ++ configure.ac | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index bd29f29..e8bdbce 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2007-01-04 Daiki Ueno + * configure.ac: Use AC_MSG_WARN instead of AC_MSG_ERROR. + * epg.el (epg-signature-to-string): Print creation-time and used pubkey-algorithm. (epg-sign-string): If the GnuPG version is earlier than 1.4.3, diff --git a/configure.ac b/configure.ac index adb163c..f84a7c5 100644 --- a/configure.ac +++ b/configure.ac @@ -9,7 +9,7 @@ AC_PATH_PACKAGEDIR AM_CONDITIONAL(XEMACS, test ${EMACS_FLAVOR} = xemacs) -AC_CHECK_GPG(1.4.3,,AC_MSG_ERROR([No suitable version of gpg])) +AC_CHECK_GPG(1.4.3,,AC_MSG_WARN([No suitable version of gpg])) AC_CONFIG_FILES([Makefile]) AC_OUTPUT -- 1.7.10.4