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