annotate lisp/prim/update-elc.el @ 155:43dd3413c7c7 r20-3b4

Import from CVS: tag r20-3b4
author cvs
date Mon, 13 Aug 2007 09:39:39 +0200
parents c7528f8e288d
children 0132846995bd
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
155
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 78
diff changeset
1 ;;; update-elc.el --- Bytecompile out-of-date dumped files
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 78
diff changeset
2
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 78
diff changeset
3 ;; Copyright (C) 1997 Free Software Foundation, Inc.
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 78
diff changeset
4 ;; Copyright (C) 1996 Unknown
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 78
diff changeset
5
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 78
diff changeset
6 ;; Maintainer: XEmacs Development Team
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 78
diff changeset
7 ;; Keywords: internal
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 78
diff changeset
8
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 ;; This file is part of XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 ;; XEmacs is free software; you can redistribute it and/or modify it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 ;; under the terms of the GNU General Public License as published by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 ;; the Free Software Foundation; either version 2, or (at your option)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 ;; any later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 ;; XEmacs is distributed in the hope that it will be useful, but
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 ;; General Public License for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 ;; You should have received a copy of the GNU General Public License
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 12
diff changeset
22 ;; along with XEmacs; see the file COPYING. If not, write to the
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
23 ;; Free Software Foundation, 59 Temple Place - Suite 330,
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 12
diff changeset
24 ;; Boston, MA 02111-1307, USA.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 ;;; Synched up with: Not in FSF.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27
155
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 78
diff changeset
28 ;;; Commentary:
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 78
diff changeset
29
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 ;; Byte compile the .EL files necessary to dump out xemacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 ;; Use this file like this:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 ;; temacs -batch -l ../lisp/prim/update-elc.el $lisp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 ;; where $lisp comes from the Makefile. .elc files listed in $lisp will
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 ;; cause the corresponding .el file to be compiled. .el files listed in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 ;; $lisp will be ignored.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 ;; (the idea here is that you can bootstrap if your .ELC files
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 ;; are missing or badly out-of-date)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41
155
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 78
diff changeset
42 ;; Currently this code gets the list of files to check passed to it from
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 78
diff changeset
43 ;; src/Makefile. This must be fixed. -slb
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 78
diff changeset
44
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 78
diff changeset
45 ;;; Code:
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 78
diff changeset
46
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 (setq update-elc-files-to-compile
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 (delq nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 (mapcar (function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 (lambda (x)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 (if (string-match "\.elc$" x)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 (let ((src (substring x 0 -1)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 (if (file-newer-than-file-p src x)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 (and (file-exists-p x)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 (null (file-writable-p x))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 (set-file-modes x (logior (file-modes x) 128)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 src))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 ;; -batch gets filtered out.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 (nthcdr 3 command-line-args))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 (if update-elc-files-to-compile
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 (setq command-line-args
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 (cons (car command-line-args)
78
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
66 (append
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
67 '("-l" "loadup-el.el" "run-temacs"
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
68 "-batch" "-q" "-no-site-file"
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
69 "-l" "bytecomp" "-f" "batch-byte-compile")
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
70 update-elc-files-to-compile)))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 (load "loadup-el.el")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 (kill-emacs)
155
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 78
diff changeset
74
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 78
diff changeset
75 ;;; update-elc.el ends here