* liece-misc.el: Don't require pccl and broken.
[elisp/liece.git] / lisp / liece-modules.el
1 ;;; liece-modules.el --- Module definitions.
2 ;; Copyright (C) 1999 Daiki Ueno
3
4 ;; Author: Daiki Ueno <ueno@unixuser.org>
5 ;; Created: 1999-04-12
6 ;; Keywords: IRC, liece, APEL
7
8 ;; This file is part of Liece.
9
10 ;; This program is free software; you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation; either version 2, or (at your option)
13 ;; any later version.
14
15 ;; This program is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 ;; GNU General Public License for more details.
19
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 ;; Boston, MA 02111-1307, USA.
24
25
26 ;;; Commentary:
27 ;; 
28
29 ;;; Code:
30
31 (defvar liece-modules-to-compile
32   '(gettext
33     liece-clfns
34     liece-handler
35     liece-compat
36     liece-version
37     liece-vars
38     liece-globals
39     liece-inlines
40     liece-filter
41     liece-coding
42     liece-dcc
43     liece-menu
44     liece-000
45     liece-200
46     liece-300
47     liece-400
48     liece-500
49     liece-nick
50     liece-channel
51     liece-commands
52     liece-ctcp
53     liece-q-el
54     liece-message
55     liece-handle
56     liece-hilit
57     liece-intl
58     liece-mail
59     liece-minibuf
60     liece-misc
61     liece-tcp
62     liece-url
63     liece-x-face
64     liece-window
65     liece))
66
67 (if (featurep 'xemacs)
68     (push 'liece-xemacs liece-modules-to-compile)
69   (push 'liece-emacs liece-modules-to-compile))
70
71 (if (fboundp 'set-face-stipple)
72     (push 'bitmap-stipple liece-modules-to-compile))
73
74 ;; (require 'pccl)
75 ;; (unless-broken ccl-usable
76 ;;   (push 'liece-q-ccl liece-modules-to-compile))
77
78 (setq liece-modules (cons 'liece-setup liece-modules-to-compile))
79
80 (push 'queue-m liece-modules-to-compile)
81
82 (provide 'liece-modules)
83
84 ;;; liece-modules.el ends here