29d822ae4fa9370226baa1fba7e145e3c80de50b
[elisp/gnus.git-] / lisp / dgnushack.el
1 ;;; dgnushack.el --- a hack to set the load path for byte-compiling
2 ;; Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001
3 ;;        Free Software Foundation, Inc.
4
5 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
6 ;; Version: 4.19
7 ;; Keywords: news, path
8
9 ;; This file is part of GNU Emacs.
10
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation; either version 2, or (at your option)
14 ;; any later version.
15
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19 ;; GNU General Public License for more details.
20
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24 ;; Boston, MA 02111-1307, USA.
25
26 ;;; Commentary:
27
28 ;;; Code:
29
30 (defalias 'facep 'ignore)
31
32 (require 'cl)
33
34 (defvar srcdir (or (getenv "srcdir") "."))
35
36 (defun my-getenv (str)
37   (let ((val (getenv str)))
38     (if (equal val "no") nil val)))
39
40 (if (my-getenv "lispdir")
41     (push (my-getenv "lispdir") load-path))
42
43 (push (or (my-getenv "URLDIR") (expand-file-name "../../url/lisp/" srcdir))
44       load-path)
45
46 (push (or (my-getenv "W3DIR") (expand-file-name "../../w3/lisp/" srcdir))
47       load-path)
48
49 (push "/usr/share/emacs/site-lisp" load-path)
50
51 (unless (featurep 'xemacs)
52   (define-compiler-macro last (&whole form x &optional n)
53     (if (and (fboundp 'last)
54              (subrp (symbol-function 'last)))
55         form
56       (if n
57           `(let* ((x ,x)
58                   (n ,n)
59                   (m 0)
60                   (p x))
61              (while (consp p)
62                (incf m)
63                (pop p))
64              (if (<= n 0)
65                  p
66                (if (< n m)
67                    (nthcdr (- m n) x)
68                  x)))
69         `(let ((x ,x))
70            (while (consp (cdr x))
71              (pop x))
72            x))))
73
74   (define-compiler-macro coerce (&whole form x type)
75     (if (and (fboundp 'coerce)
76              (subrp (symbol-function 'coerce)))
77         form
78       `(let ((x ,x)
79              (type ,type))
80          (cond ((eq type 'list) (if (listp x) x (append x nil)))
81                ((eq type 'vector) (if (vectorp x) x (vconcat x)))
82                ((eq type 'string) (if (stringp x) x (concat x)))
83                ((eq type 'array) (if (arrayp x) x (vconcat x)))
84                ((and (eq type 'character) (stringp x) (= (length x) 1))
85                 (aref x 0))
86                ((and (eq type 'character) (symbolp x)
87                      (= (length (symbol-name x)) 1))
88                 (aref (symbol-name x) 0))
89                ((eq type 'float) (float x))
90                ((typep x type) x)
91                (t (error "Can't coerce %s to type %s" x type))))))
92
93   (define-compiler-macro merge (&whole form type seq1 seq2 pred &rest keys)
94     (if (and (fboundp 'merge)
95              (subrp (symbol-function 'merge)))
96         form
97       `(let ((type ,type)
98              (seq1 ,seq1)
99              (seq2 ,seq2)
100              (pred ,pred))
101          (or (listp seq1) (setq seq1 (append seq1 nil)))
102          (or (listp seq2) (setq seq2 (append seq2 nil)))
103          (let ((res nil))
104            (while (and seq1 seq2)
105              (if (funcall pred (car seq2) (car seq1))
106                  (push (pop seq2) res)
107                (push (pop seq1) res)))
108            (coerce (nconc (nreverse res) seq1 seq2) type)))))
109
110   (define-compiler-macro subseq (&whole form seq start &optional end)
111     (if (and (fboundp 'subseq)
112              (subrp (symbol-function 'subseq)))
113         form
114       (if end
115           `(let ((seq ,seq)
116                  (start ,start)
117                  (end ,end))
118              (if (stringp seq)
119                  (substring seq start end)
120                (let (len)
121                  (if (< end 0)
122                      (setq end (+ end (setq len (length seq)))))
123                  (if (< start 0)
124                      (setq start (+ start (or len (setq len (length seq))))))
125                  (cond ((listp seq)
126                         (if (> start 0)
127                             (setq seq (nthcdr start seq)))
128                         (let ((res nil))
129                           (while (>= (setq end (1- end)) start)
130                             (push (pop seq) res))
131                           (nreverse res)))
132                        (t
133                         (let ((res (make-vector (max (- end start) 0) nil))
134                               (i 0))
135                           (while (< start end)
136                             (aset res i (aref seq start))
137                             (setq i (1+ i)
138                                   start (1+ start)))
139                           res))))))
140         `(let ((seq ,seq)
141                (start ,start))
142            (if (stringp seq)
143                (substring seq start)
144              (let (len)
145                (if (< start 0)
146                    (setq start (+ start (or len (setq len (length seq))))))
147                (cond ((listp seq)
148                       (if (> start 0)
149                           (setq seq (nthcdr start seq)))
150                       (copy-sequence seq))
151                      (t
152                       (let* ((end (or len (length seq)))
153                              (res (make-vector (max (- end start) 0) nil))
154                              (i 0))
155                         (while (< start end)
156                           (aset res i (aref seq start))
157                           (setq i (1+ i)
158                                 start (1+ start)))
159                         res)))))))))
160   )
161
162 ;; If we are building w3 in a different directory than the source
163 ;; directory, we must read *.el from source directory and write *.elc
164 ;; into the building directory.  For that, we define this function
165 ;; before loading bytecomp.  Bytecomp doesn't overwrite this function.
166 (defun byte-compile-dest-file (filename)
167   "Convert an Emacs Lisp source file name to a compiled file name.
168  In addition, remove directory name part from FILENAME."
169   (setq filename (byte-compiler-base-file-name filename))
170   (setq filename (file-name-sans-versions filename))
171   (setq filename (file-name-nondirectory filename))
172   (if (memq system-type '(win32 w32 mswindows windows-nt))
173       (setq filename (downcase filename)))
174   (cond ((eq system-type 'vax-vms)
175          (concat (substring filename 0 (string-match ";" filename)) "c"))
176         ((string-match emacs-lisp-file-regexp filename)
177          (concat (substring filename 0 (match-beginning 0)) ".elc"))
178         (t (concat filename ".elc"))))
179
180 (require 'bytecomp)
181
182 (push srcdir load-path)
183 (load (expand-file-name "lpath.el" srcdir) nil t)
184
185 (defalias 'device-sound-enabled-p 'ignore)
186 (defalias 'play-sound-file 'ignore)
187 (defalias 'nndb-request-article 'ignore)
188 (defalias 'efs-re-read-dir 'ignore)
189 (defalias 'ange-ftp-re-read-dir 'ignore)
190 (defalias 'define-mail-user-agent 'ignore)
191
192 (eval-and-compile
193   (unless (featurep 'xemacs)
194     (defalias 'get-popup-menu-response 'ignore)
195     (defalias 'event-object 'ignore)
196     (defalias 'x-defined-colors 'ignore)
197     (defalias 'read-color 'ignore)))
198
199 (defun dgnushack-compile (&optional warn)
200   ;;(setq byte-compile-dynamic t)
201   (unless warn
202     (setq byte-compile-warnings
203           '(free-vars unresolved callargs redefine)))
204   (unless (locate-library "cus-edit")
205     (error "You do not seem to have Custom installed.
206 Fetch it from <URL:http://www.dina.kvl.dk/~abraham/custom/>.
207 You also then need to add the following to the lisp/dgnushack.el file:
208
209      (push \"~/lisp/custom\" load-path)
210
211 Modify to suit your needs."))
212   (let ((files (directory-files srcdir nil "^[^=].*\\.el$"))
213         ;;(byte-compile-generate-call-tree t)
214         file elc)
215     ;; Avoid barfing (from gnus-xmas) because the etc directory is not yet
216     ;; installed.
217     (when (featurep 'xemacs)
218       (setq gnus-xmas-glyph-directory "dummy"))
219     (dolist (file '("dgnushack.el" "lpath.el"))
220       (setq files (delete file files)))
221     (when (featurep 'base64)
222       (setq files (delete "base64.el" files)))
223     (condition-case code
224         (require 'w3-forms)
225       (error
226        (message "No w3: %s %s" code (locate-library "w3-forms"))
227        (dolist (file '("nnweb.el" "nnlistserv.el" "nnultimate.el"
228                        "nnslashdot.el" "nnwarchive.el" "webmail.el"
229                        "nnwfm.el" "nnrss.el"))
230          (setq files (delete file files)))))
231     (dolist (file
232              (if (featurep 'xemacs)
233                  '("md5.el" "smiley-ems.el")
234                '("gnus-xmas.el" "gnus-picon.el" "messagexmas.el"
235                  "nnheaderxm.el" "smiley.el")))
236       (setq files (delete file files)))
237
238     (dolist (file files)
239       (setq file (expand-file-name file srcdir))
240       (when (and (file-exists-p
241                   (setq elc (concat (file-name-nondirectory file) "c")))
242                  (file-newer-than-file-p file elc))
243         (delete-file elc)))
244
245     (while (setq file (pop files))
246       (setq file (expand-file-name file srcdir))
247       (when (or (not (file-exists-p
248                       (setq elc (concat (file-name-nondirectory file) "c"))))
249                 (file-newer-than-file-p file elc))
250         (ignore-errors
251           (byte-compile-file file))))))
252
253 (defun dgnushack-recompile ()
254   (require 'gnus)
255   (byte-recompile-directory "." 0))
256
257 (defvar dgnushack-gnus-load-file (expand-file-name "gnus-load.el"))
258 (defvar dgnushack-cus-load-file (expand-file-name "cus-load.el"))
259
260 (defun dgnushack-make-cus-load ()
261   (load "cus-dep")
262   (let ((cusload-base-file dgnushack-cus-load-file))
263     (if (fboundp 'custom-make-dependencies)
264         (custom-make-dependencies)
265       (Custom-make-dependencies))))
266
267 (defun dgnushack-make-auto-load ()
268   (require 'autoload)
269   (let ((generated-autoload-file dgnushack-gnus-load-file)
270         (make-backup-files nil)
271         (autoload-package-name "gnus"))
272     (if (featurep 'xemacs) 
273         (if (file-exists-p generated-autoload-file)
274             (delete-file generated-autoload-file))
275       (with-temp-file generated-autoload-file
276         (insert ?\014)))
277     (batch-update-autoloads)))
278
279 (defun dgnushack-make-load ()
280   (message (format "Generating %s..." dgnushack-gnus-load-file))
281   (with-temp-file dgnushack-gnus-load-file
282     (insert-file-contents dgnushack-cus-load-file)
283     (delete-file dgnushack-cus-load-file)
284     (goto-char (point-min))
285     (search-forward ";;; Code:")
286     (forward-line)
287     (delete-region (point-min) (point))
288     (insert "\
289 ;;; gnus-load.el --- automatically extracted custom dependencies and autoload
290 ;;
291 ;;; Code:
292 ")
293     (goto-char (point-max))
294     (if (search-backward "custom-versions-load-alist" nil t)
295         (forward-line -1)
296       (forward-line -1)
297       (while (eq (char-after) ?\;)
298         (forward-line -1))
299       (forward-line))
300     (delete-region (point) (point-max))
301     (insert "\n")
302     ;; smiley-* are duplicated. Remove them all.
303     (let ((point (point)))
304       (insert-file-contents dgnushack-gnus-load-file)
305       (goto-char point)
306       (while (search-forward "smiley-" nil t)
307         (beginning-of-line)
308         (if (looking-at "(autoload ")
309             (delete-region (point) (progn (forward-sexp) (point)))
310           (forward-line))))
311     ;;
312     (goto-char (point-max))
313     (when (search-backward "\n(provide " nil t)
314       (forward-line -1)
315       (delete-region (point) (point-max)))
316     (insert "\
317
318 \(provide 'gnus-load)
319
320 ;;; Local Variables:
321 ;;; version-control: never
322 ;;; no-byte-compile: t
323 ;;; no-update-autoloads: t
324 ;;; End:
325 ;;; gnus-load.el ends here\n"))
326   (message (format "Compiling %s..." dgnushack-gnus-load-file))
327   (byte-compile-file dgnushack-gnus-load-file))
328
329 ;;; dgnushack.el ends here