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