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