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