Mercurial > emacs
annotate configure.in @ 12077:74b296435fd9
(load_color): misleading comment rewritten.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Mon, 05 Jun 1995 17:35:01 +0000 |
parents | 021b6000bd04 |
children | 8af89090767b |
rev | line source |
---|---|
8636 | 1 dnl This is an autoconf script. |
2 dnl To rebuild the `configure' script from this, execute the command | |
3 dnl autoconf | |
4 dnl in the directory containing this script. | |
9735
3f2c709d9856
Adapt for Autoconf v2. Use the standard argument
David J. MacKenzie <djm@gnu.org>
parents:
9727
diff
changeset
|
5 AC_PREREQ(2.0)dnl |
8636 | 6 AC_INIT(src/lisp.h) |
7 AC_CONFIG_HEADER(src/config.h) | |
8 | |
9 bindir='${exec_prefix}/bin' | |
9727
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
10 datadir='${prefix}/share' |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
11 sharedstatedir='${prefix}/com' |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
12 libexecdir='${exec_prefix}/libexec' |
8636 | 13 mandir='${prefix}/man/man1' |
14 infodir='${prefix}/info' | |
15 lispdir='${datadir}/emacs/${version}/lisp' | |
16 locallisppath='${datadir}/emacs/site-lisp' | |
17 lisppath='${locallisppath}:${lispdir}' | |
18 etcdir='${datadir}/emacs/${version}/etc' | |
9727
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
19 lockdir='${sharedstatedir}/emacs/lock' |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
20 archlibdir='${libexecdir}/emacs/${version}/${configuration}' |
8636 | 21 docdir='${datadir}/emacs/${version}/etc' |
22 | |
8714
a52d8873fbdf
rearrange AC_ARG_WITH calls
David J. MacKenzie <djm@gnu.org>
parents:
8708
diff
changeset
|
23 AC_ARG_WITH(gcc, |
10037
07c7351976b4
rearrange --with options
David J. MacKenzie <djm@gnu.org>
parents:
10036
diff
changeset
|
24 [ --with-gcc use GCC to compile Emacs]) |
07c7351976b4
rearrange --with options
David J. MacKenzie <djm@gnu.org>
parents:
10036
diff
changeset
|
25 AC_ARG_WITH(pop, |
07c7351976b4
rearrange --with options
David J. MacKenzie <djm@gnu.org>
parents:
10036
diff
changeset
|
26 [ --with-pop support POP for mail retrieval], |
07c7351976b4
rearrange --with options
David J. MacKenzie <djm@gnu.org>
parents:
10036
diff
changeset
|
27 [AC_DEFINE(MAIL_USE_POP)]) |
07c7351976b4
rearrange --with options
David J. MacKenzie <djm@gnu.org>
parents:
10036
diff
changeset
|
28 AC_ARG_WITH(kerberos, |
07c7351976b4
rearrange --with options
David J. MacKenzie <djm@gnu.org>
parents:
10036
diff
changeset
|
29 [ --with-kerberos support Kerberos-authenticated POP], |
07c7351976b4
rearrange --with options
David J. MacKenzie <djm@gnu.org>
parents:
10036
diff
changeset
|
30 [AC_DEFINE(KERBEROS)]) |
07c7351976b4
rearrange --with options
David J. MacKenzie <djm@gnu.org>
parents:
10036
diff
changeset
|
31 AC_ARG_WITH(hesiod, |
07c7351976b4
rearrange --with options
David J. MacKenzie <djm@gnu.org>
parents:
10036
diff
changeset
|
32 [ --with-hesiod support Hesiod to get the POP server host], |
07c7351976b4
rearrange --with options
David J. MacKenzie <djm@gnu.org>
parents:
10036
diff
changeset
|
33 [AC_DEFINE(HESIOD)]) |
07c7351976b4
rearrange --with options
David J. MacKenzie <djm@gnu.org>
parents:
10036
diff
changeset
|
34 dnl This should be the last --with option, because --with-x is |
07c7351976b4
rearrange --with options
David J. MacKenzie <djm@gnu.org>
parents:
10036
diff
changeset
|
35 dnl added later on when we find the path of X, and it's best to |
07c7351976b4
rearrange --with options
David J. MacKenzie <djm@gnu.org>
parents:
10036
diff
changeset
|
36 dnl keep them together visually. |
8636 | 37 AC_ARG_WITH(x-toolkit, |
10037
07c7351976b4
rearrange --with options
David J. MacKenzie <djm@gnu.org>
parents:
10036
diff
changeset
|
38 [ --with-x-toolkit=KIT use an X toolkit (KIT = yes/lucid/athena/motif)], |
8636 | 39 [ case "${withval}" in |
40 y | ye | yes ) val=athena ;; | |
41 n | no ) val=no ;; | |
42 l | lu | luc | luci | lucid ) val=lucid ;; | |
43 a | at | ath | athe | athena ) val=athena ;; | |
9727
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
44 m | mo | mot | moti | motif ) val=motif ;; |
8674
bcfd4c7eecb0
*** empty log message ***
David J. MacKenzie <djm@gnu.org>
parents:
8636
diff
changeset
|
45 dnl These don't currently work. |
bcfd4c7eecb0
*** empty log message ***
David J. MacKenzie <djm@gnu.org>
parents:
8636
diff
changeset
|
46 dnl o | op | ope | open | open- | open-l | open-lo \ |
bcfd4c7eecb0
*** empty log message ***
David J. MacKenzie <djm@gnu.org>
parents:
8636
diff
changeset
|
47 dnl | open-loo | open-look ) val=open-look ;; |
8636 | 48 * ) |
8674
bcfd4c7eecb0
*** empty log message ***
David J. MacKenzie <djm@gnu.org>
parents:
8636
diff
changeset
|
49 dnl AC_MSG_ERROR([the \`--with-x-toolkit' option is supposed to have a value |
bcfd4c7eecb0
*** empty log message ***
David J. MacKenzie <djm@gnu.org>
parents:
8636
diff
changeset
|
50 dnl which is \`yes', \`no', \`lucid', \`athena', \`motif' or \`open-look'.]) |
8636 | 51 AC_MSG_ERROR([the \`--with-x-toolkit' option is supposed to have a value |
9727
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
52 which is \`yes', \`no', \`lucid', \`athena', or \`motif'. |
8636 | 53 Currently, \`yes', \`athena' and \`lucid' are synonyms.]) |
54 ;; | |
55 esac | |
56 with_x_toolkit=$val | |
57 ]) | |
58 | |
59 #### Make srcdir absolute, if it isn't already. It's important to | |
60 #### avoid running the path through pwd unnecessary, since pwd can | |
8729 | 61 #### give you automounter prefixes, which can go away. We do all this |
62 #### so Emacs can find its files when run uninstalled. | |
8636 | 63 case "${srcdir}" in |
64 /* ) ;; | |
65 . ) | |
66 ## We may be able to use the $PWD environment variable to make this | |
67 ## absolute. But sometimes PWD is inaccurate. | |
11723
a812bce4aef0
Make sure CDPATH doesn't mess up PWD check.
David J. MacKenzie <djm@gnu.org>
parents:
11669
diff
changeset
|
68 ## Make sure CDPATH doesn't affect cd (in case PWD is relative). |
a812bce4aef0
Make sure CDPATH doesn't mess up PWD check.
David J. MacKenzie <djm@gnu.org>
parents:
11669
diff
changeset
|
69 CDPATH= |
8636 | 70 if test "${PWD}" != "" && test "`(cd ${PWD} ; sh -c pwd)`" = "`pwd`" ; |
71 then | |
72 srcdir="$PWD" | |
73 else | |
74 srcdir="`(cd ${srcdir}; pwd)`" | |
75 fi | |
76 ;; | |
77 * ) srcdir="`(cd ${srcdir}; pwd)`" ;; | |
78 esac | |
79 | |
80 #### Check if the source directory already has a configured system in it. | |
81 if test `pwd` != `(cd ${srcdir} && pwd)` \ | |
82 && test -f "${srcdir}/src/config.h" ; then | |
83 AC_MSG_WARN([The directory tree \`${srcdir}' is being used | |
84 as a build directory right now; it has been configured in its own | |
85 right. To configure in another directory as well, you MUST | |
86 use GNU make. If you do not have GNU make, then you must | |
87 now do \`make distclean' in ${srcdir}, | |
88 and then run $0 again.]) | |
89 | |
9834
5be536b91960
protect character class with changequote
David J. MacKenzie <djm@gnu.org>
parents:
9832
diff
changeset
|
90 changequote(, )dnl |
8636 | 91 extrasub='/^VPATH[ ]*=/c\ |
9834
5be536b91960
protect character class with changequote
David J. MacKenzie <djm@gnu.org>
parents:
9832
diff
changeset
|
92 changequote([, ])dnl |
8636 | 93 vpath %.c $(srcdir)\ |
94 vpath %.h $(srcdir)\ | |
95 vpath %.y $(srcdir)\ | |
96 vpath %.l $(srcdir)\ | |
97 vpath %.s $(srcdir)\ | |
98 vpath %.in $(srcdir)' | |
99 fi | |
100 | |
101 #### Given the configuration name, set machfile and opsysfile to the | |
102 #### names of the m/*.h and s/*.h files we should use. | |
103 | |
104 ### Canonicalize the configuration name. | |
105 | |
106 AC_CANONICAL_HOST | |
107 canonical=$host | |
8680 | 108 configuration=$host_alias |
8636 | 109 |
110 changequote(, )dnl | |
111 | |
112 ### If you add support for a new configuration, add code to this | |
113 ### switch statement to recognize your configuration name and select | |
114 ### the appropriate operating system and machine description files. | |
115 | |
116 ### You would hope that you could choose an m/*.h file pretty much | |
117 ### based on the machine portion of the configuration name, and an s- | |
118 ### file based on the operating system portion. However, it turns out | |
119 ### that each m/*.h file is pretty manufacturer-specific - for | |
120 ### example, apollo.h, hp9000s300.h, mega68k, news.h, and tad68k are | |
121 ### all 68000 machines; mips.h, pmax.h, and news-risc are all MIPS | |
122 ### machines. So we basically have to have a special case for each | |
123 ### configuration name. | |
124 ### | |
125 ### As far as handling version numbers on operating systems is | |
126 ### concerned, make sure things will fail in a fixable way. If | |
127 ### /etc/MACHINES doesn't say anything about version numbers, be | |
128 ### prepared to handle anything reasonably. If version numbers | |
129 ### matter, be sure /etc/MACHINES says something about it. | |
130 ### | |
131 ### Eric Raymond says we should accept strings like "sysvr4" to mean | |
132 ### "System V Release 4"; he writes, "The old convention encouraged | |
133 ### confusion between `system' and `release' levels'." | |
134 | |
135 machine='' opsys='' unported=no | |
136 case "${canonical}" in | |
137 | |
138 ## NetBSD ports | |
139 *-*-netbsd* ) | |
140 opsys=netbsd | |
141 case "${canonical}" in | |
142 i[345]86-*-netbsd*) machine=intel386 ;; | |
143 m68k-*-netbsd*) | |
144 # This is somewhat bogus. | |
145 machine=hp9000s300 ;; | |
146 mips-*-netbsd*) machine=pmax ;; | |
147 ns32k-*-netbsd*) machine=ns32000 ;; | |
148 sparc-*-netbsd*) machine=sparc ;; | |
149 esac | |
150 ;; | |
151 | |
9727
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
152 ## Acorn RISCiX: |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
153 arm-acorn-riscix1.1* ) |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
154 machine=acorn opsys=riscix1-1 |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
155 ;; |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
156 arm-acorn-riscix1.2* | arm-acorn-riscix ) |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
157 machine=acorn opsys=riscix1-2 |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
158 ;; |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
159 |
8636 | 160 ## Alliant machines |
161 ## Strictly speaking, we need the version of the alliant operating | |
162 ## system to choose the right machine file, but currently the | |
163 ## configuration name doesn't tell us enough to choose the right | |
164 ## one; we need to give alliants their own operating system name to | |
165 ## do this right. When someone cares, they can help us. | |
166 fx80-alliant-* ) | |
167 machine=alliant4 opsys=bsd4-2 | |
168 ;; | |
169 i860-alliant-* ) | |
170 machine=alliant-2800 opsys=bsd4-3 | |
171 ;; | |
172 | |
9727
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
173 alpha-dec-osf* ) |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
174 machine=alpha opsys=osf1 |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
175 ;; |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
176 |
8636 | 177 ## Altos 3068 |
178 m68*-altos-sysv* ) | |
179 machine=altos opsys=usg5-2 | |
180 ;; | |
181 | |
182 ## Amdahl UTS | |
183 580-amdahl-sysv* ) | |
184 machine=amdahl opsys=usg5-2-2 | |
185 ;; | |
186 | |
11669
ddf3123098b4
(m68*-apollo-*): Renamed from m68*-apollo*.
Richard M. Stallman <rms@gnu.org>
parents:
11616
diff
changeset
|
187 ## Apollo, Domain/OS |
ddf3123098b4
(m68*-apollo-*): Renamed from m68*-apollo*.
Richard M. Stallman <rms@gnu.org>
parents:
11616
diff
changeset
|
188 m68*-apollo-* ) |
ddf3123098b4
(m68*-apollo-*): Renamed from m68*-apollo*.
Richard M. Stallman <rms@gnu.org>
parents:
11616
diff
changeset
|
189 machine=apollo opsys=bsd4-3 |
8636 | 190 ;; |
191 | |
192 ## AT&T 3b2, 3b5, 3b15, 3b20 | |
193 we32k-att-sysv* ) | |
194 machine=att3b opsys=usg5-2-2 | |
195 ;; | |
196 | |
197 ## AT&T 3b1 - The Mighty Unix PC! | |
198 m68*-att-sysv* ) | |
199 machine=7300 opsys=usg5-2-2 | |
200 ;; | |
201 | |
202 ## Bull dpx20 | |
203 rs6000-bull-bosx* ) | |
204 machine=ibmrs6000 opsys=aix3-2 | |
205 ;; | |
206 | |
207 ## Bull dpx2 | |
208 m68*-bull-sysv3* ) | |
209 machine=dpx2 opsys=usg5-3 | |
210 ;; | |
211 | |
212 ## Bull sps7 | |
213 m68*-bull-sysv2* ) | |
214 machine=sps7 opsys=usg5-2 | |
215 ;; | |
216 | |
217 ## CCI 5/32, 6/32 -- see "Tahoe". | |
218 | |
219 ## Celerity | |
220 ## I don't know what configuration name to use for this; config.sub | |
221 ## doesn't seem to know anything about it. Hey, Celerity users, get | |
222 ## in touch with us! | |
223 celerity-celerity-bsd* ) | |
224 machine=celerity opsys=bsd4-2 | |
225 ;; | |
226 | |
227 ## Clipper | |
228 ## What operating systems does this chip run that Emacs has been | |
229 ## tested on? | |
230 clipper-* ) | |
231 machine=clipper | |
232 ## We'll use the catch-all code at the bottom to guess the | |
233 ## operating system. | |
234 ;; | |
235 | |
236 ## Convex | |
237 *-convex-bsd* | *-convex-convexos* ) | |
238 machine=convex opsys=bsd4-3 | |
239 ## Prevents suprious white space in makefiles - d.m.cooke@larc.nasa.gov | |
240 NON_GNU_CPP="cc -E -P" | |
241 ;; | |
242 | |
243 ## Cubix QBx/386 | |
244 i[345]86-cubix-sysv* ) | |
245 machine=intel386 opsys=usg5-3 | |
246 ;; | |
247 | |
248 ## Cydra 5 | |
249 cydra*-cydrome-sysv* ) | |
250 machine=cydra5 opsys=usg5-3 | |
251 ;; | |
252 | |
253 ## Data General AViiON Machines | |
254 m88k-dg-dgux5.4R3* | m88k-dg-dgux5.4.3* ) | |
255 machine=aviion opsys=dgux5-4r3 | |
256 ;; | |
257 m88k-dg-dgux5.4R2* | m88k-dg-dgux5.4.2* ) | |
258 machine=aviion opsys=dgux5-4r2 | |
259 ;; | |
260 m88k-dg-dgux* ) | |
261 machine=aviion opsys=dgux | |
262 ;; | |
263 | |
264 ## DECstations | |
265 mips-dec-ultrix[0-3].* | mips-dec-ultrix4.0* | mips-dec-bsd4.2* ) | |
266 machine=pmax opsys=bsd4-2 | |
267 ;; | |
268 mips-dec-ultrix* | mips-dec-bsd* ) | |
269 machine=pmax opsys=bsd4-3 | |
270 ;; | |
271 mips-dec-osf* ) | |
272 machine=pmax opsys=osf1 | |
273 ;; | |
274 | |
275 ## Motorola Delta machines | |
276 m68k-motorola-sysv* | m68000-motorola-sysv* ) | |
277 machine=delta opsys=usg5-3 | |
278 if test -z "`type gnucc | grep 'not found'`" | |
11475
64aa0d436a80
(m68k-motorola-sysv*): Determine which -m option to use with `gnucc'.
Richard M. Stallman <rms@gnu.org>
parents:
11257
diff
changeset
|
279 then |
64aa0d436a80
(m68k-motorola-sysv*): Determine which -m option to use with `gnucc'.
Richard M. Stallman <rms@gnu.org>
parents:
11257
diff
changeset
|
280 if test -s /etc/167config |
64aa0d436a80
(m68k-motorola-sysv*): Determine which -m option to use with `gnucc'.
Richard M. Stallman <rms@gnu.org>
parents:
11257
diff
changeset
|
281 then CC="gnucc -m68040" |
64aa0d436a80
(m68k-motorola-sysv*): Determine which -m option to use with `gnucc'.
Richard M. Stallman <rms@gnu.org>
parents:
11257
diff
changeset
|
282 else CC="gnucc -m68881" |
64aa0d436a80
(m68k-motorola-sysv*): Determine which -m option to use with `gnucc'.
Richard M. Stallman <rms@gnu.org>
parents:
11257
diff
changeset
|
283 fi |
8636 | 284 else |
285 if test -z "`type gcc | grep 'not found'`" | |
286 then CC=gcc | |
287 else CC=cc | |
288 fi | |
289 fi | |
290 ;; | |
291 m88k-motorola-sysv4* ) | |
10837
0e8db919d6bd
(m88k-motorola-sysv4*): Use usg5-4-2.
Richard M. Stallman <rms@gnu.org>
parents:
10816
diff
changeset
|
292 # jbotte@bnr.ca says that UNIX_System_V <hostName> 4.0 R40V4.3 m88k mc88110 |
0e8db919d6bd
(m88k-motorola-sysv4*): Use usg5-4-2.
Richard M. Stallman <rms@gnu.org>
parents:
10816
diff
changeset
|
293 # needs POSIX_SIGNALS and therefore needs usg5-4-2. |
0e8db919d6bd
(m88k-motorola-sysv4*): Use usg5-4-2.
Richard M. Stallman <rms@gnu.org>
parents:
10816
diff
changeset
|
294 # I hope there are not other 4.0 versions for this machine |
0e8db919d6bd
(m88k-motorola-sysv4*): Use usg5-4-2.
Richard M. Stallman <rms@gnu.org>
parents:
10816
diff
changeset
|
295 # which really need usg5-4 instead. |
0e8db919d6bd
(m88k-motorola-sysv4*): Use usg5-4-2.
Richard M. Stallman <rms@gnu.org>
parents:
10816
diff
changeset
|
296 machine=delta88k opsys=usg5-4-2 |
8636 | 297 ;; |
298 m88k-motorola-sysv* | m88k-motorola-m88kbcs* ) | |
299 machine=delta88k opsys=usg5-3 | |
300 ;; | |
301 | |
302 ## Dual machines | |
303 m68*-dual-sysv* ) | |
304 machine=dual opsys=usg5-2 | |
305 ;; | |
306 m68*-dual-uniplus* ) | |
307 machine=dual opsys=unipl5-2 | |
308 ;; | |
309 | |
310 ## Elxsi 6400 | |
311 elxsi-elxsi-sysv* ) | |
312 machine=elxsi opsys=usg5-2 | |
313 ;; | |
314 | |
315 ## Encore machines | |
316 ns16k-encore-bsd* ) | |
317 machine=ns16000 opsys=umax | |
318 ;; | |
319 | |
320 ## The GEC 93 - apparently, this port isn't really finished yet. | |
321 | |
322 ## Gould Power Node and NP1 | |
323 pn-gould-bsd4.2* ) | |
324 machine=gould opsys=bsd4-2 | |
325 ;; | |
326 pn-gould-bsd4.3* ) | |
327 machine=gould opsys=bsd4-3 | |
328 ;; | |
329 np1-gould-bsd* ) | |
330 machine=gould-np1 opsys=bsd4-3 | |
331 ;; | |
332 | |
333 ## Harris Night Hawk machines running CX/UX (a 5000 looks just like a 4000 | |
334 ## as far as Emacs is concerned). | |
335 m88k-harris-cxux* ) | |
336 # Build needs to be different on 7.0 and later releases | |
337 case "`uname -r`" in | |
338 [56].[0-9] ) machine=nh4000 opsys=cxux ;; | |
339 [7].[0-9] ) machine=nh4000 opsys=cxux7 ;; | |
340 esac | |
341 ;; | |
342 ## Harris ecx or gcx running CX/UX (Series 1200, Series 3000) | |
343 m68k-harris-cxux* ) | |
344 machine=nh3000 opsys=cxux | |
345 ;; | |
346 | |
347 ## Honeywell XPS100 | |
348 xps*-honeywell-sysv* ) | |
349 machine=xps100 opsys=usg5-2 | |
350 ;; | |
351 | |
352 ## HP 9000 series 200 or 300 | |
353 m68*-hp-bsd* ) | |
354 machine=hp9000s300 opsys=bsd4-3 | |
355 ;; | |
11999
f074fb9f8e83
(hppa*-hp-hpux10*, m68k-hp-hpux10*): New configurations.
Karl Heuer <kwzh@gnu.org>
parents:
11998
diff
changeset
|
356 ## HP/UX 7, 8, 9, and 10 are supported on these machines. |
8636 | 357 m68*-hp-hpux* ) |
358 case "`uname -r`" in | |
359 ## Someone's system reports A.B8.05 for this. | |
360 ## I wonder what other possibilities there are. | |
361 *.B8.* ) machine=hp9000s300 opsys=hpux8 ;; | |
362 *.08.* ) machine=hp9000s300 opsys=hpux8 ;; | |
363 *.09.* ) machine=hp9000s300 opsys=hpux9 ;; | |
11999
f074fb9f8e83
(hppa*-hp-hpux10*, m68k-hp-hpux10*): New configurations.
Karl Heuer <kwzh@gnu.org>
parents:
11998
diff
changeset
|
364 *.10.* ) machine=hp9000s300 opsys=hpux9shr ;; |
8636 | 365 *) machine=hp9000s300 opsys=hpux ;; |
366 esac | |
367 ;; | |
368 | |
369 ## HP 9000 series 700 and 800, running HP/UX | |
370 hppa*-hp-hpux7* ) | |
371 machine=hp800 opsys=hpux | |
372 ;; | |
373 hppa*-hp-hpux8* ) | |
374 machine=hp800 opsys=hpux8 | |
375 ;; | |
376 hppa*-hp-hpux9shr* ) | |
377 machine=hp800 opsys=hpux9shr | |
378 ;; | |
379 hppa*-hp-hpux9* ) | |
380 machine=hp800 opsys=hpux9 | |
381 ;; | |
11999
f074fb9f8e83
(hppa*-hp-hpux10*, m68k-hp-hpux10*): New configurations.
Karl Heuer <kwzh@gnu.org>
parents:
11998
diff
changeset
|
382 hppa*-hp-hpux10* ) |
f074fb9f8e83
(hppa*-hp-hpux10*, m68k-hp-hpux10*): New configurations.
Karl Heuer <kwzh@gnu.org>
parents:
11998
diff
changeset
|
383 machine=hp800 opsys=hpux9shr |
f074fb9f8e83
(hppa*-hp-hpux10*, m68k-hp-hpux10*): New configurations.
Karl Heuer <kwzh@gnu.org>
parents:
11998
diff
changeset
|
384 ;; |
8636 | 385 |
386 ## HP 9000 series 700 and 800, running HP/UX | |
387 hppa*-hp-hpux* ) | |
388 ## Cross-compilation? Nah! | |
389 case "`uname -r`" in | |
390 ## Someone's system reports A.B8.05 for this. | |
391 ## I wonder what other possibilities there are. | |
392 *.B8.* ) machine=hp800 opsys=hpux8 ;; | |
393 *.08.* ) machine=hp800 opsys=hpux8 ;; | |
394 *.09.* ) machine=hp800 opsys=hpux9 ;; | |
395 *) machine=hp800 opsys=hpux ;; | |
396 esac | |
397 ;; | |
398 | |
399 ## Orion machines | |
400 orion-orion-bsd* ) | |
401 machine=orion opsys=bsd4-2 | |
402 ;; | |
403 clipper-orion-bsd* ) | |
404 machine=orion105 opsys=bsd4-2 | |
405 ;; | |
406 | |
407 ## IBM machines | |
408 i[345]86-ibm-aix1.1* ) | |
409 machine=ibmps2-aix opsys=usg5-2-2 | |
410 ;; | |
411 i[345]86-ibm-aix1.[23]* | i[345]86-ibm-aix* ) | |
412 machine=ibmps2-aix opsys=usg5-3 | |
413 ;; | |
414 i370-ibm-aix*) | |
415 machine=ibm370aix opsys=usg5-3 | |
416 ;; | |
8708
6fef8c63f200
keep up to date with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8707
diff
changeset
|
417 rs6000-ibm-aix3.1* | powerpc-ibm-aix3.1* ) |
8636 | 418 machine=ibmrs6000 opsys=aix3-1 |
419 ;; | |
8708
6fef8c63f200
keep up to date with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8707
diff
changeset
|
420 rs6000-ibm-aix3.2.5 | powerpc-ibm-aix3.2.5 ) |
8636 | 421 machine=ibmrs6000 opsys=aix3-2-5 |
422 ;; | |
10152
030853f9aa93
(rs6000-ibm-aix4.1*): New alternative.
Richard M. Stallman <rms@gnu.org>
parents:
10098
diff
changeset
|
423 rs6000-ibm-aix4.1* | powerpc-ibm-aix4.1* ) |
030853f9aa93
(rs6000-ibm-aix4.1*): New alternative.
Richard M. Stallman <rms@gnu.org>
parents:
10098
diff
changeset
|
424 machine=ibmrs6000 opsys=aix4-1 |
030853f9aa93
(rs6000-ibm-aix4.1*): New alternative.
Richard M. Stallman <rms@gnu.org>
parents:
10098
diff
changeset
|
425 ;; |
030853f9aa93
(rs6000-ibm-aix4.1*): New alternative.
Richard M. Stallman <rms@gnu.org>
parents:
10098
diff
changeset
|
426 rs6000-ibm-aix4* | powerpc-ibm-aix4* ) |
030853f9aa93
(rs6000-ibm-aix4.1*): New alternative.
Richard M. Stallman <rms@gnu.org>
parents:
10098
diff
changeset
|
427 machine=ibmrs6000 opsys=aix4 |
030853f9aa93
(rs6000-ibm-aix4.1*): New alternative.
Richard M. Stallman <rms@gnu.org>
parents:
10098
diff
changeset
|
428 ;; |
8708
6fef8c63f200
keep up to date with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8707
diff
changeset
|
429 rs6000-ibm-aix* | powerpc-ibm-aix* ) |
8636 | 430 machine=ibmrs6000 opsys=aix3-2 |
431 ;; | |
432 romp-ibm-bsd4.3* ) | |
433 machine=ibmrt opsys=bsd4-3 | |
434 ;; | |
435 romp-ibm-bsd4.2* ) | |
436 machine=ibmrt opsys=bsd4-2 | |
437 ;; | |
438 romp-ibm-aos4.3* ) | |
439 machine=ibmrt opsys=bsd4-3 | |
440 ;; | |
441 romp-ibm-aos4.2* ) | |
442 machine=ibmrt opsys=bsd4-2 | |
443 ;; | |
444 romp-ibm-aos* ) | |
445 machine=ibmrt opsys=bsd4-3 | |
446 ;; | |
447 romp-ibm-bsd* ) | |
448 machine=ibmrt opsys=bsd4-3 | |
449 ;; | |
450 romp-ibm-aix* ) | |
451 machine=ibmrt-aix opsys=usg5-2-2 | |
452 ;; | |
453 | |
454 ## Integrated Solutions `Optimum V' | |
455 m68*-isi-bsd4.2* ) | |
456 machine=isi-ov opsys=bsd4-2 | |
457 ;; | |
458 m68*-isi-bsd4.3* ) | |
459 machine=isi-ov opsys=bsd4-3 | |
460 ;; | |
461 | |
462 ## Intel 386 machines where we do care about the manufacturer | |
463 i[345]86-intsys-sysv* ) | |
464 machine=is386 opsys=usg5-2-2 | |
465 ;; | |
466 | |
467 ## Prime EXL | |
468 i[345]86-prime-sysv* ) | |
469 machine=i386 opsys=usg5-3 | |
470 ;; | |
471 | |
9727
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
472 ## Sequent Symmetry running Dynix |
8636 | 473 i[345]86-sequent-bsd* ) |
474 machine=symmetry opsys=bsd4-3 | |
475 ;; | |
476 | |
9727
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
477 ## Sequent Symmetry running DYNIX/ptx |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
478 ## Use the old cpp rather than the newer ANSI one. |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
479 i[345]86-sequent-ptx* ) |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
480 machine=sequent-ptx opsys=ptx |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
481 NON_GNU_CPP="/lib/cpp" |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
482 ;; |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
483 |
8636 | 484 ## Unspecified sysv on an ncr machine defaults to svr4.2. |
485 ## (Plain usg5-4 doesn't turn on POSIX signals, which we need.) | |
486 i[345]86-ncr-sysv* ) | |
11257 | 487 machine=ncr386 opsys=usg5-4-2 |
8636 | 488 ;; |
489 | |
9897
74814eb19d67
(i860-intel-osf1*): New alternative.
Richard M. Stallman <rms@gnu.org>
parents:
9875
diff
changeset
|
490 ## Intel Paragon OSF/1 |
74814eb19d67
(i860-intel-osf1*): New alternative.
Richard M. Stallman <rms@gnu.org>
parents:
9875
diff
changeset
|
491 i860-intel-osf1* ) |
74814eb19d67
(i860-intel-osf1*): New alternative.
Richard M. Stallman <rms@gnu.org>
parents:
9875
diff
changeset
|
492 machine=paragon opsys=osf1 NON_GNU_CPP=/usr/mach/lib/cpp |
74814eb19d67
(i860-intel-osf1*): New alternative.
Richard M. Stallman <rms@gnu.org>
parents:
9875
diff
changeset
|
493 ;; |
74814eb19d67
(i860-intel-osf1*): New alternative.
Richard M. Stallman <rms@gnu.org>
parents:
9875
diff
changeset
|
494 |
8636 | 495 ## Intel 860 |
496 i860-*-sysv4* ) | |
497 machine=i860 opsys=usg5-4 | |
498 NON_GNU_CC="/bin/cc" # Ie, not the one in /usr/ucb/cc. | |
499 NON_GNU_CPP="/usr/ccs/lib/cpp" # cc -E tokenizes macro expansion. | |
500 ;; | |
501 | |
502 ## Masscomp machines | |
503 m68*-masscomp-rtu* ) | |
504 machine=masscomp opsys=rtu | |
505 ;; | |
506 | |
507 ## Megatest machines | |
508 m68*-megatest-bsd* ) | |
509 machine=mega68 opsys=bsd4-2 | |
510 ;; | |
511 | |
512 ## Workstations sold by MIPS | |
513 ## This is not necessarily all workstations using the MIPS processor - | |
514 ## Irises are produced by SGI, and DECstations by DEC. | |
515 | |
516 ## etc/MACHINES lists mips.h and mips4.h as possible machine files, | |
517 ## and usg5-2-2 and bsd4-3 as possible OS files. The only guidance | |
518 ## it gives for choosing between the alternatives seems to be "Use | |
519 ## -machine=mips4 for RISCOS version 4; use -opsystem=bsd4-3 with | |
520 ## the BSD world." I'll assume that these are instructions for | |
521 ## handling two odd situations, and that every other situation | |
522 ## should use mips.h and usg5-2-2, they being listed first. | |
523 mips-mips-usg* ) | |
524 machine=mips4 | |
525 ## Fall through to the general code at the bottom to decide on the OS. | |
526 ;; | |
527 mips-mips-riscos4* ) | |
528 machine=mips4 opsys=bsd4-3 | |
529 NON_GNU_CC="cc -systype bsd43" | |
530 NON_GNU_CPP="cc -systype bsd43 -E" | |
531 ;; | |
532 mips-mips-bsd* ) | |
533 machine=mips opsys=bsd4-3 | |
534 ;; | |
535 mips-mips-* ) | |
536 machine=mips opsys=usg5-2-2 | |
537 ;; | |
538 | |
539 ## NeXT | |
540 m68*-next-* | i[345]86-next-* ) | |
541 machine=next opsys=mach2 | |
542 ;; | |
543 | |
544 ## The complete machine from National Semiconductor | |
545 ns32k-ns-genix* ) | |
546 machine=ns32000 opsys=usg5-2 | |
547 ;; | |
548 | |
549 ## NCR machines | |
550 m68*-ncr-sysv2* | m68*-ncr-sysvr2* ) | |
551 machine=tower32 opsys=usg5-2-2 | |
552 ;; | |
553 m68*-ncr-sysv3* | m68*-ncr-sysvr3* ) | |
554 machine=tower32v3 opsys=usg5-3 | |
555 ;; | |
556 | |
557 ## Nixdorf Targon 31 | |
558 m68*-nixdorf-sysv* ) | |
559 machine=targon31 opsys=usg5-2-2 | |
560 ;; | |
561 | |
562 ## Nu (TI or LMI) | |
563 m68*-nu-sysv* ) | |
564 machine=nu opsys=usg5-2 | |
565 ;; | |
566 | |
567 ## Plexus | |
568 m68*-plexus-sysv* ) | |
569 machine=plexus opsys=usg5-2 | |
570 ;; | |
571 | |
572 ## Pyramid machines | |
573 ## I don't really have any idea what sort of processor the Pyramid has, | |
574 ## so I'm assuming it is its own architecture. | |
575 pyramid-pyramid-bsd* ) | |
576 machine=pyramid opsys=bsd4-2 | |
577 ;; | |
578 | |
579 ## Sequent Balance | |
580 ns32k-sequent-bsd4.2* ) | |
581 machine=sequent opsys=bsd4-2 | |
582 ;; | |
583 ns32k-sequent-bsd4.3* ) | |
584 machine=sequent opsys=bsd4-3 | |
585 ;; | |
586 | |
587 ## Siemens Nixdorf | |
588 mips-siemens-sysv* ) | |
589 machine=mips-siemens opsys=usg5-4 | |
590 NON_GNU_CC=/usr/ccs/bin/cc | |
591 NON_GNU_CPP=/usr/ccs/lib/cpp | |
592 ;; | |
593 | |
594 ## Silicon Graphics machines | |
595 ## Iris 2500 and Iris 2500 Turbo (aka the Iris 3030) | |
596 m68*-sgi-iris3.5* ) | |
597 machine=irist opsys=iris3-5 | |
598 ;; | |
599 m68*-sgi-iris3.6* | m68*-sgi-iris*) | |
600 machine=irist opsys=iris3-6 | |
601 ;; | |
602 ## Iris 4D | |
603 mips-sgi-irix3* ) | |
604 machine=iris4d opsys=irix3-3 | |
605 ;; | |
9898
cd6ad88c82fd
(mips-sgi-irix5.[01]*): Distinguish from irix5*.
Richard M. Stallman <rms@gnu.org>
parents:
9897
diff
changeset
|
606 mips-sgi-irix4* ) |
cd6ad88c82fd
(mips-sgi-irix5.[01]*): Distinguish from irix5*.
Richard M. Stallman <rms@gnu.org>
parents:
9897
diff
changeset
|
607 machine=iris4d opsys=irix4-0 |
cd6ad88c82fd
(mips-sgi-irix5.[01]*): Distinguish from irix5*.
Richard M. Stallman <rms@gnu.org>
parents:
9897
diff
changeset
|
608 ;; |
10736
619269498881
(mips-sgi-irix6): New configuration.
Richard M. Stallman <rms@gnu.org>
parents:
10632
diff
changeset
|
609 mips-sgi-irix6* ) |
619269498881
(mips-sgi-irix6): New configuration.
Richard M. Stallman <rms@gnu.org>
parents:
10632
diff
changeset
|
610 machine=iris4d opsys=irix6-0 |
619269498881
(mips-sgi-irix6): New configuration.
Richard M. Stallman <rms@gnu.org>
parents:
10632
diff
changeset
|
611 ;; |
9898
cd6ad88c82fd
(mips-sgi-irix5.[01]*): Distinguish from irix5*.
Richard M. Stallman <rms@gnu.org>
parents:
9897
diff
changeset
|
612 mips-sgi-irix5.[01]* ) |
8636 | 613 machine=iris4d opsys=irix5-0 |
614 ;; | |
9898
cd6ad88c82fd
(mips-sgi-irix5.[01]*): Distinguish from irix5*.
Richard M. Stallman <rms@gnu.org>
parents:
9897
diff
changeset
|
615 mips-sgi-irix5* | mips-sgi-irix* ) |
cd6ad88c82fd
(mips-sgi-irix5.[01]*): Distinguish from irix5*.
Richard M. Stallman <rms@gnu.org>
parents:
9897
diff
changeset
|
616 machine=iris4d opsys=irix5-2 |
8636 | 617 ;; |
618 | |
619 ## SONY machines | |
620 m68*-sony-bsd4.2* ) | |
621 machine=news opsys=bsd4-2 | |
622 ;; | |
623 m68*-sony-bsd4.3* ) | |
624 machine=news opsys=bsd4-3 | |
625 ;; | |
9832
f0c8517d9d8a
Accept `news' as a synonym for `newsos'.
Karl Heuer <kwzh@gnu.org>
parents:
9744
diff
changeset
|
626 m68*-sony-newsos3* | m68*-sony-news3*) |
8636 | 627 machine=news opsys=bsd4-3 |
628 ;; | |
9832
f0c8517d9d8a
Accept `news' as a synonym for `newsos'.
Karl Heuer <kwzh@gnu.org>
parents:
9744
diff
changeset
|
629 mips-sony-bsd* | mips-sony-newsos4* | mips-sony-news4*) |
8636 | 630 machine=news-risc opsys=bsd4-3 |
631 ;; | |
9832
f0c8517d9d8a
Accept `news' as a synonym for `newsos'.
Karl Heuer <kwzh@gnu.org>
parents:
9744
diff
changeset
|
632 mips-sony-news* ) |
8636 | 633 machine=news-risc opsys=newsos5 |
634 ;; | |
635 | |
636 ## Stride | |
637 m68*-stride-sysv* ) | |
638 machine=stride opsys=usg5-2 | |
639 ;; | |
640 | |
641 ## Suns | |
642 *-sun-sunos* | *-sun-bsd* | *-sun-solaris* | i[345]86-*-solaris2* | i[345]86-*-sunos5* ) | |
643 case "${canonical}" in | |
644 m68*-sunos1* ) machine=sun1 ;; | |
645 m68*-sunos2* ) machine=sun2 ;; | |
646 m68* ) machine=sun3 ;; | |
647 i[345]86-sun-sunos[34]* ) machine=sun386 ;; | |
648 i[345]86-*-* ) machine=intel386 ;; | |
649 sparc* ) machine=sparc ;; | |
650 * ) unported=yes ;; | |
651 esac | |
652 case "${canonical}" in | |
653 ## The Sun386 didn't get past 4.0. | |
654 i[345]86-*-sunos4 ) opsys=sunos4-0 ;; | |
655 *-sunos4.0* ) opsys=sunos4-0 ;; | |
11616
9d232a632d2a
(*-sun-sunos4.1.3*): Use sunos4shr.h.
Richard M. Stallman <rms@gnu.org>
parents:
11608
diff
changeset
|
656 *-sunos4.1.3* | *-sunos4shr* ) opsys=sunos4shr |
10333
67a1a793add2
On sunos4.1.3 and sunus4shr, set NON_GNU_CPP.
Richard M. Stallman <rms@gnu.org>
parents:
10152
diff
changeset
|
657 NON_GNU_CPP=/usr/lib/cpp |
67a1a793add2
On sunos4.1.3 and sunus4shr, set NON_GNU_CPP.
Richard M. Stallman <rms@gnu.org>
parents:
10152
diff
changeset
|
658 ;; |
8636 | 659 *-sunos4* | *-sunos ) opsys=sunos4-1 |
660 NON_GCC_TEST_OPTIONS=-Bstatic | |
661 GCC_TEST_OPTIONS=-static | |
662 ;; | |
663 *-sunos5.3* | *-solaris2.3* ) | |
664 opsys=sol2-3 | |
665 NON_GNU_CPP=/usr/ccs/lib/cpp | |
666 ;; | |
667 *-sunos5.4* | *-solaris2.4* ) | |
668 opsys=sol2-4 | |
669 NON_GNU_CPP=/usr/ccs/lib/cpp | |
670 ;; | |
12056
021b6000bd04
(*-solaris2.5): New configuration.
Karl Heuer <kwzh@gnu.org>
parents:
12037
diff
changeset
|
671 *-sunos5.5* | *-solaris2.5* ) |
021b6000bd04
(*-solaris2.5): New configuration.
Karl Heuer <kwzh@gnu.org>
parents:
12037
diff
changeset
|
672 opsys=sol2-5 |
021b6000bd04
(*-solaris2.5): New configuration.
Karl Heuer <kwzh@gnu.org>
parents:
12037
diff
changeset
|
673 NON_GNU_CPP=/usr/ccs/lib/cpp |
021b6000bd04
(*-solaris2.5): New configuration.
Karl Heuer <kwzh@gnu.org>
parents:
12037
diff
changeset
|
674 ;; |
8636 | 675 *-sunos5* | *-solaris* ) |
676 opsys=sol2 | |
677 NON_GNU_CPP=/usr/ccs/lib/cpp | |
678 ;; | |
679 * ) opsys=bsd4-2 ;; | |
680 esac | |
681 ;; | |
682 | |
683 ## Tadpole 68k | |
684 m68*-tadpole-sysv* ) | |
685 machine=tad68k opsys=usg5-3 | |
686 ;; | |
687 | |
688 ## Tahoe machines | |
689 tahoe-tahoe-bsd4.2* ) | |
690 machine=tahoe opsys=bsd4-2 | |
691 ;; | |
692 tahoe-tahoe-bsd4.3* ) | |
693 machine=tahoe opsys=bsd4-3 | |
694 ;; | |
695 | |
696 ## Tandem Integrity S2 | |
697 mips-tandem-sysv* ) | |
698 machine=tandem-s2 opsys=usg5-3 | |
699 ;; | |
700 | |
701 ## Tektronix XD88 | |
702 m88k-tektronix-sysv3* ) | |
703 machine=tekxd88 opsys=usg5-3 | |
704 ;; | |
705 | |
706 ## Tektronix 16000 box (6130?) | |
707 ns16k-tektronix-bsd* ) | |
708 machine=ns16000 opsys=bsd4-2 | |
709 ;; | |
710 ## Tektronix 4300 | |
711 ## src/m/tek4300.h hints that this is a m68k machine. | |
712 m68*-tektronix-bsd* ) | |
713 machine=tek4300 opsys=bsd4-3 | |
714 ;; | |
715 | |
716 ## Titan P2 or P3 | |
717 ## We seem to have lost the machine-description file titan.h! | |
718 titan-titan-sysv* ) | |
719 machine=titan opsys=usg5-3 | |
720 ;; | |
721 | |
722 ## Ustation E30 (SS5E) | |
723 m68*-unisys-uniplus* ) | |
724 machine=ustation opsystem=unipl5-2 | |
725 ;; | |
726 | |
727 ## Vaxen. | |
728 vax-dec-* ) | |
729 machine=vax | |
730 case "${canonical}" in | |
731 *-bsd4.1* ) opsys=bsd4-1 ;; | |
732 *-bsd4.2* | *-ultrix[0-3].* | *-ultrix4.0* ) opsys=bsd4-2 ;; | |
733 *-bsd4.3* | *-ultrix* ) opsys=bsd4-3 ;; | |
734 *-sysv[01]* | *-sysvr[01]* ) opsys=usg5-0 ;; | |
735 *-sysv2* | *-sysvr2* ) opsys=usg5-2 ;; | |
736 *-vms* ) opsys=vms ;; | |
737 * ) unported=yes | |
738 esac | |
739 ;; | |
740 | |
741 ## Whitechapel MG1 | |
742 ns16k-whitechapel-* ) | |
743 machine=mg1 | |
744 ## We don't know what sort of OS runs on these; we'll let the | |
745 ## operating system guessing code below try. | |
746 ;; | |
747 | |
748 ## Wicat | |
749 m68*-wicat-sysv* ) | |
750 machine=wicat opsys=usg5-2 | |
751 ;; | |
752 | |
753 ## Intel 386 machines where we don't care about the manufacturer | |
754 i[345]86-*-* ) | |
755 machine=intel386 | |
756 case "${canonical}" in | |
757 *-isc1.* | *-isc2.[01]* ) opsys=386-ix ;; | |
758 *-isc2.2* ) opsys=isc2-2 ;; | |
759 *-isc4.0* ) opsys=isc4-0 ;; | |
10333
67a1a793add2
On sunos4.1.3 and sunus4shr, set NON_GNU_CPP.
Richard M. Stallman <rms@gnu.org>
parents:
10152
diff
changeset
|
760 *-isc4.* ) opsys=isc4-1 ;; |
8636 | 761 *-isc* ) opsys=isc3-0 ;; |
762 *-esix5* ) opsys=esix5r4; NON_GNU_CPP=/usr/lib/cpp ;; | |
763 *-esix* ) opsys=esix ;; | |
764 *-xenix* ) opsys=xenix ;; | |
765 *-linux* ) opsys=linux ;; | |
766 *-sco3.2v4* ) opsys=sco4 ; NON_GNU_CPP=/lib/cpp ;; | |
11725
fba9ec0e2b30
(i[345]86-*-bsdi2*): New configuration.
Richard M. Stallman <rms@gnu.org>
parents:
11723
diff
changeset
|
767 *-bsd386* | *-bsdi1* ) opsys=bsd386 ;; |
fba9ec0e2b30
(i[345]86-*-bsdi2*): New configuration.
Richard M. Stallman <rms@gnu.org>
parents:
11723
diff
changeset
|
768 *-bsdi2* ) opsys=bsdos2 ;; |
8636 | 769 *-386bsd* ) opsys=386bsd ;; |
770 *-freebsd* ) opsys=freebsd ;; | |
771 *-nextstep* ) opsys=mach2 ;; | |
772 ## Otherwise, we'll fall through to the generic opsys code at the bottom. | |
773 esac | |
774 ;; | |
775 | |
776 * ) | |
777 unported=yes | |
778 ;; | |
779 esac | |
780 | |
781 ### If the code above didn't choose an operating system, just choose | |
782 ### an operating system based on the configuration name. You really | |
783 ### only want to use this when you have no idea what the right | |
784 ### operating system is; if you know what operating systems a machine | |
785 ### runs, it's cleaner to make it explicit in the case statement | |
786 ### above. | |
787 if test x"${opsys}" = x; then | |
788 case "${canonical}" in | |
789 *-gnu* ) opsys=gnu ;; | |
790 *-bsd4.[01] ) opsys=bsd4-1 ;; | |
791 *-bsd4.2 ) opsys=bsd4-2 ;; | |
792 *-bsd4.3 ) opsys=bsd4-3 ;; | |
793 *-sysv0 | *-sysvr0 ) opsys=usg5-0 ;; | |
794 *-sysv2 | *-sysvr2 ) opsys=usg5-2 ;; | |
795 *-sysv2.2 | *-sysvr2.2 ) opsys=usg5-2-2 ;; | |
796 *-sysv3 | *-sysvr3 ) opsys=usg5-3 ;; | |
797 *-sysv4 | *-sysvr4 ) opsys=usg5-4 ;; | |
798 *-sysv4.1 | *-sysvr4.1 ) | |
799 NON_GNU_CPP=/usr/lib/cpp | |
800 opsys=usg5-4 ;; | |
10152
030853f9aa93
(rs6000-ibm-aix4.1*): New alternative.
Richard M. Stallman <rms@gnu.org>
parents:
10098
diff
changeset
|
801 *-sysv4.2 | *-sysvr4.2 ) |
030853f9aa93
(rs6000-ibm-aix4.1*): New alternative.
Richard M. Stallman <rms@gnu.org>
parents:
10098
diff
changeset
|
802 if [ x$NON_GNU_CPP = x ]; then |
030853f9aa93
(rs6000-ibm-aix4.1*): New alternative.
Richard M. Stallman <rms@gnu.org>
parents:
10098
diff
changeset
|
803 NON_GNU_CPP=/usr/ccs/lib/cpp |
030853f9aa93
(rs6000-ibm-aix4.1*): New alternative.
Richard M. Stallman <rms@gnu.org>
parents:
10098
diff
changeset
|
804 fi |
030853f9aa93
(rs6000-ibm-aix4.1*): New alternative.
Richard M. Stallman <rms@gnu.org>
parents:
10098
diff
changeset
|
805 opsys=usg5-4-2 ;; |
8636 | 806 * ) |
807 unported=yes | |
808 ;; | |
809 esac | |
810 fi | |
811 | |
812 changequote([, ])dnl | |
813 | |
814 if test $unported = yes; then | |
815 AC_MSG_ERROR([Emacs hasn't been ported to \`${canonical}' systems. | |
816 Check \`etc/MACHINES' for recognized configuration names.]) | |
817 fi | |
818 | |
819 machfile="m/${machine}.h" | |
820 opsysfile="s/${opsys}.h" | |
821 | |
822 | |
823 #### Choose a compiler. | |
824 test -n "$CC" && cc_specified=yes | |
825 | |
826 case ${with_gcc} in | |
827 "yes" ) CC="gcc" GCC=yes ;; | |
8730 | 828 "no" ) : ${CC=cc} ;; |
8636 | 829 * ) AC_PROG_CC |
830 esac | |
831 | |
832 # On Suns, sometimes $CPP names a directory. | |
833 if test -n "$CPP" && test -d "$CPP"; then | |
834 CPP= | |
835 fi | |
836 | |
837 #### Some systems specify a CPP to use unless we are using GCC. | |
838 #### Now that we know whether we are using GCC, we can decide whether | |
839 #### to use that one. | |
840 if test "x$NON_GNU_CPP" != x && test x$GCC != xyes && test "x$CPP" = x | |
841 then | |
842 CPP="$NON_GNU_CPP" | |
843 fi | |
844 | |
845 #### Some systems specify a CC to use unless we are using GCC. | |
846 #### Now that we know whether we are using GCC, we can decide whether | |
847 #### to use that one. | |
848 if test "x$NON_GNU_CC" != x && test x$GCC != xyes && | |
849 test x$cc_specified != xyes | |
850 then | |
851 CC="$NON_GNU_CC" | |
852 fi | |
853 | |
854 if test x$GCC = xyes && test "x$GCC_TEST_OPTIONS" != x | |
855 then | |
856 CC="$CC $GCC_TEST_OPTIONS" | |
857 fi | |
858 | |
859 if test x$GCC = x && test "x$NON_GCC_TEST_OPTIONS" != x | |
860 then | |
861 CC="$CC $NON_GCC_TEST_OPTIONS" | |
862 fi | |
863 | |
864 #### Some other nice autoconf tests. If you add a test here which | |
865 #### should make an entry in src/config.h, don't forget to add an | |
866 #### #undef clause to src/config.h.in for autoconf to modify. | |
867 | |
868 dnl checks for programs | |
8730 | 869 AC_PROG_LN_S |
8636 | 870 AC_PROG_CPP |
871 AC_PROG_INSTALL | |
872 AC_PROG_YACC | |
873 | |
9727
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
874 dnl checks for Unix variants |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
875 AC_AIX |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
876 |
8636 | 877 dnl checks for header files |
10530 | 878 AC_CHECK_HEADERS(sys/select.h sys/timeb.h sys/time.h unistd.h utime.h) |
8730 | 879 AC_HEADER_STDC |
880 AC_HEADER_TIME | |
881 AC_DECL_SYS_SIGLIST | |
8636 | 882 |
9727
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
883 dnl Some systems have utime.h but don't declare the struct anyplace. |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
884 AC_MSG_CHECKING(for struct utimbuf) |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
885 AC_TRY_COMPILE([#ifdef TIME_WITH_SYS_TIME |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
886 #include <sys/time.h> |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
887 #include <time.h> |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
888 #else |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
889 #ifdef HAVE_SYS_TIME_H |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
890 #include <sys/time.h> |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
891 #else |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
892 #include <time.h> |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
893 #endif |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
894 #endif |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
895 #ifdef HAVE_UTIME_H |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
896 #include <utime.h> |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
897 #endif], [static struct utimbuf x; x.actime = x.modtime;], |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
898 [AC_MSG_RESULT(yes) |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
899 AC_DEFINE(HAVE_STRUCT_UTIMBUF)], |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
900 AC_MSG_RESULT(no)) |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
901 |
8636 | 902 dnl checks for typedefs |
8730 | 903 AC_TYPE_SIGNAL |
8636 | 904 |
9727
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
905 AC_MSG_CHECKING(for struct timeval) |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
906 AC_TRY_COMPILE([#ifdef TIME_WITH_SYS_TIME |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
907 #include <sys/time.h> |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
908 #include <time.h> |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
909 #else |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
910 #ifdef HAVE_SYS_TIME_H |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
911 #include <sys/time.h> |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
912 #else |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
913 #include <time.h> |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
914 #endif |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
915 #endif], [static struct timeval x; x.tv_sec = x.tv_usec;], |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
916 [AC_MSG_RESULT(yes) |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
917 AC_DEFINE(HAVE_TIMEVAL)], |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
918 AC_MSG_RESULT(no)) |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
919 |
8636 | 920 dnl checks for structure members |
921 AC_STRUCT_TM | |
8730 | 922 AC_STRUCT_TIMEZONE |
8636 | 923 |
924 dnl checks for compiler characteristics | |
8730 | 925 AC_C_CONST |
8636 | 926 |
927 dnl check for Make feature | |
8730 | 928 AC_PROG_MAKE_SET |
8636 | 929 |
930 dnl checks for operating system services | |
8730 | 931 AC_SYS_LONG_FILE_NAMES |
8636 | 932 |
933 #### Choose a window system. | |
934 | |
8730 | 935 AC_PATH_X |
8707 | 936 if test "$no_x" = yes; then |
937 window_system=none | |
938 else | |
939 window_system=x11 | |
940 fi | |
8636 | 941 |
9910
27b7a34664e3
Don't add -I, -L, -R options for cc if their
David J. MacKenzie <djm@gnu.org>
parents:
9898
diff
changeset
|
942 if test "${x_libraries}" != NONE && test -n "${x_libraries}"; then |
11998
3c3f3bbe311f
Allow x_libraries and x_includes to be paths.
Karl Heuer <kwzh@gnu.org>
parents:
11916
diff
changeset
|
943 LD_SWITCH_X_SITE=-L`echo ${x_libraries} | sed -e "s/:/ -L/g"` |
3c3f3bbe311f
Allow x_libraries and x_includes to be paths.
Karl Heuer <kwzh@gnu.org>
parents:
11916
diff
changeset
|
944 LD_SWITCH_X_SITE_AUX=-R`echo ${x_libraries} | sed -e "s/:/ -R/g"` |
9910
27b7a34664e3
Don't add -I, -L, -R options for cc if their
David J. MacKenzie <djm@gnu.org>
parents:
9898
diff
changeset
|
945 fi |
27b7a34664e3
Don't add -I, -L, -R options for cc if their
David J. MacKenzie <djm@gnu.org>
parents:
9898
diff
changeset
|
946 if test "${x_includes}" != NONE && test -n "${x_includes}"; then |
12037
a9ada5749a17
Use x_includes, not x_libraries, for -I.
Karl Heuer <kwzh@gnu.org>
parents:
11999
diff
changeset
|
947 C_SWITCH_X_SITE=-I`echo ${x_includes} | sed -e "s/:/ -I/g"` |
9910
27b7a34664e3
Don't add -I, -L, -R options for cc if their
David J. MacKenzie <djm@gnu.org>
parents:
9898
diff
changeset
|
948 fi |
8636 | 949 |
9744 | 950 if test x"${x_includes}" = x; then |
951 bitmapdir=/usr/include/X11/bitmaps | |
9727
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
952 else |
12037
a9ada5749a17
Use x_includes, not x_libraries, for -I.
Karl Heuer <kwzh@gnu.org>
parents:
11999
diff
changeset
|
953 # accumulate include directories that have X11 bitmap sudirectories |
a9ada5749a17
Use x_includes, not x_libraries, for -I.
Karl Heuer <kwzh@gnu.org>
parents:
11999
diff
changeset
|
954 bmd_acc="dummyval" |
a9ada5749a17
Use x_includes, not x_libraries, for -I.
Karl Heuer <kwzh@gnu.org>
parents:
11999
diff
changeset
|
955 for bmd in `echo ${x_includes} | sed -e "s/:/ /g"`; do |
a9ada5749a17
Use x_includes, not x_libraries, for -I.
Karl Heuer <kwzh@gnu.org>
parents:
11999
diff
changeset
|
956 if test -d "${bmd}/X11/bitmaps"; then |
a9ada5749a17
Use x_includes, not x_libraries, for -I.
Karl Heuer <kwzh@gnu.org>
parents:
11999
diff
changeset
|
957 bmd_acc="${bmd_acc}:${bmd}/X11/bitmaps" |
a9ada5749a17
Use x_includes, not x_libraries, for -I.
Karl Heuer <kwzh@gnu.org>
parents:
11999
diff
changeset
|
958 elif test -d "${bmd}/bitmaps"; then |
a9ada5749a17
Use x_includes, not x_libraries, for -I.
Karl Heuer <kwzh@gnu.org>
parents:
11999
diff
changeset
|
959 bmd_acc="${bmd_acc}:${bmd}/bitmaps" |
a9ada5749a17
Use x_includes, not x_libraries, for -I.
Karl Heuer <kwzh@gnu.org>
parents:
11999
diff
changeset
|
960 fi |
a9ada5749a17
Use x_includes, not x_libraries, for -I.
Karl Heuer <kwzh@gnu.org>
parents:
11999
diff
changeset
|
961 done |
a9ada5749a17
Use x_includes, not x_libraries, for -I.
Karl Heuer <kwzh@gnu.org>
parents:
11999
diff
changeset
|
962 if test ${bmd_acc} != "dummyval"; then |
a9ada5749a17
Use x_includes, not x_libraries, for -I.
Karl Heuer <kwzh@gnu.org>
parents:
11999
diff
changeset
|
963 bitmapdir=`echo ${bmd_acc} | sed -e "s/^dummyval://"` |
a9ada5749a17
Use x_includes, not x_libraries, for -I.
Karl Heuer <kwzh@gnu.org>
parents:
11999
diff
changeset
|
964 fi |
9727
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
965 fi |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
966 |
8636 | 967 case "${window_system}" in |
968 x11 ) | |
969 HAVE_X_WINDOWS=yes | |
970 HAVE_X11=yes | |
971 case "${with_x_toolkit}" in | |
972 athena | lucid ) USE_X_TOOLKIT=LUCID ;; | |
9735
3f2c709d9856
Adapt for Autoconf v2. Use the standard argument
David J. MacKenzie <djm@gnu.org>
parents:
9727
diff
changeset
|
973 motif ) USE_X_TOOLKIT=MOTIF ;; |
8674
bcfd4c7eecb0
*** empty log message ***
David J. MacKenzie <djm@gnu.org>
parents:
8636
diff
changeset
|
974 dnl open-look ) USE_X_TOOLKIT=OPEN_LOOK ;; |
8636 | 975 * ) USE_X_TOOLKIT=none ;; |
976 esac | |
977 ;; | |
978 none ) | |
979 HAVE_X_WINDOWS=no | |
980 HAVE_X11=no | |
981 USE_X_TOOLKIT=none | |
982 ;; | |
983 esac | |
984 X_TOOLKIT_TYPE=$USE_X_TOOLKIT | |
985 | |
986 ### If we're using X11, we should use the X menu package. | |
987 HAVE_X_MENU=no | |
988 case ${HAVE_X11} in | |
989 yes ) HAVE_X_MENU=yes ;; | |
990 esac | |
991 | |
992 #### Extract some information from the operating system and machine files. | |
993 | |
994 AC_CHECKING([the machine- and system-dependent files to find out | |
995 - which libraries the lib-src programs will want, and | |
996 - whether the GNU malloc routines are usable]) | |
997 | |
998 ### First figure out CFLAGS (which we use for running the compiler here) | |
999 ### and REAL_CFLAGS (which we use for real compilation). | |
1000 ### The two are the same except on a few systems, where they are made | |
1001 ### different to work around various lossages. For example, | |
1002 ### GCC 2.5 on Linux needs them to be different because it treats -g | |
1003 ### as implying static linking. | |
1004 | |
1005 ### If the CFLAGS env var is specified, we use that value | |
1006 ### instead of the default. | |
1007 | |
1008 ### It's not important that this name contain the PID; you can't run | |
1009 ### two configures in the same directory and have anything work | |
1010 ### anyway. | |
1011 tempcname="conftest.c" | |
1012 | |
1013 echo ' | |
1014 #include "'${srcdir}'/src/'${opsysfile}'" | |
1015 #include "'${srcdir}'/src/'${machfile}'" | |
1016 #ifndef LIBS_MACHINE | |
1017 #define LIBS_MACHINE | |
1018 #endif | |
1019 #ifndef LIBS_SYSTEM | |
1020 #define LIBS_SYSTEM | |
1021 #endif | |
1022 #ifndef C_SWITCH_SYSTEM | |
1023 #define C_SWITCH_SYSTEM | |
1024 #endif | |
1025 #ifndef C_SWITCH_MACHINE | |
1026 #define C_SWITCH_MACHINE | |
1027 #endif | |
1028 configure___ libsrc_libs=LIBS_MACHINE LIBS_SYSTEM | |
1029 configure___ c_switch_system=C_SWITCH_SYSTEM | |
1030 configure___ c_switch_machine=C_SWITCH_MACHINE | |
1031 | |
1032 #ifndef LIB_X11_LIB | |
1033 #define LIB_X11_LIB -lX11 | |
1034 #endif | |
1035 | |
1036 #ifndef LIBX11_MACHINE | |
1037 #define LIBX11_MACHINE | |
1038 #endif | |
1039 | |
1040 #ifndef LIBX11_SYSTEM | |
1041 #define LIBX11_SYSTEM | |
1042 #endif | |
1043 configure___ LIBX=LIB_X11_LIB LIBX11_MACHINE LIBX11_SYSTEM | |
1044 | |
1045 #ifdef UNEXEC | |
1046 configure___ unexec=UNEXEC | |
1047 #else | |
1048 configure___ unexec=unexec.o | |
1049 #endif | |
1050 | |
1051 #ifdef SYSTEM_MALLOC | |
1052 configure___ system_malloc=yes | |
1053 #else | |
1054 configure___ system_malloc=no | |
1055 #endif | |
1056 | |
1057 #ifndef C_DEBUG_SWITCH | |
1058 #define C_DEBUG_SWITCH -g | |
1059 #endif | |
1060 | |
1061 #ifndef C_OPTIMIZE_SWITCH | |
1062 #define C_OPTIMIZE_SWITCH -O | |
1063 #endif | |
1064 | |
1065 #ifdef THIS_IS_CONFIGURE | |
1066 | |
1067 /* Get the CFLAGS for tests in configure. */ | |
1068 #ifdef __GNUC__ | |
1069 configure___ CFLAGS=C_DEBUG_SWITCH C_OPTIMIZE_SWITCH '${CFLAGS}' | |
1070 #else | |
1071 configure___ CFLAGS=C_DEBUG_SWITCH '${CFLAGS}' | |
1072 #endif | |
1073 | |
1074 #else /* not THIS_IS_CONFIGURE */ | |
1075 | |
1076 /* Get the CFLAGS for real compilation. */ | |
1077 #ifdef __GNUC__ | |
1078 configure___ REAL_CFLAGS=C_DEBUG_SWITCH C_OPTIMIZE_SWITCH '${CFLAGS}' | |
1079 #else | |
1080 configure___ REAL_CFLAGS=C_DEBUG_SWITCH '${CFLAGS}' | |
1081 #endif | |
1082 | |
1083 #endif /* not THIS_IS_CONFIGURE */ | |
1084 ' > ${tempcname} | |
1085 | |
1086 # The value of CPP is a quoted variable reference, so we need to do this | |
1087 # to get its actual value... | |
1088 CPP=`eval "echo $CPP"` | |
1089 changequote(, )dnl | |
1090 eval `${CPP} -Isrc ${tempcname} \ | |
1091 | sed -n -e 's/^configure___ \([^=]*=\)\(.*\)$/\1"\2"/p'` | |
1092 if test "x$CFLAGS" = x; then | |
1093 eval `${CPP} -Isrc -DTHIS_IS_CONFIGURE ${tempcname} \ | |
1094 | sed -n -e 's/^configure___ \([^=]*=\)\(.*\)$/\1"\2"/p'` | |
1095 else | |
1096 REAL_CFLAGS="$CFLAGS" | |
1097 fi | |
1098 changequote([, ])dnl | |
1099 rm ${tempcname} | |
1100 | |
1101 ### Compute the unexec source name from the object name. | |
1102 UNEXEC_SRC="`echo ${unexec} | sed 's/\.o/.c/'`" | |
1103 | |
1104 # Do the opsystem or machine files prohibit the use of the GNU malloc? | |
1105 # Assume not, until told otherwise. | |
1106 GNU_MALLOC=yes | |
1107 if test "${system_malloc}" = "yes"; then | |
1108 GNU_MALLOC=no | |
1109 GNU_MALLOC_reason=" | |
1110 (The GNU allocators don't work with this system configuration.)" | |
1111 fi | |
1112 | |
1113 if test x"${REL_ALLOC}" = x; then | |
1114 REL_ALLOC=${GNU_MALLOC} | |
1115 fi | |
1116 | |
1117 LISP_FLOAT_TYPE=yes | |
1118 | |
1119 | |
1120 #### Add the libraries to LIBS and check for some functions. | |
1121 | |
1122 CPPFLAGS="$c_switch_system $c_switch_machine $CPPFLAGS" | |
1123 LIBS="$libsrc_libs" | |
1124 | |
1125 dnl If found, this defines HAVE_LIBDNET, which m/pmax.h checks, | |
1126 dnl and also adds -ldnet to LIBS, which Autoconf uses for checks. | |
1127 AC_CHECK_LIB(dnet, dnet_ntoa) | |
1128 dnl This causes -lresolv to get used in subsequent tests, | |
1129 dnl which causes failures on some systems such as HPUX 9. | |
1130 dnl AC_CHECK_LIB(resolv, gethostbyname) | |
1131 | |
1132 dnl FIXME replace main with a function we actually want from this library. | |
1133 AC_CHECK_LIB(Xbsd, main, LD_SWITCH_X_SITE="$LD_SWITCH_X_SITE -lXbsd") | |
1134 | |
1135 AC_MSG_CHECKING(for XFree86) | |
1136 if test -d /usr/X386/include; then | |
1137 HAVE_XFREE386=yes | |
8730 | 1138 : ${C_SWITCH_X_SITE="-I/usr/X386/include"} |
8636 | 1139 else |
8730 | 1140 HAVE_XFREE386=no |
8636 | 1141 fi |
8730 | 1142 AC_MSG_RESULT($HAVE_XFREE386) |
8636 | 1143 |
1144 # We change CFLAGS temporarily so that C_SWITCH_X_SITE gets used | |
1145 # for the tests that follow. | |
1146 | |
1147 if test "${HAVE_X11}" = "yes"; then | |
1148 DEFS="$C_SWITCH_X_SITE $DEFS" | |
1149 LIBS="$LD_SWITCH_X_SITE $LIBX $LIBS" | |
1150 CFLAGS="$C_SWITCH_X_SITE $CFLAGS" | |
8730 | 1151 AC_CHECK_FUNCS(XrmSetDatabase XScreenResourceString \ |
8636 | 1152 XScreenNumberOfScreen XSetWMProtocols) |
1153 fi | |
1154 | |
1155 if test "${USE_X_TOOLKIT}" != "none"; then | |
1156 AC_MSG_CHECKING(X11 toolkit version) | |
8730 | 1157 AC_TRY_LINK([#include <X11/Intrinsic.h>], |
8636 | 1158 [#if XtSpecificationRelease < 6 |
1159 fail; | |
1160 #endif | |
1161 ], [AC_MSG_RESULT(6) | |
1162 AC_DEFINE(HAVE_X11XTR6)], | |
1163 [AC_MSG_RESULT(not 6)]) | |
1164 fi | |
1165 | |
1166 # If netdb.h doesn't declare h_errno, we must declare it by hand. | |
11916 | 1167 AC_MSG_CHECKING(whether netdb declares h_errno) |
8730 | 1168 AC_TRY_LINK([#include <netdb.h>], |
9875
463fd155c78d
Make h_errno check not use nested functions.
David J. MacKenzie <djm@gnu.org>
parents:
9834
diff
changeset
|
1169 [return h_errno;], |
463fd155c78d
Make h_errno check not use nested functions.
David J. MacKenzie <djm@gnu.org>
parents:
9834
diff
changeset
|
1170 [AC_MSG_RESULT(yes) |
463fd155c78d
Make h_errno check not use nested functions.
David J. MacKenzie <djm@gnu.org>
parents:
9834
diff
changeset
|
1171 AC_DEFINE(HAVE_H_ERRNO)], |
463fd155c78d
Make h_errno check not use nested functions.
David J. MacKenzie <djm@gnu.org>
parents:
9834
diff
changeset
|
1172 [AC_MSG_RESULT(no)]) |
8636 | 1173 |
8730 | 1174 AC_FUNC_ALLOCA |
8636 | 1175 |
11723
a812bce4aef0
Make sure CDPATH doesn't mess up PWD check.
David J. MacKenzie <djm@gnu.org>
parents:
11669
diff
changeset
|
1176 # fmod, logb, and frexp are found in -lm on most systems. |
11785
12053498f19b
Use sqrt (more portable) instead of fmod in -lm check.
David J. MacKenzie <djm@gnu.org>
parents:
11725
diff
changeset
|
1177 # On HPUX 9.01, -lm does not contain logb, so check for sqrt. |
11876 | 1178 AC_CHECK_LIB(m, sqrt(0.0) + t) |
8730 | 1179 AC_CHECK_FUNCS(gettimeofday gethostname dup2 rename closedir mkdir rmdir \ |
9727
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
1180 random lrand48 bcopy bcmp logb frexp fmod drem ftime res_init setsid \ |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
1181 strerror fpathconf select mktime eaccess getpagesize) |
8636 | 1182 |
1183 ok_so_far=yes | |
8730 | 1184 AC_CHECK_FUNC(socket, , ok_so_far=no) |
8636 | 1185 if test $ok_so_far = yes; then |
8730 | 1186 AC_CHECK_HEADER(netinet/in.h, , ok_so_far=no) |
8636 | 1187 fi |
1188 if test $ok_so_far = yes; then | |
8730 | 1189 AC_CHECK_HEADER(arpa/inet.h, , ok_so_far=no) |
8636 | 1190 fi |
1191 if test $ok_so_far = yes; then | |
1192 AC_DEFINE(HAVE_INET_SOCKETS) | |
1193 fi | |
1194 | |
8680 | 1195 if test -f /usr/lpp/X11/bin/smt.exp; then |
1196 AC_DEFINE(HAVE_AIX_SMT_EXP) | |
1197 fi | |
1198 | |
8636 | 1199 # Set up the CFLAGS for real compilation, so we can substitute it. |
1200 CFLAGS="$REAL_CFLAGS" | |
1201 | |
1202 changequote(, )dnl | |
1203 #### Find out which version of Emacs this is. | |
1204 version=`grep 'defconst[ ]*emacs-version' ${srcdir}/lisp/version.el \ | |
1205 | sed -e 's/^[^"]*"\([^"]*\)".*$/\1/'` | |
1206 changequote([, ])dnl | |
1207 if test x"${version}" = x; then | |
1208 AC_MSG_ERROR(can't find current emacs version in \`${srcdir}/lisp/version.el'.) | |
1209 fi | |
1210 | |
1211 ### Specify what sort of things we'll be editing into Makefile and config.h. | |
1212 ### Use configuration here uncanonicalized to avoid exceeding size limits. | |
1213 AC_SUBST(version) | |
1214 AC_SUBST(configuration) | |
9727
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
1215 AC_SUBST(canonical) |
8636 | 1216 AC_SUBST(srcdir) |
1217 AC_SUBST(prefix) | |
1218 AC_SUBST(exec_prefix) | |
1219 AC_SUBST(bindir) | |
1220 AC_SUBST(datadir) | |
9727
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
1221 AC_SUBST(sharedstatedir) |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
1222 AC_SUBST(libexecdir) |
8636 | 1223 AC_SUBST(mandir) |
1224 AC_SUBST(infodir) | |
1225 AC_SUBST(lispdir) | |
1226 AC_SUBST(locallisppath) | |
1227 AC_SUBST(lisppath) | |
1228 AC_SUBST(etcdir) | |
1229 AC_SUBST(lockdir) | |
1230 AC_SUBST(archlibdir) | |
1231 AC_SUBST(docdir) | |
9727
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
1232 AC_SUBST(bitmapdir) |
8636 | 1233 AC_SUBST(c_switch_system) |
1234 AC_SUBST(c_switch_machine) | |
1235 AC_SUBST(LD_SWITCH_X_SITE) | |
1236 AC_SUBST(LD_SWITCH_X_SITE_AUX) | |
1237 AC_SUBST(C_SWITCH_X_SITE) | |
1238 AC_SUBST(CFLAGS) | |
1239 AC_SUBST(X_TOOLKIT_TYPE) | |
1240 AC_SUBST(machfile) | |
1241 AC_SUBST(opsysfile) | |
1242 | |
9727
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
1243 AC_DEFINE_UNQUOTED(EMACS_CONFIGURATION, "${canonical}") |
10816
d172fd0e356f
(EMACS_CONFIG_OPTIONS): Use $ac_configure_args.
Karl Heuer <kwzh@gnu.org>
parents:
10736
diff
changeset
|
1244 AC_DEFINE_UNQUOTED(EMACS_CONFIG_OPTIONS, "${ac_configure_args}") |
8636 | 1245 AC_DEFINE_UNQUOTED(config_machfile, "${machfile}") |
1246 AC_DEFINE_UNQUOTED(config_opsysfile, "${opsysfile}") | |
1247 AC_DEFINE_UNQUOTED(LD_SWITCH_X_SITE, ${LD_SWITCH_X_SITE}) | |
1248 AC_DEFINE_UNQUOTED(LD_SWITCH_X_SITE_AUX, ${LD_SWITCH_X_SITE_AUX}) | |
1249 AC_DEFINE_UNQUOTED(C_SWITCH_X_SITE, ${C_SWITCH_X_SITE}) | |
1250 AC_DEFINE_UNQUOTED(UNEXEC_SRC, ${UNEXEC_SRC}) | |
1251 | |
1252 if test "${HAVE_X_WINDOWS}" = "yes" ; then | |
1253 AC_DEFINE(HAVE_X_WINDOWS) | |
1254 fi | |
1255 if test "${USE_X_TOOLKIT}" != "none" ; then | |
1256 AC_DEFINE(USE_X_TOOLKIT) | |
1257 fi | |
1258 if test "${HAVE_X11}" = "yes" ; then | |
1259 AC_DEFINE(HAVE_X11) | |
1260 fi | |
1261 if test "${HAVE_XFREE386}" = "yes" ; then | |
1262 AC_DEFINE(HAVE_XFREE386) | |
1263 fi | |
1264 if test "${HAVE_X_MENU}" = "yes" ; then | |
1265 AC_DEFINE(HAVE_X_MENU) | |
1266 fi | |
1267 if test "${GNU_MALLOC}" = "yes" ; then | |
1268 AC_DEFINE(GNU_MALLOC) | |
1269 fi | |
1270 if test "${REL_ALLOC}" = "yes" ; then | |
1271 AC_DEFINE(REL_ALLOC) | |
1272 fi | |
1273 if test "${LISP_FLOAT_TYPE}" = "yes" ; then | |
1274 AC_DEFINE(LISP_FLOAT_TYPE) | |
1275 fi | |
1276 | |
1277 #### Report on what we decided to do. | |
1278 echo " | |
1279 | |
1280 Configured for \`${canonical}'. | |
1281 | |
1282 Where should the build process find the source code? ${srcdir} | |
1283 What operating system and machine description files should Emacs use? | |
1284 \`${opsysfile}' and \`${machfile}' | |
1285 What compiler should emacs be built with? ${CC} ${CFLAGS} | |
1286 Should Emacs use the GNU version of malloc? ${GNU_MALLOC}${GNU_MALLOC_reason} | |
1287 Should Emacs use the relocating allocator for buffers? ${REL_ALLOC} | |
1288 What window system should Emacs use? ${window_system} | |
1289 What toolkit should Emacs use? ${USE_X_TOOLKIT}${x_includes+ | |
1290 Where do we find X Windows header files? }${x_includes}${x_libraries+ | |
1291 Where do we find X Windows libraries? }${x_libraries} | |
1292 | |
1293 " | |
1294 | |
1295 # Remove any trailing slashes in these variables. | |
1296 changequote(, )dnl | |
1297 test "${prefix}" != NONE && | |
1298 prefix=`echo "${prefix}" | sed 's,\([^/]\)/*$,\1,'` | |
1299 test "${exec_prefix}" != NONE && | |
1300 exec_prefix=`echo "${exec_prefix}" | sed 's,\([^/]\)/*$,\1,'` | |
1301 changequote([, ])dnl | |
1302 | |
8677
d41510c69a3f
*** empty log message ***
David J. MacKenzie <djm@gnu.org>
parents:
8674
diff
changeset
|
1303 AC_OUTPUT(Makefile lib-src/Makefile.in oldXMenu/Makefile \ |
10062
36c33f0526b2
Generate man/Makefile from man/Makefile.in.
Richard M. Stallman <rms@gnu.org>
parents:
10037
diff
changeset
|
1304 man/Makefile lwlib/Makefile src/Makefile.in, [ |
8680 | 1305 |
10152
030853f9aa93
(rs6000-ibm-aix4.1*): New alternative.
Richard M. Stallman <rms@gnu.org>
parents:
10098
diff
changeset
|
1306 ### Make the necessary directories, if they don't exist. |
10098
62d0ba6a531b
Don't try to make directories that are guaranteed to already exist.
David J. MacKenzie <djm@gnu.org>
parents:
10063
diff
changeset
|
1307 for dir in cpp etc ; do |
62d0ba6a531b
Don't try to make directories that are guaranteed to already exist.
David J. MacKenzie <djm@gnu.org>
parents:
10063
diff
changeset
|
1308 test -d ${dir} || mkdir ${dir} |
8636 | 1309 done |
1310 | |
1311 # Build src/Makefile from ${srcdir}/src/Makefile.in. This must be done | |
1312 # after src/config.h is built, since we rely on that file. | |
1313 | |
9834
5be536b91960
protect character class with changequote
David J. MacKenzie <djm@gnu.org>
parents:
9832
diff
changeset
|
1314 changequote(, )dnl The horror, the horror. |
8636 | 1315 # Now get this: Some word that is part of the ${srcdir} directory name |
1316 # or the ${configuration} value might, just might, happen to be an | |
1317 # identifier like `sun4' or `i386' or something, and be predefined by | |
1318 # the C preprocessor to some helpful value like 1, or maybe the empty | |
1319 # string. Needless to say consequent macro substitutions are less | |
1320 # than conducive to the makefile finding the correct directory. | |
1321 undefs="`echo $top_srcdir $configuration $canonical | | |
1322 sed -e 's/[^a-zA-Z0-9_]/ /g' -e 's/^/ /' -e 's/ *$//' \ | |
1323 -e 's/ */ -U/g' -e 's/-U[0-9][^ ]*//g' \ | |
1324 `" | |
9834
5be536b91960
protect character class with changequote
David J. MacKenzie <djm@gnu.org>
parents:
9832
diff
changeset
|
1325 changequote([, ])dnl |
8636 | 1326 |
1327 echo creating lib-src/Makefile | |
1328 ( cd lib-src | |
1329 rm -f junk.c junk1.c junk2.c | |
1330 sed -e '/start of cpp stuff/q' \ | |
1331 < Makefile.in > junk1.c | |
1332 sed -e '1,/start of cpp stuff/d'\ | |
1333 -e 's@/\*\*/#\(.*\)$@/* \1 */@' \ | |
1334 < Makefile.in > junk.c | |
1335 $CPP $undefs -I. -I$top_srcdir/src $CPPFLAGS junk.c | \ | |
1336 sed -e 's/^ / /' -e '/^#/d' -e '/^[ ]*$/d' > junk2.c | |
1337 cat junk1.c junk2.c > Makefile.new | |
1338 rm -f junk.c junk1.c junk2.c | |
1339 chmod 444 Makefile.new | |
1340 mv -f Makefile.new Makefile | |
1341 ) | |
1342 | |
1343 echo creating src/Makefile | |
1344 ( cd src | |
1345 rm -f junk.c junk1.c junk2.c | |
1346 sed -e '/start of cpp stuff/q' \ | |
1347 < Makefile.in > junk1.c | |
1348 sed -e '1,/start of cpp stuff/d'\ | |
1349 -e 's@/\*\*/#\(.*\)$@/* \1 */@' \ | |
1350 < Makefile.in > junk.c | |
1351 $CPP $undefs -I. -I$top_srcdir/src $CPPFLAGS junk.c | \ | |
1352 sed -e 's/^ / /' -e '/^#/d' -e '/^[ ]*$/d' > junk2.c | |
1353 cat junk1.c junk2.c > Makefile.new | |
1354 rm -f junk.c junk1.c junk2.c | |
1355 chmod 444 Makefile.new | |
1356 mv -f Makefile.new Makefile | |
1357 ) | |
10632
202c70b39c10
Create a .gdbinit that sources the real one, if using a different
David J. MacKenzie <djm@gnu.org>
parents:
10530
diff
changeset
|
1358 |
202c70b39c10
Create a .gdbinit that sources the real one, if using a different
David J. MacKenzie <djm@gnu.org>
parents:
10530
diff
changeset
|
1359 if test ! -f src/.gdbinit && test -f $top_srcdir/src/.gdbinit; then |
202c70b39c10
Create a .gdbinit that sources the real one, if using a different
David J. MacKenzie <djm@gnu.org>
parents:
10530
diff
changeset
|
1360 echo creating src/.gdbinit |
202c70b39c10
Create a .gdbinit that sources the real one, if using a different
David J. MacKenzie <djm@gnu.org>
parents:
10530
diff
changeset
|
1361 echo source $top_srcdir/src/.gdbinit > src/.gdbinit |
202c70b39c10
Create a .gdbinit that sources the real one, if using a different
David J. MacKenzie <djm@gnu.org>
parents:
10530
diff
changeset
|
1362 fi |
202c70b39c10
Create a .gdbinit that sources the real one, if using a different
David J. MacKenzie <djm@gnu.org>
parents:
10530
diff
changeset
|
1363 |
8677
d41510c69a3f
*** empty log message ***
David J. MacKenzie <djm@gnu.org>
parents:
8674
diff
changeset
|
1364 ], [CPP="$CPP" CPPFLAGS="$CPPFLAGS"]) |