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