* md5-el.el (md5-encode): If `md5-maximum-internal-length' is nil,
[elisp/flim.git] / FLIM-ELS
index d42f9b7..d03d26a 100644 (file)
--- a/FLIM-ELS
+++ b/FLIM-ELS
@@ -1,15 +1,32 @@
 ;;; -*-Emacs-Lisp-*-
-;;;
-;;; $Id: FLIM-ELS,v 1.1 1998-04-13 13:08:14 morioka Exp $
-;;;
 
-(setq flim-modules '(std11 std11-parse
-                          mel mel-dl mel-b mel-q mel-u mel-g
-                          mime-def eword-decode eword-encode
-                          ))
+;; FLIM-ELS: list of FLIM modules to install
 
-(if (fboundp 'dynamic-link)
-    (setq flim-modules (cons 'mel-dl flim-modules))
+;;; Code:
+
+(setq flim-modules '(std11
+                    luna mime-def
+                    mel mel-q mel-u mel-g
+                    eword-decode eword-encode
+                    mime mime-parse mmbuffer mmcooked mmdbuffer
+                    mailcap
+                    smtp smtpmail sasl
+                    md5 md5-el md5-dl
+                    sha1 sha1-el sha1-dl
+                    hmac-def hmac-md5 hmac-sha1 hex-util
+                    scram-md5 digest-md5 unique-id
+                    starttls))
+
+(unless (and (fboundp 'base64-encode-string)
+            (subrp (symbol-function 'base64-encode-string)))
+  (if (fboundp 'dynamic-link)
+      (setq flim-modules (cons 'mel-b-dl flim-modules))
+    )
+  (setq flim-modules (cons 'mel-b-el flim-modules))
   )
 
+(require 'pccl)
+(unless-broken ccl-usable
+  (setq flim-modules (cons 'mel-b-ccl (cons 'mel-q-ccl flim-modules))))
+
 ;;; FLIM-ELS ends here