* WL-MK (config-wl-package-subr): Check smtp.el version.
authorteranisi <teranisi>
Thu, 12 Jul 2001 10:49:27 +0000 (10:49 +0000)
committerteranisi <teranisi>
Thu, 12 Jul 2001 10:49:27 +0000 (10:49 +0000)
ChangeLog
WL-MK

index 1504214..44496ff 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2001-07-12  Yuuichi Teranishi  <teranisi@gohome.org>
+
+       * WL-MK (config-wl-package-subr): Check smtp.el version.
+
 2001-05-24  Yoichi NAKAYAMA  <yoichi@eken.phys.nagoya-u.ac.jp>
 
        * WL-MK (wl-detect-info-directory): Call `info-initialize' for
diff --git a/WL-MK b/WL-MK
index 231612b..777e5e3 100644 (file)
--- a/WL-MK
+++ b/WL-MK
     (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)