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