]> code.delx.au - gnu-emacs/blob - configure1.in
New config hppa*-hp-hpux9shr*.
[gnu-emacs] / configure1.in
1 dnl This is an autoconf script.
2 dnl To rebuild the `configure' script from this, execute the command
3 dnl autoconf
4 dnl in the directory containing this script. You must have autoconf
5 dnl version 1.9 or later.
6 dnl
7 dnl The following text appears in the resulting `configure' script,
8 dnl explaining how to rebuild it.
9 [#!/bin/sh
10 #### Configuration script for GNU Emacs
11 #### Copyright (C) 1992, 1994 Free Software Foundation, Inc.
12
13 ### Don't edit this script!
14 ### This script was automatically generated by the `autoconf' program
15 ### from the file `./configure.in'.
16 ### To rebuild it, execute the command
17 ### autoconf
18 ### in the this directory. You must have autoconf version 1.7 or later.
19
20 ### This file is part of GNU Emacs.
21
22 ### GNU Emacs is free software; you can redistribute it and/or modify
23 ### it under the terms of the GNU General Public License as published by
24 ### the Free Software Foundation; either version 2, or (at your option)
25 ### any later version.
26
27 ### GNU Emacs is distributed in the hope that it will be useful,
28 ### but WITHOUT ANY WARRANTY; without even the implied warranty of
29 ### MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
30 ### GNU General Public License for more details.
31
32 ### You should have received a copy of the GNU General Public License
33 ### along with GNU Emacs; see the file COPYING. If not, write to
34 ### the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
35
36 ### Since Emacs has configuration requirements that autoconf can't
37 ### meet, this file is an unholy marriage of custom-baked
38 ### configuration code and autoconf macros.
39 ###
40 ### We use the m4 quoting characters [ ] (as established by the
41 ### autoconf system) to include large sections of raw sewage - Oops, I
42 ### mean, shell code - in the final configuration script.
43 ###
44 ### Usage: configure config_name
45 ###
46 ### If configure succeeds, it leaves its status in config.status.
47 ### If configure fails after disturbing the status quo,
48 ### config.status is removed.
49
50 ### Remove any more than one leading "." element from the path name.
51 ### If we don't remove them, then another "./" will be prepended to
52 ### the file name each time we use config.status, and the program name
53 ### will get larger and larger. This wouldn't be a problem, except
54 ### that since progname gets recorded in all the Makefiles this script
55 ### produces, move-if-change thinks they're different when they're
56 ### not.
57 ###
58 ### It would be nice if we could put the ./ in a \( \) group and then
59 ### apply the * operator to that, so we remove as many leading ./././'s
60 ### as are present, but some seds (like Ultrix's sed) don't allow you to
61 ### apply * to a \( \) group. Bleah.
62 progname="`echo $0 | sed 's:^\./\./:\./:'`"
63
64
65 ### Establish some default values.
66 run_in_place=
67 single_tree=
68 prefix='/usr/local'
69 exec_prefix='${prefix}'
70 bindir='${exec_prefix}/bin'
71 datadir='${prefix}/lib'
72 statedir='${prefix}/lib'
73 libdir='${exec_prefix}/lib'
74 mandir='${prefix}/man/man1'
75 infodir='${prefix}/info'
76 lispdir='${datadir}/emacs/${version}/lisp'
77 locallisppath='${datadir}/emacs/site-lisp'
78 lisppath='${locallisppath}:${lispdir}'
79 etcdir='${datadir}/emacs/${version}/etc'
80 lockdir='${statedir}/emacs/lock'
81 archlibdir='${libdir}/emacs/${version}/${configuration}'
82 docdir='${datadir}/emacs/${version}/etc'
83
84 # On Sun systems, people sometimes set up the variable CPP
85 # with a value that is a directory, not an executable at all.
86 # Detect that case, and ignore that value.
87 if [ "x$CPP" != x ] && [ -d "$CPP" ];
88 then
89 CPP=
90 fi
91
92 # We cannot use this variable in the case statement below, because many
93 # /bin/sh's have broken semantics for "case". Unfortunately, you must
94 # actually edit the clause itself.
95 # path_options="prefix | exec_prefix | bindir | libdir | etcdir | datadir"
96 # path_options="$path_options | archlibdir | statedir | mandir | infodir"
97 # path_options="$path_options | lispdir | lockdir | lisppath | locallisppath"
98
99 #### Usage messages.
100
101 short_usage="Usage: ${progname} CONFIGURATION [-OPTION[=VALUE] ...]
102
103 Set compilation and installation parameters for GNU Emacs, and report.
104 CONFIGURATION specifies the machine and operating system to build for.
105 --with-x Support the X Window System.
106 --with-x=no Don't support X.
107 --with-x-toolkit Use an X toolkit.
108 --with-x-toolkit=no Don't use an X toolkit.
109 --with-gcc Use GCC to compile Emacs.
110 --with-gcc=no Don't use GCC to compile Emacs.
111 --x-includes=DIR Search for X header files in DIR.
112 --x-libraries=DIR Search for X libraries in DIR.
113 --run-in-place Use libraries and data files directly out of the
114 source tree.
115 --single-tree=DIR Has the effect of creating a directory tree at DIR
116 which looks like:
117 .../DIR/bin/CONFIGNAME (emacs, etags, etc.)
118 .../DIR/bin/CONFIGNAME/etc (movemail, etc.)
119 .../DIR/common/lisp (emacs' lisp files)
120 .../DIR/common/site-lisp (local lisp files)
121 .../DIR/common/lib (DOC, TUTORIAL, etc.)
122 .../DIR/common/lock (lockfiles)
123 --srcdir=DIR Look for the Emacs source files in DIR.
124 --prefix=DIR Install files below DIR. Defaults to \`${prefix}'.
125
126 You may also specify any of the \`path' variables found in Makefile.in,
127 including --bindir, --libdir, --etcdir, --infodir, and so on. This allows
128 you to override a single default location when configuring.
129
130 If successful, ${progname} leaves its status in config.status. If
131 unsuccessful after disturbing the status quo, it removes config.status."
132
133
134 #### Option processing.
135
136 ### Record all the arguments, so we can save them in config.status.
137 arguments="$@"
138
139 ### Shell Magic: Quote the quoted arguments in ARGUMENTS. At a later date,
140 ### in order to get the arguments back in $@, we have to do an
141 ### `eval set x "$quoted_arguments"; shift'.
142 quoted_arguments=
143 for i in "$@"; do
144 quoted_arguments="$quoted_arguments '$i'"
145 done
146
147 ### Don't use shift -- that destroys the argument list, which autoconf needs
148 ### to produce config.status. It turns out that "set - ${arguments}" doesn't
149 ### work portably.
150 ### However, it also turns out that many shells cannot expand ${10} at all.
151 ### So using an index variable doesn't work either. It is possible to use
152 ### some shell magic to make 'set x "$arguments"; shift' work portably.
153 while [ $# != 0 ]; do
154 arg="$1"; shift
155 case "${arg}" in
156
157 ## Anything starting with a hyphen we assume is an option.
158 -* )
159 ## Separate the switch name from the value it's being given.
160 case "${arg}" in
161 -*=*)
162 opt=`echo ${arg} | sed 's:^-*\([^=]*\)=.*$:\1:'`
163 val=`echo ${arg} | sed 's:^-*[^=]*=\(.*\)$:\1:'`
164 valomitted=no
165 ;;
166 -*)
167 ## If FOO is a boolean argument, --FOO is equivalent to
168 ## --FOO=yes. Otherwise, the value comes from the next
169 ## argument - see below.
170 opt=`echo ${arg} | sed 's:^-*\(.*\)$:\1:'`
171 val="yes"
172 valomitted=yes
173 ;;
174 esac
175
176 ## Change `-' in the option name to `_'.
177 optname="${opt}"
178 opt="`echo ${opt} | tr - _`"
179
180 ## Process the option.
181 case "${opt}" in
182
183 ## Has the user specified which window systems they want to support?
184 "with_x" | "with_x11" | "with_x10" )
185 ## Make sure the value given was either "yes" or "no".
186 case "${val}" in
187 y | ye | yes ) val=yes ;;
188 n | no ) val=no ;;
189 * )
190 (echo "${progname}: the \`--${optname}' option is supposed to have a boolean value.
191 Set it to either \`yes' or \`no'."
192 echo "${short_usage}") >&2
193 exit 1
194 ;;
195 esac
196 eval "${opt}=\"${val}\""
197 ;;
198
199 ## Has the user specified which toolkit they want to support?
200 "with_x_toolkit" )
201 case "${val}" in
202 y | ye | yes ) val=athena ;;
203 n | no ) val=no ;;
204 l | lu | luc | luci | lucid ) val=lucid ;;
205 a | at | ath | athe | athena ) val=athena ;;
206 # These don't currently work.
207 # m | mo | mot | moti | motif ) val=motif ;;
208 # o | op | ope | open | open- | open-l | open-lo \
209 # | open-loo | open-look ) val=open-look ;;
210 * )
211 (
212 #echo "${progname}: the \`--${optname}' option is supposed to have a value
213 #which is \`yes', \`no', \`lucid', \`athena', \`motif' or \`open-look'."
214 echo "${progname}: the \`--${optname}' option is supposed to have a value
215 which is \`yes', \`no', \`lucid', or \`athena'.
216 Currently, \`yes', \`athena' and \`lucid' are synonyms."
217 echo "${short_usage}") >&2
218 exit 1
219 ;;
220 esac
221 eval "${opt}=\"${val}\""
222 ;;
223
224 ## Has the user specified whether or not they want GCC?
225 "with_gcc" | "with_gnu_cc" )
226 ## Make sure the value given was either "yes" or "no".
227 case "${val}" in
228 y | ye | yes ) val=yes ;;
229 n | no ) val=no ;;
230 * )
231 (echo "${progname}: the \`--${optname}' option is supposed to have a boolean value.
232 Set it to either \`yes' or \`no'."
233 echo "${short_usage}") >&2
234 exit 1
235 ;;
236 esac
237 eval "${opt}=\"${val}\""
238 ;;
239
240 ## Has the user specified a source directory?
241 "srcdir" )
242 ## If the value was omitted, get it from the next argument.
243 if [ "${valomitted}" = "yes" ]; then
244 ## Get the next argument from the argument list, if there is one.
245 if [ $# = 0 ]; then
246 (echo "${progname}: You must give a value for the \`--${optname}' option, as in
247 \`--${optname}=FOO'."
248 echo "${short_usage}") >&2
249 exit 1
250 fi
251 val="$1"; shift
252 fi
253 srcdir="${val}"
254 ;;
255
256 ## Has the user tried to tell us where the X files are?
257 ## I think these are dopey, but no less than three alpha
258 ## testers, at large sites, have said they have their X files
259 ## installed in odd places.
260 "x_includes" )
261 ## If the value was omitted, get it from the next argument.
262 if [ "${valomitted}" = "yes" ]; then
263 ## Get the next argument from the argument list, if there is one.
264 if [ $# = 0 ]; then
265 (echo "${progname}: You must give a value for the \`--${optname}' option, as in
266 \`--${optname}=/usr/local/X11/include'."
267 echo "${short_usage}") >&2
268 exit 1
269 fi
270 val="$1"; shift
271 fi
272 x_includes="${val}"
273 ;;
274 "x_libraries" )
275 ## If the value was omitted, get it from the next argument.
276 if [ "${valomitted}" = "yes" ]; then
277 ## Get the next argument from the argument list, if there is one.
278 if [ $# = 0 ]; then
279 (echo "${progname}: You must give a value for the \`--${optname}' option, as in
280 \`--${optname}=/usr/local/X11/lib'."
281 echo "${short_usage}") >&2
282 exit 1
283 fi
284 val="$1"; shift
285 fi
286 x_libraries="${val}"
287 ;;
288
289 ## Should this use the "development" file organization?
290 "run_in_place" )
291 single_tree=
292 run_in_place=1
293 ;;
294
295 ## Should this use the "single tree" file organization?
296 "single_tree" )
297 run_in_place=
298 single_tree=1
299 ;;
300
301 ## Has the user specified one of the path options?
302 prefix | exec_prefix | bindir | libdir | etcdir | datadir | \
303 archlibdir | statedir | mandir | infodir | lispdir | lockdir | \
304 lisppath | locallisppath | docdir )
305 ## If the value was omitted, get it from the next argument.
306 if [ "${valomitted}" = "yes" ]; then
307 if [ $# = 0 ]; then
308 (echo \
309 "$progname: You must give a value for the \`--${optname}' option,";
310 echo \
311 "as in \`--${optname}=`eval echo '$'$optname`.'"
312 echo "$short_usage") >&2
313 exit 1
314 fi
315 val="$1"; shift
316 fi
317 eval "${opt}=\"${val}\""
318 eval "${opt}_specified=1"
319 ;;
320
321 ## Verbose flag, tested by autoconf macros.
322 "verbose" )
323 verbose=yes
324 ;;
325
326 ## Has the user asked for some help?
327 "usage" | "help" )
328 if [ "x$PAGER" = x ]
329 then
330 echo "${short_usage}" | more
331 else
332 echo "${short_usage}" | $PAGER
333 fi
334 exit
335 ;;
336
337 ## We ignore all other options silently.
338 esac
339 ;;
340
341 ## Anything not starting with a hyphen we assume is a
342 ## configuration name.
343 *)
344 configuration=${arg}
345 ;;
346
347 esac
348 done
349
350 ### Get the arguments back. See the diatribe on Shell Magic above.
351 eval set x "$quoted_arguments"; shift
352
353 if [ "${configuration}" = "" ]; then
354 echo '- You did not tell me what kind of host system you want to configure.
355 - I will attempt to guess the kind of system this is.' 1>&2
356 guesssys=`echo ${progname} | sed 's/configure$/config.guess/'`
357 if configuration=`${guesssys}` ; then
358 echo "- Looks like this is a ${configuration}" 1>&2
359 else
360 echo '- Failed to guess the system type. You need to tell me.' 1>&2
361 echo "${short_usage}" >&2
362 exit 1
363 fi
364 fi
365
366 #### Decide where the source is.
367 case "${srcdir}" in
368
369 ## If it's not specified, see if `.' or `..' might work.
370 "" )
371 confdir=`echo $0 | sed 's|//|/|' | sed 's|/[^/]*$||'`
372 if [ -f $confdir/src/lisp.h -a -f $confdir/lisp/version.el ]; then
373 srcdir="${confdir}"
374 else
375 if [ -f "./src/lisp.h" -a -f "./lisp/version.el" ]; then
376 srcdir='.'
377 else
378 if [ -f "../src/lisp.h" -a -f "../lisp/version.el" ]; then
379 srcdir='..'
380 else
381 (echo "\
382 ${progname}: Neither the current directory nor its parent seem to
383 contain the Emacs sources. If you do not want to build Emacs in its
384 source tree, you should run \`${progname}' in the directory in which
385 you wish to build Emacs, using its \`--srcdir' option to say where the
386 sources may be found."
387 echo "${short_usage}") >&2
388 exit 1
389 fi
390 fi
391 fi
392 ;;
393
394 ## Otherwise, check if the directory they specified is okay.
395 * )
396 if [ ! -d "${srcdir}" -o ! -f "${srcdir}/src/lisp.h" -o ! -f "${srcdir}/lisp/version.el" ]; then
397 (echo "\
398 ${progname}: The directory specified with the \`--srcdir' option,
399 \`${srcdir}', doesn't seem to contain the Emacs sources. You should
400 either run the \`${progname}' script at the top of the Emacs source
401 tree, or use the \`--srcdir' option to specify where the Emacs sources
402 are."
403 echo "${short_usage}") >&2
404 exit 1
405 fi
406 ;;
407 esac
408
409 #### Make srcdir absolute, if it isn't already. It's important to
410 #### avoid running the path through pwd unnecessary, since pwd can
411 #### give you automounter prefixes, which can go away.
412 case "${srcdir}" in
413 /* ) ;;
414 . )
415 ## We may be able to use the $PWD environment variable to make this
416 ## absolute. But sometimes PWD is inaccurate.
417 if [ "${PWD}" != "" ] && [ "`(cd ${PWD} ; sh -c pwd)`" = "`pwd`" ] ; then
418 srcdir="$PWD"
419 else
420 srcdir="`(cd ${srcdir}; pwd)`"
421 fi
422 ;;
423 * ) srcdir="`(cd ${srcdir}; pwd)`" ;;
424 esac
425
426 #### Check if the source directory already has a configured system in it.
427 if [ `pwd` != `(cd ${srcdir} && pwd)` ] \
428 && [ -f "${srcdir}/src/config.h" ] ; then
429 (echo "${progname}: WARNING: The directory tree \`${srcdir}' is being used"
430 echo " as a build directory right now; it has been configured in its own"
431 echo " right. To configure in another directory as well, you MUST"
432 echo " use GNU make. If you do not have GNU make, then you must"
433 echo " now do \`make distclean' in ${srcdir},"
434 echo " and then run ${progname} again.") >&2
435 extrasub='/^VPATH[ ]*=/c\
436 vpath %.c $(srcdir)\
437 vpath %.h $(srcdir)\
438 vpath %.y $(srcdir)\
439 vpath %.l $(srcdir)\
440 vpath %.s $(srcdir)\
441 vpath %.in $(srcdir)'
442 fi
443
444 ### Make the necessary directories, if they don't exist.
445 for dir in ./src ./lib-src ./cpp ./oldXMenu ./lwlib ./etc ; do
446 if [ ! -d ${dir} ]; then
447 mkdir ${dir}
448 fi
449 done
450
451 #### Given the configuration name, set machfile and opsysfile to the
452 #### names of the m/*.h and s/*.h files we should use.
453
454 ### Canonicalize the configuration name.
455 echo "Checking the configuration name."
456 if canonical=`${srcdir}/config.sub "${configuration}"` ; then : ; else
457 exit $?
458 fi
459
460 ### If you add support for a new configuration, add code to this
461 ### switch statement to recognize your configuration name and select
462 ### the appropriate operating system and machine description files.
463
464 ### You would hope that you could choose an m/*.h file pretty much
465 ### based on the machine portion of the configuration name, and an s-
466 ### file based on the operating system portion. However, it turns out
467 ### that each m/*.h file is pretty manufacturer-specific - for
468 ### example, apollo.h, hp9000s300.h, mega68k, news.h, and tad68k are
469 ### all 68000 machines; mips.h, pmax.h, and news-risc are all MIPS
470 ### machines. So we basically have to have a special case for each
471 ### configuration name.
472 ###
473 ### As far as handling version numbers on operating systems is
474 ### concerned, make sure things will fail in a fixable way. If
475 ### /etc/MACHINES doesn't say anything about version numbers, be
476 ### prepared to handle anything reasonably. If version numbers
477 ### matter, be sure /etc/MACHINES says something about it.
478 ###
479 ### Eric Raymond says we should accept strings like "sysvr4" to mean
480 ### "System V Release 4"; he writes, "The old convention encouraged
481 ### confusion between `system' and `release' levels'."
482
483 machine='' opsys='' unported='false'
484 case "${canonical}" in
485
486 ## Alliant machines
487 ## Strictly speaking, we need the version of the alliant operating
488 ## system to choose the right machine file, but currently the
489 ## configuration name doesn't tell us enough to choose the right
490 ## one; we need to give alliants their own operating system name to
491 ## do this right. When someone cares, they can help us.
492 fx80-alliant-* )
493 machine=alliant4 opsys=bsd4-2
494 ;;
495 i860-alliant-* )
496 machine=alliant-2800 opsys=bsd4-3
497 ;;
498
499 ## Altos 3068
500 m68*-altos-sysv* )
501 machine=altos opsys=usg5-2
502 ;;
503
504 ## Amdahl UTS
505 580-amdahl-sysv* )
506 machine=amdahl opsys=usg5-2-2
507 ;;
508
509 ## Appallings - I mean, Apollos - running Domain
510 m68*-apollo* )
511 machine=apollo opsys=bsd4-2
512 ;;
513
514 ## AT&T 3b2, 3b5, 3b15, 3b20
515 we32k-att-sysv* )
516 machine=att3b opsys=usg5-2-2
517 ;;
518
519 ## AT&T 3b1 - The Mighty Unix PC!
520 m68*-att-sysv* )
521 machine=7300 opsys=usg5-2-2
522 ;;
523
524 ## Bull dpx20
525 rs6000-bull-bosx* )
526 machine=ibmrs6000 opsys=aix3-2
527 ;;
528
529 ## Bull dpx2
530 m68*-bull-sysv3* )
531 machine=dpx2 opsys=usg5-3
532 ;;
533
534 ## Bull sps7
535 m68*-bull-sysv2* )
536 machine=sps7 opsys=usg5-2
537 ;;
538
539 ## CCI 5/32, 6/32 -- see "Tahoe".
540
541 ## Celerity
542 ## I don't know what configuration name to use for this; config.sub
543 ## doesn't seem to know anything about it. Hey, Celerity users, get
544 ## in touch with us!
545 celerity-celerity-bsd* )
546 machine=celerity opsys=bsd4-2
547 ;;
548
549 ## Clipper
550 ## What operating systems does this chip run that Emacs has been
551 ## tested on?
552 clipper-* )
553 machine=clipper
554 ## We'll use the catch-all code at the bottom to guess the
555 ## operating system.
556 ;;
557
558 ## Convex
559 *-convex-bsd* )
560 machine=convex opsys=bsd4-3
561 ;;
562
563 ## Cubix QBx/386
564 i386-cubix-sysv* )
565 machine=intel386 opsys=usg5-3
566 ;;
567
568 ## Cydra 5
569 cydra*-cydrome-sysv* )
570 machine=cydra5 opsys=usg5-3
571 ;;
572
573 ## Data General AViiON Machines
574 m88k-dg-dgux5.4R3* | m88k-dg-dgux5.4.3* )
575 machine=aviion opsys=dgux5-4r3
576 ;;
577 m88k-dg-dgux5.4R2* | m88k-dg-dgux5.4.2* )
578 machine=aviion opsys=dgux5-4r2
579 ;;
580 m88k-dg-dgux* )
581 machine=aviion opsys=dgux
582 ;;
583
584 ## DECstations
585 mips-dec-ultrix[0-3].* | mips-dec-ultrix4.0* | mips-dec-bsd4.2* )
586 machine=pmax opsys=bsd4-2
587 ;;
588 mips-dec-ultrix* | mips-dec-bsd* )
589 machine=pmax opsys=bsd4-3
590 ;;
591 mips-dec-osf* )
592 machine=pmax opsys=osf1
593 ;;
594
595 ## Motorola Delta machines
596 m68k-motorola-sysv* | m68000-motorola-sysv* )
597 machine=delta opsys=usg5-3
598 if [ -z "`type gnucc | grep 'not found'`" ]
599 then CC=gnucc
600 else
601 if [ -z "`type gcc | grep 'not found'`" ]
602 then CC=gcc
603 else CC=cc
604 fi
605 fi
606 ;;
607 m88k-motorola-sysv4* )
608 machine=delta88k opsys=usg5-4
609 ;;
610 m88k-motorola-sysv* | m88k-motorola-m88kbcs* )
611 machine=delta88k opsys=usg5-3
612 ;;
613
614 ## Dual machines
615 m68*-dual-sysv* )
616 machine=dual opsys=usg5-2
617 ;;
618 m68*-dual-uniplus* )
619 machine=dual opsys=unipl5-2
620 ;;
621
622 ## Elxsi 6400
623 elxsi-elxsi-sysv* )
624 machine=elxsi opsys=usg5-2
625 ;;
626
627 ## Encore machines
628 ns16k-encore-bsd* )
629 machine=ns16000 opsys=umax
630 ;;
631
632 ## The GEC 93 - apparently, this port isn't really finished yet.
633
634 ## Gould Power Node and NP1
635 pn-gould-bsd4.2* )
636 machine=gould opsys=bsd4-2
637 ;;
638 pn-gould-bsd4.3* )
639 machine=gould opsys=bsd4-3
640 ;;
641 np1-gould-bsd* )
642 machine=gould-np1 opsys=bsd4-3
643 ;;
644
645 ## Harris Night Hawk machines running CX/UX (a 5000 looks just like a 4000
646 ## as far as Emacs is concerned).
647 m88k-harris-cxux* )
648 # Build needs to be different on 7.0 and later releases
649 case "`uname -r`" in
650 [56].[0-9] ) machine=nh4000 opsys=cxux ;;
651 [7].[0-9] ) machine=nh4000 opsys=cxux7 ;;
652 esac
653 ;;
654 ## Harris ecx or gcx running CX/UX (Series 1200, Series 3000)
655 m68k-harris-cxux* )
656 machine=nh3000 opsys=cxux
657 ;;
658
659 ## Honeywell XPS100
660 xps*-honeywell-sysv* )
661 machine=xps100 opsys=usg5-2
662 ;;
663
664 ## HP 9000 series 200 or 300
665 m68*-hp-bsd* )
666 machine=hp9000s300 opsys=bsd4-3
667 ;;
668 m68*-hp-netbsd* )
669 machine=hp9000s300 opsys=netbsd
670 ;;
671 ## HP/UX 7, 8 and 9 are supported on these machines.
672 m68*-hp-hpux* )
673 case "`uname -r`" in
674 ## Someone's system reports A.B8.05 for this.
675 ## I wonder what other possibilities there are.
676 *.B8.* ) machine=hp9000s300 opsys=hpux8 ;;
677 *.08.* ) machine=hp9000s300 opsys=hpux8 ;;
678 *.09.* ) machine=hp9000s300 opsys=hpux9 ;;
679 *) machine=hp9000s300 opsys=hpux ;;
680 esac
681 ;;
682
683 ## HP 9000 series 700 and 800, running HP/UX
684 hppa*-hp-hpux7* )
685 machine=hp800 opsys=hpux
686 ;;
687 hppa*-hp-hpux8* )
688 machine=hp800 opsys=hpux8
689 ;;
690 hppa*-hp-hpux9* )
691 machine=hp800 opsys=hpux9
692 ;;
693 hppa*-hp-hpux9shr* )
694 machine=hp800 opsys=hpux9shr
695 ;;
696
697 ## HP 9000 series 700 and 800, running HP/UX
698 hppa*-hp-hpux* )
699 ## Cross-compilation? Nah!
700 case "`uname -r`" in
701 ## Someone's system reports A.B8.05 for this.
702 ## I wonder what other possibilities there are.
703 *.B8.* ) machine=hp800 opsys=hpux8 ;;
704 *.08.* ) machine=hp800 opsys=hpux8 ;;
705 *.09.* ) machine=hp800 opsys=hpux9 ;;
706 *) machine=hp800 opsys=hpux ;;
707 esac
708 ;;
709
710 ## Orion machines
711 orion-orion-bsd* )
712 machine=orion opsys=bsd4-2
713 ;;
714 clipper-orion-bsd* )
715 machine=orion105 opsys=bsd4-2
716 ;;
717
718 ## IBM machines
719 i386-ibm-aix1.1* )
720 machine=ibmps2-aix opsys=usg5-2-2
721 ;;
722 i386-ibm-aix1.[23]* | i386-ibm-aix* )
723 machine=ibmps2-aix opsys=usg5-3
724 ;;
725 i370-ibm-aix*)
726 machine=ibm370aix opsys=usg5-3
727 ;;
728 rs6000-ibm-aix3.1* )
729 machine=ibmrs6000 opsys=aix3-1
730 ;;
731 rs6000-ibm-aix3.2.5)
732 machine=ibmrs6000 opsys=aix3-2-5
733 ;;
734 rs6000-ibm-aix3.2* | rs6000-ibm-aix* )
735 machine=ibmrs6000 opsys=aix3-2
736 ;;
737 romp-ibm-bsd4.3* )
738 machine=ibmrt opsys=bsd4-3
739 ;;
740 romp-ibm-bsd4.2* )
741 machine=ibmrt opsys=bsd4-2
742 ;;
743 romp-ibm-aos4.3* )
744 machine=ibmrt opsys=bsd4-3
745 ;;
746 romp-ibm-aos4.2* )
747 machine=ibmrt opsys=bsd4-2
748 ;;
749 romp-ibm-aos* )
750 machine=ibmrt opsys=bsd4-3
751 ;;
752 romp-ibm-bsd* )
753 machine=ibmrt opsys=bsd4-3
754 ;;
755 romp-ibm-aix* )
756 machine=ibmrt-aix opsys=usg5-2-2
757 ;;
758
759 ## Integrated Solutions `Optimum V'
760 m68*-isi-bsd4.2* )
761 machine=isi-ov opsys=bsd4-2
762 ;;
763 m68*-isi-bsd4.3* )
764 machine=isi-ov opsys=bsd4-3
765 ;;
766
767 ## Intel 386 machines where we do care about the manufacturer
768 i[34]86-intsys-sysv* )
769 machine=is386 opsys=usg5-2-2
770 ;;
771
772 ## Prime EXL
773 i386-prime-sysv* )
774 machine=i386 opsys=usg5-3
775 ;;
776
777 ## Sequent Symmetry
778 i386-sequent-bsd* )
779 machine=symmetry opsys=bsd4-3
780 ;;
781
782 ## Unspecified sysv on an ncr machine defaults to svr4.2.
783 ## (Plain usg5-4 doesn't turn on POSIX signals, which we need.)
784 i[34]86-ncr-sysv* )
785 machine=intel386 opsys=usg5-4-2
786 ;;
787
788 ## Intel 860
789 i860-*-sysv4* )
790 machine=i860 opsys=usg5-4
791 ;;
792
793 ## Masscomp machines
794 m68*-masscomp-rtu* )
795 machine=masscomp opsys=rtu
796 ;;
797
798 ## Megatest machines
799 m68*-megatest-bsd* )
800 machine=mega68 opsys=bsd4-2
801 ;;
802
803 ## Workstations sold by MIPS
804 ## This is not necessarily all workstations using the MIPS processor -
805 ## Irises are produced by SGI, and DECstations by DEC.
806
807 ## etc/MACHINES lists mips.h and mips4.h as possible machine files,
808 ## and usg5-2-2 and bsd4-3 as possible OS files. The only guidance
809 ## it gives for choosing between the alternatives seems to be "Use
810 ## -machine=mips4 for RISCOS version 4; use -opsystem=bsd4-3 with
811 ## the BSD world." I'll assume that these are instructions for
812 ## handling two odd situations, and that every other situation
813 ## should use mips.h and usg5-2-2, they being listed first.
814 mips-mips-usg* )
815 machine=mips4
816 ## Fall through to the general code at the bottom to decide on the OS.
817 ;;
818 mips-mips-riscos4* )
819 machine=mips4 opsys=bsd4-3
820 NON_GNU_CC="cc -systype bsd43"
821 NON_GNU_CPP="cc -systype bsd43 -E"
822 ;;
823 mips-mips-bsd* )
824 machine=mips opsys=bsd4-3
825 ;;
826 mips-mips-* )
827 machine=mips opsys=usg5-2-2
828 ;;
829
830 ## NeXT
831 m68*-next-* )
832 machine=next opsys=mach2
833 ;;
834
835 ## The complete machine from National Semiconductor
836 ns32k-ns-genix* )
837 machine=ns32000 opsys=usg5-2
838 ;;
839
840 ## NCR machines
841 m68*-ncr-sysv2* | m68*-ncr-sysvr2* )
842 machine=tower32 opsys=usg5-2-2
843 ;;
844 m68*-ncr-sysv3* | m68*-ncr-sysvr3* )
845 machine=tower32v3 opsys=usg5-3
846 ;;
847
848 ## Nixdorf Targon 31
849 m68*-nixdorf-sysv* )
850 machine=targon31 opsys=usg5-2-2
851 ;;
852
853 ## Nu (TI or LMI)
854 m68*-nu-sysv* )
855 machine=nu opsys=usg5-2
856 ;;
857
858 ## Plexus
859 m68*-plexus-sysv* )
860 machine=plexus opsys=usg5-2
861 ;;
862
863 ## Pyramid machines
864 ## I don't really have any idea what sort of processor the Pyramid has,
865 ## so I'm assuming it is its own architecture.
866 pyramid-pyramid-bsd* )
867 machine=pyramid opsys=bsd4-2
868 ;;
869
870 ## Sequent Balance
871 ns32k-sequent-bsd4.2* )
872 machine=sequent opsys=bsd4-2
873 ;;
874 ns32k-sequent-bsd4.3* )
875 machine=sequent opsys=bsd4-3
876 ;;
877
878 ## Siemens Nixdorf
879 mips-siemens-sysv* )
880 machine=mips-siemens opsys=usg5-4
881 NON_GNU_CC=/usr/ccs/bin/cc
882 NON_GNU_CPP="/usr/ccs/bin/cc -E"
883 ;;
884
885 ## Silicon Graphics machines
886 ## Iris 2500 and Iris 2500 Turbo (aka the Iris 3030)
887 m68*-sgi-iris3.5* )
888 machine=irist opsys=iris3-5
889 ;;
890 m68*-sgi-iris3.6* | m68*-sgi-iris*)
891 machine=irist opsys=iris3-6
892 ;;
893 ## Iris 4D
894 mips-sgi-irix3.* )
895 machine=iris4d opsys=irix3-3
896 ;;
897 mips-sgi-irix5.* )
898 machine=iris4d opsys=irix5-0
899 ;;
900 mips-sgi-irix4.* | mips-sgi-irix* )
901 machine=iris4d opsys=irix4-0
902 ;;
903
904 ## SONY machines
905 m68*-sony-bsd4.2* )
906 machine=news opsys=bsd4-2
907 ;;
908 m68*-sony-bsd4.3* )
909 machine=news opsys=bsd4-3
910 ;;
911 m68*-sony-newsos3*)
912 machine=news opsys=bsd4-3
913 ;;
914 mips-sony-bsd* )
915 machine=news-risc opsys=bsd4-3
916 ;;
917 mips-sony-newsos* )
918 machine=mips opsys=newsos5
919 ;;
920
921 ## Stride
922 m68*-stride-sysv* )
923 machine=stride opsys=usg5-2
924 ;;
925
926 ## Suns
927 *-sun-sunos* | *-sun-bsd* | *-sun-solaris* )
928 case "${canonical}" in
929 m68*-sunos1* ) machine=sun1 ;;
930 m68*-sunos2* ) machine=sun2 ;;
931 m68* ) machine=sun3 ;;
932 i[34]86* ) machine=sun386 ;;
933 sparc* ) machine=sparc ;;
934 * ) unported=true ;;
935 esac
936 case "${canonical}" in
937 ## The Sun386 didn't get past 4.0.
938 i386-*-sunos4 ) opsys=sunos4-0 ;;
939 *-sunos4.0* ) opsys=sunos4-0 ;;
940 *-sunos4.1.3* ) opsys=sunos4-1-3
941 NON_GCC_TEST_OPTIONS=-Bstatic
942 GCC_TEST_OPTIONS=-static
943 ;;
944 *-sunos4shr* ) opsys=sunos4shr ;;
945 *-sunos4* | *-sunos ) opsys=sunos4-1 ;;
946 *-sunos5.3* | *-solaris2.3* )
947 opsys=sol2-3
948 NON_GNU_CPP=/usr/ccs/lib/cpp
949 ;;
950 *-sunos5* | *-solaris* )
951 opsys=sol2
952 NON_GNU_CPP=/usr/ccs/lib/cpp
953 ;;
954 * ) opsys=bsd4-2 ;;
955 esac
956 ;;
957
958 ## Tadpole 68k
959 m68*-tadpole-sysv* )
960 machine=tad68k opsys=usg5-3
961 ;;
962
963 ## Tahoe machines
964 tahoe-tahoe-bsd4.2* )
965 machine=tahoe opsys=bsd4-2
966 ;;
967 tahoe-tahoe-bsd4.3* )
968 machine=tahoe opsys=bsd4-3
969 ;;
970
971 ## Tandem Integrity S2
972 mips-tandem-sysv* )
973 machine=tandem-s2 opsys=usg5-3
974 ;;
975
976 ## Tektronix XD88
977 m88k-tektronix-sysv3* )
978 machine=tekxd88 opsys=usg5-3
979 ;;
980
981 ## Tektronix 16000 box (6130?)
982 ns16k-tektronix-bsd* )
983 machine=ns16000 opsys=bsd4-2
984 ;;
985 ## Tektronix 4300
986 ## src/m/tek4300.h hints that this is a m68k machine.
987 m68*-tektronix-bsd* )
988 machine=tek4300 opsys=bsd4-3
989 ;;
990
991 ## Titan P2 or P3
992 ## We seem to have lost the machine-description file titan.h!
993 titan-titan-sysv* )
994 machine=titan opsys=usg5-3
995 ;;
996
997 ## Ustation E30 (SS5E)
998 m68*-unisys-uniplus* )
999 machine=ustation opsystem=unipl5-2
1000 ;;
1001
1002 ## Vaxen.
1003 vax-dec-* )
1004 machine=vax
1005 case "${canonical}" in
1006 *-bsd4.1* ) opsys=bsd4-1 ;;
1007 *-bsd4.2* | *-ultrix[0-3].* | *-ultrix4.0* ) opsys=bsd4-2 ;;
1008 *-bsd4.3* | *-ultrix* ) opsys=bsd4-3 ;;
1009 *-bsd386* ) opsys=bsd386 ;;
1010 *-sysv[01]* | *-sysvr[01]* ) opsys=usg5-0 ;;
1011 *-sysv2* | *-sysvr2* ) opsys=usg5-2 ;;
1012 *-vms* ) opsys=vms ;;
1013 * ) unported=true
1014 esac
1015 ;;
1016
1017 ## Whitechapel MG1
1018 ns16k-whitechapel-* )
1019 machine=mg1
1020 ## We don't know what sort of OS runs on these; we'll let the
1021 ## operating system guessing code below try.
1022 ;;
1023
1024 ## Wicat
1025 m68*-wicat-sysv* )
1026 machine=wicat opsys=usg5-2
1027 ;;
1028
1029 ## Intel 386 machines where we don't care about the manufacturer
1030 i[34]86-*-* )
1031 machine=intel386
1032 case "${canonical}" in
1033 *-isc1.* | *-isc2.[01]* ) opsys=386-ix ;;
1034 *-isc2.2* ) opsys=isc2-2 ;;
1035 *-isc4.0* ) opsys=isc4-0 ;;
1036 *-isc* ) opsys=isc3-0 ;;
1037 *-esix5* ) opsys=esix5r4; NON_GNU_CPP=/usr/lib/cpp ;;
1038 *-esix* ) opsys=esix ;;
1039 *-xenix* ) opsys=xenix ;;
1040 *-linux* ) opsys=linux ;;
1041 *-sco3.2v4* ) opsys=sco4 ;;
1042 *-bsd386* ) opsys=bsd386 ;;
1043 *-386bsd* ) opsys=386bsd ;;
1044 *-freebsd* ) opsys=freebsd ;;
1045 *-netbsd* ) opsys=netbsd ;;
1046 *-nextstep* ) opsys=mach2 ;;
1047 ## Otherwise, we'll fall through to the generic opsys code at the bottom.
1048 esac
1049 ;;
1050
1051 * )
1052 unported=true
1053 ;;
1054 esac
1055
1056 ### If the code above didn't choose an operating system, just choose
1057 ### an operating system based on the configuration name. You really
1058 ### only want to use this when you have no idea what the right
1059 ### operating system is; if you know what operating systems a machine
1060 ### runs, it's cleaner to make it explicit in the case statement
1061 ### above.
1062 if [ x"${opsys}" = x ]; then
1063 case "${canonical}" in
1064 *-gnu* ) opsys=gnu ;;
1065 *-bsd4.[01] ) opsys=bsd4-1 ;;
1066 *-bsd4.2 ) opsys=bsd4-2 ;;
1067 *-bsd4.3 ) opsys=bsd4-3 ;;
1068 *-sysv0 | *-sysvr0 ) opsys=usg5-0 ;;
1069 *-sysv2 | *-sysvr2 ) opsys=usg5-2 ;;
1070 *-sysv2.2 | *-sysvr2.2 ) opsys=usg5-2-2 ;;
1071 *-sysv3 | *-sysvr3 ) opsys=usg5-3 ;;
1072 *-sysv4 | *-sysvr4 ) opsys=usg5-4 ;;
1073 *-sysv4.1 | *-sysvr4.1 )
1074 NON_GNU_CPP=/usr/lib/cpp
1075 opsys=usg5-4 ;;
1076 *-sysv4.2 | *-sysvr4.2 ) opsys=usg5-4-2 ;;
1077 * )
1078 unported=true
1079 ;;
1080 esac
1081 fi
1082
1083 if $unported ; then
1084 (echo "${progname}: Emacs hasn't been ported to \`${canonical}' systems."
1085 echo "${progname}: Check \`etc/MACHINES' for recognized configuration names."
1086 ) >&2
1087 exit 1
1088 fi
1089
1090 machfile="m/${machine}.h"
1091 opsysfile="s/${opsys}.h"
1092
1093 ]
1094 AC_PREPARE(lisp)
1095 AC_CONFIG_HEADER(src/config.h)
1096 [
1097
1098 #### Choose a compiler.
1099 if [ "x$CC" = x ]
1100 then true
1101 else cc_specified=1
1102 fi
1103
1104 case ${with_gcc} in
1105 "yes" ) CC="gcc" GCC=1 ;;
1106 "no" )
1107 if [ "x$CC" = x ]
1108 then CC=cc;
1109 else true;
1110 fi
1111 ;;
1112 * )
1113 ] AC_PROG_CC [
1114 esac
1115
1116 #### Some systems specify a CPP to use unless we are using GCC.
1117 #### Now that we know whether we are using GCC, we can decide whether
1118 #### to use that one.
1119 if [ "x$NON_GNU_CPP" = x ] || [ x$GCC = x1 ] || [ "x$CPP" != x ]
1120 then true
1121 else
1122 CPP="$NON_GNU_CPP"
1123 fi
1124
1125 #### Some systems specify a CC to use unless we are using GCC.
1126 #### Now that we know whether we are using GCC, we can decide whether
1127 #### to use that one.
1128 if [ "x$NON_GNU_CC" = x ] || [ x$GCC = x1 ] || [ x$cc_specified = x1 ]
1129 then true
1130 else
1131 CC="$NON_GNU_CC"
1132 fi
1133
1134 if [ x$GCC = x1 ] && [ "x$GCC_TEST_OPTIONS" != x ]
1135 then
1136 CC="$CC $GCC_TEST_OPTIONS"
1137 fi
1138
1139 if [ x$GCC = x ] && [ "x$NON_GCC_TEST_OPTIONS" != x ]
1140 then
1141 CC="$CC $NON_GCC_TEST_OPTIONS"
1142 fi
1143
1144 #### Some other nice autoconf tests. If you add a test here which
1145 #### should make an entry in src/config.h, don't forget to add an
1146 #### #undef clause to src/config.h.in for autoconf to modify.
1147 ]
1148 dnl checks for programs
1149 AC_LN_S
1150 AC_PROG_CPP
1151 AC_PROG_INSTALL
1152 AC_PROG_YACC
1153
1154 dnl checks for UNIX variants that set `DEFS'
1155
1156 dnl checks for header files
1157 AC_HAVE_HEADERS(sys/timeb.h sys/time.h unistd.h)
1158 AC_STDC_HEADERS
1159 AC_TIME_WITH_SYS_TIME
1160 dnl In Autoconf 1.8 use AC_SYS_SIGLIST_DECLARED instead of this.
1161 AC_COMPILE_CHECK(sys_siglist declaration in signal.h or unistd.h,
1162 [#include <signal.h>
1163 /* NetBSD declares sys_siglist in <unistd.h>. */
1164 #ifdef HAVE_UNISTD_H
1165 #include <unistd.h>
1166 #endif], [char *msg = *(sys_siglist + 1);],
1167 AC_DEFINE(SYS_SIGLIST_DECLARED))
1168
1169 dnl checks for typedefs
1170 AC_RETSIGTYPE
1171
1172 dnl checks for structure members
1173 AC_STRUCT_TM
1174 AC_TIMEZONE
1175
1176 dnl checks for compiler characteristics
1177 AC_CONST
1178
1179 dnl check for Make feature
1180 AC_SET_MAKE
1181
1182 dnl checks for operating system services
1183 AC_LONG_FILE_NAMES
1184
1185 dnl other checks for UNIX variants
1186 [
1187
1188 #### Choose a window system.
1189 echo "Checking window system."
1190
1191 window_system=''
1192 case "${with_x}" in
1193 yes )
1194 window_system=${window_system}x11
1195 ;;
1196 no )
1197 window_system=${window_system}none
1198 ;;
1199 esac
1200 case "${window_system}" in
1201 .* )
1202 ;;
1203 * )
1204 case "${with_x11}" in
1205 yes )
1206 window_system=x11
1207 ;;
1208 no )
1209 window_system=none
1210 ;;
1211 esac
1212 case "${with_x10}" in
1213 yes )
1214 window_system=x10
1215 ;;
1216 no )
1217 window_system=none
1218 ;;
1219 esac
1220 ;;
1221 esac
1222
1223 case "${window_system}" in
1224 "none" | "x11" | "x10" ) ;;
1225 "" )
1226 # --x-includes or --x-libraries implies --with-x11.
1227 if [ -n "${x_includes}" ] || [ -n "${x_libraries}" ]; then
1228 window_system=x11
1229 else
1230 echo " No window system specified. Looking for X11."
1231 # If the user didn't specify a window system and we found X11, use it.
1232 if [ -r /usr/lib/libX11.a \
1233 -o -d /usr/include/X11 \
1234 -o -d /usr/X386/include \
1235 -o -d ${x_includes}/X11 ]; then
1236 window_system=x11
1237 fi
1238 fi
1239 ;;
1240 * )
1241 echo "Don't specify a window system more than once." >&2
1242 exit 1
1243 ;;
1244 esac
1245
1246 case "${window_system}" in
1247 "" | "x11" )
1248 ### If the user hasn't specified where we should find X, try
1249 ### letting autoconf figure that out.
1250 if [ -z "${x_includes}" ] && [ -z "${x_libraries}" ]; then
1251 ]
1252 AC_FIND_X
1253 [
1254 fi
1255 if [ -n "${x_includes}" ] || [ -n "${x_libraries}" ]; then
1256 window_system=x11
1257 fi
1258 ;;
1259 esac
1260
1261 [ -z "${window_system}" ] && window_system=none
1262
1263 [ -n "${x_libraries}" ] && LD_SWITCH_X_SITE="-L${x_libraries}"
1264 [ -n "${x_libraries}" ] && LD_SWITCH_X_SITE_AUX="-R${x_libraries}"
1265 [ -n "${x_includes}" ] && C_SWITCH_X_SITE="-I${x_includes}"
1266
1267 # Avoid forcing the search of /usr/include before fixed include files.
1268 if [ "$C_SWITCH_X_SITE" = "-I/usr/include" ]; then
1269 C_SWITCH_X_SITE=" "
1270 fi
1271
1272 case "${window_system}" in
1273 x11 )
1274 HAVE_X_WINDOWS=yes
1275 HAVE_X11=yes
1276 echo " Using X11."
1277 case "${with_x_toolkit}" in
1278 athena | lucid )
1279 USE_X_TOOLKIT=LUCID
1280 echo " Using Xt toolkit."
1281 ;;
1282 motif )
1283 USE_X_TOOLKIT=MOTIF
1284 echo " Using Motif toolkit."
1285 ;;
1286 open-look )
1287 USE_X_TOOLKIT=OPEN_LOOK
1288 echo " Using Open-Look toolkit."
1289 ;;
1290 * )
1291 USE_X_TOOLKIT=none
1292 echo " Using Xlib directly."
1293 ;;
1294 esac
1295 ;;
1296 x10 )
1297 HAVE_X_WINDOWS=yes
1298 HAVE_X11=no
1299 USE_X_TOOLKIT=none
1300 echo " Using X10."
1301 ;;
1302 none )
1303 HAVE_X_WINDOWS=no
1304 HAVE_X11=no
1305 USE_X_TOOLKIT=none
1306 echo " Using no window system."
1307 ;;
1308 esac
1309 X_TOOLKIT_TYPE=$USE_X_TOOLKIT
1310
1311 ### If we're using X11, we should use the X menu package.
1312 HAVE_X_MENU=no
1313 case ${HAVE_X11} in
1314 yes )
1315 HAVE_X_MENU=yes
1316 ;;
1317 esac
1318
1319 #### Extract some information from the operating system and machine files.
1320
1321 echo "Examining the machine- and system-dependent files to find out"
1322 echo " - which libraries the lib-src programs will want, and"
1323 echo " - whether the GNU malloc routines are usable."
1324
1325 ### It's not important that this name contain the PID; you can't run
1326 ### two configures in the same directory and have anything work
1327 ### anyway.
1328 tempcname="conftest.c"
1329
1330 echo '
1331 #include "'${srcdir}'/src/'${opsysfile}'"
1332 #include "'${srcdir}'/src/'${machfile}'"
1333 #ifndef LIBS_MACHINE
1334 #define LIBS_MACHINE
1335 #endif
1336 #ifndef LIBS_SYSTEM
1337 #define LIBS_SYSTEM
1338 #endif
1339 #ifndef C_SWITCH_SYSTEM
1340 #define C_SWITCH_SYSTEM
1341 #endif
1342 #ifndef C_SWITCH_MACHINE
1343 #define C_SWITCH_MACHINE
1344 #endif
1345 configure___ libsrc_libs=LIBS_MACHINE LIBS_SYSTEM
1346 configure___ c_switch_system=C_SWITCH_SYSTEM
1347 configure___ c_switch_machine=C_SWITCH_MACHINE
1348
1349 #ifndef LIB_X11_LIB
1350 #define LIB_X11_LIB -lX11
1351 #endif
1352
1353 #ifndef LIBX11_MACHINE
1354 #define LIBX11_MACHINE
1355 #endif
1356
1357 #ifndef LIBX11_SYSTEM
1358 #define LIBX11_SYSTEM
1359 #endif
1360 configure___ LIBX=LIB_X11_LIB LIBX11_MACHINE LIBX11_SYSTEM
1361
1362 #ifdef UNEXEC
1363 configure___ unexec=UNEXEC
1364 #else
1365 configure___ unexec=unexec.o
1366 #endif
1367
1368 #ifdef SYSTEM_MALLOC
1369 configure___ system_malloc=yes
1370 #else
1371 configure___ system_malloc=no
1372 #endif
1373
1374 #ifndef C_DEBUG_SWITCH
1375 #define C_DEBUG_SWITCH -g
1376 #endif
1377
1378 #ifndef C_OPTIMIZE_SWITCH
1379 #define C_OPTIMIZE_SWITCH -O
1380 #endif
1381
1382 #ifdef __GNUC__
1383 configure___ CFLAGS=C_DEBUG_SWITCH C_OPTIMIZE_SWITCH '${CFLAGS}'
1384 #else
1385 configure___ CFLAGS=C_DEBUG_SWITCH '${CFLAGS}'
1386 #endif
1387 ' > ${tempcname}
1388 # The value of CPP is a quoted variable reference, so we need to do this
1389 # to get its actual value...
1390 CPP=`eval "echo $CPP"`
1391 eval `${CPP} -Isrc ${tempcname} \
1392 | grep 'configure___' \
1393 | sed -e 's/^configure___ \([^=]*=\)\(.*\)$/\1"\2"/'`
1394 rm ${tempcname}
1395
1396 ### Compute the unexec source name from the object name.
1397 UNEXEC_SRC="`echo ${unexec} | sed 's/\.o/.c/'`"
1398
1399 # Do the opsystem or machine files prohibit the use of the GNU malloc?
1400 # Assume not, until told otherwise.
1401 GNU_MALLOC=yes
1402 if [ "${system_malloc}" = "yes" ]; then
1403 GNU_MALLOC=no
1404 GNU_MALLOC_reason="
1405 (The GNU allocators don't work with this system configuration.)"
1406 fi
1407
1408 if [ x"${REL_ALLOC}" = x ]; then
1409 REL_ALLOC=${GNU_MALLOC}
1410 fi
1411
1412 LISP_FLOAT_TYPE=yes
1413
1414
1415 #### Add the libraries to LIBS and check for some functions.
1416
1417 ]
1418 DEFS="$c_switch_system $c_switch_machine $DEFS"
1419 LIBS="$libsrc_libs"
1420
1421 dnl If found, this defines HAVE_LIBDNET, which m/pmax.h checks,
1422 dnl and also adds -ldnet to LIBS, which Autoconf uses for checks.
1423 AC_HAVE_LIBRARY(-ldnet)
1424 dnl This causes -lresolv to get used in subsequent tests,
1425 dnl which causes failures on some systems such as HPUX 9.
1426 dnl AC_HAVE_LIBRARY(-lresolv)
1427
1428 AC_HAVE_LIBRARY(-lXbsd, LD_SWITCH_X_SITE="$LD_SWITCH_X_SITE -lXbsd")
1429
1430 echo checking for XFree86
1431 if test -d /usr/X386/include; then
1432 HAVE_XFREE386=yes
1433 test -z "${C_SWITCH_X_SITE}" && C_SWITCH_X_SITE="-I/usr/X386/include"
1434 fi
1435
1436 # We change CFLAGS temporarily so that C_SWITCH_X_SITE gets used
1437 # for the tests that follow.
1438 orig_cflags="$CFLAGS"
1439
1440 if test "${HAVE_X11}" = "yes"; then
1441 DEFS="$C_SWITCH_X_SITE $DEFS"
1442 LIBS="$LD_SWITCH_X_SITE $LIBX $LIBS"
1443 CFLAGS="$C_SWITCH_X_SITE $CFLAGS"
1444 AC_HAVE_FUNCS(XrmSetDatabase XScreenResourceString \
1445 XScreenNumberOfScreen XSetWMProtocols)
1446 fi
1447
1448 if test "${USE_X_TOOLKIT}" != "none"; then
1449 AC_COMPILE_CHECK(X11 toolkit version,
1450 [#include <X11/Intrinsic.h>],
1451 [
1452 #if XtSpecificationRelease < 6
1453 fail;
1454 #endif
1455 ],
1456 AC_DEFINE(HAVE_X11XTR6))
1457 fi
1458
1459 AC_ALLOCA
1460
1461 # logb and frexp are found in -lm on most systems.
1462 AC_HAVE_LIBRARY(-lm)
1463 AC_HAVE_FUNCS(gettimeofday gethostname dup2 rename closedir mkdir rmdir \
1464 random bcopy bcmp logb frexp fmod drem ftime res_init setsid strerror \
1465 fpathconf)
1466
1467 ok_so_far=true
1468 AC_FUNC_CHECK(socket, , ok_so_far=)
1469 if test -n "$ok_so_far"; then
1470 AC_HEADER_CHECK(netinet/in.h, , ok_so_far=)
1471 fi
1472 if test -n "$ok_so_far"; then
1473 AC_HEADER_CHECK(arpa/inet.h, , ok_so_far=)
1474 fi
1475 if test -n "$ok_so_far"; then
1476 AC_DEFINE(HAVE_INET_SOCKETS)
1477 fi
1478
1479 # Restore the original CFLAGS value.
1480 CFLAGS="$orig_cflags"
1481
1482 [
1483 #### Find out which version of Emacs this is.
1484 version=`grep 'defconst[ ]*emacs-version' ${srcdir}/lisp/version.el \
1485 | sed -e 's/^[^"]*"\([^"]*\)".*$/\1/'`
1486 if [ x"${version}" = x ]; then
1487 echo "${progname}: can't find current emacs version in
1488 \`${srcdir}/lisp/version.el'." >&2
1489 exit 1
1490 fi
1491
1492 if [ -f /usr/lpp/X11/bin/smt.exp ]; then
1493 ]
1494 AC_DEFINE(HAVE_AIX_SMT_EXP)
1495 [
1496 fi
1497
1498 #### Specify what sort of things we'll be editing into Makefile and config.h.
1499 ### Use configuration here uncanonicalized to avoid exceeding size limits.
1500 ]
1501 AC_SUBST(version)
1502 AC_SUBST(configuration)
1503 AC_SUBST(srcdir)
1504 AC_SUBST(prefix)
1505 AC_SUBST(exec_prefix)
1506 AC_SUBST(bindir)
1507 AC_SUBST(datadir)
1508 AC_SUBST(statedir)
1509 AC_SUBST(libdir)
1510 AC_SUBST(mandir)
1511 AC_SUBST(infodir)
1512 AC_SUBST(lispdir)
1513 AC_SUBST(locallisppath)
1514 AC_SUBST(lisppath)
1515 AC_SUBST(etcdir)
1516 AC_SUBST(lockdir)
1517 AC_SUBST(archlibdir)
1518 AC_SUBST(docdir)
1519 AC_SUBST(c_switch_system)
1520 AC_SUBST(c_switch_machine)
1521 AC_SUBST(LD_SWITCH_X_SITE)
1522 AC_SUBST(LD_SWITCH_X_SITE_AUX)
1523 AC_SUBST(C_SWITCH_X_SITE)
1524 AC_SUBST(CFLAGS)
1525 AC_SUBST(X_TOOLKIT_TYPE)
1526 AC_SUBST(machfile)
1527 AC_SUBST(opsysfile)
1528
1529 AC_DEFINE_UNQUOTED(EMACS_CONFIGURATION, "\"${configuration}\"")
1530 AC_DEFINE_UNQUOTED(config_machfile, "\"${machfile}\"")
1531 AC_DEFINE_UNQUOTED(config_opsysfile, "\"${opsysfile}\"")
1532 AC_DEFINE_UNQUOTED(LD_SWITCH_X_SITE, ${LD_SWITCH_X_SITE})
1533 AC_DEFINE_UNQUOTED(LD_SWITCH_X_SITE_AUX, ${LD_SWITCH_X_SITE_AUX})
1534 AC_DEFINE_UNQUOTED(C_SWITCH_X_SITE, ${C_SWITCH_X_SITE})
1535 AC_DEFINE_UNQUOTED(UNEXEC_SRC, ${UNEXEC_SRC})
1536
1537 [
1538 if [ "${HAVE_X_WINDOWS}" = "yes" ] ; then
1539 ] AC_DEFINE(HAVE_X_WINDOWS) [
1540 fi
1541 if [ "${USE_X_TOOLKIT}" != "none" ] ; then
1542 ] AC_DEFINE(USE_X_TOOLKIT) [
1543 fi
1544 if [ "${HAVE_X11}" = "yes" ] ; then
1545 ] AC_DEFINE(HAVE_X11) [
1546 fi
1547 if [ "${HAVE_XFREE386}" = "yes" ] ; then
1548 ] AC_DEFINE(HAVE_XFREE386) [
1549 fi
1550 if [ "${HAVE_X_MENU}" = "yes" ] ; then
1551 ] AC_DEFINE(HAVE_X_MENU) [
1552 fi
1553 if [ "${GNU_MALLOC}" = "yes" ] ; then
1554 ] AC_DEFINE(GNU_MALLOC) [
1555 fi
1556 if [ "${REL_ALLOC}" = "yes" ] ; then
1557 ] AC_DEFINE(REL_ALLOC) [
1558 fi
1559 if [ "${LISP_FLOAT_TYPE}" = "yes" ] ; then
1560 ] AC_DEFINE(LISP_FLOAT_TYPE) [
1561 fi
1562
1563 # ====================== Developer's configuration =======================
1564
1565 # The following assignments make sense if you're running Emacs on a single
1566 # machine, one version at a time, and you want changes to the lisp and etc
1567 # directories in the source tree to show up immediately in your working
1568 # environment. It saves a great deal of disk space by not duplicating the
1569 # lisp and etc directories.
1570
1571 if [ "$run_in_place" = "1" ]; then
1572 lispdir='${srcdir}/lisp'
1573 locallisppath='${srcdir}/site-lisp'
1574 etcdir='${srcdir}/etc'
1575 lockdir='${srcdir}/lock'
1576 # We used to make archlibdir and docdir absolute,
1577 # but that caused trouble with automounters.
1578 archlibdir='${srcdir}/lib-src'
1579 docdir='${srcdir}/etc'
1580 infodir='${srcdir}/info'
1581 elif [ "$single_tree" = "1" ]; then
1582 if [ "$exec_prefix_specified" = "" ]; then
1583 exec_prefix='${prefix}'
1584 fi
1585 if [ "$bindir_specified" = "" ]; then
1586 bindir='${exec_prefix}/bin/${configuration}'
1587 fi
1588 if [ "$datadir_specified" = "" ]; then
1589 datadir='${prefix}/common'
1590 fi
1591 if [ "$statedir_specified" = "" ]; then
1592 statedir='${prefix}/common'
1593 fi
1594 if [ "$libdir_specified" = "" ]; then
1595 libdir='${bindir}'
1596 fi
1597 if [ "$lispdir_specified" = "" ]; then
1598 lispdir='${prefix}/common/lisp'
1599 fi
1600 if [ "$locallisppath_specified" = "" ]; then
1601 locallisppath='${prefix}/common/site-lisp'
1602 fi
1603 if [ "$lockdir_specified" = "" ]; then
1604 lockdir='${prefix}/common/lock'
1605 fi
1606 if [ "$archlibdir_specified" = "" ]; then
1607 archlibdir='${libdir}/etc'
1608 fi
1609 if [ "$etcdir_specified" = "" ]; then
1610 etcdir='${prefix}/common/data'
1611 fi
1612 if [ "$docdir_specified" = "" ]; then
1613 docdir='${prefix}/common/data'
1614 fi
1615 fi
1616
1617 #### Report on what we decided to do.
1618 echo "
1619
1620 Configured for \`${canonical}'.
1621
1622 Where should the build process find the source code? ${srcdir}
1623 What operating system and machine description files should Emacs use?
1624 \`${opsysfile}' and \`${machfile}'
1625 What compiler should emacs be built with? ${CC} ${CFLAGS}
1626 Should Emacs use the GNU version of malloc? ${GNU_MALLOC}${GNU_MALLOC_reason}
1627 Should Emacs use the relocating allocator for buffers? ${REL_ALLOC}
1628 What window system should Emacs use? ${window_system}
1629 What toolkit should Emacs use? ${USE_X_TOOLKIT}${x_includes+
1630 Where do we find X Windows header files? }${x_includes}${x_libraries+
1631 Where do we find X Windows libraries? }${x_libraries}
1632
1633 "
1634
1635 # Remove any trailing slashes in these variables.
1636 test -n "${prefix}" &&
1637 prefix=`echo "${prefix}" | sed 's,\([^/]\)/*$,\1,'`
1638 test -n "${exec_prefix}" &&
1639 exec_prefix=`echo "${exec_prefix}" | sed 's,\([^/]\)/*$,\1,'`
1640 ]
1641 AC_OUTPUT(Makefile lib-src/Makefile.in oldXMenu/Makefile lwlib/Makefile src/Makefile.in, [
1642
1643 # Build src/Makefile from ${srcdir}/src/Makefile.in. This must be done
1644 # after src/config.h is built, since we rely on that file.
1645
1646 changequote(,)dnl The horror, the horror.
1647 # Now get this: Some word that is part of the ${srcdir} directory name
1648 # or the ${configuration} value might, just might, happen to be an
1649 # identifier like `sun4' or `i386' or something, and be predefined by
1650 # the C preprocessor to some helpful value like 1, or maybe the empty
1651 # string. Needless to say consequent macro substitutions are less
1652 # than conducive to the makefile finding the correct directory.
1653 undefs="`echo $top_srcdir $configuration $canonical |
1654 sed -e 's/[^a-zA-Z0-9_]/ /g' -e 's/^/ /' -e 's/ *$//' \
1655 -e 's/ */ -U/g' -e 's/-U[0-9][^ ]*//g' \
1656 `"
1657 changequote([,])dnl
1658
1659 echo creating lib-src/Makefile
1660 ( cd lib-src
1661 rm -f junk.c junk1.c junk2.c
1662 sed -e '/start of cpp stuff/q' \
1663 < Makefile.in > junk1.c
1664 sed -e '1,/start of cpp stuff/d'\
1665 -e 's@/\*\*/#\(.*\)$@/* \1 */@' \
1666 < Makefile.in > junk.c
1667 $CPP $undefs -I. -I$top_srcdir/src $CPPFLAGS junk.c | \
1668 sed -e 's/^ / /' -e '/^#/d' -e '/^[ \f]*$/d' > junk2.c
1669 cat junk1.c junk2.c > Makefile.new
1670 rm -f junk.c junk1.c junk2.c
1671 chmod 444 Makefile.new
1672 mv -f Makefile.new Makefile
1673 )
1674
1675 echo creating src/Makefile
1676 ( cd src
1677 rm -f junk.c junk1.c junk2.c
1678 sed -e '/start of cpp stuff/q' \
1679 < Makefile.in > junk1.c
1680 sed -e '1,/start of cpp stuff/d'\
1681 -e 's@/\*\*/#\(.*\)$@/* \1 */@' \
1682 < Makefile.in > junk.c
1683 $CPP $undefs -I. -I$top_srcdir/src $CPPFLAGS junk.c | \
1684 sed -e 's/^ / /' -e '/^#/d' -e '/^[ \f]*$/d' > junk2.c
1685 cat junk1.c junk2.c > Makefile.new
1686 rm -f junk.c junk1.c junk2.c
1687 chmod 444 Makefile.new
1688 mv -f Makefile.new Makefile
1689 )])