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