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