Sync with r21-2-19-utf-2000-0_13-0.
[chise/xemacs-chise.git] / lib-src / update-elc.sh
1 #!/bin/sh
2 # update-elc.sh --- recompile all missing or out-of-date .elc files
3
4 # Author:       Jamie Zawinski, Ben Wing, Martin Buchholz
5 # Maintainer:   Martin Buchholz
6 # Keywords:     recompile byte-compile .el .elc
7
8 # This file is part of XEmacs.
9
10 # XEmacs is free software; you can redistribute it and/or modify it
11 # 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 # XEmacs is distributed in the hope that it will be useful, but
16 # WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18 # General Public License for more details.
19
20 # You should have received a copy of the GNU General Public License
21 # along with XEmacs; see the file COPYING.  If not, write to
22 # the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 # Boston, MA 02111-1307, USA.
24
25 ### Commentary:
26 ##  Recompile all .elc files that need recompilation.  Requires a
27 ##  working version of "xemacs".  Correctly handles the case where the
28 ##  .elc files are missing; thus you can execute "rm lisp/*/*.elc"
29 ##  before running this script.  Run this from the parent of the
30 ##  "lisp" directory, or another nearby directory.
31
32 set -e
33
34 # Try to find the lisp directory in several places.
35 # (Sun workspaces have an "editor" directory)
36 for dir in  .  ..  ../..  editor  ../editor  ; do
37   if test -d $dir/lisp/. ; then cd $dir ; break ; fi
38 done
39
40 if test ! -d lisp/. ; then
41   echo "$0: Cannot find the \"lisp\" directory."
42   exit 1
43 fi
44
45 if test -z "$EMACS"; then EMACS="./src/xemacs"; fi
46 export EMACS
47
48 echo " (using $EMACS)"
49
50 # fuckin' sysv, man...
51 # Nuke this function...
52 if [ "`uname -r | sed 's/[^0-9]*\([0-9]*\).*/\1/'`" -gt 4 ]; then
53   echon()
54   {    
55     /bin/echo $* '\c'
56   }
57 else
58   echon()
59   {
60     echo -n $*
61   }
62 fi
63
64 EMACS_DIR=`cd \`dirname $EMACS\` && pwd`;
65 CANON_PWD=`pwd`
66 # Account for various system automounter configurations
67 if test -d "/net"; then
68   if test -d "/tmp_mnt/net"; then tdir="/tmp_mnt/net"; else tdir="/tmp_mnt"; fi
69   EMACS_DIR=`echo "$EMACS_DIR" | \
70    sed -e "s|^${tdir}/|/net/|" -e "s|^/a/|/net/|" -e "s|^/amd/|/net/|"`
71   CANON_PWD=`echo "$CANON_PWD" | \
72    sed -e "s|^${tdir}/|/net/|" -e "s|^/a/|/net/|" -e "s|^/amd/|/net/|"`
73 fi
74 REAL="$EMACS_DIR/`basename $EMACS`"
75
76 echo "Recompiling in $CANON_PWD"
77 echo "          with $REAL..."
78
79 BYTECOMP="$REAL -batch -vanilla "
80
81 $EMACS -batch -vanilla -l $CANON_PWD/lisp/cleantree -f batch-remove-old-elc lisp
82
83 prune_vc="( -name '.*' -o -name SCCS -o -name RCS -o -name CVS ) -prune -o"
84
85 # $els  is a list of all .el  files
86 # $elcs is a list of all .elc files
87 els=/tmp/update-elc-1.$$ elcs=/tmp/update-elc-2.$$
88 rm -f $els $elcs
89 trap "rm -f $els $elcs" 0 1 2 3 15
90 find lisp/. $prune_vc -name '*.el'  -print                    | sort > $els
91 find lisp/. $prune_vc -name '*.elc' -print | sed 's/elc$/el/' | sort > $elcs
92
93
94 echon "Deleting .elc files without .el files..."
95 comm -13 $els $elcs | sed -e '\!/vm.el!d' -e 's/el$/elc/' | \
96  while read file ; do echo rm "$file" ; rm "$file" ; done
97 echo done.
98
99
100 # Compute patterns to ignore when searching for files
101 ignore_dirs=""
102 ignore_pattern=''
103
104 # Only use Mule XEmacs to compile Mule-specific elisp dirs
105 echon "Checking for Mule support..."
106 lisp_prog='(princ (featurep (quote mule)))'
107 mule_p="`$EMACS -batch -vanilla -eval \"$lisp_prog\"`"
108 if test "$mule_p" = nil ; then
109         echo No
110         ignore_dirs="$ignore_dirs mule"
111 else
112   echo Yes
113 fi
114
115 # Only use UTF-2000 XEmacs to compile UTF-2000-specific elisp dirs
116 echon "Checking for UTF-2000 support..."
117 lisp_prog='(princ (featurep (quote utf-2000)))'
118 mule_p="`$EMACS -batch -vanilla -eval \"$lisp_prog\"`"
119 if test "$utf_2000_p" = nil ; then
120         echo No
121         ignore_dirs="$ignore_dirs utf-2000"
122 else
123   echo Yes
124 fi
125
126 # first recompile the byte-compiler, so that the other compiles take place
127 # with the latest version (assuming we're compiling the lisp dir of the emacs
128 # we're running, which might not be the case, but often is.)
129 #echo "Checking the byte compiler..."
130 #$BYTECOMP -f batch-byte-recompile-directory lisp/bytecomp
131
132 # Prepare for byte-compiling directories with directory-specific instructions
133 # Not necessary any more, but I want to keep the text current to cut & paste
134 # into the package lisp maintenance tree.
135 #make_special_commands=''
136 #make_special () {
137 #  dir="$1"; shift;
138 #  ignore_dirs="$ignore_dirs $dir"
139 #  make_special_commands="$make_special_commands \
140 #echo \"Compiling in lisp/$dir\"; \
141 #(cd \"lisp/$dir\" && ${MAKE:-make} EMACS=$REAL ${1+$*}); \
142 #echo \"lisp/$dir done.\";"
143 #}
144
145 #if test "$mule_p" != nil; then
146 #       make_special skk all
147 #fi
148
149 ## AUCTeX is a package now
150 # if test "$mule_p" = nil ; then
151 #       make_special auctex some
152 # else
153 #       make_special auctex some MULE_ELC=tex-jp.elc
154 # fi
155 #make_special cc-mode all
156 # EFS is now packaged
157 # make_special efs x20
158 #make_special eos -k            # not strictly necessary...
159 ## make_special gnus  some      # Now this is a package.
160 # hyperbole is now packaged
161 # make_special hyperbole elc
162 # We're not ready for the following, yet.
163 #make_special ilisp XEmacsELC=custom-load.elc elc
164 # ilisp is now packaged
165 # make_special ilisp elc
166 # oobr is now packaged
167 # make_special oobr HYPB_ELC='' elc
168 ## W3 is a package now.
169 #make_special w3 xemacs-w3
170
171 for dir in $ignore_dirs ; do
172   ignore_pattern="${ignore_pattern}/\\/$dir\\//d
173 /\\/$dir\$/d
174 "
175 done
176
177 # Other special-case filenames that don't get byte-compiled
178 ignore_pattern="$ignore_pattern"'
179 \!/,!d
180 \!/paths.el$!d
181 \!/loadup.el$!d
182 \!/loadup-el.el$!d
183 \!/update-elc.el$!d
184 \!/dumped-lisp.el$!d
185 \!/make-docfile.el$!d
186 \!/site-start.el$!d
187 \!/site-load.el$!d
188 \!/site-init.el$!d
189 \!/version.el$!d
190 \!/very-early-lisp.el$!d
191 '
192
193 echo "Compiling files without .elc..."
194 NUMTOCOMPILE=20                 # compile this many files with each invocation
195 comm -23 $els $elcs | \
196  sed "$ignore_pattern" | \
197  xargs -t -n$NUMTOCOMPILE $BYTECOMP -f batch-byte-compile
198 echo "Compiling files without .elc... Done"
199
200 #if test "$mule_p" != nil; then
201 #       eval "$make_special_commands"
202 #fi