* dgnushack.el (dgnushack-compile-verbosely): New function. Not
[gnus] / 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 ;; Define compiler macros for the functions provided by cl in old Emacsen.
52 (unless (featurep 'xemacs)
53   (define-compiler-macro butlast (&whole form x &optional n)
54     (if (>= emacs-major-version 21)
55         form
56       (if n
57           `(let ((x ,x)
58                  (n ,n))
59              (if (and n (<= n 0))
60                  x
61                (let ((m (length x)))
62                  (or n (setq n 1))
63                  (and (< n m)
64                       (progn
65                         (if (> n 0)
66                             (progn
67                               (setq x (copy-sequence x))
68                               (setcdr (nthcdr (- (1- m) n) x) nil)))
69                         x)))))
70         `(let* ((x ,x)
71                 (m (length x)))
72            (and (< 1 m)
73                 (progn
74                   (setq x (copy-sequence x))
75                   (setcdr (nthcdr (- m 2) x) nil)
76                   x))))))
77
78   (define-compiler-macro remove (&whole form item seq)
79     (if (>= emacs-major-version 21)
80         form
81       `(delete ,item (copy-sequence ,seq)))))
82
83 ;; If we are building w3 in a different directory than the source
84 ;; directory, we must read *.el from source directory and write *.elc
85 ;; into the building directory.  For that, we define this function
86 ;; before loading bytecomp.  Bytecomp doesn't overwrite this function.
87 (defun byte-compile-dest-file (filename)
88   "Convert an Emacs Lisp source file name to a compiled file name.
89  In addition, remove directory name part from FILENAME."
90   (setq filename (byte-compiler-base-file-name filename))
91   (setq filename (file-name-sans-versions filename))
92   (setq filename (file-name-nondirectory filename))
93   (if (memq system-type '(win32 w32 mswindows windows-nt))
94       (setq filename (downcase filename)))
95   (cond ((eq system-type 'vax-vms)
96          (concat (substring filename 0 (string-match ";" filename)) "c"))
97         ((string-match emacs-lisp-file-regexp filename)
98          (concat (substring filename 0 (match-beginning 0)) ".elc"))
99         (t (concat filename ".elc"))))
100
101 (require 'bytecomp)
102 ;; To avoid having defsubsts and inlines happen.
103 ;(if (featurep 'xemacs)
104 ;    (require 'byte-optimize)
105 ;  (require 'byte-opt))
106 ;(defun byte-optimize-inline-handler (form)
107 ;  "byte-optimize-handler for the `inline' special-form."
108 ;  (cons 'progn (cdr form)))
109 ;(defalias 'byte-compile-file-form-defsubst 'byte-compile-file-form-defun)
110
111 (push srcdir load-path)
112 (load (expand-file-name "lpath.el" srcdir) nil t)
113
114 (defalias 'device-sound-enabled-p 'ignore)
115 (defalias 'play-sound-file 'ignore)
116 (defalias 'nndb-request-article 'ignore)
117 (defalias 'efs-re-read-dir 'ignore)
118 (defalias 'ange-ftp-re-read-dir 'ignore)
119 (defalias 'define-mail-user-agent 'ignore)
120
121 (eval-and-compile
122   (unless (featurep 'xemacs)
123     (defalias 'get-popup-menu-response 'ignore)
124     (defalias 'event-object 'ignore)
125     (defalias 'x-defined-colors 'ignore)
126     (defalias 'read-color 'ignore)))
127
128 (eval-and-compile
129   (when (featurep 'xemacs)
130     (autoload 'Info-directory "info" nil t)
131     (autoload 'Info-menu "info" nil t)
132     (autoload 'annotations-at "annotations")
133     (autoload 'apropos "apropos" nil t)
134     (autoload 'apropos-command "apropos" nil t)
135     (autoload 'bbdb-complete-name "bbdb-com" nil t)
136     (autoload 'browse-url "browse-url" nil t)
137     (autoload 'customize-apropos "cus-edit" nil t)
138     (autoload 'customize-save-variable "cus-edit" nil t)
139     (autoload 'customize-variable "cus-edit" nil t)
140     (autoload 'delete-annotation "annotations")
141     (autoload 'dolist "cl-macs" nil nil 'macro)
142     (autoload 'enriched-decode "enriched")
143     (autoload 'info "info" nil t)
144     (autoload 'make-annotation "annotations")
145     (autoload 'make-display-table "disp-table")
146     (autoload 'pp "pp")
147     (autoload 'ps-despool "ps-print" nil t)
148     (autoload 'ps-spool-buffer "ps-print" nil t)
149     (autoload 'ps-spool-buffer-with-faces "ps-print" nil t)
150     (autoload 'read-passwd "passwd")
151     (autoload 'regexp-opt "regexp-opt")
152     (autoload 'reporter-submit-bug-report "reporter")
153     (if (emacs-version>= 21 5)
154         (autoload 'setenv "process" nil t)
155       (autoload 'setenv "env" nil t))
156     (autoload 'smtpmail-send-it "smtpmail")
157     (autoload 'sort-numeric-fields "sort" nil t)
158     (autoload 'sort-subr "sort")
159     (autoload 'trace-function-background "trace" nil t)
160     (autoload 'w3-do-setup "w3")
161     (autoload 'w3-prepare-buffer "w3-display")
162     (autoload 'w3-region "w3-display" nil t)
163     (defalias 'frame-char-height 'frame-height)
164     (defalias 'frame-char-width 'frame-width)
165     (defalias 'frame-parameter 'frame-property)
166     (defalias 'make-overlay 'ignore)
167     (defalias 'overlay-end 'ignore)
168     (defalias 'overlay-get 'ignore)
169     (defalias 'overlay-put 'ignore)
170     (defalias 'overlay-start 'ignore)
171     (defalias 'overlays-in 'ignore)
172     (defalias 'replace-dehighlight 'ignore)
173     (defalias 'replace-highlight 'ignore)
174     (defalias 'run-with-idle-timer 'ignore)
175     (defalias 'w3-coding-system-for-mime-charset 'ignore)))
176
177 (defun dgnushack-compile-verbosely ()
178   "Call dgnushack-compile with warnings ENABLED.  If you are compiling
179 patches to gnus, you should consider modifying make.bat to call
180 dgnushack-compile-verbosely.  All other users should continue to use
181 dgnushack-compile."
182   (dgnushack-compile t))
183
184 (defun dgnushack-compile (&optional warn)
185   ;;(setq byte-compile-dynamic t)
186   (unless warn
187     (setq byte-compile-warnings
188           '(free-vars unresolved callargs redefine)))
189   (unless (locate-library "cus-edit")
190     (error "You do not seem to have Custom installed.
191 Fetch it from <URL:http://www.dina.kvl.dk/~abraham/custom/>.
192 You also then need to add the following to the lisp/dgnushack.el file:
193
194      (push \"~/lisp/custom\" load-path)
195
196 Modify to suit your needs."))
197   (let ((files (directory-files srcdir nil "^[^=].*\\.el$"))
198         ;;(byte-compile-generate-call-tree t)
199         file elc)
200     ;; Avoid barfing (from gnus-xmas) because the etc directory is not yet
201     ;; installed.
202     (when (featurep 'xemacs)
203       (setq gnus-xmas-glyph-directory "dummy"))
204     (dolist (file '("dgnushack.el" "lpath.el"))
205       (setq files (delete file files)))
206     (when (featurep 'base64)
207       (setq files (delete "base64.el" files)))
208     (condition-case code
209         (require 'w3-parse)
210       (error
211        (message "No w3: %s %s" (cadr code) (or (locate-library "w3-parse") ""))
212        (dolist (file '("nnultimate.el" "webmail.el" "nnwfm.el"))
213          (setq files (delete file files)))))
214     (condition-case code
215         (require 'mh-e)
216       (error
217        (message "No mh-e: %s %s" (cadr code) (or (locate-library "mh-e") ""))
218        (setq files (delete "gnus-mh.el" files))))
219     (condition-case code
220         (require 'xml)
221       (error
222        (message "No xml: %s %s" (cadr code) (or (locate-library "xml") ""))
223        (setq files (delete "nnrss.el" files))))
224     (dolist (file
225              (if (featurep 'xemacs)
226                  '("md5.el")
227                '("gnus-xmas.el" "messagexmas.el" "nnheaderxm.el")))
228       (setq files (delete file files)))
229
230     (dolist (file files)
231       (setq file (expand-file-name file srcdir))
232       (when (and (file-exists-p
233                   (setq elc (concat (file-name-nondirectory file) "c")))
234                  (file-newer-than-file-p file elc))
235         (delete-file elc)))
236
237     (while (setq file (pop files))
238       (setq file (expand-file-name file srcdir))
239       (when (or (not (file-exists-p
240                       (setq elc (concat (file-name-nondirectory file) "c"))))
241                 (file-newer-than-file-p file elc))
242         (ignore-errors
243           (byte-compile-file file))))))
244
245 (defun dgnushack-recompile ()
246   (require 'gnus)
247   (byte-recompile-directory "." 0))
248
249 (defvar dgnushack-gnus-load-file (expand-file-name "gnus-load.el"))
250 (defvar dgnushack-cus-load-file (expand-file-name "cus-load.el"))
251
252 (defun dgnushack-make-cus-load ()
253   (load "cus-dep")
254   (let ((cusload-base-file dgnushack-cus-load-file))
255     (if (fboundp 'custom-make-dependencies)
256         (custom-make-dependencies)
257       (Custom-make-dependencies))))
258
259 (defun dgnushack-make-auto-load ()
260   (require 'autoload)
261   (unless (make-autoload '(define-derived-mode child parent name
262                             "docstring" body)
263                          "file")
264     (defadvice make-autoload (around handle-define-derived-mode activate)
265       "Handle `define-derived-mode'."
266       (if (eq (car-safe (ad-get-arg 0)) 'define-derived-mode)
267           (setq ad-return-value
268                 (list 'autoload
269                       (list 'quote (nth 1 (ad-get-arg 0)))
270                       (ad-get-arg 1)
271                       (nth 4 (ad-get-arg 0))
272                       t nil))
273         ad-do-it))
274     (put 'define-derived-mode 'doc-string-elt 3))
275   (let ((generated-autoload-file dgnushack-gnus-load-file)
276         (make-backup-files nil)
277         (autoload-package-name "gnus"))
278     (if (featurep 'xemacs)
279         (if (file-exists-p generated-autoload-file)
280             (delete-file generated-autoload-file))
281       (with-temp-file generated-autoload-file
282         (insert ?\014)))
283     (batch-update-autoloads)))
284
285 (defun dgnushack-make-load ()
286   (message (format "Generating %s..." dgnushack-gnus-load-file))
287   (with-temp-file dgnushack-gnus-load-file
288     (insert-file-contents dgnushack-cus-load-file)
289     (delete-file dgnushack-cus-load-file)
290     (goto-char (point-min))
291     (search-forward ";;; Code:")
292     (forward-line)
293     (delete-region (point-min) (point))
294     (insert "\
295 ;;; gnus-load.el --- automatically extracted custom dependencies and autoload
296 ;;
297 ;;; Code:
298 ")
299     (goto-char (point-max))
300     (if (search-backward "custom-versions-load-alist" nil t)
301         (forward-line -1)
302       (forward-line -1)
303       (while (eq (char-after) ?\;)
304         (forward-line -1))
305       (forward-line))
306     (delete-region (point) (point-max))
307     (insert "\n")
308     ;; smiley-* are duplicated. Remove them all.
309     (let ((point (point)))
310       (insert-file-contents dgnushack-gnus-load-file)
311       (goto-char point)
312       (while (search-forward "smiley-" nil t)
313         (beginning-of-line)
314         (if (looking-at "(autoload ")
315             (delete-region (point) (progn (forward-sexp) (point)))
316           (forward-line))))
317     ;;
318     (goto-char (point-max))
319     (when (search-backward "\n(provide " nil t)
320       (forward-line -1)
321       (delete-region (point) (point-max)))
322     (insert "\
323
324 \(provide 'gnus-load)
325
326 ;;; Local Variables:
327 ;;; version-control: never
328 ;;; no-byte-compile: t
329 ;;; no-update-autoloads: t
330 ;;; End:
331 ;;; gnus-load.el ends here
332 ")
333     ;; Workaround the bug in some version of XEmacs.
334     (when (featurep 'xemacs)
335       (condition-case nil
336           (require 'cus-load)
337         (error nil))
338       (goto-char (point-min))
339       (when (and (fboundp 'custom-add-loads)
340                  (not (search-forward "\n(autoload 'custom-add-loads " nil t)))
341         (search-forward "\n;;; Code:" nil t)
342         (forward-line 1)
343         (insert "\n(autoload 'custom-add-loads \"cus-load\")\n"))))
344   (message (format "Compiling %s..." dgnushack-gnus-load-file))
345   (byte-compile-file dgnushack-gnus-load-file))
346
347 ;;; dgnushack.el ends here