(Garbage Collection): Fix previous change.
[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
fb33ec52 6dnl Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2003
ad4ac636 7dnl Free Software Foundation, Inc.
552dfe31 8dnl
6e502e37 9dnl This file is part of GNU Emacs.
552dfe31 10dnl
6e502e37
RS
11dnl GNU Emacs is free software; you can redistribute it and/or modify
12dnl it under the terms of the GNU General Public License as published by
13dnl the Free Software Foundation; either version 2, or (at your option)
14dnl any later version.
552dfe31 15dnl
6e502e37
RS
16dnl GNU Emacs is distributed in the hope that it will be useful,
17dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
18dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19dnl GNU General Public License for more details.
20dnl
21dnl You should have received a copy of the GNU General Public License
1fb87c77
KH
22dnl along with GNU Emacs; see the file COPYING. If not, write to the
23dnl Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24dnl Boston, MA 02111-1307, USA.
6e502e37 25
17b3d9f6 26AC_PREREQ(2.54)dnl
9ec10b2f 27AC_INIT(src/lisp.h)
5f8c8f00 28AC_CONFIG_HEADER(src/config.h:src/config.in)
9ec10b2f 29
a4663fed
PJ
30dnl Support for --program-prefix, --program-suffix and
31dnl --program-transform-name options
32AC_ARG_PROGRAM
33
9ec10b2f 34lispdir='${datadir}/emacs/${version}/lisp'
4be21f66 35locallisppath='${datadir}/emacs/${version}/site-lisp:'\
684f4cb3 36'${datadir}/emacs/site-lisp:${datadir}/emacs/${version}/leim'
9ec10b2f
DM
37lisppath='${locallisppath}:${lispdir}'
38etcdir='${datadir}/emacs/${version}/etc'
60c3568d 39archlibdir='${libexecdir}/emacs/${version}/${configuration}'
9ec10b2f 40docdir='${datadir}/emacs/${version}/etc'
b914de74 41gamedir='${localstatedir}/games/emacs'
93c05c18
CW
42
43gameuser=games
9ec10b2f 44
39a7c455 45AC_ARG_WITH(gcc,
6fa064b6 46[ --without-gcc don't use GCC to compile Emacs if GCC is found])
4f734bde 47AC_ARG_WITH(pop,
6fa064b6
DL
48[ --without-pop don't support POP mail retrieval with movemail],
49[if test "$withval" = yes; then
50 AC_DEFINE(MAIL_USE_POP)
51else :
3d9fec71
DL
52fi],
53AC_DEFINE(MAIL_USE_POP))
5e7d772d 54AH_TEMPLATE(MAIL_USE_POP, [Define to support POP mail retrieval.])dnl
a21616bd
KR
55AC_ARG_WITH(kerberos,
56[ --with-kerberos support Kerberos-authenticated POP],
57[AC_DEFINE(KERBEROS)])
5e7d772d
AS
58AH_TEMPLATE(KERBEROS,
59 [Define to support Kerberos-authenticated POP mail retrieval.])dnl
a21616bd 60AC_ARG_WITH(kerberos5,
4d6e16b3 61[ --with-kerberos5 support Kerberos version 5 authenticated POP],
a21616bd
KR
62[if test "${with_kerberos5+set}" = set; then
63 if test "${with_kerberos+set}" != set; then
64 with_kerberos=yes
65 AC_DEFINE(KERBEROS)
66 fi
67fi
5e7d772d 68AC_DEFINE(KERBEROS5, 1, [Define to use Kerberos 5 instead of Kerberos 4.])])
4f734bde
DM
69AC_ARG_WITH(hesiod,
70[ --with-hesiod support Hesiod to get the POP server host],
5e7d772d 71[AC_DEFINE(HESIOD, 1, [Define to support using a Hesiod database to find the POP server.])])
3d9830e5
PJ
72
73AC_ARG_WITH(sound,
74[ --without-sound don't compile with sound support])
75
4f734bde
DM
76dnl This should be the last --with option, because --with-x is
77dnl added later on when we find the path of X, and it's best to
78dnl keep them together visually.
9ec10b2f 79AC_ARG_WITH(x-toolkit,
177c0ea7 80[ --with-x-toolkit=KIT use an X toolkit
488dd4c4 81 (KIT = yes/lucid/athena/motif/gtk/no)],
9ec10b2f
DM
82[ case "${withval}" in
83 y | ye | yes ) val=athena ;;
84 n | no ) val=no ;;
85 l | lu | luc | luci | lucid ) val=lucid ;;
84c5c823 86 a | at | ath | athe | athen | athena ) val=athena ;;
3cd69289 87 m | mo | mot | moti | motif ) val=motif ;;
488dd4c4 88 g | gt | gtk ) val=gtk ;;
2e71ec17 89dnl These don't currently work.
2e71ec17
DM
90dnl o | op | ope | open | open- | open-l | open-lo \
91dnl | open-loo | open-look ) val=open-look ;;
9ec10b2f 92 * )
91b5aa9a
DL
93dnl AC_MSG_ERROR([the `--with-x-toolkit' option is supposed to have a value
94dnl which is `yes', `no', `lucid', `athena', `motif' or `open-look'.])
95AC_MSG_ERROR([`--with-x-toolkit=$withval' is invalid\;
488dd4c4 96this option's value should be `yes', `no', `lucid', `athena', `motif' or `gtk'.
91b5aa9a 97Currently, `yes', `athena' and `lucid' are synonyms.])
9ec10b2f
DM
98 ;;
99 esac
100 with_x_toolkit=$val
101])
b412189c
GM
102AC_ARG_WITH(xpm,
103[ --with-xpm use -lXpm for displaying XPM images])
104AC_ARG_WITH(jpeg,
105[ --with-jpeg use -ljpeg for displaying JPEG images])
106AC_ARG_WITH(tiff,
495ccc04 107[ --with-tiff use -ltiff for displaying TIFF images])
b412189c
GM
108AC_ARG_WITH(gif,
109[ --with-gif use -lungif for displaying GIF images])
110AC_ARG_WITH(png,
111[ --with-png use -lpng for displaying PNG images])
488dd4c4
JD
112AC_ARG_WITH(gtk,
113[ --with-gtk use GTK (same as --with-x-toolkit=gtk)])
114AC_ARG_WITH(pkg-config-prog,
115[ --with-pkg-config-prog Path to pkg-config to use for finding GTK])
20c1822e 116AC_ARG_WITH(toolkit-scroll-bars,
4d6e16b3 117[ --without-toolkit-scroll-bars
1c7a4f72 118 don't use Motif or Xaw3d scroll bars])
c6f7dae8 119AC_ARG_WITH(xim,
1c7a4f72 120[ --without-xim don't use X11 XIM])
e0f712ba
AC
121AC_ARG_WITH(carbon,
122[ --without-carbon don't use Carbon GUI on Mac OS X])
52cd7d02
ST
123AC_ARG_ENABLE(carbon-app,
124[[ --enable-carbon-app[=DIR] [DIR=/Application]
125 specify install directory for Emacs.app on Mac OS X]],
126[ carbon_appdir_x=${enableval}])
9ec10b2f
DM
127
128#### Make srcdir absolute, if it isn't already. It's important to
36969de6 129#### avoid running the path through pwd unnecessarily, since pwd can
069df4bf
DM
130#### give you automounter prefixes, which can go away. We do all this
131#### so Emacs can find its files when run uninstalled.
36969de6
GM
132## Make sure CDPATH doesn't affect cd (in case PWD is relative).
133unset CDPATH
9ec10b2f
DM
134case "${srcdir}" in
135 /* ) ;;
136 . )
137 ## We may be able to use the $PWD environment variable to make this
138 ## absolute. But sometimes PWD is inaccurate.
b83e4a77
RS
139 ## Note: we used to use ${PWD} at the end instead of `pwd`,
140 ## but that tested only for a well-formed and valid PWD,
141 ## it did not object when PWD was well-formed and valid but just wrong.
142 if test ".${PWD}" != "." && test ".`(cd ${PWD} ; sh -c pwd)`" = ".`pwd`" ;
9ec10b2f
DM
143 then
144 srcdir="$PWD"
145 else
146 srcdir="`(cd ${srcdir}; pwd)`"
147 fi
148 ;;
149 * ) srcdir="`(cd ${srcdir}; pwd)`" ;;
150esac
151
152#### Check if the source directory already has a configured system in it.
153if test `pwd` != `(cd ${srcdir} && pwd)` \
154 && test -f "${srcdir}/src/config.h" ; then
91b5aa9a 155 AC_MSG_WARN([[The directory tree `${srcdir}' is being used
9ec10b2f
DM
156 as a build directory right now; it has been configured in its own
157 right. To configure in another directory as well, you MUST
158 use GNU make. If you do not have GNU make, then you must
91b5aa9a
DL
159 now do `make distclean' in ${srcdir},
160 and then run $0 again.]])
9ec10b2f 161
91b5aa9a 162[extrasub='/^VPATH[ ]*=/c\
9ec10b2f
DM
163vpath %.c $(srcdir)\
164vpath %.h $(srcdir)\
165vpath %.y $(srcdir)\
166vpath %.l $(srcdir)\
167vpath %.s $(srcdir)\
5ac83f86 168vpath %.in $(srcdir)\
91b5aa9a 169vpath %.texi $(srcdir)']
9ec10b2f
DM
170fi
171
172#### Given the configuration name, set machfile and opsysfile to the
173#### names of the m/*.h and s/*.h files we should use.
174
175### Canonicalize the configuration name.
176
177AC_CANONICAL_HOST
178canonical=$host
fcb04b6e 179configuration=${host_alias-$host}
9ec10b2f 180
91b5aa9a
DL
181dnl This used to use changequote, but, apart from `changequote is evil'
182dnl per the autoconf manual, we can speed up autoconf somewhat by quoting
183dnl the great gob of text. Thus it's not processed for possible expansion.
184dnl Just make sure the brackets remain balanced.
10aa5486
MR
185dnl
186dnl Since Emacs can't find matching pairs of quotes, boundaries are
187dnl indicated by comments.
188dnl quotation begins
91b5aa9a 189[
9ec10b2f
DM
190
191### If you add support for a new configuration, add code to this
192### switch statement to recognize your configuration name and select
193### the appropriate operating system and machine description files.
194
195### You would hope that you could choose an m/*.h file pretty much
196### based on the machine portion of the configuration name, and an s-
197### file based on the operating system portion. However, it turns out
198### that each m/*.h file is pretty manufacturer-specific - for
199### example, apollo.h, hp9000s300.h, mega68k, news.h, and tad68k are
200### all 68000 machines; mips.h, pmax.h, and news-risc are all MIPS
201### machines. So we basically have to have a special case for each
202### configuration name.
203###
204### As far as handling version numbers on operating systems is
205### concerned, make sure things will fail in a fixable way. If
206### /etc/MACHINES doesn't say anything about version numbers, be
207### prepared to handle anything reasonably. If version numbers
208### matter, be sure /etc/MACHINES says something about it.
209###
210### Eric Raymond says we should accept strings like "sysvr4" to mean
211### "System V Release 4"; he writes, "The old convention encouraged
212### confusion between `system' and `release' levels'."
213
214machine='' opsys='' unported=no
215case "${canonical}" in
216
ba45dae0
GM
217 ## FreeBSD ports
218 *-*-freebsd* )
219 opsys=freebsd
220 case "${canonical}" in
221 alpha*-*-freebsd*) machine=alpha ;;
222 i[3456]86-*-freebsd*) machine=intel386 ;;
223 esac
224 ;;
225
9ec10b2f
DM
226 ## NetBSD ports
227 *-*-netbsd* )
228 opsys=netbsd
da894f7d 229 if test -f /usr/lib/crti.o; then]
10aa5486 230dnl Leave quotation here temporarily
fdf83dbb 231 AC_DEFINE(HAVE_CRTIN)
da894f7d 232[ fi
fdf83dbb 233
9ec10b2f 234 case "${canonical}" in
98bbf2a1 235 alpha*-*-netbsd*) machine=alpha ;;
5ac83f86 236 i[3456]86-*-netbsd*) machine=intel386 ;;
9ec10b2f
DM
237 m68k-*-netbsd*)
238 # This is somewhat bogus.
239 machine=hp9000s300 ;;
ca568b47 240 powerpc-apple-netbsd*) machine=macppc ;;
9ec10b2f 241 mips-*-netbsd*) machine=pmax ;;
69d5a2fa 242 mipsel-*-netbsd*) machine=pmax ;;
1967c6ee 243 mipseb-*-netbsd*) machine=pmax ;;
9ec10b2f 244 ns32k-*-netbsd*) machine=ns32000 ;;
b52425f4 245 powerpc-*-netbsd*) machine=macppc ;;
1ecefa7a 246 sparc*-*-netbsd*) machine=sparc ;;
b336ddd3 247 vax-*-netbsd*) machine=vax ;;
69d5a2fa 248 arm-*-netbsd*) machine=arm ;;
9ec10b2f
DM
249 esac
250 ;;
251
e3ac1b7f
RS
252 ## OpenBSD ports
253 *-*-openbsd* )
254 opsys=openbsd
255 case "${canonical}" in
98bbf2a1 256 alpha*-*-openbsd*) machine=alpha ;;
e3ac1b7f 257 i386-*-openbsd*) machine=intel386 ;;
6239880d
RS
258 m68k-*-openbsd*) machine=hp9000s300 ;;
259 mipsel-*-openbsd*) machine=pmax ;;
e3ac1b7f
RS
260 ns32k-*-openbsd*) machine=ns32000 ;;
261 sparc-*-openbsd*) machine=sparc ;;
ca568b47 262 vax-*-openbsd*) machine=vax ;;
e3ac1b7f
RS
263 esac
264 ;;
265
3cd69289
DM
266 ## Acorn RISCiX:
267 arm-acorn-riscix1.1* )
268 machine=acorn opsys=riscix1-1
269 ;;
270 arm-acorn-riscix1.2* | arm-acorn-riscix )
aac2257c
RS
271 ## This name is riscix12 instead of riscix1.2
272 ## to avoid a file name conflict on MSDOS.
273 machine=acorn opsys=riscix12
3cd69289
DM
274 ;;
275
2c4f7ce7
RS
276 ## BSDI ports
277 *-*-bsdi* )
278 opsys=bsdi
279 case "${canonical}" in
280 i[345]86-*-bsdi*) machine=intel386 ;;
281 sparc-*-bsdi*) machine=sparc ;;
393032d2 282 powerpc-*-bsdi*) machine=macppc ;;
2c4f7ce7
RS
283 esac
284 case "${canonical}" in
285 *-*-bsd386* | *-*-bsdi1* ) opsys=bsd386 ;;
286 *-*-bsdi2.0* ) opsys=bsdos2 ;;
287 *-*-bsdi2* ) opsys=bsdos2-1 ;;
288 *-*-bsdi3* ) opsys=bsdos3 ;;
1d06fc82 289 *-*-bsdi[45]* ) opsys=bsdos4 ;;
2c4f7ce7
RS
290 esac
291 ;;
292
9ec10b2f
DM
293 ## Alliant machines
294 ## Strictly speaking, we need the version of the alliant operating
295 ## system to choose the right machine file, but currently the
296 ## configuration name doesn't tell us enough to choose the right
297 ## one; we need to give alliants their own operating system name to
298 ## do this right. When someone cares, they can help us.
299 fx80-alliant-* )
300 machine=alliant4 opsys=bsd4-2
301 ;;
302 i860-alliant-* )
303 machine=alliant-2800 opsys=bsd4-3
304 ;;
305
30457b4f 306 ## Alpha (DEC) machines.
98bbf2a1 307 alpha*-dec-osf* )
3cd69289 308 machine=alpha opsys=osf1
f528522b 309 # This is needed to find X11R6.1 libraries for certain tests.
1bc5a004
RS
310 NON_GCC_LINK_TEST_OPTIONS=-Wl,-rpath,/usr/X11R6/lib
311 GCC_LINK_TEST_OPTIONS=-Wl,-rpath,/usr/X11R6/lib
557dcfd7
DL
312 # NON_GNU_CPP is necessary on 5.0 to avoid mangling src/Makefile
313 # due to non-traditional preprocessing with the current compiler
314 # defaults. OSF 4 can also have that compiler version, and there
315 # seems always to have been a usable /usr/bin/cpp.
316 NON_GNU_CPP=/usr/bin/cpp
71c72a72 317 case "${canonical}" in
d5c898bb 318 alpha*-dec-osf[5-9]*)
f8340326 319 opsys=osf5-0 ;;
e57196a0 320 esac
3cd69289
DM
321 ;;
322
98bbf2a1 323 alpha*-*-linux-gnu* )
5ac83f86 324 machine=alpha opsys=gnu-linux
4e90a7d5
RS
325 ;;
326
d506e713
GM
327 arm*-*-linux-gnu* )
328 machine=arm opsys=gnu-linux
329 ;;
330
331 ppc-*-linux | \
332 powerpc-*-linux* )
393032d2 333 machine=macppc opsys=gnu-linux
d506e713
GM
334 ;;
335
9ec10b2f
DM
336 ## Altos 3068
337 m68*-altos-sysv* )
338 machine=altos opsys=usg5-2
339 ;;
c7f493fd 340
9ec10b2f
DM
341 ## Amdahl UTS
342 580-amdahl-sysv* )
343 machine=amdahl opsys=usg5-2-2
344 ;;
345
acd04c87
RS
346 ## Apollo, Domain/OS
347 m68*-apollo-* )
348 machine=apollo opsys=bsd4-3
9ec10b2f
DM
349 ;;
350
351 ## AT&T 3b2, 3b5, 3b15, 3b20
352 we32k-att-sysv* )
353 machine=att3b opsys=usg5-2-2
354 ;;
355
356 ## AT&T 3b1 - The Mighty Unix PC!
357 m68*-att-sysv* )
358 machine=7300 opsys=usg5-2-2
359 ;;
360
361 ## Bull dpx20
362 rs6000-bull-bosx* )
363 machine=ibmrs6000 opsys=aix3-2
364 ;;
365
366 ## Bull dpx2
367 m68*-bull-sysv3* )
368 machine=dpx2 opsys=usg5-3
369 ;;
370
371 ## Bull sps7
372 m68*-bull-sysv2* )
373 machine=sps7 opsys=usg5-2
374 ;;
375
376 ## CCI 5/32, 6/32 -- see "Tahoe".
377
378 ## Celerity
379 ## I don't know what configuration name to use for this; config.sub
380 ## doesn't seem to know anything about it. Hey, Celerity users, get
381 ## in touch with us!
382 celerity-celerity-bsd* )
383 machine=celerity opsys=bsd4-2
384 ;;
385
386 ## Clipper
387 ## What operating systems does this chip run that Emacs has been
388 ## tested on?
389 clipper-* )
390 machine=clipper
391 ## We'll use the catch-all code at the bottom to guess the
392 ## operating system.
393 ;;
394
b83e4a77
RS
395 ## Compaq Nonstop
396 mips-compaq-nonstopux* )
397 machine=nonstopux opsys=nonstopux
398 ;;
399
9ec10b2f
DM
400 ## Convex
401 *-convex-bsd* | *-convex-convexos* )
402 machine=convex opsys=bsd4-3
908ff139 403 ## Prevents spurious white space in makefiles - d.m.cooke@larc.nasa.gov
9ec10b2f
DM
404 NON_GNU_CPP="cc -E -P"
405 ;;
406
407 ## Cubix QBx/386
5ac83f86 408 i[3456]86-cubix-sysv* )
9ec10b2f
DM
409 machine=intel386 opsys=usg5-3
410 ;;
411
412 ## Cydra 5
413 cydra*-cydrome-sysv* )
414 machine=cydra5 opsys=usg5-3
415 ;;
416
417 ## Data General AViiON Machines
651fc2d2
RS
418 ## DG changed naming conventions with the release of 5.4.4.10, they
419 ## dropped the initial 5.4 but left the intervening R. Because of the
420 ## R this shouldn't conflict with older versions of the OS (which I
f4afda69
KH
421 ## think were named like dgux4.*). In addition, DG new AViiONs series
422 ## uses either Motorola M88k or Intel Pentium CPUs.
9ae70ffe 423 m88k-dg-dguxR4.* | m88k-dg-dgux4* )
651fc2d2
RS
424 machine=aviion opsys=dgux4
425 ;;
9ec10b2f 426 m88k-dg-dgux5.4R3* | m88k-dg-dgux5.4.3* )
aac2257c
RS
427 ## This name is dgux5-4-3 instead of dgux5-4r3
428 ## to avoid a file name conflict on MSDOS.
429 machine=aviion opsys=dgux5-4-3
9ec10b2f
DM
430 ;;
431 m88k-dg-dgux5.4R2* | m88k-dg-dgux5.4.2* )
432 machine=aviion opsys=dgux5-4r2
433 ;;
434 m88k-dg-dgux* )
435 machine=aviion opsys=dgux
436 ;;
437
4e746fa8
KH
438 ## Data General AViiON Intel (x86) Machines
439 ## Exists from 5.4.3 (current i586-dg-dguxR4.11)
440 ## Ehud Karni, 1998-may-30, ehud@unix.simonwiesel.co.il
9ae70ffe 441 i[345]86-dg-dguxR4* )
4e746fa8
KH
442 machine=aviion-intel opsys=dgux4
443 ;;
444
9ec10b2f
DM
445 ## DECstations
446 mips-dec-ultrix[0-3].* | mips-dec-ultrix4.0* | mips-dec-bsd4.2* )
447 machine=pmax opsys=bsd4-2
448 ;;
3bbe016c 449 mips-dec-ultrix4.[12]* | mips-dec-bsd* )
9ec10b2f
DM
450 machine=pmax opsys=bsd4-3
451 ;;
3bbe016c
KH
452 mips-dec-ultrix* )
453 machine=pmax opsys=ultrix4-3
454 ;;
9ec10b2f
DM
455 mips-dec-osf* )
456 machine=pmax opsys=osf1
457 ;;
b95c8e7e
RS
458 mips-dec-mach_bsd4.3* )
459 machine=pmax opsys=mach-bsd4-3
460 ;;
9ec10b2f
DM
461
462 ## Motorola Delta machines
463 m68k-motorola-sysv* | m68000-motorola-sysv* )
464 machine=delta opsys=usg5-3
465 if test -z "`type gnucc | grep 'not found'`"
018427ee
RS
466 then
467 if test -s /etc/167config
468 then CC="gnucc -m68040"
469 else CC="gnucc -m68881"
c7f493fd 470 fi
9ec10b2f
DM
471 else
472 if test -z "`type gcc | grep 'not found'`"
473 then CC=gcc
474 else CC=cc
475 fi
476 fi
477 ;;
478 m88k-motorola-sysv4* )
63c1d3f2
RS
479 # jbotte@bnr.ca says that UNIX_System_V <hostName> 4.0 R40V4.3 m88k mc88110
480 # needs POSIX_SIGNALS and therefore needs usg5-4-2.
481 # I hope there are not other 4.0 versions for this machine
482 # which really need usg5-4 instead.
483 machine=delta88k opsys=usg5-4-2
9ec10b2f
DM
484 ;;
485 m88k-motorola-sysv* | m88k-motorola-m88kbcs* )
486 machine=delta88k opsys=usg5-3
487 ;;
488
489 ## Dual machines
490 m68*-dual-sysv* )
491 machine=dual opsys=usg5-2
492 ;;
493 m68*-dual-uniplus* )
494 machine=dual opsys=unipl5-2
495 ;;
496
497 ## Elxsi 6400
498 elxsi-elxsi-sysv* )
499 machine=elxsi opsys=usg5-2
500 ;;
501
502 ## Encore machines
503 ns16k-encore-bsd* )
504 machine=ns16000 opsys=umax
505 ;;
506
2ce723a5
DL
507 ## The GEC 63 - apparently, this port isn't really finished yet.
508 # I'm sure we finished off the last of the machines, though. -- fx
9ec10b2f
DM
509
510 ## Gould Power Node and NP1
511 pn-gould-bsd4.2* )
512 machine=gould opsys=bsd4-2
513 ;;
514 pn-gould-bsd4.3* )
515 machine=gould opsys=bsd4-3
516 ;;
517 np1-gould-bsd* )
518 machine=gould-np1 opsys=bsd4-3
519 ;;
520
521 ## Harris Night Hawk machines running CX/UX (a 5000 looks just like a 4000
522 ## as far as Emacs is concerned).
523 m88k-harris-cxux* )
524 # Build needs to be different on 7.0 and later releases
525 case "`uname -r`" in
526 [56].[0-9] ) machine=nh4000 opsys=cxux ;;
527 [7].[0-9] ) machine=nh4000 opsys=cxux7 ;;
528 esac
3d68df05 529 NON_GNU_CPP="/lib/cpp"
9ec10b2f
DM
530 ;;
531 ## Harris ecx or gcx running CX/UX (Series 1200, Series 3000)
532 m68k-harris-cxux* )
533 machine=nh3000 opsys=cxux
534 ;;
3d68df05
KH
535 ## Harris power pc NightHawk running Power UNIX (Series 6000)
536 powerpc-harris-powerunix )
537 machine=nh6000 opsys=powerunix
538 NON_GNU_CPP="cc -Xo -E -P"
539 ;;
0e5f305e
RS
540 ## SR2001/SR2201 running HI-UX/MPP
541 hppa1.1-hitachi-hiuxmpp* )
542 machine=sr2k opsys=hiuxmpp
543 ;;
2d0bcbcc
EZ
544 hppa1.1-hitachi-hiuxwe2* )
545 machine=sr2k opsys=hiuxwe2
546 ;;
9ec10b2f
DM
547 ## Honeywell XPS100
548 xps*-honeywell-sysv* )
549 machine=xps100 opsys=usg5-2
550 ;;
551
552 ## HP 9000 series 200 or 300
553 m68*-hp-bsd* )
554 machine=hp9000s300 opsys=bsd4-3
555 ;;
42c3a7f7 556 ## HP/UX 7, 8, 9, and 10 are supported on these machines.
9ec10b2f
DM
557 m68*-hp-hpux* )
558 case "`uname -r`" in
559 ## Someone's system reports A.B8.05 for this.
560 ## I wonder what other possibilities there are.
561 *.B8.* ) machine=hp9000s300 opsys=hpux8 ;;
562 *.08.* ) machine=hp9000s300 opsys=hpux8 ;;
563 *.09.* ) machine=hp9000s300 opsys=hpux9 ;;
88a806e9 564 *.1[0-9].* ) machine=hp9000s300 opsys=hpux9shr ;;
9ec10b2f
DM
565 *) machine=hp9000s300 opsys=hpux ;;
566 esac
567 ;;
568
569 ## HP 9000 series 700 and 800, running HP/UX
570 hppa*-hp-hpux7* )
571 machine=hp800 opsys=hpux
572 ;;
573 hppa*-hp-hpux8* )
574 machine=hp800 opsys=hpux8
575 ;;
576 hppa*-hp-hpux9shr* )
577 machine=hp800 opsys=hpux9shr
578 ;;
579 hppa*-hp-hpux9* )
580 machine=hp800 opsys=hpux9
581 ;;
b023c8d3
JB
582 hppa*-hp-hpux10.2* )
583 machine=hp800 opsys=hpux10-20
584 ;;
4f4d6b17 585 hppa*-hp-hpux10* )
12760c02 586 machine=hp800 opsys=hpux10
42c3a7f7 587 ;;
4f4d6b17
EZ
588 hppa*-hp-hpux1[1-9]* )
589 machine=hp800 opsys=hpux11
590 ;;
9ec10b2f 591
6fa6525f
RS
592 hppa*-*-linux-gnu* )
593 machine=hp800 opsys=gnu-linux
594 ;;
595
9ec10b2f
DM
596 ## HP 9000 series 700 and 800, running HP/UX
597 hppa*-hp-hpux* )
598 ## Cross-compilation? Nah!
599 case "`uname -r`" in
600 ## Someone's system reports A.B8.05 for this.
601 ## I wonder what other possibilities there are.
602 *.B8.* ) machine=hp800 opsys=hpux8 ;;
603 *.08.* ) machine=hp800 opsys=hpux8 ;;
604 *.09.* ) machine=hp800 opsys=hpux9 ;;
842f8692 605 *) machine=hp800 opsys=hpux10 ;;
9ec10b2f
DM
606 esac
607 ;;
da945421 608 hppa*-*-nextstep* )
4be21f66
KH
609 machine=hp800 opsys=nextstep
610 ;;
9ec10b2f
DM
611
612 ## Orion machines
613 orion-orion-bsd* )
614 machine=orion opsys=bsd4-2
615 ;;
616 clipper-orion-bsd* )
617 machine=orion105 opsys=bsd4-2
618 ;;
619
620 ## IBM machines
5ac83f86 621 i[3456]86-ibm-aix1.1* )
9ec10b2f
DM
622 machine=ibmps2-aix opsys=usg5-2-2
623 ;;
5ac83f86 624 i[3456]86-ibm-aix1.[23]* | i[3456]86-ibm-aix* )
9ec10b2f
DM
625 machine=ibmps2-aix opsys=usg5-3
626 ;;
627 i370-ibm-aix*)
628 machine=ibm370aix opsys=usg5-3
629 ;;
4b121527 630 s390-*-linux-gnu* )
f4c2acb3
EZ
631 machine=ibms390 opsys=gnu-linux
632 ;;
046545ec 633 rs6000-ibm-aix3.1* | powerpc-ibm-aix3.1* )
9ec10b2f
DM
634 machine=ibmrs6000 opsys=aix3-1
635 ;;
046545ec 636 rs6000-ibm-aix3.2.5 | powerpc-ibm-aix3.2.5 )
9ec10b2f
DM
637 machine=ibmrs6000 opsys=aix3-2-5
638 ;;
b63df577
RS
639 rs6000-ibm-aix4.1* | powerpc-ibm-aix4.1* )
640 machine=ibmrs6000 opsys=aix4-1
641 ;;
a8958813
RS
642 rs6000-ibm-aix4.2* | powerpc-ibm-aix4.2* )
643 machine=ibmrs6000 opsys=aix4-2
644 ;;
54c4fabd 645 rs6000-ibm-aix5* | powerpc-ibm-aix5* )
1ef1ef96
EZ
646 machine=ibmrs6000 opsys=aix4-2
647 ;;
a8958813 648 rs6000-ibm-aix4.0* | powerpc-ibm-aix4.0* )
b63df577
RS
649 machine=ibmrs6000 opsys=aix4
650 ;;
a8958813
RS
651 rs6000-ibm-aix4* | powerpc-ibm-aix4* )
652 machine=ibmrs6000 opsys=aix4-1
653 ;;
046545ec 654 rs6000-ibm-aix* | powerpc-ibm-aix* )
9ec10b2f
DM
655 machine=ibmrs6000 opsys=aix3-2
656 ;;
657 romp-ibm-bsd4.3* )
658 machine=ibmrt opsys=bsd4-3
c7f493fd 659 ;;
9ec10b2f
DM
660 romp-ibm-bsd4.2* )
661 machine=ibmrt opsys=bsd4-2
662 ;;
663 romp-ibm-aos4.3* )
664 machine=ibmrt opsys=bsd4-3
c7f493fd 665 ;;
9ec10b2f
DM
666 romp-ibm-aos4.2* )
667 machine=ibmrt opsys=bsd4-2
668 ;;
669 romp-ibm-aos* )
670 machine=ibmrt opsys=bsd4-3
671 ;;
672 romp-ibm-bsd* )
673 machine=ibmrt opsys=bsd4-3
674 ;;
675 romp-ibm-aix* )
676 machine=ibmrt-aix opsys=usg5-2-2
677 ;;
678
679 ## Integrated Solutions `Optimum V'
680 m68*-isi-bsd4.2* )
681 machine=isi-ov opsys=bsd4-2
682 ;;
683 m68*-isi-bsd4.3* )
684 machine=isi-ov opsys=bsd4-3
685 ;;
686
687 ## Intel 386 machines where we do care about the manufacturer
5ac83f86 688 i[3456]86-intsys-sysv* )
9ec10b2f
DM
689 machine=is386 opsys=usg5-2-2
690 ;;
691
692 ## Prime EXL
5ac83f86 693 i[3456]86-prime-sysv* )
9ec10b2f
DM
694 machine=i386 opsys=usg5-3
695 ;;
696
3cd69289 697 ## Sequent Symmetry running Dynix
5ac83f86 698 i[3456]86-sequent-bsd* )
9ec10b2f
DM
699 machine=symmetry opsys=bsd4-3
700 ;;
701
86d6f6ee
RS
702 ## Sequent Symmetry running ptx 4, which is a modified SVR4.
703 i[3456]86-sequent-ptx4* | i[3456]86-sequent-sysv4* )
704 machine=sequent-ptx opsys=ptx4
0dcdc912 705 NON_GNU_CPP=/lib/cpp
86d6f6ee
RS
706 ;;
707
3cd69289
DM
708 ## Sequent Symmetry running DYNIX/ptx
709 ## Use the old cpp rather than the newer ANSI one.
5ac83f86 710 i[3456]86-sequent-ptx* )
3cd69289
DM
711 machine=sequent-ptx opsys=ptx
712 NON_GNU_CPP="/lib/cpp"
713 ;;
714
cd837fee
KH
715 ## ncr machine running svr4.3.
716 i[3456]86-ncr-sysv4.3 )
717 machine=ncr386 opsys=usg5-4-3
718 ;;
719
9ec10b2f
DM
720 ## Unspecified sysv on an ncr machine defaults to svr4.2.
721 ## (Plain usg5-4 doesn't turn on POSIX signals, which we need.)
5ac83f86 722 i[3456]86-ncr-sysv* )
b0f36760 723 machine=ncr386 opsys=usg5-4-2
9ec10b2f
DM
724 ;;
725
cbce363f
RS
726 ## Intel Paragon OSF/1
727 i860-intel-osf1* )
728 machine=paragon opsys=osf1 NON_GNU_CPP=/usr/mach/lib/cpp
729 ;;
730
9ec10b2f
DM
731 ## Intel 860
732 i860-*-sysv4* )
733 machine=i860 opsys=usg5-4
734 NON_GNU_CC="/bin/cc" # Ie, not the one in /usr/ucb/cc.
735 NON_GNU_CPP="/usr/ccs/lib/cpp" # cc -E tokenizes macro expansion.
736 ;;
737
3ad6e32b
GM
738 ## Macintosh PowerPC
739 powerpc*-*-linux-gnu* )
740 machine=macppc opsys=gnu-linux
741 ;;
742
9ec10b2f
DM
743 ## Masscomp machines
744 m68*-masscomp-rtu* )
745 machine=masscomp opsys=rtu
746 ;;
747
748 ## Megatest machines
749 m68*-megatest-bsd* )
750 machine=mega68 opsys=bsd4-2
751 ;;
752
753 ## Workstations sold by MIPS
754 ## This is not necessarily all workstations using the MIPS processor -
755 ## Irises are produced by SGI, and DECstations by DEC.
756
757 ## etc/MACHINES lists mips.h and mips4.h as possible machine files,
758 ## and usg5-2-2 and bsd4-3 as possible OS files. The only guidance
759 ## it gives for choosing between the alternatives seems to be "Use
760 ## -machine=mips4 for RISCOS version 4; use -opsystem=bsd4-3 with
761 ## the BSD world." I'll assume that these are instructions for
762 ## handling two odd situations, and that every other situation
763 ## should use mips.h and usg5-2-2, they being listed first.
764 mips-mips-usg* )
765 machine=mips4
766 ## Fall through to the general code at the bottom to decide on the OS.
767 ;;
768 mips-mips-riscos4* )
769 machine=mips4 opsys=bsd4-3
770 NON_GNU_CC="cc -systype bsd43"
771 NON_GNU_CPP="cc -systype bsd43 -E"
772 ;;
b95c8e7e
RS
773 mips-mips-riscos5* )
774 machine=mips4 opsys=riscos5
775 NON_GNU_CC="cc -systype bsd43"
776 NON_GNU_CPP="cc -systype bsd43 -E"
777 ;;
9ec10b2f
DM
778 mips-mips-bsd* )
779 machine=mips opsys=bsd4-3
780 ;;
781 mips-mips-* )
782 machine=mips opsys=usg5-2-2
783 ;;
784
785 ## NeXT
5ab52d42
RS
786 m68*-next-* | m68k-*-nextstep* )
787 machine=m68k opsys=nextstep
9ec10b2f
DM
788 ;;
789
790 ## The complete machine from National Semiconductor
791 ns32k-ns-genix* )
792 machine=ns32000 opsys=usg5-2
793 ;;
794
795 ## NCR machines
796 m68*-ncr-sysv2* | m68*-ncr-sysvr2* )
797 machine=tower32 opsys=usg5-2-2
798 ;;
799 m68*-ncr-sysv3* | m68*-ncr-sysvr3* )
800 machine=tower32v3 opsys=usg5-3
801 ;;
802
b4ea3111
KH
803 ## NEC EWS4800
804 mips-nec-sysv4*)
805 machine=ews4800 opsys=ux4800
806 ;;
807
9ec10b2f
DM
808 ## Nixdorf Targon 31
809 m68*-nixdorf-sysv* )
810 machine=targon31 opsys=usg5-2-2
811 ;;
812
813 ## Nu (TI or LMI)
814 m68*-nu-sysv* )
815 machine=nu opsys=usg5-2
816 ;;
817
818 ## Plexus
819 m68*-plexus-sysv* )
820 machine=plexus opsys=usg5-2
821 ;;
822
823 ## Pyramid machines
824 ## I don't really have any idea what sort of processor the Pyramid has,
825 ## so I'm assuming it is its own architecture.
826 pyramid-pyramid-bsd* )
827 machine=pyramid opsys=bsd4-2
828 ;;
829
830 ## Sequent Balance
831 ns32k-sequent-bsd4.2* )
832 machine=sequent opsys=bsd4-2
833 ;;
834 ns32k-sequent-bsd4.3* )
835 machine=sequent opsys=bsd4-3
836 ;;
837
838 ## Siemens Nixdorf
7cba3845 839 mips-siemens-sysv* | mips-sni-sysv*)
9ec10b2f
DM
840 machine=mips-siemens opsys=usg5-4
841 NON_GNU_CC=/usr/ccs/bin/cc
842 NON_GNU_CPP=/usr/ccs/lib/cpp
843 ;;
844
845 ## Silicon Graphics machines
846 ## Iris 2500 and Iris 2500 Turbo (aka the Iris 3030)
847 m68*-sgi-iris3.5* )
848 machine=irist opsys=iris3-5
849 ;;
850 m68*-sgi-iris3.6* | m68*-sgi-iris*)
851 machine=irist opsys=iris3-6
852 ;;
853 ## Iris 4D
854 mips-sgi-irix3* )
855 machine=iris4d opsys=irix3-3
856 ;;
4ab83697
RS
857 mips-sgi-irix4* )
858 machine=iris4d opsys=irix4-0
859 ;;
a187fb80
KH
860 mips-sgi-irix6.5 )
861 machine=iris4d opsys=irix6-5
91193697
DL
862 # Without defining _LANGUAGE_C, things get masked out in the headers
863 # so that, for instance, grepping for `free' in stdlib.h fails and
864 # AC_HEADER_STD_C fails. (MIPSPro 7.2.1.2m compilers, Irix 6.5.3m).
865 NON_GNU_CPP="/lib/cpp -D_LANGUAGE_C"
63c59d1e 866 NON_GCC_TEST_OPTIONS="-D_LANGUAGE_C"
a187fb80 867 ;;
546fa279 868 mips-sgi-irix6* )
309daad2 869 machine=iris4d opsys=irix6-0
d9b5c990 870 # It's not clear whether -D_LANGUAGE_C is necessary as it is for 6.5,
91193697
DL
871 # but presumably it does no harm.
872 NON_GNU_CPP="/lib/cpp -D_LANGUAGE_C"
63c59d1e 873 # -32 probably isn't necessary in later v.6s -- anyone know which?
309daad2 874 NON_GCC_TEST_OPTIONS=-32
546fa279 875 ;;
4ab83697 876 mips-sgi-irix5.[01]* )
9ec10b2f
DM
877 machine=iris4d opsys=irix5-0
878 ;;
4ab83697
RS
879 mips-sgi-irix5* | mips-sgi-irix* )
880 machine=iris4d opsys=irix5-2
9ec10b2f
DM
881 ;;
882
883 ## SONY machines
884 m68*-sony-bsd4.2* )
885 machine=news opsys=bsd4-2
886 ;;
887 m68*-sony-bsd4.3* )
888 machine=news opsys=bsd4-3
889 ;;
3d102c59 890 m68*-sony-newsos3* | m68*-sony-news3*)
9ec10b2f
DM
891 machine=news opsys=bsd4-3
892 ;;
3d102c59 893 mips-sony-bsd* | mips-sony-newsos4* | mips-sony-news4*)
9ec10b2f
DM
894 machine=news-risc opsys=bsd4-3
895 ;;
423ef6e8 896 mips-sony-newsos6* )
b48e4aeb 897 machine=news-r6 opsys=newsos6
423ef6e8 898 ;;
3d102c59 899 mips-sony-news* )
9ec10b2f
DM
900 machine=news-risc opsys=newsos5
901 ;;
902
903 ## Stride
904 m68*-stride-sysv* )
905 machine=stride opsys=usg5-2
906 ;;
907
908 ## Suns
b5b193a7 909 sparc-*-linux-gnu* | sparc64-*-linux-gnu* )
5ac83f86 910 machine=sparc opsys=gnu-linux
28d9bc0e
KH
911 ;;
912
f4027958 913 *-auspex-sunos* | *-sun-sunos* | *-sun-bsd* | *-sun-solaris* \
5ac83f86 914 | i[3456]86-*-solaris2* | i[3456]86-*-sunos5* | powerpc*-*-solaris2* \
c42b1767 915 | rs6000-*-solaris2*)
9ec10b2f
DM
916 case "${canonical}" in
917 m68*-sunos1* ) machine=sun1 ;;
918 m68*-sunos2* ) machine=sun2 ;;
919 m68* ) machine=sun3 ;;
5ac83f86
RS
920 i[3456]86-sun-sunos[34]* ) machine=sun386 ;;
921 i[3456]86-*-* ) machine=intel386 ;;
42326ef0 922 powerpcle* ) machine=powerpcle ;;
f7894e88 923 powerpc* | rs6000* ) machine=ibmrs6000 ;;
9ec10b2f
DM
924 sparc* ) machine=sparc ;;
925 * ) unported=yes ;;
926 esac
927 case "${canonical}" in
928 ## The Sun386 didn't get past 4.0.
5ac83f86 929 i[3456]86-*-sunos4 ) opsys=sunos4-0 ;;
9ec10b2f 930 *-sunos4.0* ) opsys=sunos4-0 ;;
0ff0179d 931 *-sunos4.1.[3-9]*noshare )
aac2257c
RS
932 ## This name is sunos413 instead of sunos4-1-3
933 ## to avoid a file name conflict on MSDOS.
934 opsys=sunos413
3d68df05
KH
935 NON_GNU_CPP=/usr/lib/cpp
936 NON_GCC_TEST_OPTIONS=-Bstatic
937 GCC_TEST_OPTIONS=-static
938 ;;
3e23af40
RS
939 *-sunos4.1.[3-9]* | *-sunos4shr*)
940 opsys=sunos4shr
941 NON_GNU_CPP=/usr/lib/cpp
942 ;;
3d68df05
KH
943 *-sunos4* | *-sunos )
944 opsys=sunos4-1
9ec10b2f
DM
945 NON_GCC_TEST_OPTIONS=-Bstatic
946 GCC_TEST_OPTIONS=-static
947 ;;
948 *-sunos5.3* | *-solaris2.3* )
949 opsys=sol2-3
950 NON_GNU_CPP=/usr/ccs/lib/cpp
951 ;;
952 *-sunos5.4* | *-solaris2.4* )
953 opsys=sol2-4
954 NON_GNU_CPP=/usr/ccs/lib/cpp
30457b4f 955 RANLIB="ar -ts"
9ec10b2f 956 ;;
2e567bad
KH
957 *-sunos5.5* | *-solaris2.5* )
958 opsys=sol2-5
959 NON_GNU_CPP=/usr/ccs/lib/cpp
30457b4f 960 RANLIB="ar -ts"
2e567bad 961 ;;
a28947f0
RS
962 *-sunos5.6* | *-solaris2.6* )
963 opsys=sol2-6
964 NON_GNU_CPP=/usr/ccs/lib/cpp
965 RANLIB="ar -ts"
966 ;;
9ec10b2f 967 *-sunos5* | *-solaris* )
f79b6dcc 968 opsys=sol2-6
9ec10b2f
DM
969 NON_GNU_CPP=/usr/ccs/lib/cpp
970 ;;
971 * ) opsys=bsd4-2 ;;
972 esac
6e502e37
RS
973 ## Watch out for a compiler that we know will not work.
974 case "${canonical}" in
975 *-solaris* | *-sunos5* )
976 if [ "x$CC" = x/usr/ucb/cc ]; then
977 ## /usr/ucb/cc doesn't work;
978 ## we should find some other compiler that does work.
979 unset CC
980 fi
981 ;;
982 *) ;;
983 esac
9ec10b2f 984 ;;
5ab52d42 985 sparc-*-nextstep* )
19e45036 986 machine=sparc opsys=nextstep
5ab52d42 987 ;;
9ec10b2f
DM
988
989 ## Tadpole 68k
990 m68*-tadpole-sysv* )
991 machine=tad68k opsys=usg5-3
992 ;;
993
994 ## Tahoe machines
995 tahoe-tahoe-bsd4.2* )
996 machine=tahoe opsys=bsd4-2
997 ;;
998 tahoe-tahoe-bsd4.3* )
999 machine=tahoe opsys=bsd4-3
1000 ;;
1001
1002 ## Tandem Integrity S2
1003 mips-tandem-sysv* )
1004 machine=tandem-s2 opsys=usg5-3
1005 ;;
1006
1007 ## Tektronix XD88
1008 m88k-tektronix-sysv3* )
1009 machine=tekxd88 opsys=usg5-3
1010 ;;
1011
1012 ## Tektronix 16000 box (6130?)
1013 ns16k-tektronix-bsd* )
1014 machine=ns16000 opsys=bsd4-2
1015 ;;
1016 ## Tektronix 4300
1017 ## src/m/tek4300.h hints that this is a m68k machine.
1018 m68*-tektronix-bsd* )
1019 machine=tek4300 opsys=bsd4-3
1020 ;;
1021
1022 ## Titan P2 or P3
1023 ## We seem to have lost the machine-description file titan.h!
1024 titan-titan-sysv* )
1025 machine=titan opsys=usg5-3
1026 ;;
c7f493fd 1027
9ec10b2f
DM
1028 ## Ustation E30 (SS5E)
1029 m68*-unisys-uniplus* )
1030 machine=ustation opsystem=unipl5-2
1031 ;;
1032
1033 ## Vaxen.
1034 vax-dec-* )
1035 machine=vax
1036 case "${canonical}" in
1037 *-bsd4.1* ) opsys=bsd4-1 ;;
1038 *-bsd4.2* | *-ultrix[0-3].* | *-ultrix4.0* ) opsys=bsd4-2 ;;
1039 *-bsd4.3* | *-ultrix* ) opsys=bsd4-3 ;;
9ec10b2f
DM
1040 *-sysv[01]* | *-sysvr[01]* ) opsys=usg5-0 ;;
1041 *-sysv2* | *-sysvr2* ) opsys=usg5-2 ;;
1042 *-vms* ) opsys=vms ;;
1043 * ) unported=yes
1044 esac
1045 ;;
1046
1047 ## Whitechapel MG1
1048 ns16k-whitechapel-* )
1049 machine=mg1
1050 ## We don't know what sort of OS runs on these; we'll let the
1051 ## operating system guessing code below try.
1052 ;;
1053
1054 ## Wicat
1055 m68*-wicat-sysv* )
1056 machine=wicat opsys=usg5-2
1057 ;;
1058
2d23c8cc
GM
1059 ## IA-64
1060 ia64*-*-linux* )
1061 machine=ia64 opsys=gnu-linux
1062 ;;
1063
9ec10b2f 1064 ## Intel 386 machines where we don't care about the manufacturer
5ac83f86 1065 i[3456]86-*-* )
9ec10b2f
DM
1066 machine=intel386
1067 case "${canonical}" in
c60ee5e7 1068 *-cygwin ) opsys=cygwin ;;
9f25f6fb 1069 *-lynxos* ) opsys=lynxos ;;
9ec10b2f
DM
1070 *-isc1.* | *-isc2.[01]* ) opsys=386-ix ;;
1071 *-isc2.2* ) opsys=isc2-2 ;;
1072 *-isc4.0* ) opsys=isc4-0 ;;
135c9ca6
RS
1073 *-isc4.* ) opsys=isc4-1
1074 GCC_TEST_OPTIONS=-posix
1075 NON_GCC_TEST_OPTIONS=-Xp
1076 ;;
9ec10b2f
DM
1077 *-isc* ) opsys=isc3-0 ;;
1078 *-esix5* ) opsys=esix5r4; NON_GNU_CPP=/usr/lib/cpp ;;
1079 *-esix* ) opsys=esix ;;
1080 *-xenix* ) opsys=xenix ;;
5ac83f86 1081 *-linux-gnu* ) opsys=gnu-linux ;;
9ec10b2f 1082 *-sco3.2v4* ) opsys=sco4 ; NON_GNU_CPP=/lib/cpp ;;
177c0ea7 1083 *-sco3.2v5* ) opsys=sco5
5ac83f86
RS
1084 NON_GNU_CPP=/lib/cpp
1085 # Prevent -belf from being passed to $CPP.
1086 # /lib/cpp does not accept it.
1e60bcf8 1087 OVERRIDE_CPPFLAGS=" "
5ac83f86 1088 ;;
0e6d70d5 1089 *-sysv4.2uw* ) opsys=unixware; NON_GNU_CPP=/lib/cpp ;;
167899c4
RS
1090 *-sysv5uw* ) opsys=unixware; NON_GNU_CPP=/lib/cpp ;;
1091 *-sysv5OpenUNIX* ) opsys=unixware; NON_GNU_CPP=/lib/cpp ;;
9ec10b2f 1092 *-386bsd* ) opsys=386bsd ;;
5ab52d42 1093 *-nextstep* ) opsys=nextstep ;;
9ec10b2f
DM
1094 ## Otherwise, we'll fall through to the generic opsys code at the bottom.
1095 esac
1096 ;;
1097
287f502c 1098 ## m68k Linux-based GNU system
5ac83f86
RS
1099 m68k-*-linux-gnu* )
1100 machine=m68k opsys=gnu-linux
e1fd57e3
RS
1101 ;;
1102
287f502c 1103 ## Mips Linux-based GNU system
71cc40d5 1104 mips-*-linux-gnu* | mipsel-*-linux-gnu* )
287f502c
RS
1105 machine=mips opsys=gnu-linux
1106 ;;
1107
eded5b68
RS
1108 ## UXP/DS
1109 sparc-fujitsu-sysv4* )
1110 machine=sparc opsys=uxpds
1111 NON_GNU_CPP=/usr/ccs/lib/cpp
1112 RANLIB="ar -ts"
1113 ;;
1114
5dbb45f2
KH
1115 ## UXP/V
1116 f301-fujitsu-uxpv4.1)
1117 machine=f301 opsys=uxpv
1118 ;;
1119
e0f712ba
AC
1120 ## Darwin / Mac OS X
1121 powerpc-apple-darwin* )
1122 machine=powermac opsys=darwin
1123 # Define CPP as follows to make autoconf work correctly.
1124 CPP="cc -E -traditional-cpp"
1125 ;;
1126
3fa4ac47
AS
1127 ## AMD x86-64 Linux-based GNU system
1128 x86_64-*-linux-gnu* )
177c0ea7 1129 machine=amdx86-64 opsys=gnu-linux
3fa4ac47
AS
1130 ;;
1131
9ec10b2f
DM
1132 * )
1133 unported=yes
1134 ;;
1135esac
1136
1137### If the code above didn't choose an operating system, just choose
1138### an operating system based on the configuration name. You really
1139### only want to use this when you have no idea what the right
1140### operating system is; if you know what operating systems a machine
1141### runs, it's cleaner to make it explicit in the case statement
1142### above.
1143if test x"${opsys}" = x; then
1144 case "${canonical}" in
1145 *-gnu* ) opsys=gnu ;;
1146 *-bsd4.[01] ) opsys=bsd4-1 ;;
1147 *-bsd4.2 ) opsys=bsd4-2 ;;
1148 *-bsd4.3 ) opsys=bsd4-3 ;;
1149 *-sysv0 | *-sysvr0 ) opsys=usg5-0 ;;
1150 *-sysv2 | *-sysvr2 ) opsys=usg5-2 ;;
1151 *-sysv2.2 | *-sysvr2.2 ) opsys=usg5-2-2 ;;
5ab52d42 1152 *-sysv3* | *-sysvr3* ) opsys=usg5-3 ;;
66a96cff 1153 *-sysv4.2uw* ) opsys=unixware ;;
167899c4
RS
1154 *-sysv5uw* ) opsys=unixware ;;
1155 *-sysv5OpenUNIX* ) opsys=unixware ;;
5ab52d42 1156 *-sysv4.1* | *-sysvr4.1* )
9ec10b2f
DM
1157 NON_GNU_CPP=/usr/lib/cpp
1158 opsys=usg5-4 ;;
5ab52d42 1159 *-sysv4.[2-9]* | *-sysvr4.[2-9]* )
b63df577 1160 if [ x$NON_GNU_CPP = x ]; then
16831d8c
RS
1161 if [ -f /usr/ccs/lib/cpp ]; then
1162 NON_GNU_CPP=/usr/ccs/lib/cpp
1163 else
1164 NON_GNU_CPP=/lib/cpp
1165 fi
b63df577
RS
1166 fi
1167 opsys=usg5-4-2 ;;
5ab52d42 1168 *-sysv4* | *-sysvr4* ) opsys=usg5-4 ;;
9ec10b2f
DM
1169 * )
1170 unported=yes
1171 ;;
1172 esac
1173fi
1174
91b5aa9a 1175]
10aa5486 1176dnl quotation ends
9ec10b2f
DM
1177
1178if test $unported = yes; then
91b5aa9a
DL
1179 AC_MSG_ERROR([Emacs hasn't been ported to `${canonical}' systems.
1180Check `etc/MACHINES' for recognized configuration names.])
9ec10b2f
DM
1181fi
1182
1183machfile="m/${machine}.h"
1184opsysfile="s/${opsys}.h"
1185
1186
1187#### Choose a compiler.
1188test -n "$CC" && cc_specified=yes
1189
5ab52d42
RS
1190# Save the value of CFLAGS that the user specified.
1191SPECIFIED_CFLAGS="$CFLAGS"
1192
9ec10b2f
DM
1193case ${with_gcc} in
1194 "yes" ) CC="gcc" GCC=yes ;;
6e0dc84a 1195 "no" ) : ${CC=cc} ;;
e9b2a022 1196 * )
9ec10b2f 1197esac
e9b2a022 1198AC_PROG_CC
9ec10b2f
DM
1199
1200# On Suns, sometimes $CPP names a directory.
1201if test -n "$CPP" && test -d "$CPP"; then
1202 CPP=
1203fi
1204
1205#### Some systems specify a CPP to use unless we are using GCC.
1206#### Now that we know whether we are using GCC, we can decide whether
1207#### to use that one.
1208if test "x$NON_GNU_CPP" != x && test x$GCC != xyes && test "x$CPP" = x
1209then
1210 CPP="$NON_GNU_CPP"
1211fi
1212
1213#### Some systems specify a CC to use unless we are using GCC.
1214#### Now that we know whether we are using GCC, we can decide whether
1215#### to use that one.
1216if test "x$NON_GNU_CC" != x && test x$GCC != xyes &&
1217 test x$cc_specified != xyes
1218then
1219 CC="$NON_GNU_CC"
1220fi
1221
1222if test x$GCC = xyes && test "x$GCC_TEST_OPTIONS" != x
1223then
1224 CC="$CC $GCC_TEST_OPTIONS"
c7f493fd 1225fi
9ec10b2f
DM
1226
1227if test x$GCC = x && test "x$NON_GCC_TEST_OPTIONS" != x
1228then
1229 CC="$CC $NON_GCC_TEST_OPTIONS"
c7f493fd 1230fi
9ec10b2f 1231
fb33ec52 1232#### Some other nice autoconf tests.
9ec10b2f
DM
1233
1234dnl checks for programs
6e0dc84a 1235AC_PROG_LN_S
9ec10b2f
DM
1236AC_PROG_CPP
1237AC_PROG_INSTALL
3f5b097c
DL
1238if test "x$RANLIB" = x; then
1239 AC_PROG_RANLIB
1240fi
d57c2211
DK
1241AC_PATH_PROG(INSTALL_INFO, install-info)
1242AC_PATH_PROG(INSTALL_INFO, install-info,, /usr/sbin)
1243AC_PATH_PROG(INSTALL_INFO, install-info,:, /sbin)
9ec10b2f 1244
6d621bab
RS
1245dnl Add our options to ac_link now, after it is set up.
1246
1247if test x$GCC = xyes && test "x$GCC_LINK_TEST_OPTIONS" != x
1248then
1249 ac_link="$ac_link $GCC_LINK_TEST_OPTIONS"
1250fi
1251
1252if test x$GCC = x && test "x$NON_GCC_LINK_TEST_OPTIONS" != x
1253then
1254 ac_link="$ac_link $NON_GCC_LINK_TEST_OPTIONS"
1255fi
1256
3cd69289
DM
1257dnl checks for Unix variants
1258AC_AIX
1259
4428e268
DL
1260#### Extract some information from the operating system and machine files.
1261
1262AC_CHECKING([the machine- and system-dependent files to find out
1263 - which libraries the lib-src programs will want, and
1264 - whether the GNU malloc routines are usable])
1265
1266### First figure out CFLAGS (which we use for running the compiler here)
1267### and REAL_CFLAGS (which we use for real compilation).
1268### The two are the same except on a few systems, where they are made
1269### different to work around various lossages. For example,
1270### GCC 2.5 on GNU/Linux needs them to be different because it treats -g
1271### as implying static linking.
1272
1273### If the CFLAGS env var is specified, we use that value
1274### instead of the default.
1275
1276### It's not important that this name contain the PID; you can't run
1277### two configures in the same directory and have anything work
1278### anyway.
1279tempcname="conftest.c"
1280
1281echo '
1282#include "'${srcdir}'/src/'${opsysfile}'"
1283#include "'${srcdir}'/src/'${machfile}'"
1284#ifndef LIBS_MACHINE
1285#define LIBS_MACHINE
1286#endif
1287#ifndef LIBS_SYSTEM
1288#define LIBS_SYSTEM
1289#endif
1290#ifndef C_SWITCH_SYSTEM
1291#define C_SWITCH_SYSTEM
1292#endif
1293#ifndef C_SWITCH_MACHINE
1294#define C_SWITCH_MACHINE
1295#endif
1296configure___ libsrc_libs=LIBS_MACHINE LIBS_SYSTEM
1297configure___ c_switch_system=C_SWITCH_SYSTEM
1298configure___ c_switch_machine=C_SWITCH_MACHINE
1299
1300#ifndef LIB_X11_LIB
1301#define LIB_X11_LIB -lX11
1302#endif
1303
1304#ifndef LIBX11_MACHINE
1305#define LIBX11_MACHINE
1306#endif
1307
1308#ifndef LIBX11_SYSTEM
1309#define LIBX11_SYSTEM
1310#endif
1311configure___ LIBX=LIB_X11_LIB LIBX11_MACHINE LIBX11_SYSTEM
1312
1313#ifdef UNEXEC
1314configure___ unexec=UNEXEC
1315#else
1316configure___ unexec=unexec.o
1317#endif
1318
1319#ifdef SYSTEM_MALLOC
1320configure___ system_malloc=yes
1321#else
1322configure___ system_malloc=no
1323#endif
1324
e32fac2a
GM
1325#ifdef USE_MMAP_FOR_BUFFERS
1326configure___ use_mmap_for_buffers=yes
b1b4ce06 1327#else
e32fac2a 1328configure___ use_mmap_for_buffers=no
b1b4ce06
GM
1329#endif
1330
4428e268
DL
1331#ifndef C_DEBUG_SWITCH
1332#define C_DEBUG_SWITCH -g
1333#endif
1334
1335#ifndef C_OPTIMIZE_SWITCH
1336#ifdef __GNUC__
1337#define C_OPTIMIZE_SWITCH -O2
1338#else
1339#define C_OPTIMIZE_SWITCH -O
1340#endif
1341#endif
1342
1343#ifndef LD_SWITCH_MACHINE
1344#define LD_SWITCH_MACHINE
1345#endif
1346
1347#ifndef LD_SWITCH_SYSTEM
1348#define LD_SWITCH_SYSTEM
1349#endif
1350
1351#ifndef LD_SWITCH_X_SITE_AUX
1352#define LD_SWITCH_X_SITE_AUX
177c0ea7 1353#endif
4428e268
DL
1354
1355configure___ ld_switch_system=LD_SWITCH_SYSTEM
1356configure___ ld_switch_machine=LD_SWITCH_MACHINE
1357
1358#ifdef THIS_IS_CONFIGURE
1359
1360/* Get the CFLAGS for tests in configure. */
1361#ifdef __GNUC__
1362configure___ CFLAGS=C_DEBUG_SWITCH C_OPTIMIZE_SWITCH '${SPECIFIED_CFLAGS}'
1363#else
1364configure___ CFLAGS=C_DEBUG_SWITCH '${SPECIFIED_CFLAGS}'
1365#endif
1366
1367#else /* not THIS_IS_CONFIGURE */
1368
1369/* Get the CFLAGS for real compilation. */
1370#ifdef __GNUC__
1371configure___ REAL_CFLAGS=C_DEBUG_SWITCH C_OPTIMIZE_SWITCH '${SPECIFIED_CFLAGS}'
1372#else
1373configure___ REAL_CFLAGS=C_DEBUG_SWITCH '${SPECIFIED_CFLAGS}'
1374#endif
1375
1376#endif /* not THIS_IS_CONFIGURE */
1377' > ${tempcname}
1378
1379# The value of CPP is a quoted variable reference, so we need to do this
1380# to get its actual value...
1381CPP=`eval "echo $CPP"`
91b5aa9a 1382[eval `${CPP} -Isrc ${tempcname} \
4428e268
DL
1383 | sed -n -e 's/^configure___ \([^=]*=\)\(.*\)$/\1"\2"/p'`
1384if test "x$SPECIFIED_CFLAGS" = x; then
1385 eval `${CPP} -Isrc -DTHIS_IS_CONFIGURE ${tempcname} \
1386 | sed -n -e 's/^configure___ \([^=]*=\)\(.*\)$/\1"\2"/p'`
1387else
1388 REAL_CFLAGS="$CFLAGS"
91b5aa9a 1389fi]
4428e268
DL
1390rm ${tempcname}
1391
1392ac_link="$ac_link $ld_switch_machine $ld_switch_system"
1393
1394### Make sure subsequent tests use flags consistent with the build flags.
1395
1396if test x"${OVERRIDE_CPPFLAGS}" != x; then
1397 CPPFLAGS="${OVERRIDE_CPPFLAGS}"
1398else
1399 CPPFLAGS="$c_switch_system $c_switch_machine $CPPFLAGS"
1400fi
1401
17b3d9f6
DL
1402dnl For AC_FUNC_GETLOADAVG, at least:
1403AC_CONFIG_LIBOBJ_DIR(src)
1404
0d6f3768
DL
1405AC_GNU_SOURCE
1406
48989ead
DL
1407dnl Do this early because it can frob feature test macros for Unix-98 &c.
1408AC_SYS_LARGEFILE
1409
3d9830e5
PJ
1410if test "${with_sound}" != "no"; then
1411 # Sound support for GNU/Linux and the free BSDs.
1412 AC_CHECK_HEADERS(machine/soundcard.h sys/soundcard.h soundcard.h)
1413 # Emulation library used on NetBSD.
1414 AC_CHECK_LIB(ossaudio, _oss_ioctl, LIBSOUND=-lossaudio, LIBSOUND=)
1415 AC_SUBST(LIBSOUND)
1416fi
b412189c 1417
9ec10b2f 1418dnl checks for header files
1113b624
PE
1419AC_CHECK_HEADERS(sys/select.h sys/timeb.h sys/time.h unistd.h utime.h \
1420 linux/version.h sys/systeminfo.h termios.h limits.h string.h stdlib.h \
9afca57c 1421 termcap.h stdio_ext.h fcntl.h strings.h coff.h pty.h sys/mman.h \
1c3a8acf 1422 sys/param.h sys/vlimit.h sys/resource.h locale.h sys/_mbstate_t.h)
91b5aa9a
DL
1423dnl On Solaris 8 there's a compilation warning for term.h because
1424dnl it doesn't define `bool'.
1425AC_CHECK_HEADERS(term.h, , , -)
6e0dc84a
DM
1426AC_HEADER_STDC
1427AC_HEADER_TIME
71cc40d5
DL
1428AC_CHECK_DECLS([sys_siglist])
1429if test $ac_cv_have_decl_sys_siglist != yes; then
1430 # For Tru64, at least:
1431 AC_CHECK_DECLS([__sys_siglist])
1432 if test $ac_cv_have_decl___sys_siglist = yes; then
1433 AC_DEFINE(sys_siglist, __sys_siglist,
1434 [Define to any substitute for sys_siglist.])
1435 fi
1436fi
2ce723a5 1437AC_HEADER_SYS_WAIT
9ec10b2f 1438
3cd69289 1439dnl Some systems have utime.h but don't declare the struct anyplace.
fd0a060b 1440AC_CACHE_CHECK(for struct utimbuf, emacs_cv_struct_utimbuf,
3cd69289
DM
1441AC_TRY_COMPILE([#ifdef TIME_WITH_SYS_TIME
1442#include <sys/time.h>
1443#include <time.h>
1444#else
1445#ifdef HAVE_SYS_TIME_H
1446#include <sys/time.h>
1447#else
1448#include <time.h>
1449#endif
1450#endif
1451#ifdef HAVE_UTIME_H
1452#include <utime.h>
1453#endif], [static struct utimbuf x; x.actime = x.modtime;],
fd0a060b
AS
1454 emacs_cv_struct_utimbuf=yes, emacs_cv_struct_utimbuf=no))
1455if test $emacs_cv_struct_utimbuf = yes; then
5e7d772d 1456 AC_DEFINE(HAVE_STRUCT_UTIMBUF, 1, [Define to 1 if `struct utimbuf' is declared by <utime.h>.])
fd0a060b 1457fi
3cd69289 1458
9ec10b2f 1459dnl checks for typedefs
6e0dc84a 1460AC_TYPE_SIGNAL
9ec10b2f 1461
25abcaf1
GM
1462dnl Check for speed_t typedef.
1463AC_CACHE_CHECK(for speed_t, emacs_cv_speed_t,
a1d8dc87
RS
1464 [AC_TRY_COMPILE([#include <termios.h>], [speed_t x = 1;],
1465 emacs_cv_speed_t=yes, emacs_cv_speed_t=no)])
25abcaf1 1466if test $emacs_cv_speed_t = yes; then
177c0ea7 1467 AC_DEFINE(HAVE_SPEED_T, 1,
a1d8dc87 1468 [Define to 1 if `speed_t' is declared by <termios.h>.])
25abcaf1
GM
1469fi
1470
fd0a060b 1471AC_CACHE_CHECK(for struct timeval, emacs_cv_struct_timeval,
3cd69289
DM
1472AC_TRY_COMPILE([#ifdef TIME_WITH_SYS_TIME
1473#include <sys/time.h>
1474#include <time.h>
1475#else
1476#ifdef HAVE_SYS_TIME_H
1477#include <sys/time.h>
1478#else
1479#include <time.h>
1480#endif
1481#endif], [static struct timeval x; x.tv_sec = x.tv_usec;],
fd0a060b
AS
1482 emacs_cv_struct_timeval=yes, emacs_cv_struct_timeval=no))
1483HAVE_TIMEVAL=$emacs_cv_struct_timeval
1484if test $emacs_cv_struct_timeval = yes; then
5e7d772d 1485 AC_DEFINE(HAVE_TIMEVAL, 1, [Define to 1 if `struct timeval' is declared by <sys/time.h>.])
fd0a060b 1486fi
3cd69289 1487
63c59d1e 1488AC_CACHE_CHECK(for struct exception, emacs_cv_struct_exception,
177c0ea7 1489AC_TRY_COMPILE([#include <math.h>],
63c59d1e
DL
1490[static struct exception x; x.arg1 = x.arg2 = x.retval; x.name = ""; x.type = 1;],
1491 emacs_cv_struct_exception=yes, emacs_cv_struct_exception=no))
1492HAVE_EXCEPTION=$emacs_cv_struct_exception
1493if test $emacs_cv_struct_exception != yes; then
5e7d772d 1494 AC_DEFINE(NO_MATHERR, 1, [Define to 1 if you don't have struct exception in math.h.])
63c59d1e
DL
1495fi
1496
9ec10b2f
DM
1497dnl checks for structure members
1498AC_STRUCT_TM
6e0dc84a 1499AC_STRUCT_TIMEZONE
5e7d772d
AS
1500AC_CHECK_MEMBER(struct tm.tm_gmtoff,
1501 [AC_DEFINE(HAVE_TM_GMTOFF, 1,
1502 [Define to 1 if `tm_gmtoff' is member of `struct tm'.])],,
1503 [#include <time.h>])
9ec10b2f
DM
1504
1505dnl checks for compiler characteristics
3f5b097c
DL
1506
1507dnl Testing __STDC__ to determine prototype support isn't good enough.
1508dnl DEC C, for instance, doesn't define it with default options, and
1509dnl is used on 64-bit systems (OSF Alphas). Similarly for volatile
1510dnl and void *.
1511AC_C_PROTOTYPES
1512AC_C_VOLATILE
6e0dc84a 1513AC_C_CONST
3f5b097c
DL
1514dnl This isn't useful because we can't turn on use of `inline' unless
1515dnl the compiler groks `extern inline'.
1516dnl AC_C_INLINE
1517AC_CACHE_CHECK([for void * support], emacs_cv_void_star,
177c0ea7 1518 [AC_TRY_COMPILE(, [void * foo;],
3f5b097c
DL
1519 emacs_cv_void_star=yes, emacs_cv_void_star=no)])
1520if test $emacs_cv_void_star = yes; then
1521 AC_DEFINE(POINTER_TYPE, void)
1522else
1523 AC_DEFINE(POINTER_TYPE, char)
1524fi
5e7d772d
AS
1525AH_TEMPLATE(POINTER_TYPE,
1526 [Define as `void' if your compiler accepts `void *'; otherwise
1527 define as `char'.])dnl
9ec10b2f 1528
71cc40d5
DL
1529dnl This could be used for targets which can have both byte sexes.
1530dnl We could presumably replace the hardwired WORDS_BIG_ENDIAN generally.
1531dnl AC_C_BIGENDIAN
1532
9ec10b2f 1533dnl check for Make feature
6e0dc84a 1534AC_PROG_MAKE_SET
9ec10b2f
DM
1535
1536dnl checks for operating system services
6e0dc84a 1537AC_SYS_LONG_FILE_NAMES
9ec10b2f
DM
1538
1539#### Choose a window system.
9ec10b2f 1540
6e0dc84a 1541AC_PATH_X
530ce502
DM
1542if test "$no_x" = yes; then
1543 window_system=none
1544else
1545 window_system=x11
1546fi
9ec10b2f 1547
ea199426 1548if test "${x_libraries}" != NONE && test -n "${x_libraries}"; then
00ac3ffc
KH
1549 LD_SWITCH_X_SITE=-L`echo ${x_libraries} | sed -e "s/:/ -L/g"`
1550 LD_SWITCH_X_SITE_AUX=-R`echo ${x_libraries} | sed -e "s/:/ -R/g"`
66d736a9
RS
1551 x_default_search_path=""
1552 for x_library in `echo ${x_libraries} | sed -e "s/:/ /g"`; do
c8d4d4cc
KH
1553 x_search_path="\
1554${x_library}/X11/%L/%T/%N%C%S:\
1555${x_library}/X11/%l/%T/%N%C%S:\
1556${x_library}/X11/%T/%N%C%S:\
1557${x_library}/X11/%L/%T/%N%S:\
1558${x_library}/X11/%l/%T/%N%S:\
1559${x_library}/X11/%T/%N%S"
66d736a9
RS
1560 if test x"${x_default_search_path}" = x; then
1561 x_default_search_path=${x_search_path}
1562 else
1563 x_default_search_path="${x_search_path}:${x_default_search_path}"
1564 fi
1565 done
ea199426
DM
1566fi
1567if test "${x_includes}" != NONE && test -n "${x_includes}"; then
cc6476f6 1568 C_SWITCH_X_SITE=-I`echo ${x_includes} | sed -e "s/:/ -I/g"`
ea199426 1569fi
9ec10b2f 1570
8dbeb353
DM
1571if test x"${x_includes}" = x; then
1572 bitmapdir=/usr/include/X11/bitmaps
3cd69289 1573else
908ff139 1574 # accumulate include directories that have X11 bitmap subdirectories
cc6476f6
KH
1575 bmd_acc="dummyval"
1576 for bmd in `echo ${x_includes} | sed -e "s/:/ /g"`; do
1577 if test -d "${bmd}/X11/bitmaps"; then
1578 bmd_acc="${bmd_acc}:${bmd}/X11/bitmaps"
4f6f5dab
GM
1579 fi
1580 if test -d "${bmd}/bitmaps"; then
cc6476f6
KH
1581 bmd_acc="${bmd_acc}:${bmd}/bitmaps"
1582 fi
1583 done
1584 if test ${bmd_acc} != "dummyval"; then
1585 bitmapdir=`echo ${bmd_acc} | sed -e "s/^dummyval://"`
1586 fi
3cd69289
DM
1587fi
1588
9ec10b2f
DM
1589case "${window_system}" in
1590 x11 )
1591 HAVE_X_WINDOWS=yes
1592 HAVE_X11=yes
1593 case "${with_x_toolkit}" in
c7f493fd
RM
1594 athena | lucid ) USE_X_TOOLKIT=LUCID ;;
1595 motif ) USE_X_TOOLKIT=MOTIF ;;
1596dnl open-look ) USE_X_TOOLKIT=OPEN_LOOK ;;
488dd4c4
JD
1597 gtk ) with_gtk=yes
1598dnl Dont set this for GTK. A lot of tests below assumes Xt when
1599dnl USE_X_TOOLKIT is set.
1600 USE_X_TOOLKIT=none ;;
4be21f66
KH
1601 no ) USE_X_TOOLKIT=none ;;
1602dnl If user did not say whether to use a toolkit,
1603dnl make this decision later: use the toolkit if we have X11R5 or newer.
1604 * ) USE_X_TOOLKIT=maybe ;;
9ec10b2f
DM
1605 esac
1606 ;;
9ec10b2f
DM
1607 none )
1608 HAVE_X_WINDOWS=no
1609 HAVE_X11=no
1610 USE_X_TOOLKIT=none
1611 ;;
1612esac
9ec10b2f
DM
1613
1614### If we're using X11, we should use the X menu package.
08741ba9 1615HAVE_MENUS=no
9ec10b2f 1616case ${HAVE_X11} in
08741ba9 1617 yes ) HAVE_MENUS=yes ;;
9ec10b2f 1618esac
177c0ea7 1619
b95c8e7e
RS
1620if test "${opsys}" = "hpux9"; then
1621 case "${x_libraries}" in
1622 *X11R4* )
1623 opsysfile="s/hpux9-x11r4.h"
1624 ;;
1625 esac
1626fi
1627
1628if test "${opsys}" = "hpux9shr"; then
1629 case "${x_libraries}" in
1630 *X11R4* )
1631 opsysfile="s/hpux9shxr4.h"
1632 ;;
1633 esac
1634fi
1635
9ec10b2f
DM
1636### Compute the unexec source name from the object name.
1637UNEXEC_SRC="`echo ${unexec} | sed 's/\.o/.c/'`"
1638
1639# Do the opsystem or machine files prohibit the use of the GNU malloc?
1640# Assume not, until told otherwise.
1641GNU_MALLOC=yes
b05a95cb
RS
1642doug_lea_malloc=yes
1643AC_CHECK_FUNC(malloc_get_state, ,doug_lea_malloc=no)
1644AC_CHECK_FUNC(malloc_set_state, ,doug_lea_malloc=no)
fd0a060b
AS
1645AC_CACHE_CHECK(whether __after_morecore_hook exists,
1646 emacs_cv_var___after_morecore_hook,
e9b2a022 1647[AC_TRY_LINK([extern void (* __after_morecore_hook)();],[__after_morecore_hook = 0],
fd0a060b 1648 emacs_cv_var___after_morecore_hook=yes,
e9b2a022 1649 emacs_cv_var___after_morecore_hook=no)])
fd0a060b
AS
1650if test $emacs_cv_var___after_morecore_hook = no; then
1651 doug_lea_malloc=no
1652fi
8cd88038 1653if test "${system_malloc}" = "yes"; then
9ec10b2f
DM
1654 GNU_MALLOC=no
1655 GNU_MALLOC_reason="
b05a95cb 1656 (The GNU allocators don't work with this system configuration.)"
9ec10b2f 1657fi
8cd88038
RS
1658if test "$doug_lea_malloc" = "yes" ; then
1659 if test "$GNU_MALLOC" = yes ; then
1660 GNU_MALLOC_reason="
0855015c 1661 (Using Doug Lea's new malloc from the GNU C Library.)"
8cd88038 1662 fi
5e7d772d
AS
1663 AC_DEFINE(DOUG_LEA_MALLOC, 1,
1664 [Define to 1 if you are using the GNU C Library.])
8cd88038 1665fi
9ec10b2f
DM
1666
1667if test x"${REL_ALLOC}" = x; then
1668 REL_ALLOC=${GNU_MALLOC}
1669fi
1670
e32fac2a 1671dnl For now, need to use an explicit `#define USE_MMAP_FOR_BUFFERS 1'
69c40632 1672dnl the system configuration file (s/*.h) to turn the use of mmap
53c94d4d 1673dnl in the relocating allocator on.
b1b4ce06
GM
1674
1675AC_FUNC_MMAP
e32fac2a
GM
1676if test $use_mmap_for_buffers = yes; then
1677 REL_ALLOC=no
b1b4ce06
GM
1678fi
1679
52c76122 1680LIBS="$libsrc_libs $LIBS"
9ec10b2f
DM
1681
1682dnl If found, this defines HAVE_LIBDNET, which m/pmax.h checks,
1683dnl and also adds -ldnet to LIBS, which Autoconf uses for checks.
1684AC_CHECK_LIB(dnet, dnet_ntoa)
1685dnl This causes -lresolv to get used in subsequent tests,
1686dnl which causes failures on some systems such as HPUX 9.
1687dnl AC_CHECK_LIB(resolv, gethostbyname)
1688
1689dnl FIXME replace main with a function we actually want from this library.
1690AC_CHECK_LIB(Xbsd, main, LD_SWITCH_X_SITE="$LD_SWITCH_X_SITE -lXbsd")
1691
027dae63 1692AC_CHECK_LIB(pthreads, cma_open)
1d94ee28 1693
5d4245a6 1694AC_MSG_CHECKING(for XFree86 in /usr/X386)
9ec10b2f 1695if test -d /usr/X386/include; then
9ec10b2f 1696 HAVE_XFREE386=yes
6e0dc84a 1697 : ${C_SWITCH_X_SITE="-I/usr/X386/include"}
9ec10b2f 1698else
6e0dc84a 1699 HAVE_XFREE386=no
9ec10b2f 1700fi
6e0dc84a 1701AC_MSG_RESULT($HAVE_XFREE386)
f4d9f5b8
FP
1702
1703dnl Check for need for bigtoc support on IBM AIX
1704
1705case ${host_os} in
1706aix*)
1707 AC_CACHE_CHECK([for -bbigtoc option], [gdb_cv_bigtoc], [
1708 case $GCC in
1709 yes) gdb_cv_bigtoc=-Wl,-bbigtoc ;;
1710 *) gdb_cv_bigtoc=-bbigtoc ;;
1711 esac
1712
1713 LDFLAGS=$LDFLAGS\ $gdb_cv_bigtoc
1714 AC_TRY_LINK([], [int i;], [], [gdb_cv_bigtoc=])
1715 ])
1716 ;;
1717esac
9ec10b2f 1718
9811b1cf
RS
1719# Change CFLAGS and CPPFLAGS temporarily so that C_SWITCH_X_SITE gets
1720# used for the tests that follow. We set them back to REAL_CFLAGS and
1721# REAL_CPPFLAGS later on.
9ec10b2f 1722
5a9bf171
KR
1723REAL_CPPFLAGS="$CPPFLAGS"
1724
9ec10b2f
DM
1725if test "${HAVE_X11}" = "yes"; then
1726 DEFS="$C_SWITCH_X_SITE $DEFS"
96c20358
RS
1727 LDFLAGS="$LDFLAGS $LD_SWITCH_X_SITE"
1728 LIBS="$LIBX $LIBS"
9ec10b2f 1729 CFLAGS="$C_SWITCH_X_SITE $CFLAGS"
5a9bf171 1730 CPPFLAGS="$C_SWITCH_X_SITE $CPPFLAGS"
509fccc3 1731
617a496c
RS
1732 # On Solaris, arrange for LD_RUN_PATH to point to the X libraries for tests.
1733 # This is handled by LD_SWITCH_X_SITE_AUX during the real build,
1734 # but it's more convenient here to set LD_RUN_PATH
1735 # since this also works on hosts that don't understand LD_SWITCH_X_SITE_AUX.
1736 if test "${x_libraries}" != NONE && test -n "${x_libraries}"; then
1737 LD_RUN_PATH=$x_libraries${LD_RUN_PATH+:}$LD_RUN_PATH
1738 export LD_RUN_PATH
1739 fi
1740
5ac83f86 1741 if test "${opsys}" = "gnu-linux"; then
3bbe016c 1742 AC_MSG_CHECKING(whether X on GNU/Linux needs -b to link)
509fccc3
RS
1743 AC_TRY_LINK([],
1744 [XOpenDisplay ("foo");],
3bbe016c
KH
1745 [xlinux_first_failure=no],
1746 [xlinux_first_failure=yes])
1747 if test "${xlinux_first_failure}" = "yes"; then
509fccc3
RS
1748 OLD_LD_SWITCH_X_SITE="$LD_SWITCH_X_SITE"
1749 OLD_C_SWITCH_X_SITE="$C_SWITCH_X_SITE"
1750 OLD_CPPFLAGS="$CPPFLAGS"
1751 OLD_LIBS="$LIBS"
1752 LD_SWITCH_X_SITE="$LD_SWITCH_X_SITE -b i486-linuxaout"
1753 C_SWITCH_X_SITE="$C_SWITCH_X_SITE -b i486-linuxaout"
1754 CPPFLAGS="$CPPFLAGS -b i486-linuxaout"
1755 LIBS="$LIBS -b i486-linuxaout"
1756 AC_TRY_LINK([],
1757 [XOpenDisplay ("foo");],
3bbe016c
KH
1758 [xlinux_second_failure=no],
1759 [xlinux_second_failure=yes])
1760 if test "${xlinux_second_failure}" = "yes"; then
509fccc3
RS
1761 # If we get the same failure with -b, there is no use adding -b.
1762 # So take it out. This plays safe.
1763 LD_SWITCH_X_SITE="$OLD_LD_SWITCH_X_SITE"
1764 C_SWITCH_X_SITE="$OLD_C_SWITCH_X_SITE"
1765 CPPFLAGS="$OLD_CPPFLAGS"
1766 LIBS="$OLD_LIBS"
1767 AC_MSG_RESULT(no)
1768 else
1769 AC_MSG_RESULT(yes)
1770 fi
1771 else
1772 AC_MSG_RESULT(no)
1773 fi
1774 fi
1775
9ca4be21
GM
1776 # Reportedly, some broken Solaris systems have XKBlib.h but are missing
1777 # header files included from there.
1778 AC_MSG_CHECKING(for Xkb)
1779 AC_TRY_LINK([#include <X11/Xlib.h>
1780#include <X11/XKBlib.h>],
1781 [XkbDescPtr kb = XkbGetKeyboard (0, XkbAllComponentsMask, XkbUseCoreKbd);],
1782 emacs_xkb=yes, emacs_xkb=no)
ad4ac636 1783 AC_MSG_RESULT($emacs_xkb)
9ca4be21 1784 if test $emacs_xkb = yes; then
5e7d772d 1785 AC_DEFINE(HAVE_XKBGETKEYBOARD, 1, [Define to 1 if you have the XkbGetKeyboard function.])
9ca4be21
GM
1786 fi
1787
6e0dc84a 1788 AC_CHECK_FUNCS(XrmSetDatabase XScreenResourceString \
9ca4be21 1789XScreenNumberOfScreen XSetWMProtocols)
9ec10b2f
DM
1790fi
1791
08741ba9 1792if test "${window_system}" = "x11"; then
4be21f66 1793 AC_MSG_CHECKING(X11 version 6)
fd0a060b 1794 AC_CACHE_VAL(emacs_cv_x11_version_6,
e9b2a022 1795 [AC_TRY_LINK([#include <X11/Xlib.h>],
08741ba9
RS
1796[#if XlibSpecificationRelease < 6
1797fail;
1798#endif
e9b2a022 1799], emacs_cv_x11_version_6=yes, emacs_cv_x11_version_6=no)])
fd0a060b
AS
1800 if test $emacs_cv_x11_version_6 = yes; then
1801 AC_MSG_RESULT(6 or newer)
5e7d772d
AS
1802 AC_DEFINE(HAVE_X11R6, 1,
1803 [Define to 1 if you have the X11R6 or newer version of Xlib.])
fd0a060b
AS
1804 else
1805 AC_MSG_RESULT(before 6)
1806 fi
08741ba9
RS
1807fi
1808
f7894e88 1809if test "${window_system}" = "x11"; then
4be21f66 1810 AC_MSG_CHECKING(X11 version 5)
fd0a060b 1811 AC_CACHE_VAL(emacs_cv_x11_version_5,
e9b2a022 1812 [AC_TRY_LINK([#include <X11/Xlib.h>],
4be21f66
KH
1813[#if XlibSpecificationRelease < 5
1814fail;
1815#endif
e9b2a022 1816], emacs_cv_x11_version_5=yes, emacs_cv_x11_version_5=no)])
fd0a060b
AS
1817 if test $emacs_cv_x11_version_5 = yes; then
1818 AC_MSG_RESULT(5 or newer)
f7894e88 1819 HAVE_X11R5=yes
5e7d772d
AS
1820 AC_DEFINE(HAVE_X11R5, 1,
1821 [Define to 1 if you have the X11R5 or newer version of Xlib.])
fd0a060b 1822 else
f7894e88 1823 HAVE_X11R5=no
fd0a060b
AS
1824 AC_MSG_RESULT(before 5)
1825 fi
f7894e88
RS
1826fi
1827
488dd4c4
JD
1828dnl This function defintion taken from Gnome 2.0
1829dnl PKG_CHECK_MODULES(GSTUFF, gtk+-2.0 >= 1.3 glib = 1.3.4, action-if, action-not)
1830dnl defines GSTUFF_LIBS, GSTUFF_CFLAGS, see pkg-config man page
1831dnl also defines GSTUFF_PKG_ERRORS on error
1832AC_DEFUN(PKG_CHECK_MODULES, [
1833 succeeded=no
1834
1835 if test -z "$PKG_CONFIG"; then
1836 AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
1837 fi
1838
1839 if test "$PKG_CONFIG" = "no" ; then
1840 echo "*** The pkg-config script could not be found. Make sure it is"
1841 echo "*** in your path, or give the full path to pkg-config with"
1842 echo "*** the PKG_CONFIG environment variable or --with-pkg-config-prog."
1843 echo "*** Or see http://www.freedesktop.org/software/pkgconfig to get pkg-config."
1844 else
1845 PKG_CONFIG_MIN_VERSION=0.9.0
1846 if $PKG_CONFIG --atleast-pkgconfig-version $PKG_CONFIG_MIN_VERSION; then
1847 AC_MSG_CHECKING(for $2)
1848
1849 if $PKG_CONFIG --exists "$2" ; then
1850 AC_MSG_RESULT(yes)
1851 succeeded=yes
1852
1853 AC_MSG_CHECKING($1_CFLAGS)
1854 $1_CFLAGS=`$PKG_CONFIG --cflags "$2"`
1855 AC_MSG_RESULT($$1_CFLAGS)
1856
1857 AC_MSG_CHECKING($1_LIBS)
1858 $1_LIBS=`$PKG_CONFIG --libs "$2"`
1859 AC_MSG_RESULT($$1_LIBS)
1860 else
1861 $1_CFLAGS=""
1862 $1_LIBS=""
177c0ea7 1863 ## If we have a custom action on failure, don't print errors, but
488dd4c4
JD
1864 ## do set a variable so people can do so.
1865 $1_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "$2"`
1866 ifelse([$4], ,echo $$1_PKG_ERRORS,)
1867 fi
1868
1869 AC_SUBST($1_CFLAGS)
1870 AC_SUBST($1_LIBS)
1871 else
1872 echo "*** Your version of pkg-config is too old. You need version $PKG_CONFIG_MIN_VERSION or newer."
1873 echo "*** See http://www.freedesktop.org/software/pkgconfig"
1874 fi
1875 fi
1876
1877 if test $succeeded = yes; then
1878 ifelse([$3], , :, [$3])
1879 else
1880 ifelse([$4], , AC_MSG_ERROR([Library requirements ($2) not met; consider adjusting the PKG_CONFIG_PATH environment variable if your libraries are in a nonstandard prefix so pkg-config can find them.]), [$4])
1881 fi
1882])
1883
1884HAVE_GTK=no
1885if test "${with_gtk}" = "yes" || test "$USE_X_TOOLKIT" = "gtk"; then
cd890796 1886 if test "$USE_X_TOOLKIT" != "none" && test "$USE_X_TOOLKIT" != "maybe"; then
488dd4c4
JD
1887 AC_MSG_ERROR([Conflicting options, --with-gtk is incompatible with --with-x-toolkit=${with_x_toolkit}]);
1888 fi
1889 GLIB_REQUIRED=2.0.1
1890 GTK_REQUIRED=2.0.1
1891 GTK_MODULES="gtk+-2.0 >= $GTK_REQUIRED glib-2.0 >= $GLIB_REQUIRED"
1892
1893 dnl Check if --with-pkg-config-prog has been given.
1894 if test "X${with_pkg_config_prog}" != X; then
1895 PKG_CONFIG="${with_pkg_config_prog}"
1896 fi
1897 dnl Checks for libraries.
1898 PKG_CHECK_MODULES(GTK, $GTK_MODULES)
1899 AC_SUBST(GTK_CFLAGS)
1900 AC_SUBST(GTK_LIBS)
1901 C_SWITCH_X_SITE="$C_SWITCH_X_SITE $GTK_CFLAGS"
1902 HAVE_GTK=yes
1903 AC_DEFINE(HAVE_GTK, 1, [Define to 1 if using GTK.])
1904 USE_X_TOOLKIT=none
1905
1906 dnl GTK scrollbars resembles toolkit scrollbars alot, so to avoid
1907 dnl a lot if #ifdef:s, say we have toolkit scrollbars.
1908 with_toolkit_scroll_bars=yes
1909fi
1910
bce97856
RS
1911dnl Do not put whitespace before the #include statements below.
1912dnl Older compilers (eg sunos4 cc) choke on it.
f7894e88
RS
1913if test x"${USE_X_TOOLKIT}" = xmaybe; then
1914 if test x"${HAVE_X11R5}" = xyes; then
1915 AC_MSG_CHECKING(X11 version 5 with Xaw)
fd0a060b 1916 AC_CACHE_VAL(emacs_cv_x11_version_5_with_xaw,
e9b2a022 1917 [AC_TRY_LINK([
bce97856
RS
1918#include <X11/Intrinsic.h>
1919#include <X11/Xaw/Simple.h>],
f7894e88 1920 [],
fd0a060b 1921 emacs_cv_x11_version_5_with_xaw=yes,
e9b2a022 1922 emacs_cv_x11_version_5_with_xaw=no)])
fd0a060b
AS
1923 if test $emacs_cv_x11_version_5_with_xaw = yes; then
1924 AC_MSG_RESULT([5 or newer, with Xaw; use toolkit by default])
1925 USE_X_TOOLKIT=LUCID
1926 else
1927 AC_MSG_RESULT(before 5 or no Xaw; do not use toolkit by default)
1928 USE_X_TOOLKIT=none
1929 fi
f7894e88
RS
1930 else
1931 USE_X_TOOLKIT=none
1932 fi
4be21f66
KH
1933fi
1934
1935X_TOOLKIT_TYPE=$USE_X_TOOLKIT
1936
9ec10b2f
DM
1937if test "${USE_X_TOOLKIT}" != "none"; then
1938 AC_MSG_CHECKING(X11 toolkit version)
fd0a060b 1939 AC_CACHE_VAL(emacs_cv_x11_toolkit_version_6,
e9b2a022 1940 [AC_TRY_LINK([#include <X11/Intrinsic.h>],
9ec10b2f
DM
1941[#if XtSpecificationRelease < 6
1942fail;
1943#endif
e9b2a022 1944], emacs_cv_x11_toolkit_version_6=yes, emacs_cv_x11_toolkit_version_6=no)])
fd0a060b
AS
1945 HAVE_X11XTR6=$emacs_cv_x11_toolkit_version_6
1946 if test $emacs_cv_x11_toolkit_version_6 = yes; then
1947 AC_MSG_RESULT(6 or newer)
5e7d772d
AS
1948 AC_DEFINE(HAVE_X11XTR6, 1,
1949 [Define to 1 if you have the X11R6 or newer version of Xt.])
fd0a060b
AS
1950 else
1951 AC_MSG_RESULT(before 6)
1952 fi
6aad10e4
RS
1953
1954dnl If using toolkit, check whether libXmu.a exists.
1955dnl tranle@intellicorp.com says libXmu.a can need XtMalloc in libXt.a to link.
1956 OLDLIBS="$LIBS"
fcc303f4
RS
1957 if test x$HAVE_X11XTR6 = xyes; then
1958 LIBS="-lXt -lSM -lICE $LIBS"
1959 else
1960 LIBS="-lXt $LIBS"
1961 fi
6aad10e4 1962 AC_CHECK_LIB(Xmu, XmuConvertStandardSelection)
ad4ac636
GM
1963 test $ac_cv_lib_Xmu_XmuConvertStandardSelection = no && LIBS="$OLDLIBS"
1964fi
1965
1966# On Irix 6.5, at least, we need XShapeQueryExtension from -lXext for Xaw3D.
1967if test "${HAVE_X11}" = "yes"; then
1968 if test "${USE_X_TOOLKIT}" != "none"; then
1969 AC_CHECK_LIB(Xext, XShapeQueryExtension)
1970 fi
9ec10b2f
DM
1971fi
1972
66d736a9 1973if test "${USE_X_TOOLKIT}" = "MOTIF"; then
6cf6d325 1974 AC_CACHE_CHECK(for LessTif where some systems put it, emacs_cv_lesstif,
9811b1cf
RS
1975 # We put this in CFLAGS temporarily to precede other -I options
1976 # that might be in CFLAGS temporarily.
1977 # We put this in CPPFLAGS where it precedes the other -I options.
1978 OLD_CPPFLAGS=$CPPFLAGS
1979 OLD_CFLAGS=$CFLAGS
1980 CPPFLAGS="-I/usr/X11R6/LessTif/Motif1.2/include $CPPFLAGS"
1981 CFLAGS="-I/usr/X11R6/LessTif/Motif1.2/include $CFLAGS"
6d621bab
RS
1982 [AC_TRY_COMPILE([#include </usr/X11R6/LessTif/Motif1.2/include/Xm/Xm.h>],
1983 [int x = 5;],
8bb4cb85 1984 emacs_cv_lesstif=yes, emacs_cv_lesstif=no)])
6d621bab 1985 if test $emacs_cv_lesstif = yes; then
9811b1cf
RS
1986 # Make sure this -I option remains in CPPFLAGS after it is set
1987 # back to REAL_CPPFLAGS.
1988 # There is no need to change REAL_CFLAGS, because REAL_CFLAGS does not
1989 # have those other -I options anyway. Ultimately, having this
1990 # directory ultimately in CPPFLAGS will be enough.
1991 REAL_CPPFLAGS="-I/usr/X11R6/LessTif/Motif1.2/include $REAL_CPPFLAGS"
6d621bab 1992 LDFLAGS="-L/usr/X11R6/LessTif/Motif1.2/lib $LDFLAGS"
9811b1cf
RS
1993 else
1994 CFLAGS=$OLD_CFLAGS
1995 CPPFLAGS=$OLD_CPPFLAGS
6d621bab 1996 fi
fd0a060b 1997 AC_CACHE_CHECK(for Motif version 2.1, emacs_cv_motif_version_2_1,
e9b2a022 1998 [AC_TRY_COMPILE([#include <Xm/Xm.h>],
66d736a9
RS
1999 [#if XmVERSION > 2 || (XmVERSION == 2 && XmREVISION >= 1)
2000int x = 5;
2001#else
2002Motif version prior to 2.1.
2003#endif],
e9b2a022 2004 emacs_cv_motif_version_2_1=yes, emacs_cv_motif_version_2_1=no)])
fd0a060b
AS
2005 HAVE_MOTIF_2_1=$emacs_cv_motif_version_2_1
2006 if test $emacs_cv_motif_version_2_1 = yes; then
d96a4de3 2007 HAVE_LIBXP=no
5e7d772d
AS
2008 AC_DEFINE(HAVE_MOTIF_2_1, 1,
2009 [Define to 1 if you have Motif 2.1 or newer.])
ad4ac636 2010 AC_CHECK_LIB(Xp, XpCreateContext, HAVE_LIBXP=yes)
72d9b5b3 2011 if test ${HAVE_LIBXP} = yes; then
5e7d772d
AS
2012 AC_DEFINE(HAVE_LIBXP, 1,
2013 [Define to 1 if you have the Xp library (-lXp).])
177c0ea7 2014 fi
fd0a060b 2015 fi
66d736a9
RS
2016fi
2017
620fdfdf
RS
2018### Is -lXaw3d available?
2019HAVE_XAW3D=no
2020if test "${HAVE_X11}" = "yes"; then
2021 if test "${USE_X_TOOLKIT}" != "none"; then
91b5aa9a
DL
2022 dnl Fixme: determine what Scrollbar.h needs to avoid compilation
2023 dnl errors from the test without the `-'.
620fdfdf 2024 AC_CHECK_HEADER(X11/Xaw3d/Scrollbar.h,
91b5aa9a 2025 [AC_CHECK_LIB(Xaw3d, XawScrollbarSetThumb, HAVE_XAW3D=yes)], , -)
620fdfdf 2026 if test "${HAVE_XAW3D}" = "yes"; then
5e7d772d
AS
2027 AC_DEFINE(HAVE_XAW3D, 1,
2028 [Define to 1 if you have the Xaw3d library (-lXaw3d).])
620fdfdf
RS
2029 fi
2030 fi
2031fi
177c0ea7 2032
488dd4c4 2033dnl Use toolkit scroll bars if configured for GTK or X toolkit and either
0be97a72
GM
2034dnl using Motif or Xaw3d is available, and unless
2035dnl --with-toolkit-scroll-bars=no was specified.
2036
5e7d772d
AS
2037AH_TEMPLATE(USE_TOOLKIT_SCROLL_BARS,
2038 [Define to 1 if we should use toolkit scroll bars.])dnl
0be97a72
GM
2039USE_TOOLKIT_SCROLL_BARS=no
2040if test "${with_toolkit_scroll_bars}" != "no"; then
2041 if test "${USE_X_TOOLKIT}" != "none"; then
2042 if test "${USE_X_TOOLKIT}" = "MOTIF"; then
2043 AC_DEFINE(USE_TOOLKIT_SCROLL_BARS)
2044 HAVE_XAW3D=no
2045 USE_TOOLKIT_SCROLL_BARS=yes
2046 elif test "${HAVE_XAW3D}" = "yes"; then
2047 AC_DEFINE(USE_TOOLKIT_SCROLL_BARS)
2048 USE_TOOLKIT_SCROLL_BARS=yes
2049 fi
488dd4c4
JD
2050 elif test "${HAVE_GTK}" = "yes"; then
2051 AC_DEFINE(USE_TOOLKIT_SCROLL_BARS)
2052 USE_TOOLKIT_SCROLL_BARS=yes
0be97a72
GM
2053 fi
2054fi
2055
c6f7dae8
GM
2056dnl Don't use X11 input methods if user specifies he doesn't want it
2057dnl with `--with-xim=no'.
2058
2059if test "${with_xim}" != "no"; then
5e7d772d
AS
2060 AC_DEFINE(USE_XIM, 1,
2061 [Define to 1 if we should use XIM, if it is available.])
a6c2ef66
DL
2062 late_CFLAGS=$CFLAGS
2063 if test "$GCC" = yes; then
2064 CFLAGS="$CFLAGS --pedantic-errors"
2065 fi
1c3a8acf
DL
2066 AC_TRY_COMPILE([
2067#include <X11/Xlib.h>
2068#include <X11/Xresource.h>],
2069[Display *display;
2070XrmDatabase db;
2071char *res_name;
2072char *res_class;
2073XIMProc callback;
2074XPointer *client_data;
a6c2ef66
DL
2075#ifndef __GNUC__
2076/* If we're not using GCC, it's probably not XFree86, and this is
2077 probably right, but we can't use something like --pedantic-errors. */
2078extern Bool XRegisterIMInstantiateCallback(Display*, XrmDatabase, char*,
2079 char*, XIMProc, XPointer*);
2080#endif
1c3a8acf
DL
2081(void)XRegisterIMInstantiateCallback(display, db, res_name, res_class, callback,
2082 client_data);],
2083 [emacs_cv_arg6_star=yes])
2084 AH_TEMPLATE(XRegisterIMInstantiateCallback_arg6,
2085 [Define to the type of the 6th arg of XRegisterIMInstantiateCallback,
2086either XPointer or XPointer*.])dnl
2087 if test "$emacs_cv_arg6_star" = yes; then
2088 AC_DEFINE(XRegisterIMInstantiateCallback_arg6, [XPointer*])
2089 else
2090 AC_DEFINE(XRegisterIMInstantiateCallback_arg6, [XPointer])
2091 fi
a6c2ef66 2092 CFLAGS=$late_CFLAGS
c6f7dae8
GM
2093fi
2094
620fdfdf
RS
2095### Use -lXpm if available, unless `--with-xpm=no'.
2096HAVE_XPM=no
2097if test "${HAVE_X11}" = "yes"; then
2098 if test "${with_xpm}" != "no"; then
620fdfdf 2099 AC_CHECK_HEADER(X11/xpm.h,
7960d0bd
GM
2100 AC_CHECK_LIB(Xpm, XpmReadFileToPixmap, HAVE_XPM=yes, , -lX11))
2101 if test "${HAVE_XPM}" = "yes"; then
29c1b68e
GM
2102 AC_MSG_CHECKING(for XpmReturnAllocPixels preprocessor define)
2103 AC_EGREP_CPP(no_return_alloc_pixels,
2104 [#include "X11/xpm.h"
7960d0bd
GM
2105#ifndef XpmReturnAllocPixels
2106no_return_alloc_pixels
2107#endif
29c1b68e
GM
2108 ], HAVE_XPM=no, HAVE_XPM=yes)
2109
2110 if test "${HAVE_XPM}" = "yes"; then
2111 AC_MSG_RESULT(yes)
2112 else
2113 AC_MSG_RESULT(no)
2114 fi
1890c0c4 2115 fi
620fdfdf
RS
2116 fi
2117
2118 if test "${HAVE_XPM}" = "yes"; then
5e7d772d 2119 AC_DEFINE(HAVE_XPM, 1, [Define to 1 if you have the Xpm libary (-lXpm).])
620fdfdf
RS
2120 fi
2121fi
177c0ea7 2122
620fdfdf
RS
2123### Use -ljpeg if available, unless `--with-jpeg=no'.
2124HAVE_JPEG=no
2125if test "${HAVE_X11}" = "yes"; then
2126 if test "${with_jpeg}" != "no"; then
71cc40d5 2127 dnl Checking for jpeglib.h can lose because of a redefinition of
3cc9d384
DL
2128 dnl HAVE_STDLIB_H.
2129 AC_CHECK_HEADER(jerror.h,
ad4ac636 2130 AC_CHECK_LIB(jpeg, jpeg_destroy_compress, HAVE_JPEG=yes))
620fdfdf
RS
2131 fi
2132
5e7d772d 2133 AH_TEMPLATE(HAVE_JPEG, [Define to 1 if you have the jpeg library (-ljpeg).])dnl
620fdfdf
RS
2134 if test "${HAVE_JPEG}" = "yes"; then
2135 AC_DEFINE(HAVE_JPEG)
91b5aa9a 2136 AC_EGREP_CPP([version= *(6[2-9]|[7-9][0-9])],
a0dd4fa6 2137 [#include <jpeglib.h>
4d766b59 2138 version=JPEG_LIB_VERSION
177c0ea7 2139],
4d766b59
RS
2140 AC_DEFINE(HAVE_JPEG),
2141 [AC_MSG_WARN([libjpeg found, but not version 6b or later])
2142 HAVE_JPEG=no])
620fdfdf
RS
2143 fi
2144fi
177c0ea7 2145
620fdfdf
RS
2146### Use -lpng if available, unless `--with-png=no'.
2147HAVE_PNG=no
2148if test "${HAVE_X11}" = "yes"; then
2149 if test "${with_png}" != "no"; then
620fdfdf 2150 AC_CHECK_HEADER(png.h,
ad4ac636 2151 AC_CHECK_LIB(png, png_get_channels, HAVE_PNG=yes, , -lz -lm))
620fdfdf
RS
2152 fi
2153
2154 if test "${HAVE_PNG}" = "yes"; then
5e7d772d 2155 AC_DEFINE(HAVE_PNG, 1, [Define to 1 if you have the png library (-lpng).])
620fdfdf
RS
2156 fi
2157fi
177c0ea7 2158
620fdfdf
RS
2159### Use -ltiff if available, unless `--with-tiff=no'.
2160HAVE_TIFF=no
2161if test "${HAVE_X11}" = "yes"; then
2162 if test "${with_tiff}" != "no"; then
620fdfdf 2163 AC_CHECK_HEADER(tiffio.h,
ad4ac636 2164 tifflibs="-lz -lm"
3b3cc4a4
KR
2165 # At least one tiff package requires the jpeg library.
2166 if test "${HAVE_JPEG}" = yes; then tifflibs="-ljpeg $tifflibs"; fi
2167 AC_CHECK_LIB(tiff, TIFFGetVersion, HAVE_TIFF=yes, , $tifflibs))
620fdfdf
RS
2168 fi
2169
2170 if test "${HAVE_TIFF}" = "yes"; then
5e7d772d 2171 AC_DEFINE(HAVE_TIFF, 1, [Define to 1 if you have the tiff library (-ltiff).])
620fdfdf
RS
2172 fi
2173fi
177c0ea7 2174
620fdfdf
RS
2175### Use -lgif if available, unless `--with-gif=no'.
2176HAVE_GIF=no
2177if test "${HAVE_X11}" = "yes"; then
2178 if test "${with_gif}" != "no"; then
620fdfdf 2179 AC_CHECK_HEADER(gif_lib.h,
4d766b59
RS
2180# EGifPutExtensionLast only exists from version libungif-4.1.0b1.
2181# Earlier versions can crash Emacs.
2182 AC_CHECK_LIB(ungif, EGifPutExtensionLast, HAVE_GIF=yes))
620fdfdf
RS
2183 fi
2184
2185 if test "${HAVE_GIF}" = "yes"; then
5e7d772d 2186 AC_DEFINE(HAVE_GIF, 1, [Define to 1 if you have the ungif library (-lungif).])
620fdfdf
RS
2187 fi
2188fi
2189
e0f712ba
AC
2190### Use Mac OS X Carbon API to implement GUI.
2191HAVE_CARBON=no
2192if test "${with_carbon}" != "no"; then
2193 AC_CHECK_HEADER(Carbon/Carbon.h, HAVE_CARBON=yes)
2194fi
2195
2196if test "${HAVE_CARBON}" = "yes"; then
e3ba1015 2197 AC_DEFINE(HAVE_CARBON, 1, [Define to 1 if you are using the Carbon API on Mac OS X.])
52cd7d02
ST
2198 window_system=mac
2199 ## Specify the install directory
2200 carbon_appdir=
2201 if test "${carbon_appdir_x}" != ""; then
2202 case ${carbon_appdir_x} in
2203 y | ye | yes) carbon_appdir=/Applications ;;
2204 * ) carbon_appdir=${carbon_appdir_x} ;;
2205 esac
2206 fi
12bf22e0
AS
2207 # We also have mouse menus.
2208 HAVE_MENUS=yes
e0f712ba
AC
2209fi
2210
f21fadcc
JD
2211### Use session management (-lSM -lICE) if available
2212HAVE_X_SM=no
2213if test "${HAVE_X11}" = "yes"; then
2214 AC_CHECK_HEADER(X11/SM/SMlib.h,
2215 AC_CHECK_LIB(SM, SmcOpenConnection, HAVE_X_SM=yes, -lICE))
2216
2217 if test "${HAVE_X_SM}" = "yes"; then
5e7d772d 2218 AC_DEFINE(HAVE_X_SM, 1, [Define to 1 if you have the SM library (-lSM).])
f21fadcc
JD
2219 case "$LIBS" in
2220 *-lSM*) ;;
2221 *) LIBS="-lSM -lICE $LIBS" ;;
2222 esac
2223 fi
2224fi
177c0ea7 2225
9ec10b2f 2226# If netdb.h doesn't declare h_errno, we must declare it by hand.
fd0a060b
AS
2227AC_CACHE_CHECK(whether netdb declares h_errno,
2228 emacs_cv_netdb_declares_h_errno,
e9b2a022 2229[AC_TRY_LINK([#include <netdb.h>],
01345308 2230 [return h_errno;],
e9b2a022 2231 emacs_cv_netdb_declares_h_errno=yes, emacs_cv_netdb_declares_h_errno=no)])
fd0a060b 2232if test $emacs_cv_netdb_declares_h_errno = yes; then
5e7d772d 2233 AC_DEFINE(HAVE_H_ERRNO, 1, [Define to 1 if netdb.h declares h_errno.])
fd0a060b 2234fi
9ec10b2f 2235
6e0dc84a 2236AC_FUNC_ALLOCA
9ec10b2f 2237
f6e8adea 2238# fmod, logb, and frexp are found in -lm on most systems.
e468fb38 2239# On HPUX 9.01, -lm does not contain logb, so check for sqrt.
e6fd9047 2240AC_CHECK_LIB(m, sqrt)
e6fd9047 2241
4b121527
DL
2242# Check for mail-locking functions in a "mail" library. Probably this should
2243# have the same check as for liblockfile below.
5ad9ac92
DL
2244AC_CHECK_LIB(mail, maillock)
2245dnl Debian, at least:
5ad9ac92
DL
2246AC_CHECK_LIB(lockfile, maillock)
2247# If we have the shared liblockfile, assume we must use it for mail
2248# locking (e.g. Debian). If we couldn't link against liblockfile
2249# (no liblockfile.a installed), ensure that we don't need to.
2250if test "$ac_cv_lib_lockfile_maillock" = no; then
2251 dnl This works for files generally, not just executables.
2252 dnl Should we look elsewhere for it? Maybe examine /etc/ld.so.conf?
2253 AC_CHECK_PROG(liblockfile, liblockfile.so, yes, no,
2254 /usr/lib:/lib:/usr/local/lib:$LD_LIBRARY_PATH)
2255 if test $ac_cv_prog_liblockfile = yes; then
2256 AC_MSG_ERROR([Shared liblockfile found but can't link against it.
2257This probably means that movemail could lose mail.
91b5aa9a 2258There may be a `development' package to install containing liblockfile.])
5ad9ac92 2259 else :
4b121527 2260 fi
5ad9ac92
DL
2261fi
2262AC_CHECK_FUNCS(touchlock)
2263AC_CHECK_HEADERS(maillock.h)
4e4db900 2264
66abe596 2265AC_CHECK_FUNCS(gethostname getdomainname dup2 \
1effc2cb 2266rename closedir mkdir rmdir sysinfo \
fd4bc671 2267random lrand48 bcopy bcmp logb frexp fmod rint cbrt ftime res_init setsid \
85ea1a28 2268strerror fpathconf select mktime euidaccess getpagesize tzset setlocale \
12c0a8da 2269utimes setrlimit setpgid getcwd getwd shutdown getaddrinfo \
ec406751 2270__fpending mblen mbrlen mbsinit strsignal setitimer ualarm index rindex \
66abe596 2271sendto recvfrom getsockopt setsockopt getsockname getpeername \
b0e44248 2272gai_strerror mkstemp getline getdelim mremap memmove fsync bzero \
28127e47 2273memset memcmp memmove difftime memcpy mempcpy mblen mbrlen posix_memalign)
38c44a91 2274
66abe596
KS
2275AC_CHECK_HEADERS(sys/un.h)
2276
38c44a91
DL
2277AC_FUNC_MKTIME
2278if test "$ac_cv_func_working_mktime" = no; then
5e7d772d 2279 AC_DEFINE(BROKEN_MKTIME, 1, [Define to 1 if the mktime function is broken.])
38c44a91
DL
2280fi
2281
1ca2077a
DL
2282AC_FUNC_GETLOADAVG
2283
64a04a42 2284AC_FUNC_FSEEKO
63c59d1e 2285
71cc40d5
DL
2286AC_FUNC_GETPGRP
2287
12c0a8da
DL
2288AC_FUNC_STRFTIME
2289
64a04a42 2290# UNIX98 PTYs.
40ccc4c7
GM
2291AC_CHECK_FUNCS(grantpt)
2292
2293# PTY-related GNU extensions.
2294AC_CHECK_FUNCS(getpt)
2295
16831d8c
RS
2296# Check this now, so that we will NOT find the above functions in ncurses.
2297# That is because we have not set up to link ncurses in lib-src.
2298# It's better to believe a function is not available
2299# than to expect to find it in ncurses.
2300AC_CHECK_LIB(ncurses, tparm)
0c565a0a 2301
84e70f78
KR
2302# Do we need the Hesiod library to provide the support routines?
2303if test "$with_hesiod" = yes ; then
2304 # Don't set $LIBS here -- see comments above.
2305 resolv=no
2306 AC_CHECK_FUNC(res_send, , [AC_CHECK_FUNC(__res_send, ,
2307 [AC_CHECK_LIB(resolv, res_send, resolv=yes,
2308 [AC_CHECK_LIB(resolv, __res_send, resolv=yes)])])])
2309 if test "$resolv" = yes ; then
2310 RESOLVLIB=-lresolv
5e7d772d
AS
2311 AC_DEFINE(HAVE_LIBRESOLV, 1,
2312 [Define to 1 if you have the resolv library (-lresolv).])
84e70f78
KR
2313 else
2314 RESOLVLIB=
2315 fi
2316 AC_CHECK_FUNC(hes_getmailhost, , [AC_CHECK_LIB(hesiod, hes_getmailhost,
5e7d772d
AS
2317 AC_DEFINE(HAVE_LIBHESIOD, 1,
2318 [Define to 1 if you have the hesiod library (-lhesiod).]),
2319 :, $RESOLVLIB)])
84e70f78
KR
2320fi
2321
a21616bd
KR
2322# These tell us which Kerberos-related libraries to use.
2323if test "${with_kerberos+set}" = set; then
2324 AC_CHECK_LIB(com_err, com_err)
2325 AC_CHECK_LIB(k5crypto, mit_des_cbc_encrypt)
2326 AC_CHECK_LIB(crypto, mit_des_cbc_encrypt)
2327 AC_CHECK_LIB(krb5, krb5_init_context)
2328 if test "${with_kerberos5+set}" != set; then
2329 AC_CHECK_LIB(des425, des_cbc_encrypt,,
2330 AC_CHECK_LIB(des, des_cbc_encrypt))
2331 AC_CHECK_LIB(krb4, krb_get_cred,,
2332 AC_CHECK_LIB(krb, krb_get_cred))
2333 fi
2334
2335 if test "${with_kerberos5+set}" = set; then
2336 AC_CHECK_HEADERS(krb5.h)
2337 else
2338 AC_CHECK_HEADERS(des.h,,
5a129faf
PE
2339 [AC_CHECK_HEADERS(kerberosIV/des.h,,
2340 [AC_CHECK_HEADERS(kerberos/des.h)])])
a21616bd 2341 AC_CHECK_HEADERS(krb.h,,
5a129faf
PE
2342 [AC_CHECK_HEADERS(kerberosIV/krb.h,,
2343 [AC_CHECK_HEADERS(kerberos/krb.h)])])
a21616bd
KR
2344 fi
2345 AC_CHECK_HEADERS(com_err.h)
2346fi
2347
c4510052
PE
2348# Solaris requires -lintl if you want strerror (which calls dgettext)
2349# to return localized messages.
2350AC_CHECK_LIB(intl, dgettext)
2351
0c565a0a
RS
2352AC_MSG_CHECKING(whether localtime caches TZ)
2353AC_CACHE_VAL(emacs_cv_localtime_cache,
fcc303f4 2354[if test x$ac_cv_func_tzset = xyes; then
0c565a0a 2355AC_TRY_RUN([#include <time.h>
22cc077c
RS
2356extern char **environ;
2357unset_TZ ()
2358{
2359 char **from, **to;
2360 for (to = from = environ; (*to = *from); from++)
2361 if (! (to[0][0] == 'T' && to[0][1] == 'Z' && to[0][2] == '='))
2362 to++;
2363}
98ab445d
RS
2364char TZ_GMT0[] = "TZ=GMT0";
2365char TZ_PST8[] = "TZ=PST8";
0c565a0a
RS
2366main()
2367{
2368 time_t now = time ((time_t *) 0);
22cc077c 2369 int hour_GMT0, hour_unset;
98ab445d 2370 if (putenv (TZ_GMT0) != 0)
0c565a0a 2371 exit (1);
22cc077c
RS
2372 hour_GMT0 = localtime (&now)->tm_hour;
2373 unset_TZ ();
2374 hour_unset = localtime (&now)->tm_hour;
98ab445d 2375 if (putenv (TZ_PST8) != 0)
0c565a0a 2376 exit (1);
22cc077c
RS
2377 if (localtime (&now)->tm_hour == hour_GMT0)
2378 exit (1);
2379 unset_TZ ();
2380 if (localtime (&now)->tm_hour != hour_unset)
2381 exit (1);
2382 exit (0);
0c565a0a
RS
2383}], emacs_cv_localtime_cache=no, emacs_cv_localtime_cache=yes,
2384[# If we have tzset, assume the worst when cross-compiling.
2385emacs_cv_localtime_cache=yes])
2386else
2387 # If we lack tzset, report that localtime does not cache TZ,
2388 # since we can't invalidate the cache if we don't have tzset.
2389 emacs_cv_localtime_cache=no
2390fi])dnl
2391AC_MSG_RESULT($emacs_cv_localtime_cache)
2392if test $emacs_cv_localtime_cache = yes; then
5e7d772d
AS
2393 AC_DEFINE(LOCALTIME_CACHE, 1,
2394 [Define to 1 if localtime caches TZ.])
0c565a0a 2395fi
9ec10b2f 2396
3d68df05 2397if test "x$HAVE_TIMEVAL" = xyes; then
8a2c2328 2398 AC_CHECK_FUNCS(gettimeofday)
5e7d772d
AS
2399 if test $ac_cv_func_gettimeofday = yes; then
2400 AC_CACHE_CHECK(whether gettimeofday can accept two arguments,
2401 emacs_cv_gettimeofday_two_arguments,
2402 [AC_TRY_COMPILE([
5ab52d42
RS
2403#ifdef TIME_WITH_SYS_TIME
2404#include <sys/time.h>
2405#include <time.h>
2406#else
2407#ifdef HAVE_SYS_TIME_H
2408#include <sys/time.h>
2409#else
2410#include <time.h>
2411#endif
290c1191 2412#endif],
5e7d772d
AS
2413 [struct timeval time;
2414 gettimeofday (&time, 0);],
2415 emacs_cv_gettimeofday_two_arguments=yes,
2416 emacs_cv_gettimeofday_two_arguments=no)])
2417 if test $emacs_cv_gettimeofday_two_arguments = no; then
2418 AC_DEFINE(GETTIMEOFDAY_ONE_ARGUMENT, 1,
2419 [Define to 1 if gettimeofday accepts only one argument.])
2420 fi
fd0a060b 2421 fi
5ab52d42
RS
2422fi
2423
12c0a8da
DL
2424# This defines (or not) HAVE_TZNAME and HAVE_TM_ZONE.
2425AC_STRUCT_TIMEZONE
2426
8a2c2328
DL
2427dnl Note that AC_STRUCT_TIMEZONE doesn't do what you might expect.
2428if test "$ac_cv_func_gettimeofday" = yes; then
2429 AC_CACHE_CHECK([for struct timezone], emacs_cv_struct_timezone,
2430 [AC_TRY_COMPILE([#include <sys/time.h>],
2431 [struct timezone tz;],
2432 dnl It may be that we can't call gettimeofday with a non-null pointer,
2433 dnl even though we have struct timezone (e.g. HPUX). In that case
2434 dnl we'll lie about struct timezone.
2435 [AC_TRY_RUN([
2436#ifdef TIME_WITH_SYS_TIME
2437#include <sys/time.h>
2438#include <time.h>
2439#else
2440#ifdef HAVE_SYS_TIME_H
2441#include <sys/time.h>
2442#else
2443#include <time.h>
2444#endif
2445#endif
2446main () {
2447 struct timeval time;
2448 struct timezone dummy;
2449 exit (gettimeofday (&time, &dummy));
2450}],
2451 emacs_cv_struct_timezone=yes,
2452 emacs_cv_struct_timezone=no, emacs_cv_struct_timezone=yes)],
2453 emacs_cv_struct_timezone=no)])
2454fi
2455
9ec10b2f 2456ok_so_far=yes
6e0dc84a 2457AC_CHECK_FUNC(socket, , ok_so_far=no)
9ec10b2f 2458if test $ok_so_far = yes; then
6e0dc84a 2459 AC_CHECK_HEADER(netinet/in.h, , ok_so_far=no)
9ec10b2f
DM
2460fi
2461if test $ok_so_far = yes; then
6e0dc84a 2462 AC_CHECK_HEADER(arpa/inet.h, , ok_so_far=no)
9ec10b2f
DM
2463fi
2464if test $ok_so_far = yes; then
91b5aa9a 2465dnl Fixme: Not used. Should this be HAVE_SOCKETS?
5e7d772d
AS
2466 AC_DEFINE(HAVE_INET_SOCKETS, 1,
2467 [Define to 1 if you have inet sockets.])
9ec10b2f
DM
2468fi
2469
7bbbba31 2470if test -f /usr/lpp/X11/bin/smt.exp; then
5e7d772d
AS
2471 AC_DEFINE(HAVE_AIX_SMT_EXP, 1,
2472 [Define to 1 if the file /usr/lpp/X11/bin/smt.exp exists.])
7bbbba31
DM
2473fi
2474
27b07953
GM
2475AC_MSG_CHECKING(whether system supports dynamic ptys)
2476if test -d /dev/pts && ls -d /dev/ptmx > /dev/null 2>&1 ; then
2477 AC_MSG_RESULT(yes)
5e7d772d 2478 AC_DEFINE(HAVE_DEV_PTMX, 1, [Define to 1 if dynamic ptys are supported.])
27b07953
GM
2479else
2480 AC_MSG_RESULT(no)
2481fi
2482
5a129faf 2483AC_FUNC_FORK
79e12078 2484
fb33ec52
DL
2485dnl Adapted from Haible's version.
2486AC_CACHE_CHECK([for nl_langinfo and CODESET], emacs_cv_langinfo_codeset,
2487 [AC_TRY_LINK([#include <langinfo.h>],
2488 [char* cs = nl_langinfo(CODESET);],
2489 emacs_cv_langinfo_codeset=yes,
2490 emacs_cv_langinfo_codeset=no)
2491 ])
2492if test $emacs_cv_langinfo_codeset = yes; then
2493 AC_DEFINE(HAVE_LANGINFO_CODESET, 1,
2494 [Define if you have <langinfo.h> and nl_langinfo(CODESET).])
2495fi
2496
f3acf5be 2497AC_CHECK_TYPES(size_t)
8170f46b 2498
12c0a8da
DL
2499AC_TYPE_MBSTATE_T
2500
91b5aa9a
DL
2501dnl Restrict could probably be used effectively other than in regex.c.
2502AC_CACHE_CHECK([for C restrict keyword], emacs_cv_c_restrict,
2503 [AC_TRY_COMPILE([void fred (int *restrict x);], [],
2504 emacs_cv_c_restrict=yes,
2505 [AC_TRY_COMPILE([void fred (int *__restrict x);], [],
2506 emacs_cv_c_restrict=__restrict,
2507 emacs_cv_c_restrict=no)])])
2508case "$emacs_cv_c_restrict" in
2509 yes) emacs_restrict=restrict;;
2510 no) emacs_restrict="";;
2511 *) emacs_restrict="$emacs_cv_c_restrict";;
2512esac
2513if test "$emacs_restrict" != __restrict; then
2514 AC_DEFINE_UNQUOTED(__restrict, $emacs_restrict,
2515 [Define to compiler's equivalent of C99 restrict keyword.
2516 Don't define if equivalent is `__restrict'.])
2517fi
2518
2519AC_CACHE_CHECK([for C restricted array declarations], emacs_cv_c_restrict_arr,
2520 [AC_TRY_COMPILE([void fred (int x[__restrict]);], [],
2521 emacs_cv_c_restrict_arr=yes, emacs_cv_c_restrict_arr=no)])
2522if test "$emacs_cv_c_restrict_arr" = yes; then
2523 AC_DEFINE(__restrict_arr, __restrict,
2524 [Define to compiler's equivalent of C99 restrict keyword in array
2525 declarations. Define as empty for no equivalent.])
2526fi
2527
2528dnl Fixme: AC_SYS_POSIX_TERMIOS should probably be used, but it's not clear
2529dnl how the tty code is related to POSIX and/or other versions of termios.
4b121527
DL
2530dnl The following looks like a useful start.
2531dnl
2532dnl AC_SYS_POSIX_TERMIOS
2533dnl if test $ac_cv_sys_posix_termios = yes; then
2534dnl AC_DEFINE(HAVE_TERMIOS, 1, [Define to 1 if you have POSIX-style functions
2535dnl and macros for terminal control.])
2536dnl AC_DEFINE(HAVE_TCATTR, 1, [Define to 1 if you have tcgetattr and tcsetattr.])
2537dnl fi
91b5aa9a
DL
2538
2539dnl Fixme: Use AC_FUNC_MEMCMP since memcmp is used. (Needs libobj replacement.)
2540
9ec10b2f
DM
2541# Set up the CFLAGS for real compilation, so we can substitute it.
2542CFLAGS="$REAL_CFLAGS"
5a9bf171 2543CPPFLAGS="$REAL_CPPFLAGS"
9ec10b2f 2544
9ec10b2f 2545#### Find out which version of Emacs this is.
91b5aa9a
DL
2546[version=`grep 'defconst[ ]*emacs-version' ${srcdir}/lisp/version.el \
2547 | sed -e 's/^[^"]*"\([^"]*\)".*$/\1/'`]
9ec10b2f 2548if test x"${version}" = x; then
91b5aa9a 2549 AC_MSG_ERROR([can't find current emacs version in `${srcdir}/lisp/version.el'.])
9ec10b2f
DM
2550fi
2551
9ec10b2f
DM
2552### Specify what sort of things we'll be editing into Makefile and config.h.
2553### Use configuration here uncanonicalized to avoid exceeding size limits.
2554AC_SUBST(version)
2555AC_SUBST(configuration)
3cd69289 2556AC_SUBST(canonical)
9ec10b2f
DM
2557AC_SUBST(srcdir)
2558AC_SUBST(prefix)
2559AC_SUBST(exec_prefix)
2560AC_SUBST(bindir)
2561AC_SUBST(datadir)
3cd69289
DM
2562AC_SUBST(sharedstatedir)
2563AC_SUBST(libexecdir)
9ec10b2f
DM
2564AC_SUBST(mandir)
2565AC_SUBST(infodir)
2566AC_SUBST(lispdir)
2567AC_SUBST(locallisppath)
2568AC_SUBST(lisppath)
66d736a9 2569AC_SUBST(x_default_search_path)
9ec10b2f 2570AC_SUBST(etcdir)
9ec10b2f
DM
2571AC_SUBST(archlibdir)
2572AC_SUBST(docdir)
3cd69289 2573AC_SUBST(bitmapdir)
93c05c18
CW
2574AC_SUBST(gamedir)
2575AC_SUBST(gameuser)
9ec10b2f
DM
2576AC_SUBST(c_switch_system)
2577AC_SUBST(c_switch_machine)
2578AC_SUBST(LD_SWITCH_X_SITE)
2579AC_SUBST(LD_SWITCH_X_SITE_AUX)
2580AC_SUBST(C_SWITCH_X_SITE)
2581AC_SUBST(CFLAGS)
2582AC_SUBST(X_TOOLKIT_TYPE)
2583AC_SUBST(machfile)
2584AC_SUBST(opsysfile)
1ca2077a 2585AC_SUBST(GETLOADAVG_LIBS)
52cd7d02 2586AC_SUBST(carbon_appdir)
9ec10b2f 2587
5e7d772d
AS
2588AC_DEFINE_UNQUOTED(EMACS_CONFIGURATION, "${canonical}",
2589 [Define to the canonical Emacs configuration name.])
2590AC_DEFINE_UNQUOTED(EMACS_CONFIG_OPTIONS, "${ac_configure_args}",
2591 [Define to the options passed to configure.])
2592AC_DEFINE_UNQUOTED(config_machfile, "${machfile}",
2593 [Define to the used machine dependent file.])
2594AC_DEFINE_UNQUOTED(config_opsysfile, "${opsysfile}",
2595 [Define to the used os dependent file.])
2596AC_DEFINE_UNQUOTED(LD_SWITCH_X_SITE, ${LD_SWITCH_X_SITE},
2597[Define LD_SWITCH_X_SITE to contain any special flags your loader
2598 may need to deal with X Windows. For instance, if you've defined
2599 HAVE_X_WINDOWS above and your X libraries aren't in a place that
2600 your loader can find on its own, you might want to add "-L/..." or
2601 something similar.])
2602AC_DEFINE_UNQUOTED(LD_SWITCH_X_SITE_AUX, ${LD_SWITCH_X_SITE_AUX},
2603 [Define LD_SWITCH_X_SITE_AUX with an -R option
2604 in case it's needed (for Solaris, for example).])
2605AC_DEFINE_UNQUOTED(C_SWITCH_X_SITE, ${C_SWITCH_X_SITE},
2606[Define C_SWITCH_X_SITE to contain any special flags your compiler
2607 may need to deal with X Windows. For instance, if you've defined
2608 HAVE_X_WINDOWS above and your X include files aren't in a place
2609 that your compiler can find on its own, you might want to add
2610 "-I/..." or something similar.])
2611AC_DEFINE_UNQUOTED(UNEXEC_SRC, ${UNEXEC_SRC},
2612 [Define to the unexec source file name.])
9ec10b2f
DM
2613
2614if test "${HAVE_X_WINDOWS}" = "yes" ; then
5e7d772d
AS
2615 AC_DEFINE(HAVE_X_WINDOWS, 1,
2616 [Define to 1 if you want to use the X window system.])
9ec10b2f
DM
2617fi
2618if test "${USE_X_TOOLKIT}" != "none" ; then
5e7d772d 2619 AC_DEFINE(USE_X_TOOLKIT, 1, [Define to 1 if using an X toolkit.])
9ec10b2f
DM
2620fi
2621if test "${HAVE_X11}" = "yes" ; then
5e7d772d
AS
2622 AC_DEFINE(HAVE_X11, 1,
2623 [Define to 1 if you want to use version 11 of X windows.
2624 Otherwise, Emacs expects to use version 10.])
9ec10b2f
DM
2625fi
2626if test "${HAVE_XFREE386}" = "yes" ; then
5e7d772d 2627 AC_DEFINE(HAVE_XFREE386, 1, [Define to 1 if you're using XFree386.])
9ec10b2f 2628fi
08741ba9 2629if test "${HAVE_MENUS}" = "yes" ; then
5e7d772d
AS
2630 AC_DEFINE(HAVE_MENUS, 1,
2631 [Define to 1 if you have mouse menus.
2632 (This is automatic if you use X, but the option to specify it remains.)
2633 It is also defined with other window systems that support xmenu.c.])
9ec10b2f
DM
2634fi
2635if test "${GNU_MALLOC}" = "yes" ; then
5e7d772d
AS
2636 AC_DEFINE(GNU_MALLOC, 1,
2637 [Define to 1 if you want to use the GNU memory allocator.])
9ec10b2f
DM
2638fi
2639if test "${REL_ALLOC}" = "yes" ; then
5e7d772d
AS
2640 AC_DEFINE(REL_ALLOC, 1,
2641 [Define REL_ALLOC if you want to use the relocating allocator for
2642 buffer space.])
9ec10b2f 2643fi
9ec10b2f 2644
f3acf5be
DL
2645AH_TOP([/* GNU Emacs site configuration template file.
2646 Copyright (C) 1988, 93, 94, 99, 2000, 2002 Free Software Foundation, Inc.
5e7d772d
AS
2647
2648This file is part of GNU Emacs.
2649
2650GNU Emacs is free software; you can redistribute it and/or modify
2651it under the terms of the GNU General Public License as published by
2652the Free Software Foundation; either version 2, or (at your option)
2653any later version.
2654
2655GNU Emacs is distributed in the hope that it will be useful,
2656but WITHOUT ANY WARRANTY; without even the implied warranty of
2657MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2658GNU General Public License for more details.
2659
2660You should have received a copy of the GNU General Public License
2661along with GNU Emacs; see the file COPYING. If not, write to the
2662Free Software Foundation, Inc., 59 Temple Place - Suite 330,
2663Boston, MA 02111-1307, USA. */
2664
2665
91b5aa9a 2666/* No code in Emacs #includes config.h twice, but some bits of code
177c0ea7 2667 intended to work with other packages as well (like gmalloc.c)
5e7d772d
AS
2668 think they can include it as many times as they like. */
2669#ifndef EMACS_CONFIG_H
2670#define EMACS_CONFIG_H
2671])dnl
2672
2673AH_BOTTOM([
2674/* If we're using any sort of window system, define some consequences. */
2675#ifdef HAVE_X_WINDOWS
2676#define HAVE_WINDOW_SYSTEM
2677#define MULTI_KBOARD
2678#define HAVE_MOUSE
2679#endif
2680
e3ba1015
AC
2681/* If we're using the Carbon API on Mac OS X, define a few more
2682 variables as well. */
2683#ifdef HAVE_CARBON
2684#define HAVE_WINDOW_SYSTEM
2685#define HAVE_MOUSE
e3ba1015
AC
2686#endif
2687
5e7d772d
AS
2688/* Define USER_FULL_NAME to return a string
2689 that is the user's full name.
2690 It can assume that the variable `pw'
2691 points to the password file entry for this user.
2692
2693 At some sites, the pw_gecos field contains
2694 the user's full name. If neither this nor any other
2695 field contains the right thing, use pw_name,
2696 giving the user's login name, since that is better than nothing. */
2697#define USER_FULL_NAME pw->pw_gecos
2698
2699/* Define AMPERSAND_FULL_NAME if you use the convention
2700 that & in the full name stands for the login id. */
2701/* Turned on June 1996 supposing nobody will mind it. */
2702#define AMPERSAND_FULL_NAME
2703
1c3a8acf
DL
2704/* We have blockinput.h. */
2705#define DO_BLOCK_INPUT
2706
5e7d772d
AS
2707/* Define HAVE_SOUND if we have sound support. We know it works
2708 and compiles only on the specified platforms. For others,
2709 it probably doesn't make sense to try. */
2710
2711#if defined __FreeBSD__ || defined __NetBSD__ || defined __linux__
2712#ifdef HAVE_MACHINE_SOUNDCARD_H
2713#define HAVE_SOUND 1
2714#endif
2715#ifdef HAVE_SYS_SOUNDCARD_H
2716#define HAVE_SOUND 1
2717#endif
2718#ifdef HAVE_SOUNDCARD_H
2719#define HAVE_SOUND 1
2720#endif
2721#endif /* __FreeBSD__ || __NetBSD__ || __linux__ */
2722
2723/* If using GNU, then support inline function declarations. */
2724/* Don't try to switch on inline handling as detected by AC_C_INLINE
2725 generally, because even if non-gcc compilers accept `inline', they
2726 may reject `extern inline'. */
2727#ifdef __GNUC__
2728#define INLINE __inline__
2729#else
2730#define INLINE
2731#endif
2732
2733/* Include the os and machine dependent files. */
2734#include config_opsysfile
2735#include config_machfile
2736
2737/* Load in the conversion definitions if this system
2738 needs them and the source file being compiled has not
2739 said to inhibit this. There should be no need for you
2740 to alter these lines. */
2741
2742#ifdef SHORTNAMES
2743#ifndef NO_SHORTNAMES
2744#include "../shortnames/remap.h"
2745#endif /* not NO_SHORTNAMES */
2746#endif /* SHORTNAMES */
2747
2748/* If no remapping takes place, static variables cannot be dumped as
2749 pure, so don't worry about the `static' keyword. */
2750#ifdef NO_REMAP
2751#undef static
2752#endif
2753
2754/* Define `subprocesses' should be defined if you want to
2755 have code for asynchronous subprocesses
2756 (as used in M-x compile and M-x shell).
2757 These do not work for some USG systems yet;
2758 for the ones where they work, the s/SYSTEM.h file defines this flag. */
2759
2760#ifndef VMS
2761#ifndef USG
2762/* #define subprocesses */
2763#endif
2764#endif
2765
2766/* SIGTYPE is the macro we actually use. */
2767#ifndef SIGTYPE
2768#define SIGTYPE RETSIGTYPE
2769#endif
2770
2771#ifdef emacs /* Don't do this for lib-src. */
2772/* Tell regex.c to use a type compatible with Emacs. */
2773#define RE_TRANSLATE_TYPE Lisp_Object
2774#define RE_TRANSLATE(TBL, C) CHAR_TABLE_TRANSLATE (TBL, C)
2775#define RE_TRANSLATE_P(TBL) (XFASTINT (TBL) != 0)
2776#endif
2777
2778/* Avoid link-time collision with system mktime if we will use our own. */
2779#if ! HAVE_MKTIME || BROKEN_MKTIME
2780#define mktime emacs_mktime
2781#endif
2782
1c3a8acf
DL
2783#define my_strftime nstrftime /* for strftime.c */
2784
5e7d772d
AS
2785/* The rest of the code currently tests the CPP symbol BSTRING.
2786 Override any claims made by the system-description files.
2787 Note that on some SCO version it is possible to have bcopy and not bcmp. */
2788#undef BSTRING
2789#if defined (HAVE_BCOPY) && defined (HAVE_BCMP)
2790#define BSTRING
2791#endif
2792
2793/* Some of the files of Emacs which are intended for use with other
2794 programs assume that if you have a config.h file, you must declare
2795 the type of getenv.
2796
2797 This declaration shouldn't appear when alloca.s or Makefile.in
2798 includes config.h. */
2799#ifndef NOT_C_CODE
2800extern char *getenv ();
2801#endif
2802
5e7d772d
AS
2803/* These default definitions are good for almost all machines.
2804 The exceptions override them in m/MACHINE.h. */
2805
2806#ifndef BITS_PER_CHAR
2807#define BITS_PER_CHAR 8
2808#endif
2809
2810#ifndef BITS_PER_SHORT
2811#define BITS_PER_SHORT 16
2812#endif
2813
2814/* Note that lisp.h uses this in a preprocessor conditional, so it
2815 would not work to use sizeof. That being so, we do all of them
2816 without sizeof, for uniformity's sake. */
2817#ifndef BITS_PER_INT
2818#define BITS_PER_INT 32
2819#endif
2820
2821#ifndef BITS_PER_LONG
2822#ifdef _LP64
2823#define BITS_PER_LONG 64
2824#else
2825#define BITS_PER_LONG 32
2826#endif
2827#endif
2828
2829/* Define if the compiler supports function prototypes. It may do so
2830 but not define __STDC__ (e.g. DEC C by default) or may define it as
2831 zero. */
2832#undef PROTOTYPES
2833/* For mktime.c: */
2834#ifndef __P
2835# if defined PROTOTYPES
2836# define __P(args) args
2837# else
2838# define __P(args) ()
2839# endif /* GCC. */
2840#endif /* __P */
2841
5e7d772d
AS
2842/* Don't include "string.h" or <stdlib.h> in non-C code. */
2843#ifndef NOT_C_CODE
2844#ifdef HAVE_STRING_H
2845#include "string.h"
2846#endif
f3acf5be
DL
2847#ifdef HAVE_STRINGS_H
2848#include "strings.h" /* May be needed for bcopy & al. */
2849#endif
5e7d772d
AS
2850#ifdef HAVE_STDLIB_H
2851#include <stdlib.h>
2852#endif
91b5aa9a
DL
2853#ifndef __GNUC__
2854# ifdef HAVE_ALLOCA_H
2855# include <alloca.h>
2856# else /* AIX files deal with #pragma. */
2857# ifndef alloca /* predefined by HP cc +Olibcalls */
2858char *alloca ();
2859# endif
2860# endif /* HAVE_ALLOCA_H */
2861#endif /* __GNUC__ */
17b3d9f6 2862#ifndef HAVE_SIZE_T
f968418d 2863typedef unsigned size_t;
17b3d9f6 2864#endif
91b5aa9a 2865#endif /* NOT_C_CODE */
5e7d772d
AS
2866
2867/* Define HAVE_X_I18N if we have usable i18n support. */
2868
2869#ifdef HAVE_X11R6
2870#define HAVE_X_I18N
2871#elif defined HAVE_X11R5 && !defined X11R5_INHIBIT_I18N
2872#define HAVE_X_I18N
2873#endif
2874
2875/* Define HAVE_X11R6_XIM if we have usable X11R6-style XIM support. */
2876
2877#if defined HAVE_X11R6 && !defined INHIBIT_X11R6_XIM
2878#define HAVE_X11R6_XIM
2879#endif
2880
2881/* Should we enable expensive run-time checking of data types? */
2882#undef ENABLE_CHECKING
2883
2884#if defined __GNUC__ && (__GNUC__ > 2 \
2885 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 5))
2886#define NO_RETURN __attribute__ ((__noreturn__))
2887#else
2888#define NO_RETURN /* nothing */
2889#endif
f3acf5be 2890
91b5aa9a
DL
2891/* These won't be used automatically yet. We also need to know, at least,
2892 that the stack is continuous. */
2893#ifdef __GNUC__
2894# ifndef GC_SETJMP_WORKS
2895 /* GC_SETJMP_WORKS is nearly always appropriate for GCC --
177c0ea7 2896 see NON_SAVING_SETJMP in the target descriptions. */
91b5aa9a
DL
2897 /* Exceptions (see NON_SAVING_SETJMP in target description) are ns32k,
2898 SCO5 non-ELF (but Emacs specifies ELF) and SVR3 on x86.
2899 Fixme: Deal with ns32k, SVR3. */
2900# define GC_SETJMP_WORKS 1
2901# endif
2902# ifndef GC_LISP_OBJECT_ALIGNMENT
2903# define GC_LISP_OBJECT_ALIGNMENT (__alignof__ (Lisp_Object))
2904# endif
2905#endif
2906
efd60266
JB
2907#ifndef HAVE_BCOPY
2908#define bcopy(a,b,s) memcpy (b,a,s)
2909#endif
2910#ifndef HAVE_BZERO
2911#define bzero(a,s) memset (a,0,s)
2912#endif
2913#ifndef HAVE_BCMP
2914#define BCMP memcmp
2915#endif
91b5aa9a
DL
2916
2917#endif /* EMACS_CONFIG_H */
2918
177c0ea7 2919/*
91b5aa9a 2920Local Variables:
f3acf5be
DL
2921mode: c
2922End:
2923*/
5e7d772d 2924])dnl
f0f2756d 2925
9ec10b2f 2926#### Report on what we decided to do.
488dd4c4
JD
2927#### Report GTK as a toolkit, even if it doesn't use Xt.
2928#### It makes printing result more understandable as using GTK sets
2929#### toolkit_scroll_bars to yes by default.
2930if test "${HAVE_GTK}" = "yes"; then
2931 USE_X_TOOLKIT=GTK
2932fi
2933
9ec10b2f 2934echo "
9ec10b2f
DM
2935Configured for \`${canonical}'.
2936
2937 Where should the build process find the source code? ${srcdir}
2938 What operating system and machine description files should Emacs use?
2939 \`${opsysfile}' and \`${machfile}'
2940 What compiler should emacs be built with? ${CC} ${CFLAGS}
2941 Should Emacs use the GNU version of malloc? ${GNU_MALLOC}${GNU_MALLOC_reason}
b1b4ce06 2942 Should Emacs use a relocating allocator for buffers? ${REL_ALLOC}
e32fac2a 2943 Should Emacs use mmap(2) for buffer allocation? $use_mmap_for_buffers
9ec10b2f 2944 What window system should Emacs use? ${window_system}
dc16594b 2945 What toolkit should Emacs use? ${USE_X_TOOLKIT}"
509fccc3
RS
2946
2947if test -n "${x_includes}"; then
2948echo " Where do we find X Windows header files? ${x_includes}"
2949else
2950echo " Where do we find X Windows header files? Standard dirs"
2951fi
2952if test -n "${x_libraries}"; then
2953echo " Where do we find X Windows libraries? ${x_libraries}"
2954else
2955echo " Where do we find X Windows libraries? Standard dirs"
2956fi
9ec10b2f 2957
b412189c
GM
2958echo " Does Emacs use -lXaw3d? ${HAVE_XAW3D}"
2959echo " Does Emacs use -lXpm? ${HAVE_XPM}"
2960echo " Does Emacs use -ljpeg? ${HAVE_JPEG}"
495ccc04 2961echo " Does Emacs use -ltiff? ${HAVE_TIFF}"
b412189c
GM
2962echo " Does Emacs use -lungif? ${HAVE_GIF}"
2963echo " Does Emacs use -lpng? ${HAVE_PNG}"
20c1822e 2964echo " Does Emacs use X toolkit scroll bars? ${USE_TOOLKIT_SCROLL_BARS}"
509fccc3 2965echo
9ec10b2f
DM
2966
2967# Remove any trailing slashes in these variables.
91b5aa9a 2968[test "${prefix}" != NONE &&
9ec10b2f
DM
2969 prefix=`echo "${prefix}" | sed 's,\([^/]\)/*$,\1,'`
2970test "${exec_prefix}" != NONE &&
91b5aa9a 2971 exec_prefix=`echo "${exec_prefix}" | sed 's,\([^/]\)/*$,\1,'`]
9ec10b2f 2972
3aa40e0e
GM
2973## Check if the C preprocessor will convert `..' to `. .'. If so, set
2974## CPP_NEED_TRADITIONAL to `yes' so that the code to generate Makefile
2975## from Makefile.c can correctly provide the arg `-traditional' to the
2976## C preprocessor.
2977
2978AC_EGREP_CPP(yes..yes,
2979 [yes..yes],
2980 CPP_NEED_TRADITIONAL=no,
2981 CPP_NEED_TRADITIONAL=yes)
2982
5f8c8f00 2983AC_OUTPUT(Makefile lib-src/Makefile.c:lib-src/Makefile.in oldXMenu/Makefile \
66a96cff 2984 man/Makefile lwlib/Makefile src/Makefile.c:src/Makefile.in \
56a0a075 2985 lisp/Makefile lispref/Makefile lispintro/Makefile leim/Makefile, [
7bbbba31 2986
b63df577 2987### Make the necessary directories, if they don't exist.
e0a3686b 2988for dir in etc lisp ; do
b3947967 2989 test -d ${dir} || mkdir ${dir}
9ec10b2f
DM
2990done
2991
5f8c8f00
RS
2992# Build src/Makefile from ${srcdir}/src/Makefile.c
2993# and lib-src/Makefile from ${srcdir}/lib-src/Makefile.c
2994# This must be done after src/config.h is built, since we rely on that file.
9ec10b2f 2995
9ec10b2f
DM
2996# Now get this: Some word that is part of the ${srcdir} directory name
2997# or the ${configuration} value might, just might, happen to be an
2998# identifier like `sun4' or `i386' or something, and be predefined by
2999# the C preprocessor to some helpful value like 1, or maybe the empty
3000# string. Needless to say consequent macro substitutions are less
3001# than conducive to the makefile finding the correct directory.
91b5aa9a 3002[undefs="`echo $top_srcdir $configuration $canonical |
9ec10b2f
DM
3003sed -e 's/[^a-zA-Z0-9_]/ /g' -e 's/^/ /' -e 's/ *$//' \
3004 -e 's/ */ -U/g' -e 's/-U[0-9][^ ]*//g' \
91b5aa9a 3005`"]
9ec10b2f 3006
6a4bb05d 3007echo creating src/epaths.h
f8f7ab54 3008${MAKE-make} epaths-force
ab85d355 3009
c776f30b
GM
3010# As of 2000-11-19, newest development versions of GNU cpp preprocess
3011# `..' to `. .' unless invoked with -traditional
3012
3aa40e0e 3013if test "x$GCC" = xyes && test "x$CPP_NEED_TRADITIONAL" = xyes; then
c776f30b
GM
3014 CPPFLAGS="$CPPFLAGS -traditional"
3015fi
3016
9ec10b2f
DM
3017echo creating lib-src/Makefile
3018( cd lib-src
3019 rm -f junk.c junk1.c junk2.c
3020 sed -e '/start of cpp stuff/q' \
5f8c8f00 3021 < Makefile.c > junk1.c
9ec10b2f 3022 sed -e '1,/start of cpp stuff/d'\
3b74127d 3023 -e 's,/\*\*/#\(.*\)$,/* \1 */,' \
5f8c8f00 3024 < Makefile.c > junk.c
e9b2a022 3025 $CPP $undefs -I. -I$srcdir/src $CPPFLAGS junk.c | \
9ec10b2f
DM
3026 sed -e 's/^ / /' -e '/^#/d' -e '/^[ \f]*$/d' > junk2.c
3027 cat junk1.c junk2.c > Makefile.new
3028 rm -f junk.c junk1.c junk2.c
3029 chmod 444 Makefile.new
3030 mv -f Makefile.new Makefile
3031)
3032
3033echo creating src/Makefile
3034( cd src
3035 rm -f junk.c junk1.c junk2.c
3036 sed -e '/start of cpp stuff/q' \
5f8c8f00 3037 < Makefile.c > junk1.c
9ec10b2f 3038 sed -e '1,/start of cpp stuff/d'\
3b74127d 3039 -e 's,/\*\*/#\(.*\)$,/* \1 */,' \
5f8c8f00 3040 < Makefile.c > junk.c
e9b2a022 3041 $CPP $undefs -I. -I$srcdir/src $CPPFLAGS junk.c | \
9ec10b2f
DM
3042 sed -e 's/^ / /' -e '/^#/d' -e '/^[ \f]*$/d' > junk2.c
3043 cat junk1.c junk2.c > Makefile.new
3044 rm -f junk.c junk1.c junk2.c
3045 chmod 444 Makefile.new
3046 mv -f Makefile.new Makefile
3047)
8b66759a 3048
e9b2a022 3049if test ! -f src/.gdbinit && test -f $srcdir/src/.gdbinit; then
8b66759a 3050 echo creating src/.gdbinit
e9b2a022 3051 echo source $srcdir/src/.gdbinit > src/.gdbinit
8b66759a
DM
3052fi
3053
66a96cff
RS
3054# This is how we know whether to re-run configure in certain cases.
3055touch src/config.stamp
3056
3aa40e0e 3057], [GCC="$GCC" NON_GNU_CPP="$NON_GNU_CPP" CPP="$CPP" CPP_NEED_TRADITIONAL="$CPP_NEED_TRADITIONAL" CPPFLAGS="$CPPFLAGS"])
464c7d2d 3058