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