Mercurial > emacs
annotate configure.in @ 11479:266653a85b65
(line-move): Fix previous change: if we get an error,
move to where the error happened, don't go back to starting point.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Tue, 18 Apr 1995 07:01:34 +0000 |
parents | 64aa0d436a80 |
children | 23e8d67edd9d |
rev | line source |
---|---|
8636 | 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. | |
9735
3f2c709d9856
Adapt for Autoconf v2. Use the standard argument
David J. MacKenzie <djm@gnu.org>
parents:
9727
diff
changeset
|
5 AC_PREREQ(2.0)dnl |
8636 | 6 AC_INIT(src/lisp.h) |
7 AC_CONFIG_HEADER(src/config.h) | |
8 | |
9 bindir='${exec_prefix}/bin' | |
9727
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
10 datadir='${prefix}/share' |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
11 sharedstatedir='${prefix}/com' |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
12 libexecdir='${exec_prefix}/libexec' |
8636 | 13 mandir='${prefix}/man/man1' |
14 infodir='${prefix}/info' | |
15 lispdir='${datadir}/emacs/${version}/lisp' | |
16 locallisppath='${datadir}/emacs/site-lisp' | |
17 lisppath='${locallisppath}:${lispdir}' | |
18 etcdir='${datadir}/emacs/${version}/etc' | |
9727
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
19 lockdir='${sharedstatedir}/emacs/lock' |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
20 archlibdir='${libexecdir}/emacs/${version}/${configuration}' |
8636 | 21 docdir='${datadir}/emacs/${version}/etc' |
22 | |
8714
a52d8873fbdf
rearrange AC_ARG_WITH calls
David J. MacKenzie <djm@gnu.org>
parents:
8708
diff
changeset
|
23 AC_ARG_WITH(gcc, |
10037
07c7351976b4
rearrange --with options
David J. MacKenzie <djm@gnu.org>
parents:
10036
diff
changeset
|
24 [ --with-gcc use GCC to compile Emacs]) |
07c7351976b4
rearrange --with options
David J. MacKenzie <djm@gnu.org>
parents:
10036
diff
changeset
|
25 AC_ARG_WITH(pop, |
07c7351976b4
rearrange --with options
David J. MacKenzie <djm@gnu.org>
parents:
10036
diff
changeset
|
26 [ --with-pop support POP for mail retrieval], |
07c7351976b4
rearrange --with options
David J. MacKenzie <djm@gnu.org>
parents:
10036
diff
changeset
|
27 [AC_DEFINE(MAIL_USE_POP)]) |
07c7351976b4
rearrange --with options
David J. MacKenzie <djm@gnu.org>
parents:
10036
diff
changeset
|
28 AC_ARG_WITH(kerberos, |
07c7351976b4
rearrange --with options
David J. MacKenzie <djm@gnu.org>
parents:
10036
diff
changeset
|
29 [ --with-kerberos support Kerberos-authenticated POP], |
07c7351976b4
rearrange --with options
David J. MacKenzie <djm@gnu.org>
parents:
10036
diff
changeset
|
30 [AC_DEFINE(KERBEROS)]) |
07c7351976b4
rearrange --with options
David J. MacKenzie <djm@gnu.org>
parents:
10036
diff
changeset
|
31 AC_ARG_WITH(hesiod, |
07c7351976b4
rearrange --with options
David J. MacKenzie <djm@gnu.org>
parents:
10036
diff
changeset
|
32 [ --with-hesiod support Hesiod to get the POP server host], |
07c7351976b4
rearrange --with options
David J. MacKenzie <djm@gnu.org>
parents:
10036
diff
changeset
|
33 [AC_DEFINE(HESIOD)]) |
07c7351976b4
rearrange --with options
David J. MacKenzie <djm@gnu.org>
parents:
10036
diff
changeset
|
34 dnl This should be the last --with option, because --with-x is |
07c7351976b4
rearrange --with options
David J. MacKenzie <djm@gnu.org>
parents:
10036
diff
changeset
|
35 dnl added later on when we find the path of X, and it's best to |
07c7351976b4
rearrange --with options
David J. MacKenzie <djm@gnu.org>
parents:
10036
diff
changeset
|
36 dnl keep them together visually. |
8636 | 37 AC_ARG_WITH(x-toolkit, |
10037
07c7351976b4
rearrange --with options
David J. MacKenzie <djm@gnu.org>
parents:
10036
diff
changeset
|
38 [ --with-x-toolkit=KIT use an X toolkit (KIT = yes/lucid/athena/motif)], |
8636 | 39 [ case "${withval}" in |
40 y | ye | yes ) val=athena ;; | |
41 n | no ) val=no ;; | |
42 l | lu | luc | luci | lucid ) val=lucid ;; | |
43 a | at | ath | athe | athena ) val=athena ;; | |
9727
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
44 m | mo | mot | moti | motif ) val=motif ;; |
8674
bcfd4c7eecb0
*** empty log message ***
David J. MacKenzie <djm@gnu.org>
parents:
8636
diff
changeset
|
45 dnl These don't currently work. |
bcfd4c7eecb0
*** empty log message ***
David J. MacKenzie <djm@gnu.org>
parents:
8636
diff
changeset
|
46 dnl o | op | ope | open | open- | open-l | open-lo \ |
bcfd4c7eecb0
*** empty log message ***
David J. MacKenzie <djm@gnu.org>
parents:
8636
diff
changeset
|
47 dnl | open-loo | open-look ) val=open-look ;; |
8636 | 48 * ) |
8674
bcfd4c7eecb0
*** empty log message ***
David J. MacKenzie <djm@gnu.org>
parents:
8636
diff
changeset
|
49 dnl AC_MSG_ERROR([the \`--with-x-toolkit' option is supposed to have a value |
bcfd4c7eecb0
*** empty log message ***
David J. MacKenzie <djm@gnu.org>
parents:
8636
diff
changeset
|
50 dnl which is \`yes', \`no', \`lucid', \`athena', \`motif' or \`open-look'.]) |
8636 | 51 AC_MSG_ERROR([the \`--with-x-toolkit' option is supposed to have a value |
9727
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
52 which is \`yes', \`no', \`lucid', \`athena', or \`motif'. |
8636 | 53 Currently, \`yes', \`athena' and \`lucid' are synonyms.]) |
54 ;; | |
55 esac | |
56 with_x_toolkit=$val | |
57 ]) | |
58 | |
59 #### Make srcdir absolute, if it isn't already. It's important to | |
60 #### avoid running the path through pwd unnecessary, since pwd can | |
8729 | 61 #### give you automounter prefixes, which can go away. We do all this |
62 #### so Emacs can find its files when run uninstalled. | |
8636 | 63 case "${srcdir}" in |
64 /* ) ;; | |
65 . ) | |
66 ## We may be able to use the $PWD environment variable to make this | |
67 ## absolute. But sometimes PWD is inaccurate. | |
68 if test "${PWD}" != "" && test "`(cd ${PWD} ; sh -c pwd)`" = "`pwd`" ; | |
69 then | |
70 srcdir="$PWD" | |
71 else | |
72 srcdir="`(cd ${srcdir}; pwd)`" | |
73 fi | |
74 ;; | |
75 * ) srcdir="`(cd ${srcdir}; pwd)`" ;; | |
76 esac | |
77 | |
78 #### Check if the source directory already has a configured system in it. | |
79 if test `pwd` != `(cd ${srcdir} && pwd)` \ | |
80 && test -f "${srcdir}/src/config.h" ; then | |
81 AC_MSG_WARN([The directory tree \`${srcdir}' is being used | |
82 as a build directory right now; it has been configured in its own | |
83 right. To configure in another directory as well, you MUST | |
84 use GNU make. If you do not have GNU make, then you must | |
85 now do \`make distclean' in ${srcdir}, | |
86 and then run $0 again.]) | |
87 | |
9834
5be536b91960
protect character class with changequote
David J. MacKenzie <djm@gnu.org>
parents:
9832
diff
changeset
|
88 changequote(, )dnl |
8636 | 89 extrasub='/^VPATH[ ]*=/c\ |
9834
5be536b91960
protect character class with changequote
David J. MacKenzie <djm@gnu.org>
parents:
9832
diff
changeset
|
90 changequote([, ])dnl |
8636 | 91 vpath %.c $(srcdir)\ |
92 vpath %.h $(srcdir)\ | |
93 vpath %.y $(srcdir)\ | |
94 vpath %.l $(srcdir)\ | |
95 vpath %.s $(srcdir)\ | |
96 vpath %.in $(srcdir)' | |
97 fi | |
98 | |
99 #### Given the configuration name, set machfile and opsysfile to the | |
100 #### names of the m/*.h and s/*.h files we should use. | |
101 | |
102 ### Canonicalize the configuration name. | |
103 | |
104 AC_CANONICAL_HOST | |
105 canonical=$host | |
8680 | 106 configuration=$host_alias |
8636 | 107 |
108 changequote(, )dnl | |
109 | |
110 ### If you add support for a new configuration, add code to this | |
111 ### switch statement to recognize your configuration name and select | |
112 ### the appropriate operating system and machine description files. | |
113 | |
114 ### You would hope that you could choose an m/*.h file pretty much | |
115 ### based on the machine portion of the configuration name, and an s- | |
116 ### file based on the operating system portion. However, it turns out | |
117 ### that each m/*.h file is pretty manufacturer-specific - for | |
118 ### example, apollo.h, hp9000s300.h, mega68k, news.h, and tad68k are | |
119 ### all 68000 machines; mips.h, pmax.h, and news-risc are all MIPS | |
120 ### machines. So we basically have to have a special case for each | |
121 ### configuration name. | |
122 ### | |
123 ### As far as handling version numbers on operating systems is | |
124 ### concerned, make sure things will fail in a fixable way. If | |
125 ### /etc/MACHINES doesn't say anything about version numbers, be | |
126 ### prepared to handle anything reasonably. If version numbers | |
127 ### matter, be sure /etc/MACHINES says something about it. | |
128 ### | |
129 ### Eric Raymond says we should accept strings like "sysvr4" to mean | |
130 ### "System V Release 4"; he writes, "The old convention encouraged | |
131 ### confusion between `system' and `release' levels'." | |
132 | |
133 machine='' opsys='' unported=no | |
134 case "${canonical}" in | |
135 | |
136 ## NetBSD ports | |
137 *-*-netbsd* ) | |
138 opsys=netbsd | |
139 case "${canonical}" in | |
140 i[345]86-*-netbsd*) machine=intel386 ;; | |
141 m68k-*-netbsd*) | |
142 # This is somewhat bogus. | |
143 machine=hp9000s300 ;; | |
144 mips-*-netbsd*) machine=pmax ;; | |
145 ns32k-*-netbsd*) machine=ns32000 ;; | |
146 sparc-*-netbsd*) machine=sparc ;; | |
147 esac | |
148 ;; | |
149 | |
9727
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
150 ## Acorn RISCiX: |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
151 arm-acorn-riscix1.1* ) |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
152 machine=acorn opsys=riscix1-1 |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
153 ;; |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
154 arm-acorn-riscix1.2* | arm-acorn-riscix ) |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
155 machine=acorn opsys=riscix1-2 |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
156 ;; |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
157 |
8636 | 158 ## Alliant machines |
159 ## Strictly speaking, we need the version of the alliant operating | |
160 ## system to choose the right machine file, but currently the | |
161 ## configuration name doesn't tell us enough to choose the right | |
162 ## one; we need to give alliants their own operating system name to | |
163 ## do this right. When someone cares, they can help us. | |
164 fx80-alliant-* ) | |
165 machine=alliant4 opsys=bsd4-2 | |
166 ;; | |
167 i860-alliant-* ) | |
168 machine=alliant-2800 opsys=bsd4-3 | |
169 ;; | |
170 | |
9727
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
171 alpha-dec-osf* ) |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
172 machine=alpha opsys=osf1 |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
173 ;; |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
174 |
8636 | 175 ## Altos 3068 |
176 m68*-altos-sysv* ) | |
177 machine=altos opsys=usg5-2 | |
178 ;; | |
179 | |
180 ## Amdahl UTS | |
181 580-amdahl-sysv* ) | |
182 machine=amdahl opsys=usg5-2-2 | |
183 ;; | |
184 | |
185 ## Appallings - I mean, Apollos - running Domain | |
186 m68*-apollo* ) | |
9989
7f9ff47c2c9e
(m68*-apollo*): Use s/domain.h.
Richard M. Stallman <rms@gnu.org>
parents:
9932
diff
changeset
|
187 machine=apollo opsys=domain NON_GNU_CPP=/usr/lib/cpp |
8636 | 188 ;; |
189 | |
190 ## AT&T 3b2, 3b5, 3b15, 3b20 | |
191 we32k-att-sysv* ) | |
192 machine=att3b opsys=usg5-2-2 | |
193 ;; | |
194 | |
195 ## AT&T 3b1 - The Mighty Unix PC! | |
196 m68*-att-sysv* ) | |
197 machine=7300 opsys=usg5-2-2 | |
198 ;; | |
199 | |
200 ## Bull dpx20 | |
201 rs6000-bull-bosx* ) | |
202 machine=ibmrs6000 opsys=aix3-2 | |
203 ;; | |
204 | |
205 ## Bull dpx2 | |
206 m68*-bull-sysv3* ) | |
207 machine=dpx2 opsys=usg5-3 | |
208 ;; | |
209 | |
210 ## Bull sps7 | |
211 m68*-bull-sysv2* ) | |
212 machine=sps7 opsys=usg5-2 | |
213 ;; | |
214 | |
215 ## CCI 5/32, 6/32 -- see "Tahoe". | |
216 | |
217 ## Celerity | |
218 ## I don't know what configuration name to use for this; config.sub | |
219 ## doesn't seem to know anything about it. Hey, Celerity users, get | |
220 ## in touch with us! | |
221 celerity-celerity-bsd* ) | |
222 machine=celerity opsys=bsd4-2 | |
223 ;; | |
224 | |
225 ## Clipper | |
226 ## What operating systems does this chip run that Emacs has been | |
227 ## tested on? | |
228 clipper-* ) | |
229 machine=clipper | |
230 ## We'll use the catch-all code at the bottom to guess the | |
231 ## operating system. | |
232 ;; | |
233 | |
234 ## Convex | |
235 *-convex-bsd* | *-convex-convexos* ) | |
236 machine=convex opsys=bsd4-3 | |
237 ## Prevents suprious white space in makefiles - d.m.cooke@larc.nasa.gov | |
238 NON_GNU_CPP="cc -E -P" | |
239 ;; | |
240 | |
241 ## Cubix QBx/386 | |
242 i[345]86-cubix-sysv* ) | |
243 machine=intel386 opsys=usg5-3 | |
244 ;; | |
245 | |
246 ## Cydra 5 | |
247 cydra*-cydrome-sysv* ) | |
248 machine=cydra5 opsys=usg5-3 | |
249 ;; | |
250 | |
251 ## Data General AViiON Machines | |
252 m88k-dg-dgux5.4R3* | m88k-dg-dgux5.4.3* ) | |
253 machine=aviion opsys=dgux5-4r3 | |
254 ;; | |
255 m88k-dg-dgux5.4R2* | m88k-dg-dgux5.4.2* ) | |
256 machine=aviion opsys=dgux5-4r2 | |
257 ;; | |
258 m88k-dg-dgux* ) | |
259 machine=aviion opsys=dgux | |
260 ;; | |
261 | |
262 ## DECstations | |
263 mips-dec-ultrix[0-3].* | mips-dec-ultrix4.0* | mips-dec-bsd4.2* ) | |
264 machine=pmax opsys=bsd4-2 | |
265 ;; | |
266 mips-dec-ultrix* | mips-dec-bsd* ) | |
267 machine=pmax opsys=bsd4-3 | |
268 ;; | |
269 mips-dec-osf* ) | |
270 machine=pmax opsys=osf1 | |
271 ;; | |
272 | |
273 ## Motorola Delta machines | |
274 m68k-motorola-sysv* | m68000-motorola-sysv* ) | |
275 machine=delta opsys=usg5-3 | |
276 if test -z "`type gnucc | grep 'not found'`" | |
11475
64aa0d436a80
(m68k-motorola-sysv*): Determine which -m option to use with `gnucc'.
Richard M. Stallman <rms@gnu.org>
parents:
11257
diff
changeset
|
277 then |
64aa0d436a80
(m68k-motorola-sysv*): Determine which -m option to use with `gnucc'.
Richard M. Stallman <rms@gnu.org>
parents:
11257
diff
changeset
|
278 if test -s /etc/167config |
64aa0d436a80
(m68k-motorola-sysv*): Determine which -m option to use with `gnucc'.
Richard M. Stallman <rms@gnu.org>
parents:
11257
diff
changeset
|
279 then CC="gnucc -m68040" |
64aa0d436a80
(m68k-motorola-sysv*): Determine which -m option to use with `gnucc'.
Richard M. Stallman <rms@gnu.org>
parents:
11257
diff
changeset
|
280 else CC="gnucc -m68881" |
64aa0d436a80
(m68k-motorola-sysv*): Determine which -m option to use with `gnucc'.
Richard M. Stallman <rms@gnu.org>
parents:
11257
diff
changeset
|
281 fi |
8636 | 282 else |
283 if test -z "`type gcc | grep 'not found'`" | |
284 then CC=gcc | |
285 else CC=cc | |
286 fi | |
287 fi | |
288 ;; | |
289 m88k-motorola-sysv4* ) | |
10837
0e8db919d6bd
(m88k-motorola-sysv4*): Use usg5-4-2.
Richard M. Stallman <rms@gnu.org>
parents:
10816
diff
changeset
|
290 # jbotte@bnr.ca says that UNIX_System_V <hostName> 4.0 R40V4.3 m88k mc88110 |
0e8db919d6bd
(m88k-motorola-sysv4*): Use usg5-4-2.
Richard M. Stallman <rms@gnu.org>
parents:
10816
diff
changeset
|
291 # needs POSIX_SIGNALS and therefore needs usg5-4-2. |
0e8db919d6bd
(m88k-motorola-sysv4*): Use usg5-4-2.
Richard M. Stallman <rms@gnu.org>
parents:
10816
diff
changeset
|
292 # I hope there are not other 4.0 versions for this machine |
0e8db919d6bd
(m88k-motorola-sysv4*): Use usg5-4-2.
Richard M. Stallman <rms@gnu.org>
parents:
10816
diff
changeset
|
293 # which really need usg5-4 instead. |
0e8db919d6bd
(m88k-motorola-sysv4*): Use usg5-4-2.
Richard M. Stallman <rms@gnu.org>
parents:
10816
diff
changeset
|
294 machine=delta88k opsys=usg5-4-2 |
8636 | 295 ;; |
296 m88k-motorola-sysv* | m88k-motorola-m88kbcs* ) | |
297 machine=delta88k opsys=usg5-3 | |
298 ;; | |
299 | |
300 ## Dual machines | |
301 m68*-dual-sysv* ) | |
302 machine=dual opsys=usg5-2 | |
303 ;; | |
304 m68*-dual-uniplus* ) | |
305 machine=dual opsys=unipl5-2 | |
306 ;; | |
307 | |
308 ## Elxsi 6400 | |
309 elxsi-elxsi-sysv* ) | |
310 machine=elxsi opsys=usg5-2 | |
311 ;; | |
312 | |
313 ## Encore machines | |
314 ns16k-encore-bsd* ) | |
315 machine=ns16000 opsys=umax | |
316 ;; | |
317 | |
318 ## The GEC 93 - apparently, this port isn't really finished yet. | |
319 | |
320 ## Gould Power Node and NP1 | |
321 pn-gould-bsd4.2* ) | |
322 machine=gould opsys=bsd4-2 | |
323 ;; | |
324 pn-gould-bsd4.3* ) | |
325 machine=gould opsys=bsd4-3 | |
326 ;; | |
327 np1-gould-bsd* ) | |
328 machine=gould-np1 opsys=bsd4-3 | |
329 ;; | |
330 | |
331 ## Harris Night Hawk machines running CX/UX (a 5000 looks just like a 4000 | |
332 ## as far as Emacs is concerned). | |
333 m88k-harris-cxux* ) | |
334 # Build needs to be different on 7.0 and later releases | |
335 case "`uname -r`" in | |
336 [56].[0-9] ) machine=nh4000 opsys=cxux ;; | |
337 [7].[0-9] ) machine=nh4000 opsys=cxux7 ;; | |
338 esac | |
339 ;; | |
340 ## Harris ecx or gcx running CX/UX (Series 1200, Series 3000) | |
341 m68k-harris-cxux* ) | |
342 machine=nh3000 opsys=cxux | |
343 ;; | |
344 | |
345 ## Honeywell XPS100 | |
346 xps*-honeywell-sysv* ) | |
347 machine=xps100 opsys=usg5-2 | |
348 ;; | |
349 | |
350 ## HP 9000 series 200 or 300 | |
351 m68*-hp-bsd* ) | |
352 machine=hp9000s300 opsys=bsd4-3 | |
353 ;; | |
354 ## HP/UX 7, 8 and 9 are supported on these machines. | |
355 m68*-hp-hpux* ) | |
356 case "`uname -r`" in | |
357 ## Someone's system reports A.B8.05 for this. | |
358 ## I wonder what other possibilities there are. | |
359 *.B8.* ) machine=hp9000s300 opsys=hpux8 ;; | |
360 *.08.* ) machine=hp9000s300 opsys=hpux8 ;; | |
361 *.09.* ) machine=hp9000s300 opsys=hpux9 ;; | |
362 *) machine=hp9000s300 opsys=hpux ;; | |
363 esac | |
364 ;; | |
365 | |
366 ## HP 9000 series 700 and 800, running HP/UX | |
367 hppa*-hp-hpux7* ) | |
368 machine=hp800 opsys=hpux | |
369 ;; | |
370 hppa*-hp-hpux8* ) | |
371 machine=hp800 opsys=hpux8 | |
372 ;; | |
373 hppa*-hp-hpux9shr* ) | |
374 machine=hp800 opsys=hpux9shr | |
375 ;; | |
376 hppa*-hp-hpux9* ) | |
377 machine=hp800 opsys=hpux9 | |
378 ;; | |
379 | |
380 ## HP 9000 series 700 and 800, running HP/UX | |
381 hppa*-hp-hpux* ) | |
382 ## Cross-compilation? Nah! | |
383 case "`uname -r`" in | |
384 ## Someone's system reports A.B8.05 for this. | |
385 ## I wonder what other possibilities there are. | |
386 *.B8.* ) machine=hp800 opsys=hpux8 ;; | |
387 *.08.* ) machine=hp800 opsys=hpux8 ;; | |
388 *.09.* ) machine=hp800 opsys=hpux9 ;; | |
389 *) machine=hp800 opsys=hpux ;; | |
390 esac | |
391 ;; | |
392 | |
393 ## Orion machines | |
394 orion-orion-bsd* ) | |
395 machine=orion opsys=bsd4-2 | |
396 ;; | |
397 clipper-orion-bsd* ) | |
398 machine=orion105 opsys=bsd4-2 | |
399 ;; | |
400 | |
401 ## IBM machines | |
402 i[345]86-ibm-aix1.1* ) | |
403 machine=ibmps2-aix opsys=usg5-2-2 | |
404 ;; | |
405 i[345]86-ibm-aix1.[23]* | i[345]86-ibm-aix* ) | |
406 machine=ibmps2-aix opsys=usg5-3 | |
407 ;; | |
408 i370-ibm-aix*) | |
409 machine=ibm370aix opsys=usg5-3 | |
410 ;; | |
8708
6fef8c63f200
keep up to date with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8707
diff
changeset
|
411 rs6000-ibm-aix3.1* | powerpc-ibm-aix3.1* ) |
8636 | 412 machine=ibmrs6000 opsys=aix3-1 |
413 ;; | |
8708
6fef8c63f200
keep up to date with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8707
diff
changeset
|
414 rs6000-ibm-aix3.2.5 | powerpc-ibm-aix3.2.5 ) |
8636 | 415 machine=ibmrs6000 opsys=aix3-2-5 |
416 ;; | |
10152
030853f9aa93
(rs6000-ibm-aix4.1*): New alternative.
Richard M. Stallman <rms@gnu.org>
parents:
10098
diff
changeset
|
417 rs6000-ibm-aix4.1* | powerpc-ibm-aix4.1* ) |
030853f9aa93
(rs6000-ibm-aix4.1*): New alternative.
Richard M. Stallman <rms@gnu.org>
parents:
10098
diff
changeset
|
418 machine=ibmrs6000 opsys=aix4-1 |
030853f9aa93
(rs6000-ibm-aix4.1*): New alternative.
Richard M. Stallman <rms@gnu.org>
parents:
10098
diff
changeset
|
419 ;; |
030853f9aa93
(rs6000-ibm-aix4.1*): New alternative.
Richard M. Stallman <rms@gnu.org>
parents:
10098
diff
changeset
|
420 rs6000-ibm-aix4* | powerpc-ibm-aix4* ) |
030853f9aa93
(rs6000-ibm-aix4.1*): New alternative.
Richard M. Stallman <rms@gnu.org>
parents:
10098
diff
changeset
|
421 machine=ibmrs6000 opsys=aix4 |
030853f9aa93
(rs6000-ibm-aix4.1*): New alternative.
Richard M. Stallman <rms@gnu.org>
parents:
10098
diff
changeset
|
422 ;; |
8708
6fef8c63f200
keep up to date with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8707
diff
changeset
|
423 rs6000-ibm-aix* | powerpc-ibm-aix* ) |
8636 | 424 machine=ibmrs6000 opsys=aix3-2 |
425 ;; | |
426 romp-ibm-bsd4.3* ) | |
427 machine=ibmrt opsys=bsd4-3 | |
428 ;; | |
429 romp-ibm-bsd4.2* ) | |
430 machine=ibmrt opsys=bsd4-2 | |
431 ;; | |
432 romp-ibm-aos4.3* ) | |
433 machine=ibmrt opsys=bsd4-3 | |
434 ;; | |
435 romp-ibm-aos4.2* ) | |
436 machine=ibmrt opsys=bsd4-2 | |
437 ;; | |
438 romp-ibm-aos* ) | |
439 machine=ibmrt opsys=bsd4-3 | |
440 ;; | |
441 romp-ibm-bsd* ) | |
442 machine=ibmrt opsys=bsd4-3 | |
443 ;; | |
444 romp-ibm-aix* ) | |
445 machine=ibmrt-aix opsys=usg5-2-2 | |
446 ;; | |
447 | |
448 ## Integrated Solutions `Optimum V' | |
449 m68*-isi-bsd4.2* ) | |
450 machine=isi-ov opsys=bsd4-2 | |
451 ;; | |
452 m68*-isi-bsd4.3* ) | |
453 machine=isi-ov opsys=bsd4-3 | |
454 ;; | |
455 | |
456 ## Intel 386 machines where we do care about the manufacturer | |
457 i[345]86-intsys-sysv* ) | |
458 machine=is386 opsys=usg5-2-2 | |
459 ;; | |
460 | |
461 ## Prime EXL | |
462 i[345]86-prime-sysv* ) | |
463 machine=i386 opsys=usg5-3 | |
464 ;; | |
465 | |
9727
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
466 ## Sequent Symmetry running Dynix |
8636 | 467 i[345]86-sequent-bsd* ) |
468 machine=symmetry opsys=bsd4-3 | |
469 ;; | |
470 | |
9727
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
471 ## Sequent Symmetry running DYNIX/ptx |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
472 ## Use the old cpp rather than the newer ANSI one. |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
473 i[345]86-sequent-ptx* ) |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
474 machine=sequent-ptx opsys=ptx |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
475 NON_GNU_CPP="/lib/cpp" |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
476 ;; |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
477 |
8636 | 478 ## Unspecified sysv on an ncr machine defaults to svr4.2. |
479 ## (Plain usg5-4 doesn't turn on POSIX signals, which we need.) | |
480 i[345]86-ncr-sysv* ) | |
11257 | 481 machine=ncr386 opsys=usg5-4-2 |
8636 | 482 ;; |
483 | |
9897
74814eb19d67
(i860-intel-osf1*): New alternative.
Richard M. Stallman <rms@gnu.org>
parents:
9875
diff
changeset
|
484 ## Intel Paragon OSF/1 |
74814eb19d67
(i860-intel-osf1*): New alternative.
Richard M. Stallman <rms@gnu.org>
parents:
9875
diff
changeset
|
485 i860-intel-osf1* ) |
74814eb19d67
(i860-intel-osf1*): New alternative.
Richard M. Stallman <rms@gnu.org>
parents:
9875
diff
changeset
|
486 machine=paragon opsys=osf1 NON_GNU_CPP=/usr/mach/lib/cpp |
74814eb19d67
(i860-intel-osf1*): New alternative.
Richard M. Stallman <rms@gnu.org>
parents:
9875
diff
changeset
|
487 ;; |
74814eb19d67
(i860-intel-osf1*): New alternative.
Richard M. Stallman <rms@gnu.org>
parents:
9875
diff
changeset
|
488 |
8636 | 489 ## Intel 860 |
490 i860-*-sysv4* ) | |
491 machine=i860 opsys=usg5-4 | |
492 NON_GNU_CC="/bin/cc" # Ie, not the one in /usr/ucb/cc. | |
493 NON_GNU_CPP="/usr/ccs/lib/cpp" # cc -E tokenizes macro expansion. | |
494 ;; | |
495 | |
496 ## Masscomp machines | |
497 m68*-masscomp-rtu* ) | |
498 machine=masscomp opsys=rtu | |
499 ;; | |
500 | |
501 ## Megatest machines | |
502 m68*-megatest-bsd* ) | |
503 machine=mega68 opsys=bsd4-2 | |
504 ;; | |
505 | |
506 ## Workstations sold by MIPS | |
507 ## This is not necessarily all workstations using the MIPS processor - | |
508 ## Irises are produced by SGI, and DECstations by DEC. | |
509 | |
510 ## etc/MACHINES lists mips.h and mips4.h as possible machine files, | |
511 ## and usg5-2-2 and bsd4-3 as possible OS files. The only guidance | |
512 ## it gives for choosing between the alternatives seems to be "Use | |
513 ## -machine=mips4 for RISCOS version 4; use -opsystem=bsd4-3 with | |
514 ## the BSD world." I'll assume that these are instructions for | |
515 ## handling two odd situations, and that every other situation | |
516 ## should use mips.h and usg5-2-2, they being listed first. | |
517 mips-mips-usg* ) | |
518 machine=mips4 | |
519 ## Fall through to the general code at the bottom to decide on the OS. | |
520 ;; | |
521 mips-mips-riscos4* ) | |
522 machine=mips4 opsys=bsd4-3 | |
523 NON_GNU_CC="cc -systype bsd43" | |
524 NON_GNU_CPP="cc -systype bsd43 -E" | |
525 ;; | |
526 mips-mips-bsd* ) | |
527 machine=mips opsys=bsd4-3 | |
528 ;; | |
529 mips-mips-* ) | |
530 machine=mips opsys=usg5-2-2 | |
531 ;; | |
532 | |
533 ## NeXT | |
534 m68*-next-* | i[345]86-next-* ) | |
535 machine=next opsys=mach2 | |
536 ;; | |
537 | |
538 ## The complete machine from National Semiconductor | |
539 ns32k-ns-genix* ) | |
540 machine=ns32000 opsys=usg5-2 | |
541 ;; | |
542 | |
543 ## NCR machines | |
544 m68*-ncr-sysv2* | m68*-ncr-sysvr2* ) | |
545 machine=tower32 opsys=usg5-2-2 | |
546 ;; | |
547 m68*-ncr-sysv3* | m68*-ncr-sysvr3* ) | |
548 machine=tower32v3 opsys=usg5-3 | |
549 ;; | |
550 | |
551 ## Nixdorf Targon 31 | |
552 m68*-nixdorf-sysv* ) | |
553 machine=targon31 opsys=usg5-2-2 | |
554 ;; | |
555 | |
556 ## Nu (TI or LMI) | |
557 m68*-nu-sysv* ) | |
558 machine=nu opsys=usg5-2 | |
559 ;; | |
560 | |
561 ## Plexus | |
562 m68*-plexus-sysv* ) | |
563 machine=plexus opsys=usg5-2 | |
564 ;; | |
565 | |
566 ## Pyramid machines | |
567 ## I don't really have any idea what sort of processor the Pyramid has, | |
568 ## so I'm assuming it is its own architecture. | |
569 pyramid-pyramid-bsd* ) | |
570 machine=pyramid opsys=bsd4-2 | |
571 ;; | |
572 | |
573 ## Sequent Balance | |
574 ns32k-sequent-bsd4.2* ) | |
575 machine=sequent opsys=bsd4-2 | |
576 ;; | |
577 ns32k-sequent-bsd4.3* ) | |
578 machine=sequent opsys=bsd4-3 | |
579 ;; | |
580 | |
581 ## Siemens Nixdorf | |
582 mips-siemens-sysv* ) | |
583 machine=mips-siemens opsys=usg5-4 | |
584 NON_GNU_CC=/usr/ccs/bin/cc | |
585 NON_GNU_CPP=/usr/ccs/lib/cpp | |
586 ;; | |
587 | |
588 ## Silicon Graphics machines | |
589 ## Iris 2500 and Iris 2500 Turbo (aka the Iris 3030) | |
590 m68*-sgi-iris3.5* ) | |
591 machine=irist opsys=iris3-5 | |
592 ;; | |
593 m68*-sgi-iris3.6* | m68*-sgi-iris*) | |
594 machine=irist opsys=iris3-6 | |
595 ;; | |
596 ## Iris 4D | |
597 mips-sgi-irix3* ) | |
598 machine=iris4d opsys=irix3-3 | |
599 ;; | |
9898
cd6ad88c82fd
(mips-sgi-irix5.[01]*): Distinguish from irix5*.
Richard M. Stallman <rms@gnu.org>
parents:
9897
diff
changeset
|
600 mips-sgi-irix4* ) |
cd6ad88c82fd
(mips-sgi-irix5.[01]*): Distinguish from irix5*.
Richard M. Stallman <rms@gnu.org>
parents:
9897
diff
changeset
|
601 machine=iris4d opsys=irix4-0 |
cd6ad88c82fd
(mips-sgi-irix5.[01]*): Distinguish from irix5*.
Richard M. Stallman <rms@gnu.org>
parents:
9897
diff
changeset
|
602 ;; |
10736
619269498881
(mips-sgi-irix6): New configuration.
Richard M. Stallman <rms@gnu.org>
parents:
10632
diff
changeset
|
603 mips-sgi-irix6* ) |
619269498881
(mips-sgi-irix6): New configuration.
Richard M. Stallman <rms@gnu.org>
parents:
10632
diff
changeset
|
604 machine=iris4d opsys=irix6-0 |
619269498881
(mips-sgi-irix6): New configuration.
Richard M. Stallman <rms@gnu.org>
parents:
10632
diff
changeset
|
605 ;; |
9898
cd6ad88c82fd
(mips-sgi-irix5.[01]*): Distinguish from irix5*.
Richard M. Stallman <rms@gnu.org>
parents:
9897
diff
changeset
|
606 mips-sgi-irix5.[01]* ) |
8636 | 607 machine=iris4d opsys=irix5-0 |
608 ;; | |
9898
cd6ad88c82fd
(mips-sgi-irix5.[01]*): Distinguish from irix5*.
Richard M. Stallman <rms@gnu.org>
parents:
9897
diff
changeset
|
609 mips-sgi-irix5* | mips-sgi-irix* ) |
cd6ad88c82fd
(mips-sgi-irix5.[01]*): Distinguish from irix5*.
Richard M. Stallman <rms@gnu.org>
parents:
9897
diff
changeset
|
610 machine=iris4d opsys=irix5-2 |
8636 | 611 ;; |
612 | |
613 ## SONY machines | |
614 m68*-sony-bsd4.2* ) | |
615 machine=news opsys=bsd4-2 | |
616 ;; | |
617 m68*-sony-bsd4.3* ) | |
618 machine=news opsys=bsd4-3 | |
619 ;; | |
9832
f0c8517d9d8a
Accept `news' as a synonym for `newsos'.
Karl Heuer <kwzh@gnu.org>
parents:
9744
diff
changeset
|
620 m68*-sony-newsos3* | m68*-sony-news3*) |
8636 | 621 machine=news opsys=bsd4-3 |
622 ;; | |
9832
f0c8517d9d8a
Accept `news' as a synonym for `newsos'.
Karl Heuer <kwzh@gnu.org>
parents:
9744
diff
changeset
|
623 mips-sony-bsd* | mips-sony-newsos4* | mips-sony-news4*) |
8636 | 624 machine=news-risc opsys=bsd4-3 |
625 ;; | |
9832
f0c8517d9d8a
Accept `news' as a synonym for `newsos'.
Karl Heuer <kwzh@gnu.org>
parents:
9744
diff
changeset
|
626 mips-sony-news* ) |
8636 | 627 machine=news-risc opsys=newsos5 |
628 ;; | |
629 | |
630 ## Stride | |
631 m68*-stride-sysv* ) | |
632 machine=stride opsys=usg5-2 | |
633 ;; | |
634 | |
635 ## Suns | |
636 *-sun-sunos* | *-sun-bsd* | *-sun-solaris* | i[345]86-*-solaris2* | i[345]86-*-sunos5* ) | |
637 case "${canonical}" in | |
638 m68*-sunos1* ) machine=sun1 ;; | |
639 m68*-sunos2* ) machine=sun2 ;; | |
640 m68* ) machine=sun3 ;; | |
641 i[345]86-sun-sunos[34]* ) machine=sun386 ;; | |
642 i[345]86-*-* ) machine=intel386 ;; | |
643 sparc* ) machine=sparc ;; | |
644 * ) unported=yes ;; | |
645 esac | |
646 case "${canonical}" in | |
647 ## The Sun386 didn't get past 4.0. | |
648 i[345]86-*-sunos4 ) opsys=sunos4-0 ;; | |
649 *-sunos4.0* ) opsys=sunos4-0 ;; | |
650 *-sunos4.1.3* ) opsys=sunos4-1-3 | |
651 NON_GCC_TEST_OPTIONS=-Bstatic | |
652 GCC_TEST_OPTIONS=-static | |
10333
67a1a793add2
On sunos4.1.3 and sunus4shr, set NON_GNU_CPP.
Richard M. Stallman <rms@gnu.org>
parents:
10152
diff
changeset
|
653 NON_GNU_CPP=/usr/lib/cpp |
8636 | 654 ;; |
10333
67a1a793add2
On sunos4.1.3 and sunus4shr, set NON_GNU_CPP.
Richard M. Stallman <rms@gnu.org>
parents:
10152
diff
changeset
|
655 *-sunos4shr* ) opsys=sunos4shr |
67a1a793add2
On sunos4.1.3 and sunus4shr, set NON_GNU_CPP.
Richard M. Stallman <rms@gnu.org>
parents:
10152
diff
changeset
|
656 NON_GNU_CPP=/usr/lib/cpp |
67a1a793add2
On sunos4.1.3 and sunus4shr, set NON_GNU_CPP.
Richard M. Stallman <rms@gnu.org>
parents:
10152
diff
changeset
|
657 ;; |
8636 | 658 *-sunos4* | *-sunos ) opsys=sunos4-1 |
659 NON_GCC_TEST_OPTIONS=-Bstatic | |
660 GCC_TEST_OPTIONS=-static | |
661 ;; | |
662 *-sunos5.3* | *-solaris2.3* ) | |
663 opsys=sol2-3 | |
664 NON_GNU_CPP=/usr/ccs/lib/cpp | |
665 ;; | |
666 *-sunos5.4* | *-solaris2.4* ) | |
667 opsys=sol2-4 | |
668 NON_GNU_CPP=/usr/ccs/lib/cpp | |
669 ;; | |
670 *-sunos5* | *-solaris* ) | |
671 opsys=sol2 | |
672 NON_GNU_CPP=/usr/ccs/lib/cpp | |
673 ;; | |
674 * ) opsys=bsd4-2 ;; | |
675 esac | |
676 ;; | |
677 | |
678 ## Tadpole 68k | |
679 m68*-tadpole-sysv* ) | |
680 machine=tad68k opsys=usg5-3 | |
681 ;; | |
682 | |
683 ## Tahoe machines | |
684 tahoe-tahoe-bsd4.2* ) | |
685 machine=tahoe opsys=bsd4-2 | |
686 ;; | |
687 tahoe-tahoe-bsd4.3* ) | |
688 machine=tahoe opsys=bsd4-3 | |
689 ;; | |
690 | |
691 ## Tandem Integrity S2 | |
692 mips-tandem-sysv* ) | |
693 machine=tandem-s2 opsys=usg5-3 | |
694 ;; | |
695 | |
696 ## Tektronix XD88 | |
697 m88k-tektronix-sysv3* ) | |
698 machine=tekxd88 opsys=usg5-3 | |
699 ;; | |
700 | |
701 ## Tektronix 16000 box (6130?) | |
702 ns16k-tektronix-bsd* ) | |
703 machine=ns16000 opsys=bsd4-2 | |
704 ;; | |
705 ## Tektronix 4300 | |
706 ## src/m/tek4300.h hints that this is a m68k machine. | |
707 m68*-tektronix-bsd* ) | |
708 machine=tek4300 opsys=bsd4-3 | |
709 ;; | |
710 | |
711 ## Titan P2 or P3 | |
712 ## We seem to have lost the machine-description file titan.h! | |
713 titan-titan-sysv* ) | |
714 machine=titan opsys=usg5-3 | |
715 ;; | |
716 | |
717 ## Ustation E30 (SS5E) | |
718 m68*-unisys-uniplus* ) | |
719 machine=ustation opsystem=unipl5-2 | |
720 ;; | |
721 | |
722 ## Vaxen. | |
723 vax-dec-* ) | |
724 machine=vax | |
725 case "${canonical}" in | |
726 *-bsd4.1* ) opsys=bsd4-1 ;; | |
727 *-bsd4.2* | *-ultrix[0-3].* | *-ultrix4.0* ) opsys=bsd4-2 ;; | |
728 *-bsd4.3* | *-ultrix* ) opsys=bsd4-3 ;; | |
729 *-bsd386* | *-bsdi* ) opsys=bsd386 ;; | |
730 *-sysv[01]* | *-sysvr[01]* ) opsys=usg5-0 ;; | |
731 *-sysv2* | *-sysvr2* ) opsys=usg5-2 ;; | |
732 *-vms* ) opsys=vms ;; | |
733 * ) unported=yes | |
734 esac | |
735 ;; | |
736 | |
737 ## Whitechapel MG1 | |
738 ns16k-whitechapel-* ) | |
739 machine=mg1 | |
740 ## We don't know what sort of OS runs on these; we'll let the | |
741 ## operating system guessing code below try. | |
742 ;; | |
743 | |
744 ## Wicat | |
745 m68*-wicat-sysv* ) | |
746 machine=wicat opsys=usg5-2 | |
747 ;; | |
748 | |
749 ## Intel 386 machines where we don't care about the manufacturer | |
750 i[345]86-*-* ) | |
751 machine=intel386 | |
752 case "${canonical}" in | |
753 *-isc1.* | *-isc2.[01]* ) opsys=386-ix ;; | |
754 *-isc2.2* ) opsys=isc2-2 ;; | |
755 *-isc4.0* ) opsys=isc4-0 ;; | |
10333
67a1a793add2
On sunos4.1.3 and sunus4shr, set NON_GNU_CPP.
Richard M. Stallman <rms@gnu.org>
parents:
10152
diff
changeset
|
756 *-isc4.* ) opsys=isc4-1 ;; |
8636 | 757 *-isc* ) opsys=isc3-0 ;; |
758 *-esix5* ) opsys=esix5r4; NON_GNU_CPP=/usr/lib/cpp ;; | |
759 *-esix* ) opsys=esix ;; | |
760 *-xenix* ) opsys=xenix ;; | |
761 *-linux* ) opsys=linux ;; | |
762 *-sco3.2v4* ) opsys=sco4 ; NON_GNU_CPP=/lib/cpp ;; | |
763 *-bsd386* | *-bsdi* ) opsys=bsd386 ;; | |
764 *-386bsd* ) opsys=386bsd ;; | |
765 *-freebsd* ) opsys=freebsd ;; | |
766 *-nextstep* ) opsys=mach2 ;; | |
767 ## Otherwise, we'll fall through to the generic opsys code at the bottom. | |
768 esac | |
769 ;; | |
770 | |
771 * ) | |
772 unported=yes | |
773 ;; | |
774 esac | |
775 | |
776 ### If the code above didn't choose an operating system, just choose | |
777 ### an operating system based on the configuration name. You really | |
778 ### only want to use this when you have no idea what the right | |
779 ### operating system is; if you know what operating systems a machine | |
780 ### runs, it's cleaner to make it explicit in the case statement | |
781 ### above. | |
782 if test x"${opsys}" = x; then | |
783 case "${canonical}" in | |
784 *-gnu* ) opsys=gnu ;; | |
785 *-bsd4.[01] ) opsys=bsd4-1 ;; | |
786 *-bsd4.2 ) opsys=bsd4-2 ;; | |
787 *-bsd4.3 ) opsys=bsd4-3 ;; | |
788 *-sysv0 | *-sysvr0 ) opsys=usg5-0 ;; | |
789 *-sysv2 | *-sysvr2 ) opsys=usg5-2 ;; | |
790 *-sysv2.2 | *-sysvr2.2 ) opsys=usg5-2-2 ;; | |
791 *-sysv3 | *-sysvr3 ) opsys=usg5-3 ;; | |
792 *-sysv4 | *-sysvr4 ) opsys=usg5-4 ;; | |
793 *-sysv4.1 | *-sysvr4.1 ) | |
794 NON_GNU_CPP=/usr/lib/cpp | |
795 opsys=usg5-4 ;; | |
10152
030853f9aa93
(rs6000-ibm-aix4.1*): New alternative.
Richard M. Stallman <rms@gnu.org>
parents:
10098
diff
changeset
|
796 *-sysv4.2 | *-sysvr4.2 ) |
030853f9aa93
(rs6000-ibm-aix4.1*): New alternative.
Richard M. Stallman <rms@gnu.org>
parents:
10098
diff
changeset
|
797 if [ x$NON_GNU_CPP = x ]; then |
030853f9aa93
(rs6000-ibm-aix4.1*): New alternative.
Richard M. Stallman <rms@gnu.org>
parents:
10098
diff
changeset
|
798 NON_GNU_CPP=/usr/ccs/lib/cpp |
030853f9aa93
(rs6000-ibm-aix4.1*): New alternative.
Richard M. Stallman <rms@gnu.org>
parents:
10098
diff
changeset
|
799 fi |
030853f9aa93
(rs6000-ibm-aix4.1*): New alternative.
Richard M. Stallman <rms@gnu.org>
parents:
10098
diff
changeset
|
800 opsys=usg5-4-2 ;; |
8636 | 801 * ) |
802 unported=yes | |
803 ;; | |
804 esac | |
805 fi | |
806 | |
807 changequote([, ])dnl | |
808 | |
809 if test $unported = yes; then | |
810 AC_MSG_ERROR([Emacs hasn't been ported to \`${canonical}' systems. | |
811 Check \`etc/MACHINES' for recognized configuration names.]) | |
812 fi | |
813 | |
814 machfile="m/${machine}.h" | |
815 opsysfile="s/${opsys}.h" | |
816 | |
817 | |
818 #### Choose a compiler. | |
819 test -n "$CC" && cc_specified=yes | |
820 | |
821 case ${with_gcc} in | |
822 "yes" ) CC="gcc" GCC=yes ;; | |
8730 | 823 "no" ) : ${CC=cc} ;; |
8636 | 824 * ) AC_PROG_CC |
825 esac | |
826 | |
827 # On Suns, sometimes $CPP names a directory. | |
828 if test -n "$CPP" && test -d "$CPP"; then | |
829 CPP= | |
830 fi | |
831 | |
832 #### Some systems specify a CPP to use unless we are using GCC. | |
833 #### Now that we know whether we are using GCC, we can decide whether | |
834 #### to use that one. | |
835 if test "x$NON_GNU_CPP" != x && test x$GCC != xyes && test "x$CPP" = x | |
836 then | |
837 CPP="$NON_GNU_CPP" | |
838 fi | |
839 | |
840 #### Some systems specify a CC to use unless we are using GCC. | |
841 #### Now that we know whether we are using GCC, we can decide whether | |
842 #### to use that one. | |
843 if test "x$NON_GNU_CC" != x && test x$GCC != xyes && | |
844 test x$cc_specified != xyes | |
845 then | |
846 CC="$NON_GNU_CC" | |
847 fi | |
848 | |
849 if test x$GCC = xyes && test "x$GCC_TEST_OPTIONS" != x | |
850 then | |
851 CC="$CC $GCC_TEST_OPTIONS" | |
852 fi | |
853 | |
854 if test x$GCC = x && test "x$NON_GCC_TEST_OPTIONS" != x | |
855 then | |
856 CC="$CC $NON_GCC_TEST_OPTIONS" | |
857 fi | |
858 | |
859 #### Some other nice autoconf tests. If you add a test here which | |
860 #### should make an entry in src/config.h, don't forget to add an | |
861 #### #undef clause to src/config.h.in for autoconf to modify. | |
862 | |
863 dnl checks for programs | |
8730 | 864 AC_PROG_LN_S |
8636 | 865 AC_PROG_CPP |
866 AC_PROG_INSTALL | |
867 AC_PROG_YACC | |
868 | |
9727
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
869 dnl checks for Unix variants |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
870 AC_AIX |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
871 |
8636 | 872 dnl checks for header files |
10530 | 873 AC_CHECK_HEADERS(sys/select.h sys/timeb.h sys/time.h unistd.h utime.h) |
8730 | 874 AC_HEADER_STDC |
875 AC_HEADER_TIME | |
876 AC_DECL_SYS_SIGLIST | |
8636 | 877 |
9727
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
878 dnl Some systems have utime.h but don't declare the struct anyplace. |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
879 AC_MSG_CHECKING(for struct utimbuf) |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
880 AC_TRY_COMPILE([#ifdef TIME_WITH_SYS_TIME |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
881 #include <sys/time.h> |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
882 #include <time.h> |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
883 #else |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
884 #ifdef HAVE_SYS_TIME_H |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
885 #include <sys/time.h> |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
886 #else |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
887 #include <time.h> |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
888 #endif |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
889 #endif |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
890 #ifdef HAVE_UTIME_H |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
891 #include <utime.h> |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
892 #endif], [static struct utimbuf x; x.actime = x.modtime;], |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
893 [AC_MSG_RESULT(yes) |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
894 AC_DEFINE(HAVE_STRUCT_UTIMBUF)], |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
895 AC_MSG_RESULT(no)) |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
896 |
8636 | 897 dnl checks for typedefs |
8730 | 898 AC_TYPE_SIGNAL |
8636 | 899 |
9727
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
900 AC_MSG_CHECKING(for struct timeval) |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
901 AC_TRY_COMPILE([#ifdef TIME_WITH_SYS_TIME |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
902 #include <sys/time.h> |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
903 #include <time.h> |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
904 #else |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
905 #ifdef HAVE_SYS_TIME_H |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
906 #include <sys/time.h> |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
907 #else |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
908 #include <time.h> |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
909 #endif |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
910 #endif], [static struct timeval x; x.tv_sec = x.tv_usec;], |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
911 [AC_MSG_RESULT(yes) |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
912 AC_DEFINE(HAVE_TIMEVAL)], |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
913 AC_MSG_RESULT(no)) |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
914 |
8636 | 915 dnl checks for structure members |
916 AC_STRUCT_TM | |
8730 | 917 AC_STRUCT_TIMEZONE |
8636 | 918 |
919 dnl checks for compiler characteristics | |
8730 | 920 AC_C_CONST |
8636 | 921 |
922 dnl check for Make feature | |
8730 | 923 AC_PROG_MAKE_SET |
8636 | 924 |
925 dnl checks for operating system services | |
8730 | 926 AC_SYS_LONG_FILE_NAMES |
8636 | 927 |
928 #### Choose a window system. | |
929 | |
8730 | 930 AC_PATH_X |
8707 | 931 if test "$no_x" = yes; then |
932 window_system=none | |
933 else | |
934 window_system=x11 | |
935 fi | |
8636 | 936 |
9910
27b7a34664e3
Don't add -I, -L, -R options for cc if their
David J. MacKenzie <djm@gnu.org>
parents:
9898
diff
changeset
|
937 if test "${x_libraries}" != NONE && test -n "${x_libraries}"; then |
27b7a34664e3
Don't add -I, -L, -R options for cc if their
David J. MacKenzie <djm@gnu.org>
parents:
9898
diff
changeset
|
938 LD_SWITCH_X_SITE="-L${x_libraries}" |
27b7a34664e3
Don't add -I, -L, -R options for cc if their
David J. MacKenzie <djm@gnu.org>
parents:
9898
diff
changeset
|
939 LD_SWITCH_X_SITE_AUX="-R${x_libraries}" |
27b7a34664e3
Don't add -I, -L, -R options for cc if their
David J. MacKenzie <djm@gnu.org>
parents:
9898
diff
changeset
|
940 fi |
27b7a34664e3
Don't add -I, -L, -R options for cc if their
David J. MacKenzie <djm@gnu.org>
parents:
9898
diff
changeset
|
941 if test "${x_includes}" != NONE && test -n "${x_includes}"; then |
27b7a34664e3
Don't add -I, -L, -R options for cc if their
David J. MacKenzie <djm@gnu.org>
parents:
9898
diff
changeset
|
942 C_SWITCH_X_SITE="-I${x_includes}" |
27b7a34664e3
Don't add -I, -L, -R options for cc if their
David J. MacKenzie <djm@gnu.org>
parents:
9898
diff
changeset
|
943 fi |
8636 | 944 |
9744 | 945 if test x"${x_includes}" = x; then |
946 bitmapdir=/usr/include/X11/bitmaps | |
9727
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
947 else |
9744 | 948 bitmapdir="${x_includes}/bitmaps" |
9727
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
949 fi |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
950 |
8636 | 951 case "${window_system}" in |
952 x11 ) | |
953 HAVE_X_WINDOWS=yes | |
954 HAVE_X11=yes | |
955 case "${with_x_toolkit}" in | |
956 athena | lucid ) USE_X_TOOLKIT=LUCID ;; | |
9735
3f2c709d9856
Adapt for Autoconf v2. Use the standard argument
David J. MacKenzie <djm@gnu.org>
parents:
9727
diff
changeset
|
957 motif ) USE_X_TOOLKIT=MOTIF ;; |
8674
bcfd4c7eecb0
*** empty log message ***
David J. MacKenzie <djm@gnu.org>
parents:
8636
diff
changeset
|
958 dnl open-look ) USE_X_TOOLKIT=OPEN_LOOK ;; |
8636 | 959 * ) USE_X_TOOLKIT=none ;; |
960 esac | |
961 ;; | |
962 none ) | |
963 HAVE_X_WINDOWS=no | |
964 HAVE_X11=no | |
965 USE_X_TOOLKIT=none | |
966 ;; | |
967 esac | |
968 X_TOOLKIT_TYPE=$USE_X_TOOLKIT | |
969 | |
970 ### If we're using X11, we should use the X menu package. | |
971 HAVE_X_MENU=no | |
972 case ${HAVE_X11} in | |
973 yes ) HAVE_X_MENU=yes ;; | |
974 esac | |
975 | |
976 #### Extract some information from the operating system and machine files. | |
977 | |
978 AC_CHECKING([the machine- and system-dependent files to find out | |
979 - which libraries the lib-src programs will want, and | |
980 - whether the GNU malloc routines are usable]) | |
981 | |
982 ### First figure out CFLAGS (which we use for running the compiler here) | |
983 ### and REAL_CFLAGS (which we use for real compilation). | |
984 ### The two are the same except on a few systems, where they are made | |
985 ### different to work around various lossages. For example, | |
986 ### GCC 2.5 on Linux needs them to be different because it treats -g | |
987 ### as implying static linking. | |
988 | |
989 ### If the CFLAGS env var is specified, we use that value | |
990 ### instead of the default. | |
991 | |
992 ### It's not important that this name contain the PID; you can't run | |
993 ### two configures in the same directory and have anything work | |
994 ### anyway. | |
995 tempcname="conftest.c" | |
996 | |
997 echo ' | |
998 #include "'${srcdir}'/src/'${opsysfile}'" | |
999 #include "'${srcdir}'/src/'${machfile}'" | |
1000 #ifndef LIBS_MACHINE | |
1001 #define LIBS_MACHINE | |
1002 #endif | |
1003 #ifndef LIBS_SYSTEM | |
1004 #define LIBS_SYSTEM | |
1005 #endif | |
1006 #ifndef C_SWITCH_SYSTEM | |
1007 #define C_SWITCH_SYSTEM | |
1008 #endif | |
1009 #ifndef C_SWITCH_MACHINE | |
1010 #define C_SWITCH_MACHINE | |
1011 #endif | |
1012 configure___ libsrc_libs=LIBS_MACHINE LIBS_SYSTEM | |
1013 configure___ c_switch_system=C_SWITCH_SYSTEM | |
1014 configure___ c_switch_machine=C_SWITCH_MACHINE | |
1015 | |
1016 #ifndef LIB_X11_LIB | |
1017 #define LIB_X11_LIB -lX11 | |
1018 #endif | |
1019 | |
1020 #ifndef LIBX11_MACHINE | |
1021 #define LIBX11_MACHINE | |
1022 #endif | |
1023 | |
1024 #ifndef LIBX11_SYSTEM | |
1025 #define LIBX11_SYSTEM | |
1026 #endif | |
1027 configure___ LIBX=LIB_X11_LIB LIBX11_MACHINE LIBX11_SYSTEM | |
1028 | |
1029 #ifdef UNEXEC | |
1030 configure___ unexec=UNEXEC | |
1031 #else | |
1032 configure___ unexec=unexec.o | |
1033 #endif | |
1034 | |
1035 #ifdef SYSTEM_MALLOC | |
1036 configure___ system_malloc=yes | |
1037 #else | |
1038 configure___ system_malloc=no | |
1039 #endif | |
1040 | |
1041 #ifndef C_DEBUG_SWITCH | |
1042 #define C_DEBUG_SWITCH -g | |
1043 #endif | |
1044 | |
1045 #ifndef C_OPTIMIZE_SWITCH | |
1046 #define C_OPTIMIZE_SWITCH -O | |
1047 #endif | |
1048 | |
1049 #ifdef THIS_IS_CONFIGURE | |
1050 | |
1051 /* Get the CFLAGS for tests in configure. */ | |
1052 #ifdef __GNUC__ | |
1053 configure___ CFLAGS=C_DEBUG_SWITCH C_OPTIMIZE_SWITCH '${CFLAGS}' | |
1054 #else | |
1055 configure___ CFLAGS=C_DEBUG_SWITCH '${CFLAGS}' | |
1056 #endif | |
1057 | |
1058 #else /* not THIS_IS_CONFIGURE */ | |
1059 | |
1060 /* Get the CFLAGS for real compilation. */ | |
1061 #ifdef __GNUC__ | |
1062 configure___ REAL_CFLAGS=C_DEBUG_SWITCH C_OPTIMIZE_SWITCH '${CFLAGS}' | |
1063 #else | |
1064 configure___ REAL_CFLAGS=C_DEBUG_SWITCH '${CFLAGS}' | |
1065 #endif | |
1066 | |
1067 #endif /* not THIS_IS_CONFIGURE */ | |
1068 ' > ${tempcname} | |
1069 | |
1070 # The value of CPP is a quoted variable reference, so we need to do this | |
1071 # to get its actual value... | |
1072 CPP=`eval "echo $CPP"` | |
1073 changequote(, )dnl | |
1074 eval `${CPP} -Isrc ${tempcname} \ | |
1075 | sed -n -e 's/^configure___ \([^=]*=\)\(.*\)$/\1"\2"/p'` | |
1076 if test "x$CFLAGS" = x; then | |
1077 eval `${CPP} -Isrc -DTHIS_IS_CONFIGURE ${tempcname} \ | |
1078 | sed -n -e 's/^configure___ \([^=]*=\)\(.*\)$/\1"\2"/p'` | |
1079 else | |
1080 REAL_CFLAGS="$CFLAGS" | |
1081 fi | |
1082 changequote([, ])dnl | |
1083 rm ${tempcname} | |
1084 | |
1085 ### Compute the unexec source name from the object name. | |
1086 UNEXEC_SRC="`echo ${unexec} | sed 's/\.o/.c/'`" | |
1087 | |
1088 # Do the opsystem or machine files prohibit the use of the GNU malloc? | |
1089 # Assume not, until told otherwise. | |
1090 GNU_MALLOC=yes | |
1091 if test "${system_malloc}" = "yes"; then | |
1092 GNU_MALLOC=no | |
1093 GNU_MALLOC_reason=" | |
1094 (The GNU allocators don't work with this system configuration.)" | |
1095 fi | |
1096 | |
1097 if test x"${REL_ALLOC}" = x; then | |
1098 REL_ALLOC=${GNU_MALLOC} | |
1099 fi | |
1100 | |
1101 LISP_FLOAT_TYPE=yes | |
1102 | |
1103 | |
1104 #### Add the libraries to LIBS and check for some functions. | |
1105 | |
1106 CPPFLAGS="$c_switch_system $c_switch_machine $CPPFLAGS" | |
1107 LIBS="$libsrc_libs" | |
1108 | |
1109 dnl If found, this defines HAVE_LIBDNET, which m/pmax.h checks, | |
1110 dnl and also adds -ldnet to LIBS, which Autoconf uses for checks. | |
1111 AC_CHECK_LIB(dnet, dnet_ntoa) | |
1112 dnl This causes -lresolv to get used in subsequent tests, | |
1113 dnl which causes failures on some systems such as HPUX 9. | |
1114 dnl AC_CHECK_LIB(resolv, gethostbyname) | |
1115 | |
1116 dnl FIXME replace main with a function we actually want from this library. | |
1117 AC_CHECK_LIB(Xbsd, main, LD_SWITCH_X_SITE="$LD_SWITCH_X_SITE -lXbsd") | |
1118 | |
1119 AC_MSG_CHECKING(for XFree86) | |
1120 if test -d /usr/X386/include; then | |
1121 HAVE_XFREE386=yes | |
8730 | 1122 : ${C_SWITCH_X_SITE="-I/usr/X386/include"} |
8636 | 1123 else |
8730 | 1124 HAVE_XFREE386=no |
8636 | 1125 fi |
8730 | 1126 AC_MSG_RESULT($HAVE_XFREE386) |
8636 | 1127 |
1128 # We change CFLAGS temporarily so that C_SWITCH_X_SITE gets used | |
1129 # for the tests that follow. | |
1130 | |
1131 if test "${HAVE_X11}" = "yes"; then | |
1132 DEFS="$C_SWITCH_X_SITE $DEFS" | |
1133 LIBS="$LD_SWITCH_X_SITE $LIBX $LIBS" | |
1134 CFLAGS="$C_SWITCH_X_SITE $CFLAGS" | |
8730 | 1135 AC_CHECK_FUNCS(XrmSetDatabase XScreenResourceString \ |
8636 | 1136 XScreenNumberOfScreen XSetWMProtocols) |
1137 fi | |
1138 | |
1139 if test "${USE_X_TOOLKIT}" != "none"; then | |
1140 AC_MSG_CHECKING(X11 toolkit version) | |
8730 | 1141 AC_TRY_LINK([#include <X11/Intrinsic.h>], |
8636 | 1142 [#if XtSpecificationRelease < 6 |
1143 fail; | |
1144 #endif | |
1145 ], [AC_MSG_RESULT(6) | |
1146 AC_DEFINE(HAVE_X11XTR6)], | |
1147 [AC_MSG_RESULT(not 6)]) | |
1148 fi | |
1149 | |
1150 # If netdb.h doesn't declare h_errno, we must declare it by hand. | |
1151 AC_MSG_CHECKING(whether netdb declarares h_errno) | |
8730 | 1152 AC_TRY_LINK([#include <netdb.h>], |
9875
463fd155c78d
Make h_errno check not use nested functions.
David J. MacKenzie <djm@gnu.org>
parents:
9834
diff
changeset
|
1153 [return h_errno;], |
463fd155c78d
Make h_errno check not use nested functions.
David J. MacKenzie <djm@gnu.org>
parents:
9834
diff
changeset
|
1154 [AC_MSG_RESULT(yes) |
463fd155c78d
Make h_errno check not use nested functions.
David J. MacKenzie <djm@gnu.org>
parents:
9834
diff
changeset
|
1155 AC_DEFINE(HAVE_H_ERRNO)], |
463fd155c78d
Make h_errno check not use nested functions.
David J. MacKenzie <djm@gnu.org>
parents:
9834
diff
changeset
|
1156 [AC_MSG_RESULT(no)]) |
8636 | 1157 |
8730 | 1158 AC_FUNC_ALLOCA |
8636 | 1159 |
1160 # logb and frexp are found in -lm on most systems. | |
1161 AC_CHECK_LIB(m, logb) | |
8730 | 1162 AC_CHECK_FUNCS(gettimeofday gethostname dup2 rename closedir mkdir rmdir \ |
9727
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
1163 random lrand48 bcopy bcmp logb frexp fmod drem ftime res_init setsid \ |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
1164 strerror fpathconf select mktime eaccess getpagesize) |
8636 | 1165 |
1166 ok_so_far=yes | |
8730 | 1167 AC_CHECK_FUNC(socket, , ok_so_far=no) |
8636 | 1168 if test $ok_so_far = yes; then |
8730 | 1169 AC_CHECK_HEADER(netinet/in.h, , ok_so_far=no) |
8636 | 1170 fi |
1171 if test $ok_so_far = yes; then | |
8730 | 1172 AC_CHECK_HEADER(arpa/inet.h, , ok_so_far=no) |
8636 | 1173 fi |
1174 if test $ok_so_far = yes; then | |
1175 AC_DEFINE(HAVE_INET_SOCKETS) | |
1176 fi | |
1177 | |
8680 | 1178 if test -f /usr/lpp/X11/bin/smt.exp; then |
1179 AC_DEFINE(HAVE_AIX_SMT_EXP) | |
1180 fi | |
1181 | |
8636 | 1182 # Set up the CFLAGS for real compilation, so we can substitute it. |
1183 CFLAGS="$REAL_CFLAGS" | |
1184 | |
1185 changequote(, )dnl | |
1186 #### Find out which version of Emacs this is. | |
1187 version=`grep 'defconst[ ]*emacs-version' ${srcdir}/lisp/version.el \ | |
1188 | sed -e 's/^[^"]*"\([^"]*\)".*$/\1/'` | |
1189 changequote([, ])dnl | |
1190 if test x"${version}" = x; then | |
1191 AC_MSG_ERROR(can't find current emacs version in \`${srcdir}/lisp/version.el'.) | |
1192 fi | |
1193 | |
1194 ### Specify what sort of things we'll be editing into Makefile and config.h. | |
1195 ### Use configuration here uncanonicalized to avoid exceeding size limits. | |
1196 AC_SUBST(version) | |
1197 AC_SUBST(configuration) | |
9727
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
1198 AC_SUBST(canonical) |
8636 | 1199 AC_SUBST(srcdir) |
1200 AC_SUBST(prefix) | |
1201 AC_SUBST(exec_prefix) | |
1202 AC_SUBST(bindir) | |
1203 AC_SUBST(datadir) | |
9727
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
1204 AC_SUBST(sharedstatedir) |
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
1205 AC_SUBST(libexecdir) |
8636 | 1206 AC_SUBST(mandir) |
1207 AC_SUBST(infodir) | |
1208 AC_SUBST(lispdir) | |
1209 AC_SUBST(locallisppath) | |
1210 AC_SUBST(lisppath) | |
1211 AC_SUBST(etcdir) | |
1212 AC_SUBST(lockdir) | |
1213 AC_SUBST(archlibdir) | |
1214 AC_SUBST(docdir) | |
9727
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
1215 AC_SUBST(bitmapdir) |
8636 | 1216 AC_SUBST(c_switch_system) |
1217 AC_SUBST(c_switch_machine) | |
1218 AC_SUBST(LD_SWITCH_X_SITE) | |
1219 AC_SUBST(LD_SWITCH_X_SITE_AUX) | |
1220 AC_SUBST(C_SWITCH_X_SITE) | |
1221 AC_SUBST(CFLAGS) | |
1222 AC_SUBST(X_TOOLKIT_TYPE) | |
1223 AC_SUBST(machfile) | |
1224 AC_SUBST(opsysfile) | |
1225 | |
9727
12b4d106cc47
keep up with configure.in
David J. MacKenzie <djm@gnu.org>
parents:
8730
diff
changeset
|
1226 AC_DEFINE_UNQUOTED(EMACS_CONFIGURATION, "${canonical}") |
10816
d172fd0e356f
(EMACS_CONFIG_OPTIONS): Use $ac_configure_args.
Karl Heuer <kwzh@gnu.org>
parents:
10736
diff
changeset
|
1227 AC_DEFINE_UNQUOTED(EMACS_CONFIG_OPTIONS, "${ac_configure_args}") |
8636 | 1228 AC_DEFINE_UNQUOTED(config_machfile, "${machfile}") |
1229 AC_DEFINE_UNQUOTED(config_opsysfile, "${opsysfile}") | |
1230 AC_DEFINE_UNQUOTED(LD_SWITCH_X_SITE, ${LD_SWITCH_X_SITE}) | |
1231 AC_DEFINE_UNQUOTED(LD_SWITCH_X_SITE_AUX, ${LD_SWITCH_X_SITE_AUX}) | |
1232 AC_DEFINE_UNQUOTED(C_SWITCH_X_SITE, ${C_SWITCH_X_SITE}) | |
1233 AC_DEFINE_UNQUOTED(UNEXEC_SRC, ${UNEXEC_SRC}) | |
1234 | |
1235 if test "${HAVE_X_WINDOWS}" = "yes" ; then | |
1236 AC_DEFINE(HAVE_X_WINDOWS) | |
1237 fi | |
1238 if test "${USE_X_TOOLKIT}" != "none" ; then | |
1239 AC_DEFINE(USE_X_TOOLKIT) | |
1240 fi | |
1241 if test "${HAVE_X11}" = "yes" ; then | |
1242 AC_DEFINE(HAVE_X11) | |
1243 fi | |
1244 if test "${HAVE_XFREE386}" = "yes" ; then | |
1245 AC_DEFINE(HAVE_XFREE386) | |
1246 fi | |
1247 if test "${HAVE_X_MENU}" = "yes" ; then | |
1248 AC_DEFINE(HAVE_X_MENU) | |
1249 fi | |
1250 if test "${GNU_MALLOC}" = "yes" ; then | |
1251 AC_DEFINE(GNU_MALLOC) | |
1252 fi | |
1253 if test "${REL_ALLOC}" = "yes" ; then | |
1254 AC_DEFINE(REL_ALLOC) | |
1255 fi | |
1256 if test "${LISP_FLOAT_TYPE}" = "yes" ; then | |
1257 AC_DEFINE(LISP_FLOAT_TYPE) | |
1258 fi | |
1259 | |
1260 #### Report on what we decided to do. | |
1261 echo " | |
1262 | |
1263 Configured for \`${canonical}'. | |
1264 | |
1265 Where should the build process find the source code? ${srcdir} | |
1266 What operating system and machine description files should Emacs use? | |
1267 \`${opsysfile}' and \`${machfile}' | |
1268 What compiler should emacs be built with? ${CC} ${CFLAGS} | |
1269 Should Emacs use the GNU version of malloc? ${GNU_MALLOC}${GNU_MALLOC_reason} | |
1270 Should Emacs use the relocating allocator for buffers? ${REL_ALLOC} | |
1271 What window system should Emacs use? ${window_system} | |
1272 What toolkit should Emacs use? ${USE_X_TOOLKIT}${x_includes+ | |
1273 Where do we find X Windows header files? }${x_includes}${x_libraries+ | |
1274 Where do we find X Windows libraries? }${x_libraries} | |
1275 | |
1276 " | |
1277 | |
1278 # Remove any trailing slashes in these variables. | |
1279 changequote(, )dnl | |
1280 test "${prefix}" != NONE && | |
1281 prefix=`echo "${prefix}" | sed 's,\([^/]\)/*$,\1,'` | |
1282 test "${exec_prefix}" != NONE && | |
1283 exec_prefix=`echo "${exec_prefix}" | sed 's,\([^/]\)/*$,\1,'` | |
1284 changequote([, ])dnl | |
1285 | |
8677
d41510c69a3f
*** empty log message ***
David J. MacKenzie <djm@gnu.org>
parents:
8674
diff
changeset
|
1286 AC_OUTPUT(Makefile lib-src/Makefile.in oldXMenu/Makefile \ |
10062
36c33f0526b2
Generate man/Makefile from man/Makefile.in.
Richard M. Stallman <rms@gnu.org>
parents:
10037
diff
changeset
|
1287 man/Makefile lwlib/Makefile src/Makefile.in, [ |
8680 | 1288 |
10152
030853f9aa93
(rs6000-ibm-aix4.1*): New alternative.
Richard M. Stallman <rms@gnu.org>
parents:
10098
diff
changeset
|
1289 ### Make the necessary directories, if they don't exist. |
10098
62d0ba6a531b
Don't try to make directories that are guaranteed to already exist.
David J. MacKenzie <djm@gnu.org>
parents:
10063
diff
changeset
|
1290 for dir in cpp etc ; do |
62d0ba6a531b
Don't try to make directories that are guaranteed to already exist.
David J. MacKenzie <djm@gnu.org>
parents:
10063
diff
changeset
|
1291 test -d ${dir} || mkdir ${dir} |
8636 | 1292 done |
1293 | |
1294 # Build src/Makefile from ${srcdir}/src/Makefile.in. This must be done | |
1295 # after src/config.h is built, since we rely on that file. | |
1296 | |
9834
5be536b91960
protect character class with changequote
David J. MacKenzie <djm@gnu.org>
parents:
9832
diff
changeset
|
1297 changequote(, )dnl The horror, the horror. |
8636 | 1298 # Now get this: Some word that is part of the ${srcdir} directory name |
1299 # or the ${configuration} value might, just might, happen to be an | |
1300 # identifier like `sun4' or `i386' or something, and be predefined by | |
1301 # the C preprocessor to some helpful value like 1, or maybe the empty | |
1302 # string. Needless to say consequent macro substitutions are less | |
1303 # than conducive to the makefile finding the correct directory. | |
1304 undefs="`echo $top_srcdir $configuration $canonical | | |
1305 sed -e 's/[^a-zA-Z0-9_]/ /g' -e 's/^/ /' -e 's/ *$//' \ | |
1306 -e 's/ */ -U/g' -e 's/-U[0-9][^ ]*//g' \ | |
1307 `" | |
9834
5be536b91960
protect character class with changequote
David J. MacKenzie <djm@gnu.org>
parents:
9832
diff
changeset
|
1308 changequote([, ])dnl |
8636 | 1309 |
1310 echo creating lib-src/Makefile | |
1311 ( cd lib-src | |
1312 rm -f junk.c junk1.c junk2.c | |
1313 sed -e '/start of cpp stuff/q' \ | |
1314 < Makefile.in > junk1.c | |
1315 sed -e '1,/start of cpp stuff/d'\ | |
1316 -e 's@/\*\*/#\(.*\)$@/* \1 */@' \ | |
1317 < Makefile.in > junk.c | |
1318 $CPP $undefs -I. -I$top_srcdir/src $CPPFLAGS junk.c | \ | |
1319 sed -e 's/^ / /' -e '/^#/d' -e '/^[ ]*$/d' > junk2.c | |
1320 cat junk1.c junk2.c > Makefile.new | |
1321 rm -f junk.c junk1.c junk2.c | |
1322 chmod 444 Makefile.new | |
1323 mv -f Makefile.new Makefile | |
1324 ) | |
1325 | |
1326 echo creating src/Makefile | |
1327 ( cd src | |
1328 rm -f junk.c junk1.c junk2.c | |
1329 sed -e '/start of cpp stuff/q' \ | |
1330 < Makefile.in > junk1.c | |
1331 sed -e '1,/start of cpp stuff/d'\ | |
1332 -e 's@/\*\*/#\(.*\)$@/* \1 */@' \ | |
1333 < Makefile.in > junk.c | |
1334 $CPP $undefs -I. -I$top_srcdir/src $CPPFLAGS junk.c | \ | |
1335 sed -e 's/^ / /' -e '/^#/d' -e '/^[ ]*$/d' > junk2.c | |
1336 cat junk1.c junk2.c > Makefile.new | |
1337 rm -f junk.c junk1.c junk2.c | |
1338 chmod 444 Makefile.new | |
1339 mv -f Makefile.new Makefile | |
1340 ) | |
10632
202c70b39c10
Create a .gdbinit that sources the real one, if using a different
David J. MacKenzie <djm@gnu.org>
parents:
10530
diff
changeset
|
1341 |
202c70b39c10
Create a .gdbinit that sources the real one, if using a different
David J. MacKenzie <djm@gnu.org>
parents:
10530
diff
changeset
|
1342 if test ! -f src/.gdbinit && test -f $top_srcdir/src/.gdbinit; then |
202c70b39c10
Create a .gdbinit that sources the real one, if using a different
David J. MacKenzie <djm@gnu.org>
parents:
10530
diff
changeset
|
1343 echo creating src/.gdbinit |
202c70b39c10
Create a .gdbinit that sources the real one, if using a different
David J. MacKenzie <djm@gnu.org>
parents:
10530
diff
changeset
|
1344 echo source $top_srcdir/src/.gdbinit > src/.gdbinit |
202c70b39c10
Create a .gdbinit that sources the real one, if using a different
David J. MacKenzie <djm@gnu.org>
parents:
10530
diff
changeset
|
1345 fi |
202c70b39c10
Create a .gdbinit that sources the real one, if using a different
David J. MacKenzie <djm@gnu.org>
parents:
10530
diff
changeset
|
1346 |
8677
d41510c69a3f
*** empty log message ***
David J. MacKenzie <djm@gnu.org>
parents:
8674
diff
changeset
|
1347 ], [CPP="$CPP" CPPFLAGS="$CPPFLAGS"]) |