From: teranisi Date: Thu, 12 Jul 2001 10:50:21 +0000 (+0000) Subject: * WL-MK (config-wl-package-subr): Check smtp.el version. X-Git-Tag: wl-2_6_1~57 X-Git-Url: http://git.chise.org/gitweb/?p=elisp%2Fwanderlust.git;a=commitdiff_plain;h=59110c966481fbcbaaa7fdf379dcbde40fc0826e * WL-MK (config-wl-package-subr): Check smtp.el version. --- diff --git a/ChangeLog b/ChangeLog index d684885..e956c2b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2001-07-12 Yuuichi Teranishi + + * WL-MK (config-wl-package-subr): Check smtp.el version. + 2001-07-04 Yuuichi Teranishi * 2.6.0 - "Twist And Shout" diff --git a/WL-MK b/WL-MK index 1d7d047..44d5b8d 100644 --- a/WL-MK +++ b/WL-MK @@ -101,6 +101,10 @@ (condition-case () (require 'mime-setup) (error (error "No MIME module was detected. Please install SEMI or tm."))) + ;; smtp.el version check. + (require 'smtp) + (if (not (fboundp 'smtp-send-buffer)) + (error "Please install FLIM 1.14.0 or later.")) (princ (concat "\nMIME module is " (if wl-use-semi "SEMI" "tm-8") ".\n")))) (defun config-wl-pixmap-dir (&optional packagedir)