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