(w32_wnd_proc): Handle WM_MENUSELECT message.
[bpt/emacs.git] / configure.in
CommitLineData
6e502e37 1dnl Autoconf script for GNU Emacs
9ec10b2f
DM
2dnl To rebuild the `configure' script from this, execute the command
3dnl autoconf
4dnl in the directory containing this script.
6e502e37 5dnl
3f5b097c 6dnl Copyright (C) 1994, 1995, 1996, 1999, 2000 Free Software Foundation, Inc.
552dfe31 7dnl
6e502e37 8dnl This file is part of GNU Emacs.
552dfe31 9dnl
6e502e37
RS
10dnl GNU Emacs is free software; you can redistribute it and/or modify
11dnl it under the terms of the GNU General Public License as published by
12dnl the Free Software Foundation; either version 2, or (at your option)
13dnl any later version.
552dfe31 14dnl
6e502e37
RS
15dnl GNU Emacs is distributed in the hope that it will be useful,
16dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
17dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18dnl GNU General Public License for more details.
19dnl
20dnl You should have received a copy of the GNU General Public License
1fb87c77
KH
21dnl along with GNU Emacs; see the file COPYING. If not, write to the
22dnl Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23dnl Boston, MA 02111-1307, USA.
6e502e37 24
552dfe31 25AC_PREREQ(2.8)dnl
9ec10b2f 26AC_INIT(src/lisp.h)
5f8c8f00 27AC_CONFIG_HEADER(src/config.h:src/config.in)
9ec10b2f 28
9ec10b2f 29lispdir='${datadir}/emacs/${version}/lisp'
4be21f66 30locallisppath='${datadir}/emacs/${version}/site-lisp:'\
684f4cb3 31'${datadir}/emacs/site-lisp:${datadir}/emacs/${version}/leim'
9ec10b2f
DM
32lisppath='${locallisppath}:${lispdir}'
33etcdir='${datadir}/emacs/${version}/etc'
60c3568d 34archlibdir='${libexecdir}/emacs/${version}/${configuration}'
9ec10b2f
DM
35docdir='${datadir}/emacs/${version}/etc'
36
39a7c455 37AC_ARG_WITH(gcc,
6fa064b6 38[ --without-gcc don't use GCC to compile Emacs if GCC is found])
4f734bde 39AC_ARG_WITH(pop,
6fa064b6
DL
40[ --without-pop don't support POP mail retrieval with movemail],
41[if test "$withval" = yes; then
42 AC_DEFINE(MAIL_USE_POP)
43else :
3d9fec71
DL
44fi],
45AC_DEFINE(MAIL_USE_POP))
a21616bd
KR
46AC_ARG_WITH(kerberos,
47[ --with-kerberos support Kerberos-authenticated POP],
48[AC_DEFINE(KERBEROS)])
49AC_ARG_WITH(kerberos5,
50[ --with-kerberos5 support Kerberos version 5 authenticated POP],
51[if test "${with_kerberos5+set}" = set; then
52 if test "${with_kerberos+set}" != set; then
53 with_kerberos=yes
54 AC_DEFINE(KERBEROS)
55 fi
56fi
57AC_DEFINE(KERBEROS5)])
4f734bde
DM
58AC_ARG_WITH(hesiod,
59[ --with-hesiod support Hesiod to get the POP server host],
60[AC_DEFINE(HESIOD)])
61dnl This should be the last --with option, because --with-x is
62dnl added later on when we find the path of X, and it's best to
63dnl keep them together visually.
9ec10b2f 64AC_ARG_WITH(x-toolkit,
f7894e88 65[ --with-x-toolkit=KIT use an X toolkit (KIT = yes/lucid/athena/motif/no)],
9ec10b2f
DM
66[ case "${withval}" in
67 y | ye | yes ) val=athena ;;
68 n | no ) val=no ;;
69 l | lu | luc | luci | lucid ) val=lucid ;;
84c5c823 70 a | at | ath | athe | athen | athena ) val=athena ;;
3cd69289 71 m | mo | mot | moti | motif ) val=motif ;;
2e71ec17 72dnl These don't currently work.
2e71ec17
DM
73dnl o | op | ope | open | open- | open-l | open-lo \
74dnl | open-loo | open-look ) val=open-look ;;
9ec10b2f 75 * )
2e71ec17
DM
76dnl AC_MSG_ERROR([the \`--with-x-toolkit' option is supposed to have a value
77dnl which is \`yes', \`no', \`lucid', \`athena', \`motif' or \`open-look'.])
90b777c5
RS
78AC_MSG_ERROR([\`--with-x-toolkit=$withval' is invalid\;
79this option's value should be \`yes', \`no', \`lucid', \`athena', or \`motif'.
9ec10b2f
DM
80Currently, \`yes', \`athena' and \`lucid' are synonyms.])
81 ;;
82 esac
83 with_x_toolkit=$val
84])
b412189c
GM
85AC_ARG_WITH(xpm,
86[ --with-xpm use -lXpm for displaying XPM images])
87AC_ARG_WITH(jpeg,
88[ --with-jpeg use -ljpeg for displaying JPEG images])
89AC_ARG_WITH(tiff,
495ccc04 90[ --with-tiff use -ltiff for displaying TIFF images])
b412189c
GM
91AC_ARG_WITH(gif,
92[ --with-gif use -lungif for displaying GIF images])
93AC_ARG_WITH(png,
94[ --with-png use -lpng for displaying PNG images])
20c1822e 95AC_ARG_WITH(toolkit-scroll-bars,
6fa064b6 96[ --without-toolkit-scroll-bars don't use Motif or Xaw3d scroll bars])
9ec10b2f
DM
97
98#### Make srcdir absolute, if it isn't already. It's important to
99#### avoid running the path through pwd unnecessary, since pwd can
069df4bf
DM
100#### give you automounter prefixes, which can go away. We do all this
101#### so Emacs can find its files when run uninstalled.
9ec10b2f
DM
102case "${srcdir}" in
103 /* ) ;;
104 . )
105 ## We may be able to use the $PWD environment variable to make this
106 ## absolute. But sometimes PWD is inaccurate.
f6e8adea 107 ## Make sure CDPATH doesn't affect cd (in case PWD is relative).
691beae8 108 unset CDPATH
9ec10b2f
DM
109 if test "${PWD}" != "" && test "`(cd ${PWD} ; sh -c pwd)`" = "`pwd`" ;
110 then
111 srcdir="$PWD"
112 else
113 srcdir="`(cd ${srcdir}; pwd)`"
114 fi
115 ;;
116 * ) srcdir="`(cd ${srcdir}; pwd)`" ;;
117esac
118
119#### Check if the source directory already has a configured system in it.
120if test `pwd` != `(cd ${srcdir} && pwd)` \
121 && test -f "${srcdir}/src/config.h" ; then
122 AC_MSG_WARN([The directory tree \`${srcdir}' is being used
123 as a build directory right now; it has been configured in its own
124 right. To configure in another directory as well, you MUST
125 use GNU make. If you do not have GNU make, then you must
126 now do \`make distclean' in ${srcdir},
127 and then run $0 again.])
128
2d73167a 129changequote(, )dnl
9ec10b2f 130 extrasub='/^VPATH[ ]*=/c\
2d73167a 131changequote([, ])dnl
9ec10b2f
DM
132vpath %.c $(srcdir)\
133vpath %.h $(srcdir)\
134vpath %.y $(srcdir)\
135vpath %.l $(srcdir)\
136vpath %.s $(srcdir)\
5ac83f86
RS
137vpath %.in $(srcdir)\
138vpath %.texi $(srcdir)'
9ec10b2f
DM
139fi
140
141#### Given the configuration name, set machfile and opsysfile to the
142#### names of the m/*.h and s/*.h files we should use.
143
144### Canonicalize the configuration name.
145
146AC_CANONICAL_HOST
147canonical=$host
7bbbba31 148configuration=$host_alias
9ec10b2f
DM
149
150changequote(, )dnl
151
152### If you add support for a new configuration, add code to this
153### switch statement to recognize your configuration name and select
154### the appropriate operating system and machine description files.
155
156### You would hope that you could choose an m/*.h file pretty much
157### based on the machine portion of the configuration name, and an s-
158### file based on the operating system portion. However, it turns out
159### that each m/*.h file is pretty manufacturer-specific - for
160### example, apollo.h, hp9000s300.h, mega68k, news.h, and tad68k are
161### all 68000 machines; mips.h, pmax.h, and news-risc are all MIPS
162### machines. So we basically have to have a special case for each
163### configuration name.
164###
165### As far as handling version numbers on operating systems is
166### concerned, make sure things will fail in a fixable way. If
167### /etc/MACHINES doesn't say anything about version numbers, be
168### prepared to handle anything reasonably. If version numbers
169### matter, be sure /etc/MACHINES says something about it.
170###
171### Eric Raymond says we should accept strings like "sysvr4" to mean
172### "System V Release 4"; he writes, "The old convention encouraged
173### confusion between `system' and `release' levels'."
174
175machine='' opsys='' unported=no
176case "${canonical}" in
177
178 ## NetBSD ports
179 *-*-netbsd* )
180 opsys=netbsd
181 case "${canonical}" in
98bbf2a1 182 alpha*-*-netbsd*) machine=alpha ;;
5ac83f86 183 i[3456]86-*-netbsd*) machine=intel386 ;;
9ec10b2f
DM
184 m68k-*-netbsd*)
185 # This is somewhat bogus.
186 machine=hp9000s300 ;;
ca568b47 187 powerpc-apple-netbsd*) machine=macppc ;;
9ec10b2f 188 mips-*-netbsd*) machine=pmax ;;
69d5a2fa 189 mipsel-*-netbsd*) machine=pmax ;;
9ec10b2f
DM
190 ns32k-*-netbsd*) machine=ns32000 ;;
191 sparc-*-netbsd*) machine=sparc ;;
b336ddd3 192 vax-*-netbsd*) machine=vax ;;
69d5a2fa 193 arm-*-netbsd*) machine=arm ;;
9ec10b2f
DM
194 esac
195 ;;
196
e3ac1b7f
RS
197 ## OpenBSD ports
198 *-*-openbsd* )
199 opsys=openbsd
200 case "${canonical}" in
98bbf2a1 201 alpha*-*-openbsd*) machine=alpha ;;
e3ac1b7f 202 i386-*-openbsd*) machine=intel386 ;;
6239880d
RS
203 m68k-*-openbsd*) machine=hp9000s300 ;;
204 mipsel-*-openbsd*) machine=pmax ;;
e3ac1b7f
RS
205 ns32k-*-openbsd*) machine=ns32000 ;;
206 sparc-*-openbsd*) machine=sparc ;;
ca568b47 207 vax-*-openbsd*) machine=vax ;;
e3ac1b7f
RS
208 esac
209 ;;
210
3cd69289
DM
211 ## Acorn RISCiX:
212 arm-acorn-riscix1.1* )
213 machine=acorn opsys=riscix1-1
214 ;;
215 arm-acorn-riscix1.2* | arm-acorn-riscix )
aac2257c
RS
216 ## This name is riscix12 instead of riscix1.2
217 ## to avoid a file name conflict on MSDOS.
218 machine=acorn opsys=riscix12
3cd69289
DM
219 ;;
220
2c4f7ce7
RS
221 ## BSDI ports
222 *-*-bsdi* )
223 opsys=bsdi
224 case "${canonical}" in
225 i[345]86-*-bsdi*) machine=intel386 ;;
226 sparc-*-bsdi*) machine=sparc ;;
227 powerpc-*-bsdi*) machine=powerpc ;;
228 esac
229 case "${canonical}" in
230 *-*-bsd386* | *-*-bsdi1* ) opsys=bsd386 ;;
231 *-*-bsdi2.0* ) opsys=bsdos2 ;;
232 *-*-bsdi2* ) opsys=bsdos2-1 ;;
233 *-*-bsdi3* ) opsys=bsdos3 ;;
66b48ade 234 *-*-bsdi4* ) opsys=bsdos4 ;;
2c4f7ce7
RS
235 esac
236 ;;
237
9ec10b2f
DM
238 ## Alliant machines
239 ## Strictly speaking, we need the version of the alliant operating
240 ## system to choose the right machine file, but currently the
241 ## configuration name doesn't tell us enough to choose the right
242 ## one; we need to give alliants their own operating system name to
243 ## do this right. When someone cares, they can help us.
244 fx80-alliant-* )
245 machine=alliant4 opsys=bsd4-2
246 ;;
247 i860-alliant-* )
248 machine=alliant-2800 opsys=bsd4-3
249 ;;
250
30457b4f 251 ## Alpha (DEC) machines.
98bbf2a1 252 alpha*-dec-osf* )
3cd69289 253 machine=alpha opsys=osf1
f528522b 254 # This is needed to find X11R6.1 libraries for certain tests.
1bc5a004
RS
255 NON_GCC_LINK_TEST_OPTIONS=-Wl,-rpath,/usr/X11R6/lib
256 GCC_LINK_TEST_OPTIONS=-Wl,-rpath,/usr/X11R6/lib
e57196a0
DL
257 case "${canonical}" in
258 # This is necessary on 5.0 to avoid mangling src/Makefile.
259 # Separated out in case it causes problems on earlier versions.
215f6689 260 alpha*-dec-osf[5-9]*)
e57196a0
DL
261 NON_GNU_CPP='cc -E -std0' ;;
262 esac
3cd69289
DM
263 ;;
264
98bbf2a1 265 alpha*-*-linux-gnu* )
5ac83f86 266 machine=alpha opsys=gnu-linux
4e90a7d5
RS
267 ;;
268
d506e713
GM
269 arm*-*-linux-gnu* )
270 machine=arm opsys=gnu-linux
271 ;;
272
273 ppc-*-linux | \
274 powerpc-*-linux* )
275 machine=powerpc opsys=gnu-linux
276 ;;
277
9ec10b2f
DM
278 ## Altos 3068
279 m68*-altos-sysv* )
280 machine=altos opsys=usg5-2
281 ;;
c7f493fd 282
9ec10b2f
DM
283 ## Amdahl UTS
284 580-amdahl-sysv* )
285 machine=amdahl opsys=usg5-2-2
286 ;;
287
acd04c87
RS
288 ## Apollo, Domain/OS
289 m68*-apollo-* )
290 machine=apollo opsys=bsd4-3
9ec10b2f
DM
291 ;;
292
293 ## AT&T 3b2, 3b5, 3b15, 3b20
294 we32k-att-sysv* )
295 machine=att3b opsys=usg5-2-2
296 ;;
297
298 ## AT&T 3b1 - The Mighty Unix PC!
299 m68*-att-sysv* )
300 machine=7300 opsys=usg5-2-2
301 ;;
302
303 ## Bull dpx20
304 rs6000-bull-bosx* )
305 machine=ibmrs6000 opsys=aix3-2
306 ;;
307
308 ## Bull dpx2
309 m68*-bull-sysv3* )
310 machine=dpx2 opsys=usg5-3
311 ;;
312
313 ## Bull sps7
314 m68*-bull-sysv2* )
315 machine=sps7 opsys=usg5-2
316 ;;
317
318 ## CCI 5/32, 6/32 -- see "Tahoe".
319
320 ## Celerity
321 ## I don't know what configuration name to use for this; config.sub
322 ## doesn't seem to know anything about it. Hey, Celerity users, get
323 ## in touch with us!
324 celerity-celerity-bsd* )
325 machine=celerity opsys=bsd4-2
326 ;;
327
328 ## Clipper
329 ## What operating systems does this chip run that Emacs has been
330 ## tested on?
331 clipper-* )
332 machine=clipper
333 ## We'll use the catch-all code at the bottom to guess the
334 ## operating system.
335 ;;
336
337 ## Convex
338 *-convex-bsd* | *-convex-convexos* )
339 machine=convex opsys=bsd4-3
908ff139 340 ## Prevents spurious white space in makefiles - d.m.cooke@larc.nasa.gov
9ec10b2f
DM
341 NON_GNU_CPP="cc -E -P"
342 ;;
343
344 ## Cubix QBx/386
5ac83f86 345 i[3456]86-cubix-sysv* )
9ec10b2f
DM
346 machine=intel386 opsys=usg5-3
347 ;;
348
349 ## Cydra 5
350 cydra*-cydrome-sysv* )
351 machine=cydra5 opsys=usg5-3
352 ;;
353
354 ## Data General AViiON Machines
651fc2d2
RS
355 ## DG changed naming conventions with the release of 5.4.4.10, they
356 ## dropped the initial 5.4 but left the intervening R. Because of the
357 ## R this shouldn't conflict with older versions of the OS (which I
f4afda69
KH
358 ## think were named like dgux4.*). In addition, DG new AViiONs series
359 ## uses either Motorola M88k or Intel Pentium CPUs.
9ae70ffe 360 m88k-dg-dguxR4.* | m88k-dg-dgux4* )
651fc2d2
RS
361 machine=aviion opsys=dgux4
362 ;;
9ec10b2f 363 m88k-dg-dgux5.4R3* | m88k-dg-dgux5.4.3* )
aac2257c
RS
364 ## This name is dgux5-4-3 instead of dgux5-4r3
365 ## to avoid a file name conflict on MSDOS.
366 machine=aviion opsys=dgux5-4-3
9ec10b2f
DM
367 ;;
368 m88k-dg-dgux5.4R2* | m88k-dg-dgux5.4.2* )
369 machine=aviion opsys=dgux5-4r2
370 ;;
371 m88k-dg-dgux* )
372 machine=aviion opsys=dgux
373 ;;
374
4e746fa8
KH
375 ## Data General AViiON Intel (x86) Machines
376 ## Exists from 5.4.3 (current i586-dg-dguxR4.11)
377 ## Ehud Karni, 1998-may-30, ehud@unix.simonwiesel.co.il
9ae70ffe 378 i[345]86-dg-dguxR4* )
4e746fa8
KH
379 machine=aviion-intel opsys=dgux4
380 ;;
381
9ec10b2f
DM
382 ## DECstations
383 mips-dec-ultrix[0-3].* | mips-dec-ultrix4.0* | mips-dec-bsd4.2* )
384 machine=pmax opsys=bsd4-2
385 ;;
3bbe016c 386 mips-dec-ultrix4.[12]* | mips-dec-bsd* )
9ec10b2f
DM
387 machine=pmax opsys=bsd4-3
388 ;;
3bbe016c
KH
389 mips-dec-ultrix* )
390 machine=pmax opsys=ultrix4-3
391 ;;
9ec10b2f
DM
392 mips-dec-osf* )
393 machine=pmax opsys=osf1
394 ;;
b95c8e7e
RS
395 mips-dec-mach_bsd4.3* )
396 machine=pmax opsys=mach-bsd4-3
397 ;;
9ec10b2f
DM
398
399 ## Motorola Delta machines
400 m68k-motorola-sysv* | m68000-motorola-sysv* )
401 machine=delta opsys=usg5-3
402 if test -z "`type gnucc | grep 'not found'`"
018427ee
RS
403 then
404 if test -s /etc/167config
405 then CC="gnucc -m68040"
406 else CC="gnucc -m68881"
c7f493fd 407 fi
9ec10b2f
DM
408 else
409 if test -z "`type gcc | grep 'not found'`"
410 then CC=gcc
411 else CC=cc
412 fi
413 fi
414 ;;
415 m88k-motorola-sysv4* )
63c1d3f2
RS
416 # jbotte@bnr.ca says that UNIX_System_V <hostName> 4.0 R40V4.3 m88k mc88110
417 # needs POSIX_SIGNALS and therefore needs usg5-4-2.
418 # I hope there are not other 4.0 versions for this machine
419 # which really need usg5-4 instead.
420 machine=delta88k opsys=usg5-4-2
9ec10b2f
DM
421 ;;
422 m88k-motorola-sysv* | m88k-motorola-m88kbcs* )
423 machine=delta88k opsys=usg5-3
424 ;;
425
426 ## Dual machines
427 m68*-dual-sysv* )
428 machine=dual opsys=usg5-2
429 ;;
430 m68*-dual-uniplus* )
431 machine=dual opsys=unipl5-2
432 ;;
433
434 ## Elxsi 6400
435 elxsi-elxsi-sysv* )
436 machine=elxsi opsys=usg5-2
437 ;;
438
439 ## Encore machines
440 ns16k-encore-bsd* )
441 machine=ns16000 opsys=umax
442 ;;
443
444 ## The GEC 93 - apparently, this port isn't really finished yet.
445
446 ## Gould Power Node and NP1
447 pn-gould-bsd4.2* )
448 machine=gould opsys=bsd4-2
449 ;;
450 pn-gould-bsd4.3* )
451 machine=gould opsys=bsd4-3
452 ;;
453 np1-gould-bsd* )
454 machine=gould-np1 opsys=bsd4-3
455 ;;
456
457 ## Harris Night Hawk machines running CX/UX (a 5000 looks just like a 4000
458 ## as far as Emacs is concerned).
459 m88k-harris-cxux* )
460 # Build needs to be different on 7.0 and later releases
461 case "`uname -r`" in
462 [56].[0-9] ) machine=nh4000 opsys=cxux ;;
463 [7].[0-9] ) machine=nh4000 opsys=cxux7 ;;
464 esac
3d68df05 465 NON_GNU_CPP="/lib/cpp"
9ec10b2f
DM
466 ;;
467 ## Harris ecx or gcx running CX/UX (Series 1200, Series 3000)
468 m68k-harris-cxux* )
469 machine=nh3000 opsys=cxux
470 ;;
3d68df05
KH
471 ## Harris power pc NightHawk running Power UNIX (Series 6000)
472 powerpc-harris-powerunix )
473 machine=nh6000 opsys=powerunix
474 NON_GNU_CPP="cc -Xo -E -P"
475 ;;
0e5f305e
RS
476 ## SR2001/SR2201 running HI-UX/MPP
477 hppa1.1-hitachi-hiuxmpp* )
478 machine=sr2k opsys=hiuxmpp
479 ;;
9ec10b2f
DM
480 ## Honeywell XPS100
481 xps*-honeywell-sysv* )
482 machine=xps100 opsys=usg5-2
483 ;;
484
485 ## HP 9000 series 200 or 300
486 m68*-hp-bsd* )
487 machine=hp9000s300 opsys=bsd4-3
488 ;;
42c3a7f7 489 ## HP/UX 7, 8, 9, and 10 are supported on these machines.
9ec10b2f
DM
490 m68*-hp-hpux* )
491 case "`uname -r`" in
492 ## Someone's system reports A.B8.05 for this.
493 ## I wonder what other possibilities there are.
494 *.B8.* ) machine=hp9000s300 opsys=hpux8 ;;
495 *.08.* ) machine=hp9000s300 opsys=hpux8 ;;
496 *.09.* ) machine=hp9000s300 opsys=hpux9 ;;
88a806e9 497 *.1[0-9].* ) machine=hp9000s300 opsys=hpux9shr ;;
9ec10b2f
DM
498 *) machine=hp9000s300 opsys=hpux ;;
499 esac
500 ;;
501
502 ## HP 9000 series 700 and 800, running HP/UX
503 hppa*-hp-hpux7* )
504 machine=hp800 opsys=hpux
505 ;;
506 hppa*-hp-hpux8* )
507 machine=hp800 opsys=hpux8
508 ;;
509 hppa*-hp-hpux9shr* )
510 machine=hp800 opsys=hpux9shr
511 ;;
512 hppa*-hp-hpux9* )
513 machine=hp800 opsys=hpux9
514 ;;
88a806e9 515 hppa*-hp-hpux1[0-9]* )
12760c02 516 machine=hp800 opsys=hpux10
42c3a7f7 517 ;;
9ec10b2f
DM
518
519 ## HP 9000 series 700 and 800, running HP/UX
520 hppa*-hp-hpux* )
521 ## Cross-compilation? Nah!
522 case "`uname -r`" in
523 ## Someone's system reports A.B8.05 for this.
524 ## I wonder what other possibilities there are.
525 *.B8.* ) machine=hp800 opsys=hpux8 ;;
526 *.08.* ) machine=hp800 opsys=hpux8 ;;
527 *.09.* ) machine=hp800 opsys=hpux9 ;;
842f8692 528 *) machine=hp800 opsys=hpux10 ;;
9ec10b2f
DM
529 esac
530 ;;
da945421 531 hppa*-*-nextstep* )
4be21f66
KH
532 machine=hp800 opsys=nextstep
533 ;;
9ec10b2f
DM
534
535 ## Orion machines
536 orion-orion-bsd* )
537 machine=orion opsys=bsd4-2
538 ;;
539 clipper-orion-bsd* )
540 machine=orion105 opsys=bsd4-2
541 ;;
542
543 ## IBM machines
5ac83f86 544 i[3456]86-ibm-aix1.1* )
9ec10b2f
DM
545 machine=ibmps2-aix opsys=usg5-2-2
546 ;;
5ac83f86 547 i[3456]86-ibm-aix1.[23]* | i[3456]86-ibm-aix* )
9ec10b2f
DM
548 machine=ibmps2-aix opsys=usg5-3
549 ;;
550 i370-ibm-aix*)
551 machine=ibm370aix opsys=usg5-3
552 ;;
046545ec 553 rs6000-ibm-aix3.1* | powerpc-ibm-aix3.1* )
9ec10b2f
DM
554 machine=ibmrs6000 opsys=aix3-1
555 ;;
046545ec 556 rs6000-ibm-aix3.2.5 | powerpc-ibm-aix3.2.5 )
9ec10b2f
DM
557 machine=ibmrs6000 opsys=aix3-2-5
558 ;;
b63df577
RS
559 rs6000-ibm-aix4.1* | powerpc-ibm-aix4.1* )
560 machine=ibmrs6000 opsys=aix4-1
561 ;;
a8958813
RS
562 rs6000-ibm-aix4.2* | powerpc-ibm-aix4.2* )
563 machine=ibmrs6000 opsys=aix4-2
564 ;;
565 rs6000-ibm-aix4.0* | powerpc-ibm-aix4.0* )
b63df577
RS
566 machine=ibmrs6000 opsys=aix4
567 ;;
a8958813
RS
568 rs6000-ibm-aix4* | powerpc-ibm-aix4* )
569 machine=ibmrs6000 opsys=aix4-1
570 ;;
046545ec 571 rs6000-ibm-aix* | powerpc-ibm-aix* )
9ec10b2f
DM
572 machine=ibmrs6000 opsys=aix3-2
573 ;;
574 romp-ibm-bsd4.3* )
575 machine=ibmrt opsys=bsd4-3
c7f493fd 576 ;;
9ec10b2f
DM
577 romp-ibm-bsd4.2* )
578 machine=ibmrt opsys=bsd4-2
579 ;;
580 romp-ibm-aos4.3* )
581 machine=ibmrt opsys=bsd4-3
c7f493fd 582 ;;
9ec10b2f
DM
583 romp-ibm-aos4.2* )
584 machine=ibmrt opsys=bsd4-2
585 ;;
586 romp-ibm-aos* )
587 machine=ibmrt opsys=bsd4-3
588 ;;
589 romp-ibm-bsd* )
590 machine=ibmrt opsys=bsd4-3
591 ;;
592 romp-ibm-aix* )
593 machine=ibmrt-aix opsys=usg5-2-2
594 ;;
595
596 ## Integrated Solutions `Optimum V'
597 m68*-isi-bsd4.2* )
598 machine=isi-ov opsys=bsd4-2
599 ;;
600 m68*-isi-bsd4.3* )
601 machine=isi-ov opsys=bsd4-3
602 ;;
603
604 ## Intel 386 machines where we do care about the manufacturer
5ac83f86 605 i[3456]86-intsys-sysv* )
9ec10b2f
DM
606 machine=is386 opsys=usg5-2-2
607 ;;
608
609 ## Prime EXL
5ac83f86 610 i[3456]86-prime-sysv* )
9ec10b2f
DM
611 machine=i386 opsys=usg5-3
612 ;;
613
3cd69289 614 ## Sequent Symmetry running Dynix
5ac83f86 615 i[3456]86-sequent-bsd* )
9ec10b2f
DM
616 machine=symmetry opsys=bsd4-3
617 ;;
618
86d6f6ee
RS
619 ## Sequent Symmetry running ptx 4, which is a modified SVR4.
620 i[3456]86-sequent-ptx4* | i[3456]86-sequent-sysv4* )
621 machine=sequent-ptx opsys=ptx4
0dcdc912 622 NON_GNU_CPP=/lib/cpp
86d6f6ee
RS
623 ;;
624
3cd69289
DM
625 ## Sequent Symmetry running DYNIX/ptx
626 ## Use the old cpp rather than the newer ANSI one.
5ac83f86 627 i[3456]86-sequent-ptx* )
3cd69289
DM
628 machine=sequent-ptx opsys=ptx
629 NON_GNU_CPP="/lib/cpp"
630 ;;
631
cd837fee
KH
632 ## ncr machine running svr4.3.
633 i[3456]86-ncr-sysv4.3 )
634 machine=ncr386 opsys=usg5-4-3
635 ;;
636
9ec10b2f
DM
637 ## Unspecified sysv on an ncr machine defaults to svr4.2.
638 ## (Plain usg5-4 doesn't turn on POSIX signals, which we need.)
5ac83f86 639 i[3456]86-ncr-sysv* )
b0f36760 640 machine=ncr386 opsys=usg5-4-2
9ec10b2f
DM
641 ;;
642
cbce363f
RS
643 ## Intel Paragon OSF/1
644 i860-intel-osf1* )
645 machine=paragon opsys=osf1 NON_GNU_CPP=/usr/mach/lib/cpp
646 ;;
647
9ec10b2f
DM
648 ## Intel 860
649 i860-*-sysv4* )
650 machine=i860 opsys=usg5-4
651 NON_GNU_CC="/bin/cc" # Ie, not the one in /usr/ucb/cc.
652 NON_GNU_CPP="/usr/ccs/lib/cpp" # cc -E tokenizes macro expansion.
653 ;;
654
655 ## Masscomp machines
656 m68*-masscomp-rtu* )
657 machine=masscomp opsys=rtu
658 ;;
659
660 ## Megatest machines
661 m68*-megatest-bsd* )
662 machine=mega68 opsys=bsd4-2
663 ;;
664
665 ## Workstations sold by MIPS
666 ## This is not necessarily all workstations using the MIPS processor -
667 ## Irises are produced by SGI, and DECstations by DEC.
668
669 ## etc/MACHINES lists mips.h and mips4.h as possible machine files,
670 ## and usg5-2-2 and bsd4-3 as possible OS files. The only guidance
671 ## it gives for choosing between the alternatives seems to be "Use
672 ## -machine=mips4 for RISCOS version 4; use -opsystem=bsd4-3 with
673 ## the BSD world." I'll assume that these are instructions for
674 ## handling two odd situations, and that every other situation
675 ## should use mips.h and usg5-2-2, they being listed first.
676 mips-mips-usg* )
677 machine=mips4
678 ## Fall through to the general code at the bottom to decide on the OS.
679 ;;
680 mips-mips-riscos4* )
681 machine=mips4 opsys=bsd4-3
682 NON_GNU_CC="cc -systype bsd43"
683 NON_GNU_CPP="cc -systype bsd43 -E"
684 ;;
b95c8e7e
RS
685 mips-mips-riscos5* )
686 machine=mips4 opsys=riscos5
687 NON_GNU_CC="cc -systype bsd43"
688 NON_GNU_CPP="cc -systype bsd43 -E"
689 ;;
9ec10b2f
DM
690 mips-mips-bsd* )
691 machine=mips opsys=bsd4-3
692 ;;
693 mips-mips-* )
694 machine=mips opsys=usg5-2-2
695 ;;
696
697 ## NeXT
5ab52d42
RS
698 m68*-next-* | m68k-*-nextstep* )
699 machine=m68k opsys=nextstep
9ec10b2f
DM
700 ;;
701
702 ## The complete machine from National Semiconductor
703 ns32k-ns-genix* )
704 machine=ns32000 opsys=usg5-2
705 ;;
706
707 ## NCR machines
708 m68*-ncr-sysv2* | m68*-ncr-sysvr2* )
709 machine=tower32 opsys=usg5-2-2
710 ;;
711 m68*-ncr-sysv3* | m68*-ncr-sysvr3* )
712 machine=tower32v3 opsys=usg5-3
713 ;;
714
b4ea3111
KH
715 ## NEC EWS4800
716 mips-nec-sysv4*)
717 machine=ews4800 opsys=ux4800
718 ;;
719
9ec10b2f
DM
720 ## Nixdorf Targon 31
721 m68*-nixdorf-sysv* )
722 machine=targon31 opsys=usg5-2-2
723 ;;
724
725 ## Nu (TI or LMI)
726 m68*-nu-sysv* )
727 machine=nu opsys=usg5-2
728 ;;
729
730 ## Plexus
731 m68*-plexus-sysv* )
732 machine=plexus opsys=usg5-2
733 ;;
734
42326ef0
RS
735 ## PowerPC reference platform
736 powerpcle-*-solaris2* )
737 machine=prep
738 opsys=sol2-5
739 ;;
740
9ec10b2f
DM
741 ## Pyramid machines
742 ## I don't really have any idea what sort of processor the Pyramid has,
743 ## so I'm assuming it is its own architecture.
744 pyramid-pyramid-bsd* )
745 machine=pyramid opsys=bsd4-2
746 ;;
747
748 ## Sequent Balance
749 ns32k-sequent-bsd4.2* )
750 machine=sequent opsys=bsd4-2
751 ;;
752 ns32k-sequent-bsd4.3* )
753 machine=sequent opsys=bsd4-3
754 ;;
755
756 ## Siemens Nixdorf
7cba3845 757 mips-siemens-sysv* | mips-sni-sysv*)
9ec10b2f
DM
758 machine=mips-siemens opsys=usg5-4
759 NON_GNU_CC=/usr/ccs/bin/cc
760 NON_GNU_CPP=/usr/ccs/lib/cpp
761 ;;
762
763 ## Silicon Graphics machines
764 ## Iris 2500 and Iris 2500 Turbo (aka the Iris 3030)
765 m68*-sgi-iris3.5* )
766 machine=irist opsys=iris3-5
767 ;;
768 m68*-sgi-iris3.6* | m68*-sgi-iris*)
769 machine=irist opsys=iris3-6
770 ;;
771 ## Iris 4D
772 mips-sgi-irix3* )
773 machine=iris4d opsys=irix3-3
774 ;;
4ab83697
RS
775 mips-sgi-irix4* )
776 machine=iris4d opsys=irix4-0
777 ;;
a187fb80
KH
778 mips-sgi-irix6.5 )
779 machine=iris4d opsys=irix6-5
91193697
DL
780 # Without defining _LANGUAGE_C, things get masked out in the headers
781 # so that, for instance, grepping for `free' in stdlib.h fails and
782 # AC_HEADER_STD_C fails. (MIPSPro 7.2.1.2m compilers, Irix 6.5.3m).
783 NON_GNU_CPP="/lib/cpp -D_LANGUAGE_C"
b4809771 784 NON_GCC_TEST_OPTIONS="-n32 -D_LANGUAGE_C"
a187fb80 785 ;;
546fa279 786 mips-sgi-irix6* )
309daad2 787 machine=iris4d opsys=irix6-0
d9b5c990 788 # It's not clear whether -D_LANGUAGE_C is necessary as it is for 6.5,
91193697
DL
789 # but presumably it does no harm.
790 NON_GNU_CPP="/lib/cpp -D_LANGUAGE_C"
309daad2 791 NON_GCC_TEST_OPTIONS=-32
546fa279 792 ;;
4ab83697 793 mips-sgi-irix5.[01]* )
9ec10b2f
DM
794 machine=iris4d opsys=irix5-0
795 ;;
4ab83697
RS
796 mips-sgi-irix5* | mips-sgi-irix* )
797 machine=iris4d opsys=irix5-2
9ec10b2f
DM
798 ;;
799
800 ## SONY machines
801 m68*-sony-bsd4.2* )
802 machine=news opsys=bsd4-2
803 ;;
804 m68*-sony-bsd4.3* )
805 machine=news opsys=bsd4-3
806 ;;
3d102c59 807 m68*-sony-newsos3* | m68*-sony-news3*)
9ec10b2f
DM
808 machine=news opsys=bsd4-3
809 ;;
3d102c59 810 mips-sony-bsd* | mips-sony-newsos4* | mips-sony-news4*)
9ec10b2f
DM
811 machine=news-risc opsys=bsd4-3
812 ;;
423ef6e8 813 mips-sony-newsos6* )
b48e4aeb 814 machine=news-r6 opsys=newsos6
423ef6e8 815 ;;
3d102c59 816 mips-sony-news* )
9ec10b2f
DM
817 machine=news-risc opsys=newsos5
818 ;;
819
820 ## Stride
821 m68*-stride-sysv* )
822 machine=stride opsys=usg5-2
823 ;;
824
825 ## Suns
b5b193a7 826 sparc-*-linux-gnu* | sparc64-*-linux-gnu* )
5ac83f86 827 machine=sparc opsys=gnu-linux
28d9bc0e
KH
828 ;;
829
f4027958 830 *-auspex-sunos* | *-sun-sunos* | *-sun-bsd* | *-sun-solaris* \
5ac83f86 831 | i[3456]86-*-solaris2* | i[3456]86-*-sunos5* | powerpc*-*-solaris2* \
c42b1767 832 | rs6000-*-solaris2*)
9ec10b2f
DM
833 case "${canonical}" in
834 m68*-sunos1* ) machine=sun1 ;;
835 m68*-sunos2* ) machine=sun2 ;;
836 m68* ) machine=sun3 ;;
5ac83f86
RS
837 i[3456]86-sun-sunos[34]* ) machine=sun386 ;;
838 i[3456]86-*-* ) machine=intel386 ;;
42326ef0 839 powerpcle* ) machine=powerpcle ;;
f7894e88 840 powerpc* | rs6000* ) machine=ibmrs6000 ;;
9ec10b2f
DM
841 sparc* ) machine=sparc ;;
842 * ) unported=yes ;;
843 esac
844 case "${canonical}" in
845 ## The Sun386 didn't get past 4.0.
5ac83f86 846 i[3456]86-*-sunos4 ) opsys=sunos4-0 ;;
9ec10b2f 847 *-sunos4.0* ) opsys=sunos4-0 ;;
0ff0179d 848 *-sunos4.1.[3-9]*noshare )
aac2257c
RS
849 ## This name is sunos413 instead of sunos4-1-3
850 ## to avoid a file name conflict on MSDOS.
851 opsys=sunos413
3d68df05
KH
852 NON_GNU_CPP=/usr/lib/cpp
853 NON_GCC_TEST_OPTIONS=-Bstatic
854 GCC_TEST_OPTIONS=-static
855 ;;
3e23af40
RS
856 *-sunos4.1.[3-9]* | *-sunos4shr*)
857 opsys=sunos4shr
858 NON_GNU_CPP=/usr/lib/cpp
859 ;;
3d68df05
KH
860 *-sunos4* | *-sunos )
861 opsys=sunos4-1
9ec10b2f
DM
862 NON_GCC_TEST_OPTIONS=-Bstatic
863 GCC_TEST_OPTIONS=-static
864 ;;
865 *-sunos5.3* | *-solaris2.3* )
866 opsys=sol2-3
867 NON_GNU_CPP=/usr/ccs/lib/cpp
868 ;;
869 *-sunos5.4* | *-solaris2.4* )
870 opsys=sol2-4
871 NON_GNU_CPP=/usr/ccs/lib/cpp
30457b4f 872 RANLIB="ar -ts"
9ec10b2f 873 ;;
2e567bad
KH
874 *-sunos5.5* | *-solaris2.5* )
875 opsys=sol2-5
876 NON_GNU_CPP=/usr/ccs/lib/cpp
30457b4f 877 RANLIB="ar -ts"
2e567bad 878 ;;
9ec10b2f 879 *-sunos5* | *-solaris* )
348e3a08 880 opsys=sol2-5
9ec10b2f
DM
881 NON_GNU_CPP=/usr/ccs/lib/cpp
882 ;;
883 * ) opsys=bsd4-2 ;;
884 esac
6e502e37
RS
885 ## Watch out for a compiler that we know will not work.
886 case "${canonical}" in
887 *-solaris* | *-sunos5* )
888 if [ "x$CC" = x/usr/ucb/cc ]; then
889 ## /usr/ucb/cc doesn't work;
890 ## we should find some other compiler that does work.
891 unset CC
892 fi
893 ;;
894 *) ;;
895 esac
9ec10b2f 896 ;;
5ab52d42 897 sparc-*-nextstep* )
19e45036 898 machine=sparc opsys=nextstep
5ab52d42 899 ;;
9ec10b2f
DM
900
901 ## Tadpole 68k
902 m68*-tadpole-sysv* )
903 machine=tad68k opsys=usg5-3
904 ;;
905
906 ## Tahoe machines
907 tahoe-tahoe-bsd4.2* )
908 machine=tahoe opsys=bsd4-2
909 ;;
910 tahoe-tahoe-bsd4.3* )
911 machine=tahoe opsys=bsd4-3
912 ;;
913
914 ## Tandem Integrity S2
915 mips-tandem-sysv* )
916 machine=tandem-s2 opsys=usg5-3
917 ;;
918
919 ## Tektronix XD88
920 m88k-tektronix-sysv3* )
921 machine=tekxd88 opsys=usg5-3
922 ;;
923
924 ## Tektronix 16000 box (6130?)
925 ns16k-tektronix-bsd* )
926 machine=ns16000 opsys=bsd4-2
927 ;;
928 ## Tektronix 4300
929 ## src/m/tek4300.h hints that this is a m68k machine.
930 m68*-tektronix-bsd* )
931 machine=tek4300 opsys=bsd4-3
932 ;;
933
934 ## Titan P2 or P3
935 ## We seem to have lost the machine-description file titan.h!
936 titan-titan-sysv* )
937 machine=titan opsys=usg5-3
938 ;;
c7f493fd 939
9ec10b2f
DM
940 ## Ustation E30 (SS5E)
941 m68*-unisys-uniplus* )
942 machine=ustation opsystem=unipl5-2
943 ;;
944
945 ## Vaxen.
946 vax-dec-* )
947 machine=vax
948 case "${canonical}" in
949 *-bsd4.1* ) opsys=bsd4-1 ;;
950 *-bsd4.2* | *-ultrix[0-3].* | *-ultrix4.0* ) opsys=bsd4-2 ;;
951 *-bsd4.3* | *-ultrix* ) opsys=bsd4-3 ;;
9ec10b2f
DM
952 *-sysv[01]* | *-sysvr[01]* ) opsys=usg5-0 ;;
953 *-sysv2* | *-sysvr2* ) opsys=usg5-2 ;;
954 *-vms* ) opsys=vms ;;
955 * ) unported=yes
956 esac
957 ;;
958
959 ## Whitechapel MG1
960 ns16k-whitechapel-* )
961 machine=mg1
962 ## We don't know what sort of OS runs on these; we'll let the
963 ## operating system guessing code below try.
964 ;;
965
966 ## Wicat
967 m68*-wicat-sysv* )
968 machine=wicat opsys=usg5-2
969 ;;
970
971 ## Intel 386 machines where we don't care about the manufacturer
5ac83f86 972 i[3456]86-*-* )
9ec10b2f
DM
973 machine=intel386
974 case "${canonical}" in
975 *-isc1.* | *-isc2.[01]* ) opsys=386-ix ;;
976 *-isc2.2* ) opsys=isc2-2 ;;
977 *-isc4.0* ) opsys=isc4-0 ;;
135c9ca6
RS
978 *-isc4.* ) opsys=isc4-1
979 GCC_TEST_OPTIONS=-posix
980 NON_GCC_TEST_OPTIONS=-Xp
981 ;;
9ec10b2f
DM
982 *-isc* ) opsys=isc3-0 ;;
983 *-esix5* ) opsys=esix5r4; NON_GNU_CPP=/usr/lib/cpp ;;
984 *-esix* ) opsys=esix ;;
985 *-xenix* ) opsys=xenix ;;
5ac83f86 986 *-linux-gnu* ) opsys=gnu-linux ;;
9ec10b2f 987 *-sco3.2v4* ) opsys=sco4 ; NON_GNU_CPP=/lib/cpp ;;
5ac83f86
RS
988 *-sco3.2v5* ) opsys=sco5
989 NON_GNU_CPP=/lib/cpp
990 # Prevent -belf from being passed to $CPP.
991 # /lib/cpp does not accept it.
1e60bcf8 992 OVERRIDE_CPPFLAGS=" "
5ac83f86 993 ;;
0e6d70d5 994 *-sysv4.2uw* ) opsys=unixware; NON_GNU_CPP=/lib/cpp ;;
9ec10b2f
DM
995 *-386bsd* ) opsys=386bsd ;;
996 *-freebsd* ) opsys=freebsd ;;
5ab52d42 997 *-nextstep* ) opsys=nextstep ;;
9ec10b2f
DM
998 ## Otherwise, we'll fall through to the generic opsys code at the bottom.
999 esac
1000 ;;
1001
287f502c 1002 ## m68k Linux-based GNU system
5ac83f86
RS
1003 m68k-*-linux-gnu* )
1004 machine=m68k opsys=gnu-linux
e1fd57e3
RS
1005 ;;
1006
287f502c
RS
1007 ## Mips Linux-based GNU system
1008 mips-*-linux-gnu* )
1009 machine=mips opsys=gnu-linux
1010 ;;
1011
eded5b68
RS
1012 ## UXP/DS
1013 sparc-fujitsu-sysv4* )
1014 machine=sparc opsys=uxpds
1015 NON_GNU_CPP=/usr/ccs/lib/cpp
1016 RANLIB="ar -ts"
1017 ;;
1018
5dbb45f2
KH
1019 ## UXP/V
1020 f301-fujitsu-uxpv4.1)
1021 machine=f301 opsys=uxpv
1022 ;;
1023
9ec10b2f
DM
1024 * )
1025 unported=yes
1026 ;;
1027esac
1028
1029### If the code above didn't choose an operating system, just choose
1030### an operating system based on the configuration name. You really
1031### only want to use this when you have no idea what the right
1032### operating system is; if you know what operating systems a machine
1033### runs, it's cleaner to make it explicit in the case statement
1034### above.
1035if test x"${opsys}" = x; then
1036 case "${canonical}" in
1037 *-gnu* ) opsys=gnu ;;
1038 *-bsd4.[01] ) opsys=bsd4-1 ;;
1039 *-bsd4.2 ) opsys=bsd4-2 ;;
1040 *-bsd4.3 ) opsys=bsd4-3 ;;
1041 *-sysv0 | *-sysvr0 ) opsys=usg5-0 ;;
1042 *-sysv2 | *-sysvr2 ) opsys=usg5-2 ;;
1043 *-sysv2.2 | *-sysvr2.2 ) opsys=usg5-2-2 ;;
5ab52d42 1044 *-sysv3* | *-sysvr3* ) opsys=usg5-3 ;;
66a96cff 1045 *-sysv4.2uw* ) opsys=unixware ;;
5ab52d42 1046 *-sysv4.1* | *-sysvr4.1* )
9ec10b2f
DM
1047 NON_GNU_CPP=/usr/lib/cpp
1048 opsys=usg5-4 ;;
5ab52d42 1049 *-sysv4.[2-9]* | *-sysvr4.[2-9]* )
b63df577 1050 if [ x$NON_GNU_CPP = x ]; then
16831d8c
RS
1051 if [ -f /usr/ccs/lib/cpp ]; then
1052 NON_GNU_CPP=/usr/ccs/lib/cpp
1053 else
1054 NON_GNU_CPP=/lib/cpp
1055 fi
b63df577
RS
1056 fi
1057 opsys=usg5-4-2 ;;
5ab52d42 1058 *-sysv4* | *-sysvr4* ) opsys=usg5-4 ;;
9ec10b2f
DM
1059 * )
1060 unported=yes
1061 ;;
1062 esac
1063fi
1064
1065changequote([, ])dnl
1066
1067if test $unported = yes; then
1068 AC_MSG_ERROR([Emacs hasn't been ported to \`${canonical}' systems.
1069Check \`etc/MACHINES' for recognized configuration names.])
1070fi
1071
1072machfile="m/${machine}.h"
1073opsysfile="s/${opsys}.h"
1074
1075
1076#### Choose a compiler.
1077test -n "$CC" && cc_specified=yes
1078
5ab52d42
RS
1079# Save the value of CFLAGS that the user specified.
1080SPECIFIED_CFLAGS="$CFLAGS"
1081
9ec10b2f
DM
1082case ${with_gcc} in
1083 "yes" ) CC="gcc" GCC=yes ;;
6e0dc84a 1084 "no" ) : ${CC=cc} ;;
9ec10b2f
DM
1085 * ) AC_PROG_CC
1086esac
1087
1088# On Suns, sometimes $CPP names a directory.
1089if test -n "$CPP" && test -d "$CPP"; then
1090 CPP=
1091fi
1092
1093#### Some systems specify a CPP to use unless we are using GCC.
1094#### Now that we know whether we are using GCC, we can decide whether
1095#### to use that one.
1096if test "x$NON_GNU_CPP" != x && test x$GCC != xyes && test "x$CPP" = x
1097then
1098 CPP="$NON_GNU_CPP"
1099fi
1100
1101#### Some systems specify a CC to use unless we are using GCC.
1102#### Now that we know whether we are using GCC, we can decide whether
1103#### to use that one.
1104if test "x$NON_GNU_CC" != x && test x$GCC != xyes &&
1105 test x$cc_specified != xyes
1106then
1107 CC="$NON_GNU_CC"
1108fi
1109
1110if test x$GCC = xyes && test "x$GCC_TEST_OPTIONS" != x
1111then
1112 CC="$CC $GCC_TEST_OPTIONS"
c7f493fd 1113fi
9ec10b2f
DM
1114
1115if test x$GCC = x && test "x$NON_GCC_TEST_OPTIONS" != x
1116then
1117 CC="$CC $NON_GCC_TEST_OPTIONS"
c7f493fd 1118fi
9ec10b2f 1119
1bc5a004
RS
1120if test x$GCC = xyes && test "x$GCC_LINK_TEST_OPTIONS" != x
1121then
1122 ac_link="$ac_link $GCC_LINK_TEST_OPTIONS"
1123fi
1124
1125if test x$GCC = x && test "x$NON_GCC_LINK_TEST_OPTIONS" != x
1126then
1127 ac_link="$ac_link $NON_GCC_LINK_TEST_OPTIONS"
1128fi
1129
9ec10b2f
DM
1130#### Some other nice autoconf tests. If you add a test here which
1131#### should make an entry in src/config.h, don't forget to add an
1132#### #undef clause to src/config.h.in for autoconf to modify.
1133
1134dnl checks for programs
6e0dc84a 1135AC_PROG_LN_S
9ec10b2f
DM
1136AC_PROG_CPP
1137AC_PROG_INSTALL
1138AC_PROG_YACC
3f5b097c
DL
1139if test "x$RANLIB" = x; then
1140 AC_PROG_RANLIB
1141fi
9ec10b2f 1142
3cd69289
DM
1143dnl checks for Unix variants
1144AC_AIX
1145
b412189c 1146# Sound support for GNU/Linux and the free BSDs.
8e5f5811 1147AC_CHECK_HEADERS(machine/soundcard.h sys/soundcard.h)
b412189c 1148
9ec10b2f 1149dnl checks for header files
1113b624
PE
1150AC_CHECK_HEADERS(sys/select.h sys/timeb.h sys/time.h unistd.h utime.h \
1151 linux/version.h sys/systeminfo.h termios.h limits.h string.h stdlib.h \
1152 termcap.h stdio_ext.h)
6e0dc84a
DM
1153AC_HEADER_STDC
1154AC_HEADER_TIME
1155AC_DECL_SYS_SIGLIST
9ec10b2f 1156
3cd69289 1157dnl Some systems have utime.h but don't declare the struct anyplace.
fd0a060b 1158AC_CACHE_CHECK(for struct utimbuf, emacs_cv_struct_utimbuf,
3cd69289
DM
1159AC_TRY_COMPILE([#ifdef TIME_WITH_SYS_TIME
1160#include <sys/time.h>
1161#include <time.h>
1162#else
1163#ifdef HAVE_SYS_TIME_H
1164#include <sys/time.h>
1165#else
1166#include <time.h>
1167#endif
1168#endif
1169#ifdef HAVE_UTIME_H
1170#include <utime.h>
1171#endif], [static struct utimbuf x; x.actime = x.modtime;],
fd0a060b
AS
1172 emacs_cv_struct_utimbuf=yes, emacs_cv_struct_utimbuf=no))
1173if test $emacs_cv_struct_utimbuf = yes; then
1174 AC_DEFINE(HAVE_STRUCT_UTIMBUF)
1175fi
3cd69289 1176
9ec10b2f 1177dnl checks for typedefs
6e0dc84a 1178AC_TYPE_SIGNAL
9ec10b2f 1179
fd0a060b 1180AC_CACHE_CHECK(for struct timeval, emacs_cv_struct_timeval,
3cd69289
DM
1181AC_TRY_COMPILE([#ifdef TIME_WITH_SYS_TIME
1182#include <sys/time.h>
1183#include <time.h>
1184#else
1185#ifdef HAVE_SYS_TIME_H
1186#include <sys/time.h>
1187#else
1188#include <time.h>
1189#endif
1190#endif], [static struct timeval x; x.tv_sec = x.tv_usec;],
fd0a060b
AS
1191 emacs_cv_struct_timeval=yes, emacs_cv_struct_timeval=no))
1192HAVE_TIMEVAL=$emacs_cv_struct_timeval
1193if test $emacs_cv_struct_timeval = yes; then
1194 AC_DEFINE(HAVE_TIMEVAL)
1195fi
3cd69289 1196
9ec10b2f
DM
1197dnl checks for structure members
1198AC_STRUCT_TM
6e0dc84a 1199AC_STRUCT_TIMEZONE
1113b624
PE
1200AC_CACHE_CHECK(for tm_gmtoff in struct tm, emacs_cv_tm_gmtoff,
1201AC_TRY_LINK([#include <time.h>], [struct tm t; t.tm_gmtoff = 0],
1202 emacs_cv_tm_gmtoff=yes,
1203 emacs_cv_tm_gmtoff=no))
1204if test $emacs_cv_tm_gmtoff = yes; then
1205 AC_DEFINE(HAVE_TM_GMTOFF)
1206fi
9ec10b2f
DM
1207
1208dnl checks for compiler characteristics
3f5b097c
DL
1209
1210dnl Testing __STDC__ to determine prototype support isn't good enough.
1211dnl DEC C, for instance, doesn't define it with default options, and
1212dnl is used on 64-bit systems (OSF Alphas). Similarly for volatile
1213dnl and void *.
1214AC_C_PROTOTYPES
1215AC_C_VOLATILE
6e0dc84a 1216AC_C_CONST
3f5b097c
DL
1217dnl This isn't useful because we can't turn on use of `inline' unless
1218dnl the compiler groks `extern inline'.
1219dnl AC_C_INLINE
1220AC_CACHE_CHECK([for void * support], emacs_cv_void_star,
1221 [AC_TRY_COMPILE(, [void * foo;],
1222 emacs_cv_void_star=yes, emacs_cv_void_star=no)])
1223if test $emacs_cv_void_star = yes; then
1224 AC_DEFINE(POINTER_TYPE, void)
1225else
1226 AC_DEFINE(POINTER_TYPE, char)
1227fi
9ec10b2f
DM
1228
1229dnl check for Make feature
6e0dc84a 1230AC_PROG_MAKE_SET
9ec10b2f
DM
1231
1232dnl checks for operating system services
6e0dc84a 1233AC_SYS_LONG_FILE_NAMES
9ec10b2f
DM
1234
1235#### Choose a window system.
9ec10b2f 1236
6e0dc84a 1237AC_PATH_X
530ce502
DM
1238if test "$no_x" = yes; then
1239 window_system=none
1240else
1241 window_system=x11
1242fi
9ec10b2f 1243
ea199426 1244if test "${x_libraries}" != NONE && test -n "${x_libraries}"; then
00ac3ffc
KH
1245 LD_SWITCH_X_SITE=-L`echo ${x_libraries} | sed -e "s/:/ -L/g"`
1246 LD_SWITCH_X_SITE_AUX=-R`echo ${x_libraries} | sed -e "s/:/ -R/g"`
66d736a9
RS
1247 x_default_search_path=""
1248 for x_library in `echo ${x_libraries} | sed -e "s/:/ /g"`; do
54abe472
RS
1249 x_search_path="${x_library}/X11/%L/%T/%N%C%S:\
1250${x_library}/X11/%L/%T/%N%C%S:${x_libary}/X11/%l/%T/%N%C%S:\
1251${x_library}/X11/%T/%N%C%S:${x_library}/X11/%L/%T/%N%S:\
1252${x_library}/X11/%l/%T/%N%S:${x_library}/X11/%T/%N%S"
66d736a9
RS
1253 if test x"${x_default_search_path}" = x; then
1254 x_default_search_path=${x_search_path}
1255 else
1256 x_default_search_path="${x_search_path}:${x_default_search_path}"
1257 fi
1258 done
ea199426
DM
1259fi
1260if test "${x_includes}" != NONE && test -n "${x_includes}"; then
cc6476f6 1261 C_SWITCH_X_SITE=-I`echo ${x_includes} | sed -e "s/:/ -I/g"`
ea199426 1262fi
9ec10b2f 1263
8dbeb353
DM
1264if test x"${x_includes}" = x; then
1265 bitmapdir=/usr/include/X11/bitmaps
3cd69289 1266else
908ff139 1267 # accumulate include directories that have X11 bitmap subdirectories
cc6476f6
KH
1268 bmd_acc="dummyval"
1269 for bmd in `echo ${x_includes} | sed -e "s/:/ /g"`; do
1270 if test -d "${bmd}/X11/bitmaps"; then
1271 bmd_acc="${bmd_acc}:${bmd}/X11/bitmaps"
4f6f5dab
GM
1272 fi
1273 if test -d "${bmd}/bitmaps"; then
cc6476f6
KH
1274 bmd_acc="${bmd_acc}:${bmd}/bitmaps"
1275 fi
1276 done
1277 if test ${bmd_acc} != "dummyval"; then
1278 bitmapdir=`echo ${bmd_acc} | sed -e "s/^dummyval://"`
1279 fi
3cd69289
DM
1280fi
1281
9ec10b2f
DM
1282case "${window_system}" in
1283 x11 )
1284 HAVE_X_WINDOWS=yes
1285 HAVE_X11=yes
1286 case "${with_x_toolkit}" in
c7f493fd
RM
1287 athena | lucid ) USE_X_TOOLKIT=LUCID ;;
1288 motif ) USE_X_TOOLKIT=MOTIF ;;
1289dnl open-look ) USE_X_TOOLKIT=OPEN_LOOK ;;
4be21f66
KH
1290 no ) USE_X_TOOLKIT=none ;;
1291dnl If user did not say whether to use a toolkit,
1292dnl make this decision later: use the toolkit if we have X11R5 or newer.
1293 * ) USE_X_TOOLKIT=maybe ;;
9ec10b2f
DM
1294 esac
1295 ;;
9ec10b2f
DM
1296 none )
1297 HAVE_X_WINDOWS=no
1298 HAVE_X11=no
1299 USE_X_TOOLKIT=none
1300 ;;
1301esac
9ec10b2f
DM
1302
1303### If we're using X11, we should use the X menu package.
08741ba9 1304HAVE_MENUS=no
9ec10b2f 1305case ${HAVE_X11} in
08741ba9 1306 yes ) HAVE_MENUS=yes ;;
9ec10b2f 1307esac
b412189c 1308
b95c8e7e
RS
1309if test "${opsys}" = "hpux9"; then
1310 case "${x_libraries}" in
1311 *X11R4* )
1312 opsysfile="s/hpux9-x11r4.h"
1313 ;;
1314 esac
1315fi
1316
1317if test "${opsys}" = "hpux9shr"; then
1318 case "${x_libraries}" in
1319 *X11R4* )
1320 opsysfile="s/hpux9shxr4.h"
1321 ;;
1322 esac
1323fi
1324
9ec10b2f
DM
1325#### Extract some information from the operating system and machine files.
1326
1327AC_CHECKING([the machine- and system-dependent files to find out
1328 - which libraries the lib-src programs will want, and
1329 - whether the GNU malloc routines are usable])
1330
1331### First figure out CFLAGS (which we use for running the compiler here)
1332### and REAL_CFLAGS (which we use for real compilation).
1333### The two are the same except on a few systems, where they are made
1334### different to work around various lossages. For example,
5ac83f86 1335### GCC 2.5 on GNU/Linux needs them to be different because it treats -g
9ec10b2f
DM
1336### as implying static linking.
1337
1338### If the CFLAGS env var is specified, we use that value
1339### instead of the default.
1340
1341### It's not important that this name contain the PID; you can't run
1342### two configures in the same directory and have anything work
1343### anyway.
1344tempcname="conftest.c"
1345
1346echo '
1347#include "'${srcdir}'/src/'${opsysfile}'"
1348#include "'${srcdir}'/src/'${machfile}'"
1349#ifndef LIBS_MACHINE
1350#define LIBS_MACHINE
1351#endif
1352#ifndef LIBS_SYSTEM
1353#define LIBS_SYSTEM
1354#endif
1355#ifndef C_SWITCH_SYSTEM
1356#define C_SWITCH_SYSTEM
1357#endif
1358#ifndef C_SWITCH_MACHINE
1359#define C_SWITCH_MACHINE
1360#endif
1361configure___ libsrc_libs=LIBS_MACHINE LIBS_SYSTEM
1362configure___ c_switch_system=C_SWITCH_SYSTEM
1363configure___ c_switch_machine=C_SWITCH_MACHINE
1364
1365#ifndef LIB_X11_LIB
1366#define LIB_X11_LIB -lX11
1367#endif
1368
1369#ifndef LIBX11_MACHINE
1370#define LIBX11_MACHINE
1371#endif
1372
1373#ifndef LIBX11_SYSTEM
1374#define LIBX11_SYSTEM
1375#endif
1376configure___ LIBX=LIB_X11_LIB LIBX11_MACHINE LIBX11_SYSTEM
1377
1378#ifdef UNEXEC
1379configure___ unexec=UNEXEC
1380#else
1381configure___ unexec=unexec.o
1382#endif
1383
1384#ifdef SYSTEM_MALLOC
1385configure___ system_malloc=yes
1386#else
1387configure___ system_malloc=no
1388#endif
1389
1390#ifndef C_DEBUG_SWITCH
1391#define C_DEBUG_SWITCH -g
1392#endif
1393
1394#ifndef C_OPTIMIZE_SWITCH
c5b22f2a
GM
1395#ifdef __GNUC__
1396#define C_OPTIMIZE_SWITCH -O2
1397#else
9ec10b2f
DM
1398#define C_OPTIMIZE_SWITCH -O
1399#endif
c5b22f2a 1400#endif
9ec10b2f 1401
fd402b2a
RS
1402#ifndef LD_SWITCH_MACHINE
1403#define LD_SWITCH_MACHINE
1404#endif
1405
1406#ifndef LD_SWITCH_SYSTEM
1407#define LD_SWITCH_SYSTEM
1408#endif
1409
f8a9bac9
RS
1410#ifndef LD_SWITCH_X_SITE_AUX
1411#define LD_SWITCH_X_SITE_AUX
1412#endif
1413
fd402b2a 1414configure___ ld_switch_system=LD_SWITCH_SYSTEM
f8a9bac9 1415configure___ ld_switch_machine=LD_SWITCH_MACHINE
fd402b2a 1416
9ec10b2f
DM
1417#ifdef THIS_IS_CONFIGURE
1418
1419/* Get the CFLAGS for tests in configure. */
1420#ifdef __GNUC__
4e90a7d5 1421configure___ CFLAGS=C_DEBUG_SWITCH C_OPTIMIZE_SWITCH '${SPECIFIED_CFLAGS}'
9ec10b2f 1422#else
4e90a7d5 1423configure___ CFLAGS=C_DEBUG_SWITCH '${SPECIFIED_CFLAGS}'
9ec10b2f
DM
1424#endif
1425
1426#else /* not THIS_IS_CONFIGURE */
1427
1428/* Get the CFLAGS for real compilation. */
1429#ifdef __GNUC__
4e90a7d5 1430configure___ REAL_CFLAGS=C_DEBUG_SWITCH C_OPTIMIZE_SWITCH '${SPECIFIED_CFLAGS}'
9ec10b2f 1431#else
4e90a7d5 1432configure___ REAL_CFLAGS=C_DEBUG_SWITCH '${SPECIFIED_CFLAGS}'
9ec10b2f
DM
1433#endif
1434
1435#endif /* not THIS_IS_CONFIGURE */
1436' > ${tempcname}
1437
1438# The value of CPP is a quoted variable reference, so we need to do this
1439# to get its actual value...
1440CPP=`eval "echo $CPP"`
1441changequote(, )dnl
1442eval `${CPP} -Isrc ${tempcname} \
1443 | sed -n -e 's/^configure___ \([^=]*=\)\(.*\)$/\1"\2"/p'`
5ab52d42 1444if test "x$SPECIFIED_CFLAGS" = x; then
9ec10b2f
DM
1445 eval `${CPP} -Isrc -DTHIS_IS_CONFIGURE ${tempcname} \
1446 | sed -n -e 's/^configure___ \([^=]*=\)\(.*\)$/\1"\2"/p'`
1447else
1448 REAL_CFLAGS="$CFLAGS"
1449fi
1450changequote([, ])dnl
1451rm ${tempcname}
1452
fd402b2a
RS
1453ac_link="$ac_link $ld_switch_machine $ld_switch_system"
1454
9ec10b2f
DM
1455### Compute the unexec source name from the object name.
1456UNEXEC_SRC="`echo ${unexec} | sed 's/\.o/.c/'`"
1457
1458# Do the opsystem or machine files prohibit the use of the GNU malloc?
1459# Assume not, until told otherwise.
1460GNU_MALLOC=yes
b05a95cb
RS
1461doug_lea_malloc=yes
1462AC_CHECK_FUNC(malloc_get_state, ,doug_lea_malloc=no)
1463AC_CHECK_FUNC(malloc_set_state, ,doug_lea_malloc=no)
fd0a060b
AS
1464AC_CACHE_CHECK(whether __after_morecore_hook exists,
1465 emacs_cv_var___after_morecore_hook,
3c0c48a7 1466AC_TRY_LINK([extern void (* __after_morecore_hook)();],[__after_morecore_hook = 0],
fd0a060b
AS
1467 emacs_cv_var___after_morecore_hook=yes,
1468 emacs_cv_var___after_morecore_hook=no))
1469if test $emacs_cv_var___after_morecore_hook = no; then
1470 doug_lea_malloc=no
1471fi
8cd88038 1472if test "${system_malloc}" = "yes"; then
9ec10b2f
DM
1473 GNU_MALLOC=no
1474 GNU_MALLOC_reason="
b05a95cb 1475 (The GNU allocators don't work with this system configuration.)"
9ec10b2f 1476fi
8cd88038
RS
1477if test "$doug_lea_malloc" = "yes" ; then
1478 if test "$GNU_MALLOC" = yes ; then
1479 GNU_MALLOC_reason="
0855015c 1480 (Using Doug Lea's new malloc from the GNU C Library.)"
8cd88038
RS
1481 fi
1482 AC_DEFINE(DOUG_LEA_MALLOC)
1483fi
9ec10b2f
DM
1484
1485if test x"${REL_ALLOC}" = x; then
1486 REL_ALLOC=${GNU_MALLOC}
1487fi
1488
9ec10b2f
DM
1489#### Add the libraries to LIBS and check for some functions.
1490
5ac83f86 1491if test x"${OVERRIDE_CPPFLAGS}" != x; then
1e60bcf8 1492 CPPFLAGS="${OVERRIDE_CPPFLAGS}"
5ac83f86
RS
1493else
1494 CPPFLAGS="$c_switch_system $c_switch_machine $CPPFLAGS"
1495fi
1496
52c76122 1497LIBS="$libsrc_libs $LIBS"
9ec10b2f
DM
1498
1499dnl If found, this defines HAVE_LIBDNET, which m/pmax.h checks,
1500dnl and also adds -ldnet to LIBS, which Autoconf uses for checks.
1501AC_CHECK_LIB(dnet, dnet_ntoa)
1502dnl This causes -lresolv to get used in subsequent tests,
1503dnl which causes failures on some systems such as HPUX 9.
1504dnl AC_CHECK_LIB(resolv, gethostbyname)
1505
1506dnl FIXME replace main with a function we actually want from this library.
1507AC_CHECK_LIB(Xbsd, main, LD_SWITCH_X_SITE="$LD_SWITCH_X_SITE -lXbsd")
1508
027dae63 1509AC_CHECK_LIB(pthreads, cma_open)
1d94ee28 1510
5d4245a6 1511AC_MSG_CHECKING(for XFree86 in /usr/X386)
9ec10b2f 1512if test -d /usr/X386/include; then
9ec10b2f 1513 HAVE_XFREE386=yes
6e0dc84a 1514 : ${C_SWITCH_X_SITE="-I/usr/X386/include"}
9ec10b2f 1515else
6e0dc84a 1516 HAVE_XFREE386=no
9ec10b2f 1517fi
6e0dc84a 1518AC_MSG_RESULT($HAVE_XFREE386)
9ec10b2f 1519
509fccc3
RS
1520# Change CFLAGS temporarily so that C_SWITCH_X_SITE gets used
1521# for the tests that follow. We set it back to REAL_CFLAGS later on.
9ec10b2f
DM
1522
1523if test "${HAVE_X11}" = "yes"; then
1524 DEFS="$C_SWITCH_X_SITE $DEFS"
96c20358
RS
1525 LDFLAGS="$LDFLAGS $LD_SWITCH_X_SITE"
1526 LIBS="$LIBX $LIBS"
9ec10b2f 1527 CFLAGS="$C_SWITCH_X_SITE $CFLAGS"
509fccc3 1528
617a496c
RS
1529 # On Solaris, arrange for LD_RUN_PATH to point to the X libraries for tests.
1530 # This is handled by LD_SWITCH_X_SITE_AUX during the real build,
1531 # but it's more convenient here to set LD_RUN_PATH
1532 # since this also works on hosts that don't understand LD_SWITCH_X_SITE_AUX.
1533 if test "${x_libraries}" != NONE && test -n "${x_libraries}"; then
1534 LD_RUN_PATH=$x_libraries${LD_RUN_PATH+:}$LD_RUN_PATH
1535 export LD_RUN_PATH
1536 fi
1537
5ac83f86 1538 if test "${opsys}" = "gnu-linux"; then
3bbe016c 1539 AC_MSG_CHECKING(whether X on GNU/Linux needs -b to link)
509fccc3
RS
1540 AC_TRY_LINK([],
1541 [XOpenDisplay ("foo");],
3bbe016c
KH
1542 [xlinux_first_failure=no],
1543 [xlinux_first_failure=yes])
1544 if test "${xlinux_first_failure}" = "yes"; then
509fccc3
RS
1545 OLD_LD_SWITCH_X_SITE="$LD_SWITCH_X_SITE"
1546 OLD_C_SWITCH_X_SITE="$C_SWITCH_X_SITE"
1547 OLD_CPPFLAGS="$CPPFLAGS"
1548 OLD_LIBS="$LIBS"
1549 LD_SWITCH_X_SITE="$LD_SWITCH_X_SITE -b i486-linuxaout"
1550 C_SWITCH_X_SITE="$C_SWITCH_X_SITE -b i486-linuxaout"
1551 CPPFLAGS="$CPPFLAGS -b i486-linuxaout"
1552 LIBS="$LIBS -b i486-linuxaout"
1553 AC_TRY_LINK([],
1554 [XOpenDisplay ("foo");],
3bbe016c
KH
1555 [xlinux_second_failure=no],
1556 [xlinux_second_failure=yes])
1557 if test "${xlinux_second_failure}" = "yes"; then
509fccc3
RS
1558 # If we get the same failure with -b, there is no use adding -b.
1559 # So take it out. This plays safe.
1560 LD_SWITCH_X_SITE="$OLD_LD_SWITCH_X_SITE"
1561 C_SWITCH_X_SITE="$OLD_C_SWITCH_X_SITE"
1562 CPPFLAGS="$OLD_CPPFLAGS"
1563 LIBS="$OLD_LIBS"
1564 AC_MSG_RESULT(no)
1565 else
1566 AC_MSG_RESULT(yes)
1567 fi
1568 else
1569 AC_MSG_RESULT(no)
1570 fi
1571 fi
1572
6e0dc84a 1573 AC_CHECK_FUNCS(XrmSetDatabase XScreenResourceString \
9ec10b2f
DM
1574XScreenNumberOfScreen XSetWMProtocols)
1575fi
1576
08741ba9 1577if test "${window_system}" = "x11"; then
4be21f66 1578 AC_MSG_CHECKING(X11 version 6)
fd0a060b 1579 AC_CACHE_VAL(emacs_cv_x11_version_6,
08741ba9
RS
1580 AC_TRY_LINK([#include <X11/Xlib.h>],
1581[#if XlibSpecificationRelease < 6
1582fail;
1583#endif
fd0a060b
AS
1584], emacs_cv_x11_version_6=yes, emacs_cv_x11_version_6=no))
1585 if test $emacs_cv_x11_version_6 = yes; then
1586 AC_MSG_RESULT(6 or newer)
1587 AC_DEFINE(HAVE_X11R6)
1588 else
1589 AC_MSG_RESULT(before 6)
1590 fi
08741ba9
RS
1591fi
1592
f7894e88 1593if test "${window_system}" = "x11"; then
4be21f66 1594 AC_MSG_CHECKING(X11 version 5)
fd0a060b 1595 AC_CACHE_VAL(emacs_cv_x11_version_5,
4be21f66
KH
1596 AC_TRY_LINK([#include <X11/Xlib.h>],
1597[#if XlibSpecificationRelease < 5
1598fail;
1599#endif
fd0a060b
AS
1600], emacs_cv_x11_version_5=yes, emacs_cv_x11_version_5=no))
1601 if test $emacs_cv_x11_version_5 = yes; then
1602 AC_MSG_RESULT(5 or newer)
f7894e88 1603 HAVE_X11R5=yes
fd0a060b
AS
1604 AC_DEFINE(HAVE_X11R5)
1605 else
f7894e88 1606 HAVE_X11R5=no
fd0a060b
AS
1607 AC_MSG_RESULT(before 5)
1608 fi
f7894e88
RS
1609fi
1610
bce97856
RS
1611dnl Do not put whitespace before the #include statements below.
1612dnl Older compilers (eg sunos4 cc) choke on it.
f7894e88
RS
1613if test x"${USE_X_TOOLKIT}" = xmaybe; then
1614 if test x"${HAVE_X11R5}" = xyes; then
1615 AC_MSG_CHECKING(X11 version 5 with Xaw)
fd0a060b 1616 AC_CACHE_VAL(emacs_cv_x11_version_5_with_xaw,
f7894e88 1617 AC_TRY_LINK([
bce97856
RS
1618#include <X11/Intrinsic.h>
1619#include <X11/Xaw/Simple.h>],
f7894e88 1620 [],
fd0a060b
AS
1621 emacs_cv_x11_version_5_with_xaw=yes,
1622 emacs_cv_x11_version_5_with_xaw=no))
1623 if test $emacs_cv_x11_version_5_with_xaw = yes; then
1624 AC_MSG_RESULT([5 or newer, with Xaw; use toolkit by default])
1625 USE_X_TOOLKIT=LUCID
1626 else
1627 AC_MSG_RESULT(before 5 or no Xaw; do not use toolkit by default)
1628 USE_X_TOOLKIT=none
1629 fi
f7894e88
RS
1630 else
1631 USE_X_TOOLKIT=none
1632 fi
4be21f66
KH
1633fi
1634
1635X_TOOLKIT_TYPE=$USE_X_TOOLKIT
1636
9ec10b2f
DM
1637if test "${USE_X_TOOLKIT}" != "none"; then
1638 AC_MSG_CHECKING(X11 toolkit version)
fd0a060b 1639 AC_CACHE_VAL(emacs_cv_x11_toolkit_version_6,
6e0dc84a 1640 AC_TRY_LINK([#include <X11/Intrinsic.h>],
9ec10b2f
DM
1641[#if XtSpecificationRelease < 6
1642fail;
1643#endif
fd0a060b
AS
1644], emacs_cv_x11_toolkit_version_6=yes, emacs_cv_x11_toolkit_version_6=no))
1645 HAVE_X11XTR6=$emacs_cv_x11_toolkit_version_6
1646 if test $emacs_cv_x11_toolkit_version_6 = yes; then
1647 AC_MSG_RESULT(6 or newer)
1648 AC_DEFINE(HAVE_X11XTR6)
1649 else
1650 AC_MSG_RESULT(before 6)
1651 fi
6aad10e4
RS
1652
1653dnl If using toolkit, check whether libXmu.a exists.
1654dnl tranle@intellicorp.com says libXmu.a can need XtMalloc in libXt.a to link.
1655 OLDLIBS="$LIBS"
fcc303f4
RS
1656 if test x$HAVE_X11XTR6 = xyes; then
1657 LIBS="-lXt -lSM -lICE $LIBS"
1658 else
1659 LIBS="-lXt $LIBS"
1660 fi
6aad10e4 1661 AC_CHECK_LIB(Xmu, XmuConvertStandardSelection)
6e502e37 1662 LIBS="$OLDLIBS"
9ec10b2f
DM
1663fi
1664
66d736a9 1665if test "${USE_X_TOOLKIT}" = "MOTIF"; then
fd0a060b 1666 AC_CACHE_CHECK(for Motif version 2.1, emacs_cv_motif_version_2_1,
66d736a9
RS
1667 AC_TRY_COMPILE([#include <Xm/Xm.h>],
1668 [#if XmVERSION > 2 || (XmVERSION == 2 && XmREVISION >= 1)
1669int x = 5;
1670#else
1671Motif version prior to 2.1.
1672#endif],
fd0a060b
AS
1673 emacs_cv_motif_version_2_1=yes, emacs_cv_motif_version_2_1=no))
1674 HAVE_MOTIF_2_1=$emacs_cv_motif_version_2_1
1675 if test $emacs_cv_motif_version_2_1 = yes; then
1676 AC_DEFINE(HAVE_MOTIF_2_1)
03e8ce6a 1677 AC_CHECK_LIB(Xp, XpCreateContext)
fd0a060b 1678 fi
66d736a9
RS
1679fi
1680
620fdfdf
RS
1681### Is -lXaw3d available?
1682HAVE_XAW3D=no
1683if test "${HAVE_X11}" = "yes"; then
1684 if test "${USE_X_TOOLKIT}" != "none"; then
1685 old_c_flags="${CFLAGS}"
1686 CFLAGS="${LD_SWITCH_X_SITE}"
1687 AC_CHECK_HEADER(X11/Xaw3d/Scrollbar.h,
1688 AC_CHECK_LIB(Xaw3d, XawScrollbarSetThumb, HAVE_XAW3D=yes, , -lX11))
1689 CFLAGS="${old_c_flags}"
1690
1691 if test "${HAVE_XAW3D}" = "yes"; then
1692 AC_DEFINE(HAVE_XAW3D)
1693 fi
1694 fi
1695fi
1696
0be97a72
GM
1697dnl Use toolkit scroll bars if configured for X toolkit and either
1698dnl using Motif or Xaw3d is available, and unless
1699dnl --with-toolkit-scroll-bars=no was specified.
1700
1701USE_TOOLKIT_SCROLL_BARS=no
1702if test "${with_toolkit_scroll_bars}" != "no"; then
1703 if test "${USE_X_TOOLKIT}" != "none"; then
1704 if test "${USE_X_TOOLKIT}" = "MOTIF"; then
1705 AC_DEFINE(USE_TOOLKIT_SCROLL_BARS)
1706 HAVE_XAW3D=no
1707 USE_TOOLKIT_SCROLL_BARS=yes
1708 elif test "${HAVE_XAW3D}" = "yes"; then
1709 AC_DEFINE(USE_TOOLKIT_SCROLL_BARS)
1710 USE_TOOLKIT_SCROLL_BARS=yes
1711 fi
1712 fi
1713fi
1714
620fdfdf
RS
1715### Use -lXpm if available, unless `--with-xpm=no'.
1716HAVE_XPM=no
1717if test "${HAVE_X11}" = "yes"; then
1718 if test "${with_xpm}" != "no"; then
1719 old_c_flags="${CFLAGS}"
1720 CFLAGS="${LD_SWITCH_X_SITE}"
1721 AC_CHECK_HEADER(X11/xpm.h,
1722 AC_CHECK_LIB(Xpm, XpmReadFileToPixmap, HAVE_XPM=yes, , -lX11))
1723 CFLAGS="${old_c_flags}"
1724 fi
1725
1726 if test "${HAVE_XPM}" = "yes"; then
1727 AC_DEFINE(HAVE_XPM)
1728 fi
1729fi
1730
1731### Use -ljpeg if available, unless `--with-jpeg=no'.
1732HAVE_JPEG=no
1733if test "${HAVE_X11}" = "yes"; then
1734 if test "${with_jpeg}" != "no"; then
1735 old_c_flags="${CFLAGS}"
1736 CFLAGS="${LD_SWITCH_X_SITE} ${CFLAGS}"
3cc9d384
DL
1737 dnl Checking for jpeglib.h can lose becsue of a redefinition of
1738 dnl HAVE_STDLIB_H.
1739 AC_CHECK_HEADER(jerror.h,
1740 AC_CHECK_LIB(jpeg, jpeg_destroy_compress, HAVE_JPEG=yes, , -lX11))
620fdfdf
RS
1741 CFLAGS="${old_c_flags}"
1742 fi
1743
1744 if test "${HAVE_JPEG}" = "yes"; then
1745 AC_DEFINE(HAVE_JPEG)
1746 fi
1747fi
1748
1749### Use -lpng if available, unless `--with-png=no'.
1750HAVE_PNG=no
1751if test "${HAVE_X11}" = "yes"; then
1752 if test "${with_png}" != "no"; then
1753 old_c_flags="${CFLAGS}"
1754 CFLAGS="${LD_SWITCH_X_SITE} ${CFLAGS}"
1755 AC_CHECK_HEADER(png.h,
1756 AC_CHECK_LIB(png, png_set_expand, HAVE_PNG=yes, , -lX11 -lz -lm))
1757 CFLAGS="${old_c_flags}"
1758 fi
1759
1760 if test "${HAVE_PNG}" = "yes"; then
1761 AC_DEFINE(HAVE_PNG)
1762 fi
1763fi
1764
1765### Use -ltiff if available, unless `--with-tiff=no'.
1766HAVE_TIFF=no
1767if test "${HAVE_X11}" = "yes"; then
1768 if test "${with_tiff}" != "no"; then
1769 old_c_flags="${CFLAGS}"
1770 CFLAGS="${LD_SWITCH_X_SITE} ${CFLAGS}"
1771 AC_CHECK_HEADER(tiffio.h,
3b3cc4a4
KR
1772 tifflibs="-lX11 -lz -lm"
1773 # At least one tiff package requires the jpeg library.
1774 if test "${HAVE_JPEG}" = yes; then tifflibs="-ljpeg $tifflibs"; fi
1775 AC_CHECK_LIB(tiff, TIFFGetVersion, HAVE_TIFF=yes, , $tifflibs))
620fdfdf
RS
1776 CFLAGS="${old_c_flags}"
1777 fi
1778
1779 if test "${HAVE_TIFF}" = "yes"; then
1780 AC_DEFINE(HAVE_TIFF)
1781 fi
1782fi
1783
1784### Use -lgif if available, unless `--with-gif=no'.
1785HAVE_GIF=no
1786if test "${HAVE_X11}" = "yes"; then
1787 if test "${with_gif}" != "no"; then
1788 old_c_flags="${CFLAGS}"
1789 CFLAGS="${LD_SWITCH_X_SITE} ${CFLAGS}"
1790 AC_CHECK_HEADER(gif_lib.h,
5119087b 1791 AC_CHECK_LIB(ungif, DGifOpen, HAVE_GIF=yes, , -lX11))
620fdfdf
RS
1792 CFLAGS="${old_c_flags}"
1793 fi
1794
1795 if test "${HAVE_GIF}" = "yes"; then
1796 AC_DEFINE(HAVE_GIF)
1797 fi
1798fi
1799
9ec10b2f 1800# If netdb.h doesn't declare h_errno, we must declare it by hand.
fd0a060b
AS
1801AC_CACHE_CHECK(whether netdb declares h_errno,
1802 emacs_cv_netdb_declares_h_errno,
6e0dc84a 1803AC_TRY_LINK([#include <netdb.h>],
01345308 1804 [return h_errno;],
fd0a060b
AS
1805 emacs_cv_netdb_declares_h_errno=yes, emacs_cv_netdb_declares_h_errno=no))
1806if test $emacs_cv_netdb_declares_h_errno = yes; then
1807 AC_DEFINE(HAVE_H_ERRNO)
1808fi
9ec10b2f 1809
6e0dc84a 1810AC_FUNC_ALLOCA
9ec10b2f 1811
f6e8adea 1812# fmod, logb, and frexp are found in -lm on most systems.
e468fb38 1813# On HPUX 9.01, -lm does not contain logb, so check for sqrt.
e6fd9047 1814AC_CHECK_LIB(m, sqrt)
e6fd9047 1815
4e4db900 1816# Check for mail-locking functions in a "mail" library
5ad9ac92
DL
1817AC_CHECK_LIB(mail, maillock)
1818dnl Debian, at least:
1819dnl AC_CHECK_LIB(lockfile, maillock, [AC_DEFINE(HAVE_LIBMAIL)])
1820AC_CHECK_LIB(lockfile, maillock)
1821# If we have the shared liblockfile, assume we must use it for mail
1822# locking (e.g. Debian). If we couldn't link against liblockfile
1823# (no liblockfile.a installed), ensure that we don't need to.
1824if test "$ac_cv_lib_lockfile_maillock" = no; then
1825 dnl This works for files generally, not just executables.
1826 dnl Should we look elsewhere for it? Maybe examine /etc/ld.so.conf?
1827 AC_CHECK_PROG(liblockfile, liblockfile.so, yes, no,
1828 /usr/lib:/lib:/usr/local/lib:$LD_LIBRARY_PATH)
1829 if test $ac_cv_prog_liblockfile = yes; then
1830 AC_MSG_ERROR([Shared liblockfile found but can't link against it.
1831This probably means that movemail could lose mail.
1832There may be a \`development' package to install containing liblockfile.])
1833 else AC_DEFINE(LIBMAIL, -llockfile)
1834 fi
1835 else :
1836fi
1837AC_CHECK_FUNCS(touchlock)
1838AC_CHECK_HEADERS(maillock.h)
4e4db900 1839
1effc2cb
PE
1840AC_CHECK_FUNCS(gettimeofday gethostname getdomainname dup2 \
1841rename closedir mkdir rmdir sysinfo \
fd4bc671 1842random lrand48 bcopy bcmp logb frexp fmod rint cbrt ftime res_init setsid \
85ea1a28 1843strerror fpathconf select mktime euidaccess getpagesize tzset setlocale \
1113b624 1844utimes setrlimit setpgid getcwd shutdown strftime getaddrinfo \
02b25787 1845__fpending ftello getloadavg mblen mbrlen strsignal setitimer ualarm)
16831d8c
RS
1846
1847# Check this now, so that we will NOT find the above functions in ncurses.
1848# That is because we have not set up to link ncurses in lib-src.
1849# It's better to believe a function is not available
1850# than to expect to find it in ncurses.
1851AC_CHECK_LIB(ncurses, tparm)
0c565a0a 1852
a21616bd
KR
1853# These tell us which Kerberos-related libraries to use.
1854if test "${with_kerberos+set}" = set; then
1855 AC_CHECK_LIB(com_err, com_err)
1856 AC_CHECK_LIB(k5crypto, mit_des_cbc_encrypt)
1857 AC_CHECK_LIB(crypto, mit_des_cbc_encrypt)
1858 AC_CHECK_LIB(krb5, krb5_init_context)
1859 if test "${with_kerberos5+set}" != set; then
1860 AC_CHECK_LIB(des425, des_cbc_encrypt,,
1861 AC_CHECK_LIB(des, des_cbc_encrypt))
1862 AC_CHECK_LIB(krb4, krb_get_cred,,
1863 AC_CHECK_LIB(krb, krb_get_cred))
1864 fi
1865
1866 if test "${with_kerberos5+set}" = set; then
1867 AC_CHECK_HEADERS(krb5.h)
1868 else
1869 AC_CHECK_HEADERS(des.h,,
1870 AC_CHECK_HEADERS(kerberosIV/des.h,,
1871 AC_CHECK_HEADERS(kerberos/des.h)))
1872 AC_CHECK_HEADERS(krb.h,,
1873 AC_CHECK_HEADERS(kerberosIV/krb.h,,
1874 AC_CHECK_HEADERS(kerberos/krb.h)))
1875 fi
1876 AC_CHECK_HEADERS(com_err.h)
1877fi
1878
c4510052
PE
1879# Solaris requires -lintl if you want strerror (which calls dgettext)
1880# to return localized messages.
1881AC_CHECK_LIB(intl, dgettext)
1882
0c565a0a
RS
1883AC_MSG_CHECKING(whether localtime caches TZ)
1884AC_CACHE_VAL(emacs_cv_localtime_cache,
fcc303f4 1885[if test x$ac_cv_func_tzset = xyes; then
0c565a0a 1886AC_TRY_RUN([#include <time.h>
22cc077c
RS
1887extern char **environ;
1888unset_TZ ()
1889{
1890 char **from, **to;
1891 for (to = from = environ; (*to = *from); from++)
1892 if (! (to[0][0] == 'T' && to[0][1] == 'Z' && to[0][2] == '='))
1893 to++;
1894}
98ab445d
RS
1895char TZ_GMT0[] = "TZ=GMT0";
1896char TZ_PST8[] = "TZ=PST8";
0c565a0a
RS
1897main()
1898{
1899 time_t now = time ((time_t *) 0);
22cc077c 1900 int hour_GMT0, hour_unset;
98ab445d 1901 if (putenv (TZ_GMT0) != 0)
0c565a0a 1902 exit (1);
22cc077c
RS
1903 hour_GMT0 = localtime (&now)->tm_hour;
1904 unset_TZ ();
1905 hour_unset = localtime (&now)->tm_hour;
98ab445d 1906 if (putenv (TZ_PST8) != 0)
0c565a0a 1907 exit (1);
22cc077c
RS
1908 if (localtime (&now)->tm_hour == hour_GMT0)
1909 exit (1);
1910 unset_TZ ();
1911 if (localtime (&now)->tm_hour != hour_unset)
1912 exit (1);
1913 exit (0);
0c565a0a
RS
1914}], emacs_cv_localtime_cache=no, emacs_cv_localtime_cache=yes,
1915[# If we have tzset, assume the worst when cross-compiling.
1916emacs_cv_localtime_cache=yes])
1917else
1918 # If we lack tzset, report that localtime does not cache TZ,
1919 # since we can't invalidate the cache if we don't have tzset.
1920 emacs_cv_localtime_cache=no
1921fi])dnl
1922AC_MSG_RESULT($emacs_cv_localtime_cache)
1923if test $emacs_cv_localtime_cache = yes; then
1924 AC_DEFINE(LOCALTIME_CACHE)
1925fi
9ec10b2f 1926
3d68df05 1927if test "x$HAVE_TIMEVAL" = xyes; then
fd0a060b
AS
1928AC_CACHE_CHECK(whether gettimeofday can accept two arguments,
1929 emacs_cv_gettimeofday_two_arguments,
5ab52d42
RS
1930AC_TRY_LINK([
1931#ifdef TIME_WITH_SYS_TIME
1932#include <sys/time.h>
1933#include <time.h>
1934#else
1935#ifdef HAVE_SYS_TIME_H
1936#include <sys/time.h>
1937#else
1938#include <time.h>
1939#endif
1940#endif
1941 ],
1942 [
1943 struct timeval time;
1944 struct timezone dummy;
1945 gettimeofday (&time, &dummy);
1946],
fd0a060b
AS
1947 emacs_cv_gettimeofday_two_arguments=yes,
1948 emacs_cv_gettimeofday_two_arguments=no))
1949 if test $emacs_cv_gettimeofday_two_arguments = no; then
1950 AC_DEFINE(GETTIMEOFDAY_ONE_ARGUMENT)
1951 fi
5ab52d42
RS
1952fi
1953
9ec10b2f 1954ok_so_far=yes
6e0dc84a 1955AC_CHECK_FUNC(socket, , ok_so_far=no)
9ec10b2f 1956if test $ok_so_far = yes; then
6e0dc84a 1957 AC_CHECK_HEADER(netinet/in.h, , ok_so_far=no)
9ec10b2f
DM
1958fi
1959if test $ok_so_far = yes; then
6e0dc84a 1960 AC_CHECK_HEADER(arpa/inet.h, , ok_so_far=no)
9ec10b2f
DM
1961fi
1962if test $ok_so_far = yes; then
1963 AC_DEFINE(HAVE_INET_SOCKETS)
1964fi
1965
7bbbba31
DM
1966if test -f /usr/lpp/X11/bin/smt.exp; then
1967 AC_DEFINE(HAVE_AIX_SMT_EXP)
1968fi
1969
27b07953
GM
1970AC_MSG_CHECKING(whether system supports dynamic ptys)
1971if test -d /dev/pts && ls -d /dev/ptmx > /dev/null 2>&1 ; then
1972 AC_MSG_RESULT(yes)
1973 AC_DEFINE(HAVE_DEV_PTMX)
1974else
1975 AC_MSG_RESULT(no)
1976fi
1977
79e12078
DL
1978AC_FUNC_VFORK
1979
9ec10b2f
DM
1980# Set up the CFLAGS for real compilation, so we can substitute it.
1981CFLAGS="$REAL_CFLAGS"
1982
1983changequote(, )dnl
1984#### Find out which version of Emacs this is.
1985version=`grep 'defconst[ ]*emacs-version' ${srcdir}/lisp/version.el \
1986 | sed -e 's/^[^"]*"\([^"]*\)".*$/\1/'`
1987changequote([, ])dnl
1988if test x"${version}" = x; then
1989 AC_MSG_ERROR(can't find current emacs version in \`${srcdir}/lisp/version.el'.)
1990fi
1991
9ec10b2f
DM
1992### Specify what sort of things we'll be editing into Makefile and config.h.
1993### Use configuration here uncanonicalized to avoid exceeding size limits.
1994AC_SUBST(version)
1995AC_SUBST(configuration)
3cd69289 1996AC_SUBST(canonical)
9ec10b2f
DM
1997AC_SUBST(srcdir)
1998AC_SUBST(prefix)
1999AC_SUBST(exec_prefix)
2000AC_SUBST(bindir)
2001AC_SUBST(datadir)
3cd69289
DM
2002AC_SUBST(sharedstatedir)
2003AC_SUBST(libexecdir)
9ec10b2f
DM
2004AC_SUBST(mandir)
2005AC_SUBST(infodir)
2006AC_SUBST(lispdir)
2007AC_SUBST(locallisppath)
2008AC_SUBST(lisppath)
66d736a9 2009AC_SUBST(x_default_search_path)
9ec10b2f 2010AC_SUBST(etcdir)
9ec10b2f
DM
2011AC_SUBST(archlibdir)
2012AC_SUBST(docdir)
3cd69289 2013AC_SUBST(bitmapdir)
9ec10b2f
DM
2014AC_SUBST(c_switch_system)
2015AC_SUBST(c_switch_machine)
2016AC_SUBST(LD_SWITCH_X_SITE)
2017AC_SUBST(LD_SWITCH_X_SITE_AUX)
2018AC_SUBST(C_SWITCH_X_SITE)
2019AC_SUBST(CFLAGS)
2020AC_SUBST(X_TOOLKIT_TYPE)
2021AC_SUBST(machfile)
2022AC_SUBST(opsysfile)
2023
3cd69289 2024AC_DEFINE_UNQUOTED(EMACS_CONFIGURATION, "${canonical}")
6d1da0d1 2025AC_DEFINE_UNQUOTED(EMACS_CONFIG_OPTIONS, "${ac_configure_args}")
9ec10b2f
DM
2026AC_DEFINE_UNQUOTED(config_machfile, "${machfile}")
2027AC_DEFINE_UNQUOTED(config_opsysfile, "${opsysfile}")
2028AC_DEFINE_UNQUOTED(LD_SWITCH_X_SITE, ${LD_SWITCH_X_SITE})
2029AC_DEFINE_UNQUOTED(LD_SWITCH_X_SITE_AUX, ${LD_SWITCH_X_SITE_AUX})
2030AC_DEFINE_UNQUOTED(C_SWITCH_X_SITE, ${C_SWITCH_X_SITE})
2031AC_DEFINE_UNQUOTED(UNEXEC_SRC, ${UNEXEC_SRC})
2032
2033if test "${HAVE_X_WINDOWS}" = "yes" ; then
2034 AC_DEFINE(HAVE_X_WINDOWS)
2035fi
2036if test "${USE_X_TOOLKIT}" != "none" ; then
2037 AC_DEFINE(USE_X_TOOLKIT)
2038fi
2039if test "${HAVE_X11}" = "yes" ; then
2040 AC_DEFINE(HAVE_X11)
2041fi
2042if test "${HAVE_XFREE386}" = "yes" ; then
2043 AC_DEFINE(HAVE_XFREE386)
2044fi
08741ba9
RS
2045if test "${HAVE_MENUS}" = "yes" ; then
2046 AC_DEFINE(HAVE_MENUS)
9ec10b2f
DM
2047fi
2048if test "${GNU_MALLOC}" = "yes" ; then
2049 AC_DEFINE(GNU_MALLOC)
2050fi
2051if test "${REL_ALLOC}" = "yes" ; then
2052 AC_DEFINE(REL_ALLOC)
2053fi
9ec10b2f 2054
9ec10b2f
DM
2055#### Report on what we decided to do.
2056echo "
9ec10b2f
DM
2057Configured for \`${canonical}'.
2058
2059 Where should the build process find the source code? ${srcdir}
2060 What operating system and machine description files should Emacs use?
2061 \`${opsysfile}' and \`${machfile}'
2062 What compiler should emacs be built with? ${CC} ${CFLAGS}
2063 Should Emacs use the GNU version of malloc? ${GNU_MALLOC}${GNU_MALLOC_reason}
2064 Should Emacs use the relocating allocator for buffers? ${REL_ALLOC}
2065 What window system should Emacs use? ${window_system}
509fccc3
RS
2066 What toolkit should Emacs use? ${USE_X_TOOLKIT}"
2067
2068if test -n "${x_includes}"; then
2069echo " Where do we find X Windows header files? ${x_includes}"
2070else
2071echo " Where do we find X Windows header files? Standard dirs"
2072fi
2073if test -n "${x_libraries}"; then
2074echo " Where do we find X Windows libraries? ${x_libraries}"
2075else
2076echo " Where do we find X Windows libraries? Standard dirs"
2077fi
9ec10b2f 2078
b412189c
GM
2079echo " Does Emacs use -lXaw3d? ${HAVE_XAW3D}"
2080echo " Does Emacs use -lXpm? ${HAVE_XPM}"
2081echo " Does Emacs use -ljpeg? ${HAVE_JPEG}"
495ccc04 2082echo " Does Emacs use -ltiff? ${HAVE_TIFF}"
b412189c
GM
2083echo " Does Emacs use -lungif? ${HAVE_GIF}"
2084echo " Does Emacs use -lpng? ${HAVE_PNG}"
20c1822e 2085echo " Does Emacs use X toolkit scroll bars? ${USE_TOOLKIT_SCROLL_BARS}"
509fccc3 2086echo
9ec10b2f
DM
2087
2088# Remove any trailing slashes in these variables.
2089changequote(, )dnl
2090test "${prefix}" != NONE &&
2091 prefix=`echo "${prefix}" | sed 's,\([^/]\)/*$,\1,'`
2092test "${exec_prefix}" != NONE &&
2093 exec_prefix=`echo "${exec_prefix}" | sed 's,\([^/]\)/*$,\1,'`
2094changequote([, ])dnl
2095
5f8c8f00 2096AC_OUTPUT(Makefile lib-src/Makefile.c:lib-src/Makefile.in oldXMenu/Makefile \
66a96cff
RS
2097 man/Makefile lwlib/Makefile src/Makefile.c:src/Makefile.in \
2098 leim/Makefile, [
7bbbba31 2099
b63df577 2100### Make the necessary directories, if they don't exist.
e0a3686b 2101for dir in etc lisp ; do
b3947967 2102 test -d ${dir} || mkdir ${dir}
9ec10b2f
DM
2103done
2104
5f8c8f00
RS
2105# Build src/Makefile from ${srcdir}/src/Makefile.c
2106# and lib-src/Makefile from ${srcdir}/lib-src/Makefile.c
2107# This must be done after src/config.h is built, since we rely on that file.
9ec10b2f 2108
2d73167a 2109changequote(, )dnl The horror, the horror.
9ec10b2f
DM
2110# Now get this: Some word that is part of the ${srcdir} directory name
2111# or the ${configuration} value might, just might, happen to be an
2112# identifier like `sun4' or `i386' or something, and be predefined by
2113# the C preprocessor to some helpful value like 1, or maybe the empty
2114# string. Needless to say consequent macro substitutions are less
2115# than conducive to the makefile finding the correct directory.
2116undefs="`echo $top_srcdir $configuration $canonical |
2117sed -e 's/[^a-zA-Z0-9_]/ /g' -e 's/^/ /' -e 's/ *$//' \
2118 -e 's/ */ -U/g' -e 's/-U[0-9][^ ]*//g' \
2119`"
2d73167a 2120changequote([, ])dnl
9ec10b2f 2121
6a4bb05d
RS
2122echo creating src/epaths.h
2123make epaths-force
ab85d355 2124
9ec10b2f
DM
2125echo creating lib-src/Makefile
2126( cd lib-src
2127 rm -f junk.c junk1.c junk2.c
2128 sed -e '/start of cpp stuff/q' \
5f8c8f00 2129 < Makefile.c > junk1.c
9ec10b2f
DM
2130 sed -e '1,/start of cpp stuff/d'\
2131 -e 's@/\*\*/#\(.*\)$@/* \1 */@' \
5f8c8f00 2132 < Makefile.c > junk.c
9ec10b2f
DM
2133 $CPP $undefs -I. -I$top_srcdir/src $CPPFLAGS junk.c | \
2134 sed -e 's/^ / /' -e '/^#/d' -e '/^[ \f]*$/d' > junk2.c
2135 cat junk1.c junk2.c > Makefile.new
2136 rm -f junk.c junk1.c junk2.c
2137 chmod 444 Makefile.new
2138 mv -f Makefile.new Makefile
2139)
2140
2141echo creating src/Makefile
2142( cd src
2143 rm -f junk.c junk1.c junk2.c
2144 sed -e '/start of cpp stuff/q' \
5f8c8f00 2145 < Makefile.c > junk1.c
9ec10b2f
DM
2146 sed -e '1,/start of cpp stuff/d'\
2147 -e 's@/\*\*/#\(.*\)$@/* \1 */@' \
5f8c8f00 2148 < Makefile.c > junk.c
9ec10b2f
DM
2149 $CPP $undefs -I. -I$top_srcdir/src $CPPFLAGS junk.c | \
2150 sed -e 's/^ / /' -e '/^#/d' -e '/^[ \f]*$/d' > junk2.c
2151 cat junk1.c junk2.c > Makefile.new
2152 rm -f junk.c junk1.c junk2.c
2153 chmod 444 Makefile.new
2154 mv -f Makefile.new Makefile
2155)
8b66759a
DM
2156
2157if test ! -f src/.gdbinit && test -f $top_srcdir/src/.gdbinit; then
2158 echo creating src/.gdbinit
2159 echo source $top_srcdir/src/.gdbinit > src/.gdbinit
2160fi
2161
66a96cff
RS
2162# This is how we know whether to re-run configure in certain cases.
2163touch src/config.stamp
2164
ea50c238 2165], [CPP="$CPP" CPPFLAGS="$CPPFLAGS"])