(LIB_MOTIF): Fix typo.
[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
22cc077c 6dnl Copyright (C) 1994, 1995, 1996 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
21dnl along with GNU Emacs; see the file COPYING. If not, write to
22dnl the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
23
552dfe31 24AC_PREREQ(2.8)dnl
9ec10b2f 25AC_INIT(src/lisp.h)
5f8c8f00 26AC_CONFIG_HEADER(src/config.h:src/config.in)
9ec10b2f 27
9ec10b2f 28lispdir='${datadir}/emacs/${version}/lisp'
4be21f66
KH
29locallisppath='${datadir}/emacs/${version}/site-lisp:'\
30'${datadir}/emacs/site-lisp'
9ec10b2f
DM
31lisppath='${locallisppath}:${lispdir}'
32etcdir='${datadir}/emacs/${version}/etc'
3cd69289 33lockdir='${sharedstatedir}/emacs/lock'
60c3568d 34archlibdir='${libexecdir}/emacs/${version}/${configuration}'
9ec10b2f
DM
35docdir='${datadir}/emacs/${version}/etc'
36
39a7c455 37AC_ARG_WITH(gcc,
4f734bde
DM
38[ --with-gcc use GCC to compile Emacs])
39AC_ARG_WITH(pop,
40[ --with-pop support POP for mail retrieval],
41[AC_DEFINE(MAIL_USE_POP)])
42AC_ARG_WITH(kerberos,
43[ --with-kerberos support Kerberos-authenticated POP],
44[AC_DEFINE(KERBEROS)])
45AC_ARG_WITH(hesiod,
46[ --with-hesiod support Hesiod to get the POP server host],
47[AC_DEFINE(HESIOD)])
48dnl This should be the last --with option, because --with-x is
49dnl added later on when we find the path of X, and it's best to
50dnl keep them together visually.
9ec10b2f 51AC_ARG_WITH(x-toolkit,
f7894e88 52[ --with-x-toolkit=KIT use an X toolkit (KIT = yes/lucid/athena/motif/no)],
9ec10b2f
DM
53[ case "${withval}" in
54 y | ye | yes ) val=athena ;;
55 n | no ) val=no ;;
56 l | lu | luc | luci | lucid ) val=lucid ;;
84c5c823 57 a | at | ath | athe | athen | athena ) val=athena ;;
3cd69289 58 m | mo | mot | moti | motif ) val=motif ;;
2e71ec17 59dnl These don't currently work.
2e71ec17
DM
60dnl o | op | ope | open | open- | open-l | open-lo \
61dnl | open-loo | open-look ) val=open-look ;;
9ec10b2f 62 * )
2e71ec17
DM
63dnl AC_MSG_ERROR([the \`--with-x-toolkit' option is supposed to have a value
64dnl which is \`yes', \`no', \`lucid', \`athena', \`motif' or \`open-look'.])
90b777c5
RS
65AC_MSG_ERROR([\`--with-x-toolkit=$withval' is invalid\;
66this option's value should be \`yes', \`no', \`lucid', \`athena', or \`motif'.
9ec10b2f
DM
67Currently, \`yes', \`athena' and \`lucid' are synonyms.])
68 ;;
69 esac
70 with_x_toolkit=$val
71])
9ec10b2f
DM
72
73#### Make srcdir absolute, if it isn't already. It's important to
74#### avoid running the path through pwd unnecessary, since pwd can
069df4bf
DM
75#### give you automounter prefixes, which can go away. We do all this
76#### so Emacs can find its files when run uninstalled.
9ec10b2f
DM
77case "${srcdir}" in
78 /* ) ;;
79 . )
80 ## We may be able to use the $PWD environment variable to make this
81 ## absolute. But sometimes PWD is inaccurate.
f6e8adea
DM
82 ## Make sure CDPATH doesn't affect cd (in case PWD is relative).
83 CDPATH=
9ec10b2f
DM
84 if test "${PWD}" != "" && test "`(cd ${PWD} ; sh -c pwd)`" = "`pwd`" ;
85 then
86 srcdir="$PWD"
87 else
88 srcdir="`(cd ${srcdir}; pwd)`"
89 fi
90 ;;
91 * ) srcdir="`(cd ${srcdir}; pwd)`" ;;
92esac
93
94#### Check if the source directory already has a configured system in it.
95if test `pwd` != `(cd ${srcdir} && pwd)` \
96 && test -f "${srcdir}/src/config.h" ; then
97 AC_MSG_WARN([The directory tree \`${srcdir}' is being used
98 as a build directory right now; it has been configured in its own
99 right. To configure in another directory as well, you MUST
100 use GNU make. If you do not have GNU make, then you must
101 now do \`make distclean' in ${srcdir},
102 and then run $0 again.])
103
2d73167a 104changequote(, )dnl
9ec10b2f 105 extrasub='/^VPATH[ ]*=/c\
2d73167a 106changequote([, ])dnl
9ec10b2f
DM
107vpath %.c $(srcdir)\
108vpath %.h $(srcdir)\
109vpath %.y $(srcdir)\
110vpath %.l $(srcdir)\
111vpath %.s $(srcdir)\
5ac83f86
RS
112vpath %.in $(srcdir)\
113vpath %.texi $(srcdir)'
9ec10b2f
DM
114fi
115
116#### Given the configuration name, set machfile and opsysfile to the
117#### names of the m/*.h and s/*.h files we should use.
118
119### Canonicalize the configuration name.
120
121AC_CANONICAL_HOST
122canonical=$host
7bbbba31 123configuration=$host_alias
9ec10b2f
DM
124
125changequote(, )dnl
126
127### If you add support for a new configuration, add code to this
128### switch statement to recognize your configuration name and select
129### the appropriate operating system and machine description files.
130
131### You would hope that you could choose an m/*.h file pretty much
132### based on the machine portion of the configuration name, and an s-
133### file based on the operating system portion. However, it turns out
134### that each m/*.h file is pretty manufacturer-specific - for
135### example, apollo.h, hp9000s300.h, mega68k, news.h, and tad68k are
136### all 68000 machines; mips.h, pmax.h, and news-risc are all MIPS
137### machines. So we basically have to have a special case for each
138### configuration name.
139###
140### As far as handling version numbers on operating systems is
141### concerned, make sure things will fail in a fixable way. If
142### /etc/MACHINES doesn't say anything about version numbers, be
143### prepared to handle anything reasonably. If version numbers
144### matter, be sure /etc/MACHINES says something about it.
145###
146### Eric Raymond says we should accept strings like "sysvr4" to mean
147### "System V Release 4"; he writes, "The old convention encouraged
148### confusion between `system' and `release' levels'."
149
150machine='' opsys='' unported=no
151case "${canonical}" in
152
153 ## NetBSD ports
154 *-*-netbsd* )
155 opsys=netbsd
156 case "${canonical}" in
5ac83f86 157 i[3456]86-*-netbsd*) machine=intel386 ;;
9ec10b2f
DM
158 m68k-*-netbsd*)
159 # This is somewhat bogus.
160 machine=hp9000s300 ;;
161 mips-*-netbsd*) machine=pmax ;;
162 ns32k-*-netbsd*) machine=ns32000 ;;
163 sparc-*-netbsd*) machine=sparc ;;
164 esac
165 ;;
166
3cd69289
DM
167 ## Acorn RISCiX:
168 arm-acorn-riscix1.1* )
169 machine=acorn opsys=riscix1-1
170 ;;
171 arm-acorn-riscix1.2* | arm-acorn-riscix )
172 machine=acorn opsys=riscix1-2
173 ;;
174
9ec10b2f
DM
175 ## Alliant machines
176 ## Strictly speaking, we need the version of the alliant operating
177 ## system to choose the right machine file, but currently the
178 ## configuration name doesn't tell us enough to choose the right
179 ## one; we need to give alliants their own operating system name to
180 ## do this right. When someone cares, they can help us.
181 fx80-alliant-* )
182 machine=alliant4 opsys=bsd4-2
183 ;;
184 i860-alliant-* )
185 machine=alliant-2800 opsys=bsd4-3
186 ;;
187
30457b4f 188 ## Alpha (DEC) machines.
3cd69289
DM
189 alpha-dec-osf* )
190 machine=alpha opsys=osf1
191 ;;
192
5ac83f86
RS
193 alpha-*-linux-gnu* )
194 machine=alpha opsys=gnu-linux
4e90a7d5
RS
195 ;;
196
9ec10b2f
DM
197 ## Altos 3068
198 m68*-altos-sysv* )
199 machine=altos opsys=usg5-2
200 ;;
c7f493fd 201
9ec10b2f
DM
202 ## Amdahl UTS
203 580-amdahl-sysv* )
204 machine=amdahl opsys=usg5-2-2
205 ;;
206
acd04c87
RS
207 ## Apollo, Domain/OS
208 m68*-apollo-* )
209 machine=apollo opsys=bsd4-3
9ec10b2f
DM
210 ;;
211
212 ## AT&T 3b2, 3b5, 3b15, 3b20
213 we32k-att-sysv* )
214 machine=att3b opsys=usg5-2-2
215 ;;
216
217 ## AT&T 3b1 - The Mighty Unix PC!
218 m68*-att-sysv* )
219 machine=7300 opsys=usg5-2-2
220 ;;
221
222 ## Bull dpx20
223 rs6000-bull-bosx* )
224 machine=ibmrs6000 opsys=aix3-2
225 ;;
226
227 ## Bull dpx2
228 m68*-bull-sysv3* )
229 machine=dpx2 opsys=usg5-3
230 ;;
231
232 ## Bull sps7
233 m68*-bull-sysv2* )
234 machine=sps7 opsys=usg5-2
235 ;;
236
237 ## CCI 5/32, 6/32 -- see "Tahoe".
238
239 ## Celerity
240 ## I don't know what configuration name to use for this; config.sub
241 ## doesn't seem to know anything about it. Hey, Celerity users, get
242 ## in touch with us!
243 celerity-celerity-bsd* )
244 machine=celerity opsys=bsd4-2
245 ;;
246
247 ## Clipper
248 ## What operating systems does this chip run that Emacs has been
249 ## tested on?
250 clipper-* )
251 machine=clipper
252 ## We'll use the catch-all code at the bottom to guess the
253 ## operating system.
254 ;;
255
256 ## Convex
257 *-convex-bsd* | *-convex-convexos* )
258 machine=convex opsys=bsd4-3
908ff139 259 ## Prevents spurious white space in makefiles - d.m.cooke@larc.nasa.gov
9ec10b2f
DM
260 NON_GNU_CPP="cc -E -P"
261 ;;
262
263 ## Cubix QBx/386
5ac83f86 264 i[3456]86-cubix-sysv* )
9ec10b2f
DM
265 machine=intel386 opsys=usg5-3
266 ;;
267
268 ## Cydra 5
269 cydra*-cydrome-sysv* )
270 machine=cydra5 opsys=usg5-3
271 ;;
272
273 ## Data General AViiON Machines
274 m88k-dg-dgux5.4R3* | m88k-dg-dgux5.4.3* )
275 machine=aviion opsys=dgux5-4r3
276 ;;
277 m88k-dg-dgux5.4R2* | m88k-dg-dgux5.4.2* )
278 machine=aviion opsys=dgux5-4r2
279 ;;
280 m88k-dg-dgux* )
281 machine=aviion opsys=dgux
282 ;;
283
284 ## DECstations
285 mips-dec-ultrix[0-3].* | mips-dec-ultrix4.0* | mips-dec-bsd4.2* )
286 machine=pmax opsys=bsd4-2
287 ;;
3bbe016c 288 mips-dec-ultrix4.[12]* | mips-dec-bsd* )
9ec10b2f
DM
289 machine=pmax opsys=bsd4-3
290 ;;
3bbe016c
KH
291 mips-dec-ultrix* )
292 machine=pmax opsys=ultrix4-3
293 ;;
9ec10b2f
DM
294 mips-dec-osf* )
295 machine=pmax opsys=osf1
296 ;;
b95c8e7e
RS
297 mips-dec-mach_bsd4.3* )
298 machine=pmax opsys=mach-bsd4-3
299 ;;
9ec10b2f
DM
300
301 ## Motorola Delta machines
302 m68k-motorola-sysv* | m68000-motorola-sysv* )
303 machine=delta opsys=usg5-3
304 if test -z "`type gnucc | grep 'not found'`"
018427ee
RS
305 then
306 if test -s /etc/167config
307 then CC="gnucc -m68040"
308 else CC="gnucc -m68881"
c7f493fd 309 fi
9ec10b2f
DM
310 else
311 if test -z "`type gcc | grep 'not found'`"
312 then CC=gcc
313 else CC=cc
314 fi
315 fi
316 ;;
317 m88k-motorola-sysv4* )
63c1d3f2
RS
318 # jbotte@bnr.ca says that UNIX_System_V <hostName> 4.0 R40V4.3 m88k mc88110
319 # needs POSIX_SIGNALS and therefore needs usg5-4-2.
320 # I hope there are not other 4.0 versions for this machine
321 # which really need usg5-4 instead.
322 machine=delta88k opsys=usg5-4-2
9ec10b2f
DM
323 ;;
324 m88k-motorola-sysv* | m88k-motorola-m88kbcs* )
325 machine=delta88k opsys=usg5-3
326 ;;
327
328 ## Dual machines
329 m68*-dual-sysv* )
330 machine=dual opsys=usg5-2
331 ;;
332 m68*-dual-uniplus* )
333 machine=dual opsys=unipl5-2
334 ;;
335
336 ## Elxsi 6400
337 elxsi-elxsi-sysv* )
338 machine=elxsi opsys=usg5-2
339 ;;
340
341 ## Encore machines
342 ns16k-encore-bsd* )
343 machine=ns16000 opsys=umax
344 ;;
345
346 ## The GEC 93 - apparently, this port isn't really finished yet.
347
348 ## Gould Power Node and NP1
349 pn-gould-bsd4.2* )
350 machine=gould opsys=bsd4-2
351 ;;
352 pn-gould-bsd4.3* )
353 machine=gould opsys=bsd4-3
354 ;;
355 np1-gould-bsd* )
356 machine=gould-np1 opsys=bsd4-3
357 ;;
358
359 ## Harris Night Hawk machines running CX/UX (a 5000 looks just like a 4000
360 ## as far as Emacs is concerned).
361 m88k-harris-cxux* )
362 # Build needs to be different on 7.0 and later releases
363 case "`uname -r`" in
364 [56].[0-9] ) machine=nh4000 opsys=cxux ;;
365 [7].[0-9] ) machine=nh4000 opsys=cxux7 ;;
366 esac
3d68df05 367 NON_GNU_CPP="/lib/cpp"
9ec10b2f
DM
368 ;;
369 ## Harris ecx or gcx running CX/UX (Series 1200, Series 3000)
370 m68k-harris-cxux* )
371 machine=nh3000 opsys=cxux
372 ;;
3d68df05
KH
373 ## Harris power pc NightHawk running Power UNIX (Series 6000)
374 powerpc-harris-powerunix )
375 machine=nh6000 opsys=powerunix
376 NON_GNU_CPP="cc -Xo -E -P"
377 ;;
9ec10b2f
DM
378
379 ## Honeywell XPS100
380 xps*-honeywell-sysv* )
381 machine=xps100 opsys=usg5-2
382 ;;
383
384 ## HP 9000 series 200 or 300
385 m68*-hp-bsd* )
386 machine=hp9000s300 opsys=bsd4-3
387 ;;
42c3a7f7 388 ## HP/UX 7, 8, 9, and 10 are supported on these machines.
9ec10b2f
DM
389 m68*-hp-hpux* )
390 case "`uname -r`" in
391 ## Someone's system reports A.B8.05 for this.
392 ## I wonder what other possibilities there are.
393 *.B8.* ) machine=hp9000s300 opsys=hpux8 ;;
394 *.08.* ) machine=hp9000s300 opsys=hpux8 ;;
395 *.09.* ) machine=hp9000s300 opsys=hpux9 ;;
42c3a7f7 396 *.10.* ) machine=hp9000s300 opsys=hpux9shr ;;
9ec10b2f
DM
397 *) machine=hp9000s300 opsys=hpux ;;
398 esac
399 ;;
400
401 ## HP 9000 series 700 and 800, running HP/UX
402 hppa*-hp-hpux7* )
403 machine=hp800 opsys=hpux
404 ;;
405 hppa*-hp-hpux8* )
406 machine=hp800 opsys=hpux8
407 ;;
408 hppa*-hp-hpux9shr* )
409 machine=hp800 opsys=hpux9shr
410 ;;
411 hppa*-hp-hpux9* )
412 machine=hp800 opsys=hpux9
413 ;;
42c3a7f7 414 hppa*-hp-hpux10* )
12760c02 415 machine=hp800 opsys=hpux10
42c3a7f7 416 ;;
9ec10b2f
DM
417
418 ## HP 9000 series 700 and 800, running HP/UX
419 hppa*-hp-hpux* )
420 ## Cross-compilation? Nah!
421 case "`uname -r`" in
422 ## Someone's system reports A.B8.05 for this.
423 ## I wonder what other possibilities there are.
424 *.B8.* ) machine=hp800 opsys=hpux8 ;;
425 *.08.* ) machine=hp800 opsys=hpux8 ;;
426 *.09.* ) machine=hp800 opsys=hpux9 ;;
427 *) machine=hp800 opsys=hpux ;;
428 esac
429 ;;
4be21f66
KH
430 hppa-*-nextstep* )
431 machine=hp800 opsys=nextstep
432 ;;
9ec10b2f
DM
433
434 ## Orion machines
435 orion-orion-bsd* )
436 machine=orion opsys=bsd4-2
437 ;;
438 clipper-orion-bsd* )
439 machine=orion105 opsys=bsd4-2
440 ;;
441
442 ## IBM machines
5ac83f86 443 i[3456]86-ibm-aix1.1* )
9ec10b2f
DM
444 machine=ibmps2-aix opsys=usg5-2-2
445 ;;
5ac83f86 446 i[3456]86-ibm-aix1.[23]* | i[3456]86-ibm-aix* )
9ec10b2f
DM
447 machine=ibmps2-aix opsys=usg5-3
448 ;;
449 i370-ibm-aix*)
450 machine=ibm370aix opsys=usg5-3
451 ;;
046545ec 452 rs6000-ibm-aix3.1* | powerpc-ibm-aix3.1* )
9ec10b2f
DM
453 machine=ibmrs6000 opsys=aix3-1
454 ;;
046545ec 455 rs6000-ibm-aix3.2.5 | powerpc-ibm-aix3.2.5 )
9ec10b2f
DM
456 machine=ibmrs6000 opsys=aix3-2-5
457 ;;
b63df577
RS
458 rs6000-ibm-aix4.1* | powerpc-ibm-aix4.1* )
459 machine=ibmrs6000 opsys=aix4-1
460 ;;
461 rs6000-ibm-aix4* | powerpc-ibm-aix4* )
462 machine=ibmrs6000 opsys=aix4
463 ;;
046545ec 464 rs6000-ibm-aix* | powerpc-ibm-aix* )
9ec10b2f
DM
465 machine=ibmrs6000 opsys=aix3-2
466 ;;
467 romp-ibm-bsd4.3* )
468 machine=ibmrt opsys=bsd4-3
c7f493fd 469 ;;
9ec10b2f
DM
470 romp-ibm-bsd4.2* )
471 machine=ibmrt opsys=bsd4-2
472 ;;
473 romp-ibm-aos4.3* )
474 machine=ibmrt opsys=bsd4-3
c7f493fd 475 ;;
9ec10b2f
DM
476 romp-ibm-aos4.2* )
477 machine=ibmrt opsys=bsd4-2
478 ;;
479 romp-ibm-aos* )
480 machine=ibmrt opsys=bsd4-3
481 ;;
482 romp-ibm-bsd* )
483 machine=ibmrt opsys=bsd4-3
484 ;;
485 romp-ibm-aix* )
486 machine=ibmrt-aix opsys=usg5-2-2
487 ;;
488
489 ## Integrated Solutions `Optimum V'
490 m68*-isi-bsd4.2* )
491 machine=isi-ov opsys=bsd4-2
492 ;;
493 m68*-isi-bsd4.3* )
494 machine=isi-ov opsys=bsd4-3
495 ;;
496
497 ## Intel 386 machines where we do care about the manufacturer
5ac83f86 498 i[3456]86-intsys-sysv* )
9ec10b2f
DM
499 machine=is386 opsys=usg5-2-2
500 ;;
501
502 ## Prime EXL
5ac83f86 503 i[3456]86-prime-sysv* )
9ec10b2f
DM
504 machine=i386 opsys=usg5-3
505 ;;
506
3cd69289 507 ## Sequent Symmetry running Dynix
5ac83f86 508 i[3456]86-sequent-bsd* )
9ec10b2f
DM
509 machine=symmetry opsys=bsd4-3
510 ;;
511
3cd69289
DM
512 ## Sequent Symmetry running DYNIX/ptx
513 ## Use the old cpp rather than the newer ANSI one.
5ac83f86 514 i[3456]86-sequent-ptx* )
3cd69289
DM
515 machine=sequent-ptx opsys=ptx
516 NON_GNU_CPP="/lib/cpp"
517 ;;
518
9ec10b2f
DM
519 ## Unspecified sysv on an ncr machine defaults to svr4.2.
520 ## (Plain usg5-4 doesn't turn on POSIX signals, which we need.)
5ac83f86 521 i[3456]86-ncr-sysv* )
b0f36760 522 machine=ncr386 opsys=usg5-4-2
9ec10b2f
DM
523 ;;
524
cbce363f
RS
525 ## Intel Paragon OSF/1
526 i860-intel-osf1* )
527 machine=paragon opsys=osf1 NON_GNU_CPP=/usr/mach/lib/cpp
528 ;;
529
9ec10b2f
DM
530 ## Intel 860
531 i860-*-sysv4* )
532 machine=i860 opsys=usg5-4
533 NON_GNU_CC="/bin/cc" # Ie, not the one in /usr/ucb/cc.
534 NON_GNU_CPP="/usr/ccs/lib/cpp" # cc -E tokenizes macro expansion.
535 ;;
536
537 ## Masscomp machines
538 m68*-masscomp-rtu* )
539 machine=masscomp opsys=rtu
540 ;;
541
542 ## Megatest machines
543 m68*-megatest-bsd* )
544 machine=mega68 opsys=bsd4-2
545 ;;
546
547 ## Workstations sold by MIPS
548 ## This is not necessarily all workstations using the MIPS processor -
549 ## Irises are produced by SGI, and DECstations by DEC.
550
551 ## etc/MACHINES lists mips.h and mips4.h as possible machine files,
552 ## and usg5-2-2 and bsd4-3 as possible OS files. The only guidance
553 ## it gives for choosing between the alternatives seems to be "Use
554 ## -machine=mips4 for RISCOS version 4; use -opsystem=bsd4-3 with
555 ## the BSD world." I'll assume that these are instructions for
556 ## handling two odd situations, and that every other situation
557 ## should use mips.h and usg5-2-2, they being listed first.
558 mips-mips-usg* )
559 machine=mips4
560 ## Fall through to the general code at the bottom to decide on the OS.
561 ;;
562 mips-mips-riscos4* )
563 machine=mips4 opsys=bsd4-3
564 NON_GNU_CC="cc -systype bsd43"
565 NON_GNU_CPP="cc -systype bsd43 -E"
566 ;;
b95c8e7e
RS
567 mips-mips-riscos5* )
568 machine=mips4 opsys=riscos5
569 NON_GNU_CC="cc -systype bsd43"
570 NON_GNU_CPP="cc -systype bsd43 -E"
571 ;;
9ec10b2f
DM
572 mips-mips-bsd* )
573 machine=mips opsys=bsd4-3
574 ;;
575 mips-mips-* )
576 machine=mips opsys=usg5-2-2
577 ;;
578
579 ## NeXT
5ab52d42
RS
580 m68*-next-* | m68k-*-nextstep* )
581 machine=m68k opsys=nextstep
9ec10b2f
DM
582 ;;
583
584 ## The complete machine from National Semiconductor
585 ns32k-ns-genix* )
586 machine=ns32000 opsys=usg5-2
587 ;;
588
589 ## NCR machines
590 m68*-ncr-sysv2* | m68*-ncr-sysvr2* )
591 machine=tower32 opsys=usg5-2-2
592 ;;
593 m68*-ncr-sysv3* | m68*-ncr-sysvr3* )
594 machine=tower32v3 opsys=usg5-3
595 ;;
596
597 ## Nixdorf Targon 31
598 m68*-nixdorf-sysv* )
599 machine=targon31 opsys=usg5-2-2
600 ;;
601
602 ## Nu (TI or LMI)
603 m68*-nu-sysv* )
604 machine=nu opsys=usg5-2
605 ;;
606
607 ## Plexus
608 m68*-plexus-sysv* )
609 machine=plexus opsys=usg5-2
610 ;;
611
612 ## Pyramid machines
613 ## I don't really have any idea what sort of processor the Pyramid has,
614 ## so I'm assuming it is its own architecture.
615 pyramid-pyramid-bsd* )
616 machine=pyramid opsys=bsd4-2
617 ;;
618
619 ## Sequent Balance
620 ns32k-sequent-bsd4.2* )
621 machine=sequent opsys=bsd4-2
622 ;;
623 ns32k-sequent-bsd4.3* )
624 machine=sequent opsys=bsd4-3
625 ;;
626
627 ## Siemens Nixdorf
7cba3845 628 mips-siemens-sysv* | mips-sni-sysv*)
9ec10b2f
DM
629 machine=mips-siemens opsys=usg5-4
630 NON_GNU_CC=/usr/ccs/bin/cc
631 NON_GNU_CPP=/usr/ccs/lib/cpp
632 ;;
633
634 ## Silicon Graphics machines
635 ## Iris 2500 and Iris 2500 Turbo (aka the Iris 3030)
636 m68*-sgi-iris3.5* )
637 machine=irist opsys=iris3-5
638 ;;
639 m68*-sgi-iris3.6* | m68*-sgi-iris*)
640 machine=irist opsys=iris3-6
641 ;;
642 ## Iris 4D
643 mips-sgi-irix3* )
644 machine=iris4d opsys=irix3-3
645 ;;
4ab83697
RS
646 mips-sgi-irix4* )
647 machine=iris4d opsys=irix4-0
648 ;;
546fa279 649 mips-sgi-irix6* )
309daad2
RS
650 machine=iris4d opsys=irix6-0
651 NON_GNU_CPP=/lib/cpp
652 NON_GCC_TEST_OPTIONS=-32
546fa279 653 ;;
4ab83697 654 mips-sgi-irix5.[01]* )
9ec10b2f
DM
655 machine=iris4d opsys=irix5-0
656 ;;
4ab83697
RS
657 mips-sgi-irix5* | mips-sgi-irix* )
658 machine=iris4d opsys=irix5-2
9ec10b2f
DM
659 ;;
660
661 ## SONY machines
662 m68*-sony-bsd4.2* )
663 machine=news opsys=bsd4-2
664 ;;
665 m68*-sony-bsd4.3* )
666 machine=news opsys=bsd4-3
667 ;;
3d102c59 668 m68*-sony-newsos3* | m68*-sony-news3*)
9ec10b2f
DM
669 machine=news opsys=bsd4-3
670 ;;
3d102c59 671 mips-sony-bsd* | mips-sony-newsos4* | mips-sony-news4*)
9ec10b2f
DM
672 machine=news-risc opsys=bsd4-3
673 ;;
3d102c59 674 mips-sony-news* )
9ec10b2f
DM
675 machine=news-risc opsys=newsos5
676 ;;
677
678 ## Stride
679 m68*-stride-sysv* )
680 machine=stride opsys=usg5-2
681 ;;
682
683 ## Suns
5ac83f86
RS
684 sparc-*-linux-gnu* )
685 machine=sparc opsys=gnu-linux
28d9bc0e
KH
686 ;;
687
c42b1767 688 *-sun-sunos* | *-sun-bsd* | *-sun-solaris* \
5ac83f86 689 | i[3456]86-*-solaris2* | i[3456]86-*-sunos5* | powerpc*-*-solaris2* \
c42b1767 690 | rs6000-*-solaris2*)
9ec10b2f
DM
691 case "${canonical}" in
692 m68*-sunos1* ) machine=sun1 ;;
693 m68*-sunos2* ) machine=sun2 ;;
694 m68* ) machine=sun3 ;;
5ac83f86
RS
695 i[3456]86-sun-sunos[34]* ) machine=sun386 ;;
696 i[3456]86-*-* ) machine=intel386 ;;
f7894e88 697 powerpc* | rs6000* ) machine=ibmrs6000 ;;
9ec10b2f
DM
698 sparc* ) machine=sparc ;;
699 * ) unported=yes ;;
700 esac
701 case "${canonical}" in
702 ## The Sun386 didn't get past 4.0.
5ac83f86 703 i[3456]86-*-sunos4 ) opsys=sunos4-0 ;;
9ec10b2f 704 *-sunos4.0* ) opsys=sunos4-0 ;;
5ab52d42 705 *-sunos4.1.[3-9]* | *-sunos4shr*)
b95c8e7e 706 opsys=sunos4shr
54bfe57b 707 NON_GNU_CPP=/usr/lib/cpp
9ec10b2f 708 ;;
0ff0179d 709 *-sunos4.1.[3-9]*noshare )
3d68df05
KH
710 opsys=sunos4-1-3
711 NON_GNU_CPP=/usr/lib/cpp
712 NON_GCC_TEST_OPTIONS=-Bstatic
713 GCC_TEST_OPTIONS=-static
714 ;;
715 *-sunos4* | *-sunos )
716 opsys=sunos4-1
9ec10b2f
DM
717 NON_GCC_TEST_OPTIONS=-Bstatic
718 GCC_TEST_OPTIONS=-static
719 ;;
720 *-sunos5.3* | *-solaris2.3* )
721 opsys=sol2-3
722 NON_GNU_CPP=/usr/ccs/lib/cpp
723 ;;
724 *-sunos5.4* | *-solaris2.4* )
725 opsys=sol2-4
726 NON_GNU_CPP=/usr/ccs/lib/cpp
30457b4f 727 RANLIB="ar -ts"
9ec10b2f 728 ;;
2e567bad
KH
729 *-sunos5.5* | *-solaris2.5* )
730 opsys=sol2-5
731 NON_GNU_CPP=/usr/ccs/lib/cpp
30457b4f 732 RANLIB="ar -ts"
2e567bad 733 ;;
9ec10b2f 734 *-sunos5* | *-solaris* )
3d68df05 735 opsys=sol2-4
9ec10b2f
DM
736 NON_GNU_CPP=/usr/ccs/lib/cpp
737 ;;
738 * ) opsys=bsd4-2 ;;
739 esac
6e502e37
RS
740 ## Watch out for a compiler that we know will not work.
741 case "${canonical}" in
742 *-solaris* | *-sunos5* )
743 if [ "x$CC" = x/usr/ucb/cc ]; then
744 ## /usr/ucb/cc doesn't work;
745 ## we should find some other compiler that does work.
746 unset CC
747 fi
748 ;;
749 *) ;;
750 esac
9ec10b2f 751 ;;
5ab52d42 752 sparc-*-nextstep* )
19e45036 753 machine=sparc opsys=nextstep
5ab52d42 754 ;;
9ec10b2f
DM
755
756 ## Tadpole 68k
757 m68*-tadpole-sysv* )
758 machine=tad68k opsys=usg5-3
759 ;;
760
761 ## Tahoe machines
762 tahoe-tahoe-bsd4.2* )
763 machine=tahoe opsys=bsd4-2
764 ;;
765 tahoe-tahoe-bsd4.3* )
766 machine=tahoe opsys=bsd4-3
767 ;;
768
769 ## Tandem Integrity S2
770 mips-tandem-sysv* )
771 machine=tandem-s2 opsys=usg5-3
772 ;;
773
774 ## Tektronix XD88
775 m88k-tektronix-sysv3* )
776 machine=tekxd88 opsys=usg5-3
777 ;;
778
779 ## Tektronix 16000 box (6130?)
780 ns16k-tektronix-bsd* )
781 machine=ns16000 opsys=bsd4-2
782 ;;
783 ## Tektronix 4300
784 ## src/m/tek4300.h hints that this is a m68k machine.
785 m68*-tektronix-bsd* )
786 machine=tek4300 opsys=bsd4-3
787 ;;
788
789 ## Titan P2 or P3
790 ## We seem to have lost the machine-description file titan.h!
791 titan-titan-sysv* )
792 machine=titan opsys=usg5-3
793 ;;
c7f493fd 794
9ec10b2f
DM
795 ## Ustation E30 (SS5E)
796 m68*-unisys-uniplus* )
797 machine=ustation opsystem=unipl5-2
798 ;;
799
800 ## Vaxen.
801 vax-dec-* )
802 machine=vax
803 case "${canonical}" in
804 *-bsd4.1* ) opsys=bsd4-1 ;;
805 *-bsd4.2* | *-ultrix[0-3].* | *-ultrix4.0* ) opsys=bsd4-2 ;;
806 *-bsd4.3* | *-ultrix* ) opsys=bsd4-3 ;;
9ec10b2f
DM
807 *-sysv[01]* | *-sysvr[01]* ) opsys=usg5-0 ;;
808 *-sysv2* | *-sysvr2* ) opsys=usg5-2 ;;
809 *-vms* ) opsys=vms ;;
810 * ) unported=yes
811 esac
812 ;;
813
814 ## Whitechapel MG1
815 ns16k-whitechapel-* )
816 machine=mg1
817 ## We don't know what sort of OS runs on these; we'll let the
818 ## operating system guessing code below try.
819 ;;
820
821 ## Wicat
822 m68*-wicat-sysv* )
823 machine=wicat opsys=usg5-2
824 ;;
825
826 ## Intel 386 machines where we don't care about the manufacturer
5ac83f86 827 i[3456]86-*-* )
9ec10b2f
DM
828 machine=intel386
829 case "${canonical}" in
830 *-isc1.* | *-isc2.[01]* ) opsys=386-ix ;;
831 *-isc2.2* ) opsys=isc2-2 ;;
832 *-isc4.0* ) opsys=isc4-0 ;;
135c9ca6
RS
833 *-isc4.* ) opsys=isc4-1
834 GCC_TEST_OPTIONS=-posix
835 NON_GCC_TEST_OPTIONS=-Xp
836 ;;
9ec10b2f
DM
837 *-isc* ) opsys=isc3-0 ;;
838 *-esix5* ) opsys=esix5r4; NON_GNU_CPP=/usr/lib/cpp ;;
839 *-esix* ) opsys=esix ;;
840 *-xenix* ) opsys=xenix ;;
5ac83f86 841 *-linux-gnu* ) opsys=gnu-linux ;;
9ec10b2f 842 *-sco3.2v4* ) opsys=sco4 ; NON_GNU_CPP=/lib/cpp ;;
5ac83f86
RS
843 *-sco3.2v5* ) opsys=sco5
844 NON_GNU_CPP=/lib/cpp
845 # Prevent -belf from being passed to $CPP.
846 # /lib/cpp does not accept it.
847 OVERRIDE_CPPFLAGS=
848 ;;
5be039b9
RS
849 *-bsd386* | *-bsdi1* ) opsys=bsd386 ;;
850 *-bsdi2* ) opsys=bsdos2 ;;
9ec10b2f
DM
851 *-386bsd* ) opsys=386bsd ;;
852 *-freebsd* ) opsys=freebsd ;;
5ab52d42 853 *-nextstep* ) opsys=nextstep ;;
9ec10b2f
DM
854 ## Otherwise, we'll fall through to the generic opsys code at the bottom.
855 esac
856 ;;
857
5ac83f86
RS
858 ## Linux/68k-based GNU system
859 m68k-*-linux-gnu* )
860 machine=m68k opsys=gnu-linux
e1fd57e3
RS
861 ;;
862
9ec10b2f
DM
863 * )
864 unported=yes
865 ;;
866esac
867
868### If the code above didn't choose an operating system, just choose
869### an operating system based on the configuration name. You really
870### only want to use this when you have no idea what the right
871### operating system is; if you know what operating systems a machine
872### runs, it's cleaner to make it explicit in the case statement
873### above.
874if test x"${opsys}" = x; then
875 case "${canonical}" in
876 *-gnu* ) opsys=gnu ;;
877 *-bsd4.[01] ) opsys=bsd4-1 ;;
878 *-bsd4.2 ) opsys=bsd4-2 ;;
879 *-bsd4.3 ) opsys=bsd4-3 ;;
880 *-sysv0 | *-sysvr0 ) opsys=usg5-0 ;;
881 *-sysv2 | *-sysvr2 ) opsys=usg5-2 ;;
882 *-sysv2.2 | *-sysvr2.2 ) opsys=usg5-2-2 ;;
5ab52d42
RS
883 *-sysv3* | *-sysvr3* ) opsys=usg5-3 ;;
884 *-sysv4.1* | *-sysvr4.1* )
9ec10b2f
DM
885 NON_GNU_CPP=/usr/lib/cpp
886 opsys=usg5-4 ;;
5ab52d42 887 *-sysv4.[2-9]* | *-sysvr4.[2-9]* )
b63df577 888 if [ x$NON_GNU_CPP = x ]; then
16831d8c
RS
889 if [ -f /usr/ccs/lib/cpp ]; then
890 NON_GNU_CPP=/usr/ccs/lib/cpp
891 else
892 NON_GNU_CPP=/lib/cpp
893 fi
b63df577
RS
894 fi
895 opsys=usg5-4-2 ;;
5ab52d42 896 *-sysv4* | *-sysvr4* ) opsys=usg5-4 ;;
9ec10b2f
DM
897 * )
898 unported=yes
899 ;;
900 esac
901fi
902
30457b4f
RS
903if test "x$RANLIB" = x; then
904 RANLIB=ranlib
905fi
906
9ec10b2f
DM
907changequote([, ])dnl
908
909if test $unported = yes; then
910 AC_MSG_ERROR([Emacs hasn't been ported to \`${canonical}' systems.
911Check \`etc/MACHINES' for recognized configuration names.])
912fi
913
914machfile="m/${machine}.h"
915opsysfile="s/${opsys}.h"
916
917
918#### Choose a compiler.
919test -n "$CC" && cc_specified=yes
920
5ab52d42
RS
921# Save the value of CFLAGS that the user specified.
922SPECIFIED_CFLAGS="$CFLAGS"
923
9ec10b2f
DM
924case ${with_gcc} in
925 "yes" ) CC="gcc" GCC=yes ;;
6e0dc84a 926 "no" ) : ${CC=cc} ;;
9ec10b2f
DM
927 * ) AC_PROG_CC
928esac
929
930# On Suns, sometimes $CPP names a directory.
931if test -n "$CPP" && test -d "$CPP"; then
932 CPP=
933fi
934
935#### Some systems specify a CPP to use unless we are using GCC.
936#### Now that we know whether we are using GCC, we can decide whether
937#### to use that one.
938if test "x$NON_GNU_CPP" != x && test x$GCC != xyes && test "x$CPP" = x
939then
940 CPP="$NON_GNU_CPP"
941fi
942
943#### Some systems specify a CC to use unless we are using GCC.
944#### Now that we know whether we are using GCC, we can decide whether
945#### to use that one.
946if test "x$NON_GNU_CC" != x && test x$GCC != xyes &&
947 test x$cc_specified != xyes
948then
949 CC="$NON_GNU_CC"
950fi
951
952if test x$GCC = xyes && test "x$GCC_TEST_OPTIONS" != x
953then
954 CC="$CC $GCC_TEST_OPTIONS"
c7f493fd 955fi
9ec10b2f
DM
956
957if test x$GCC = x && test "x$NON_GCC_TEST_OPTIONS" != x
958then
959 CC="$CC $NON_GCC_TEST_OPTIONS"
c7f493fd 960fi
9ec10b2f
DM
961
962#### Some other nice autoconf tests. If you add a test here which
963#### should make an entry in src/config.h, don't forget to add an
964#### #undef clause to src/config.h.in for autoconf to modify.
965
966dnl checks for programs
6e0dc84a 967AC_PROG_LN_S
9ec10b2f
DM
968AC_PROG_CPP
969AC_PROG_INSTALL
970AC_PROG_YACC
971
3cd69289
DM
972dnl checks for Unix variants
973AC_AIX
974
9ec10b2f 975dnl checks for header files
0b9da8a9 976AC_CHECK_HEADERS(sys/select.h sys/timeb.h sys/time.h unistd.h utime.h linux/version.h)
6e0dc84a
DM
977AC_HEADER_STDC
978AC_HEADER_TIME
979AC_DECL_SYS_SIGLIST
9ec10b2f 980
3cd69289
DM
981dnl Some systems have utime.h but don't declare the struct anyplace.
982AC_MSG_CHECKING(for struct utimbuf)
983AC_TRY_COMPILE([#ifdef TIME_WITH_SYS_TIME
984#include <sys/time.h>
985#include <time.h>
986#else
987#ifdef HAVE_SYS_TIME_H
988#include <sys/time.h>
989#else
990#include <time.h>
991#endif
992#endif
993#ifdef HAVE_UTIME_H
994#include <utime.h>
995#endif], [static struct utimbuf x; x.actime = x.modtime;],
996 [AC_MSG_RESULT(yes)
997 AC_DEFINE(HAVE_STRUCT_UTIMBUF)],
998 AC_MSG_RESULT(no))
999
9ec10b2f 1000dnl checks for typedefs
6e0dc84a 1001AC_TYPE_SIGNAL
9ec10b2f 1002
3cd69289
DM
1003AC_MSG_CHECKING(for struct timeval)
1004AC_TRY_COMPILE([#ifdef TIME_WITH_SYS_TIME
1005#include <sys/time.h>
1006#include <time.h>
1007#else
1008#ifdef HAVE_SYS_TIME_H
1009#include <sys/time.h>
1010#else
1011#include <time.h>
1012#endif
1013#endif], [static struct timeval x; x.tv_sec = x.tv_usec;],
1014 [AC_MSG_RESULT(yes)
5ab52d42 1015 HAVE_TIMEVAL=yes
3cd69289 1016 AC_DEFINE(HAVE_TIMEVAL)],
2c6638cd
RS
1017 [AC_MSG_RESULT(no)
1018 HAVE_TIMEVAL=no])
3cd69289 1019
9ec10b2f
DM
1020dnl checks for structure members
1021AC_STRUCT_TM
6e0dc84a 1022AC_STRUCT_TIMEZONE
9ec10b2f
DM
1023
1024dnl checks for compiler characteristics
6e0dc84a 1025AC_C_CONST
9ec10b2f
DM
1026
1027dnl check for Make feature
6e0dc84a 1028AC_PROG_MAKE_SET
9ec10b2f
DM
1029
1030dnl checks for operating system services
6e0dc84a 1031AC_SYS_LONG_FILE_NAMES
9ec10b2f
DM
1032
1033#### Choose a window system.
9ec10b2f 1034
6e0dc84a 1035AC_PATH_X
530ce502
DM
1036if test "$no_x" = yes; then
1037 window_system=none
1038else
1039 window_system=x11
1040fi
9ec10b2f 1041
ea199426 1042if test "${x_libraries}" != NONE && test -n "${x_libraries}"; then
00ac3ffc
KH
1043 LD_SWITCH_X_SITE=-L`echo ${x_libraries} | sed -e "s/:/ -L/g"`
1044 LD_SWITCH_X_SITE_AUX=-R`echo ${x_libraries} | sed -e "s/:/ -R/g"`
ea199426
DM
1045fi
1046if test "${x_includes}" != NONE && test -n "${x_includes}"; then
cc6476f6 1047 C_SWITCH_X_SITE=-I`echo ${x_includes} | sed -e "s/:/ -I/g"`
ea199426 1048fi
9ec10b2f 1049
8dbeb353
DM
1050if test x"${x_includes}" = x; then
1051 bitmapdir=/usr/include/X11/bitmaps
3cd69289 1052else
908ff139 1053 # accumulate include directories that have X11 bitmap subdirectories
cc6476f6
KH
1054 bmd_acc="dummyval"
1055 for bmd in `echo ${x_includes} | sed -e "s/:/ /g"`; do
1056 if test -d "${bmd}/X11/bitmaps"; then
1057 bmd_acc="${bmd_acc}:${bmd}/X11/bitmaps"
1058 elif test -d "${bmd}/bitmaps"; then
1059 bmd_acc="${bmd_acc}:${bmd}/bitmaps"
1060 fi
1061 done
1062 if test ${bmd_acc} != "dummyval"; then
1063 bitmapdir=`echo ${bmd_acc} | sed -e "s/^dummyval://"`
1064 fi
3cd69289
DM
1065fi
1066
9ec10b2f
DM
1067case "${window_system}" in
1068 x11 )
1069 HAVE_X_WINDOWS=yes
1070 HAVE_X11=yes
1071 case "${with_x_toolkit}" in
c7f493fd
RM
1072 athena | lucid ) USE_X_TOOLKIT=LUCID ;;
1073 motif ) USE_X_TOOLKIT=MOTIF ;;
1074dnl open-look ) USE_X_TOOLKIT=OPEN_LOOK ;;
4be21f66
KH
1075 no ) USE_X_TOOLKIT=none ;;
1076dnl If user did not say whether to use a toolkit,
1077dnl make this decision later: use the toolkit if we have X11R5 or newer.
1078 * ) USE_X_TOOLKIT=maybe ;;
9ec10b2f
DM
1079 esac
1080 ;;
9ec10b2f
DM
1081 none )
1082 HAVE_X_WINDOWS=no
1083 HAVE_X11=no
1084 USE_X_TOOLKIT=none
1085 ;;
1086esac
9ec10b2f
DM
1087
1088### If we're using X11, we should use the X menu package.
08741ba9 1089HAVE_MENUS=no
9ec10b2f 1090case ${HAVE_X11} in
08741ba9 1091 yes ) HAVE_MENUS=yes ;;
9ec10b2f
DM
1092esac
1093
b95c8e7e
RS
1094if test "${opsys}" = "hpux9"; then
1095 case "${x_libraries}" in
1096 *X11R4* )
1097 opsysfile="s/hpux9-x11r4.h"
1098 ;;
1099 esac
1100fi
1101
1102if test "${opsys}" = "hpux9shr"; then
1103 case "${x_libraries}" in
1104 *X11R4* )
1105 opsysfile="s/hpux9shxr4.h"
1106 ;;
1107 esac
1108fi
1109
9ec10b2f
DM
1110#### Extract some information from the operating system and machine files.
1111
1112AC_CHECKING([the machine- and system-dependent files to find out
1113 - which libraries the lib-src programs will want, and
1114 - whether the GNU malloc routines are usable])
1115
1116### First figure out CFLAGS (which we use for running the compiler here)
1117### and REAL_CFLAGS (which we use for real compilation).
1118### The two are the same except on a few systems, where they are made
1119### different to work around various lossages. For example,
5ac83f86 1120### GCC 2.5 on GNU/Linux needs them to be different because it treats -g
9ec10b2f
DM
1121### as implying static linking.
1122
1123### If the CFLAGS env var is specified, we use that value
1124### instead of the default.
1125
1126### It's not important that this name contain the PID; you can't run
1127### two configures in the same directory and have anything work
1128### anyway.
1129tempcname="conftest.c"
1130
1131echo '
1132#include "'${srcdir}'/src/'${opsysfile}'"
1133#include "'${srcdir}'/src/'${machfile}'"
1134#ifndef LIBS_MACHINE
1135#define LIBS_MACHINE
1136#endif
1137#ifndef LIBS_SYSTEM
1138#define LIBS_SYSTEM
1139#endif
1140#ifndef C_SWITCH_SYSTEM
1141#define C_SWITCH_SYSTEM
1142#endif
1143#ifndef C_SWITCH_MACHINE
1144#define C_SWITCH_MACHINE
1145#endif
1146configure___ libsrc_libs=LIBS_MACHINE LIBS_SYSTEM
1147configure___ c_switch_system=C_SWITCH_SYSTEM
1148configure___ c_switch_machine=C_SWITCH_MACHINE
1149
1150#ifndef LIB_X11_LIB
1151#define LIB_X11_LIB -lX11
1152#endif
1153
1154#ifndef LIBX11_MACHINE
1155#define LIBX11_MACHINE
1156#endif
1157
1158#ifndef LIBX11_SYSTEM
1159#define LIBX11_SYSTEM
1160#endif
1161configure___ LIBX=LIB_X11_LIB LIBX11_MACHINE LIBX11_SYSTEM
1162
1163#ifdef UNEXEC
1164configure___ unexec=UNEXEC
1165#else
1166configure___ unexec=unexec.o
1167#endif
1168
1169#ifdef SYSTEM_MALLOC
1170configure___ system_malloc=yes
1171#else
1172configure___ system_malloc=no
1173#endif
1174
1175#ifndef C_DEBUG_SWITCH
1176#define C_DEBUG_SWITCH -g
1177#endif
1178
1179#ifndef C_OPTIMIZE_SWITCH
1180#define C_OPTIMIZE_SWITCH -O
1181#endif
1182
1183#ifdef THIS_IS_CONFIGURE
1184
1185/* Get the CFLAGS for tests in configure. */
1186#ifdef __GNUC__
4e90a7d5 1187configure___ CFLAGS=C_DEBUG_SWITCH C_OPTIMIZE_SWITCH '${SPECIFIED_CFLAGS}'
9ec10b2f 1188#else
4e90a7d5 1189configure___ CFLAGS=C_DEBUG_SWITCH '${SPECIFIED_CFLAGS}'
9ec10b2f
DM
1190#endif
1191
1192#else /* not THIS_IS_CONFIGURE */
1193
1194/* Get the CFLAGS for real compilation. */
1195#ifdef __GNUC__
4e90a7d5 1196configure___ REAL_CFLAGS=C_DEBUG_SWITCH C_OPTIMIZE_SWITCH '${SPECIFIED_CFLAGS}'
9ec10b2f 1197#else
4e90a7d5 1198configure___ REAL_CFLAGS=C_DEBUG_SWITCH '${SPECIFIED_CFLAGS}'
9ec10b2f
DM
1199#endif
1200
1201#endif /* not THIS_IS_CONFIGURE */
1202' > ${tempcname}
1203
1204# The value of CPP is a quoted variable reference, so we need to do this
1205# to get its actual value...
1206CPP=`eval "echo $CPP"`
1207changequote(, )dnl
1208eval `${CPP} -Isrc ${tempcname} \
1209 | sed -n -e 's/^configure___ \([^=]*=\)\(.*\)$/\1"\2"/p'`
5ab52d42 1210if test "x$SPECIFIED_CFLAGS" = x; then
9ec10b2f
DM
1211 eval `${CPP} -Isrc -DTHIS_IS_CONFIGURE ${tempcname} \
1212 | sed -n -e 's/^configure___ \([^=]*=\)\(.*\)$/\1"\2"/p'`
1213else
1214 REAL_CFLAGS="$CFLAGS"
1215fi
1216changequote([, ])dnl
1217rm ${tempcname}
1218
1219### Compute the unexec source name from the object name.
1220UNEXEC_SRC="`echo ${unexec} | sed 's/\.o/.c/'`"
1221
1222# Do the opsystem or machine files prohibit the use of the GNU malloc?
1223# Assume not, until told otherwise.
1224GNU_MALLOC=yes
1225if test "${system_malloc}" = "yes"; then
1226 GNU_MALLOC=no
1227 GNU_MALLOC_reason="
1228 (The GNU allocators don't work with this system configuration.)"
1229fi
1230
1231if test x"${REL_ALLOC}" = x; then
1232 REL_ALLOC=${GNU_MALLOC}
1233fi
1234
1235LISP_FLOAT_TYPE=yes
1236
1237
1238#### Add the libraries to LIBS and check for some functions.
1239
5ac83f86
RS
1240if test x"${OVERRIDE_CPPFLAGS}" != x; then
1241 CPPFLAGS="$(OVERRIDE_CPPFLAGS)"
1242else
1243 CPPFLAGS="$c_switch_system $c_switch_machine $CPPFLAGS"
1244fi
1245
52c76122 1246LIBS="$libsrc_libs $LIBS"
9ec10b2f
DM
1247
1248dnl If found, this defines HAVE_LIBDNET, which m/pmax.h checks,
1249dnl and also adds -ldnet to LIBS, which Autoconf uses for checks.
1250AC_CHECK_LIB(dnet, dnet_ntoa)
1251dnl This causes -lresolv to get used in subsequent tests,
1252dnl which causes failures on some systems such as HPUX 9.
1253dnl AC_CHECK_LIB(resolv, gethostbyname)
1254
1255dnl FIXME replace main with a function we actually want from this library.
1256AC_CHECK_LIB(Xbsd, main, LD_SWITCH_X_SITE="$LD_SWITCH_X_SITE -lXbsd")
1257
027dae63 1258AC_CHECK_LIB(pthreads, cma_open)
1d94ee28 1259
9ec10b2f
DM
1260AC_MSG_CHECKING(for XFree86)
1261if test -d /usr/X386/include; then
9ec10b2f 1262 HAVE_XFREE386=yes
6e0dc84a 1263 : ${C_SWITCH_X_SITE="-I/usr/X386/include"}
9ec10b2f 1264else
6e0dc84a 1265 HAVE_XFREE386=no
9ec10b2f 1266fi
6e0dc84a 1267AC_MSG_RESULT($HAVE_XFREE386)
9ec10b2f 1268
509fccc3
RS
1269# Change CFLAGS temporarily so that C_SWITCH_X_SITE gets used
1270# for the tests that follow. We set it back to REAL_CFLAGS later on.
9ec10b2f
DM
1271
1272if test "${HAVE_X11}" = "yes"; then
1273 DEFS="$C_SWITCH_X_SITE $DEFS"
96c20358
RS
1274 LDFLAGS="$LDFLAGS $LD_SWITCH_X_SITE"
1275 LIBS="$LIBX $LIBS"
9ec10b2f 1276 CFLAGS="$C_SWITCH_X_SITE $CFLAGS"
509fccc3 1277
617a496c
RS
1278 # On Solaris, arrange for LD_RUN_PATH to point to the X libraries for tests.
1279 # This is handled by LD_SWITCH_X_SITE_AUX during the real build,
1280 # but it's more convenient here to set LD_RUN_PATH
1281 # since this also works on hosts that don't understand LD_SWITCH_X_SITE_AUX.
1282 if test "${x_libraries}" != NONE && test -n "${x_libraries}"; then
1283 LD_RUN_PATH=$x_libraries${LD_RUN_PATH+:}$LD_RUN_PATH
1284 export LD_RUN_PATH
1285 fi
1286
5ac83f86 1287 if test "${opsys}" = "gnu-linux"; then
3bbe016c 1288 AC_MSG_CHECKING(whether X on GNU/Linux needs -b to link)
509fccc3
RS
1289 AC_TRY_LINK([],
1290 [XOpenDisplay ("foo");],
3bbe016c
KH
1291 [xlinux_first_failure=no],
1292 [xlinux_first_failure=yes])
1293 if test "${xlinux_first_failure}" = "yes"; then
509fccc3
RS
1294 OLD_LD_SWITCH_X_SITE="$LD_SWITCH_X_SITE"
1295 OLD_C_SWITCH_X_SITE="$C_SWITCH_X_SITE"
1296 OLD_CPPFLAGS="$CPPFLAGS"
1297 OLD_LIBS="$LIBS"
1298 LD_SWITCH_X_SITE="$LD_SWITCH_X_SITE -b i486-linuxaout"
1299 C_SWITCH_X_SITE="$C_SWITCH_X_SITE -b i486-linuxaout"
1300 CPPFLAGS="$CPPFLAGS -b i486-linuxaout"
1301 LIBS="$LIBS -b i486-linuxaout"
1302 AC_TRY_LINK([],
1303 [XOpenDisplay ("foo");],
3bbe016c
KH
1304 [xlinux_second_failure=no],
1305 [xlinux_second_failure=yes])
1306 if test "${xlinux_second_failure}" = "yes"; then
509fccc3
RS
1307 # If we get the same failure with -b, there is no use adding -b.
1308 # So take it out. This plays safe.
1309 LD_SWITCH_X_SITE="$OLD_LD_SWITCH_X_SITE"
1310 C_SWITCH_X_SITE="$OLD_C_SWITCH_X_SITE"
1311 CPPFLAGS="$OLD_CPPFLAGS"
1312 LIBS="$OLD_LIBS"
1313 AC_MSG_RESULT(no)
1314 else
1315 AC_MSG_RESULT(yes)
1316 fi
1317 else
1318 AC_MSG_RESULT(no)
1319 fi
1320 fi
1321
6e0dc84a 1322 AC_CHECK_FUNCS(XrmSetDatabase XScreenResourceString \
9ec10b2f
DM
1323XScreenNumberOfScreen XSetWMProtocols)
1324fi
1325
08741ba9 1326if test "${window_system}" = "x11"; then
4be21f66 1327 AC_MSG_CHECKING(X11 version 6)
08741ba9
RS
1328 AC_TRY_LINK([#include <X11/Xlib.h>],
1329[#if XlibSpecificationRelease < 6
1330fail;
1331#endif
fcc303f4 1332], [AC_MSG_RESULT(6 or newer)
08741ba9 1333 AC_DEFINE(HAVE_X11R6)],
fcc303f4 1334 [AC_MSG_RESULT(before 6)])
08741ba9
RS
1335fi
1336
f7894e88 1337if test "${window_system}" = "x11"; then
4be21f66
KH
1338 AC_MSG_CHECKING(X11 version 5)
1339 AC_TRY_LINK([#include <X11/Xlib.h>],
1340[#if XlibSpecificationRelease < 5
1341fail;
1342#endif
f7894e88
RS
1343], [AC_MSG_RESULT(5 or newer)
1344 HAVE_X11R5=yes
4be21f66 1345 AC_DEFINE(HAVE_X11R5)],
f7894e88
RS
1346 [
1347 HAVE_X11R5=no
1348 AC_MSG_RESULT(before 5)])
1349fi
1350
1351if test x"${USE_X_TOOLKIT}" = xmaybe; then
1352 if test x"${HAVE_X11R5}" = xyes; then
1353 AC_MSG_CHECKING(X11 version 5 with Xaw)
1354 AC_TRY_LINK([
1355 #include <X11/Intrinsic.h>
1356 #include <X11/Xaw/Simple.h>],
1357 [],
1358 [AC_MSG_RESULT(5 or newer, with Xaw; use toolkit by default)
1359 USE_X_TOOLKIT=LUCID],
1360 [AC_MSG_RESULT(before 5 or no Xaw; do not use toolkit by default)
1361 USE_X_TOOLKIT=none])
1362 else
1363 USE_X_TOOLKIT=none
1364 fi
4be21f66
KH
1365fi
1366
1367X_TOOLKIT_TYPE=$USE_X_TOOLKIT
1368
9ec10b2f
DM
1369if test "${USE_X_TOOLKIT}" != "none"; then
1370 AC_MSG_CHECKING(X11 toolkit version)
6e0dc84a 1371 AC_TRY_LINK([#include <X11/Intrinsic.h>],
9ec10b2f
DM
1372[#if XtSpecificationRelease < 6
1373fail;
1374#endif
fcc303f4
RS
1375], [AC_MSG_RESULT(6 or newer)
1376 HAVE_X11XTR6=yes
9ec10b2f 1377 AC_DEFINE(HAVE_X11XTR6)],
fcc303f4
RS
1378 [AC_MSG_RESULT(before 6)
1379 HAVE_X11XTR6=no])
6aad10e4
RS
1380
1381dnl If using toolkit, check whether libXmu.a exists.
1382dnl tranle@intellicorp.com says libXmu.a can need XtMalloc in libXt.a to link.
1383 OLDLIBS="$LIBS"
fcc303f4
RS
1384 if test x$HAVE_X11XTR6 = xyes; then
1385 LIBS="-lXt -lSM -lICE $LIBS"
1386 else
1387 LIBS="-lXt $LIBS"
1388 fi
6aad10e4 1389 AC_CHECK_LIB(Xmu, XmuConvertStandardSelection)
6e502e37 1390 LIBS="$OLDLIBS"
9ec10b2f
DM
1391fi
1392
1393# If netdb.h doesn't declare h_errno, we must declare it by hand.
b212bc89 1394AC_MSG_CHECKING(whether netdb declares h_errno)
6e0dc84a 1395AC_TRY_LINK([#include <netdb.h>],
01345308
DM
1396 [return h_errno;],
1397 [AC_MSG_RESULT(yes)
1398 AC_DEFINE(HAVE_H_ERRNO)],
1399 [AC_MSG_RESULT(no)])
9ec10b2f 1400
6e0dc84a 1401AC_FUNC_ALLOCA
9ec10b2f 1402
f6e8adea 1403# fmod, logb, and frexp are found in -lm on most systems.
e468fb38 1404# On HPUX 9.01, -lm does not contain logb, so check for sqrt.
e6fd9047 1405AC_CHECK_LIB(m, sqrt)
e6fd9047 1406
6e0dc84a 1407AC_CHECK_FUNCS(gettimeofday gethostname dup2 rename closedir mkdir rmdir \
5a3cc65b 1408random lrand48 bcopy bcmp logb frexp fmod ftime res_init setsid \
309daad2 1409strerror fpathconf select mktime euidaccess getpagesize tzset setlocale)
16831d8c
RS
1410
1411# Check this now, so that we will NOT find the above functions in ncurses.
1412# That is because we have not set up to link ncurses in lib-src.
1413# It's better to believe a function is not available
1414# than to expect to find it in ncurses.
1415AC_CHECK_LIB(ncurses, tparm)
0c565a0a
RS
1416
1417AC_MSG_CHECKING(whether localtime caches TZ)
1418AC_CACHE_VAL(emacs_cv_localtime_cache,
fcc303f4 1419[if test x$ac_cv_func_tzset = xyes; then
0c565a0a
RS
1420AC_TRY_RUN([#include <time.h>
1421#if STDC_HEADERS
1422# include <stdlib.h>
1423#endif
22cc077c
RS
1424extern char **environ;
1425unset_TZ ()
1426{
1427 char **from, **to;
1428 for (to = from = environ; (*to = *from); from++)
1429 if (! (to[0][0] == 'T' && to[0][1] == 'Z' && to[0][2] == '='))
1430 to++;
1431}
0c565a0a
RS
1432main()
1433{
1434 time_t now = time ((time_t *) 0);
22cc077c 1435 int hour_GMT0, hour_unset;
0c565a0a
RS
1436 if (putenv ("TZ=GMT0") != 0)
1437 exit (1);
22cc077c
RS
1438 hour_GMT0 = localtime (&now)->tm_hour;
1439 unset_TZ ();
1440 hour_unset = localtime (&now)->tm_hour;
0c565a0a
RS
1441 if (putenv ("TZ=PST8") != 0)
1442 exit (1);
22cc077c
RS
1443 if (localtime (&now)->tm_hour == hour_GMT0)
1444 exit (1);
1445 unset_TZ ();
1446 if (localtime (&now)->tm_hour != hour_unset)
1447 exit (1);
1448 exit (0);
0c565a0a
RS
1449}], emacs_cv_localtime_cache=no, emacs_cv_localtime_cache=yes,
1450[# If we have tzset, assume the worst when cross-compiling.
1451emacs_cv_localtime_cache=yes])
1452else
1453 # If we lack tzset, report that localtime does not cache TZ,
1454 # since we can't invalidate the cache if we don't have tzset.
1455 emacs_cv_localtime_cache=no
1456fi])dnl
1457AC_MSG_RESULT($emacs_cv_localtime_cache)
1458if test $emacs_cv_localtime_cache = yes; then
1459 AC_DEFINE(LOCALTIME_CACHE)
1460fi
9ec10b2f 1461
3d68df05 1462if test "x$HAVE_TIMEVAL" = xyes; then
5ab52d42
RS
1463AC_MSG_CHECKING(whether gettimeofday can't accept two arguments)
1464AC_TRY_LINK([
1465#ifdef TIME_WITH_SYS_TIME
1466#include <sys/time.h>
1467#include <time.h>
1468#else
1469#ifdef HAVE_SYS_TIME_H
1470#include <sys/time.h>
1471#else
1472#include <time.h>
1473#endif
1474#endif
1475 ],
1476 [
1477 struct timeval time;
1478 struct timezone dummy;
1479 gettimeofday (&time, &dummy);
1480],
1481 [AC_MSG_RESULT(no)],
1482 [AC_MSG_RESULT(yes)
1483 AC_DEFINE(GETTIMEOFDAY_ONE_ARGUMENT)])
1484fi
1485
9ec10b2f 1486ok_so_far=yes
6e0dc84a 1487AC_CHECK_FUNC(socket, , ok_so_far=no)
9ec10b2f 1488if test $ok_so_far = yes; then
6e0dc84a 1489 AC_CHECK_HEADER(netinet/in.h, , ok_so_far=no)
9ec10b2f
DM
1490fi
1491if test $ok_so_far = yes; then
6e0dc84a 1492 AC_CHECK_HEADER(arpa/inet.h, , ok_so_far=no)
9ec10b2f
DM
1493fi
1494if test $ok_so_far = yes; then
1495 AC_DEFINE(HAVE_INET_SOCKETS)
1496fi
1497
7bbbba31
DM
1498if test -f /usr/lpp/X11/bin/smt.exp; then
1499 AC_DEFINE(HAVE_AIX_SMT_EXP)
1500fi
1501
9ec10b2f
DM
1502# Set up the CFLAGS for real compilation, so we can substitute it.
1503CFLAGS="$REAL_CFLAGS"
1504
1505changequote(, )dnl
1506#### Find out which version of Emacs this is.
1507version=`grep 'defconst[ ]*emacs-version' ${srcdir}/lisp/version.el \
1508 | sed -e 's/^[^"]*"\([^"]*\)".*$/\1/'`
1509changequote([, ])dnl
1510if test x"${version}" = x; then
1511 AC_MSG_ERROR(can't find current emacs version in \`${srcdir}/lisp/version.el'.)
1512fi
1513
9ec10b2f
DM
1514### Specify what sort of things we'll be editing into Makefile and config.h.
1515### Use configuration here uncanonicalized to avoid exceeding size limits.
1516AC_SUBST(version)
1517AC_SUBST(configuration)
3cd69289 1518AC_SUBST(canonical)
9ec10b2f
DM
1519AC_SUBST(srcdir)
1520AC_SUBST(prefix)
1521AC_SUBST(exec_prefix)
1522AC_SUBST(bindir)
1523AC_SUBST(datadir)
3cd69289
DM
1524AC_SUBST(sharedstatedir)
1525AC_SUBST(libexecdir)
9ec10b2f
DM
1526AC_SUBST(mandir)
1527AC_SUBST(infodir)
1528AC_SUBST(lispdir)
1529AC_SUBST(locallisppath)
1530AC_SUBST(lisppath)
1531AC_SUBST(etcdir)
1532AC_SUBST(lockdir)
1533AC_SUBST(archlibdir)
1534AC_SUBST(docdir)
3cd69289 1535AC_SUBST(bitmapdir)
9ec10b2f
DM
1536AC_SUBST(c_switch_system)
1537AC_SUBST(c_switch_machine)
1538AC_SUBST(LD_SWITCH_X_SITE)
1539AC_SUBST(LD_SWITCH_X_SITE_AUX)
1540AC_SUBST(C_SWITCH_X_SITE)
1541AC_SUBST(CFLAGS)
1542AC_SUBST(X_TOOLKIT_TYPE)
1543AC_SUBST(machfile)
1544AC_SUBST(opsysfile)
30457b4f 1545AC_SUBST(RANLIB)
9ec10b2f 1546
3cd69289 1547AC_DEFINE_UNQUOTED(EMACS_CONFIGURATION, "${canonical}")
6d1da0d1 1548AC_DEFINE_UNQUOTED(EMACS_CONFIG_OPTIONS, "${ac_configure_args}")
9ec10b2f
DM
1549AC_DEFINE_UNQUOTED(config_machfile, "${machfile}")
1550AC_DEFINE_UNQUOTED(config_opsysfile, "${opsysfile}")
1551AC_DEFINE_UNQUOTED(LD_SWITCH_X_SITE, ${LD_SWITCH_X_SITE})
1552AC_DEFINE_UNQUOTED(LD_SWITCH_X_SITE_AUX, ${LD_SWITCH_X_SITE_AUX})
1553AC_DEFINE_UNQUOTED(C_SWITCH_X_SITE, ${C_SWITCH_X_SITE})
1554AC_DEFINE_UNQUOTED(UNEXEC_SRC, ${UNEXEC_SRC})
1555
1556if test "${HAVE_X_WINDOWS}" = "yes" ; then
1557 AC_DEFINE(HAVE_X_WINDOWS)
1558fi
1559if test "${USE_X_TOOLKIT}" != "none" ; then
1560 AC_DEFINE(USE_X_TOOLKIT)
1561fi
1562if test "${HAVE_X11}" = "yes" ; then
1563 AC_DEFINE(HAVE_X11)
1564fi
1565if test "${HAVE_XFREE386}" = "yes" ; then
1566 AC_DEFINE(HAVE_XFREE386)
1567fi
08741ba9
RS
1568if test "${HAVE_MENUS}" = "yes" ; then
1569 AC_DEFINE(HAVE_MENUS)
9ec10b2f
DM
1570fi
1571if test "${GNU_MALLOC}" = "yes" ; then
1572 AC_DEFINE(GNU_MALLOC)
1573fi
1574if test "${REL_ALLOC}" = "yes" ; then
1575 AC_DEFINE(REL_ALLOC)
1576fi
1577if test "${LISP_FLOAT_TYPE}" = "yes" ; then
1578 AC_DEFINE(LISP_FLOAT_TYPE)
1579fi
1580
9ec10b2f
DM
1581#### Report on what we decided to do.
1582echo "
9ec10b2f
DM
1583Configured for \`${canonical}'.
1584
1585 Where should the build process find the source code? ${srcdir}
1586 What operating system and machine description files should Emacs use?
1587 \`${opsysfile}' and \`${machfile}'
1588 What compiler should emacs be built with? ${CC} ${CFLAGS}
1589 Should Emacs use the GNU version of malloc? ${GNU_MALLOC}${GNU_MALLOC_reason}
1590 Should Emacs use the relocating allocator for buffers? ${REL_ALLOC}
1591 What window system should Emacs use? ${window_system}
509fccc3
RS
1592 What toolkit should Emacs use? ${USE_X_TOOLKIT}"
1593
1594if test -n "${x_includes}"; then
1595echo " Where do we find X Windows header files? ${x_includes}"
1596else
1597echo " Where do we find X Windows header files? Standard dirs"
1598fi
1599if test -n "${x_libraries}"; then
1600echo " Where do we find X Windows libraries? ${x_libraries}"
1601else
1602echo " Where do we find X Windows libraries? Standard dirs"
1603fi
9ec10b2f 1604
509fccc3 1605echo
9ec10b2f
DM
1606
1607# Remove any trailing slashes in these variables.
1608changequote(, )dnl
1609test "${prefix}" != NONE &&
1610 prefix=`echo "${prefix}" | sed 's,\([^/]\)/*$,\1,'`
1611test "${exec_prefix}" != NONE &&
1612 exec_prefix=`echo "${exec_prefix}" | sed 's,\([^/]\)/*$,\1,'`
1613changequote([, ])dnl
1614
5f8c8f00
RS
1615AC_OUTPUT(Makefile lib-src/Makefile.c:lib-src/Makefile.in oldXMenu/Makefile \
1616 man/Makefile lwlib/Makefile src/Makefile.c:src/Makefile.in, [
7bbbba31 1617
b63df577 1618### Make the necessary directories, if they don't exist.
b3947967
DM
1619for dir in cpp etc ; do
1620 test -d ${dir} || mkdir ${dir}
9ec10b2f
DM
1621done
1622
5f8c8f00
RS
1623# Build src/Makefile from ${srcdir}/src/Makefile.c
1624# and lib-src/Makefile from ${srcdir}/lib-src/Makefile.c
1625# This must be done after src/config.h is built, since we rely on that file.
9ec10b2f 1626
2d73167a 1627changequote(, )dnl The horror, the horror.
9ec10b2f
DM
1628# Now get this: Some word that is part of the ${srcdir} directory name
1629# or the ${configuration} value might, just might, happen to be an
1630# identifier like `sun4' or `i386' or something, and be predefined by
1631# the C preprocessor to some helpful value like 1, or maybe the empty
1632# string. Needless to say consequent macro substitutions are less
1633# than conducive to the makefile finding the correct directory.
1634undefs="`echo $top_srcdir $configuration $canonical |
1635sed -e 's/[^a-zA-Z0-9_]/ /g' -e 's/^/ /' -e 's/ *$//' \
1636 -e 's/ */ -U/g' -e 's/-U[0-9][^ ]*//g' \
1637`"
2d73167a 1638changequote([, ])dnl
9ec10b2f
DM
1639
1640echo creating lib-src/Makefile
1641( cd lib-src
1642 rm -f junk.c junk1.c junk2.c
1643 sed -e '/start of cpp stuff/q' \
5f8c8f00 1644 < Makefile.c > junk1.c
9ec10b2f
DM
1645 sed -e '1,/start of cpp stuff/d'\
1646 -e 's@/\*\*/#\(.*\)$@/* \1 */@' \
5f8c8f00 1647 < Makefile.c > junk.c
9ec10b2f
DM
1648 $CPP $undefs -I. -I$top_srcdir/src $CPPFLAGS junk.c | \
1649 sed -e 's/^ / /' -e '/^#/d' -e '/^[ \f]*$/d' > junk2.c
1650 cat junk1.c junk2.c > Makefile.new
1651 rm -f junk.c junk1.c junk2.c
1652 chmod 444 Makefile.new
1653 mv -f Makefile.new Makefile
1654)
1655
1656echo creating src/Makefile
1657( cd src
1658 rm -f junk.c junk1.c junk2.c
1659 sed -e '/start of cpp stuff/q' \
5f8c8f00 1660 < Makefile.c > junk1.c
9ec10b2f
DM
1661 sed -e '1,/start of cpp stuff/d'\
1662 -e 's@/\*\*/#\(.*\)$@/* \1 */@' \
5f8c8f00 1663 < Makefile.c > junk.c
9ec10b2f
DM
1664 $CPP $undefs -I. -I$top_srcdir/src $CPPFLAGS junk.c | \
1665 sed -e 's/^ / /' -e '/^#/d' -e '/^[ \f]*$/d' > junk2.c
1666 cat junk1.c junk2.c > Makefile.new
1667 rm -f junk.c junk1.c junk2.c
1668 chmod 444 Makefile.new
1669 mv -f Makefile.new Makefile
1670)
8b66759a
DM
1671
1672if test ! -f src/.gdbinit && test -f $top_srcdir/src/.gdbinit; then
1673 echo creating src/.gdbinit
1674 echo source $top_srcdir/src/.gdbinit > src/.gdbinit
1675fi
1676
ea50c238 1677], [CPP="$CPP" CPPFLAGS="$CPPFLAGS"])