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