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