Merge flim-1_11_3.
[elisp/flim.git] / FLIM-ELS
1 ;;; -*-Emacs-Lisp-*-
2
3 ;; FLIM-ELS: list of FLIM modules to install
4
5 ;;; Code:
6
7 (setq flim-modules '(std11
8                      mime-def
9                      mel mel-q mel-u mel-g
10                      eword-decode eword-encode
11                      mime mime-parse mmgeneric mmbuffer mmcooked
12                      mailcap))
13
14 (unless (and (fboundp 'base64-encode-string)
15              (subrp (symbol-function 'base64-encode-string)))
16   (if (fboundp 'dynamic-link)
17       (setq flim-modules (cons 'mel-b-dl flim-modules))
18     )
19   (setq flim-modules (cons 'mel-b-el flim-modules))
20   )
21
22 (if (and (featurep 'mule)
23          (not (or (and (boundp 'MULE) MULE)
24                   (and (featurep 'xemacs) (< emacs-major-version 21))
25                   )))
26     (setq flim-modules (cons 'mel-b-ccl (cons 'mel-q-ccl flim-modules)))
27   )
28
29 ;;; FLIM-ELS ends here