(AViiON:dgux:*:*): Fix typo in recognizing mc88110.
[bpt/emacs.git] / configure.in
CommitLineData
6e502e37 1dnl Autoconf script for GNU Emacs
9ec10b2f
DM
2dnl To rebuild the `configure' script from this, execute the command
3dnl autoconf
4dnl in the directory containing this script.
6e502e37 5dnl
22cc077c 6dnl Copyright (C) 1994, 1995, 1996 Free Software Foundation, Inc.
552dfe31 7dnl
6e502e37 8dnl This file is part of GNU Emacs.
552dfe31 9dnl
6e502e37
RS
10dnl GNU Emacs is free software; you can redistribute it and/or modify
11dnl it under the terms of the GNU General Public License as published by
12dnl the Free Software Foundation; either version 2, or (at your option)
13dnl any later version.
552dfe31 14dnl
6e502e37
RS
15dnl GNU Emacs is distributed in the hope that it will be useful,
16dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
17dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18dnl GNU General Public License for more details.
19dnl
20dnl You should have received a copy of the GNU General Public License
21dnl along with GNU Emacs; see the file COPYING. If not, write to
22dnl the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
23
552dfe31 24AC_PREREQ(2.8)dnl
9ec10b2f 25AC_INIT(src/lisp.h)
5f8c8f00 26AC_CONFIG_HEADER(src/config.h:src/config.in)
9ec10b2f 27
9ec10b2f 28lispdir='${datadir}/emacs/${version}/lisp'
4be21f66
KH
29locallisppath='${datadir}/emacs/${version}/site-lisp:'\
30'${datadir}/emacs/site-lisp'
9ec10b2f
DM
31lisppath='${locallisppath}:${lispdir}'
32etcdir='${datadir}/emacs/${version}/etc'
3cd69289 33lockdir='${sharedstatedir}/emacs/lock'
60c3568d 34archlibdir='${libexecdir}/emacs/${version}/${configuration}'
9ec10b2f
DM
35docdir='${datadir}/emacs/${version}/etc'
36
39a7c455 37AC_ARG_WITH(gcc,
4f734bde
DM
38[ --with-gcc use GCC to compile Emacs])
39AC_ARG_WITH(pop,
40[ --with-pop support POP for mail retrieval],
41[AC_DEFINE(MAIL_USE_POP)])
42AC_ARG_WITH(kerberos,
43[ --with-kerberos support Kerberos-authenticated POP],
44[AC_DEFINE(KERBEROS)])
45AC_ARG_WITH(hesiod,
46[ --with-hesiod support Hesiod to get the POP server host],
47[AC_DEFINE(HESIOD)])
48dnl This should be the last --with option, because --with-x is
49dnl added later on when we find the path of X, and it's best to
50dnl keep them together visually.
9ec10b2f 51AC_ARG_WITH(x-toolkit,
4f734bde 52[ --with-x-toolkit=KIT use an X toolkit (KIT = yes/lucid/athena/motif)],
9ec10b2f
DM
53[ case "${withval}" in
54 y | ye | yes ) val=athena ;;
55 n | no ) val=no ;;
56 l | lu | luc | luci | lucid ) val=lucid ;;
84c5c823 57 a | at | ath | athe | athen | athena ) val=athena ;;
3cd69289 58 m | mo | mot | moti | motif ) val=motif ;;
2e71ec17 59dnl These don't currently work.
2e71ec17
DM
60dnl o | op | ope | open | open- | open-l | open-lo \
61dnl | open-loo | open-look ) val=open-look ;;
9ec10b2f 62 * )
2e71ec17
DM
63dnl AC_MSG_ERROR([the \`--with-x-toolkit' option is supposed to have a value
64dnl which is \`yes', \`no', \`lucid', \`athena', \`motif' or \`open-look'.])
90b777c5
RS
65AC_MSG_ERROR([\`--with-x-toolkit=$withval' is invalid\;
66this option's value should be \`yes', \`no', \`lucid', \`athena', or \`motif'.
9ec10b2f
DM
67Currently, \`yes', \`athena' and \`lucid' are synonyms.])
68 ;;
69 esac
70 with_x_toolkit=$val
71])
9ec10b2f
DM
72
73#### Make srcdir absolute, if it isn't already. It's important to
74#### avoid running the path through pwd unnecessary, since pwd can
069df4bf
DM
75#### give you automounter prefixes, which can go away. We do all this
76#### so Emacs can find its files when run uninstalled.
9ec10b2f
DM
77case "${srcdir}" in
78 /* ) ;;
79 . )
80 ## We may be able to use the $PWD environment variable to make this
81 ## absolute. But sometimes PWD is inaccurate.
f6e8adea
DM
82 ## Make sure CDPATH doesn't affect cd (in case PWD is relative).
83 CDPATH=
9ec10b2f
DM
84 if test "${PWD}" != "" && test "`(cd ${PWD} ; sh -c pwd)`" = "`pwd`" ;
85 then
86 srcdir="$PWD"
87 else
88 srcdir="`(cd ${srcdir}; pwd)`"
89 fi
90 ;;
91 * ) srcdir="`(cd ${srcdir}; pwd)`" ;;
92esac
93
94#### Check if the source directory already has a configured system in it.
95if test `pwd` != `(cd ${srcdir} && pwd)` \
96 && test -f "${srcdir}/src/config.h" ; then
97 AC_MSG_WARN([The directory tree \`${srcdir}' is being used
98 as a build directory right now; it has been configured in its own
99 right. To configure in another directory as well, you MUST
100 use GNU make. If you do not have GNU make, then you must
101 now do \`make distclean' in ${srcdir},
102 and then run $0 again.])
103
2d73167a 104changequote(, )dnl
9ec10b2f 105 extrasub='/^VPATH[ ]*=/c\
2d73167a 106changequote([, ])dnl
9ec10b2f
DM
107vpath %.c $(srcdir)\
108vpath %.h $(srcdir)\
109vpath %.y $(srcdir)\
110vpath %.l $(srcdir)\
111vpath %.s $(srcdir)\
112vpath %.in $(srcdir)'
113fi
114
115#### Given the configuration name, set machfile and opsysfile to the
116#### names of the m/*.h and s/*.h files we should use.
117
118### Canonicalize the configuration name.
119
120AC_CANONICAL_HOST
121canonical=$host
7bbbba31 122configuration=$host_alias
9ec10b2f
DM
123
124changequote(, )dnl
125
126### If you add support for a new configuration, add code to this
127### switch statement to recognize your configuration name and select
128### the appropriate operating system and machine description files.
129
130### You would hope that you could choose an m/*.h file pretty much
131### based on the machine portion of the configuration name, and an s-
132### file based on the operating system portion. However, it turns out
133### that each m/*.h file is pretty manufacturer-specific - for
134### example, apollo.h, hp9000s300.h, mega68k, news.h, and tad68k are
135### all 68000 machines; mips.h, pmax.h, and news-risc are all MIPS
136### machines. So we basically have to have a special case for each
137### configuration name.
138###
139### As far as handling version numbers on operating systems is
140### concerned, make sure things will fail in a fixable way. If
141### /etc/MACHINES doesn't say anything about version numbers, be
142### prepared to handle anything reasonably. If version numbers
143### matter, be sure /etc/MACHINES says something about it.
144###
145### Eric Raymond says we should accept strings like "sysvr4" to mean
146### "System V Release 4"; he writes, "The old convention encouraged
147### confusion between `system' and `release' levels'."
148
149machine='' opsys='' unported=no
150case "${canonical}" in
151
152 ## NetBSD ports
153 *-*-netbsd* )
154 opsys=netbsd
155 case "${canonical}" in
156 i[345]86-*-netbsd*) machine=intel386 ;;
157 m68k-*-netbsd*)
158 # This is somewhat bogus.
159 machine=hp9000s300 ;;
160 mips-*-netbsd*) machine=pmax ;;
161 ns32k-*-netbsd*) machine=ns32000 ;;
162 sparc-*-netbsd*) machine=sparc ;;
163 esac
164 ;;
165
3cd69289
DM
166 ## Acorn RISCiX:
167 arm-acorn-riscix1.1* )
168 machine=acorn opsys=riscix1-1
169 ;;
170 arm-acorn-riscix1.2* | arm-acorn-riscix )
171 machine=acorn opsys=riscix1-2
172 ;;
173
9ec10b2f
DM
174 ## Alliant machines
175 ## Strictly speaking, we need the version of the alliant operating
176 ## system to choose the right machine file, but currently the
177 ## configuration name doesn't tell us enough to choose the right
178 ## one; we need to give alliants their own operating system name to
179 ## do this right. When someone cares, they can help us.
180 fx80-alliant-* )
181 machine=alliant4 opsys=bsd4-2
182 ;;
183 i860-alliant-* )
184 machine=alliant-2800 opsys=bsd4-3
185 ;;
186
30457b4f 187 ## Alpha (DEC) machines.
3cd69289
DM
188 alpha-dec-osf* )
189 machine=alpha opsys=osf1
190 ;;
191
0b9da8a9
RS
192 alpha-*-linux* | alpha-*-lignux* )
193 machine=alpha opsys=lignux
4e90a7d5
RS
194 ;;
195
9ec10b2f
DM
196 ## Altos 3068
197 m68*-altos-sysv* )
198 machine=altos opsys=usg5-2
199 ;;
c7f493fd 200
9ec10b2f
DM
201 ## Amdahl UTS
202 580-amdahl-sysv* )
203 machine=amdahl opsys=usg5-2-2
204 ;;
205
acd04c87
RS
206 ## Apollo, Domain/OS
207 m68*-apollo-* )
208 machine=apollo opsys=bsd4-3
9ec10b2f
DM
209 ;;
210
211 ## AT&T 3b2, 3b5, 3b15, 3b20
212 we32k-att-sysv* )
213 machine=att3b opsys=usg5-2-2
214 ;;
215
216 ## AT&T 3b1 - The Mighty Unix PC!
217 m68*-att-sysv* )
218 machine=7300 opsys=usg5-2-2
219 ;;
220
221 ## Bull dpx20
222 rs6000-bull-bosx* )
223 machine=ibmrs6000 opsys=aix3-2
224 ;;
225
226 ## Bull dpx2
227 m68*-bull-sysv3* )
228 machine=dpx2 opsys=usg5-3
229 ;;
230
231 ## Bull sps7
232 m68*-bull-sysv2* )
233 machine=sps7 opsys=usg5-2
234 ;;
235
236 ## CCI 5/32, 6/32 -- see "Tahoe".
237
238 ## Celerity
239 ## I don't know what configuration name to use for this; config.sub
240 ## doesn't seem to know anything about it. Hey, Celerity users, get
241 ## in touch with us!
242 celerity-celerity-bsd* )
243 machine=celerity opsys=bsd4-2
244 ;;
245
246 ## Clipper
247 ## What operating systems does this chip run that Emacs has been
248 ## tested on?
249 clipper-* )
250 machine=clipper
251 ## We'll use the catch-all code at the bottom to guess the
252 ## operating system.
253 ;;
254
255 ## Convex
256 *-convex-bsd* | *-convex-convexos* )
257 machine=convex opsys=bsd4-3
908ff139 258 ## Prevents spurious white space in makefiles - d.m.cooke@larc.nasa.gov
9ec10b2f
DM
259 NON_GNU_CPP="cc -E -P"
260 ;;
261
262 ## Cubix QBx/386
263 i[345]86-cubix-sysv* )
264 machine=intel386 opsys=usg5-3
265 ;;
266
267 ## Cydra 5
268 cydra*-cydrome-sysv* )
269 machine=cydra5 opsys=usg5-3
270 ;;
271
272 ## Data General AViiON Machines
273 m88k-dg-dgux5.4R3* | m88k-dg-dgux5.4.3* )
274 machine=aviion opsys=dgux5-4r3
275 ;;
276 m88k-dg-dgux5.4R2* | m88k-dg-dgux5.4.2* )
277 machine=aviion opsys=dgux5-4r2
278 ;;
279 m88k-dg-dgux* )
280 machine=aviion opsys=dgux
281 ;;
282
283 ## DECstations
284 mips-dec-ultrix[0-3].* | mips-dec-ultrix4.0* | mips-dec-bsd4.2* )
285 machine=pmax opsys=bsd4-2
286 ;;
3bbe016c 287 mips-dec-ultrix4.[12]* | mips-dec-bsd* )
9ec10b2f
DM
288 machine=pmax opsys=bsd4-3
289 ;;
3bbe016c
KH
290 mips-dec-ultrix* )
291 machine=pmax opsys=ultrix4-3
292 ;;
9ec10b2f
DM
293 mips-dec-osf* )
294 machine=pmax opsys=osf1
295 ;;
b95c8e7e
RS
296 mips-dec-mach_bsd4.3* )
297 machine=pmax opsys=mach-bsd4-3
298 ;;
9ec10b2f
DM
299
300 ## Motorola Delta machines
301 m68k-motorola-sysv* | m68000-motorola-sysv* )
302 machine=delta opsys=usg5-3
303 if test -z "`type gnucc | grep 'not found'`"
018427ee
RS
304 then
305 if test -s /etc/167config
306 then CC="gnucc -m68040"
307 else CC="gnucc -m68881"
c7f493fd 308 fi
9ec10b2f
DM
309 else
310 if test -z "`type gcc | grep 'not found'`"
311 then CC=gcc
312 else CC=cc
313 fi
314 fi
315 ;;
316 m88k-motorola-sysv4* )
63c1d3f2
RS
317 # jbotte@bnr.ca says that UNIX_System_V <hostName> 4.0 R40V4.3 m88k mc88110
318 # needs POSIX_SIGNALS and therefore needs usg5-4-2.
319 # I hope there are not other 4.0 versions for this machine
320 # which really need usg5-4 instead.
321 machine=delta88k opsys=usg5-4-2
9ec10b2f
DM
322 ;;
323 m88k-motorola-sysv* | m88k-motorola-m88kbcs* )
324 machine=delta88k opsys=usg5-3
325 ;;
326
327 ## Dual machines
328 m68*-dual-sysv* )
329 machine=dual opsys=usg5-2
330 ;;
331 m68*-dual-uniplus* )
332 machine=dual opsys=unipl5-2
333 ;;
334
335 ## Elxsi 6400
336 elxsi-elxsi-sysv* )
337 machine=elxsi opsys=usg5-2
338 ;;
339
340 ## Encore machines
341 ns16k-encore-bsd* )
342 machine=ns16000 opsys=umax
343 ;;
344
345 ## The GEC 93 - apparently, this port isn't really finished yet.
346
347 ## Gould Power Node and NP1
348 pn-gould-bsd4.2* )
349 machine=gould opsys=bsd4-2
350 ;;
351 pn-gould-bsd4.3* )
352 machine=gould opsys=bsd4-3
353 ;;
354 np1-gould-bsd* )
355 machine=gould-np1 opsys=bsd4-3
356 ;;
357
358 ## Harris Night Hawk machines running CX/UX (a 5000 looks just like a 4000
359 ## as far as Emacs is concerned).
360 m88k-harris-cxux* )
361 # Build needs to be different on 7.0 and later releases
362 case "`uname -r`" in
363 [56].[0-9] ) machine=nh4000 opsys=cxux ;;
364 [7].[0-9] ) machine=nh4000 opsys=cxux7 ;;
365 esac
3d68df05 366 NON_GNU_CPP="/lib/cpp"
9ec10b2f
DM
367 ;;
368 ## Harris ecx or gcx running CX/UX (Series 1200, Series 3000)
369 m68k-harris-cxux* )
370 machine=nh3000 opsys=cxux
371 ;;
3d68df05
KH
372 ## Harris power pc NightHawk running Power UNIX (Series 6000)
373 powerpc-harris-powerunix )
374 machine=nh6000 opsys=powerunix
375 NON_GNU_CPP="cc -Xo -E -P"
376 ;;
9ec10b2f
DM
377
378 ## Honeywell XPS100
379 xps*-honeywell-sysv* )
380 machine=xps100 opsys=usg5-2
381 ;;
382
383 ## HP 9000 series 200 or 300
384 m68*-hp-bsd* )
385 machine=hp9000s300 opsys=bsd4-3
386 ;;
42c3a7f7 387 ## HP/UX 7, 8, 9, and 10 are supported on these machines.
9ec10b2f
DM
388 m68*-hp-hpux* )
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=hp9000s300 opsys=hpux8 ;;
393 *.08.* ) machine=hp9000s300 opsys=hpux8 ;;
394 *.09.* ) machine=hp9000s300 opsys=hpux9 ;;
42c3a7f7 395 *.10.* ) machine=hp9000s300 opsys=hpux9shr ;;
9ec10b2f
DM
396 *) machine=hp9000s300 opsys=hpux ;;
397 esac
398 ;;
399
400 ## HP 9000 series 700 and 800, running HP/UX
401 hppa*-hp-hpux7* )
402 machine=hp800 opsys=hpux
403 ;;
404 hppa*-hp-hpux8* )
405 machine=hp800 opsys=hpux8
406 ;;
407 hppa*-hp-hpux9shr* )
408 machine=hp800 opsys=hpux9shr
409 ;;
410 hppa*-hp-hpux9* )
411 machine=hp800 opsys=hpux9
412 ;;
42c3a7f7 413 hppa*-hp-hpux10* )
12760c02 414 machine=hp800 opsys=hpux10
42c3a7f7 415 ;;
9ec10b2f
DM
416
417 ## HP 9000 series 700 and 800, running HP/UX
418 hppa*-hp-hpux* )
419 ## Cross-compilation? Nah!
420 case "`uname -r`" in
421 ## Someone's system reports A.B8.05 for this.
422 ## I wonder what other possibilities there are.
423 *.B8.* ) machine=hp800 opsys=hpux8 ;;
424 *.08.* ) machine=hp800 opsys=hpux8 ;;
425 *.09.* ) machine=hp800 opsys=hpux9 ;;
426 *) machine=hp800 opsys=hpux ;;
427 esac
428 ;;
4be21f66
KH
429 hppa-*-nextstep* )
430 machine=hp800 opsys=nextstep
431 ;;
9ec10b2f
DM
432
433 ## Orion machines
434 orion-orion-bsd* )
435 machine=orion opsys=bsd4-2
436 ;;
437 clipper-orion-bsd* )
438 machine=orion105 opsys=bsd4-2
439 ;;
440
441 ## IBM machines
442 i[345]86-ibm-aix1.1* )
443 machine=ibmps2-aix opsys=usg5-2-2
444 ;;
445 i[345]86-ibm-aix1.[23]* | i[345]86-ibm-aix* )
446 machine=ibmps2-aix opsys=usg5-3
447 ;;
448 i370-ibm-aix*)
449 machine=ibm370aix opsys=usg5-3
450 ;;
046545ec 451 rs6000-ibm-aix3.1* | powerpc-ibm-aix3.1* )
9ec10b2f
DM
452 machine=ibmrs6000 opsys=aix3-1
453 ;;
046545ec 454 rs6000-ibm-aix3.2.5 | powerpc-ibm-aix3.2.5 )
9ec10b2f
DM
455 machine=ibmrs6000 opsys=aix3-2-5
456 ;;
b63df577
RS
457 rs6000-ibm-aix4.1* | powerpc-ibm-aix4.1* )
458 machine=ibmrs6000 opsys=aix4-1
459 ;;
460 rs6000-ibm-aix4* | powerpc-ibm-aix4* )
461 machine=ibmrs6000 opsys=aix4
462 ;;
046545ec 463 rs6000-ibm-aix* | powerpc-ibm-aix* )
9ec10b2f
DM
464 machine=ibmrs6000 opsys=aix3-2
465 ;;
466 romp-ibm-bsd4.3* )
467 machine=ibmrt opsys=bsd4-3
c7f493fd 468 ;;
9ec10b2f
DM
469 romp-ibm-bsd4.2* )
470 machine=ibmrt opsys=bsd4-2
471 ;;
472 romp-ibm-aos4.3* )
473 machine=ibmrt opsys=bsd4-3
c7f493fd 474 ;;
9ec10b2f
DM
475 romp-ibm-aos4.2* )
476 machine=ibmrt opsys=bsd4-2
477 ;;
478 romp-ibm-aos* )
479 machine=ibmrt opsys=bsd4-3
480 ;;
481 romp-ibm-bsd* )
482 machine=ibmrt opsys=bsd4-3
483 ;;
484 romp-ibm-aix* )
485 machine=ibmrt-aix opsys=usg5-2-2
486 ;;
487
488 ## Integrated Solutions `Optimum V'
489 m68*-isi-bsd4.2* )
490 machine=isi-ov opsys=bsd4-2
491 ;;
492 m68*-isi-bsd4.3* )
493 machine=isi-ov opsys=bsd4-3
494 ;;
495
496 ## Intel 386 machines where we do care about the manufacturer
497 i[345]86-intsys-sysv* )
498 machine=is386 opsys=usg5-2-2
499 ;;
500
501 ## Prime EXL
502 i[345]86-prime-sysv* )
503 machine=i386 opsys=usg5-3
504 ;;
505
3cd69289 506 ## Sequent Symmetry running Dynix
9ec10b2f
DM
507 i[345]86-sequent-bsd* )
508 machine=symmetry opsys=bsd4-3
509 ;;
510
3cd69289
DM
511 ## Sequent Symmetry running DYNIX/ptx
512 ## Use the old cpp rather than the newer ANSI one.
513 i[345]86-sequent-ptx* )
514 machine=sequent-ptx opsys=ptx
515 NON_GNU_CPP="/lib/cpp"
516 ;;
517
9ec10b2f
DM
518 ## Unspecified sysv on an ncr machine defaults to svr4.2.
519 ## (Plain usg5-4 doesn't turn on POSIX signals, which we need.)
520 i[345]86-ncr-sysv* )
b0f36760 521 machine=ncr386 opsys=usg5-4-2
9ec10b2f
DM
522 ;;
523
cbce363f
RS
524 ## Intel Paragon OSF/1
525 i860-intel-osf1* )
526 machine=paragon opsys=osf1 NON_GNU_CPP=/usr/mach/lib/cpp
527 ;;
528
9ec10b2f
DM
529 ## Intel 860
530 i860-*-sysv4* )
531 machine=i860 opsys=usg5-4
532 NON_GNU_CC="/bin/cc" # Ie, not the one in /usr/ucb/cc.
533 NON_GNU_CPP="/usr/ccs/lib/cpp" # cc -E tokenizes macro expansion.
534 ;;
535
536 ## Masscomp machines
537 m68*-masscomp-rtu* )
538 machine=masscomp opsys=rtu
539 ;;
540
541 ## Megatest machines
542 m68*-megatest-bsd* )
543 machine=mega68 opsys=bsd4-2
544 ;;
545
546 ## Workstations sold by MIPS
547 ## This is not necessarily all workstations using the MIPS processor -
548 ## Irises are produced by SGI, and DECstations by DEC.
549
550 ## etc/MACHINES lists mips.h and mips4.h as possible machine files,
551 ## and usg5-2-2 and bsd4-3 as possible OS files. The only guidance
552 ## it gives for choosing between the alternatives seems to be "Use
553 ## -machine=mips4 for RISCOS version 4; use -opsystem=bsd4-3 with
554 ## the BSD world." I'll assume that these are instructions for
555 ## handling two odd situations, and that every other situation
556 ## should use mips.h and usg5-2-2, they being listed first.
557 mips-mips-usg* )
558 machine=mips4
559 ## Fall through to the general code at the bottom to decide on the OS.
560 ;;
561 mips-mips-riscos4* )
562 machine=mips4 opsys=bsd4-3
563 NON_GNU_CC="cc -systype bsd43"
564 NON_GNU_CPP="cc -systype bsd43 -E"
565 ;;
b95c8e7e
RS
566 mips-mips-riscos5* )
567 machine=mips4 opsys=riscos5
568 NON_GNU_CC="cc -systype bsd43"
569 NON_GNU_CPP="cc -systype bsd43 -E"
570 ;;
9ec10b2f
DM
571 mips-mips-bsd* )
572 machine=mips opsys=bsd4-3
573 ;;
574 mips-mips-* )
575 machine=mips opsys=usg5-2-2
576 ;;
577
578 ## NeXT
5ab52d42
RS
579 m68*-next-* | m68k-*-nextstep* )
580 machine=m68k opsys=nextstep
9ec10b2f
DM
581 ;;
582
583 ## The complete machine from National Semiconductor
584 ns32k-ns-genix* )
585 machine=ns32000 opsys=usg5-2
586 ;;
587
588 ## NCR machines
589 m68*-ncr-sysv2* | m68*-ncr-sysvr2* )
590 machine=tower32 opsys=usg5-2-2
591 ;;
592 m68*-ncr-sysv3* | m68*-ncr-sysvr3* )
593 machine=tower32v3 opsys=usg5-3
594 ;;
595
596 ## Nixdorf Targon 31
597 m68*-nixdorf-sysv* )
598 machine=targon31 opsys=usg5-2-2
599 ;;
600
601 ## Nu (TI or LMI)
602 m68*-nu-sysv* )
603 machine=nu opsys=usg5-2
604 ;;
605
606 ## Plexus
607 m68*-plexus-sysv* )
608 machine=plexus opsys=usg5-2
609 ;;
610
611 ## Pyramid machines
612 ## I don't really have any idea what sort of processor the Pyramid has,
613 ## so I'm assuming it is its own architecture.
614 pyramid-pyramid-bsd* )
615 machine=pyramid opsys=bsd4-2
616 ;;
617
618 ## Sequent Balance
619 ns32k-sequent-bsd4.2* )
620 machine=sequent opsys=bsd4-2
621 ;;
622 ns32k-sequent-bsd4.3* )
623 machine=sequent opsys=bsd4-3
624 ;;
625
626 ## Siemens Nixdorf
7cba3845 627 mips-siemens-sysv* | mips-sni-sysv*)
9ec10b2f
DM
628 machine=mips-siemens opsys=usg5-4
629 NON_GNU_CC=/usr/ccs/bin/cc
630 NON_GNU_CPP=/usr/ccs/lib/cpp
631 ;;
632
633 ## Silicon Graphics machines
634 ## Iris 2500 and Iris 2500 Turbo (aka the Iris 3030)
635 m68*-sgi-iris3.5* )
636 machine=irist opsys=iris3-5
637 ;;
638 m68*-sgi-iris3.6* | m68*-sgi-iris*)
639 machine=irist opsys=iris3-6
640 ;;
641 ## Iris 4D
642 mips-sgi-irix3* )
643 machine=iris4d opsys=irix3-3
644 ;;
4ab83697
RS
645 mips-sgi-irix4* )
646 machine=iris4d opsys=irix4-0
647 ;;
546fa279 648 mips-sgi-irix6* )
1997da89 649 machine=iris4d opsys=irix6-0 NON_GNU_CPP=/lib/cpp
546fa279 650 ;;
4ab83697 651 mips-sgi-irix5.[01]* )
9ec10b2f
DM
652 machine=iris4d opsys=irix5-0
653 ;;
4ab83697
RS
654 mips-sgi-irix5* | mips-sgi-irix* )
655 machine=iris4d opsys=irix5-2
9ec10b2f
DM
656 ;;
657
658 ## SONY machines
659 m68*-sony-bsd4.2* )
660 machine=news opsys=bsd4-2
661 ;;
662 m68*-sony-bsd4.3* )
663 machine=news opsys=bsd4-3
664 ;;
3d102c59 665 m68*-sony-newsos3* | m68*-sony-news3*)
9ec10b2f
DM
666 machine=news opsys=bsd4-3
667 ;;
3d102c59 668 mips-sony-bsd* | mips-sony-newsos4* | mips-sony-news4*)
9ec10b2f
DM
669 machine=news-risc opsys=bsd4-3
670 ;;
3d102c59 671 mips-sony-news* )
9ec10b2f
DM
672 machine=news-risc opsys=newsos5
673 ;;
674
675 ## Stride
676 m68*-stride-sysv* )
677 machine=stride opsys=usg5-2
678 ;;
679
680 ## Suns
c42b1767
RS
681 *-sun-sunos* | *-sun-bsd* | *-sun-solaris* \
682 | i[345]86-*-solaris2* | i[345]86-*-sunos5* | powerpc*-*-solaris2* \
683 | rs6000-*-solaris2*)
9ec10b2f
DM
684 case "${canonical}" in
685 m68*-sunos1* ) machine=sun1 ;;
686 m68*-sunos2* ) machine=sun2 ;;
687 m68* ) machine=sun3 ;;
688 i[345]86-sun-sunos[34]* ) machine=sun386 ;;
689 i[345]86-*-* ) machine=intel386 ;;
c42b1767 690 powerpc* | rs6000* ) machine=rs6000 ;;
9ec10b2f
DM
691 sparc* ) machine=sparc ;;
692 * ) unported=yes ;;
693 esac
694 case "${canonical}" in
695 ## The Sun386 didn't get past 4.0.
696 i[345]86-*-sunos4 ) opsys=sunos4-0 ;;
697 *-sunos4.0* ) opsys=sunos4-0 ;;
5ab52d42 698 *-sunos4.1.[3-9]* | *-sunos4shr*)
b95c8e7e 699 opsys=sunos4shr
54bfe57b 700 NON_GNU_CPP=/usr/lib/cpp
9ec10b2f 701 ;;
3d68df05
KH
702 *-sunos4.1.[3-9]*-noshare )
703 opsys=sunos4-1-3
704 NON_GNU_CPP=/usr/lib/cpp
705 NON_GCC_TEST_OPTIONS=-Bstatic
706 GCC_TEST_OPTIONS=-static
707 ;;
708 *-sunos4* | *-sunos )
709 opsys=sunos4-1
9ec10b2f
DM
710 NON_GCC_TEST_OPTIONS=-Bstatic
711 GCC_TEST_OPTIONS=-static
712 ;;
713 *-sunos5.3* | *-solaris2.3* )
714 opsys=sol2-3
715 NON_GNU_CPP=/usr/ccs/lib/cpp
716 ;;
717 *-sunos5.4* | *-solaris2.4* )
718 opsys=sol2-4
719 NON_GNU_CPP=/usr/ccs/lib/cpp
30457b4f 720 RANLIB="ar -ts"
9ec10b2f 721 ;;
2e567bad
KH
722 *-sunos5.5* | *-solaris2.5* )
723 opsys=sol2-5
724 NON_GNU_CPP=/usr/ccs/lib/cpp
30457b4f 725 RANLIB="ar -ts"
2e567bad 726 ;;
9ec10b2f 727 *-sunos5* | *-solaris* )
3d68df05 728 opsys=sol2-4
9ec10b2f
DM
729 NON_GNU_CPP=/usr/ccs/lib/cpp
730 ;;
731 * ) opsys=bsd4-2 ;;
732 esac
6e502e37
RS
733 ## Watch out for a compiler that we know will not work.
734 case "${canonical}" in
735 *-solaris* | *-sunos5* )
736 if [ "x$CC" = x/usr/ucb/cc ]; then
737 ## /usr/ucb/cc doesn't work;
738 ## we should find some other compiler that does work.
739 unset CC
740 fi
741 ;;
742 *) ;;
743 esac
9ec10b2f 744 ;;
5ab52d42 745 sparc-*-nextstep* )
19e45036 746 machine=sparc opsys=nextstep
5ab52d42 747 ;;
9ec10b2f
DM
748
749 ## Tadpole 68k
750 m68*-tadpole-sysv* )
751 machine=tad68k opsys=usg5-3
752 ;;
753
754 ## Tahoe machines
755 tahoe-tahoe-bsd4.2* )
756 machine=tahoe opsys=bsd4-2
757 ;;
758 tahoe-tahoe-bsd4.3* )
759 machine=tahoe opsys=bsd4-3
760 ;;
761
762 ## Tandem Integrity S2
763 mips-tandem-sysv* )
764 machine=tandem-s2 opsys=usg5-3
765 ;;
766
767 ## Tektronix XD88
768 m88k-tektronix-sysv3* )
769 machine=tekxd88 opsys=usg5-3
770 ;;
771
772 ## Tektronix 16000 box (6130?)
773 ns16k-tektronix-bsd* )
774 machine=ns16000 opsys=bsd4-2
775 ;;
776 ## Tektronix 4300
777 ## src/m/tek4300.h hints that this is a m68k machine.
778 m68*-tektronix-bsd* )
779 machine=tek4300 opsys=bsd4-3
780 ;;
781
782 ## Titan P2 or P3
783 ## We seem to have lost the machine-description file titan.h!
784 titan-titan-sysv* )
785 machine=titan opsys=usg5-3
786 ;;
c7f493fd 787
9ec10b2f
DM
788 ## Ustation E30 (SS5E)
789 m68*-unisys-uniplus* )
790 machine=ustation opsystem=unipl5-2
791 ;;
792
793 ## Vaxen.
794 vax-dec-* )
795 machine=vax
796 case "${canonical}" in
797 *-bsd4.1* ) opsys=bsd4-1 ;;
798 *-bsd4.2* | *-ultrix[0-3].* | *-ultrix4.0* ) opsys=bsd4-2 ;;
799 *-bsd4.3* | *-ultrix* ) opsys=bsd4-3 ;;
9ec10b2f
DM
800 *-sysv[01]* | *-sysvr[01]* ) opsys=usg5-0 ;;
801 *-sysv2* | *-sysvr2* ) opsys=usg5-2 ;;
802 *-vms* ) opsys=vms ;;
803 * ) unported=yes
804 esac
805 ;;
806
807 ## Whitechapel MG1
808 ns16k-whitechapel-* )
809 machine=mg1
810 ## We don't know what sort of OS runs on these; we'll let the
811 ## operating system guessing code below try.
812 ;;
813
814 ## Wicat
815 m68*-wicat-sysv* )
816 machine=wicat opsys=usg5-2
817 ;;
818
819 ## Intel 386 machines where we don't care about the manufacturer
820 i[345]86-*-* )
821 machine=intel386
822 case "${canonical}" in
823 *-isc1.* | *-isc2.[01]* ) opsys=386-ix ;;
824 *-isc2.2* ) opsys=isc2-2 ;;
825 *-isc4.0* ) opsys=isc4-0 ;;
135c9ca6
RS
826 *-isc4.* ) opsys=isc4-1
827 GCC_TEST_OPTIONS=-posix
828 NON_GCC_TEST_OPTIONS=-Xp
829 ;;
9ec10b2f
DM
830 *-isc* ) opsys=isc3-0 ;;
831 *-esix5* ) opsys=esix5r4; NON_GNU_CPP=/usr/lib/cpp ;;
832 *-esix* ) opsys=esix ;;
833 *-xenix* ) opsys=xenix ;;
0b9da8a9 834 *-linux* | *-lignux* ) opsys=lignux ;;
9ec10b2f 835 *-sco3.2v4* ) opsys=sco4 ; NON_GNU_CPP=/lib/cpp ;;
5be039b9
RS
836 *-bsd386* | *-bsdi1* ) opsys=bsd386 ;;
837 *-bsdi2* ) opsys=bsdos2 ;;
9ec10b2f
DM
838 *-386bsd* ) opsys=386bsd ;;
839 *-freebsd* ) opsys=freebsd ;;
5ab52d42 840 *-nextstep* ) opsys=nextstep ;;
9ec10b2f
DM
841 ## Otherwise, we'll fall through to the generic opsys code at the bottom.
842 esac
843 ;;
844
0b9da8a9
RS
845 ## Lignux/68k
846 m68k-*-linux* | m68k-*-lignux* )
847 machine=m68k opsys=lignux
e1fd57e3
RS
848 ;;
849
9ec10b2f
DM
850 * )
851 unported=yes
852 ;;
853esac
854
855### If the code above didn't choose an operating system, just choose
856### an operating system based on the configuration name. You really
857### only want to use this when you have no idea what the right
858### operating system is; if you know what operating systems a machine
859### runs, it's cleaner to make it explicit in the case statement
860### above.
861if test x"${opsys}" = x; then
862 case "${canonical}" in
863 *-gnu* ) opsys=gnu ;;
864 *-bsd4.[01] ) opsys=bsd4-1 ;;
865 *-bsd4.2 ) opsys=bsd4-2 ;;
866 *-bsd4.3 ) opsys=bsd4-3 ;;
867 *-sysv0 | *-sysvr0 ) opsys=usg5-0 ;;
868 *-sysv2 | *-sysvr2 ) opsys=usg5-2 ;;
869 *-sysv2.2 | *-sysvr2.2 ) opsys=usg5-2-2 ;;
5ab52d42
RS
870 *-sysv3* | *-sysvr3* ) opsys=usg5-3 ;;
871 *-sysv4.1* | *-sysvr4.1* )
9ec10b2f
DM
872 NON_GNU_CPP=/usr/lib/cpp
873 opsys=usg5-4 ;;
5ab52d42 874 *-sysv4.[2-9]* | *-sysvr4.[2-9]* )
b63df577 875 if [ x$NON_GNU_CPP = x ]; then
16831d8c
RS
876 if [ -f /usr/ccs/lib/cpp ]; then
877 NON_GNU_CPP=/usr/ccs/lib/cpp
878 else
879 NON_GNU_CPP=/lib/cpp
880 fi
b63df577
RS
881 fi
882 opsys=usg5-4-2 ;;
5ab52d42 883 *-sysv4* | *-sysvr4* ) opsys=usg5-4 ;;
9ec10b2f
DM
884 * )
885 unported=yes
886 ;;
887 esac
888fi
889
30457b4f
RS
890if test "x$RANLIB" = x; then
891 RANLIB=ranlib
892fi
893
9ec10b2f
DM
894changequote([, ])dnl
895
896if test $unported = yes; then
897 AC_MSG_ERROR([Emacs hasn't been ported to \`${canonical}' systems.
898Check \`etc/MACHINES' for recognized configuration names.])
899fi
900
901machfile="m/${machine}.h"
902opsysfile="s/${opsys}.h"
903
904
905#### Choose a compiler.
906test -n "$CC" && cc_specified=yes
907
5ab52d42
RS
908# Save the value of CFLAGS that the user specified.
909SPECIFIED_CFLAGS="$CFLAGS"
910
9ec10b2f
DM
911case ${with_gcc} in
912 "yes" ) CC="gcc" GCC=yes ;;
6e0dc84a 913 "no" ) : ${CC=cc} ;;
9ec10b2f
DM
914 * ) AC_PROG_CC
915esac
916
917# On Suns, sometimes $CPP names a directory.
918if test -n "$CPP" && test -d "$CPP"; then
919 CPP=
920fi
921
922#### Some systems specify a CPP to use unless we are using GCC.
923#### Now that we know whether we are using GCC, we can decide whether
924#### to use that one.
925if test "x$NON_GNU_CPP" != x && test x$GCC != xyes && test "x$CPP" = x
926then
927 CPP="$NON_GNU_CPP"
928fi
929
930#### Some systems specify a CC to use unless we are using GCC.
931#### Now that we know whether we are using GCC, we can decide whether
932#### to use that one.
933if test "x$NON_GNU_CC" != x && test x$GCC != xyes &&
934 test x$cc_specified != xyes
935then
936 CC="$NON_GNU_CC"
937fi
938
939if test x$GCC = xyes && test "x$GCC_TEST_OPTIONS" != x
940then
941 CC="$CC $GCC_TEST_OPTIONS"
c7f493fd 942fi
9ec10b2f
DM
943
944if test x$GCC = x && test "x$NON_GCC_TEST_OPTIONS" != x
945then
946 CC="$CC $NON_GCC_TEST_OPTIONS"
c7f493fd 947fi
9ec10b2f
DM
948
949#### Some other nice autoconf tests. If you add a test here which
950#### should make an entry in src/config.h, don't forget to add an
951#### #undef clause to src/config.h.in for autoconf to modify.
952
953dnl checks for programs
6e0dc84a 954AC_PROG_LN_S
9ec10b2f
DM
955AC_PROG_CPP
956AC_PROG_INSTALL
957AC_PROG_YACC
958
3cd69289
DM
959dnl checks for Unix variants
960AC_AIX
961
9ec10b2f 962dnl checks for header files
0b9da8a9 963AC_CHECK_HEADERS(sys/select.h sys/timeb.h sys/time.h unistd.h utime.h linux/version.h)
6e0dc84a
DM
964AC_HEADER_STDC
965AC_HEADER_TIME
966AC_DECL_SYS_SIGLIST
9ec10b2f 967
3cd69289
DM
968dnl Some systems have utime.h but don't declare the struct anyplace.
969AC_MSG_CHECKING(for struct utimbuf)
970AC_TRY_COMPILE([#ifdef TIME_WITH_SYS_TIME
971#include <sys/time.h>
972#include <time.h>
973#else
974#ifdef HAVE_SYS_TIME_H
975#include <sys/time.h>
976#else
977#include <time.h>
978#endif
979#endif
980#ifdef HAVE_UTIME_H
981#include <utime.h>
982#endif], [static struct utimbuf x; x.actime = x.modtime;],
983 [AC_MSG_RESULT(yes)
984 AC_DEFINE(HAVE_STRUCT_UTIMBUF)],
985 AC_MSG_RESULT(no))
986
9ec10b2f 987dnl checks for typedefs
6e0dc84a 988AC_TYPE_SIGNAL
9ec10b2f 989
3cd69289
DM
990AC_MSG_CHECKING(for struct timeval)
991AC_TRY_COMPILE([#ifdef TIME_WITH_SYS_TIME
992#include <sys/time.h>
993#include <time.h>
994#else
995#ifdef HAVE_SYS_TIME_H
996#include <sys/time.h>
997#else
998#include <time.h>
999#endif
1000#endif], [static struct timeval x; x.tv_sec = x.tv_usec;],
1001 [AC_MSG_RESULT(yes)
5ab52d42 1002 HAVE_TIMEVAL=yes
3cd69289 1003 AC_DEFINE(HAVE_TIMEVAL)],
2c6638cd
RS
1004 [AC_MSG_RESULT(no)
1005 HAVE_TIMEVAL=no])
3cd69289 1006
9ec10b2f
DM
1007dnl checks for structure members
1008AC_STRUCT_TM
6e0dc84a 1009AC_STRUCT_TIMEZONE
9ec10b2f
DM
1010
1011dnl checks for compiler characteristics
6e0dc84a 1012AC_C_CONST
9ec10b2f
DM
1013
1014dnl check for Make feature
6e0dc84a 1015AC_PROG_MAKE_SET
9ec10b2f
DM
1016
1017dnl checks for operating system services
6e0dc84a 1018AC_SYS_LONG_FILE_NAMES
9ec10b2f
DM
1019
1020#### Choose a window system.
9ec10b2f 1021
6e0dc84a 1022AC_PATH_X
530ce502
DM
1023if test "$no_x" = yes; then
1024 window_system=none
1025else
1026 window_system=x11
1027fi
9ec10b2f 1028
ea199426 1029if test "${x_libraries}" != NONE && test -n "${x_libraries}"; then
00ac3ffc
KH
1030 LD_SWITCH_X_SITE=-L`echo ${x_libraries} | sed -e "s/:/ -L/g"`
1031 LD_SWITCH_X_SITE_AUX=-R`echo ${x_libraries} | sed -e "s/:/ -R/g"`
ea199426
DM
1032fi
1033if test "${x_includes}" != NONE && test -n "${x_includes}"; then
cc6476f6 1034 C_SWITCH_X_SITE=-I`echo ${x_includes} | sed -e "s/:/ -I/g"`
ea199426 1035fi
9ec10b2f 1036
8dbeb353
DM
1037if test x"${x_includes}" = x; then
1038 bitmapdir=/usr/include/X11/bitmaps
3cd69289 1039else
908ff139 1040 # accumulate include directories that have X11 bitmap subdirectories
cc6476f6
KH
1041 bmd_acc="dummyval"
1042 for bmd in `echo ${x_includes} | sed -e "s/:/ /g"`; do
1043 if test -d "${bmd}/X11/bitmaps"; then
1044 bmd_acc="${bmd_acc}:${bmd}/X11/bitmaps"
1045 elif test -d "${bmd}/bitmaps"; then
1046 bmd_acc="${bmd_acc}:${bmd}/bitmaps"
1047 fi
1048 done
1049 if test ${bmd_acc} != "dummyval"; then
1050 bitmapdir=`echo ${bmd_acc} | sed -e "s/^dummyval://"`
1051 fi
3cd69289
DM
1052fi
1053
9ec10b2f
DM
1054case "${window_system}" in
1055 x11 )
1056 HAVE_X_WINDOWS=yes
1057 HAVE_X11=yes
1058 case "${with_x_toolkit}" in
c7f493fd
RM
1059 athena | lucid ) USE_X_TOOLKIT=LUCID ;;
1060 motif ) USE_X_TOOLKIT=MOTIF ;;
1061dnl open-look ) USE_X_TOOLKIT=OPEN_LOOK ;;
4be21f66
KH
1062 no ) USE_X_TOOLKIT=none ;;
1063dnl If user did not say whether to use a toolkit,
1064dnl make this decision later: use the toolkit if we have X11R5 or newer.
1065 * ) USE_X_TOOLKIT=maybe ;;
9ec10b2f
DM
1066 esac
1067 ;;
9ec10b2f
DM
1068 none )
1069 HAVE_X_WINDOWS=no
1070 HAVE_X11=no
1071 USE_X_TOOLKIT=none
1072 ;;
1073esac
9ec10b2f
DM
1074
1075### If we're using X11, we should use the X menu package.
08741ba9 1076HAVE_MENUS=no
9ec10b2f 1077case ${HAVE_X11} in
08741ba9 1078 yes ) HAVE_MENUS=yes ;;
9ec10b2f
DM
1079esac
1080
b95c8e7e
RS
1081if test "${opsys}" = "hpux9"; then
1082 case "${x_libraries}" in
1083 *X11R4* )
1084 opsysfile="s/hpux9-x11r4.h"
1085 ;;
1086 esac
1087fi
1088
1089if test "${opsys}" = "hpux9shr"; then
1090 case "${x_libraries}" in
1091 *X11R4* )
1092 opsysfile="s/hpux9shxr4.h"
1093 ;;
1094 esac
1095fi
1096
9ec10b2f
DM
1097#### Extract some information from the operating system and machine files.
1098
1099AC_CHECKING([the machine- and system-dependent files to find out
1100 - which libraries the lib-src programs will want, and
1101 - whether the GNU malloc routines are usable])
1102
1103### First figure out CFLAGS (which we use for running the compiler here)
1104### and REAL_CFLAGS (which we use for real compilation).
1105### The two are the same except on a few systems, where they are made
1106### different to work around various lossages. For example,
0b9da8a9 1107### GCC 2.5 on Lignux needs them to be different because it treats -g
9ec10b2f
DM
1108### as implying static linking.
1109
1110### If the CFLAGS env var is specified, we use that value
1111### instead of the default.
1112
1113### It's not important that this name contain the PID; you can't run
1114### two configures in the same directory and have anything work
1115### anyway.
1116tempcname="conftest.c"
1117
1118echo '
1119#include "'${srcdir}'/src/'${opsysfile}'"
1120#include "'${srcdir}'/src/'${machfile}'"
1121#ifndef LIBS_MACHINE
1122#define LIBS_MACHINE
1123#endif
1124#ifndef LIBS_SYSTEM
1125#define LIBS_SYSTEM
1126#endif
1127#ifndef C_SWITCH_SYSTEM
1128#define C_SWITCH_SYSTEM
1129#endif
1130#ifndef C_SWITCH_MACHINE
1131#define C_SWITCH_MACHINE
1132#endif
1133configure___ libsrc_libs=LIBS_MACHINE LIBS_SYSTEM
1134configure___ c_switch_system=C_SWITCH_SYSTEM
1135configure___ c_switch_machine=C_SWITCH_MACHINE
1136
1137#ifndef LIB_X11_LIB
1138#define LIB_X11_LIB -lX11
1139#endif
1140
1141#ifndef LIBX11_MACHINE
1142#define LIBX11_MACHINE
1143#endif
1144
1145#ifndef LIBX11_SYSTEM
1146#define LIBX11_SYSTEM
1147#endif
1148configure___ LIBX=LIB_X11_LIB LIBX11_MACHINE LIBX11_SYSTEM
1149
1150#ifdef UNEXEC
1151configure___ unexec=UNEXEC
1152#else
1153configure___ unexec=unexec.o
1154#endif
1155
1156#ifdef SYSTEM_MALLOC
1157configure___ system_malloc=yes
1158#else
1159configure___ system_malloc=no
1160#endif
1161
1162#ifndef C_DEBUG_SWITCH
1163#define C_DEBUG_SWITCH -g
1164#endif
1165
1166#ifndef C_OPTIMIZE_SWITCH
1167#define C_OPTIMIZE_SWITCH -O
1168#endif
1169
1170#ifdef THIS_IS_CONFIGURE
1171
1172/* Get the CFLAGS for tests in configure. */
1173#ifdef __GNUC__
4e90a7d5 1174configure___ CFLAGS=C_DEBUG_SWITCH C_OPTIMIZE_SWITCH '${SPECIFIED_CFLAGS}'
9ec10b2f 1175#else
4e90a7d5 1176configure___ CFLAGS=C_DEBUG_SWITCH '${SPECIFIED_CFLAGS}'
9ec10b2f
DM
1177#endif
1178
1179#else /* not THIS_IS_CONFIGURE */
1180
1181/* Get the CFLAGS for real compilation. */
1182#ifdef __GNUC__
4e90a7d5 1183configure___ REAL_CFLAGS=C_DEBUG_SWITCH C_OPTIMIZE_SWITCH '${SPECIFIED_CFLAGS}'
9ec10b2f 1184#else
4e90a7d5 1185configure___ REAL_CFLAGS=C_DEBUG_SWITCH '${SPECIFIED_CFLAGS}'
9ec10b2f
DM
1186#endif
1187
1188#endif /* not THIS_IS_CONFIGURE */
1189' > ${tempcname}
1190
1191# The value of CPP is a quoted variable reference, so we need to do this
1192# to get its actual value...
1193CPP=`eval "echo $CPP"`
1194changequote(, )dnl
1195eval `${CPP} -Isrc ${tempcname} \
1196 | sed -n -e 's/^configure___ \([^=]*=\)\(.*\)$/\1"\2"/p'`
5ab52d42 1197if test "x$SPECIFIED_CFLAGS" = x; then
9ec10b2f
DM
1198 eval `${CPP} -Isrc -DTHIS_IS_CONFIGURE ${tempcname} \
1199 | sed -n -e 's/^configure___ \([^=]*=\)\(.*\)$/\1"\2"/p'`
1200else
1201 REAL_CFLAGS="$CFLAGS"
1202fi
1203changequote([, ])dnl
1204rm ${tempcname}
1205
1206### Compute the unexec source name from the object name.
1207UNEXEC_SRC="`echo ${unexec} | sed 's/\.o/.c/'`"
1208
1209# Do the opsystem or machine files prohibit the use of the GNU malloc?
1210# Assume not, until told otherwise.
1211GNU_MALLOC=yes
1212if test "${system_malloc}" = "yes"; then
1213 GNU_MALLOC=no
1214 GNU_MALLOC_reason="
1215 (The GNU allocators don't work with this system configuration.)"
1216fi
1217
1218if test x"${REL_ALLOC}" = x; then
1219 REL_ALLOC=${GNU_MALLOC}
1220fi
1221
1222LISP_FLOAT_TYPE=yes
1223
1224
1225#### Add the libraries to LIBS and check for some functions.
1226
1227CPPFLAGS="$c_switch_system $c_switch_machine $CPPFLAGS"
52c76122 1228LIBS="$libsrc_libs $LIBS"
9ec10b2f
DM
1229
1230dnl If found, this defines HAVE_LIBDNET, which m/pmax.h checks,
1231dnl and also adds -ldnet to LIBS, which Autoconf uses for checks.
1232AC_CHECK_LIB(dnet, dnet_ntoa)
1233dnl This causes -lresolv to get used in subsequent tests,
1234dnl which causes failures on some systems such as HPUX 9.
1235dnl AC_CHECK_LIB(resolv, gethostbyname)
1236
1237dnl FIXME replace main with a function we actually want from this library.
1238AC_CHECK_LIB(Xbsd, main, LD_SWITCH_X_SITE="$LD_SWITCH_X_SITE -lXbsd")
1239
027dae63 1240AC_CHECK_LIB(pthreads, cma_open)
1d94ee28 1241
9ec10b2f
DM
1242AC_MSG_CHECKING(for XFree86)
1243if test -d /usr/X386/include; then
9ec10b2f 1244 HAVE_XFREE386=yes
6e0dc84a 1245 : ${C_SWITCH_X_SITE="-I/usr/X386/include"}
9ec10b2f 1246else
6e0dc84a 1247 HAVE_XFREE386=no
9ec10b2f 1248fi
6e0dc84a 1249AC_MSG_RESULT($HAVE_XFREE386)
9ec10b2f 1250
509fccc3
RS
1251# Change CFLAGS temporarily so that C_SWITCH_X_SITE gets used
1252# for the tests that follow. We set it back to REAL_CFLAGS later on.
9ec10b2f
DM
1253
1254if test "${HAVE_X11}" = "yes"; then
1255 DEFS="$C_SWITCH_X_SITE $DEFS"
96c20358
RS
1256 LDFLAGS="$LDFLAGS $LD_SWITCH_X_SITE"
1257 LIBS="$LIBX $LIBS"
9ec10b2f 1258 CFLAGS="$C_SWITCH_X_SITE $CFLAGS"
509fccc3 1259
617a496c
RS
1260 # On Solaris, arrange for LD_RUN_PATH to point to the X libraries for tests.
1261 # This is handled by LD_SWITCH_X_SITE_AUX during the real build,
1262 # but it's more convenient here to set LD_RUN_PATH
1263 # since this also works on hosts that don't understand LD_SWITCH_X_SITE_AUX.
1264 if test "${x_libraries}" != NONE && test -n "${x_libraries}"; then
1265 LD_RUN_PATH=$x_libraries${LD_RUN_PATH+:}$LD_RUN_PATH
1266 export LD_RUN_PATH
1267 fi
1268
0b9da8a9 1269 if test "${opsys}" = "lignux"; then
3bbe016c 1270 AC_MSG_CHECKING(whether X on GNU/Linux needs -b to link)
509fccc3
RS
1271 AC_TRY_LINK([],
1272 [XOpenDisplay ("foo");],
3bbe016c
KH
1273 [xlinux_first_failure=no],
1274 [xlinux_first_failure=yes])
1275 if test "${xlinux_first_failure}" = "yes"; then
509fccc3
RS
1276 OLD_LD_SWITCH_X_SITE="$LD_SWITCH_X_SITE"
1277 OLD_C_SWITCH_X_SITE="$C_SWITCH_X_SITE"
1278 OLD_CPPFLAGS="$CPPFLAGS"
1279 OLD_LIBS="$LIBS"
1280 LD_SWITCH_X_SITE="$LD_SWITCH_X_SITE -b i486-linuxaout"
1281 C_SWITCH_X_SITE="$C_SWITCH_X_SITE -b i486-linuxaout"
1282 CPPFLAGS="$CPPFLAGS -b i486-linuxaout"
1283 LIBS="$LIBS -b i486-linuxaout"
1284 AC_TRY_LINK([],
1285 [XOpenDisplay ("foo");],
3bbe016c
KH
1286 [xlinux_second_failure=no],
1287 [xlinux_second_failure=yes])
1288 if test "${xlinux_second_failure}" = "yes"; then
509fccc3
RS
1289 # If we get the same failure with -b, there is no use adding -b.
1290 # So take it out. This plays safe.
1291 LD_SWITCH_X_SITE="$OLD_LD_SWITCH_X_SITE"
1292 C_SWITCH_X_SITE="$OLD_C_SWITCH_X_SITE"
1293 CPPFLAGS="$OLD_CPPFLAGS"
1294 LIBS="$OLD_LIBS"
1295 AC_MSG_RESULT(no)
1296 else
1297 AC_MSG_RESULT(yes)
1298 fi
1299 else
1300 AC_MSG_RESULT(no)
1301 fi
1302 fi
1303
6e0dc84a 1304 AC_CHECK_FUNCS(XrmSetDatabase XScreenResourceString \
9ec10b2f
DM
1305XScreenNumberOfScreen XSetWMProtocols)
1306fi
1307
08741ba9 1308if test "${window_system}" = "x11"; then
4be21f66 1309 AC_MSG_CHECKING(X11 version 6)
08741ba9
RS
1310 AC_TRY_LINK([#include <X11/Xlib.h>],
1311[#if XlibSpecificationRelease < 6
1312fail;
1313#endif
fcc303f4 1314], [AC_MSG_RESULT(6 or newer)
08741ba9 1315 AC_DEFINE(HAVE_X11R6)],
fcc303f4 1316 [AC_MSG_RESULT(before 6)])
08741ba9
RS
1317fi
1318
4be21f66
KH
1319if test x"${USE_X_TOOLKIT}" = xmaybe; then
1320 AC_MSG_CHECKING(X11 version 5)
1321 AC_TRY_LINK([#include <X11/Xlib.h>],
1322[#if XlibSpecificationRelease < 5
1323fail;
1324#endif
fcc303f4 1325], [AC_MSG_RESULT(5 or newer; use toolkit by default)
4be21f66
KH
1326 USE_X_TOOLKIT=LUCID
1327 AC_DEFINE(HAVE_X11R5)],
fcc303f4 1328 [AC_MSG_RESULT(before 5; do not use toolkit by default)
4be21f66 1329 USE_X_TOOLKIT=none])
4be21f66
KH
1330fi
1331
1332X_TOOLKIT_TYPE=$USE_X_TOOLKIT
1333
9ec10b2f
DM
1334if test "${USE_X_TOOLKIT}" != "none"; then
1335 AC_MSG_CHECKING(X11 toolkit version)
6e0dc84a 1336 AC_TRY_LINK([#include <X11/Intrinsic.h>],
9ec10b2f
DM
1337[#if XtSpecificationRelease < 6
1338fail;
1339#endif
fcc303f4
RS
1340], [AC_MSG_RESULT(6 or newer)
1341 HAVE_X11XTR6=yes
9ec10b2f 1342 AC_DEFINE(HAVE_X11XTR6)],
fcc303f4
RS
1343 [AC_MSG_RESULT(before 6)
1344 HAVE_X11XTR6=no])
6aad10e4
RS
1345
1346dnl If using toolkit, check whether libXmu.a exists.
1347dnl tranle@intellicorp.com says libXmu.a can need XtMalloc in libXt.a to link.
1348 OLDLIBS="$LIBS"
fcc303f4
RS
1349 if test x$HAVE_X11XTR6 = xyes; then
1350 LIBS="-lXt -lSM -lICE $LIBS"
1351 else
1352 LIBS="-lXt $LIBS"
1353 fi
6aad10e4 1354 AC_CHECK_LIB(Xmu, XmuConvertStandardSelection)
6e502e37 1355 LIBS="$OLDLIBS"
9ec10b2f
DM
1356fi
1357
1358# If netdb.h doesn't declare h_errno, we must declare it by hand.
b212bc89 1359AC_MSG_CHECKING(whether netdb declares h_errno)
6e0dc84a 1360AC_TRY_LINK([#include <netdb.h>],
01345308
DM
1361 [return h_errno;],
1362 [AC_MSG_RESULT(yes)
1363 AC_DEFINE(HAVE_H_ERRNO)],
1364 [AC_MSG_RESULT(no)])
9ec10b2f 1365
6e0dc84a 1366AC_FUNC_ALLOCA
9ec10b2f 1367
f6e8adea 1368# fmod, logb, and frexp are found in -lm on most systems.
e468fb38 1369# On HPUX 9.01, -lm does not contain logb, so check for sqrt.
e6fd9047 1370AC_CHECK_LIB(m, sqrt)
e6fd9047 1371
6e0dc84a 1372AC_CHECK_FUNCS(gettimeofday gethostname dup2 rename closedir mkdir rmdir \
5a3cc65b 1373random lrand48 bcopy bcmp logb frexp fmod ftime res_init setsid \
16831d8c
RS
1374strerror fpathconf select mktime eaccess getpagesize tzset setlocale)
1375
1376# Check this now, so that we will NOT find the above functions in ncurses.
1377# That is because we have not set up to link ncurses in lib-src.
1378# It's better to believe a function is not available
1379# than to expect to find it in ncurses.
1380AC_CHECK_LIB(ncurses, tparm)
0c565a0a
RS
1381
1382AC_MSG_CHECKING(whether localtime caches TZ)
1383AC_CACHE_VAL(emacs_cv_localtime_cache,
fcc303f4 1384[if test x$ac_cv_func_tzset = xyes; then
0c565a0a
RS
1385AC_TRY_RUN([#include <time.h>
1386#if STDC_HEADERS
1387# include <stdlib.h>
1388#endif
22cc077c
RS
1389extern char **environ;
1390unset_TZ ()
1391{
1392 char **from, **to;
1393 for (to = from = environ; (*to = *from); from++)
1394 if (! (to[0][0] == 'T' && to[0][1] == 'Z' && to[0][2] == '='))
1395 to++;
1396}
0c565a0a
RS
1397main()
1398{
1399 time_t now = time ((time_t *) 0);
22cc077c 1400 int hour_GMT0, hour_unset;
0c565a0a
RS
1401 if (putenv ("TZ=GMT0") != 0)
1402 exit (1);
22cc077c
RS
1403 hour_GMT0 = localtime (&now)->tm_hour;
1404 unset_TZ ();
1405 hour_unset = localtime (&now)->tm_hour;
0c565a0a
RS
1406 if (putenv ("TZ=PST8") != 0)
1407 exit (1);
22cc077c
RS
1408 if (localtime (&now)->tm_hour == hour_GMT0)
1409 exit (1);
1410 unset_TZ ();
1411 if (localtime (&now)->tm_hour != hour_unset)
1412 exit (1);
1413 exit (0);
0c565a0a
RS
1414}], emacs_cv_localtime_cache=no, emacs_cv_localtime_cache=yes,
1415[# If we have tzset, assume the worst when cross-compiling.
1416emacs_cv_localtime_cache=yes])
1417else
1418 # If we lack tzset, report that localtime does not cache TZ,
1419 # since we can't invalidate the cache if we don't have tzset.
1420 emacs_cv_localtime_cache=no
1421fi])dnl
1422AC_MSG_RESULT($emacs_cv_localtime_cache)
1423if test $emacs_cv_localtime_cache = yes; then
1424 AC_DEFINE(LOCALTIME_CACHE)
1425fi
9ec10b2f 1426
3d68df05 1427if test "x$HAVE_TIMEVAL" = xyes; then
5ab52d42
RS
1428AC_MSG_CHECKING(whether gettimeofday can't accept two arguments)
1429AC_TRY_LINK([
1430#ifdef TIME_WITH_SYS_TIME
1431#include <sys/time.h>
1432#include <time.h>
1433#else
1434#ifdef HAVE_SYS_TIME_H
1435#include <sys/time.h>
1436#else
1437#include <time.h>
1438#endif
1439#endif
1440 ],
1441 [
1442 struct timeval time;
1443 struct timezone dummy;
1444 gettimeofday (&time, &dummy);
1445],
1446 [AC_MSG_RESULT(no)],
1447 [AC_MSG_RESULT(yes)
1448 AC_DEFINE(GETTIMEOFDAY_ONE_ARGUMENT)])
1449fi
1450
9ec10b2f 1451ok_so_far=yes
6e0dc84a 1452AC_CHECK_FUNC(socket, , ok_so_far=no)
9ec10b2f 1453if test $ok_so_far = yes; then
6e0dc84a 1454 AC_CHECK_HEADER(netinet/in.h, , ok_so_far=no)
9ec10b2f
DM
1455fi
1456if test $ok_so_far = yes; then
6e0dc84a 1457 AC_CHECK_HEADER(arpa/inet.h, , ok_so_far=no)
9ec10b2f
DM
1458fi
1459if test $ok_so_far = yes; then
1460 AC_DEFINE(HAVE_INET_SOCKETS)
1461fi
1462
7bbbba31
DM
1463if test -f /usr/lpp/X11/bin/smt.exp; then
1464 AC_DEFINE(HAVE_AIX_SMT_EXP)
1465fi
1466
9ec10b2f
DM
1467# Set up the CFLAGS for real compilation, so we can substitute it.
1468CFLAGS="$REAL_CFLAGS"
1469
1470changequote(, )dnl
1471#### Find out which version of Emacs this is.
1472version=`grep 'defconst[ ]*emacs-version' ${srcdir}/lisp/version.el \
1473 | sed -e 's/^[^"]*"\([^"]*\)".*$/\1/'`
1474changequote([, ])dnl
1475if test x"${version}" = x; then
1476 AC_MSG_ERROR(can't find current emacs version in \`${srcdir}/lisp/version.el'.)
1477fi
1478
9ec10b2f
DM
1479### Specify what sort of things we'll be editing into Makefile and config.h.
1480### Use configuration here uncanonicalized to avoid exceeding size limits.
1481AC_SUBST(version)
1482AC_SUBST(configuration)
3cd69289 1483AC_SUBST(canonical)
9ec10b2f
DM
1484AC_SUBST(srcdir)
1485AC_SUBST(prefix)
1486AC_SUBST(exec_prefix)
1487AC_SUBST(bindir)
1488AC_SUBST(datadir)
3cd69289
DM
1489AC_SUBST(sharedstatedir)
1490AC_SUBST(libexecdir)
9ec10b2f
DM
1491AC_SUBST(mandir)
1492AC_SUBST(infodir)
1493AC_SUBST(lispdir)
1494AC_SUBST(locallisppath)
1495AC_SUBST(lisppath)
1496AC_SUBST(etcdir)
1497AC_SUBST(lockdir)
1498AC_SUBST(archlibdir)
1499AC_SUBST(docdir)
3cd69289 1500AC_SUBST(bitmapdir)
9ec10b2f
DM
1501AC_SUBST(c_switch_system)
1502AC_SUBST(c_switch_machine)
1503AC_SUBST(LD_SWITCH_X_SITE)
1504AC_SUBST(LD_SWITCH_X_SITE_AUX)
1505AC_SUBST(C_SWITCH_X_SITE)
1506AC_SUBST(CFLAGS)
1507AC_SUBST(X_TOOLKIT_TYPE)
1508AC_SUBST(machfile)
1509AC_SUBST(opsysfile)
30457b4f 1510AC_SUBST(RANLIB)
9ec10b2f 1511
3cd69289 1512AC_DEFINE_UNQUOTED(EMACS_CONFIGURATION, "${canonical}")
6d1da0d1 1513AC_DEFINE_UNQUOTED(EMACS_CONFIG_OPTIONS, "${ac_configure_args}")
9ec10b2f
DM
1514AC_DEFINE_UNQUOTED(config_machfile, "${machfile}")
1515AC_DEFINE_UNQUOTED(config_opsysfile, "${opsysfile}")
1516AC_DEFINE_UNQUOTED(LD_SWITCH_X_SITE, ${LD_SWITCH_X_SITE})
1517AC_DEFINE_UNQUOTED(LD_SWITCH_X_SITE_AUX, ${LD_SWITCH_X_SITE_AUX})
1518AC_DEFINE_UNQUOTED(C_SWITCH_X_SITE, ${C_SWITCH_X_SITE})
1519AC_DEFINE_UNQUOTED(UNEXEC_SRC, ${UNEXEC_SRC})
1520
1521if test "${HAVE_X_WINDOWS}" = "yes" ; then
1522 AC_DEFINE(HAVE_X_WINDOWS)
1523fi
1524if test "${USE_X_TOOLKIT}" != "none" ; then
1525 AC_DEFINE(USE_X_TOOLKIT)
1526fi
1527if test "${HAVE_X11}" = "yes" ; then
1528 AC_DEFINE(HAVE_X11)
1529fi
1530if test "${HAVE_XFREE386}" = "yes" ; then
1531 AC_DEFINE(HAVE_XFREE386)
1532fi
08741ba9
RS
1533if test "${HAVE_MENUS}" = "yes" ; then
1534 AC_DEFINE(HAVE_MENUS)
9ec10b2f
DM
1535fi
1536if test "${GNU_MALLOC}" = "yes" ; then
1537 AC_DEFINE(GNU_MALLOC)
1538fi
1539if test "${REL_ALLOC}" = "yes" ; then
1540 AC_DEFINE(REL_ALLOC)
1541fi
1542if test "${LISP_FLOAT_TYPE}" = "yes" ; then
1543 AC_DEFINE(LISP_FLOAT_TYPE)
1544fi
1545
9ec10b2f
DM
1546#### Report on what we decided to do.
1547echo "
9ec10b2f
DM
1548Configured for \`${canonical}'.
1549
1550 Where should the build process find the source code? ${srcdir}
1551 What operating system and machine description files should Emacs use?
1552 \`${opsysfile}' and \`${machfile}'
1553 What compiler should emacs be built with? ${CC} ${CFLAGS}
1554 Should Emacs use the GNU version of malloc? ${GNU_MALLOC}${GNU_MALLOC_reason}
1555 Should Emacs use the relocating allocator for buffers? ${REL_ALLOC}
1556 What window system should Emacs use? ${window_system}
509fccc3
RS
1557 What toolkit should Emacs use? ${USE_X_TOOLKIT}"
1558
1559if test -n "${x_includes}"; then
1560echo " Where do we find X Windows header files? ${x_includes}"
1561else
1562echo " Where do we find X Windows header files? Standard dirs"
1563fi
1564if test -n "${x_libraries}"; then
1565echo " Where do we find X Windows libraries? ${x_libraries}"
1566else
1567echo " Where do we find X Windows libraries? Standard dirs"
1568fi
9ec10b2f 1569
509fccc3 1570echo
9ec10b2f
DM
1571
1572# Remove any trailing slashes in these variables.
1573changequote(, )dnl
1574test "${prefix}" != NONE &&
1575 prefix=`echo "${prefix}" | sed 's,\([^/]\)/*$,\1,'`
1576test "${exec_prefix}" != NONE &&
1577 exec_prefix=`echo "${exec_prefix}" | sed 's,\([^/]\)/*$,\1,'`
1578changequote([, ])dnl
1579
5f8c8f00
RS
1580AC_OUTPUT(Makefile lib-src/Makefile.c:lib-src/Makefile.in oldXMenu/Makefile \
1581 man/Makefile lwlib/Makefile src/Makefile.c:src/Makefile.in, [
7bbbba31 1582
b63df577 1583### Make the necessary directories, if they don't exist.
b3947967
DM
1584for dir in cpp etc ; do
1585 test -d ${dir} || mkdir ${dir}
9ec10b2f
DM
1586done
1587
5f8c8f00
RS
1588# Build src/Makefile from ${srcdir}/src/Makefile.c
1589# and lib-src/Makefile from ${srcdir}/lib-src/Makefile.c
1590# This must be done after src/config.h is built, since we rely on that file.
9ec10b2f 1591
2d73167a 1592changequote(, )dnl The horror, the horror.
9ec10b2f
DM
1593# Now get this: Some word that is part of the ${srcdir} directory name
1594# or the ${configuration} value might, just might, happen to be an
1595# identifier like `sun4' or `i386' or something, and be predefined by
1596# the C preprocessor to some helpful value like 1, or maybe the empty
1597# string. Needless to say consequent macro substitutions are less
1598# than conducive to the makefile finding the correct directory.
1599undefs="`echo $top_srcdir $configuration $canonical |
1600sed -e 's/[^a-zA-Z0-9_]/ /g' -e 's/^/ /' -e 's/ *$//' \
1601 -e 's/ */ -U/g' -e 's/-U[0-9][^ ]*//g' \
1602`"
2d73167a 1603changequote([, ])dnl
9ec10b2f
DM
1604
1605echo creating lib-src/Makefile
1606( cd lib-src
1607 rm -f junk.c junk1.c junk2.c
1608 sed -e '/start of cpp stuff/q' \
5f8c8f00 1609 < Makefile.c > junk1.c
9ec10b2f
DM
1610 sed -e '1,/start of cpp stuff/d'\
1611 -e 's@/\*\*/#\(.*\)$@/* \1 */@' \
5f8c8f00 1612 < Makefile.c > junk.c
9ec10b2f
DM
1613 $CPP $undefs -I. -I$top_srcdir/src $CPPFLAGS junk.c | \
1614 sed -e 's/^ / /' -e '/^#/d' -e '/^[ \f]*$/d' > junk2.c
1615 cat junk1.c junk2.c > Makefile.new
1616 rm -f junk.c junk1.c junk2.c
1617 chmod 444 Makefile.new
1618 mv -f Makefile.new Makefile
1619)
1620
1621echo creating src/Makefile
1622( cd src
1623 rm -f junk.c junk1.c junk2.c
1624 sed -e '/start of cpp stuff/q' \
5f8c8f00 1625 < Makefile.c > junk1.c
9ec10b2f
DM
1626 sed -e '1,/start of cpp stuff/d'\
1627 -e 's@/\*\*/#\(.*\)$@/* \1 */@' \
5f8c8f00 1628 < Makefile.c > junk.c
9ec10b2f
DM
1629 $CPP $undefs -I. -I$top_srcdir/src $CPPFLAGS junk.c | \
1630 sed -e 's/^ / /' -e '/^#/d' -e '/^[ \f]*$/d' > junk2.c
1631 cat junk1.c junk2.c > Makefile.new
1632 rm -f junk.c junk1.c junk2.c
1633 chmod 444 Makefile.new
1634 mv -f Makefile.new Makefile
1635)
8b66759a
DM
1636
1637if test ! -f src/.gdbinit && test -f $top_srcdir/src/.gdbinit; then
1638 echo creating src/.gdbinit
1639 echo source $top_srcdir/src/.gdbinit > src/.gdbinit
1640fi
1641
ea50c238 1642], [CPP="$CPP" CPPFLAGS="$CPPFLAGS"])