Mercurial > emacs
annotate configure1.in @ 1443:b359c67a9194
* minibuf.c (temp_echo_area_glyphs): Don't clear echo_area_glyphs
and previous_echo_glyphs; let message do that work.
author | Jim Blandy <jimb@redhat.com> |
---|---|
date | Mon, 19 Oct 1992 18:44:46 +0000 |
parents | 93ee9c5e7eec |
children | b695cbb4fdab |
rev | line source |
---|---|
603 | 1 #!/bin/sh |
2 # Configuration script for GNU Emacs | |
3 # Copyright (C) 1992 Free Software Foundation, Inc. | |
4 | |
5 #This file is part of GNU Emacs. | |
6 | |
7 #GNU Emacs is free software; you can redistribute it and/or modify | |
8 #it under the terms of the GNU General Public License as published by | |
9 #the Free Software Foundation; either version 1, or (at your option) | |
10 #any later version. | |
11 | |
12 #GNU Emacs is distributed in the hope that it will be useful, | |
13 #but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 #GNU General Public License for more details. | |
16 | |
17 #You should have received a copy of the GNU General Public License | |
18 #along with GNU Emacs; see the file COPYING. If not, write to | |
19 #the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | |
20 | |
21 # Shell script to edit files and make symlinks in preparation for | |
22 # compiling Emacs. | |
617 | 23 # |
603 | 24 # Usage: configure machine |
25 # | |
26 # If configure succeeds, it leaves its status in config.status. | |
617 | 27 # If configure fails after disturbing the status quo, |
603 | 28 # config.status is removed. |
29 # | |
30 | |
1112 | 31 # Remove any leading "." elements from the path name. If we don't |
32 # remove them, then another "./" will be prepended to the file name | |
33 # each time we use config.status, and the program name will get larger | |
34 # and larger. This wouldn't be a problem, except that since progname | |
35 # gets recorded in all the Makefiles this script produces, | |
638 | 36 # move-if-changed thinks they're different when they're not. |
1112 | 37 # |
38 # It would be nice if we could put the ./ in a \( \) group and then | |
39 # apply the * operator to that, so we remove as many leading ./././'s | |
40 # as are present, but some seds (like Ultrix's sed) don't allow you to | |
41 # apply * to a \( \) group. Bleah. | |
42 progname="`echo $0 | sed 's:^\./::'`" | |
603 | 43 |
44 short_usage="Type \`${progname} -usage' for more information about options." | |
45 | |
46 usage_message="Usage: ${progname} MACHINENAME [-OPTION[=VALUE] ...] | |
47 Set compilation and installation parameters for GNU Emacs, and report. | |
1423
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
48 MACHINENAME is the machine to build for. For example: |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
49 ${progname} decstation |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
50 configures Emacs to run on a DECstation running Ultrix. See \`etc/MACHINES'. |
603 | 51 Options are: |
1423
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
52 --with-x, --with-x11 or --with-x10 - what window system to use; |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
53 default is to use X11 if present. If you don't want X, specify |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
54 \`--with-x=no'. |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
55 -g, -O - Passed to the compiler. Default is -g, plus -O if using gcc. |
1139 | 56 --prefix=DIR - where to install Emacs's library files |
57 --libdir=DIR - where to look for arch-dependent library files | |
58 --datadir=DIR - where to look for architecture-independent library files | |
59 --bindir=DIR - where to install the Emacs executable, and some friends | |
60 --lisppath=PATH - colon-separated list of Emacs Lisp directories | |
61 --lockdir=DIR - where Emacs should do its file-locking stuff | |
603 | 62 If successful, ${progname} leaves its status in config.status. If |
63 unsuccessful after disturbing the status quo, config.status is removed." | |
1139 | 64 # These are omitted since users should not mess with them. |
65 # --gnu-malloc=[yes] or no - use the GNU memory allocator | |
66 # --rel-alloc=[yes] or no - use compacting allocator for buffers | |
67 # --lisp-float-type=[yes] or no - Support floating point in Emacs Lisp. | |
68 # --window-system is omitted because --with... follow the conventions. | |
603 | 69 |
70 if [ ! -r ./src/lisp.h ]; then | |
71 echo "${progname}: Can't find Emacs sources in \`./src'. | |
732 | 72 Run this config script in the top directory of the Emacs source tree." >&2 |
603 | 73 exit 1 |
74 fi | |
75 | |
1139 | 76 # The option names defined here are actually the shell variable names. |
77 # They should have `_' in place of `-'. | |
603 | 78 options=":\ |
79 usage:help:\ | |
1423
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
80 with_x:with_x11:with_x10:\ |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
81 g:O:\ |
621 | 82 prefix:bindir:emacsdir:datadir:lispdir:locallisppath:\ |
83 lisppath:buildlisppath:statedir:lockdir:libdir:mandir:infodir:\ | |
603 | 84 " |
85 | |
86 boolean_opts=":\ | |
1423
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
87 g:O:with_x:with_x10:\ |
603 | 88 " |
89 | |
90 config_h_opts=":\ | |
1423
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
91 have_x_windows:have_x11:have_x_menu:\ |
603 | 92 c_switch_site:sigtype:\ |
93 " | |
94 | |
621 | 95 prefix= |
605 | 96 bindir=/usr/local/bin |
603 | 97 gnu_malloc=yes |
98 lisp_float_type=yes | |
99 | |
100 # The default values for the following options are guessed at after other | |
101 # options have been checked and given values, so we set them to null here. | |
102 lisppath="" | |
103 datadir="" | |
104 libdir="" | |
105 lockdir="" | |
106 window_system="" | |
107 | |
638 | 108 # Record all the arguments, so we can save them in config.status. |
1423
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
109 arguments="$@" |
638 | 110 |
617 | 111 echo "Examining options." |
621 | 112 while [ $# != 0 ]; do |
113 arg="$1" | |
603 | 114 case "${arg}" in |
115 -*) | |
116 # Separate the switch name from the value it's being given. | |
117 case "${arg}" in | |
1139 | 118 -*=*) |
1423
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
119 opt=`echo ${arg} | sed 's:^-*\([^=]*\)=.*$:\1:'` |
1139 | 120 val=`echo ${arg} | sed 's:^-*[^=]*=\(.*\)$:\1:'` |
603 | 121 valomitted=no |
122 ;; | |
1139 | 123 -*) |
621 | 124 # If FOO is a boolean argument, -FOO is equivalent to |
125 # -FOO=yes. Otherwise, the value comes from the next | |
126 # argument - see below. | |
1423
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
127 opt=`echo ${arg} | sed 's:^-*\(.*\)$:\1:'` |
603 | 128 val="yes" |
129 valomitted=yes | |
130 ;; | |
131 esac | |
132 | |
1423
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
133 # Also change `-' in the option name to `_'. |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
134 opt="`echo ${opt} | tr - _`" |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
135 |
603 | 136 # Make sure the argument is valid and unambiguous. |
137 case ${options} in | |
138 *:${opt}:* ) # Exact match. | |
139 optvar=${opt} | |
140 ;; | |
141 *:${opt}*:${opt}*:* ) # Ambiguous prefix. | |
142 echo "\`-${opt}' is an ambiguous switch; it could be any of the following:" | |
732 | 143 # We can't just use tr to translate colons to newlines, since |
144 # BSD sed and SYSV sed use different syntaxes for that. | |
145 spaced_options=`echo ${options} | tr ':' ' '` | |
146 echo `(for option in ${spaced_options}; do echo $option; done) \ | |
147 | grep "^${opt}"` | |
603 | 148 echo ${short_usage} |
149 exit 1 | |
150 ;; | |
151 *:${opt}*:* ) # Unambigous prefix. | |
152 optvar=`echo ${options} | sed 's/^.*:\('${opt}'[^:]*\):.*$/\1/'` | |
153 ;; | |
154 * ) | |
155 (echo "\`-${opt}' is not a valid option." | |
156 echo "${short_usage}") | more | |
157 exit 1 | |
158 ;; | |
159 esac | |
160 | |
161 case "${optvar}" in | |
162 usage | help) | |
163 echo "${usage_message}" | more | |
164 exit 1 | |
165 ;; | |
166 esac | |
167 | |
168 # If the variable is supposed to be boolean, make sure the value | |
169 # given is either "yes" or "no". If not, make sure some value | |
170 # was given. | |
171 case "${boolean_opts}" in | |
172 *:${optvar}:* ) | |
173 case "${val}" in | |
174 y | ye | yes ) val=yes ;; | |
175 n | no ) val=no ;; | |
176 * ) | |
177 echo "The \`-${optvar}' option (\`-${opt}') is supposed to have a boolean | |
732 | 178 value - set it to either \`yes' or \`no'." >&2 |
603 | 179 exit 1 |
180 ;; | |
181 esac | |
182 ;; | |
183 *) | |
184 if [ "${valomitted}" = "yes" ]; then | |
621 | 185 if [ $# = 1 ]; then |
186 (echo "${progname}: You must give a value for the \`-${opt}' option, as in | |
187 \`-${opt}=FOO'." | |
188 echo "${short_usage}") | more | |
189 exit 1 | |
190 fi | |
191 shift; val="$1" | |
603 | 192 fi |
193 ;; | |
194 esac | |
195 | |
196 eval "${optvar}=\"${val}\"" | |
197 ;; | |
198 *) | |
199 machine=${arg} | |
200 ;; | |
201 esac | |
621 | 202 shift |
603 | 203 done |
204 | |
205 if [ "${machine}" = "" ]; then | |
206 (echo "You must specify a machine name as an argument to ${progname}." | |
207 echo "${short_usage}") | more | |
208 exit 1 | |
209 fi | |
210 | |
1423
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
211 # Canonicalize the machine name. |
617 | 212 echo "Checking the machine." |
1423
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
213 machine=`./config.sub "${machine}"` |
603 | 214 |
1423
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
215 # Given the canonicalized machine name, set machfile and opsysfile to |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
216 # the names of the m/*.h and s/*.h files we should use. |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
217 echo ${machine} |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
218 case "${machine}" in |
603 | 219 |
1423
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
220 ## Alliant machines. |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
221 ## Strictly speaking, we need the version of the alliant operating |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
222 ## system to choose the right machine file, but currently the |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
223 ## configuration name doesn't tell us enough to choose the right |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
224 ## one; we need to give alliants their own operating system name to |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
225 ## do this right. When someone cares, they can help us. |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
226 fx80-alliant-* ) |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
227 machfile=m/alliant4.h opsysfile=s/bsd4-2.h |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
228 ;; |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
229 i860-alliant-* ) |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
230 machfile=m/alliant-2800.h opsysfile=s/bsd4-3.h |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
231 ;; |
603 | 232 |
1423
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
233 ## DECstations. |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
234 mips-*-ultrix* ) |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
235 machfile=m/pmax.h opsysfile=s/bsd4-3.h |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
236 ;; |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
237 mips-*-osf* ) |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
238 machfile=m/pmax.h opsysfile=s/osf1.h |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
239 ;; |
603 | 240 |
1423
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
241 ## HP 9000 series 200 or 300. |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
242 m68*-hp-bsd* ) |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
243 machfile=m/hp9000s300.h opsysfile=s/bsd4-3.h |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
244 ;; |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
245 ## If it's running an unspecified version of HP/UX, assume version 8. |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
246 m68*-hp-hpux7 ) |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
247 machfile=m/hp9000s300.h opsysfile=s/hpux.h |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
248 ;; |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
249 m68*-hp-hpux* ) |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
250 machfile=m/hp9000s300.h opsysfile=s/hpux8.h |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
251 ;; |
603 | 252 |
1423
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
253 ## HP 9000 series 800, running HP/UX. |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
254 hppa1.0-hp-hpux* ) |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
255 machfile=m/hp9000s800.h opsysfile=s/hpux.h |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
256 ;; |
603 | 257 |
1423
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
258 ## Suns. |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
259 *-sun-sunos* | *-sun-bsd* ) |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
260 case "${machine}" in |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
261 m68*-sunos1* ) machfile=m/sun1.h ;; |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
262 m68*-sunos2* ) machfile=m/sun2.h ;; |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
263 m68* ) machfile=m/sun3.h ;; |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
264 i[34]86* ) machfile=m/sun386.h ;; |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
265 * ) machfile=m/sparc.h ;; |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
266 esac |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
267 case "${machine}" in |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
268 *-sunos4.0* ) opsysfile=s/sunos4-0.h ;; |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
269 *-sunos4* | *-sunos ) opsysfile=s/sunos4-1.h ;; |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
270 * ) opsysfile=s/bsd4-2.h ;; |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
271 esac |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
272 ;; |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
273 |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
274 * ) |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
275 (echo "${progname}: Emacs hasn't been ported to the machine \`${machine}'." |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
276 echo "${progname}: Check \`etc/MACHINES' for recognized machine names.") \ |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
277 >&2 |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
278 ;; |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
279 |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
280 esac |
603 | 281 |
621 | 282 if [ ! "${prefix}" ]; then |
283 prefix="/usr/local" | |
284 fi | |
285 | |
286 if [ ! "${emacsdir}" ]; then | |
287 emacsdir="${prefix}/emacs-19.0" | |
288 fi | |
289 | |
290 if [ ! "${datadir}" ]; then | |
291 datadir="${emacsdir}/etc" | |
292 fi | |
293 | |
294 if [ ! "${lispdir}" ]; then | |
295 lispdir="${emacsdir}/lisp" | |
296 fi | |
297 | |
298 if [ ! "${locallisppath}" ]; then | |
299 locallisppath="${emacsdir}/local-lisp" | |
300 fi | |
301 | |
302 if [ ! "${lisppath}" ]; then | |
303 lisppath="${locallisppath}:${lispdir}" | |
304 fi | |
305 | |
306 if [ ! "${buildlisppath}" ]; then | |
307 buildlisppath=../lisp | |
308 fi | |
309 | |
310 if [ ! "${statedir}" ]; then | |
311 statedir="${emacsdir}" | |
312 fi | |
313 | |
314 if [ ! "${lockdir}" ]; then | |
315 lockdir="${statedir}/lock" | |
316 fi | |
317 | |
318 if [ "${libdir}" = "" ]; then | |
319 libdir="${emacsdir}/arch-lib" | |
320 fi | |
321 | |
322 if [ ! "${mandir}" ]; then | |
323 mandir="/usr/man/man1" | |
324 fi | |
325 | |
326 if [ ! "${infodir}" ]; then | |
327 infodir="${prefix}/info" | |
603 | 328 fi |
329 | |
617 | 330 echo "Checking window system." |
1423
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
331 indow_system='' |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
332 case "${with_x}" in |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
333 yes ) |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
334 window_system=${window_system}x11 |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
335 ;; |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
336 no ) |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
337 window_system=${window_system}none |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
338 esac |
1139 | 339 case "${with_x11}" in |
340 yes ) | |
341 window_system=${window_system}x11 | |
1423
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
342 ;; |
1139 | 343 esac |
344 case "${with_x10}" in | |
345 yes ) | |
346 window_system=${window_system}x10 | |
1423
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
347 ;; |
1139 | 348 esac |
349 | |
603 | 350 case "${window_system}" in |
351 "none" | "x11" | "x10" ) ;; | |
352 "" ) | |
617 | 353 echo " No window system specifed. Looking for X Windows." |
603 | 354 window_system=none |
958 | 355 if [ -r /usr/lib/libX11.a -o -d /usr/include/X11 ]; then |
603 | 356 window_system=x11 |
617 | 357 fi |
603 | 358 ;; |
359 * ) | |
1139 | 360 echo "Don\'t specify the window system more than once." >&2 |
603 | 361 exit 1 |
362 ;; | |
363 esac | |
364 | |
365 case "${window_system}" in | |
366 x11 ) | |
367 have_x_windows=yes | |
368 have_x11=yes | |
369 ;; | |
370 x10 ) | |
371 have_x_windows=yes | |
372 have_x11=no | |
373 ;; | |
374 none ) | |
375 have_x_windows=no | |
376 have_x11=no | |
377 ;; | |
378 esac | |
379 | |
1423
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
380 # If we're using X11, we should use the X menu package. |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
381 have_x_menu=no |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
382 case ${have_x11} in |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
383 yes ) |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
384 have_x_menu=yes |
603 | 385 ;; |
386 esac | |
387 | |
1423
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
388 echo "Checking for GCC." |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
389 temppath=`echo $PATH | sed 's/^:/.:/ |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
390 s/::/:.:/g |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
391 s/:$/:./ |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
392 s/:/ /g'` |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
393 cc=`( |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
394 for dir in ${temppath}; do |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
395 if [ -f ${dir}/gcc ]; then echo gcc; exit 0; fi |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
396 done |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
397 echo cc |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
398 )` |
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
399 |
621 | 400 case "${cc}" in |
401 "gcc" ) | |
402 # With GCC, both O and g should default to yes, no matter what | |
403 # the other is. | |
404 case "${O},${g}" in | |
405 , ) O=yes; g=yes ;; | |
406 ,* ) O=yes; ;; | |
407 *, ) g=yes ;; | |
408 esac | |
409 ;; | |
410 "*" ) | |
411 # With other compilers, treat them as mutually exclusive, | |
412 # defaulting to debug. | |
413 case "${O},${g}" in | |
414 , ) O=no ; g=yes ;; | |
415 ,no ) O=yes; ;; | |
416 ,yes ) O=no ; ;; | |
417 no, ) g=yes ;; | |
418 yes, ) g=no ;; | |
419 esac | |
420 ;; | |
603 | 421 esac |
422 | |
621 | 423 # What is the return type of a signal handler? We run |
424 # /usr/include/signal.h through cpp and grep for the declaration of | |
425 # the signal function. Yuck. | |
426 echo "Looking for return type of signal handler functions." | |
427 signal_h_file='' | |
428 if [ -r /usr/include/signal.h ]; then | |
429 signal_h_file=/usr/include/signal.h | |
430 elif [ -r /usr/include/sys/signal.h ]; then | |
431 signal_h_file=/usr/include/sys/signal.h | |
432 fi | |
433 sigtype=void | |
434 if [ "${signal_h_file}" ]; then | |
435 sigpattern='[ ]*([ ]*\*[ ]*signal[ ]*(' | |
436 | |
999 | 437 # We make a copy whose name ends in .c, so the compiler |
621 | 438 # won't complain about having only been given a .h file. |
439 tempcname="configure.tmp.$$.c" | |
999 | 440 cp ${signal_h_file} ${tempcname} |
621 | 441 if ${cc} -E ${tempcname} | grep "int${sigpattern}" > /dev/null; then |
442 sigtype=int | |
443 fi | |
999 | 444 rm -f ${tempcname} |
621 | 445 fi |
446 | |
617 | 447 echo "Examining the machine- and system-dependent files to find out" |
448 echo " - which libraries the lib-src programs will want, and" | |
449 echo " - whether the GNU malloc routines are usable." | |
450 tempcname="configure.tmp.$$.c" | |
1112 | 451 echo '#include "src/'${opsysfile}'" |
452 #include "src/'${machfile}'" | |
603 | 453 #ifndef LIBS_MACHINE |
454 #define LIBS_MACHINE | |
455 #endif | |
456 #ifndef LIBS_SYSTEM | |
457 #define LIBS_SYSTEM | |
458 #endif | |
621 | 459 @configure@ libsrc_libs=LIBS_MACHINE LIBS_SYSTEM |
617 | 460 #ifdef SYSTEM_MALLOC |
621 | 461 @configure@ system_malloc=yes |
617 | 462 #else |
621 | 463 @configure@ system_malloc=no |
617 | 464 #endif |
465 ' > ${tempcname} | |
621 | 466 eval `${cc} -E ${tempcname} \ |
467 | grep '@configure@' \ | |
468 | sed -e 's/^@configure@//'` | |
617 | 469 rm ${tempcname} |
470 | |
471 # Do the opsystem or machine files prohibit the use of the GNU malloc? | |
472 if [ "${system_malloc}" = "yes" ]; then | |
473 gnu_malloc=no | |
474 gnu_malloc_reason=" | |
475 (The GNU allocators don't work with this machine and/or operating system.)" | |
476 fi | |
477 | |
478 if [ ! "${rel_alloc}" ]; then | |
479 rel_alloc=${gnu_malloc} | |
480 fi | |
603 | 481 |
482 rm -f config.status | |
483 set -e | |
484 | |
485 # Make the proper settings in the config file. | |
617 | 486 echo "Making src/config.h from src/config.h.in" |
603 | 487 case "${g}" in |
488 "yes" ) c_switch_site="${c_switch_site} -g" ;; | |
489 esac | |
490 case "${O}" in | |
491 "yes" ) c_switch_site="${c_switch_site} -O" ;; | |
492 esac | |
493 sed_flags="-e 's:@machine@:${machfile}:'" | |
494 sed_flags="${sed_flags} -e 's:@opsystem@:${opsysfile}:'" | |
495 for flag in `echo ${config_h_opts} | tr ':' ' '`; do | |
732 | 496 # Note that SYSV `tr' doesn't handle character ranges. |
621 | 497 cflagname=`echo ${flag} \ |
498 | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ` | |
603 | 499 val=`eval echo '$'${flag}` |
500 case ${val} in | |
501 no | "") | |
502 f="-e 's:.*#define ${cflagname}.*:/\\* #define ${cflagname} \\*/:'" | |
503 ;; | |
504 yes) | |
505 f="-e 's:.*#define ${cflagname}.*:#define ${cflagname}:'" | |
506 ;; | |
507 *) | |
508 f="-e 's:.*#define ${cflagname}.*:#define ${cflagname} ${val}:'" | |
509 ;; | |
510 esac | |
511 sed_flags="${sed_flags} ${f}" | |
512 done | |
704 | 513 rm -f src/config.h.tmp |
638 | 514 eval '/bin/sed '${sed_flags}' < src/config.h.in > src/config.h.tmp' |
515 ./move-if-change src/config.h.tmp src/config.h | |
617 | 516 # Remind people not to edit this. |
517 chmod -w src/config.h | |
603 | 518 |
519 # Modify the parameters in the top makefile. | |
617 | 520 echo "Producing ./Makefile from ./Makefile.in." |
704 | 521 rm -f Makefile.tmp |
617 | 522 (echo "# This file is generated by \`${progname}' from \`./Makefile.in'. |
523 # If you are thinking about editing it, you should seriously consider | |
524 # editing \`./Makefile.in' itself, or running \`${progname}' instead." | |
525 /bin/sed < Makefile.in \ | |
526 -e '/^# DIST: /d' \ | |
621 | 527 -e 's;^\(prefix=\).*$;\1'"${prefix};" \ |
617 | 528 -e 's;^\(bindir=\).*$;\1'"${bindir};" \ |
621 | 529 -e 's;^\(emacsdir=\).*$;\1'"${emacsdir};" \ |
530 -e 's;^\(datadir=\).*$;\1'"${datadir};" \ | |
531 -e 's;^\(lispdir=\).*$;\1'"${lispdir};" \ | |
532 -e 's;^\(locallisppath=\).*$;\1'"${locallisppath};" \ | |
617 | 533 -e 's;^\(lisppath=\).*$;\1'"${lisppath};" \ |
621 | 534 -e 's;^\(buildlisppath=\).*$;\1'"${buildlisppath};" \ |
535 -e 's;^\(statedir=\).*$;\1'"${statedir};" \ | |
617 | 536 -e 's;^\(lockdir=\).*$;\1'"${lockdir};" \ |
621 | 537 -e 's;^\(libdir=\).*$;\1'"${libdir};" \ |
538 -e 's;^\(mandir=\).*$;\1'"${mandir};" \ | |
539 -e 's;^\(infodir=\).*$;\1'"${infodir};" \ | |
638 | 540 ) > ./Makefile.tmp |
541 ./move-if-change Makefile.tmp Makefile | |
617 | 542 # Remind people not to edit this. |
543 chmod -w ./Makefile | |
603 | 544 |
545 # Modify the parameters in the `build-install' script. | |
617 | 546 echo "Producing ./build-install from ./build-install.in." |
704 | 547 rm -f ./build-install.tmp |
617 | 548 (echo "# This file is generated by \`${progname}' from \`./build-install.in'. |
549 # If you are thinking about editing it, you should seriously consider | |
550 # editing \`./build-install.in' itself, or running \`${progname}' instead." | |
551 /bin/sed < build-install.in \ | |
621 | 552 -e 's;^\(prefix=\).*$;\1'"${prefix};" \ |
553 -e 's;^\(bindir=\).*$;\1'"${bindir};" \ | |
554 -e 's;^\(lisppath=\).*$;\1'"${lisppath};" \ | |
555 -e 's;^\(datadir=\).*$;\1'"${datadir};" \ | |
556 -e 's;^\(lockdir=\).*$;\1'"${lockdir};" \ | |
638 | 557 -e 's;^\(libdir=\).*$;\1'"${libdir};") > ./build-install.tmp |
558 ./move-if-change build-install.tmp build-install | |
617 | 559 # Remind people not to edit this. |
560 chmod -w build-install | |
561 chmod +x build-install | |
603 | 562 |
563 # Modify the parameters in the src makefile. | |
617 | 564 echo "Producing src/Makefile from src/Makefile.in." |
704 | 565 rm -f src/Makefile.tmp |
617 | 566 (echo "# This file is generated by \`${progname}' from \`Makefile.in'. |
567 # If you are thinking about editing it, you should seriously consider | |
568 # editing \`Makefile.in' itself, or running \`${progname}' instead." | |
569 /bin/sed < src/Makefile.in \ | |
1112 | 570 -e '/^# DIST: /d' \ |
638 | 571 -e 's;^\(CC[ ]*=\).*$;\1'"${cc};") > src/Makefile.tmp |
572 ./move-if-change src/Makefile.tmp src/Makefile | |
617 | 573 # Remind people not to edit this. |
574 chmod -w src/Makefile | |
603 | 575 |
576 # Modify the parameters in the lib-src makefile. | |
617 | 577 echo "Producing lib-src/Makefile from lib-src/Makefile.in." |
704 | 578 rm -f lib-src/Makefile.tmp |
617 | 579 (echo "# This file is generated by \`${progname}' from \`Makefile.in'. |
580 # If you are thinking about editing it, you should seriously consider | |
581 # editing \`Makefile.in' itself, or running \`${progname}' instead." | |
582 /bin/sed < lib-src/Makefile.in \ | |
1112 | 583 -e '/^# DIST: /d' \ |
617 | 584 -e 's;^\(CFLAGS=\).*$;\1'"${c_switch_site};" \ |
585 -e 's;^\(LOADLIBES=\).*$;\1'"${libsrc_libs};" \ | |
638 | 586 -e 's;^\(CC=\).*$;\1'"${cc};") > lib-src/Makefile.tmp |
587 ./move-if-change lib-src/Makefile.tmp lib-src/Makefile | |
617 | 588 # Remind people not to edit this. |
589 chmod -w lib-src/Makefile | |
590 | |
603 | 591 |
605 | 592 # Create a verbal description of what we have done. |
1423
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
593 message="Configured for \`${machine}'. |
732 | 594 The following values have been set in ./Makefile and ./build-install: |
1423
93ee9c5e7eec
Partially changed to use GCC-style configuration names.
Jim Blandy <jimb@redhat.com>
parents:
1139
diff
changeset
|
595 \`make install' or \`build-install' will place executables in |
732 | 596 ${bindir}. |
597 Emacs's lisp search path will be | |
598 \`${lisppath}'. | |
599 Emacs will look for its architecture-independent data in | |
600 ${datadir}. | |
601 Emacs will look for its utility programs and other architecture- | |
602 dependent data in | |
603 ${libdir}. | |
604 Emacs will keep track of file-locking in | |
605 ${lockdir}. | |
606 The following values have been set in src/config.h: | |
607 Should Emacs use the GNU version of malloc? ${gnu_malloc}${gnu_malloc_reason} | |
608 Should Emacs use the relocating allocator for buffers? ${rel_alloc} | |
1139 | 609 Should Emacs support a floating point data type? ${lisp_float_type} |
732 | 610 What window system should Emacs use? ${window_system} |
611 What compiler should emacs be built with? ${cc} | |
612 Should the compilation use \`-g' and/or \`-O'? ${c_switch_site- neither}" | |
605 | 613 |
614 # Document the damage we have done by writing config.status. | |
615 | |
616 echo '#!/bin/sh' > config.status | |
617 | |
618 echo "# This file is generated by \`${progname}.' | |
619 # If you are thinking about editing it, you should seriously consider | |
620 # running \`${progname}' instead. | |
621 " >> config.status | |
732 | 622 echo "${message}" | sed -e 's/^/# /' >> config.status |
999 | 623 echo "'${progname}' ${arguments} "'$@' >> config.status |
617 | 624 # Remind people not to edit this. |
625 chmod -w config.status | |
605 | 626 chmod +x config.status |
627 | |
628 # Print the description. | |
603 | 629 echo |
732 | 630 echo "${message}" |
603 | 631 |
632 exit 0 |