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