Only do the defcustom compilation thing on XEmacs, where it seems to be needed.
[gnus] / lisp / dgnushack.el
1 ;;; dgnushack.el --- a hack to set the load path for byte-compiling
2 ;; Copyright (C) 1994-2011 Free Software Foundation, Inc.
3
4 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
5 ;; Version: 4.19
6 ;; Keywords: news, path
7
8 ;; This file is part of GNU Emacs.
9
10 ;; GNU Emacs 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 3, or (at your option)
13 ;; any later version.
14
15 ;; GNU Emacs 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., 51 Franklin Street, Fifth Floor,
23 ;; Boston, MA 02110-1301, USA.
24
25 ;;; Commentary:
26
27 ;;; Code:
28
29 (defvar dgnushack-default-load-path (copy-sequence load-path))
30
31 (defalias 'facep 'ignore)
32
33 (require 'cl)
34 (require 'iswitchb)
35
36 (condition-case nil
37     (require 'org-entities)
38   (error nil))
39
40 (defvar srcdir (or (getenv "srcdir") "."))
41 (defvar loaddir (and load-file-name (file-name-directory load-file-name)))
42
43 (defun my-getenv (str)
44   (let ((val (getenv str)))
45     (if (equal val "no") nil val)))
46
47 (if (my-getenv "lispdir")
48     (push (my-getenv "lispdir") load-path))
49
50 (push (or (my-getenv "URLDIR") (expand-file-name "../../url/lisp/" loaddir))
51       load-path)
52
53 (push (or (my-getenv "W3DIR") (expand-file-name "../../w3/lisp/" loaddir))
54       load-path)
55
56 ;(push "/usr/share/emacs/site-lisp" load-path)
57
58 ;; If we are building w3 in a different directory than the source
59 ;; directory, we must read *.el from source directory and write *.elc
60 ;; into the building directory.  For that, we define this function
61 ;; before loading bytecomp.  Bytecomp doesn't overwrite this function.
62 (defun byte-compile-dest-file (filename)
63   "Convert an Emacs Lisp source file name to a compiled file name.
64  In addition, remove directory name part from FILENAME."
65   (setq filename (byte-compiler-base-file-name filename))
66   (setq filename (file-name-sans-versions filename))
67   (setq filename (file-name-nondirectory filename))
68   (if (eq system-type 'windows-nt)
69       (setq filename (downcase filename)))
70   (cond ((eq system-type 'vax-vms)
71          (concat (substring filename 0 (string-match ";" filename)) "c"))
72         ((string-match emacs-lisp-file-regexp filename)
73          (concat (substring filename 0 (match-beginning 0)) ".elc"))
74         (t (concat filename ".elc"))))
75
76 (require 'bytecomp)
77 ;; To avoid having defsubsts and inlines happen.
78 ;(if (featurep 'xemacs)
79 ;    (require 'byte-optimize)
80 ;  (require 'byte-opt))
81 ;(defun byte-optimize-inline-handler (form)
82 ;  "byte-optimize-handler for the `inline' special-form."
83 ;  (cons 'progn (cdr form)))
84 ;(defalias 'byte-compile-file-form-defsubst 'byte-compile-file-form-defun)
85
86 ;; Work around for an incompatibility (XEmacs 21.4 vs. 21.5), see the
87 ;; following threads:
88 ;;
89 ;; http://thread.gmane.org/gmane.emacs.gnus.general/56414
90 ;; Subject: attachment problems found but not fixed
91 ;;
92 ;; http://thread.gmane.org/gmane.emacs.gnus.general/56459
93 ;; Subject: Splitting mail -- XEmacs 21.4 vs 21.5
94 ;;
95 ;; http://thread.gmane.org/gmane.emacs.xemacs.beta/20519
96 ;; Subject: XEmacs 21.5 and Gnus fancy splitting.
97 ;;
98 ;; Should be fixed in XEmacs (March 2007).
99 ;; http://thread.gmane.org/gmane.emacs.xemacs.patches/8124
100 ;; When should we remove this workaround?
101 ;;
102 (when (and (featurep 'xemacs)
103            (let ((table (copy-syntax-table emacs-lisp-mode-syntax-table)))
104              (modify-syntax-entry ?= " " table)
105              (with-temp-buffer
106                (with-syntax-table table
107                  (insert "foo=bar")
108                  (goto-char (point-min))
109                  (forward-sexp 1)
110                  (eolp)))))
111   ;; The original `with-syntax-table' uses `copy-syntax-table' which
112   ;; doesn't seem to copy modified syntax entries in old XEmacs 21.5.
113   (defmacro with-syntax-table (syntab &rest body)
114     "Evaluate BODY with the SYNTAB as the current syntax table."
115     `(let ((stab (syntax-table)))
116        (unwind-protect
117            (progn
118              ;;(set-syntax-table (copy-syntax-table ,syntab))
119              (set-syntax-table ,syntab)
120              ,@body)
121          (set-syntax-table stab)))))
122
123 (push srcdir load-path)
124 (push loaddir load-path)
125 (load (expand-file-name "lpath.el" loaddir) nil t)
126
127 (defalias 'device-sound-enabled-p 'ignore)
128 (defalias 'play-sound-file 'ignore)
129 (defalias 'efs-re-read-dir 'ignore)
130 (defalias 'ange-ftp-re-read-dir 'ignore)
131 (defalias 'define-mail-user-agent 'ignore)
132
133 (eval-and-compile
134   (unless (featurep 'xemacs)
135     (defalias 'get-popup-menu-response 'ignore)
136     (defalias 'event-object 'ignore)
137     (autoload 'iswitchb-read-buffer "iswitchb")
138     (autoload 'netrc-credentials "netrc")
139     (defalias 'x-defined-colors 'ignore)
140     (defalias 'read-color 'ignore)))
141
142 (eval-and-compile
143   (when (featurep 'xemacs)
144     (unless (fboundp 'defadvice)
145       (autoload 'defadvice "advice" nil nil 'macro))
146     (unless (boundp 'help-echo-owns-message)
147       (defvar help-echo-owns-message))
148     (unless (fboundp 'url-retrieve-synchronously)
149       (defalias 'url-retrieve-synchronously 'url-retrieve))
150     (autoload 'Info-directory "info" nil t)
151     (autoload 'Info-index "info" nil t)
152     (autoload 'Info-index-next "info" nil t)
153     (autoload 'Info-menu "info" nil t)
154     (autoload 'ad-add-advice "advice")
155     (unless (and (emacs-version>= 21 5)
156                  (not (featurep 'sxemacs)))
157       ;; calendar/auto-autoloads.el provides it.
158       (autoload 'add-to-invisibility-spec "dummy"))
159     (autoload 'annotations-at "annotations")
160     (autoload 'apropos "apropos" nil t)
161     (autoload 'apropos-command "apropos" nil t)
162     (autoload 'bbdb-complete-name "bbdb-com" nil t)
163     (autoload 'browse-url "browse-url" nil t)
164     (autoload 'browse-url-of-file "browse-url" nil t)
165     (autoload 'c-mode "cc-mode" nil t)
166     (autoload 'customize-apropos "cus-edit" nil t)
167     (autoload 'customize-group "cus-edit" nil t)
168     (autoload 'customize-save-variable "cus-edit" nil t)
169     (autoload 'customize-set-variable "cus-edit" nil t)
170     (autoload 'customize-variable "cus-edit" nil t)
171     (autoload 'debug "debug" nil t)
172     (if (featurep 'mule)
173         (unless (locate-library "mule-ccl")
174           (autoload 'define-ccl-program "ccl" nil nil 'macro))
175       (defalias 'define-ccl-program 'ignore))
176     (autoload 'delete-annotation "annotations")
177     (autoload 'dolist "cl-macs" nil nil 'macro)
178     (autoload 'enriched-decode "enriched")
179     (autoload 'eudc-expand-inline "eudc" nil t)
180     (autoload 'executable-find "executable")
181     (autoload 'font-lock-fontify-buffer "font-lock" nil t)
182     (when (and (emacs-version>= 21 5)
183                (not (featurep 'sxemacs)))
184       (autoload 'get-display-table "disp-table")
185       (autoload 'put-display-table "disp-table"))
186     (autoload 'info "info" nil t)
187     (autoload 'mail-extract-address-components "mail-extr")
188     (autoload 'mail-fetch-field "mail-utils")
189     (autoload 'make-annotation "annotations")
190     (autoload 'make-display-table "disp-table")
191     (autoload 'pgg-snarf-keys-region "pgg" nil t)
192     (autoload 'pp "pp")
193     (autoload 'ps-despool "ps-print" nil t)
194     (autoload 'ps-spool-buffer "ps-print" nil t)
195     (autoload 'ps-spool-buffer-with-faces "ps-print" nil t)
196     (autoload 'read-passwd "passwd")
197     (autoload 'regexp-opt "regexp-opt")
198     (autoload 'reporter-submit-bug-report "reporter")
199     (if (condition-case nil
200             (progn
201               (require 'rot13)
202               (not (fboundp 'rot13-string)))
203           (error nil))
204         (defmacro rot13-string (string)
205           "Return ROT13 encryption of STRING."
206           `(let ((string ,string))
207              (with-temp-buffer
208                (insert string)
209                (translate-region (point-min) (point-max) ,rot13-display-table)
210                (buffer-string)))))
211     (if (and (emacs-version>= 21 5)
212              (not (featurep 'sxemacs)))
213         (autoload 'setenv "process" nil t)
214       (autoload 'setenv "env" nil t))
215     (autoload 'sgml-mode "psgml" nil t)
216     (autoload 'smtpmail-send-it "smtpmail")
217     (autoload 'sort-numeric-fields "sort" nil t)
218     (autoload 'sort-subr "sort")
219     (autoload 'thing-at-point "thingatpt")
220     (autoload 'toggle-truncate-lines "view-less" nil t)
221     (autoload 'trace-function-background "trace" nil t)
222     (autoload 'unmorse-region "morse" nil t)
223     (autoload 'w3-do-setup "w3")
224     (autoload 'w3-prepare-buffer "w3-display")
225     (autoload 'w3-region "w3-display" nil t)
226     (defalias 'frame-char-height 'frame-height)
227     (defalias 'frame-char-width 'frame-width)
228     (defalias 'frame-parameter 'frame-property)
229     (defalias 'make-overlay 'ignore)
230     (defalias 'overlay-end 'ignore)
231     (defalias 'overlay-get 'ignore)
232     (defalias 'overlay-put 'ignore)
233     (defalias 'overlay-start 'ignore)
234     (defalias 'overlays-in 'ignore)
235     (defalias 'replace-dehighlight 'ignore)
236     (defalias 'replace-highlight 'ignore)
237     (defalias 'w3-coding-system-for-mime-charset 'ignore)))
238
239 (defun dgnushack-emacs-compile-defcustom-p ()
240   "Return non-nil if Emacs byte compiles `defcustom' forms.
241 Those Emacsen will warn against undefined variables and functions used
242 in `defcustom' forms."
243   (let ((outbuf (with-temp-buffer
244                   (insert "(defcustom foo (1+ (random)) \"\" :group 'emacs)\n")
245                   (byte-compile-from-buffer (current-buffer) "foo.el"))))
246     (when outbuf
247       (prog1
248           (with-current-buffer outbuf
249             (goto-char (point-min))
250             (search-forward " 'foo '(byte-code " nil t))
251         (kill-buffer outbuf)))))
252
253 (when (and (featurep 'xemacs)
254            (dgnushack-emacs-compile-defcustom-p))
255   (maybe-fbind '(defined-colors face-attribute))
256   (maybe-bind '(idna-program installation-directory)))
257
258 (when (featurep 'xemacs)
259   (defadvice byte-optimize-apply (before use-mapcan (form) activate)
260     "Replace (apply 'nconc (mapcar ...)) with (mapcan ...)."
261     (let ((last (nth (1- (length form)) form)))
262       (when (and (eq last (third form))
263                  (consp last)
264                  (eq 'mapcar (car last))
265                  (equal (nth 1 form) ''nconc))
266         (setq form (cons 'mapcan (cdr last)))))))
267
268 (defun dgnushack-compile-verbosely ()
269   "Call dgnushack-compile with warnings ENABLED.  If you are compiling
270 patches to gnus, you should consider modifying make.bat to call
271 dgnushack-compile-verbosely.  All other users should continue to use
272 dgnushack-compile."
273   (dgnushack-compile t))
274
275 (defun dgnushack-compile (&optional warn)
276   ;;(setq byte-compile-dynamic t)
277   (unless warn
278     (setq byte-compile-warnings
279           '(free-vars unresolved callargs redefine suspicious)))
280   (let ((files (directory-files srcdir nil "^[^=].*\\.el$"))
281         ;;(byte-compile-generate-call-tree t)
282         file elc)
283     ;; Avoid barfing (from gnus-xmas) because the etc directory is not yet
284     ;; installed.
285     (when (featurep 'xemacs)
286       (setq gnus-xmas-glyph-directory "dummy"))
287     (dolist (file '(".dir-locals.el" "dgnushack.el" "lpath.el"))
288       (setq files (delete file files)))
289     (when (featurep 'base64)
290       (setq files (delete "base64.el" files)))
291     (condition-case code
292         (require 'w3-parse)
293       (error
294        (message "No w3: %s %s" (cadr code) (or (locate-library "w3-parse") ""))
295        (dolist (file '("webmail.el" "nnwfm.el"))
296          (setq files (delete file files)))))
297     (condition-case code
298         ;; Under XEmacs 21.4 this loads easy-mmode.elc that provides
299         ;; the Emacs functions `propertize' and `replace-regexp-in-string'.
300         (require 'mh-e)
301       (error
302        (message "No mh-e: %s %s" (cadr code) (or (locate-library "mh-e") ""))
303        (setq files (delete "gnus-mh.el" files))))
304     (condition-case code
305         (require 'xml)
306       (error
307        (message "No xml: %s %s" (cadr code) (or (locate-library "xml") ""))
308        (setq files (delete "nnrss.el" files))))
309     (dolist (file
310              (if (featurep 'xemacs)
311                  '("md5.el")
312                '("gnus-xmas.el" "messagexmas.el" "nnheaderxm.el")))
313       (setq files (delete file files)))
314     (unless (and (fboundp 'libxml-parse-html-region)
315                  ;; lpath.el binds it.
316                  (not (eq (symbol-function 'libxml-parse-html-region)
317                           'ignore)))
318       (dolist (file '("color.el" "shr-color.el" "shr.el"))
319         (setq files (delete file files))))
320
321     (dolist (file files)
322       (setq file (expand-file-name file srcdir))
323       (when (and (file-exists-p
324                   (setq elc (concat (file-name-nondirectory file) "c")))
325                  (file-newer-than-file-p file elc))
326         (delete-file elc)))
327
328     (while (setq file (pop files))
329       (setq file (expand-file-name file srcdir))
330       (when (or (not (file-exists-p
331                       (setq elc (concat (file-name-nondirectory file) "c"))))
332                 (file-newer-than-file-p file elc))
333         (ignore-errors
334           (byte-compile-file file))))))
335
336 (defun dgnushack-recompile ()
337   (require 'gnus)
338   (byte-recompile-directory "." 0))
339
340 (defvar dgnushack-gnus-load-file
341   (if (featurep 'xemacs)
342       (expand-file-name "auto-autoloads.el")
343     (expand-file-name "gnus-load.el")))
344
345 (defvar dgnushack-cus-load-file
346   (if (featurep 'xemacs)
347       (expand-file-name "custom-load.el")
348     (expand-file-name "cus-load.el")))
349
350 (defun dgnushack-make-cus-load ()
351   (load "cus-dep")
352   (let ((cusload-base-file dgnushack-cus-load-file))
353     (defadvice directory-files (after exclude-dir-locals activate)
354       "Exclude .dir-locals.el file."
355       (dolist (file ad-return-value)
356         (if (string-match "\\(?:\\`\\|/\\)\\.dir-locals\\.el\\'" file)
357             (setq ad-return-value (delete file ad-return-value)))))
358     (unwind-protect
359         (if (fboundp 'custom-make-dependencies)
360             (custom-make-dependencies)
361           (Custom-make-dependencies))
362       (ad-unadvise 'directory-files))
363     (when (featurep 'xemacs)
364       (message "Compiling %s..." dgnushack-cus-load-file)
365       (byte-compile-file dgnushack-cus-load-file))))
366
367 (defun dgnushack-make-auto-load ()
368   (require 'autoload)
369   (let ((generated-autoload-file dgnushack-gnus-load-file)
370         (make-backup-files nil)
371         (autoload-package-name "gnus"))
372     (if (featurep 'xemacs)
373         (if (file-exists-p generated-autoload-file)
374             (delete-file generated-autoload-file))
375       (with-temp-file generated-autoload-file
376         (insert ?\014)))
377     (defadvice directory-files (after exclude-dir-locals activate)
378       "Exclude .dir-locals.el file."
379       (dolist (file ad-return-value)
380         (if (string-match "\\(?:\\`\\|/\\)\\.dir-locals\\.el\\'" file)
381             (setq ad-return-value (delete file ad-return-value)))))
382     (unwind-protect
383         (batch-update-autoloads)
384       (ad-unadvise 'directory-files))))
385
386 (defun dgnushack-make-load ()
387   (unless (featurep 'xemacs)
388     (message "Generating %s..." dgnushack-gnus-load-file)
389     (with-temp-file dgnushack-gnus-load-file
390       (insert-file-contents dgnushack-cus-load-file)
391       (delete-file dgnushack-cus-load-file)
392       (goto-char (point-min))
393       (search-forward ";;; Code:")
394       (forward-line)
395       (delete-region (point-min) (point))
396       (insert "\
397 ;;; gnus-load.el --- automatically extracted custom dependencies and autoload
398 ;;
399 ;;; Code:
400 ")
401       (goto-char (point-max))
402       (if (search-backward "custom-versions-load-alist" nil t)
403           (forward-line -1)
404         (forward-line -1)
405         (while (eq (char-after) ?\;)
406           (forward-line -1))
407         (forward-line))
408       (delete-region (point) (point-max))
409       (insert "\n")
410       ;; smiley-* are duplicated. Remove them all.
411       (let ((point (point)))
412         (insert-file-contents dgnushack-gnus-load-file)
413         (goto-char point)
414         (while (search-forward "smiley-" nil t)
415           (beginning-of-line)
416           (if (looking-at "(autoload ")
417               (delete-region (point) (progn (forward-sexp) (point)))
418             (forward-line))))
419       ;;
420       (goto-char (point-max))
421       (when (search-backward "\n(provide " nil t)
422         (forward-line -1)
423         (delete-region (point) (point-max)))
424       (insert "\
425
426 \(provide 'gnus-load)
427
428 ;;; Local Variables:
429 ;;; version-control: never
430 ;;; no-byte-compile: t
431 ;;; no-update-autoloads: t
432 ;;; End:
433 ;;; gnus-load.el ends here
434 ")
435       ))
436   (message "Compiling %s..." dgnushack-gnus-load-file)
437   (byte-compile-file dgnushack-gnus-load-file)
438   (when (featurep 'xemacs)
439     (message "Creating dummy gnus-load.el...")
440     (with-temp-file (expand-file-name "gnus-load.el")
441       (insert "\
442
443 \(provide 'gnus-load)
444
445 ;;; Local Variables:
446 ;;; version-control: never
447 ;;; no-byte-compile: t
448 ;;; no-update-autoloads: t
449 ;;; End:
450 ;;; gnus-load.el ends here"))))
451
452 (defun dgnushack-find-lisp-shadows (&optional lispdir)
453   "Return a list of directories in which other Gnus installations exist.
454 This function looks for the other Gnus installations which will shadow
455 the new Gnus Lisp modules which have been installed in LISPDIR, using
456 the default `load-path'.  The return value will make sense only when
457 LISPDIR is existent and is listed in the default `load-path'.  Assume
458 LISPDIR will be prepended to `load-path' by a user if the default
459 `load-path' does not contain it."
460   (unless lispdir
461     (setq lispdir (getenv "lispdir")))
462   (when (and lispdir (file-directory-p lispdir))
463     (setq lispdir (file-truename (directory-file-name lispdir)))
464     (let ((indices '("gnus.elc" "gnus.el" "gnus.el.bz2" "gnus.el.gz"
465                      "message.elc" "message.el" "message.el.bz2"
466                      "message.el.gz"))
467           (path (delq nil (mapcar
468                            (lambda (p)
469                              (condition-case nil
470                                  (when (and p (file-directory-p p))
471                                    (file-truename (directory-file-name p)))
472                                (error nil)))
473                            dgnushack-default-load-path)))
474           rest elcs)
475       (while path
476         (setq rest (cons (car path) rest)
477               path (delete (car rest) (cdr path))))
478       (setq path (nreverse (cdr (member lispdir rest)))
479             rest nil)
480       (while path
481         (setq elcs indices)
482         (while elcs
483           (when (file-exists-p (expand-file-name (pop elcs) (car path)))
484             (setq rest (cons (car path) rest)
485                   elcs nil)))
486         (setq path (cdr path)))
487       (prog1
488           (setq path (nreverse rest))
489         (when path
490           (let (print-level print-length)
491             (princ (concat "\n\
492 WARNING: The other Gnus installation" (if (cdr path) "s have" " has") "\
493  been detected in:\n\n  " (mapconcat 'identity path "\n  ") "\n\n\
494 You will need to modify the run-time `load-path', remove them manually,
495 or remove them using `make remove-installed-shadows'.\n\n"))))))))
496
497 (defun dgnushack-remove-lisp-shadows (&optional lispdir)
498   "Remove the other Gnus installations which shadow the recent one."
499   (let ((path (with-temp-buffer
500                 (let ((standard-output (current-buffer)))
501                   (dgnushack-find-lisp-shadows lispdir))))
502         elcs files shadows file)
503     (when path
504       (unless (setq elcs (directory-files srcdir nil "\\.elc\\'"))
505         (error "You should build .elc files first."))
506       (setq files
507             (apply
508              'append
509              (mapcar
510               (lambda (el)
511                 (list (concat el "c") el (concat el ".bz2") (concat el ".gz")))
512               (append
513                (list (file-name-nondirectory dgnushack-gnus-load-file)
514                      (file-name-nondirectory dgnushack-cus-load-file))
515                (mapcar (lambda (elc) (substring elc 0 -1)) elcs)))))
516       (while path
517         (setq shadows files)
518         (while shadows
519           (setq file (expand-file-name (pop shadows) (car path)))
520           (when (file-exists-p file)
521             (princ (concat "  Removing " file "..."))
522             (condition-case nil
523                 (progn
524                   (delete-file file)
525                   (princ "done\n"))
526               (error (princ "failed\n")))))
527         (setq path (cdr path))))))
528
529 ;;; dgnushack.el ends here