Ulf Jasper <ulf.jasper at web.de>
[emacs.git] / configure.in
blobb06985a340a2882f6197682b5933e78fbf89d897
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, 2008  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.
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)
31 dnl Support for --program-prefix, --program-suffix and
32 dnl --program-transform-name options
33 AC_ARG_PROGRAM
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'
44 gameuser=games
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
55 EMACS_ARG_N([gcc],[don't use GCC to compile Emacs if GCC is found])
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
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
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])
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])
86 EMACS_ARG_N([sound],[don't compile with sound support])
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
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])
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}])
130 AC_ARG_ENABLE(asserts,
131 [AS_HELP_STRING([--enable-asserts], [compile code with asserts enabled])],
132       USE_XASSERTS=$enableval,
133       USE_XASSERTS=no)
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=#
146 AC_SUBST(MAINT)
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}
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
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.]])
193 #### Given the configuration name, set machfile and opsysfile to the
194 #### names of the m/*.h and s/*.h files we should use.
196 ### Canonicalize the configuration name.
198 AC_CANONICAL_HOST
199 canonical=$host
200 configuration=${host_alias-${build_alias-$host}}
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.
207 dnl Since Emacs can't find matching pairs of quotes, boundaries are
208 dnl indicated by comments.
209 dnl quotation begins
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.
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.
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.
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'."
235 machine='' opsys='' unported=no
236 case "${canonical}" in
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   ;;
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   ;;
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
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   ;;
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   ;;
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   ;;
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   ;;
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   ;;
351   alpha*-*-linux-gnu* )
352     machine=alpha opsys=gnu-linux
353   ;;
355   arm*-*-linux-gnu* )
356     machine=arm opsys=gnu-linux
357   ;;
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   ;;
377   ## Compaq Nonstop
378   mips-compaq-nonstopux* )
379     machine=nonstopux opsys=nonstopux
380     ;;
382   ## Cubix QBx/386
383   i[3456]86-cubix-sysv* )
384     machine=intel386 opsys=usg5-3
385   ;;
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   ;;
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   ;;
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   ;;
444   hppa*-*-linux-gnu* )
445     machine=hp800 opsys=gnu-linux
446   ;;
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   ;;
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   ;;
502   ## Prime EXL
503   i[3456]86-prime-sysv* )
504     machine=i386 opsys=usg5-3
505   ;;
507   ## ncr machine running svr4.3.
508   i[3456]86-ncr-sysv4.3 )
509     machine=ncr386 opsys=usg5-4-3
510   ;;
512   ## Unspecified sysv on an ncr machine defaults to svr4.2.
513   ## (Plain usg5-4 doesn't turn on POSIX signals, which we need.)
514   i[3456]86-ncr-sysv* )
515     machine=ncr386 opsys=usg5-4-2
516   ;;
518   ## Macintosh PowerPC
519   powerpc*-*-linux-gnu* )
520     machine=macppc opsys=gnu-linux
521   ;;
523   ## Workstations sold by MIPS
524   ## This is not necessarily all workstations using the MIPS processor -
525   ## Irises are produced by SGI, and DECstations by DEC.
527   ## etc/MACHINES lists mips.h and mips4.h as possible machine files,
528   ## and usg5-2-2 and bsd4-3 as possible OS files.  The only guidance
529   ## it gives for choosing between the alternatives seems to be "Use
530   ## -machine=mips4 for RISCOS version 4; use -opsystem=bsd4-3 with
531   ## the BSD world."  I'll assume that these are instructions for
532   ## handling two odd situations, and that every other situation
533   ## should use mips.h and usg5-2-2, they being listed first.
534   mips-mips-usg* )
535     machine=mips4
536     ## Fall through to the general code at the bottom to decide on the OS.
537   ;;
538   mips-mips-riscos4* )
539     machine=mips4 opsys=bsd4-3
540     NON_GNU_CC="cc -systype bsd43"
541     NON_GNU_CPP="cc -systype bsd43 -E"
542   ;;
543   mips-mips-riscos5* )
544     machine=mips4 opsys=riscos5
545     NON_GNU_CC="cc -systype bsd43"
546     NON_GNU_CPP="cc -systype bsd43 -E"
547   ;;
548   mips-mips-bsd* )
549     machine=mips opsys=bsd4-3
550   ;;
551   mips-mips-* )
552     machine=mips opsys=usg5-2-2
553   ;;
555   ## NeXT
556   m68*-next-* | m68k-*-nextstep* )
557     machine=m68k opsys=nextstep
558   ;;
560   ## NEC EWS4800
561   mips-nec-sysv4*)
562   machine=ews4800 opsys=ux4800
563   ;;
565   ## Siemens Nixdorf
566   mips-siemens-sysv* | mips-sni-sysv*)
567     machine=mips-siemens opsys=usg5-4
568     NON_GNU_CC=/usr/ccs/bin/cc
569     NON_GNU_CPP=/usr/ccs/lib/cpp
570   ;;
572   ## Silicon Graphics machines
573   ## Iris 4D
574   mips-sgi-irix3* )
575     machine=iris4d opsys=irix3-3
576   ;;
577   mips-sgi-irix4* )
578     machine=iris4d opsys=irix4-0
579   ;;
580   mips-sgi-irix6.5 )
581     machine=iris4d opsys=irix6-5
582     # Without defining _LANGUAGE_C, things get masked out in the headers
583     # so that, for instance, grepping for `free' in stdlib.h fails and
584     # AC_HEADER_STD_C fails.   (MIPSPro 7.2.1.2m compilers, Irix 6.5.3m).
585     NON_GNU_CPP="/lib/cpp -D_LANGUAGE_C"
586     NON_GCC_TEST_OPTIONS="-D_LANGUAGE_C"
587   ;;
588   mips-sgi-irix6* )
589     machine=iris4d opsys=irix6-0
590     # It's not clear whether -D_LANGUAGE_C is necessary as it is for 6.5,
591     # but presumably it does no harm.
592     NON_GNU_CPP="/lib/cpp -D_LANGUAGE_C"
593     # -32 probably isn't necessary in later v.6s -- anyone know which?
594     NON_GCC_TEST_OPTIONS=-32
595   ;;
596   mips-sgi-irix5.[01]* )
597     machine=iris4d opsys=irix5-0
598   ;;
599   mips-sgi-irix5* | mips-sgi-irix* )
600     machine=iris4d opsys=irix5-2
601   ;;
603   ## Suns
604   sparc-*-linux-gnu* | sparc64-*-linux-gnu* )
605     machine=sparc opsys=gnu-linux
606   ;;
608   *-auspex-sunos* | *-sun-sunos* | *-sun-bsd* | *-sun-solaris* \
609     | i[3456]86-*-solaris2* | i[3456]86-*-sunos5* | powerpc*-*-solaris2* \
610     | rs6000-*-solaris2*)
611     case "${canonical}" in
612       i[3456]86-*-* )     machine=intel386 ;;
613       amd64-*-*|x86_64-*-*)     machine=amdx86-64 ;;
614       powerpcle* )      machine=powerpcle ;;
615       powerpc* | rs6000* )  machine=ibmrs6000 ;;
616       sparc* )          machine=sparc ;;
617       * )               unported=yes ;;
618     esac
619     case "${canonical}" in
620       *-sunos5.3* | *-solaris2.3* )
621                 opsys=sol2-3
622                 NON_GNU_CPP=/usr/ccs/lib/cpp
623                 ;;
624       *-sunos5.4* | *-solaris2.4* )
625                 opsys=sol2-4
626                 NON_GNU_CPP=/usr/ccs/lib/cpp
627                 RANLIB="ar -ts"
628                 ;;
629       *-sunos5.5* | *-solaris2.5* )
630                 opsys=sol2-5
631                 NON_GNU_CPP=/usr/ccs/lib/cpp
632                 RANLIB="ar -ts"
633                 ;;
634       *-sunos5.6* | *-solaris2.6* )
635                 opsys=sol2-6
636                 NON_GNU_CPP=/usr/ccs/lib/cpp
637                 RANLIB="ar -ts"
638                 ;;
639       *-sunos5* | *-solaris* )
640                 opsys=sol2-6
641                 emacs_check_sunpro_c=yes
642                 NON_GNU_CPP=/usr/ccs/lib/cpp
643                 ;;
644       *                   ) opsys=bsd4-2   ;;
645     esac
646     ## Watch out for a compiler that we know will not work.
647     case "${canonical}" in
648      *-solaris* | *-sunos5* )
649                 if [ "x$CC" = x/usr/ucb/cc ]; then
650                   ## /usr/ucb/cc doesn't work;
651                   ## we should find some other compiler that does work.
652                   unset CC
653                 fi
654                 ;;
655       *) ;;
656     esac
657   ;;
658   sparc-*-nextstep* )
659     machine=sparc opsys=nextstep
660   ;;
662   ## Tandem Integrity S2
663   mips-tandem-sysv* )
664     machine=tandem-s2 opsys=usg5-3
665   ;;
667   ## Vaxen.
668   vax-dec-* )
669     machine=vax
670     case "${canonical}" in
671       *-bsd4.1* )                                       opsys=bsd4-1 ;;
672       *-bsd4.2* | *-ultrix[0-3].* | *-ultrix4.0* )      opsys=bsd4-2 ;;
673       *-bsd4.3* | *-ultrix* )                           opsys=bsd4-3 ;;
674       *-sysv[01]* | *-sysvr[01]* )                      opsys=usg5-0 ;;
675       *-sysv2* | *-sysvr2* )                            opsys=usg5-2 ;;
676       *-vms* )                                          opsys=vms ;;
677       * )                                               unported=yes
678     esac
679   ;;
681   ## IA-64
682   ia64*-*-linux* )
683     machine=ia64 opsys=gnu-linux
684   ;;
686   ## Intel 386 machines where we don't care about the manufacturer
687   i[3456]86-*-* )
688     machine=intel386
689     case "${canonical}" in
690       *-cygwin )                opsys=cygwin ;;
691       *-darwin* )               opsys=darwin
692                                 CPP="${CC-cc} -E -no-cpp-precomp"
693                                 ;;
694       *-xenix* )                opsys=xenix ;;
695       *-linux-gnu* )            opsys=gnu-linux ;;
696       *-sysv4.2uw* )            opsys=unixware; NON_GNU_CPP=/lib/cpp ;;
697       *-sysv5uw* )              opsys=unixware; NON_GNU_CPP=/lib/cpp ;;
698       *-sysv5OpenUNIX* )        opsys=unixware; NON_GNU_CPP=/lib/cpp ;;
699       *-386bsd* )               opsys=386bsd ;;
700       *-nextstep* )             opsys=nextstep ;;
701       ## Otherwise, we'll fall through to the generic opsys code at the bottom.
702     esac
703   ;;
705   ## m68k Linux-based GNU system
706   m68k-*-linux-gnu* )
707     machine=m68k opsys=gnu-linux
708   ;;
710   ## Mips Linux-based GNU system
711   mips-*-linux-gnu* | mipsel-*-linux-gnu* )
712     machine=mips opsys=gnu-linux
713   ;;
715   ## UXP/DS
716   sparc-fujitsu-sysv4* )
717     machine=sparc opsys=uxpds
718     NON_GNU_CPP=/usr/ccs/lib/cpp
719     RANLIB="ar -ts"
720   ;;
722   ## AMD x86-64 Linux-based GNU system
723   x86_64-*-linux-gnu* )
724     machine=amdx86-64 opsys=gnu-linux
725   ;;
727   ## Tensilica Xtensa Linux-based GNU system
728   xtensa-*-linux-gnu* )
729     machine=xtensa opsys=gnu-linux
730     ;;
732   * )
733     unported=yes
734   ;;
735 esac
737 ### If the code above didn't choose an operating system, just choose
738 ### an operating system based on the configuration name.  You really
739 ### only want to use this when you have no idea what the right
740 ### operating system is; if you know what operating systems a machine
741 ### runs, it's cleaner to make it explicit in the case statement
742 ### above.
743 if test x"${opsys}" = x; then
744   case "${canonical}" in
745     *-gnu* )                            opsys=gnu ;;
746     *-bsd4.[01] )                       opsys=bsd4-1 ;;
747     *-bsd4.2 )                          opsys=bsd4-2 ;;
748     *-bsd4.3 )                          opsys=bsd4-3 ;;
749     *-sysv0 | *-sysvr0 )                opsys=usg5-0 ;;
750     *-sysv2 | *-sysvr2 )                opsys=usg5-2 ;;
751     *-sysv2.2 | *-sysvr2.2 )            opsys=usg5-2-2 ;;
752     *-sysv3* | *-sysvr3* )              opsys=usg5-3 ;;
753     *-sysv4.2uw* )                      opsys=unixware ;;
754     *-sysv5uw* )                        opsys=unixware ;;
755     *-sysv5OpenUNIX* )                  opsys=unixware ;;
756     *-sysv4.1* | *-sysvr4.1* )
757         NON_GNU_CPP=/usr/lib/cpp
758         opsys=usg5-4 ;;
759     *-sysv4.[2-9]* | *-sysvr4.[2-9]* )
760         if [ x$NON_GNU_CPP = x ]; then
761           if [ -f /usr/ccs/lib/cpp ]; then
762             NON_GNU_CPP=/usr/ccs/lib/cpp
763           else
764             NON_GNU_CPP=/lib/cpp
765           fi
766         fi
767         opsys=usg5-4-2 ;;
768     *-sysv4* | *-sysvr4* )              opsys=usg5-4 ;;
769     * )
770       unported=yes
771     ;;
772   esac
776 dnl quotation ends
778 if test $unported = yes; then
779   AC_MSG_ERROR([Emacs hasn't been ported to `${canonical}' systems.
780 Check `etc/MACHINES' for recognized configuration names.])
783 machfile="m/${machine}.h"
784 opsysfile="s/${opsys}.h"
787 #### Choose a compiler.
788 test -n "$CC" && cc_specified=yes
790 # Save the value of CFLAGS that the user specified.
791 SPECIFIED_CFLAGS="$CFLAGS"
793 case ${with_gcc} in
794   "yes" ) CC="gcc" GCC=yes ;;
795   "no"  ) : ${CC=cc} ;;
796   * )
797 esac
798 AC_PROG_CC
800 # On Suns, sometimes $CPP names a directory.
801 if test -n "$CPP" && test -d "$CPP"; then
802   CPP=
805 ## If not using gcc, and on Solaris, and no CPP specified, see if
806 ## using a Sun compiler, which needs -Xs to prevent whitespace.
807 if test x"$GCC" != xyes && test x"$emacs_check_sunpro_c" = xyes && \
808  test x"$CPP" = x; then
809   AC_MSG_CHECKING([whether we are using a Sun C compiler])
810   AC_CACHE_VAL(emacs_cv_sunpro_c,
811   [AC_TRY_LINK([],
812 [#ifndef __SUNPRO_C
813 fail;
814 #endif
815 ], emacs_cv_sunpro_c=yes, emacs_cv_sunpro_c=no)])
816   AC_MSG_RESULT($emacs_cv_sunpro_c)
818   if test x"$emacs_cv_sunpro_c" = xyes; then
819     NON_GNU_CPP="$CC -E -Xs"
820   fi
823 #### Some systems specify a CPP to use unless we are using GCC.
824 #### Now that we know whether we are using GCC, we can decide whether
825 #### to use that one.
826 if test "x$NON_GNU_CPP" != x && test x$GCC != xyes && test "x$CPP" = x
827 then
828   CPP="$NON_GNU_CPP"
831 #### Some systems specify a CC to use unless we are using GCC.
832 #### Now that we know whether we are using GCC, we can decide whether
833 #### to use that one.
834 if test "x$NON_GNU_CC" != x && test x$GCC != xyes &&
835   test x$cc_specified != xyes
836 then
837   CC="$NON_GNU_CC"
840 if test x$GCC = xyes && test "x$GCC_TEST_OPTIONS" != x
841 then
842   CC="$CC $GCC_TEST_OPTIONS"
845 if test x$GCC = x && test "x$NON_GCC_TEST_OPTIONS" != x
846 then
847   CC="$CC $NON_GCC_TEST_OPTIONS"
850 dnl checks for Unix variants
851 AC_AIX
852 AC_GNU_SOURCE
854 ### Use -Wno-pointer-sign if the compiler supports it
855 AC_MSG_CHECKING([whether gcc understands -Wno-pointer-sign])
856 SAVE_CFLAGS="$CFLAGS"
857 CFLAGS="$CFLAGS -Wno-pointer-sign"
858 AC_TRY_COMPILE([], [], has_option=yes, has_option=no,)
859 if test $has_option = yes; then
860    C_WARNINGS_SWITCH="-Wno-pointer-sign $C_WARNINGS_SWITCH"
862 AC_MSG_RESULT($has_option)
863 CFLAGS="$SAVE_CFLAGS"
864 unset has_option
865 unset SAVE_CFLAGS
867 #### Some other nice autoconf tests.
869 dnl checks for programs
870 AC_PROG_LN_S
871 AC_PROG_CPP
872 AC_PROG_INSTALL
873 if test "x$RANLIB" = x; then
874   AC_PROG_RANLIB
876 AC_PATH_PROG(INSTALL_INFO, install-info)
877 AC_PATH_PROG(INSTALL_INFO, install-info,, /usr/sbin)
878 AC_PATH_PROG(INSTALL_INFO, install-info,:, /sbin)
879 dnl Don't use GZIP, which is used by gzip for additional parameters.
880 AC_PATH_PROG(GZIP_PROG, gzip)
883 ## Need makeinfo >= 4.6 (?) to build the manuals.
884 AC_PATH_PROG(MAKEINFO, makeinfo, no)
885 dnl By this stage, configure has already checked for egrep and set EGREP,
886 dnl or exited with an error if no egrep was found.
887 if test "$MAKEINFO" != "no" && \
888   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
889    MAKEINFO=no
892 if test "$MAKEINFO" = "no"; then
893   AC_MSG_ERROR( [makeinfo >= 4.6 is required] )
897 dnl Add our options to ac_link now, after it is set up.
899 if test x$GCC = xyes && test "x$GCC_LINK_TEST_OPTIONS" != x
900 then
901   ac_link="$ac_link $GCC_LINK_TEST_OPTIONS"
904 if test x$GCC = x && test "x$NON_GCC_LINK_TEST_OPTIONS" != x
905 then
906   ac_link="$ac_link $NON_GCC_LINK_TEST_OPTIONS"
909 dnl We need -znocombreloc if we're using a relatively recent GNU ld.
910 dnl If we can link with the flag, it shouldn't do any harm anyhow.
911 dnl (Don't use `-z nocombreloc' as -z takes no arg on Irix.)
912 dnl Treat GCC specially since it just gives a non-fatal `unrecognized option'
913 dnl if not built to support GNU ld.
915 late_LDFLAGS=$LDFLAGS
916 if test "$GCC" = yes; then
917   LDFLAGS="$LDFLAGS -Wl,-znocombreloc"
918 else
919   LDFLAGS="$LDFLAGS -znocombreloc"
922 AC_MSG_CHECKING([for -znocombreloc])
923 AC_LINK_IFELSE([main(){return 0;}],
924   [AC_MSG_RESULT(yes)],
925   LDFLAGS=$late_LDFLAGS
926   [AC_MSG_RESULT(no)])
928 #### Extract some information from the operating system and machine files.
930 AC_CHECKING([the machine- and system-dependent files to find out
931  - which libraries the lib-src programs will want, and
932  - whether the GNU malloc routines are usable])
934 ### First figure out CFLAGS (which we use for running the compiler here)
935 ### and REAL_CFLAGS (which we use for real compilation).
936 ### The two are the same except on a few systems, where they are made
937 ### different to work around various lossages.  For example,
938 ### GCC 2.5 on GNU/Linux needs them to be different because it treats -g
939 ### as implying static linking.
941 ### If the CFLAGS env var is specified, we use that value
942 ### instead of the default.
944 ### It's not important that this name contain the PID; you can't run
945 ### two configures in the same directory and have anything work
946 ### anyway.
947 tempcname="conftest.c"
949 echo '
950 #include "'${srcdir}'/src/'${opsysfile}'"
951 #include "'${srcdir}'/src/'${machfile}'"
952 #ifndef LIBS_MACHINE
953 #define LIBS_MACHINE
954 #endif
955 #ifndef LIBS_SYSTEM
956 #define LIBS_SYSTEM
957 #endif
958 #ifndef C_SWITCH_SYSTEM
959 #define C_SWITCH_SYSTEM
960 #endif
961 #ifndef C_SWITCH_MACHINE
962 #define C_SWITCH_MACHINE
963 #endif
964 configure___ libsrc_libs=LIBS_MACHINE LIBS_SYSTEM
965 configure___ c_switch_system=C_SWITCH_SYSTEM
966 configure___ c_switch_machine=C_SWITCH_MACHINE
968 #ifndef LIB_X11_LIB
969 #define LIB_X11_LIB -lX11
970 #endif
972 #ifndef LIBX11_MACHINE
973 #define LIBX11_MACHINE
974 #endif
976 #ifndef LIBX11_SYSTEM
977 #define LIBX11_SYSTEM
978 #endif
979 configure___ LIBX=LIB_X11_LIB LIBX11_MACHINE LIBX11_SYSTEM
981 #ifdef UNEXEC
982 configure___ unexec=UNEXEC
983 #else
984 configure___ unexec=unexec.o
985 #endif
987 #ifdef SYSTEM_MALLOC
988 configure___ system_malloc=yes
989 #else
990 configure___ system_malloc=no
991 #endif
993 #ifdef USE_MMAP_FOR_BUFFERS
994 configure___ use_mmap_for_buffers=yes
995 #else
996 configure___ use_mmap_for_buffers=no
997 #endif
999 #ifndef C_DEBUG_SWITCH
1000 #define C_DEBUG_SWITCH -g
1001 #endif
1003 #ifndef C_OPTIMIZE_SWITCH
1004 #ifdef __GNUC__
1005 #define C_OPTIMIZE_SWITCH -O2
1006 #else
1007 #define C_OPTIMIZE_SWITCH -O
1008 #endif
1009 #endif
1011 #ifndef C_WARNINGS_SWITCH
1012 #define C_WARNINGS_SWITCH ${C_WARNINGS_SWITCH}
1013 #endif
1015 #ifndef LD_SWITCH_MACHINE
1016 #define LD_SWITCH_MACHINE
1017 #endif
1019 #ifndef LD_SWITCH_SYSTEM
1020 #define LD_SWITCH_SYSTEM
1021 #endif
1023 #ifndef LD_SWITCH_X_SITE_AUX
1024 #define LD_SWITCH_X_SITE_AUX
1025 #endif
1027 configure___ ld_switch_system=LD_SWITCH_SYSTEM
1028 configure___ ld_switch_machine=LD_SWITCH_MACHINE
1030 #ifdef THIS_IS_CONFIGURE
1032 /* Get the CFLAGS for tests in configure.  */
1033 #ifdef __GNUC__
1034 configure___ CFLAGS=C_DEBUG_SWITCH C_OPTIMIZE_SWITCH '${SPECIFIED_CFLAGS}'
1035 #else
1036 configure___ CFLAGS=C_DEBUG_SWITCH '${SPECIFIED_CFLAGS}'
1037 #endif
1039 #else /* not THIS_IS_CONFIGURE */
1041 /* Get the CFLAGS for real compilation.  */
1042 #ifdef __GNUC__
1043 configure___ REAL_CFLAGS=C_DEBUG_SWITCH C_OPTIMIZE_SWITCH C_WARNINGS_SWITCH '${SPECIFIED_CFLAGS}'
1044 #else
1045 configure___ REAL_CFLAGS=C_DEBUG_SWITCH '${SPECIFIED_CFLAGS}'
1046 #endif
1048 #endif /* not THIS_IS_CONFIGURE */
1049 ' > ${tempcname}
1051 # The value of CPP is a quoted variable reference, so we need to do this
1052 # to get its actual value...
1053 CPP=`eval "echo $CPP"`
1054 [eval `${CPP} -Isrc ${tempcname} \
1055        | sed -n -e 's/^configure___ \([^=]*=\)\(.*\)$/\1"\2"/p'`
1056 if test "x$SPECIFIED_CFLAGS" = x; then
1057   eval `${CPP} -Isrc -DTHIS_IS_CONFIGURE ${tempcname} \
1058          | sed -n -e 's/^configure___ \([^=]*=\)\(.*\)$/\1"\2"/p'`
1059 else
1060   REAL_CFLAGS="$CFLAGS"
1062 rm ${tempcname}
1064 ac_link="$ac_link $ld_switch_machine $ld_switch_system"
1066 ### Make sure subsequent tests use flags consistent with the build flags.
1068 if test x"${OVERRIDE_CPPFLAGS}" != x; then
1069   CPPFLAGS="${OVERRIDE_CPPFLAGS}"
1070 else
1071   CPPFLAGS="$c_switch_system $c_switch_machine $CPPFLAGS"
1074 dnl For AC_FUNC_GETLOADAVG, at least:
1075 AC_CONFIG_LIBOBJ_DIR(src)
1077 dnl Do this early because it can frob feature test macros for Unix-98 &c.
1078 AC_SYS_LARGEFILE
1081 ### The standard library on x86-64 GNU/Linux distributions can
1082 ### be located in either /usr/lib64 or /usr/lib.
1083 case "${canonical}" in
1084   x86_64-*-linux-gnu* )
1085     if test -d /usr/lib64; then
1086       AC_DEFINE(HAVE_X86_64_LIB64_DIR, 1,
1087         [Define to 1 if the file /usr/lib64 exists.])
1089 esac
1091 dnl This function defintion taken from Gnome 2.0
1092 dnl PKG_CHECK_MODULES(GSTUFF, gtk+-2.0 >= 1.3 glib = 1.3.4, action-if, action-not)
1093 dnl defines GSTUFF_LIBS, GSTUFF_CFLAGS, see pkg-config man page
1094 dnl also defines GSTUFF_PKG_ERRORS on error
1095 AC_DEFUN([PKG_CHECK_MODULES], [
1096   succeeded=no
1098   if test -z "$PKG_CONFIG"; then
1099     AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
1100   fi
1102   if test "$PKG_CONFIG" = "no" ; then
1103      ifelse([$4], , [AC_MSG_ERROR([
1104       *** 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])
1105   else
1106      PKG_CONFIG_MIN_VERSION=0.9.0
1107      if $PKG_CONFIG --atleast-pkgconfig-version $PKG_CONFIG_MIN_VERSION; then
1108         AC_MSG_CHECKING(for $2)
1110         if $PKG_CONFIG --exists "$2" 2>&AS_MESSAGE_LOG_FD; then
1111             AC_MSG_RESULT(yes)
1112             succeeded=yes
1114             AC_MSG_CHECKING($1_CFLAGS)
1115             $1_CFLAGS=`$PKG_CONFIG --cflags "$2"|sed -e 's,///*,/,g'`
1116             AC_MSG_RESULT($$1_CFLAGS)
1118             AC_MSG_CHECKING($1_LIBS)
1119             $1_LIBS=`$PKG_CONFIG --libs "$2"|sed -e 's,///*,/,g'`
1120             AC_MSG_RESULT($$1_LIBS)
1121         else
1122             AC_MSG_RESULT(no)
1123             $1_CFLAGS=""
1124             $1_LIBS=""
1125             ## If we have a custom action on failure, don't print errors, but
1126             ## do set a variable so people can do so.
1127             $1_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "$2"`
1128             ifelse([$4], ,echo $$1_PKG_ERRORS,)
1129         fi
1131         AC_SUBST($1_CFLAGS)
1132         AC_SUBST($1_LIBS)
1133      else
1134         echo "*** Your version of pkg-config is too old. You need version $PKG_CONFIG_MIN_VERSION or newer."
1135         echo "*** See http://www.freedesktop.org/software/pkgconfig"
1136      fi
1137   fi
1139   if test $succeeded = yes; then
1140      ifelse([$3], , :, [$3])
1141   else
1142      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])
1143   fi
1147 if test "${with_sound}" != "no"; then
1148   # Sound support for GNU/Linux and the free BSDs.
1149   AC_CHECK_HEADERS(machine/soundcard.h sys/soundcard.h soundcard.h)
1150   # Emulation library used on NetBSD.
1151   AC_CHECK_LIB(ossaudio, _oss_ioctl, LIBSOUND=-lossaudio, LIBSOUND=)
1152   AC_SUBST(LIBSOUND)
1154   ALSA_REQUIRED=1.0.0
1155   ALSA_MODULES="alsa >= $ALSA_REQUIRED"
1156   dnl Check if --with-pkg-config-prog has been given.
1157   if test "X${with_pkg_config_prog}" != X; then
1158     PKG_CONFIG="${with_pkg_config_prog}"
1159   fi
1160   PKG_CHECK_MODULES(ALSA, $ALSA_MODULES, HAVE_ALSA=yes, HAVE_ALSA=no)
1161   if test $HAVE_ALSA = yes; then
1162     SAVE_CFLAGS="$CFLAGS"
1163     SAVE_LDFLAGS="$LDFLAGS"
1164     CFLAGS="$ALSA_CFLAGS $CFLAGS"
1165     LDFLAGS="$ALSA_LIBS $LDFLAGS"
1166     AC_TRY_COMPILE([#include <asoundlib.h>], [snd_lib_error_set_handler (0);],
1167                     emacs_alsa_normal=yes,
1168                     emacs_alsa_normal=no)
1169     if test "$emacs_alsa_normal" != yes; then
1170       AC_TRY_COMPILE([#include <alsa/asoundlib.h>],
1171                      [snd_lib_error_set_handler (0);],
1172                      emacs_alsa_subdir=yes,
1173                      emacs_alsa_subdir=no)
1174       if test "$emacs_alsa_subdir" != yes; then
1175         AC_MSG_ERROR([pkg-config found alsa, but it does not compile.  See config.log for error messages.])
1176       fi
1177       ALSA_CFLAGS="$ALSA_CFLAGS -DALSA_SUBDIR_INCLUDE"
1178     fi
1180     CFLAGS="$SAVE_CFLAGS"
1181     LDFLAGS="$SAVE_LDFLAGS"
1182     LIBSOUND="$LIBSOUND $ALSA_LIBS"
1183     CFLAGS_SOUND="$CFLAGS_SOUND $ALSA_CFLAGS"
1184     AC_DEFINE(HAVE_ALSA, 1, [Define to 1 if ALSA is available.])
1185   fi
1186   AC_SUBST(CFLAGS_SOUND)
1189 dnl checks for header files
1190 AC_CHECK_HEADERS(sys/select.h sys/timeb.h sys/time.h unistd.h utime.h \
1191   linux/version.h sys/systeminfo.h termios.h limits.h string.h stdlib.h \
1192   termcap.h stdio_ext.h fcntl.h strings.h coff.h pty.h sys/mman.h \
1193   sys/param.h sys/vlimit.h sys/resource.h locale.h sys/_mbstate_t.h \
1194   sys/utsname.h pwd.h)
1196 AC_MSG_CHECKING(if personality LINUX32 can be set)
1197 AC_TRY_COMPILE([#include <sys/personality.h>], [personality (PER_LINUX32)],
1198                emacs_cv_personality_linux32=yes,
1199                emacs_cv_personality_linux32=no)
1200 AC_MSG_RESULT($emacs_cv_personality_linux32)
1202 if test $emacs_cv_personality_linux32 = yes; then
1203   AC_DEFINE(HAVE_PERSONALITY_LINUX32, 1,
1204             [Define to 1 if personality LINUX32 can be set.])
1207 dnl On Solaris 8 there's a compilation warning for term.h because
1208 dnl it doesn't define `bool'.
1209 AC_CHECK_HEADERS(term.h, , , -)
1210 AC_HEADER_STDC
1211 AC_HEADER_TIME
1212 AC_CHECK_DECLS([sys_siglist])
1213 if test $ac_cv_have_decl_sys_siglist != yes; then
1214   # For Tru64, at least:
1215   AC_CHECK_DECLS([__sys_siglist])
1216   if test $ac_cv_have_decl___sys_siglist = yes; then
1217     AC_DEFINE(sys_siglist, __sys_siglist,
1218               [Define to any substitute for sys_siglist.])
1219   fi
1221 AC_HEADER_SYS_WAIT
1223 dnl Some systems have utime.h but don't declare the struct anyplace.
1224 AC_CACHE_CHECK(for struct utimbuf, emacs_cv_struct_utimbuf,
1225 AC_TRY_COMPILE([#ifdef TIME_WITH_SYS_TIME
1226 #include <sys/time.h>
1227 #include <time.h>
1228 #else
1229 #ifdef HAVE_SYS_TIME_H
1230 #include <sys/time.h>
1231 #else
1232 #include <time.h>
1233 #endif
1234 #endif
1235 #ifdef HAVE_UTIME_H
1236 #include <utime.h>
1237 #endif], [static struct utimbuf x; x.actime = x.modtime;],
1238   emacs_cv_struct_utimbuf=yes, emacs_cv_struct_utimbuf=no))
1239 if test $emacs_cv_struct_utimbuf = yes; then
1240   AC_DEFINE(HAVE_STRUCT_UTIMBUF, 1, [Define to 1 if `struct utimbuf' is declared by <utime.h>.])
1243 dnl checks for typedefs
1244 AC_TYPE_SIGNAL
1246 dnl Check for speed_t typedef.
1247 AC_CACHE_CHECK(for speed_t, emacs_cv_speed_t,
1248   [AC_TRY_COMPILE([#include <termios.h>], [speed_t x = 1;],
1249     emacs_cv_speed_t=yes, emacs_cv_speed_t=no)])
1250 if test $emacs_cv_speed_t = yes; then
1251   AC_DEFINE(HAVE_SPEED_T, 1,
1252            [Define to 1 if `speed_t' is declared by <termios.h>.])
1255 AC_CACHE_CHECK(for struct timeval, emacs_cv_struct_timeval,
1256 AC_TRY_COMPILE([#ifdef TIME_WITH_SYS_TIME
1257 #include <sys/time.h>
1258 #include <time.h>
1259 #else
1260 #ifdef HAVE_SYS_TIME_H
1261 #include <sys/time.h>
1262 #else
1263 #include <time.h>
1264 #endif
1265 #endif], [static struct timeval x; x.tv_sec = x.tv_usec;],
1266   emacs_cv_struct_timeval=yes, emacs_cv_struct_timeval=no))
1267 HAVE_TIMEVAL=$emacs_cv_struct_timeval
1268 if test $emacs_cv_struct_timeval = yes; then
1269   AC_DEFINE(HAVE_TIMEVAL, 1, [Define to 1 if `struct timeval' is declared by <sys/time.h>.])
1272 AC_CACHE_CHECK(for struct exception, emacs_cv_struct_exception,
1273 AC_TRY_COMPILE([#include <math.h>],
1274 [static struct exception x; x.arg1 = x.arg2 = x.retval; x.name = ""; x.type = 1;],
1275   emacs_cv_struct_exception=yes, emacs_cv_struct_exception=no))
1276 HAVE_EXCEPTION=$emacs_cv_struct_exception
1277 if test $emacs_cv_struct_exception != yes; then
1278   AC_DEFINE(NO_MATHERR, 1, [Define to 1 if you don't have struct exception in math.h.])
1281 AC_CHECK_HEADERS(sys/socket.h)
1282 AC_CHECK_HEADERS(net/if.h, , , [AC_INCLUDES_DEFAULT
1283 #if HAVE_SYS_SOCKET_H
1284 #include <sys/socket.h>
1285 #endif])
1287 dnl checks for structure members
1288 AC_STRUCT_TM
1289 AC_STRUCT_TIMEZONE
1290 AC_CHECK_MEMBER(struct tm.tm_gmtoff,
1291                 [AC_DEFINE(HAVE_TM_GMTOFF, 1,
1292                            [Define to 1 if `tm_gmtoff' is member of `struct tm'.])],,
1293                 [#include <time.h>])
1294 AC_CHECK_MEMBERS([struct ifreq.ifr_flags, struct ifreq.ifr_hwaddr,
1295                   struct ifreq.ifr_netmask, struct ifreq.ifr_broadaddr,
1296                   struct ifreq.ifr_addr], , ,
1297                  [AC_INCLUDES_DEFAULT
1298 #if HAVE_SYS_SOCKET_H
1299 #include <sys/socket.h>
1300 #endif
1301 #if HAVE_NET_IF_H
1302 #include <net/if.h>
1303 #endif])
1305 dnl checks for compiler characteristics
1307 dnl Testing __STDC__ to determine prototype support isn't good enough.
1308 dnl DEC C, for instance, doesn't define it with default options, and
1309 dnl is used on 64-bit systems (OSF Alphas).  Similarly for volatile
1310 dnl and void *.
1311 AC_C_PROTOTYPES
1312 AC_C_VOLATILE
1313 AC_C_CONST
1314 dnl This isn't useful because we can't turn on use of `inline' unless
1315 dnl the compiler groks `extern inline'.
1316 dnl AC_C_INLINE
1317 AC_CACHE_CHECK([for void * support], emacs_cv_void_star,
1318   [AC_TRY_COMPILE(, [void * foo;],
1319                    emacs_cv_void_star=yes, emacs_cv_void_star=no)])
1320 if test $emacs_cv_void_star = yes; then
1321   AC_DEFINE(POINTER_TYPE, void)
1322 else
1323   AC_DEFINE(POINTER_TYPE, char)
1325 AH_TEMPLATE(POINTER_TYPE,
1326             [Define as `void' if your compiler accepts `void *'; otherwise
1327              define as `char'.])dnl
1331 dnl This could be used for targets which can have both byte sexes.
1332 dnl We could presumably replace the hardwired WORDS_BIG_ENDIAN generally.
1333 dnl AC_C_BIGENDIAN
1335 dnl check for Make feature
1336 AC_PROG_MAKE_SET
1338 dnl checks for operating system services
1339 AC_SYS_LONG_FILE_NAMES
1341 #### Choose a window system.
1343 AC_PATH_X
1344 if test "$no_x" = yes; then
1345   window_system=none
1346 else
1347   window_system=x11
1350 if test "${x_libraries}" != NONE; then
1351   if test -n "${x_libraries}"; then
1352     LD_SWITCH_X_SITE=-L`echo ${x_libraries} | sed -e "s/:/ -L/g"`
1353     LD_SWITCH_X_SITE_AUX=-R`echo ${x_libraries} | sed -e "s/:/ -R/g"`
1354   fi
1355   x_default_search_path=""
1356   x_search_path=${x_libraries}
1357   if test -z "${x_search_path}"; then
1358     x_search_path=/usr/lib
1359   fi
1360   for x_library in `echo ${x_search_path}: | \
1361                     sed -e "s/:/ /g" -e p -e "s:/lib[[^ /]]* :/share :g"`; do
1362     x_search_path="\
1363 ${x_library}/X11/%L/%T/%N%C%S:\
1364 ${x_library}/X11/%l/%T/%N%C%S:\
1365 ${x_library}/X11/%T/%N%C%S:\
1366 ${x_library}/X11/%L/%T/%N%S:\
1367 ${x_library}/X11/%l/%T/%N%S:\
1368 ${x_library}/X11/%T/%N%S"
1369     if test x"${x_default_search_path}" = x; then
1370       x_default_search_path=${x_search_path}
1371     else
1372       x_default_search_path="${x_search_path}:${x_default_search_path}"
1373     fi
1374   done
1376 if test "${x_includes}" != NONE && test -n "${x_includes}"; then
1377   C_SWITCH_X_SITE=-I`echo ${x_includes} | sed -e "s/:/ -I/g"`
1380 if test x"${x_includes}" = x; then
1381   bitmapdir=/usr/include/X11/bitmaps
1382 else
1383   # accumulate include directories that have X11 bitmap subdirectories
1384   bmd_acc="dummyval"
1385   for bmd in `echo ${x_includes} | sed -e "s/:/ /g"`; do
1386     if test -d "${bmd}/X11/bitmaps"; then
1387       bmd_acc="${bmd_acc}:${bmd}/X11/bitmaps"
1388     fi
1389     if test -d "${bmd}/bitmaps"; then
1390       bmd_acc="${bmd_acc}:${bmd}/bitmaps"
1391     fi
1392   done
1393   if test ${bmd_acc} != "dummyval"; then
1394     bitmapdir=`echo ${bmd_acc} | sed -e "s/^dummyval://"`
1395   fi
1398 HAVE_CARBON=no
1399 if test "${with_carbon}" != no; then
1400   AC_CHECK_HEADER(Carbon/Carbon.h, HAVE_CARBON=yes)
1402 if test "${window_system}" = x11 && test "${HAVE_CARBON}" = yes; then
1403   if test "${with_carbon+set}" != set \
1404      && test "${carbon_appdir_x+set}" != set; then
1405     for var in with_x with_x_toolkit with_gtk with_xim \
1406                with_xpm with_jpeg with_tiff with_gif with_png; do
1407       if eval test \"\${$var+set}\" = set; then
1408         HAVE_CARBON=no
1409         break
1410       fi
1411     done
1412   fi
1414 if test "${HAVE_CARBON}" = yes; then
1415   window_system=mac
1418 case "${window_system}" in
1419   x11 )
1420     HAVE_X_WINDOWS=yes
1421     HAVE_X11=yes
1422     case "${with_x_toolkit}" in
1423       athena | lucid ) USE_X_TOOLKIT=LUCID ;;
1424       motif ) USE_X_TOOLKIT=MOTIF ;;
1425       gtk ) with_gtk=yes
1426 dnl Dont set this for GTK.  A lot of tests below assumes Xt when
1427 dnl USE_X_TOOLKIT is set.
1428             USE_X_TOOLKIT=none ;;
1429       no ) USE_X_TOOLKIT=none ;;
1430 dnl If user did not say whether to use a toolkit, make this decision later:
1431 dnl use the toolkit if we have gtk, or X11R5 or newer.
1432       * )
1433           if test x"$with_gtk" = xyes; then
1434              USE_X_TOOLKIT=none
1435           else
1436              USE_X_TOOLKIT=maybe
1437           fi
1438           ;;
1439     esac
1440   ;;
1441   mac | none )
1442     HAVE_X_WINDOWS=no
1443     HAVE_X11=no
1444     USE_X_TOOLKIT=none
1445   ;;
1446 esac
1448 if test "$window_system" = none && test "X$with_x" != "Xno"; then
1449    AC_CHECK_PROG(HAVE_XSERVER, X, true, false)
1450    if test "$HAVE_XSERVER" = true ||
1451       test -n "$DISPLAY" ||
1452       test "`echo /usr/lib/libX11.*`" != "/usr/lib/libX11.*"; then
1453         AC_MSG_ERROR([You seem to be running X, but no X development libraries
1454 were found.  You should install the relevant development files for X
1455 and for the toolkit you want, such as Gtk+, Lesstif or Motif.  Also make
1456 sure you have development files for image handling, i.e.
1457 tiff, gif, jpeg, png and xpm.
1458 If you are sure you want Emacs compiled without X window support, pass
1459   --without-x
1460 to configure.])
1461    fi
1464 ### If we're using X11, we should use the X menu package.
1465 HAVE_MENUS=no
1466 case ${HAVE_X11} in
1467   yes ) HAVE_MENUS=yes ;;
1468 esac
1470 if test "${opsys}" = "hpux9"; then
1471   case "${x_libraries}" in
1472     *X11R4* )
1473       opsysfile="s/hpux9-x11r4.h"
1474       ;;
1475   esac
1478 if test "${opsys}" = "hpux9shr"; then
1479   case "${x_libraries}" in
1480     *X11R4* )
1481       opsysfile="s/hpux9shxr4.h"
1482       ;;
1483   esac
1486 ### Compute the unexec source name from the object name.
1487 UNEXEC_SRC="`echo ${unexec} | sed 's/\.o/.c/'`"
1489 # Do the opsystem or machine files prohibit the use of the GNU malloc?
1490 # Assume not, until told otherwise.
1491 GNU_MALLOC=yes
1492 doug_lea_malloc=yes
1493 AC_CHECK_FUNC(malloc_get_state, ,doug_lea_malloc=no)
1494 AC_CHECK_FUNC(malloc_set_state, ,doug_lea_malloc=no)
1495 AC_CACHE_CHECK(whether __after_morecore_hook exists,
1496                emacs_cv_var___after_morecore_hook,
1497 [AC_TRY_LINK([extern void (* __after_morecore_hook)();],[__after_morecore_hook = 0],
1498   emacs_cv_var___after_morecore_hook=yes,
1499   emacs_cv_var___after_morecore_hook=no)])
1500 if test $emacs_cv_var___after_morecore_hook = no; then
1501   doug_lea_malloc=no
1503 if test "${system_malloc}" = "yes"; then
1504   GNU_MALLOC=no
1505   GNU_MALLOC_reason="
1506     (The GNU allocators don't work with this system configuration.)"
1508 if test "$doug_lea_malloc" = "yes" ; then
1509   if test "$GNU_MALLOC" = yes ; then
1510     GNU_MALLOC_reason="
1511       (Using Doug Lea's new malloc from the GNU C Library.)"
1512   fi
1513   AC_DEFINE(DOUG_LEA_MALLOC, 1,
1514             [Define to 1 if you are using the GNU C Library.])
1517 if test x"${REL_ALLOC}" = x; then
1518   REL_ALLOC=${GNU_MALLOC}
1521 dnl For now, need to use an explicit `#define USE_MMAP_FOR_BUFFERS 1'
1522 dnl the system configuration file (s/*.h) to turn the use of mmap
1523 dnl in the relocating allocator on.
1525 AC_FUNC_MMAP
1526 if test $use_mmap_for_buffers = yes; then
1527   REL_ALLOC=no
1530 LIBS="$libsrc_libs $LIBS"
1532 dnl If found, this defines HAVE_LIBDNET, which m/pmax.h checks,
1533 dnl and also adds -ldnet to LIBS, which Autoconf uses for checks.
1534 AC_CHECK_LIB(dnet, dnet_ntoa)
1535 dnl This causes -lresolv to get used in subsequent tests,
1536 dnl which causes failures on some systems such as HPUX 9.
1537 dnl AC_CHECK_LIB(resolv, gethostbyname)
1539 dnl FIXME replace main with a function we actually want from this library.
1540 AC_CHECK_LIB(Xbsd, main, LD_SWITCH_X_SITE="$LD_SWITCH_X_SITE -lXbsd")
1542 AC_CHECK_LIB(pthreads, cma_open)
1544 AC_MSG_CHECKING(for XFree86 in /usr/X386)
1545 if test -d /usr/X386/include; then
1546   HAVE_XFREE386=yes
1547   : ${C_SWITCH_X_SITE="-I/usr/X386/include"}
1548 else
1549   HAVE_XFREE386=no
1551 AC_MSG_RESULT($HAVE_XFREE386)
1553 dnl Check for need for bigtoc support on IBM AIX
1555 case ${host_os} in
1556 aix*)
1557   AC_CACHE_CHECK([for -bbigtoc option], [gdb_cv_bigtoc], [
1558     case $GCC in
1559     yes) gdb_cv_bigtoc=-Wl,-bbigtoc ;;
1560     *) gdb_cv_bigtoc=-bbigtoc ;;
1561     esac
1563     LDFLAGS=$LDFLAGS\ $gdb_cv_bigtoc
1564     AC_TRY_LINK([], [int i;], [], [gdb_cv_bigtoc=])
1565   ])
1566   ;;
1567 esac
1569 # Change CFLAGS and CPPFLAGS temporarily so that C_SWITCH_X_SITE gets
1570 # used for the tests that follow.  We set them back to REAL_CFLAGS and
1571 # REAL_CPPFLAGS later on.
1573 REAL_CPPFLAGS="$CPPFLAGS"
1575 if test "${HAVE_X11}" = "yes"; then
1576   DEFS="$C_SWITCH_X_SITE $DEFS"
1577   LDFLAGS="$LDFLAGS $LD_SWITCH_X_SITE"
1578   LIBS="$LIBX $LIBS"
1579   CFLAGS="$C_SWITCH_X_SITE $CFLAGS"
1580   CPPFLAGS="$C_SWITCH_X_SITE $CPPFLAGS"
1582   # On Solaris, arrange for LD_RUN_PATH to point to the X libraries for tests.
1583   # This is handled by LD_SWITCH_X_SITE_AUX during the real build,
1584   # but it's more convenient here to set LD_RUN_PATH
1585   # since this also works on hosts that don't understand LD_SWITCH_X_SITE_AUX.
1586   if test "${x_libraries}" != NONE && test -n "${x_libraries}"; then
1587     LD_RUN_PATH=$x_libraries${LD_RUN_PATH+:}$LD_RUN_PATH
1588     export LD_RUN_PATH
1589   fi
1591   if test "${opsys}" = "gnu-linux"; then
1592     AC_MSG_CHECKING(whether X on GNU/Linux needs -b to link)
1593     AC_TRY_LINK([],
1594      [XOpenDisplay ("foo");],
1595      [xlinux_first_failure=no],
1596      [xlinux_first_failure=yes])
1597     if test "${xlinux_first_failure}" = "yes"; then
1598       OLD_LD_SWITCH_X_SITE="$LD_SWITCH_X_SITE"
1599       OLD_C_SWITCH_X_SITE="$C_SWITCH_X_SITE"
1600       OLD_CPPFLAGS="$CPPFLAGS"
1601       OLD_LIBS="$LIBS"
1602       LD_SWITCH_X_SITE="$LD_SWITCH_X_SITE -b i486-linuxaout"
1603       C_SWITCH_X_SITE="$C_SWITCH_X_SITE -b i486-linuxaout"
1604       CPPFLAGS="$CPPFLAGS -b i486-linuxaout"
1605       LIBS="$LIBS -b i486-linuxaout"
1606       AC_TRY_LINK([],
1607        [XOpenDisplay ("foo");],
1608        [xlinux_second_failure=no],
1609        [xlinux_second_failure=yes])
1610       if test "${xlinux_second_failure}" = "yes"; then
1611         # If we get the same failure with -b, there is no use adding -b.
1612         # So take it out.  This plays safe.
1613         LD_SWITCH_X_SITE="$OLD_LD_SWITCH_X_SITE"
1614         C_SWITCH_X_SITE="$OLD_C_SWITCH_X_SITE"
1615         CPPFLAGS="$OLD_CPPFLAGS"
1616         LIBS="$OLD_LIBS"
1617         AC_MSG_RESULT(no)
1618       else
1619         AC_MSG_RESULT(yes)
1620       fi
1621     else
1622       AC_MSG_RESULT(no)
1623     fi
1624   fi
1626   # Reportedly, some broken Solaris systems have XKBlib.h but are missing
1627   # header files included from there.
1628   AC_MSG_CHECKING(for Xkb)
1629   AC_TRY_LINK([#include <X11/Xlib.h>
1630 #include <X11/XKBlib.h>],
1631         [XkbDescPtr kb = XkbGetKeyboard (0, XkbAllComponentsMask, XkbUseCoreKbd);],
1632         emacs_xkb=yes, emacs_xkb=no)
1633   AC_MSG_RESULT($emacs_xkb)
1634   if test $emacs_xkb = yes; then
1635     AC_DEFINE(HAVE_XKBGETKEYBOARD, 1, [Define to 1 if you have the XkbGetKeyboard function.])
1636   fi
1638   AC_CHECK_FUNCS(XrmSetDatabase XScreenResourceString \
1639 XScreenNumberOfScreen XSetWMProtocols)
1642 if test "${window_system}" = "x11"; then
1643   AC_MSG_CHECKING(X11 version 6)
1644   AC_CACHE_VAL(emacs_cv_x11_version_6,
1645   [AC_TRY_LINK([#include <X11/Xlib.h>],
1646 [#if XlibSpecificationRelease < 6
1647 fail;
1648 #endif
1649 ], emacs_cv_x11_version_6=yes, emacs_cv_x11_version_6=no)])
1650   if test $emacs_cv_x11_version_6 = yes; then
1651     AC_MSG_RESULT(6 or newer)
1652     AC_DEFINE(HAVE_X11R6, 1,
1653               [Define to 1 if you have the X11R6 or newer version of Xlib.])
1654   else
1655     AC_MSG_RESULT(before 6)
1656   fi
1660 ### Use -lrsvg-2 if available, unless `--with-rsvg=no' is specified.
1661 HAVE_RSVG=no
1662 if test "${HAVE_X11}" = "yes" || test "${HAVE_CARBON}" = "yes"; then
1663   if test "${with_rsvg}" != "no"; then
1664     dnl Check if `--with-pkg-config-prog' has been given.
1665     if test "X${with_pkg_config_prog}" != X; then
1666       PKG_CONFIG="${with_pkg_config_prog}"
1667     fi
1669     RSVG_REQUIRED=2.0.0
1670     RSVG_MODULE="librsvg-2.0 >= $RSVG_REQUIRED"
1672     PKG_CHECK_MODULES(RSVG, $RSVG_MODULE, :, :)
1673     AC_SUBST(RSVG_CFLAGS)
1674     AC_SUBST(RSVG_LIBS)
1676     if test ".${RSVG_CFLAGS}" != "."; then
1677       HAVE_RSVG=yes
1678       AC_DEFINE(HAVE_RSVG, 1, [Define to 1 if using librsvg.])
1679       CFLAGS="$CFLAGS $RSVG_CFLAGS"
1680       LIBS="$RSVG_LIBS $LIBS"
1681     fi
1682   fi
1686 HAVE_GTK=no
1687 if test "${with_gtk}" = "yes" && test "$USE_X_TOOLKIT" = "gtk"; then
1688   USE_X_TOOLKIT=none
1690 if test "${with_gtk}" = "yes" || test "$USE_X_TOOLKIT" = "gtk" || \
1691  test "$USE_X_TOOLKIT" = "maybe"; then
1692   if test "$USE_X_TOOLKIT" != "none" && test "$USE_X_TOOLKIT" != "maybe"; then
1693     AC_MSG_ERROR([Conflicting options, --with-gtk is incompatible with --with-x-toolkit=${with_x_toolkit}]);
1694   fi
1695   GLIB_REQUIRED=2.6
1696   GTK_REQUIRED=2.6
1697   GTK_MODULES="gtk+-2.0 >= $GTK_REQUIRED glib-2.0 >= $GLIB_REQUIRED"
1699   dnl Check if --with-pkg-config-prog has been given.
1700   if test "X${with_pkg_config_prog}" != X; then
1701     PKG_CONFIG="${with_pkg_config_prog}"
1702   fi
1703   dnl Checks for libraries.
1704   PKG_CHECK_MODULES(GTK, $GTK_MODULES, pkg_check_gtk=yes, pkg_check_gtk=no)
1705   if test "$pkg_check_gtk" = "no" && test "$USE_X_TOOLKIT" != "maybe"; then
1706      AC_MSG_ERROR($GTK_PKG_ERRORS)
1707   fi
1711 if test x"$pkg_check_gtk" = xyes; then
1713   AC_SUBST(GTK_CFLAGS)
1714   AC_SUBST(GTK_LIBS)
1715   C_SWITCH_X_SITE="$C_SWITCH_X_SITE $GTK_CFLAGS"
1716   CFLAGS="$CFLAGS $GTK_CFLAGS"
1717   LIBS="$GTK_LIBS $LIBS"
1718   dnl Try to compile a simple GTK program.
1719   GTK_COMPILES=no
1720   AC_CHECK_FUNCS(gtk_main, GTK_COMPILES=yes)
1721   if test "${GTK_COMPILES}" != "yes"; then
1722     if test "$USE_X_TOOLKIT" != "maybe"; then
1723       AC_MSG_ERROR([Gtk+ wanted, but it does not compile, see config.log.  Maybe some x11-devel files missing?]);
1724     fi
1725   else
1726     HAVE_GTK=yes
1727     AC_DEFINE(HAVE_GTK, 1, [Define to 1 if using GTK.])
1728     USE_X_TOOLKIT=none
1729   fi
1734 if test "${HAVE_GTK}" = "yes"; then
1736   dnl  GTK scrollbars resemble toolkit scrollbars a lot, so to avoid
1737   dnl  a lot if #ifdef:s, say we have toolkit scrollbars.
1738   if test "$with_toolkit_scroll_bars" != no; then
1739     with_toolkit_scroll_bars=yes
1740   fi
1742   dnl  Check if we can use multiple displays with this GTK version.
1743   dnl  If gdk_display_open exists, assume all others are there also.
1744   HAVE_GTK_MULTIDISPLAY=no
1745   AC_CHECK_FUNCS(gdk_display_open, HAVE_GTK_MULTIDISPLAY=yes)
1746   if test "${HAVE_GTK_MULTIDISPLAY}" = "yes"; then
1747     AC_DEFINE(HAVE_GTK_MULTIDISPLAY, 1,
1748               [Define to 1 if GTK can handle more than one display.])
1749   fi
1751   dnl  Check if we have the old file selection dialog.
1752   dnl  If gdk_display_open exists, assume all others are there also.
1753   HAVE_GTK_FILE_SELECTION=no
1754   AC_CHECK_FUNCS(gtk_file_selection_new, HAVE_GTK_FILE_SELECTION=yes)
1756   dnl  Check if we have the new file chooser dialog
1757   dnl  If gdk_display_open exists, assume all others are there also.
1758   HAVE_GTK_FILE_CHOOSER=no
1759   AC_CHECK_FUNCS(gtk_file_chooser_dialog_new, HAVE_GTK_FILE_CHOOSER=yes)
1761   if test "$HAVE_GTK_FILE_SELECTION" = yes \
1762      && test "$HAVE_GTK_FILE_CHOOSER" = yes;  then
1763     AC_DEFINE(HAVE_GTK_FILE_BOTH, 1,
1764               [Define to 1 if GTK has both file selection and chooser dialog.])
1765   fi
1767   dnl Check if pthreads are available.  Emacs only needs this when using
1768   dnl gtk_file_chooser under Gnome.
1769   if test "$HAVE_GTK_FILE_CHOOSER" = yes; then
1770     HAVE_GTK_AND_PTHREAD=no
1771     AC_CHECK_HEADERS(pthread.h)
1772     if test "$ac_cv_header_pthread_h"; then
1773       AC_CHECK_LIB(pthread, pthread_self, HAVE_GTK_AND_PTHREAD=yes)
1774     fi
1775     if test "$HAVE_GTK_AND_PTHREAD" = yes; then
1776       case "${canonical}" in
1777         *-hpux*) ;;
1778         *) GTK_LIBS="$GTK_LIBS -lpthread" ;;
1779       esac
1780       AC_DEFINE(HAVE_GTK_AND_PTHREAD, 1,
1781                [Define to 1 if you have GTK and pthread (-lpthread).])
1782     fi
1783   fi
1786 dnl D-Bus has been tested under GNU/Linux only.  Must be adapted for
1787 dnl other platforms.  Support for higher D-Bus versions but 1.0 is
1788 dnl also not configured.
1789 HAVE_DBUS=no
1790 if test "${with_dbus}" = "yes"; then
1791    PKG_CHECK_MODULES(DBUS, dbus-1 >= 1.0, HAVE_DBUS=yes, HAVE_DBUS=no)
1792    if test "$HAVE_DBUS" = yes; then
1793       AC_DEFINE(HAVE_DBUS, 1, [Define to 1 if using D-Bus.])
1794    fi
1797 ### Link with -lXft if available to work around a bug.
1798 HAVE_XFT=maybe
1799 if test "${HAVE_GTK}" = "yes"; then
1800   dnl Check if --with-pkg-config-prog has been given.
1801   if test "X${with_pkg_config_prog}" != X; then
1802     PKG_CONFIG="${with_pkg_config_prog}"
1803   fi
1805   PKG_CHECK_MODULES(XFT, xft >= 0.13.0, , HAVE_XFT=no)
1806   if test "$HAVE_XFT" != no; then
1807     OLD_CFLAGS="$CPPFLAGS"
1808     OLD_CPPFLAGS="$CFLAGS"
1809     OLD_LIBS="$LIBS"
1810     CPPFLAGS="$CPPFLAGS $XFT_CFLAGS"
1811     CFLAGS="$CFLAGS $XFT_CFLAGS"
1812     LIBS="$XFT_LIBS $LIBS"
1813     AC_CHECK_HEADER(X11/Xft/Xft.h,
1814       [AC_CHECK_LIB(Xft, XftFontOpen, HAVE_XFT=yes, , $XFT_LIBS)])
1816     if test "${HAVE_XFT}" = "yes"; then
1817       AC_DEFINE(HAVE_XFT, 1, [Define to 1 if you have the Xft library.])
1818       AC_SUBST(XFT_LIBS)
1819       C_SWITCH_X_SITE="$C_SWITCH_X_SITE $XFT_CFLAGS"
1820     else
1821       CFLAGS="$OLD_CPPFLAGS"
1822       CFLAGS="$OLD_CFLAGS"
1823       LIBS="$OLD_LIBS"
1824     fi
1825   fi
1828 dnl Do not put whitespace before the #include statements below.
1829 dnl Older compilers (eg sunos4 cc) choke on it.
1830 HAVE_XAW3D=no
1831 if test x"${USE_X_TOOLKIT}" = xmaybe || test x"${USE_X_TOOLKIT}" = xLUCID; then
1832   if test "$with_xaw3d" != no; then
1833     AC_MSG_CHECKING(for xaw3d)
1834     AC_CACHE_VAL(emacs_cv_xaw3d,
1835     [AC_TRY_LINK([
1836 #include <X11/Intrinsic.h>
1837 #include <X11/Xaw3d/Simple.h>],
1838       [],
1839       emacs_cv_xaw3d=yes,
1840       emacs_cv_xaw3d=no)])
1841   else
1842     emacs_cv_xaw3d=no
1843   fi
1844   if test $emacs_cv_xaw3d = yes; then
1845     AC_MSG_RESULT([yes; using Lucid toolkit])
1846     USE_X_TOOLKIT=LUCID
1847     HAVE_XAW3D=yes
1848     AC_DEFINE(HAVE_XAW3D, 1,
1849               [Define to 1 if you have the Xaw3d library (-lXaw3d).])
1850   else
1851     AC_MSG_RESULT(no)
1852     AC_MSG_CHECKING(for libXaw)
1853     AC_CACHE_VAL(emacs_cv_xaw,
1854     [AC_TRY_LINK([
1855 #include <X11/Intrinsic.h>
1856 #include <X11/Xaw/Simple.h>],
1857       [],
1858       emacs_cv_xaw=yes,
1859       emacs_cv_xaw=no)])
1860     if test $emacs_cv_xaw = yes; then
1861       AC_MSG_RESULT([yes; using Lucid toolkit])
1862       USE_X_TOOLKIT=LUCID
1863     elif test x"${USE_X_TOOLKIT}" = xLUCID; then
1864       AC_MSG_ERROR([Lucid toolkit requires X11/Xaw include files])
1865     else
1866       AC_MSG_RESULT([no; do not use toolkit by default])
1867       USE_X_TOOLKIT=none
1868     fi
1869   fi
1872 X_TOOLKIT_TYPE=$USE_X_TOOLKIT
1874 if test "${USE_X_TOOLKIT}" != "none"; then
1875   AC_MSG_CHECKING(X11 toolkit version)
1876   AC_CACHE_VAL(emacs_cv_x11_toolkit_version_6,
1877   [AC_TRY_LINK([#include <X11/Intrinsic.h>],
1878 [#if XtSpecificationRelease < 6
1879 fail;
1880 #endif
1881 ], emacs_cv_x11_toolkit_version_6=yes, emacs_cv_x11_toolkit_version_6=no)])
1882   HAVE_X11XTR6=$emacs_cv_x11_toolkit_version_6
1883   if test $emacs_cv_x11_toolkit_version_6 = yes; then
1884     AC_MSG_RESULT(6 or newer)
1885     AC_DEFINE(HAVE_X11XTR6, 1,
1886               [Define to 1 if you have the X11R6 or newer version of Xt.])
1887   else
1888     AC_MSG_RESULT(before 6)
1889   fi
1891 dnl If using toolkit, check whether libXmu.a exists.
1892 dnl tranle@intellicorp.com says libXmu.a can need XtMalloc in libXt.a to link.
1893   OLDLIBS="$LIBS"
1894   if test x$HAVE_X11XTR6 = xyes; then
1895     LIBS="-lXt -lSM -lICE $LIBS"
1896   else
1897     LIBS="-lXt $LIBS"
1898   fi
1899   AC_CHECK_LIB(Xmu, XmuConvertStandardSelection)
1900   test $ac_cv_lib_Xmu_XmuConvertStandardSelection = no && LIBS="$OLDLIBS"
1903 # On Irix 6.5, at least, we need XShapeQueryExtension from -lXext for Xaw3D.
1904 if test "${HAVE_X11}" = "yes"; then
1905   if test "${USE_X_TOOLKIT}" != "none"; then
1906     AC_CHECK_LIB(Xext, XShapeQueryExtension)
1907   fi
1910 if test "${USE_X_TOOLKIT}" = "MOTIF"; then
1911   AC_CACHE_CHECK(for Motif version 2.1, emacs_cv_motif_version_2_1,
1912   [AC_TRY_COMPILE([#include <Xm/Xm.h>],
1913     [#if XmVERSION > 2 || (XmVERSION == 2 && XmREVISION >= 1)
1914 int x = 5;
1915 #else
1916 Motif version prior to 2.1.
1917 #endif],
1918     emacs_cv_motif_version_2_1=yes, emacs_cv_motif_version_2_1=no)])
1919   HAVE_MOTIF_2_1=$emacs_cv_motif_version_2_1
1920   if test $emacs_cv_motif_version_2_1 = yes; then
1921     HAVE_LIBXP=no
1922     AC_DEFINE(HAVE_MOTIF_2_1, 1,
1923               [Define to 1 if you have Motif 2.1 or newer.])
1924     AC_CHECK_LIB(Xp, XpCreateContext, HAVE_LIBXP=yes)
1925     if test ${HAVE_LIBXP} = yes; then
1926       AC_DEFINE(HAVE_LIBXP, 1,
1927                 [Define to 1 if you have the Xp library (-lXp).])
1928     fi
1929   else
1930     AC_CACHE_CHECK(for LessTif where some systems put it, emacs_cv_lesstif,
1931     # We put this in CFLAGS temporarily to precede other -I options
1932     # that might be in CFLAGS temporarily.
1933     # We put this in CPPFLAGS where it precedes the other -I options.
1934     OLD_CPPFLAGS=$CPPFLAGS
1935     OLD_CFLAGS=$CFLAGS
1936     CPPFLAGS="-I/usr/X11R6/LessTif/Motif1.2/include $CPPFLAGS"
1937     CFLAGS="-I/usr/X11R6/LessTif/Motif1.2/include $CFLAGS"
1938     [AC_TRY_COMPILE([#include </usr/X11R6/LessTif/Motif1.2/include/Xm/Xm.h>],
1939       [int x = 5;],
1940       emacs_cv_lesstif=yes, emacs_cv_lesstif=no)])
1941     if test $emacs_cv_lesstif = yes; then
1942       # Make sure this -I option remains in CPPFLAGS after it is set
1943       # back to REAL_CPPFLAGS.
1944       # There is no need to change REAL_CFLAGS, because REAL_CFLAGS does not
1945       # have those other -I options anyway.  Ultimately, having this
1946       # directory ultimately in CPPFLAGS will be enough.
1947       REAL_CPPFLAGS="-I/usr/X11R6/LessTif/Motif1.2/include $REAL_CPPFLAGS"
1948       LDFLAGS="-L/usr/X11R6/LessTif/Motif1.2/lib $LDFLAGS"
1949     else
1950       CFLAGS=$OLD_CFLAGS
1951       CPPFLAGS=$OLD_CPPFLAGS
1952     fi
1953   fi
1956 dnl Use toolkit scroll bars if configured for GTK or X toolkit and either
1957 dnl using Motif or Xaw3d is available, and unless
1958 dnl --with-toolkit-scroll-bars=no was specified.
1960 AH_TEMPLATE(USE_TOOLKIT_SCROLL_BARS,
1961             [Define to 1 if we should use toolkit scroll bars.])dnl
1962 USE_TOOLKIT_SCROLL_BARS=no
1963 if test "${with_toolkit_scroll_bars}" != "no"; then
1964   if test "${USE_X_TOOLKIT}" != "none"; then
1965     if test "${USE_X_TOOLKIT}" = "MOTIF"; then
1966       AC_DEFINE(USE_TOOLKIT_SCROLL_BARS)
1967       HAVE_XAW3D=no
1968       USE_TOOLKIT_SCROLL_BARS=yes
1969     elif test "${HAVE_XAW3D}" = "yes"; then
1970       AC_DEFINE(USE_TOOLKIT_SCROLL_BARS)
1971       USE_TOOLKIT_SCROLL_BARS=yes
1972     fi
1973   elif test "${HAVE_GTK}" = "yes"; then
1974     AC_DEFINE(USE_TOOLKIT_SCROLL_BARS)
1975     USE_TOOLKIT_SCROLL_BARS=yes
1976   elif test "${HAVE_CARBON}" = "yes"; then
1977     AC_DEFINE(USE_TOOLKIT_SCROLL_BARS)
1978     USE_TOOLKIT_SCROLL_BARS=yes
1979   fi
1982 dnl See if XIM is available.
1983 AC_TRY_COMPILE([
1984           #include <X11/Xlib.h>
1985           #include <X11/Xresource.h>],
1986          [XIMProc  callback;],
1987          [HAVE_XIM=yes
1988          AC_DEFINE(HAVE_XIM, 1, [Define to 1 if XIM is available])],
1989          HAVE_XIM=no)
1991 dnl `--with-xim' now controls only the initial value of use_xim at run time.
1993 if test "${with_xim}" != "no"; then
1994   AC_DEFINE(USE_XIM, 1,
1995             [Define to 1 if we should use XIM, if it is available.])
1999 if test "${HAVE_XIM}" != "no"; then
2000   late_CFLAGS=$CFLAGS
2001   if test "$GCC" = yes; then
2002     CFLAGS="$CFLAGS --pedantic-errors"
2003   fi
2004   AC_TRY_COMPILE([
2005 #include <X11/Xlib.h>
2006 #include <X11/Xresource.h>],
2007 [Display *display;
2008 XrmDatabase db;
2009 char *res_name;
2010 char *res_class;
2011 XIMProc  callback;
2012 XPointer *client_data;
2013 #ifndef __GNUC__
2014 /* If we're not using GCC, it's probably not XFree86, and this is
2015    probably right, but we can't use something like --pedantic-errors.  */
2016 extern Bool XRegisterIMInstantiateCallback(Display*, XrmDatabase, char*,
2017                                            char*, XIMProc, XPointer*);
2018 #endif
2019 (void)XRegisterIMInstantiateCallback(display, db, res_name, res_class, callback,
2020    client_data);],
2021     [emacs_cv_arg6_star=yes])
2022   AH_TEMPLATE(XRegisterIMInstantiateCallback_arg6,
2023          [Define to the type of the 6th arg of XRegisterIMInstantiateCallback,
2024 either XPointer or XPointer*.])dnl
2025   if test "$emacs_cv_arg6_star" = yes; then
2026     AC_DEFINE(XRegisterIMInstantiateCallback_arg6, [XPointer*])
2027   else
2028     AC_DEFINE(XRegisterIMInstantiateCallback_arg6, [XPointer])
2029   fi
2030   CFLAGS=$late_CFLAGS
2033 ### Use -lXpm if available, unless `--with-xpm=no'.
2034 HAVE_XPM=no
2035 if test "${HAVE_X11}" = "yes"; then
2036   if test "${with_xpm}" != "no"; then
2037     AC_CHECK_HEADER(X11/xpm.h,
2038       [AC_CHECK_LIB(Xpm, XpmReadFileToPixmap, HAVE_XPM=yes, , -lX11)])
2039     if test "${HAVE_XPM}" = "yes"; then
2040       AC_MSG_CHECKING(for XpmReturnAllocPixels preprocessor define)
2041       AC_EGREP_CPP(no_return_alloc_pixels,
2042       [#include "X11/xpm.h"
2043 #ifndef XpmReturnAllocPixels
2044 no_return_alloc_pixels
2045 #endif
2046       ], HAVE_XPM=no, HAVE_XPM=yes)
2048       if test "${HAVE_XPM}" = "yes"; then
2049         AC_MSG_RESULT(yes)
2050       else
2051         AC_MSG_RESULT(no)
2052       fi
2053     fi
2054   fi
2056   if test "${HAVE_XPM}" = "yes"; then
2057     AC_DEFINE(HAVE_XPM, 1, [Define to 1 if you have the Xpm libary (-lXpm).])
2058   fi
2061 ### Use -ljpeg if available, unless `--with-jpeg=no'.
2062 HAVE_JPEG=no
2063 if test "${HAVE_X11}" = "yes"; then
2064   if test "${with_jpeg}" != "no"; then
2065     dnl Checking for jpeglib.h can lose because of a redefinition of
2066     dnl  HAVE_STDLIB_H.
2067     AC_CHECK_HEADER(jerror.h,
2068       [AC_CHECK_LIB(jpeg, jpeg_destroy_compress, HAVE_JPEG=yes)])
2069   fi
2071   AH_TEMPLATE(HAVE_JPEG, [Define to 1 if you have the jpeg library (-ljpeg).])dnl
2072   if test "${HAVE_JPEG}" = "yes"; then
2073     AC_DEFINE(HAVE_JPEG)
2074     AC_EGREP_CPP([version= *(6[2-9]|[7-9][0-9])],
2075         [#include <jpeglib.h>
2076          version=JPEG_LIB_VERSION
2078         [AC_DEFINE(HAVE_JPEG)],
2079         [AC_MSG_WARN([libjpeg found, but not version 6b or later])
2080         HAVE_JPEG=no])
2081   fi
2084 ### Use -lpng if available, unless `--with-png=no'.
2085 HAVE_PNG=no
2086 if test "${HAVE_X11}" = "yes"; then
2087   if test "${with_png}" != "no"; then
2088     # Debian unstable as of July 2003 has multiple libpngs, and puts png.h
2089     # in /usr/include/libpng.
2090     AC_CHECK_HEADERS(png.h libpng/png.h)
2091     if test "$ac_cv_header_png_h" = yes || test "$ac_cv_header_libpng_png_h" = yes ; then
2092       AC_CHECK_LIB(png, png_get_channels, HAVE_PNG=yes, , -lz -lm)
2093     fi
2094   fi
2096   if test "${HAVE_PNG}" = "yes"; then
2097     AC_DEFINE(HAVE_PNG, 1, [Define to 1 if you have the png library (-lpng).])
2098   fi
2101 ### Use -ltiff if available, unless `--with-tiff=no'.
2102 HAVE_TIFF=no
2103 if test "${HAVE_X11}" = "yes"; then
2104   if test "${with_tiff}" != "no"; then
2105     AC_CHECK_HEADER(tiffio.h,
2106       [tifflibs="-lz -lm"
2107       # At least one tiff package requires the jpeg library.
2108       if test "${HAVE_JPEG}" = yes; then tifflibs="-ljpeg $tifflibs"; fi
2109       AC_CHECK_LIB(tiff, TIFFGetVersion, HAVE_TIFF=yes, , $tifflibs)])
2110   fi
2112   if test "${HAVE_TIFF}" = "yes"; then
2113     AC_DEFINE(HAVE_TIFF, 1, [Define to 1 if you have the tiff library (-ltiff).])
2114   fi
2117 ### Use -lgif or -lungif if available, unless `--with-gif=no'.
2118 HAVE_GIF=no
2119 if test "${HAVE_X11}" = "yes" && test "${with_gif}" != "no"; then
2120   AC_CHECK_HEADER(gif_lib.h,
2121 # EGifPutExtensionLast only exists from version libungif-4.1.0b1.
2122 # Earlier versions can crash Emacs.
2123     [AC_CHECK_LIB(gif, EGifPutExtensionLast, HAVE_GIF=yes, try_libungif=yes)])
2125   if test "$HAVE_GIF" = yes; then
2126       ac_gif_lib_name="-lgif"
2127   fi
2129 # If gif_lib.h but no libgif, try libungif.
2130   if test x"$try_libungif" = xyes; then
2131     AC_CHECK_LIB(ungif, EGifPutExtensionLast, HAVE_GIF=yes)
2133     if test "$HAVE_GIF" = yes; then
2134       AC_DEFINE(LIBGIF, -lungif, [Compiler option to link with the gif library (if not -lgif).])
2135       ac_gif_lib_name="-lungif"
2136     fi
2137   fi
2139   if test "${HAVE_GIF}" = "yes"; then
2140     AC_DEFINE(HAVE_GIF, 1, [Define to 1 if you have a gif library (default -lgif; otherwise specify with LIBGIF).])
2141   fi
2144 dnl Check for required libraries.
2145 if test "${HAVE_X11}" = "yes"; then
2146   MISSING=""
2147   WITH_NO=""
2148   test "${with_xpm}" != "no" && test "${HAVE_XPM}" != "yes" &&
2149     MISSING="libXpm" && WITH_NO="--with-xpm=no"
2150   test "${with_jpeg}" != "no" && test "${HAVE_JPEG}" != "yes" &&
2151     MISSING="$MISSING libjpeg" && WITH_NO="$WITH_NO --with-jpeg=no"
2152   test "${with_png}" != "no" && test "${HAVE_PNG}" != "yes" &&
2153     MISSING="$MISSING libpng" && WITH_NO="$WITH_NO --with-png=no"
2154   test "${with_gif}" != "no" && test "${HAVE_GIF}" != "yes" &&
2155     MISSING="$MISSING libgif/libungif" && WITH_NO="$WITH_NO --with-gif=no"
2156   test "${with_tiff}" != "no" && test "${HAVE_TIFF}" != "yes" &&
2157     MISSING="$MISSING libtiff" && WITH_NO="$WITH_NO --with-tiff=no"
2159   if test "X${MISSING}" != X; then
2160     AC_MSG_ERROR([The following required libraries were not found:
2161     $MISSING
2162 Maybe some development libraries/packages are missing?
2163 If you don't want to link with them give
2164     $WITH_NO
2165 as options to configure])
2166   fi
2169 ### Use -lgpm if available, unless `--with-gpm=no'.
2170 HAVE_GPM=no
2171 if test "${with_gpm}" != "no"; then
2172   AC_CHECK_HEADER(gpm.h,
2173     [AC_CHECK_LIB(gpm, Gpm_Open, HAVE_GPM=yes)])
2176 if test "${HAVE_GPM}" = "yes"; then
2177   AC_DEFINE(HAVE_GPM, 1, [Define to 1 if you have the gpm library (-lgpm).])
2180 dnl Check for malloc/malloc.h on darwin
2181 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.])])
2183 ### Use Mac OS X Carbon API to implement GUI.
2184 if test "${HAVE_CARBON}" = "yes"; then
2185   AC_DEFINE(HAVE_CARBON, 1, [Define to 1 if you are using the Carbon API on Mac OS X.])
2186   ## Specify the install directory
2187   carbon_appdir=
2188   if test "${carbon_appdir_x}" != ""; then
2189     case ${carbon_appdir_x} in
2190       y | ye | yes)  carbon_appdir=/Applications ;;
2191       * ) carbon_appdir=${carbon_appdir_x} ;;
2192     esac
2193   fi
2194   # We also have mouse menus.
2195   HAVE_MENUS=yes
2198 ### Use session management (-lSM -lICE) if available
2199 HAVE_X_SM=no
2200 if test "${HAVE_X11}" = "yes"; then
2201   AC_CHECK_HEADER(X11/SM/SMlib.h,
2202     [AC_CHECK_LIB(SM, SmcOpenConnection, HAVE_X_SM=yes, , -lICE)])
2204   if test "${HAVE_X_SM}" = "yes"; then
2205     AC_DEFINE(HAVE_X_SM, 1, [Define to 1 if you have the SM library (-lSM).])
2206     case "$LIBS" in
2207       *-lSM*) ;;
2208       *)      LIBS="-lSM -lICE $LIBS" ;;
2209     esac
2210   fi
2213 # If netdb.h doesn't declare h_errno, we must declare it by hand.
2214 AC_CACHE_CHECK(whether netdb declares h_errno,
2215                emacs_cv_netdb_declares_h_errno,
2216 [AC_TRY_LINK([#include <netdb.h>],
2217   [return h_errno;],
2218   emacs_cv_netdb_declares_h_errno=yes, emacs_cv_netdb_declares_h_errno=no)])
2219 if test $emacs_cv_netdb_declares_h_errno = yes; then
2220   AC_DEFINE(HAVE_H_ERRNO, 1, [Define to 1 if netdb.h declares h_errno.])
2223 AC_FUNC_ALLOCA
2225 dnl src/alloca.c has been removed.  Could also check if $ALLOCA is set?
2226 dnl FIXME is there an autoconf test that does the right thing, without
2227 dnl needing to call A_M_E afterwards?
2228 if test x"$ac_cv_func_alloca_works" != xyes; then
2229    AC_MSG_ERROR( [a system implementation of alloca is required] )
2232 # fmod, logb, and frexp are found in -lm on most systems.
2233 # On HPUX 9.01, -lm does not contain logb, so check for sqrt.
2234 AC_CHECK_LIB(m, sqrt)
2236 # Check for mail-locking functions in a "mail" library.  Probably this should
2237 # have the same check as for liblockfile below.
2238 AC_CHECK_LIB(mail, maillock)
2239 dnl Debian, at least:
2240 AC_CHECK_LIB(lockfile, maillock)
2241 # If we have the shared liblockfile, assume we must use it for mail
2242 # locking (e.g. Debian).  If we couldn't link against liblockfile
2243 # (no liblockfile.a installed), ensure that we don't need to.
2244 if test "$ac_cv_lib_lockfile_maillock" = no; then
2245   dnl This works for files generally, not just executables.
2246   dnl Should we look elsewhere for it?  Maybe examine /etc/ld.so.conf?
2247   AC_CHECK_PROG(liblockfile, liblockfile.so, yes, no,
2248                 /usr/lib:/lib:/usr/local/lib:$LD_LIBRARY_PATH)
2249   if test $ac_cv_prog_liblockfile = yes; then
2250     AC_MSG_ERROR([Shared liblockfile found but can't link against it.
2251 This probably means that movemail could lose mail.
2252 There may be a `development' package to install containing liblockfile.])
2253   else :
2254   fi
2256 AC_CHECK_FUNCS(touchlock)
2257 AC_CHECK_HEADERS(maillock.h)
2259 AC_CHECK_FUNCS(gethostname getdomainname dup2 \
2260 rename closedir mkdir rmdir sysinfo getrusage get_current_dir_name \
2261 random lrand48 bcopy bcmp logb frexp fmod rint cbrt ftime setsid \
2262 strerror fpathconf select mktime euidaccess getpagesize tzset setlocale \
2263 utimes setrlimit setpgid getcwd getwd shutdown getaddrinfo \
2264 __fpending mblen mbrlen mbsinit strsignal setitimer ualarm index rindex \
2265 sendto recvfrom getsockopt setsockopt getsockname getpeername \
2266 gai_strerror mkstemp getline getdelim mremap memmove fsync sync bzero \
2267 memset memcmp difftime memcpy mempcpy mblen mbrlen posix_memalign)
2269 AC_CHECK_HEADERS(sys/un.h)
2271 AC_FUNC_MKTIME
2272 if test "$ac_cv_func_working_mktime" = no; then
2273   AC_DEFINE(BROKEN_MKTIME, 1, [Define to 1 if the mktime function is broken.])
2276 AC_FUNC_GETLOADAVG
2278 AC_FUNC_FSEEKO
2280 # Configure getopt.
2281 m4_include([m4/getopt.m4])
2282 gl_GETOPT_IFELSE([
2283   gl_GETOPT_SUBSTITUTE_HEADER
2284   gl_PREREQ_GETOPT
2285   GETOPTOBJS='getopt.o getopt1.o'
2287 AC_SUBST(GETOPTOBJS)
2289 AC_FUNC_GETPGRP
2291 AC_FUNC_STRFTIME
2293 # UNIX98 PTYs.
2294 AC_CHECK_FUNCS(grantpt)
2296 # PTY-related GNU extensions.
2297 AC_CHECK_FUNCS(getpt)
2299 # Check this now, so that we will NOT find the above functions in ncurses.
2300 # That is because we have not set up to link ncurses in lib-src.
2301 # It's better to believe a function is not available
2302 # than to expect to find it in ncurses.
2303 AC_CHECK_LIB(ncurses, tparm)
2305 # Do we have res_init, for detecting changes in /etc/resolv.conf?
2307 resolv=no
2308 AC_TRY_LINK([#include <netinet/in.h>
2309 #include <arpa/nameser.h>
2310 #include <resolv.h>],
2311     [return res_init();],
2312     have_res_init=yes, have_res_init=no)
2313 if test "$have_res_init" = no; then
2314   OLIBS="$LIBS"
2315   LIBS="$LIBS -lresolv"
2316   AC_MSG_CHECKING(for res_init with -lresolv)
2317   AC_TRY_LINK([#include <netinet/in.h>
2318 #include <arpa/nameser.h>
2319 #include <resolv.h>],
2320     [return res_init();],
2321     have_res_init=yes, have_res_init=no)
2322   AC_MSG_RESULT($have_res_init)
2323   if test "$have_res_init" = yes ; then
2324     resolv=yes
2325   fi
2326   LIBS="$OLIBS"
2329 if test "$have_res_init" = yes; then
2330   AC_DEFINE(HAVE_RES_INIT, 1, [Define to 1 if res_init is available.])
2333 # Do we need the Hesiod library to provide the support routines?
2334 if test "$with_hesiod" = yes ; then
2335   # Don't set $LIBS here -- see comments above.
2336   AC_CHECK_FUNC(res_send, , [AC_CHECK_FUNC(__res_send, ,
2337      [AC_CHECK_LIB(resolv, res_send, resolv=yes,
2338                   [AC_CHECK_LIB(resolv, __res_send, resolv=yes)])])])
2339   if test "$resolv" = yes ; then
2340     RESOLVLIB=-lresolv
2341   else
2342     RESOLVLIB=
2343   fi
2344   AC_CHECK_FUNC(hes_getmailhost, , [AC_CHECK_LIB(hesiod, hes_getmailhost,
2345         [AC_DEFINE(HAVE_LIBHESIOD, 1,
2346                   [Define to 1 if you have the hesiod library (-lhesiod).])],
2347         :, $RESOLVLIB)])
2350 # Do we need libresolv (due to res_init or Hesiod)?
2351 if test "$resolv" = yes ; then
2352   AC_DEFINE(HAVE_LIBRESOLV, 1,
2353             [Define to 1 if you have the resolv library (-lresolv).])
2356 # These tell us which Kerberos-related libraries to use.
2357 if test "${with_kerberos+set}" = set; then
2358   AC_CHECK_LIB(com_err, com_err)
2359   AC_CHECK_LIB(k5crypto, mit_des_cbc_encrypt)
2360   AC_CHECK_LIB(crypto, mit_des_cbc_encrypt)
2361   AC_CHECK_LIB(krb5, krb5_init_context)
2362   if test "${with_kerberos5+set}" != set; then
2363     AC_CHECK_LIB(des425, des_cbc_encrypt,,
2364                  [AC_CHECK_LIB(des, des_cbc_encrypt)])
2365     AC_CHECK_LIB(krb4, krb_get_cred,,
2366                  [AC_CHECK_LIB(krb, krb_get_cred)])
2367   fi
2369   if test "${with_kerberos5+set}" = set; then
2370     AC_CHECK_HEADERS(krb5.h)
2371   else
2372     AC_CHECK_HEADERS(des.h,,
2373                      [AC_CHECK_HEADERS(kerberosIV/des.h,,
2374                                        [AC_CHECK_HEADERS(kerberos/des.h)])])
2375     AC_CHECK_HEADERS(krb.h,,
2376                      [AC_CHECK_HEADERS(kerberosIV/krb.h,,
2377                                        [AC_CHECK_HEADERS(kerberos/krb.h)])])
2378   fi
2379   AC_CHECK_HEADERS(com_err.h)
2382 # Solaris requires -lintl if you want strerror (which calls dgettext)
2383 # to return localized messages.
2384 AC_CHECK_LIB(intl, dgettext)
2386 AC_MSG_CHECKING(whether localtime caches TZ)
2387 AC_CACHE_VAL(emacs_cv_localtime_cache,
2388 [if test x$ac_cv_func_tzset = xyes; then
2389 AC_TRY_RUN([#include <time.h>
2390 extern char **environ;
2391 unset_TZ ()
2393   char **from, **to;
2394   for (to = from = environ; (*to = *from); from++)
2395     if (! (to[0][0] == 'T' && to[0][1] == 'Z' && to[0][2] == '='))
2396       to++;
2398 char TZ_GMT0[] = "TZ=GMT0";
2399 char TZ_PST8[] = "TZ=PST8";
2400 main()
2402   time_t now = time ((time_t *) 0);
2403   int hour_GMT0, hour_unset;
2404   if (putenv (TZ_GMT0) != 0)
2405     exit (1);
2406   hour_GMT0 = localtime (&now)->tm_hour;
2407   unset_TZ ();
2408   hour_unset = localtime (&now)->tm_hour;
2409   if (putenv (TZ_PST8) != 0)
2410     exit (1);
2411   if (localtime (&now)->tm_hour == hour_GMT0)
2412     exit (1);
2413   unset_TZ ();
2414   if (localtime (&now)->tm_hour != hour_unset)
2415     exit (1);
2416   exit (0);
2417 }], emacs_cv_localtime_cache=no, emacs_cv_localtime_cache=yes,
2418 [# If we have tzset, assume the worst when cross-compiling.
2419 emacs_cv_localtime_cache=yes])
2420 else
2421         # If we lack tzset, report that localtime does not cache TZ,
2422         # since we can't invalidate the cache if we don't have tzset.
2423         emacs_cv_localtime_cache=no
2424 fi])dnl
2425 AC_MSG_RESULT($emacs_cv_localtime_cache)
2426 if test $emacs_cv_localtime_cache = yes; then
2427   AC_DEFINE(LOCALTIME_CACHE, 1,
2428             [Define to 1 if localtime caches TZ.])
2431 if test "x$HAVE_TIMEVAL" = xyes; then
2432   AC_CHECK_FUNCS(gettimeofday)
2433   if test $ac_cv_func_gettimeofday = yes; then
2434     AC_CACHE_CHECK(whether gettimeofday can accept two arguments,
2435                    emacs_cv_gettimeofday_two_arguments,
2436     [AC_TRY_COMPILE([
2437 #ifdef TIME_WITH_SYS_TIME
2438 #include <sys/time.h>
2439 #include <time.h>
2440 #else
2441 #ifdef HAVE_SYS_TIME_H
2442 #include <sys/time.h>
2443 #else
2444 #include <time.h>
2445 #endif
2446 #endif],
2447       [struct timeval time;
2448        gettimeofday (&time, 0);],
2449       emacs_cv_gettimeofday_two_arguments=yes,
2450       emacs_cv_gettimeofday_two_arguments=no)])
2451     if test $emacs_cv_gettimeofday_two_arguments = no; then
2452       AC_DEFINE(GETTIMEOFDAY_ONE_ARGUMENT, 1,
2453                 [Define to 1 if gettimeofday accepts only one argument.])
2454     fi
2455   fi
2458 ok_so_far=yes
2459 AC_CHECK_FUNC(socket, , ok_so_far=no)
2460 if test $ok_so_far = yes; then
2461   AC_CHECK_HEADER(netinet/in.h, , ok_so_far=no)
2463 if test $ok_so_far = yes; then
2464   AC_CHECK_HEADER(arpa/inet.h, , ok_so_far=no)
2466 if test $ok_so_far = yes; then
2467 dnl Fixme: Not used.  Should this be HAVE_SOCKETS?
2468   AC_DEFINE(HAVE_INET_SOCKETS, 1,
2469             [Define to 1 if you have inet sockets.])
2472 AC_CHECK_HEADERS(sys/ioctl.h)
2474 if test -f /usr/lpp/X11/bin/smt.exp; then
2475   AC_DEFINE(HAVE_AIX_SMT_EXP, 1,
2476             [Define to 1 if the file /usr/lpp/X11/bin/smt.exp exists.])
2479 AC_MSG_CHECKING(whether system supports dynamic ptys)
2480 if test -d /dev/pts && ls -d /dev/ptmx > /dev/null 2>&1 ; then
2481   AC_MSG_RESULT(yes)
2482   AC_DEFINE(HAVE_DEV_PTMX, 1, [Define to 1 if dynamic ptys are supported.])
2483 else
2484   AC_MSG_RESULT(no)
2487 AC_FUNC_FORK
2489 dnl Adapted from Haible's version.
2490 AC_CACHE_CHECK([for nl_langinfo and CODESET], emacs_cv_langinfo_codeset,
2491   [AC_TRY_LINK([#include <langinfo.h>],
2492     [char* cs = nl_langinfo(CODESET);],
2493     emacs_cv_langinfo_codeset=yes,
2494     emacs_cv_langinfo_codeset=no)
2495   ])
2496 if test $emacs_cv_langinfo_codeset = yes; then
2497   AC_DEFINE(HAVE_LANGINFO_CODESET, 1,
2498     [Define if you have <langinfo.h> and nl_langinfo(CODESET).])
2501 AC_CHECK_TYPES(size_t)
2503 AC_TYPE_MBSTATE_T
2505 dnl Restrict could probably be used effectively other than in regex.c.
2506 AC_CACHE_CHECK([for C restrict keyword], emacs_cv_c_restrict,
2507   [AC_TRY_COMPILE([void fred (int *restrict x);], [],
2508                   emacs_cv_c_restrict=yes,
2509                   [AC_TRY_COMPILE([void fred (int *__restrict x);], [],
2510                                   emacs_cv_c_restrict=__restrict,
2511                                   emacs_cv_c_restrict=no)])])
2512 case "$emacs_cv_c_restrict" in
2513   yes) emacs_restrict=restrict;;
2514   no) emacs_restrict="";;
2515   *) emacs_restrict="$emacs_cv_c_restrict";;
2516 esac
2517 if test "$emacs_restrict" != __restrict; then
2518   AC_DEFINE_UNQUOTED(__restrict, $emacs_restrict,
2519     [Define to compiler's equivalent of C99 restrict keyword.
2520      Don't define if equivalent is `__restrict'.])
2523 AC_CACHE_CHECK([for C restricted array declarations], emacs_cv_c_restrict_arr,
2524   [AC_TRY_COMPILE([void fred (int x[__restrict]);], [],
2525                   emacs_cv_c_restrict_arr=yes, emacs_cv_c_restrict_arr=no)])
2526 if test "$emacs_cv_c_restrict_arr" = yes; then
2527   AC_DEFINE(__restrict_arr, __restrict,
2528     [Define to compiler's equivalent of C99 restrict keyword in array
2529      declarations.  Define as empty for no equivalent.])
2532 dnl Fixme: AC_SYS_POSIX_TERMIOS should probably be used, but it's not clear
2533 dnl how the tty code is related to POSIX and/or other versions of termios.
2534 dnl The following looks like a useful start.
2536 dnl AC_SYS_POSIX_TERMIOS
2537 dnl if test $ac_cv_sys_posix_termios = yes; then
2538 dnl    AC_DEFINE(HAVE_TERMIOS, 1, [Define to 1 if you have POSIX-style functions
2539 dnl                                and macros for terminal control.])
2540 dnl    AC_DEFINE(HAVE_TCATTR, 1, [Define to 1 if you have tcgetattr and tcsetattr.])
2541 dnl fi
2543 dnl Fixme: Use AC_FUNC_MEMCMP since memcmp is used.  (Needs libobj replacement.)
2545 # Set up the CFLAGS for real compilation, so we can substitute it.
2546 CFLAGS="$REAL_CFLAGS"
2547 CPPFLAGS="$REAL_CPPFLAGS"
2549 #### Find out which version of Emacs this is.
2550 [version=`grep 'defconst[        ]*emacs-version' ${srcdir}/lisp/version.el \
2551          | sed -e 's/^[^"]*"\([^"]*\)".*$/\1/'`]
2552 if test x"${version}" = x; then
2553   AC_MSG_ERROR([can't find current emacs version in `${srcdir}/lisp/version.el'.])
2556 ### Specify what sort of things we'll be editing into Makefile and config.h.
2557 ### Use configuration here uncanonicalized to avoid exceeding size limits.
2558 AC_SUBST(version)
2559 AC_SUBST(configuration)
2560 AC_SUBST(canonical)
2561 AC_SUBST(srcdir)
2562 AC_SUBST(prefix)
2563 AC_SUBST(exec_prefix)
2564 AC_SUBST(bindir)
2565 AC_SUBST(datadir)
2566 AC_SUBST(sharedstatedir)
2567 AC_SUBST(libexecdir)
2568 AC_SUBST(mandir)
2569 AC_SUBST(infodir)
2570 AC_SUBST(lispdir)
2571 AC_SUBST(locallisppath)
2572 AC_SUBST(lisppath)
2573 AC_SUBST(x_default_search_path)
2574 AC_SUBST(etcdir)
2575 AC_SUBST(archlibdir)
2576 AC_SUBST(docdir)
2577 AC_SUBST(bitmapdir)
2578 AC_SUBST(gamedir)
2579 AC_SUBST(gameuser)
2580 AC_SUBST(c_switch_system)
2581 AC_SUBST(c_switch_machine)
2582 AC_SUBST(LD_SWITCH_X_SITE)
2583 AC_SUBST(LD_SWITCH_X_SITE_AUX)
2584 AC_SUBST(C_SWITCH_X_SITE)
2585 AC_SUBST(CFLAGS)
2586 AC_SUBST(X_TOOLKIT_TYPE)
2587 AC_SUBST(machfile)
2588 AC_SUBST(opsysfile)
2589 AC_SUBST(GETLOADAVG_LIBS)
2590 AC_SUBST(carbon_appdir)
2592 AC_DEFINE_UNQUOTED(EMACS_CONFIGURATION,  "${canonical}",
2593                    [Define to the canonical Emacs configuration name.])
2594 AC_DEFINE_UNQUOTED(EMACS_CONFIG_OPTIONS, "${ac_configure_args}",
2595                    [Define to the options passed to configure.])
2596 AC_DEFINE_UNQUOTED(config_machfile,  "${machfile}",
2597                    [Define to the used machine dependent file.])
2598 AC_DEFINE_UNQUOTED(config_opsysfile, "${opsysfile}",
2599                    [Define to the used os dependent file.])
2600 AC_DEFINE_UNQUOTED(LD_SWITCH_X_SITE, ${LD_SWITCH_X_SITE},
2601 [Define LD_SWITCH_X_SITE to contain any special flags your loader
2602  may need to deal with X Windows.  For instance, if you've defined
2603  HAVE_X_WINDOWS above and your X libraries aren't in a place that
2604  your loader can find on its own, you might want to add "-L/..." or
2605  something similar.])
2606 AC_DEFINE_UNQUOTED(LD_SWITCH_X_SITE_AUX, ${LD_SWITCH_X_SITE_AUX},
2607                    [Define LD_SWITCH_X_SITE_AUX with an -R option
2608                     in case it's needed (for Solaris, for example).])
2609 AC_DEFINE_UNQUOTED(C_SWITCH_X_SITE,  ${C_SWITCH_X_SITE},
2610 [Define C_SWITCH_X_SITE to contain any special flags your compiler
2611  may need to deal with X Windows.  For instance, if you've defined
2612  HAVE_X_WINDOWS above and your X include files aren't in a place
2613  that your compiler can find on its own, you might want to add
2614  "-I/..." or something similar.])
2615 AC_DEFINE_UNQUOTED(UNEXEC_SRC,       ${UNEXEC_SRC},
2616                    [Define to the unexec source file name.])
2618 if test "${HAVE_X_WINDOWS}" = "yes" ; then
2619   AC_DEFINE(HAVE_X_WINDOWS, 1,
2620             [Define to 1 if you want to use the X window system.])
2622 if test "${USE_X_TOOLKIT}" != "none" ; then
2623   AC_DEFINE(USE_X_TOOLKIT, 1, [Define to 1 if using an X toolkit.])
2625 if test "${HAVE_X11}" = "yes" ; then
2626   AC_DEFINE(HAVE_X11, 1,
2627             [Define to 1 if you want to use version 11 of X windows.
2628              Otherwise, Emacs expects to use version 10.])
2630 if test "${HAVE_XFREE386}" = "yes" ; then
2631   AC_DEFINE(HAVE_XFREE386, 1, [Define to 1 if you're using XFree386.])
2633 if test "${HAVE_MENUS}" = "yes" ; then
2634   AC_DEFINE(HAVE_MENUS, 1,
2635             [Define to 1 if you have mouse menus.
2636              (This is automatic if you use X, but the option to specify it remains.)
2637              It is also defined with other window systems that support xmenu.c.])
2639 if test "${GNU_MALLOC}" = "yes" ; then
2640   AC_DEFINE(GNU_MALLOC, 1,
2641             [Define to 1 if you want to use the GNU memory allocator.])
2643 if test "${REL_ALLOC}" = "yes" ; then
2644   AC_DEFINE(REL_ALLOC, 1,
2645             [Define REL_ALLOC if you want to use the relocating allocator for
2646              buffer space.])
2650 AH_TOP([/* GNU Emacs site configuration template file.
2651    Copyright (C) 1988, 1993, 1994, 1999, 2000, 2001, 2002, 2004, 2005,
2652      2006, 2007, 2008  Free Software Foundation, Inc.
2654 This file is part of GNU Emacs.
2656 GNU Emacs is free software; you can redistribute it and/or modify
2657 it under the terms of the GNU General Public License as published by
2658 the Free Software Foundation; either version 3, or (at your option)
2659 any later version.
2661 GNU Emacs is distributed in the hope that it will be useful,
2662 but WITHOUT ANY WARRANTY; without even the implied warranty of
2663 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
2664 GNU General Public License for more details.
2666 You should have received a copy of the GNU General Public License
2667 along with GNU Emacs; see the file COPYING.  If not, write to the
2668 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
2669 Boston, MA 02110-1301, USA.  */
2672 /* No code in Emacs #includes config.h twice, but some bits of code
2673    intended to work with other packages as well (like gmalloc.c)
2674    think they can include it as many times as they like.  */
2675 #ifndef EMACS_CONFIG_H
2676 #define EMACS_CONFIG_H
2677 ])dnl
2679 AH_BOTTOM([
2680 /* If we're using any sort of window system, define some consequences.  */
2681 #ifdef HAVE_X_WINDOWS
2682 #define HAVE_WINDOW_SYSTEM
2683 #define MULTI_KBOARD
2684 #define HAVE_MOUSE
2685 #endif
2687 /* Multi-tty support relies on MULTI_KBOARD.  It seems safe to turn it
2688    on unconditionally.  Note that src/s/darwin.h disables this at
2689    present.  */
2690 #ifndef MULTI_KBOARD
2691 #define MULTI_KBOARD
2692 #endif
2694 /* If we're using the Carbon API on Mac OS X, define a few more
2695    variables as well.  */
2696 #ifdef HAVE_CARBON
2697 #define HAVE_WINDOW_SYSTEM
2698 #define HAVE_MOUSE
2699 #endif
2701 /* Define USER_FULL_NAME to return a string
2702    that is the user's full name.
2703    It can assume that the variable `pw'
2704    points to the password file entry for this user.
2706    At some sites, the pw_gecos field contains
2707    the user's full name.  If neither this nor any other
2708    field contains the right thing, use pw_name,
2709    giving the user's login name, since that is better than nothing.  */
2710 #define USER_FULL_NAME pw->pw_gecos
2712 /* Define AMPERSAND_FULL_NAME if you use the convention
2713    that & in the full name stands for the login id.  */
2714 /* Turned on June 1996 supposing nobody will mind it.  */
2715 #define AMPERSAND_FULL_NAME
2717 /* We have blockinput.h.  */
2718 #define DO_BLOCK_INPUT
2720 /* Define HAVE_SOUND if we have sound support.  We know it works
2721    and compiles only on the specified platforms.   For others,
2722    it probably doesn't make sense to try.  */
2724 #if defined __FreeBSD__ || defined __NetBSD__ || defined __linux__
2725 #ifdef HAVE_MACHINE_SOUNDCARD_H
2726 #define HAVE_SOUND 1
2727 #endif
2728 #ifdef HAVE_SYS_SOUNDCARD_H
2729 #define HAVE_SOUND 1
2730 #endif
2731 #ifdef HAVE_SOUNDCARD_H
2732 #define HAVE_SOUND 1
2733 #endif
2734 #ifdef HAVE_ALSA
2735 #define HAVE_SOUND 1
2736 #endif
2737 #endif /* __FreeBSD__ || __NetBSD__ || __linux__  */
2739 /* If using GNU, then support inline function declarations. */
2740 /* Don't try to switch on inline handling as detected by AC_C_INLINE
2741    generally, because even if non-gcc compilers accept `inline', they
2742    may reject `extern inline'.  */
2743 #if defined (__GNUC__) && defined (OPTIMIZE)
2744 #define INLINE __inline__
2745 #else
2746 #define INLINE
2747 #endif
2749 /* Include the os and machine dependent files.  */
2750 #include config_opsysfile
2751 #include config_machfile
2753 /* Load in the conversion definitions if this system
2754    needs them and the source file being compiled has not
2755    said to inhibit this.  There should be no need for you
2756    to alter these lines.  */
2758 #ifdef SHORTNAMES
2759 #ifndef NO_SHORTNAMES
2760 #include "../shortnames/remap.h"
2761 #endif /* not NO_SHORTNAMES */
2762 #endif /* SHORTNAMES */
2764 /* If no remapping takes place, static variables cannot be dumped as
2765    pure, so don't worry about the `static' keyword. */
2766 #ifdef NO_REMAP
2767 #undef static
2768 #endif
2770 /* Define `subprocesses' should be defined if you want to
2771    have code for asynchronous subprocesses
2772    (as used in M-x compile and M-x shell).
2773    These do not work for some USG systems yet;
2774    for the ones where they work, the s/SYSTEM.h file defines this flag.  */
2776 #ifndef VMS
2777 #ifndef USG
2778 /* #define subprocesses */
2779 #endif
2780 #endif
2782 /* SIGTYPE is the macro we actually use.  */
2783 #ifndef SIGTYPE
2784 #define SIGTYPE RETSIGTYPE
2785 #endif
2787 #ifdef emacs /* Don't do this for lib-src.  */
2788 /* Tell regex.c to use a type compatible with Emacs.  */
2789 #define RE_TRANSLATE_TYPE Lisp_Object
2790 #define RE_TRANSLATE(TBL, C) CHAR_TABLE_TRANSLATE (TBL, C)
2791 #ifdef make_number
2792 /* If make_number is a macro, use it.  */
2793 #define RE_TRANSLATE_P(TBL) (!EQ (TBL, make_number (0)))
2794 #else
2795 /* If make_number is a function, avoid it.  */
2796 #define RE_TRANSLATE_P(TBL) (!(INTEGERP (TBL) && XINT (TBL) == 0))
2797 #endif
2798 #endif
2800 /* Avoid link-time collision with system mktime if we will use our own.  */
2801 #if ! HAVE_MKTIME || BROKEN_MKTIME
2802 #define mktime emacs_mktime
2803 #endif
2805 #define my_strftime nstrftime   /* for strftime.c */
2807 /* The rest of the code currently tests the CPP symbol BSTRING.
2808    Override any claims made by the system-description files.
2809    Note that on some SCO version it is possible to have bcopy and not bcmp.  */
2810 #undef BSTRING
2811 #if defined (HAVE_BCOPY) && defined (HAVE_BCMP)
2812 #define BSTRING
2813 #endif
2815 /* Some of the files of Emacs which are intended for use with other
2816    programs assume that if you have a config.h file, you must declare
2817    the type of getenv.
2819    This declaration shouldn't appear when alloca.s or Makefile.in
2820    includes config.h.  */
2821 #ifndef NOT_C_CODE
2822 extern char *getenv ();
2823 #endif
2825 /* These default definitions are good for almost all machines.
2826    The exceptions override them in m/MACHINE.h.  */
2828 #ifndef BITS_PER_CHAR
2829 #define BITS_PER_CHAR 8
2830 #endif
2832 #ifndef BITS_PER_SHORT
2833 #define BITS_PER_SHORT 16
2834 #endif
2836 /* Note that lisp.h uses this in a preprocessor conditional, so it
2837    would not work to use sizeof.  That being so, we do all of them
2838    without sizeof, for uniformity's sake.  */
2839 #ifndef BITS_PER_INT
2840 #define BITS_PER_INT 32
2841 #endif
2843 #ifndef BITS_PER_LONG
2844 #ifdef _LP64
2845 #define BITS_PER_LONG 64
2846 #else
2847 #define BITS_PER_LONG 32
2848 #endif
2849 #endif
2851 /* Define if the compiler supports function prototypes.  It may do so
2852    but not define __STDC__ (e.g. DEC C by default) or may define it as
2853    zero.  */
2854 #undef PROTOTYPES
2855 /* For mktime.c:  */
2856 #ifndef __P
2857 # if defined PROTOTYPES
2858 #  define __P(args) args
2859 # else
2860 #  define __P(args) ()
2861 # endif  /* GCC.  */
2862 #endif /* __P */
2864 /* Don't include "string.h" or <stdlib.h> in non-C code.  */
2865 #ifndef NOT_C_CODE
2866 #ifdef HAVE_STRING_H
2867 #include "string.h"
2868 #endif
2869 #ifdef HAVE_STRINGS_H
2870 #include "strings.h"  /* May be needed for bcopy & al. */
2871 #endif
2872 #ifdef HAVE_STDLIB_H
2873 #include <stdlib.h>
2874 #endif
2875 #ifndef __GNUC__
2876 # ifdef HAVE_ALLOCA_H
2877 #  include <alloca.h>
2878 # else /* AIX files deal with #pragma.  */
2879 #  ifndef alloca /* predefined by HP cc +Olibcalls */
2880 char *alloca ();
2881 #  endif
2882 # endif /* HAVE_ALLOCA_H */
2883 #endif /* __GNUC__ */
2884 #ifndef HAVE_SIZE_T
2885 typedef unsigned size_t;
2886 #endif
2887 #endif /* NOT_C_CODE */
2889 /* Define HAVE_X_I18N if we have usable i18n support.  */
2891 #ifdef HAVE_X11R6
2892 #define HAVE_X_I18N
2893 #elif !defined X11R5_INHIBIT_I18N
2894 #define HAVE_X_I18N
2895 #endif
2897 /* Define HAVE_X11R6_XIM if we have usable X11R6-style XIM support.  */
2899 #if defined HAVE_X11R6 && !defined INHIBIT_X11R6_XIM
2900 #define HAVE_X11R6_XIM
2901 #endif
2903 /* Should we enable expensive run-time checking of data types?  */
2904 #undef ENABLE_CHECKING
2906 #if defined __GNUC__ && (__GNUC__ > 2 \
2907                          || (__GNUC__ == 2 && __GNUC_MINOR__ >= 5))
2908 #define NO_RETURN       __attribute__ ((__noreturn__))
2909 #else
2910 #define NO_RETURN       /* nothing */
2911 #endif
2913 /* These won't be used automatically yet.  We also need to know, at least,
2914    that the stack is continuous.  */
2915 #ifdef __GNUC__
2916 #  ifndef GC_SETJMP_WORKS
2917   /* GC_SETJMP_WORKS is nearly always appropriate for GCC --
2918      see NON_SAVING_SETJMP in the target descriptions.  */
2919   /* Exceptions (see NON_SAVING_SETJMP in target description) are
2920      SCO5 non-ELF (but Emacs specifies ELF) and SVR3 on x86.
2921      Fixme: Deal with SVR3.  */
2922 #    define GC_SETJMP_WORKS 1
2923 #  endif
2924 #  ifndef GC_LISP_OBJECT_ALIGNMENT
2925 #    define GC_LISP_OBJECT_ALIGNMENT (__alignof__ (Lisp_Object))
2926 #  endif
2927 #endif
2929 #ifndef HAVE_BCOPY
2930 #define bcopy(a,b,s) memcpy (b,a,s)
2931 #endif
2932 #ifndef HAVE_BZERO
2933 #define bzero(a,s) memset (a,0,s)
2934 #endif
2935 #ifndef HAVE_BCMP
2936 #define BCMP memcmp
2937 #endif
2939 #endif /* EMACS_CONFIG_H */
2942 Local Variables:
2943 mode: c
2944 End:
2946 ])dnl
2948 #### Report on what we decided to do.
2949 #### Report GTK as a toolkit, even if it doesn't use Xt.
2950 #### It makes printing result more understandable as using GTK sets
2951 #### toolkit_scroll_bars to yes by default.
2952 if test "${HAVE_GTK}" = "yes"; then
2953   USE_X_TOOLKIT=GTK
2956 echo "
2957 Configured for \`${canonical}'.
2959   Where should the build process find the source code?    ${srcdir}
2960   What operating system and machine description files should Emacs use?
2961         \`${opsysfile}' and \`${machfile}'
2962   What compiler should emacs be built with?               ${CC} ${CFLAGS}
2963   Should Emacs use the GNU version of malloc?             ${GNU_MALLOC}${GNU_MALLOC_reason}
2964   Should Emacs use a relocating allocator for buffers?    ${REL_ALLOC}
2965   Should Emacs use mmap(2) for buffer allocation?         $use_mmap_for_buffers
2966   What window system should Emacs use?                    ${window_system}
2967   What toolkit should Emacs use?                          ${USE_X_TOOLKIT}"
2969 if test -n "${x_includes}"; then
2970 echo "  Where do we find X Windows header files?                ${x_includes}"
2971 else
2972 echo "  Where do we find X Windows header files?                Standard dirs"
2974 if test -n "${x_libraries}"; then
2975 echo "  Where do we find X Windows libraries?                   ${x_libraries}"
2976 else
2977 echo "  Where do we find X Windows libraries?                   Standard dirs"
2980 echo "  Does Emacs use -lXaw3d?                                 ${HAVE_XAW3D}"
2981 echo "  Does Emacs use -lXpm?                                   ${HAVE_XPM}"
2982 echo "  Does Emacs use -ljpeg?                                  ${HAVE_JPEG}"
2983 echo "  Does Emacs use -ltiff?                                  ${HAVE_TIFF}"
2984 echo "  Does Emacs use a gif library?                           ${HAVE_GIF} $ac_gif_lib_name"
2985 echo "  Does Emacs use -lpng?                                   ${HAVE_PNG}"
2986 echo "  Does Emacs use -lrsvg-2?                                ${HAVE_RSVG}"
2987 echo "  Does Emacs use -lgpm?                                   ${HAVE_GPM}"
2988 echo "  Does Emacs use X toolkit scroll bars?                   ${USE_TOOLKIT_SCROLL_BARS}"
2989 echo
2991 if test $USE_XASSERTS = yes; then
2992    echo "  Compiling with asserts turned on."
2993    CPPFLAGS="$CPPFLAGS -DXASSERTS=1"
2994    echo
2997 if test "$USE_X_TOOLKIT" = GTK; then
2998   case "$canonical" in
2999   *cygwin*)
3000     echo "There are known problems with Emacs and Gtk+ on cygwin, so you
3001   will probably get a crash on startup.  If this happens, please use another
3002   toolkit for Emacs.  See etc/PROBLEMS for more information."
3003   ;;
3004   esac
3008 if test "$HAVE_CARBON" = "yes"; then
3009    echo
3010    echo "Warning: The Mac Carbon port is currently unsupported and has
3011 known problems.  It is not recommended for use by non-developers.
3012 Read the emacs-devel archives for more information."
3013    echo
3016 if test "$HAVE_DBUS" = yes && test "${opsys}" != "gnu-linux"; then
3017   echo "D-Bus integration has been tested for GNU/Linux only."
3018   echo
3022 # Remove any trailing slashes in these variables.
3023 [test "${prefix}" != NONE &&
3024   prefix=`echo "${prefix}" | sed 's,\([^/]\)/*$,\1,'`
3025 test "${exec_prefix}" != NONE &&
3026   exec_prefix=`echo "${exec_prefix}" | sed 's,\([^/]\)/*$,\1,'`]
3028 ## Check if the C preprocessor will convert `..' to `. .'.  If so, set
3029 ## CPP_NEED_TRADITIONAL to `yes' so that the code to generate Makefile
3030 ## from Makefile.c can correctly provide the arg `-traditional' to the
3031 ## C preprocessor.
3033 AC_EGREP_CPP(yes..yes,
3034         [yes..yes],
3035         CPP_NEED_TRADITIONAL=no,
3036         CPP_NEED_TRADITIONAL=yes)
3038 AC_OUTPUT(Makefile lib-src/Makefile.c:lib-src/Makefile.in oldXMenu/Makefile \
3039         doc/emacs/Makefile doc/misc/Makefile doc/lispintro/Makefile \
3040         doc/lispref/Makefile src/Makefile.c:src/Makefile.in \
3041         lwlib/Makefile lisp/Makefile leim/Makefile, [
3043 ### Make the necessary directories, if they don't exist.
3044 for dir in etc lisp ; do
3045   test -d ${dir} || mkdir ${dir}
3046 done
3048 # Build src/Makefile from ${srcdir}/src/Makefile.c
3049 # and lib-src/Makefile from ${srcdir}/lib-src/Makefile.c
3050 # This must be done after src/config.h is built, since we rely on that file.
3052 # Now get this: Some word that is part of the ${srcdir} directory name
3053 # or the ${configuration} value might, just might, happen to be an
3054 # identifier like `sun4' or `i386' or something, and be predefined by
3055 # the C preprocessor to some helpful value like 1, or maybe the empty
3056 # string.  Needless to say consequent macro substitutions are less
3057 # than conducive to the makefile finding the correct directory.
3058 [undefs="`echo $top_srcdir $configuration $canonical |
3059 sed -e 's/[^a-zA-Z0-9_]/ /g' -e 's/^/ /' -e 's/  *$//' \
3060     -e 's/  */ -U/g' -e 's/-U[0-9][^ ]*//g' \
3063 echo creating src/epaths.h
3064 ${MAKE-make} epaths-force
3066 # As of 2000-11-19, newest development versions of GNU cpp preprocess
3067 # `..' to `. .'  unless invoked with -traditional
3069 if test "x$GCC" = xyes && test "x$CPP_NEED_TRADITIONAL" = xyes; then
3070   CPPFLAGS="$CPPFLAGS -traditional"
3073 echo creating lib-src/Makefile
3074 ( cd lib-src
3075   rm -f junk.c junk1.c junk2.c
3076   sed -e '/start of cpp stuff/q' \
3077       < Makefile.c > junk1.c
3078   sed -e '1,/start of cpp stuff/d'\
3079       -e 's,/\*\*/#\(.*\)$,/* \1 */,' \
3080       < Makefile.c > junk.c
3081   $CPP $undefs -I. -I$srcdir/src $CPPFLAGS junk.c | \
3082       sed -e 's/^ /     /' -e '/^#/d' -e '/^[   \f]*$/d' > junk2.c
3083   cat junk1.c junk2.c > Makefile.new
3084   rm -f junk.c junk1.c junk2.c
3085   chmod 444 Makefile.new
3086   mv -f Makefile.new Makefile
3089 echo creating src/Makefile
3090 ( cd src
3091   rm -f junk.c junk1.c junk2.c
3092   sed -e '/start of cpp stuff/q' \
3093       < Makefile.c > junk1.c
3094   sed -e '1,/start of cpp stuff/d'\
3095       -e 's,/\*\*/#\(.*\)$,/* \1 */,' \
3096       < Makefile.c > junk.c
3097   $CPP $undefs -I. -I$srcdir/src $CPPFLAGS junk.c | \
3098       sed -e 's/^ /     /' -e '/^#/d' -e '/^[   \f]*$/d' > junk2.c
3099   cat junk1.c junk2.c > Makefile.new
3100   rm -f junk.c junk1.c junk2.c
3101   chmod 444 Makefile.new
3102   mv -f Makefile.new Makefile
3105 if test ! -f src/.gdbinit && test -f $srcdir/src/.gdbinit; then
3106   echo creating src/.gdbinit
3107   echo source $srcdir/src/.gdbinit > src/.gdbinit
3110 # This is how we know whether to re-run configure in certain cases.
3111 touch src/config.stamp
3113 ], [GCC="$GCC" NON_GNU_CPP="$NON_GNU_CPP" CPP="$CPP" CPP_NEED_TRADITIONAL="$CPP_NEED_TRADITIONAL" CPPFLAGS="$CPPFLAGS"])
3115 m4_if(dnl       Do not change this comment
3116    arch-tag: 156a4dd5-bddc-4d18-96ac-f37742cf6a5e
3117 )dnl