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