From: ueno Date: Thu, 4 Jan 2007 05:45:12 +0000 (+0000) Subject: * configure.ac: Don't exit if GnuPG (>= 1.4.3) is unavailable. X-Git-Tag: epg-0_0_10~22 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=b133d68aa8ad0cd9effcf38382e94a5d35e49b62;p=elisp%2Fepg.git * configure.ac: Don't exit if GnuPG (>= 1.4.3) is unavailable. --- diff --git a/ChangeLog b/ChangeLog index e8bdbce..d409b84 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,6 @@ 2007-01-04 Daiki Ueno - * configure.ac: Use AC_MSG_WARN instead of AC_MSG_ERROR. + * configure.ac: Don't exit if GnuPG (>= 1.4.3) is unavailable. * epg.el (epg-signature-to-string): Print creation-time and used pubkey-algorithm. diff --git a/configure.ac b/configure.ac index f84a7c5..d416b2a 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_WARN([No suitable version of gpg])) +AC_CHECK_GPG(1.4.3) AC_CONFIG_FILES([Makefile]) AC_OUTPUT