* Sync up to flim-1_11_2 from flim-1_11_0.
[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                      closure
11                      natset
12                      digraph
13                      automata rx lex
14                      lr-driver
15                      ew-var
16                      ew-util
17                      ew-line
18                      ew-quote
19                      ew-bq
20                      ew-unit
21                      ew-data
22                      ew-parse
23                      ew-scan-s
24                      ew-scan-m
25                      ew-scan-u
26                      ew-scan-n
27                      ew-dec
28                      eword-decode eword-encode
29                      ew-compat
30                      mime mime-parse mmgeneric mmbuffer mmcooked
31                      mailcap
32                      ))
33
34 (unless (and (fboundp 'base64-encode-string)
35              (subrp (symbol-function 'base64-encode-string)))
36   (if (fboundp 'dynamic-link)
37       (setq flim-modules (cons 'mel-b-dl flim-modules))
38     )
39   (setq flim-modules (cons 'mel-b-el flim-modules))
40   )
41
42 (if (and (featurep 'mule)
43          (not (or (and (boundp 'MULE) MULE)
44                   (and (featurep 'xemacs) (< emacs-major-version 21))
45                   )))
46     (setq flim-modules (cons 'mel-b-ccl (cons 'mel-q-ccl flim-modules)))
47   )
48
49 ;;; FLIM-ELS ends here