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