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