]>
Commit | Line | Data |
---|---|---|
252b5132 RH |
1 | #! /bin/sh |
2 | ||
3 | # Guess values for system-dependent variables and create Makefiles. | |
4 | # Generated automatically using autoconf version 2.13 | |
5 | # Copyright (C) 1992, 93, 94, 95, 96 Free Software Foundation, Inc. | |
6 | # | |
7 | # This configure script is free software; the Free Software Foundation | |
8 | # gives unlimited permission to copy, distribute and modify it. | |
9 | ||
10 | # Defaults: | |
11 | ac_help= | |
12 | ac_default_prefix=/usr/local | |
13 | # Any additions from configure.in: | |
14 | ac_help="$ac_help | |
15 | --with-target-subdir=SUBDIR Configuring in a subdirectory" | |
16 | ac_help="$ac_help | |
17 | --with-cross-host=HOST Configuring with a cross compiler" | |
18 | ac_help="$ac_help | |
19 | --with-newlib Configuring with newlib" | |
39423523 DD |
20 | ac_help="$ac_help |
21 | --enable-maintainer-mode | |
22 | enable make rules and dependencies not useful | |
23 | (and sometimes confusing) to the casual installer" | |
252b5132 RH |
24 | |
25 | # Initialize some variables set by options. | |
26 | # The variables have the same names as the options, with | |
27 | # dashes changed to underlines. | |
28 | build=NONE | |
29 | cache_file=./config.cache | |
30 | exec_prefix=NONE | |
31 | host=NONE | |
32 | no_create= | |
33 | nonopt=NONE | |
34 | no_recursion= | |
35 | prefix=NONE | |
36 | program_prefix=NONE | |
37 | program_suffix=NONE | |
38 | program_transform_name=s,x,x, | |
39 | silent= | |
40 | site= | |
41 | srcdir= | |
42 | target=NONE | |
43 | verbose= | |
44 | x_includes=NONE | |
45 | x_libraries=NONE | |
46 | bindir='${exec_prefix}/bin' | |
47 | sbindir='${exec_prefix}/sbin' | |
48 | libexecdir='${exec_prefix}/libexec' | |
49 | datadir='${prefix}/share' | |
50 | sysconfdir='${prefix}/etc' | |
51 | sharedstatedir='${prefix}/com' | |
52 | localstatedir='${prefix}/var' | |
53 | libdir='${exec_prefix}/lib' | |
54 | includedir='${prefix}/include' | |
55 | oldincludedir='/usr/include' | |
56 | infodir='${prefix}/info' | |
57 | mandir='${prefix}/man' | |
58 | ||
59 | # Initialize some other variables. | |
60 | subdirs= | |
61 | MFLAGS= MAKEFLAGS= | |
62 | SHELL=${CONFIG_SHELL-/bin/sh} | |
63 | # Maximum number of lines to put in a shell here document. | |
64 | ac_max_here_lines=12 | |
65 | ||
66 | ac_prev= | |
67 | for ac_option | |
68 | do | |
69 | ||
70 | # If the previous option needs an argument, assign it. | |
71 | if test -n "$ac_prev"; then | |
72 | eval "$ac_prev=\$ac_option" | |
73 | ac_prev= | |
74 | continue | |
75 | fi | |
76 | ||
77 | case "$ac_option" in | |
78 | -*=*) ac_optarg=`echo "$ac_option" | sed 's/[-_a-zA-Z0-9]*=//'` ;; | |
79 | *) ac_optarg= ;; | |
80 | esac | |
81 | ||
82 | # Accept the important Cygnus configure options, so we can diagnose typos. | |
83 | ||
84 | case "$ac_option" in | |
85 | ||
86 | -bindir | --bindir | --bindi | --bind | --bin | --bi) | |
87 | ac_prev=bindir ;; | |
88 | -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*) | |
89 | bindir="$ac_optarg" ;; | |
90 | ||
91 | -build | --build | --buil | --bui | --bu) | |
92 | ac_prev=build ;; | |
93 | -build=* | --build=* | --buil=* | --bui=* | --bu=*) | |
94 | build="$ac_optarg" ;; | |
95 | ||
96 | -cache-file | --cache-file | --cache-fil | --cache-fi \ | |
97 | | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) | |
98 | ac_prev=cache_file ;; | |
99 | -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \ | |
100 | | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*) | |
101 | cache_file="$ac_optarg" ;; | |
102 | ||
103 | -datadir | --datadir | --datadi | --datad | --data | --dat | --da) | |
104 | ac_prev=datadir ;; | |
105 | -datadir=* | --datadir=* | --datadi=* | --datad=* | --data=* | --dat=* \ | |
106 | | --da=*) | |
107 | datadir="$ac_optarg" ;; | |
108 | ||
109 | -disable-* | --disable-*) | |
110 | ac_feature=`echo $ac_option|sed -e 's/-*disable-//'` | |
111 | # Reject names that are not valid shell variable names. | |
112 | if test -n "`echo $ac_feature| sed 's/[-a-zA-Z0-9_]//g'`"; then | |
113 | { echo "configure: error: $ac_feature: invalid feature name" 1>&2; exit 1; } | |
114 | fi | |
115 | ac_feature=`echo $ac_feature| sed 's/-/_/g'` | |
116 | eval "enable_${ac_feature}=no" ;; | |
117 | ||
118 | -enable-* | --enable-*) | |
119 | ac_feature=`echo $ac_option|sed -e 's/-*enable-//' -e 's/=.*//'` | |
120 | # Reject names that are not valid shell variable names. | |
121 | if test -n "`echo $ac_feature| sed 's/[-_a-zA-Z0-9]//g'`"; then | |
122 | { echo "configure: error: $ac_feature: invalid feature name" 1>&2; exit 1; } | |
123 | fi | |
124 | ac_feature=`echo $ac_feature| sed 's/-/_/g'` | |
125 | case "$ac_option" in | |
126 | *=*) ;; | |
127 | *) ac_optarg=yes ;; | |
128 | esac | |
129 | eval "enable_${ac_feature}='$ac_optarg'" ;; | |
130 | ||
131 | -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ | |
132 | | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ | |
133 | | --exec | --exe | --ex) | |
134 | ac_prev=exec_prefix ;; | |
135 | -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \ | |
136 | | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \ | |
137 | | --exec=* | --exe=* | --ex=*) | |
138 | exec_prefix="$ac_optarg" ;; | |
139 | ||
140 | -gas | --gas | --ga | --g) | |
141 | # Obsolete; use --with-gas. | |
142 | with_gas=yes ;; | |
143 | ||
144 | -help | --help | --hel | --he) | |
145 | # Omit some internal or obsolete options to make the list less imposing. | |
146 | # This message is too long to be a string in the A/UX 3.1 sh. | |
147 | cat << EOF | |
148 | Usage: configure [options] [host] | |
149 | Options: [defaults in brackets after descriptions] | |
150 | Configuration: | |
151 | --cache-file=FILE cache test results in FILE | |
152 | --help print this message | |
153 | --no-create do not create output files | |
154 | --quiet, --silent do not print \`checking...' messages | |
155 | --version print the version of autoconf that created configure | |
156 | Directory and file names: | |
157 | --prefix=PREFIX install architecture-independent files in PREFIX | |
158 | [$ac_default_prefix] | |
159 | --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX | |
160 | [same as prefix] | |
161 | --bindir=DIR user executables in DIR [EPREFIX/bin] | |
162 | --sbindir=DIR system admin executables in DIR [EPREFIX/sbin] | |
163 | --libexecdir=DIR program executables in DIR [EPREFIX/libexec] | |
164 | --datadir=DIR read-only architecture-independent data in DIR | |
165 | [PREFIX/share] | |
166 | --sysconfdir=DIR read-only single-machine data in DIR [PREFIX/etc] | |
167 | --sharedstatedir=DIR modifiable architecture-independent data in DIR | |
168 | [PREFIX/com] | |
169 | --localstatedir=DIR modifiable single-machine data in DIR [PREFIX/var] | |
170 | --libdir=DIR object code libraries in DIR [EPREFIX/lib] | |
171 | --includedir=DIR C header files in DIR [PREFIX/include] | |
172 | --oldincludedir=DIR C header files for non-gcc in DIR [/usr/include] | |
173 | --infodir=DIR info documentation in DIR [PREFIX/info] | |
174 | --mandir=DIR man documentation in DIR [PREFIX/man] | |
175 | --srcdir=DIR find the sources in DIR [configure dir or ..] | |
176 | --program-prefix=PREFIX prepend PREFIX to installed program names | |
177 | --program-suffix=SUFFIX append SUFFIX to installed program names | |
178 | --program-transform-name=PROGRAM | |
179 | run sed PROGRAM on installed program names | |
180 | EOF | |
181 | cat << EOF | |
182 | Host type: | |
183 | --build=BUILD configure for building on BUILD [BUILD=HOST] | |
184 | --host=HOST configure for HOST [guessed] | |
185 | --target=TARGET configure for TARGET [TARGET=HOST] | |
186 | Features and packages: | |
187 | --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) | |
188 | --enable-FEATURE[=ARG] include FEATURE [ARG=yes] | |
189 | --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] | |
190 | --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) | |
191 | --x-includes=DIR X include files are in DIR | |
192 | --x-libraries=DIR X library files are in DIR | |
193 | EOF | |
194 | if test -n "$ac_help"; then | |
195 | echo "--enable and --with options recognized:$ac_help" | |
196 | fi | |
197 | exit 0 ;; | |
198 | ||
199 | -host | --host | --hos | --ho) | |
200 | ac_prev=host ;; | |
201 | -host=* | --host=* | --hos=* | --ho=*) | |
202 | host="$ac_optarg" ;; | |
203 | ||
204 | -includedir | --includedir | --includedi | --included | --include \ | |
205 | | --includ | --inclu | --incl | --inc) | |
206 | ac_prev=includedir ;; | |
207 | -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \ | |
208 | | --includ=* | --inclu=* | --incl=* | --inc=*) | |
209 | includedir="$ac_optarg" ;; | |
210 | ||
211 | -infodir | --infodir | --infodi | --infod | --info | --inf) | |
212 | ac_prev=infodir ;; | |
213 | -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*) | |
214 | infodir="$ac_optarg" ;; | |
215 | ||
216 | -libdir | --libdir | --libdi | --libd) | |
217 | ac_prev=libdir ;; | |
218 | -libdir=* | --libdir=* | --libdi=* | --libd=*) | |
219 | libdir="$ac_optarg" ;; | |
220 | ||
221 | -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \ | |
222 | | --libexe | --libex | --libe) | |
223 | ac_prev=libexecdir ;; | |
224 | -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \ | |
225 | | --libexe=* | --libex=* | --libe=*) | |
226 | libexecdir="$ac_optarg" ;; | |
227 | ||
228 | -localstatedir | --localstatedir | --localstatedi | --localstated \ | |
229 | | --localstate | --localstat | --localsta | --localst \ | |
230 | | --locals | --local | --loca | --loc | --lo) | |
231 | ac_prev=localstatedir ;; | |
232 | -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ | |
233 | | --localstate=* | --localstat=* | --localsta=* | --localst=* \ | |
234 | | --locals=* | --local=* | --loca=* | --loc=* | --lo=*) | |
235 | localstatedir="$ac_optarg" ;; | |
236 | ||
237 | -mandir | --mandir | --mandi | --mand | --man | --ma | --m) | |
238 | ac_prev=mandir ;; | |
239 | -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*) | |
240 | mandir="$ac_optarg" ;; | |
241 | ||
242 | -nfp | --nfp | --nf) | |
243 | # Obsolete; use --without-fp. | |
244 | with_fp=no ;; | |
245 | ||
246 | -no-create | --no-create | --no-creat | --no-crea | --no-cre \ | |
247 | | --no-cr | --no-c) | |
248 | no_create=yes ;; | |
249 | ||
250 | -no-recursion | --no-recursion | --no-recursio | --no-recursi \ | |
251 | | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) | |
252 | no_recursion=yes ;; | |
253 | ||
254 | -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \ | |
255 | | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \ | |
256 | | --oldin | --oldi | --old | --ol | --o) | |
257 | ac_prev=oldincludedir ;; | |
258 | -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \ | |
259 | | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \ | |
260 | | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*) | |
261 | oldincludedir="$ac_optarg" ;; | |
262 | ||
263 | -prefix | --prefix | --prefi | --pref | --pre | --pr | --p) | |
264 | ac_prev=prefix ;; | |
265 | -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) | |
266 | prefix="$ac_optarg" ;; | |
267 | ||
268 | -program-prefix | --program-prefix | --program-prefi | --program-pref \ | |
269 | | --program-pre | --program-pr | --program-p) | |
270 | ac_prev=program_prefix ;; | |
271 | -program-prefix=* | --program-prefix=* | --program-prefi=* \ | |
272 | | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*) | |
273 | program_prefix="$ac_optarg" ;; | |
274 | ||
275 | -program-suffix | --program-suffix | --program-suffi | --program-suff \ | |
276 | | --program-suf | --program-su | --program-s) | |
277 | ac_prev=program_suffix ;; | |
278 | -program-suffix=* | --program-suffix=* | --program-suffi=* \ | |
279 | | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*) | |
280 | program_suffix="$ac_optarg" ;; | |
281 | ||
282 | -program-transform-name | --program-transform-name \ | |
283 | | --program-transform-nam | --program-transform-na \ | |
284 | | --program-transform-n | --program-transform- \ | |
285 | | --program-transform | --program-transfor \ | |
286 | | --program-transfo | --program-transf \ | |
287 | | --program-trans | --program-tran \ | |
288 | | --progr-tra | --program-tr | --program-t) | |
289 | ac_prev=program_transform_name ;; | |
290 | -program-transform-name=* | --program-transform-name=* \ | |
291 | | --program-transform-nam=* | --program-transform-na=* \ | |
292 | | --program-transform-n=* | --program-transform-=* \ | |
293 | | --program-transform=* | --program-transfor=* \ | |
294 | | --program-transfo=* | --program-transf=* \ | |
295 | | --program-trans=* | --program-tran=* \ | |
296 | | --progr-tra=* | --program-tr=* | --program-t=*) | |
297 | program_transform_name="$ac_optarg" ;; | |
298 | ||
299 | -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | |
300 | | -silent | --silent | --silen | --sile | --sil) | |
301 | silent=yes ;; | |
302 | ||
303 | -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) | |
304 | ac_prev=sbindir ;; | |
305 | -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ | |
306 | | --sbi=* | --sb=*) | |
307 | sbindir="$ac_optarg" ;; | |
308 | ||
309 | -sharedstatedir | --sharedstatedir | --sharedstatedi \ | |
310 | | --sharedstated | --sharedstate | --sharedstat | --sharedsta \ | |
311 | | --sharedst | --shareds | --shared | --share | --shar \ | |
312 | | --sha | --sh) | |
313 | ac_prev=sharedstatedir ;; | |
314 | -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \ | |
315 | | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \ | |
316 | | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \ | |
317 | | --sha=* | --sh=*) | |
318 | sharedstatedir="$ac_optarg" ;; | |
319 | ||
320 | -site | --site | --sit) | |
321 | ac_prev=site ;; | |
322 | -site=* | --site=* | --sit=*) | |
323 | site="$ac_optarg" ;; | |
324 | ||
325 | -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) | |
326 | ac_prev=srcdir ;; | |
327 | -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) | |
328 | srcdir="$ac_optarg" ;; | |
329 | ||
330 | -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \ | |
331 | | --syscon | --sysco | --sysc | --sys | --sy) | |
332 | ac_prev=sysconfdir ;; | |
333 | -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \ | |
334 | | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*) | |
335 | sysconfdir="$ac_optarg" ;; | |
336 | ||
337 | -target | --target | --targe | --targ | --tar | --ta | --t) | |
338 | ac_prev=target ;; | |
339 | -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*) | |
340 | target="$ac_optarg" ;; | |
341 | ||
342 | -v | -verbose | --verbose | --verbos | --verbo | --verb) | |
343 | verbose=yes ;; | |
344 | ||
345 | -version | --version | --versio | --versi | --vers) | |
346 | echo "configure generated by autoconf version 2.13" | |
347 | exit 0 ;; | |
348 | ||
349 | -with-* | --with-*) | |
350 | ac_package=`echo $ac_option|sed -e 's/-*with-//' -e 's/=.*//'` | |
351 | # Reject names that are not valid shell variable names. | |
352 | if test -n "`echo $ac_package| sed 's/[-_a-zA-Z0-9]//g'`"; then | |
353 | { echo "configure: error: $ac_package: invalid package name" 1>&2; exit 1; } | |
354 | fi | |
355 | ac_package=`echo $ac_package| sed 's/-/_/g'` | |
356 | case "$ac_option" in | |
357 | *=*) ;; | |
358 | *) ac_optarg=yes ;; | |
359 | esac | |
360 | eval "with_${ac_package}='$ac_optarg'" ;; | |
361 | ||
362 | -without-* | --without-*) | |
363 | ac_package=`echo $ac_option|sed -e 's/-*without-//'` | |
364 | # Reject names that are not valid shell variable names. | |
365 | if test -n "`echo $ac_package| sed 's/[-a-zA-Z0-9_]//g'`"; then | |
366 | { echo "configure: error: $ac_package: invalid package name" 1>&2; exit 1; } | |
367 | fi | |
368 | ac_package=`echo $ac_package| sed 's/-/_/g'` | |
369 | eval "with_${ac_package}=no" ;; | |
370 | ||
371 | --x) | |
372 | # Obsolete; use --with-x. | |
373 | with_x=yes ;; | |
374 | ||
375 | -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \ | |
376 | | --x-incl | --x-inc | --x-in | --x-i) | |
377 | ac_prev=x_includes ;; | |
378 | -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \ | |
379 | | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*) | |
380 | x_includes="$ac_optarg" ;; | |
381 | ||
382 | -x-libraries | --x-libraries | --x-librarie | --x-librari \ | |
383 | | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l) | |
384 | ac_prev=x_libraries ;; | |
385 | -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \ | |
386 | | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) | |
387 | x_libraries="$ac_optarg" ;; | |
388 | ||
389 | -*) { echo "configure: error: $ac_option: invalid option; use --help to show usage" 1>&2; exit 1; } | |
390 | ;; | |
391 | ||
392 | *) | |
393 | if test -n "`echo $ac_option| sed 's/[-a-z0-9.]//g'`"; then | |
394 | echo "configure: warning: $ac_option: invalid host type" 1>&2 | |
395 | fi | |
396 | if test "x$nonopt" != xNONE; then | |
397 | { echo "configure: error: can only configure for one host and one target at a time" 1>&2; exit 1; } | |
398 | fi | |
399 | nonopt="$ac_option" | |
400 | ;; | |
401 | ||
402 | esac | |
403 | done | |
404 | ||
405 | if test -n "$ac_prev"; then | |
406 | { echo "configure: error: missing argument to --`echo $ac_prev | sed 's/_/-/g'`" 1>&2; exit 1; } | |
407 | fi | |
408 | ||
409 | trap 'rm -fr conftest* confdefs* core core.* *.core $ac_clean_files; exit 1' 1 2 15 | |
410 | ||
411 | # File descriptor usage: | |
412 | # 0 standard input | |
413 | # 1 file creation | |
414 | # 2 errors and warnings | |
415 | # 3 some systems may open it to /dev/tty | |
416 | # 4 used on the Kubota Titan | |
417 | # 6 checking for... messages and results | |
418 | # 5 compiler messages saved in config.log | |
419 | if test "$silent" = yes; then | |
420 | exec 6>/dev/null | |
421 | else | |
422 | exec 6>&1 | |
423 | fi | |
424 | exec 5>./config.log | |
425 | ||
426 | echo "\ | |
427 | This file contains any messages produced by compilers while | |
428 | running configure, to aid debugging if configure makes a mistake. | |
429 | " 1>&5 | |
430 | ||
431 | # Strip out --no-create and --no-recursion so they do not pile up. | |
432 | # Also quote any args containing shell metacharacters. | |
433 | ac_configure_args= | |
434 | for ac_arg | |
435 | do | |
436 | case "$ac_arg" in | |
437 | -no-create | --no-create | --no-creat | --no-crea | --no-cre \ | |
438 | | --no-cr | --no-c) ;; | |
439 | -no-recursion | --no-recursion | --no-recursio | --no-recursi \ | |
440 | | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) ;; | |
441 | *" "*|*" "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?]*) | |
442 | ac_configure_args="$ac_configure_args '$ac_arg'" ;; | |
443 | *) ac_configure_args="$ac_configure_args $ac_arg" ;; | |
444 | esac | |
445 | done | |
446 | ||
447 | # NLS nuisances. | |
448 | # Only set these to C if already set. These must not be set unconditionally | |
449 | # because not all systems understand e.g. LANG=C (notably SCO). | |
450 | # Fixing LC_MESSAGES prevents Solaris sh from translating var values in `set'! | |
451 | # Non-C LC_CTYPE values break the ctype check. | |
452 | if test "${LANG+set}" = set; then LANG=C; export LANG; fi | |
453 | if test "${LC_ALL+set}" = set; then LC_ALL=C; export LC_ALL; fi | |
454 | if test "${LC_MESSAGES+set}" = set; then LC_MESSAGES=C; export LC_MESSAGES; fi | |
455 | if test "${LC_CTYPE+set}" = set; then LC_CTYPE=C; export LC_CTYPE; fi | |
456 | ||
457 | # confdefs.h avoids OS command line length limits that DEFS can exceed. | |
458 | rm -rf conftest* confdefs.h | |
459 | # AIX cpp loses on an empty file, so make sure it contains at least a newline. | |
460 | echo > confdefs.h | |
461 | ||
462 | # A filename unique to this package, relative to the directory that | |
463 | # configure is in, which we can look for to find out if srcdir is correct. | |
464 | ac_unique_file=pexecute.c | |
465 | ||
466 | # Find the source files, if location was not specified. | |
467 | if test -z "$srcdir"; then | |
468 | ac_srcdir_defaulted=yes | |
469 | # Try the directory containing this script, then its parent. | |
470 | ac_prog=$0 | |
471 | ac_confdir=`echo $ac_prog|sed 's%/[^/][^/]*$%%'` | |
472 | test "x$ac_confdir" = "x$ac_prog" && ac_confdir=. | |
473 | srcdir=$ac_confdir | |
474 | if test ! -r $srcdir/$ac_unique_file; then | |
475 | srcdir=.. | |
476 | fi | |
477 | else | |
478 | ac_srcdir_defaulted=no | |
479 | fi | |
480 | if test ! -r $srcdir/$ac_unique_file; then | |
481 | if test "$ac_srcdir_defaulted" = yes; then | |
482 | { echo "configure: error: can not find sources in $ac_confdir or .." 1>&2; exit 1; } | |
483 | else | |
484 | { echo "configure: error: can not find sources in $srcdir" 1>&2; exit 1; } | |
485 | fi | |
486 | fi | |
487 | srcdir=`echo "${srcdir}" | sed 's%\([^/]\)/*$%\1%'` | |
488 | ||
489 | # Prefer explicitly selected file to automatically selected ones. | |
eb383413 L |
490 | if test -z "$CONFIG_SITE"; then |
491 | if test "x$prefix" != xNONE; then | |
492 | CONFIG_SITE="$prefix/share/config.site $prefix/etc/config.site" | |
493 | else | |
494 | CONFIG_SITE="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site" | |
252b5132 RH |
495 | fi |
496 | fi | |
497 | for ac_site_file in $CONFIG_SITE; do | |
498 | if test -r "$ac_site_file"; then | |
499 | echo "loading site script $ac_site_file" | |
500 | . "$ac_site_file" | |
501 | fi | |
502 | done | |
503 | ||
504 | if test -r "$cache_file"; then | |
505 | echo "loading cache $cache_file" | |
506 | . $cache_file | |
507 | else | |
508 | echo "creating cache $cache_file" | |
509 | > $cache_file | |
510 | fi | |
511 | ||
512 | ac_ext=c | |
513 | # CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options. | |
514 | ac_cpp='$CPP $CPPFLAGS' | |
515 | ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5' | |
516 | ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5' | |
517 | cross_compiling=$ac_cv_prog_cc_cross | |
518 | ||
519 | ac_exeext= | |
520 | ac_objext=o | |
521 | if (echo "testing\c"; echo 1,2,3) | grep c >/dev/null; then | |
522 | # Stardent Vistra SVR4 grep lacks -e, says [email protected]. | |
523 | if (echo -n testing; echo 1,2,3) | sed s/-n/xn/ | grep xn >/dev/null; then | |
524 | ac_n= ac_c=' | |
525 | ' ac_t=' ' | |
526 | else | |
527 | ac_n=-n ac_c= ac_t= | |
528 | fi | |
529 | else | |
530 | ac_n= ac_c='\c' ac_t= | |
531 | fi | |
532 | ||
533 | ||
534 | ||
535 | # Check whether --with-target-subdir or --without-target-subdir was given. | |
536 | if test "${with_target_subdir+set}" = set; then | |
537 | withval="$with_target_subdir" | |
538 | : | |
539 | fi | |
540 | ||
541 | # Check whether --with-cross-host or --without-cross-host was given. | |
542 | if test "${with_cross_host+set}" = set; then | |
543 | withval="$with_cross_host" | |
544 | : | |
545 | fi | |
546 | ||
547 | # Check whether --with-newlib or --without-newlib was given. | |
548 | if test "${with_newlib+set}" = set; then | |
549 | withval="$with_newlib" | |
550 | : | |
551 | fi | |
552 | ||
553 | ||
554 | if test "${srcdir}" = "."; then | |
555 | if test -z "${with_target_subdir}"; then | |
556 | libiberty_topdir="${srcdir}/.." | |
557 | else | |
558 | if test "${with_target_subdir}" != "."; then | |
559 | libiberty_topdir="${srcdir}/${with_multisrctop}../.." | |
560 | else | |
561 | libiberty_topdir="${srcdir}/${with_multisrctop}.." | |
562 | fi | |
563 | fi | |
564 | else | |
565 | libiberty_topdir="${srcdir}/.." | |
566 | fi | |
567 | ac_aux_dir= | |
568 | for ac_dir in $libiberty_topdir $srcdir/$libiberty_topdir; do | |
569 | if test -f $ac_dir/install-sh; then | |
570 | ac_aux_dir=$ac_dir | |
571 | ac_install_sh="$ac_aux_dir/install-sh -c" | |
572 | break | |
573 | elif test -f $ac_dir/install.sh; then | |
574 | ac_aux_dir=$ac_dir | |
575 | ac_install_sh="$ac_aux_dir/install.sh -c" | |
576 | break | |
577 | fi | |
578 | done | |
579 | if test -z "$ac_aux_dir"; then | |
580 | { echo "configure: error: can not find install-sh or install.sh in $libiberty_topdir $srcdir/$libiberty_topdir" 1>&2; exit 1; } | |
581 | fi | |
582 | ac_config_guess=$ac_aux_dir/config.guess | |
583 | ac_config_sub=$ac_aux_dir/config.sub | |
584 | ac_configure=$ac_aux_dir/configure # This should be Cygnus configure. | |
585 | ||
586 | ||
587 | ||
39423523 DD |
588 | echo $ac_n "checking whether to enable maintainer-specific portions of Makefiles""... $ac_c" 1>&6 |
589 | echo "configure:590: checking whether to enable maintainer-specific portions of Makefiles" >&5 | |
590 | # Check whether --enable-maintainer-mode or --disable-maintainer-mode was given. | |
591 | if test "${enable_maintainer_mode+set}" = set; then | |
592 | enableval="$enable_maintainer_mode" | |
593 | maintainer_mode=$enableval | |
594 | else | |
595 | maintainer_mode=no | |
596 | fi | |
597 | ||
598 | ||
599 | echo "$ac_t""$maintainer_mode" 1>&6 | |
600 | ||
601 | if test "$maintainer_mode" = "yes"; then | |
602 | MAINT='' | |
603 | NOTMAINT='#' | |
604 | else | |
605 | MAINT='#' | |
606 | NOTMAINT='' | |
607 | fi | |
608 | ||
da191b5b DD |
609 | # Do we have a single-tree copy of texinfo? Even if we do, we can't |
610 | # rely on it - libiberty is built before texinfo. | |
611 | # Extract the first word of "makeinfo", so it can be a program name with args. | |
39423523 DD |
612 | set dummy makeinfo; ac_word=$2 |
613 | echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 | |
da191b5b | 614 | echo "configure:615: checking for $ac_word" >&5 |
39423523 DD |
615 | if eval "test \"`echo '$''{'ac_cv_prog_MAKEINFO'+set}'`\" = set"; then |
616 | echo $ac_n "(cached) $ac_c" 1>&6 | |
617 | else | |
618 | if test -n "$MAKEINFO"; then | |
619 | ac_cv_prog_MAKEINFO="$MAKEINFO" # Let the user override the test. | |
620 | else | |
621 | IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":" | |
622 | ac_dummy="$PATH" | |
623 | for ac_dir in $ac_dummy; do | |
624 | test -z "$ac_dir" && ac_dir=. | |
625 | if test -f $ac_dir/$ac_word; then | |
626 | ac_cv_prog_MAKEINFO="makeinfo" | |
627 | break | |
628 | fi | |
629 | done | |
630 | IFS="$ac_save_ifs" | |
631 | fi | |
632 | fi | |
633 | MAKEINFO="$ac_cv_prog_MAKEINFO" | |
634 | if test -n "$MAKEINFO"; then | |
635 | echo "$ac_t""$MAKEINFO" 1>&6 | |
636 | else | |
637 | echo "$ac_t""no" 1>&6 | |
638 | fi | |
639 | ||
da191b5b DD |
640 | BUILD_INFO=info |
641 | case x"`$MAKEINFO --version | grep 'GNU texinfo'`" in | |
642 | x*\ [1-3].* ) | |
643 | MAKEINFO="@echo $MAKEINFO is too old, 4.0 or newer required ;true" | |
644 | BUILD_INFO= | |
645 | echo "configure: warning: | |
646 | *** Makeinfo is too old. Info documentation will not be built." 1>&2 | |
647 | ;; | |
648 | esac | |
649 | ||
39423523 DD |
650 | |
651 | ||
652 | # Extract the first word of "perl", so it can be a program name with args. | |
653 | set dummy perl; ac_word=$2 | |
654 | echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 | |
da191b5b | 655 | echo "configure:656: checking for $ac_word" >&5 |
39423523 DD |
656 | if eval "test \"`echo '$''{'ac_cv_prog_PERL'+set}'`\" = set"; then |
657 | echo $ac_n "(cached) $ac_c" 1>&6 | |
658 | else | |
659 | if test -n "$PERL"; then | |
660 | ac_cv_prog_PERL="$PERL" # Let the user override the test. | |
661 | else | |
662 | IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":" | |
663 | ac_dummy="$PATH" | |
664 | for ac_dir in $ac_dummy; do | |
665 | test -z "$ac_dir" && ac_dir=. | |
666 | if test -f $ac_dir/$ac_word; then | |
667 | ac_cv_prog_PERL="perl" | |
668 | break | |
669 | fi | |
670 | done | |
671 | IFS="$ac_save_ifs" | |
672 | fi | |
673 | fi | |
674 | PERL="$ac_cv_prog_PERL" | |
675 | if test -n "$PERL"; then | |
676 | echo "$ac_t""$PERL" 1>&6 | |
677 | else | |
678 | echo "$ac_t""no" 1>&6 | |
679 | fi | |
680 | ||
681 | if test x"$PERL" = x""; then | |
682 | HAVE_PERL='#' | |
683 | else | |
684 | HAVE_PERL='' | |
685 | fi | |
686 | ||
687 | ||
688 | ||
252b5132 RH |
689 | # Make sure we can run config.sub. |
690 | if ${CONFIG_SHELL-/bin/sh} $ac_config_sub sun4 >/dev/null 2>&1; then : | |
691 | else { echo "configure: error: can not run $ac_config_sub" 1>&2; exit 1; } | |
692 | fi | |
693 | ||
694 | echo $ac_n "checking host system type""... $ac_c" 1>&6 | |
da191b5b | 695 | echo "configure:696: checking host system type" >&5 |
252b5132 RH |
696 | |
697 | host_alias=$host | |
698 | case "$host_alias" in | |
699 | NONE) | |
700 | case $nonopt in | |
701 | NONE) | |
702 | if host_alias=`${CONFIG_SHELL-/bin/sh} $ac_config_guess`; then : | |
703 | else { echo "configure: error: can not guess host type; you must specify one" 1>&2; exit 1; } | |
704 | fi ;; | |
705 | *) host_alias=$nonopt ;; | |
706 | esac ;; | |
707 | esac | |
708 | ||
709 | host=`${CONFIG_SHELL-/bin/sh} $ac_config_sub $host_alias` | |
710 | host_cpu=`echo $host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'` | |
711 | host_vendor=`echo $host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'` | |
712 | host_os=`echo $host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'` | |
713 | echo "$ac_t""$host" 1>&6 | |
714 | ||
715 | ||
716 | ||
717 | echo $ac_n "checking build system type""... $ac_c" 1>&6 | |
da191b5b | 718 | echo "configure:719: checking build system type" >&5 |
252b5132 RH |
719 | |
720 | build_alias=$build | |
721 | case "$build_alias" in | |
722 | NONE) | |
723 | case $nonopt in | |
724 | NONE) build_alias=$host_alias ;; | |
725 | *) build_alias=$nonopt ;; | |
726 | esac ;; | |
727 | esac | |
728 | ||
729 | build=`${CONFIG_SHELL-/bin/sh} $ac_config_sub $build_alias` | |
730 | build_cpu=`echo $build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'` | |
731 | build_vendor=`echo $build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'` | |
732 | build_os=`echo $build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'` | |
733 | echo "$ac_t""$build" 1>&6 | |
734 | ||
735 | if test $host != $build; then | |
736 | ac_tool_prefix=${host_alias}- | |
737 | else | |
738 | ac_tool_prefix= | |
739 | fi | |
740 | ||
741 | # Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args. | |
742 | set dummy ${ac_tool_prefix}ar; ac_word=$2 | |
743 | echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 | |
da191b5b | 744 | echo "configure:745: checking for $ac_word" >&5 |
252b5132 RH |
745 | if eval "test \"`echo '$''{'ac_cv_prog_AR'+set}'`\" = set"; then |
746 | echo $ac_n "(cached) $ac_c" 1>&6 | |
747 | else | |
748 | if test -n "$AR"; then | |
749 | ac_cv_prog_AR="$AR" # Let the user override the test. | |
750 | else | |
751 | IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":" | |
752 | ac_dummy="$PATH" | |
753 | for ac_dir in $ac_dummy; do | |
754 | test -z "$ac_dir" && ac_dir=. | |
755 | if test -f $ac_dir/$ac_word; then | |
756 | ac_cv_prog_AR="${ac_tool_prefix}ar" | |
757 | break | |
758 | fi | |
759 | done | |
760 | IFS="$ac_save_ifs" | |
761 | test -z "$ac_cv_prog_AR" && ac_cv_prog_AR="ar" | |
762 | fi | |
763 | fi | |
764 | AR="$ac_cv_prog_AR" | |
765 | if test -n "$AR"; then | |
766 | echo "$ac_t""$AR" 1>&6 | |
767 | else | |
768 | echo "$ac_t""no" 1>&6 | |
769 | fi | |
770 | ||
771 | ||
772 | ||
773 | # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. | |
774 | set dummy ${ac_tool_prefix}ranlib; ac_word=$2 | |
775 | echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 | |
da191b5b | 776 | echo "configure:777: checking for $ac_word" >&5 |
252b5132 RH |
777 | if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then |
778 | echo $ac_n "(cached) $ac_c" 1>&6 | |
779 | else | |
780 | if test -n "$RANLIB"; then | |
781 | ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. | |
782 | else | |
783 | IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":" | |
784 | ac_dummy="$PATH" | |
785 | for ac_dir in $ac_dummy; do | |
786 | test -z "$ac_dir" && ac_dir=. | |
787 | if test -f $ac_dir/$ac_word; then | |
788 | ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" | |
789 | break | |
790 | fi | |
791 | done | |
792 | IFS="$ac_save_ifs" | |
793 | fi | |
794 | fi | |
795 | RANLIB="$ac_cv_prog_RANLIB" | |
796 | if test -n "$RANLIB"; then | |
797 | echo "$ac_t""$RANLIB" 1>&6 | |
798 | else | |
799 | echo "$ac_t""no" 1>&6 | |
800 | fi | |
801 | ||
802 | ||
803 | if test -z "$ac_cv_prog_RANLIB"; then | |
804 | if test -n "$ac_tool_prefix"; then | |
805 | # Extract the first word of "ranlib", so it can be a program name with args. | |
806 | set dummy ranlib; ac_word=$2 | |
807 | echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 | |
da191b5b | 808 | echo "configure:809: checking for $ac_word" >&5 |
252b5132 RH |
809 | if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then |
810 | echo $ac_n "(cached) $ac_c" 1>&6 | |
811 | else | |
812 | if test -n "$RANLIB"; then | |
813 | ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. | |
814 | else | |
815 | IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":" | |
816 | ac_dummy="$PATH" | |
817 | for ac_dir in $ac_dummy; do | |
818 | test -z "$ac_dir" && ac_dir=. | |
819 | if test -f $ac_dir/$ac_word; then | |
820 | ac_cv_prog_RANLIB="ranlib" | |
821 | break | |
822 | fi | |
823 | done | |
824 | IFS="$ac_save_ifs" | |
825 | test -z "$ac_cv_prog_RANLIB" && ac_cv_prog_RANLIB=":" | |
826 | fi | |
827 | fi | |
828 | RANLIB="$ac_cv_prog_RANLIB" | |
829 | if test -n "$RANLIB"; then | |
830 | echo "$ac_t""$RANLIB" 1>&6 | |
831 | else | |
832 | echo "$ac_t""no" 1>&6 | |
833 | fi | |
834 | ||
835 | else | |
836 | RANLIB=":" | |
837 | fi | |
838 | fi | |
839 | ||
840 | ||
0c0a36a4 | 841 | |
252b5132 RH |
842 | # Extract the first word of "gcc", so it can be a program name with args. |
843 | set dummy gcc; ac_word=$2 | |
844 | echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 | |
da191b5b | 845 | echo "configure:846: checking for $ac_word" >&5 |
252b5132 RH |
846 | if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then |
847 | echo $ac_n "(cached) $ac_c" 1>&6 | |
848 | else | |
849 | if test -n "$CC"; then | |
850 | ac_cv_prog_CC="$CC" # Let the user override the test. | |
851 | else | |
852 | IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":" | |
853 | ac_dummy="$PATH" | |
854 | for ac_dir in $ac_dummy; do | |
855 | test -z "$ac_dir" && ac_dir=. | |
856 | if test -f $ac_dir/$ac_word; then | |
857 | ac_cv_prog_CC="gcc" | |
858 | break | |
859 | fi | |
860 | done | |
861 | IFS="$ac_save_ifs" | |
862 | fi | |
863 | fi | |
864 | CC="$ac_cv_prog_CC" | |
865 | if test -n "$CC"; then | |
866 | echo "$ac_t""$CC" 1>&6 | |
867 | else | |
868 | echo "$ac_t""no" 1>&6 | |
869 | fi | |
870 | ||
871 | if test -z "$CC"; then | |
872 | # Extract the first word of "cc", so it can be a program name with args. | |
873 | set dummy cc; ac_word=$2 | |
874 | echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 | |
da191b5b | 875 | echo "configure:876: checking for $ac_word" >&5 |
252b5132 RH |
876 | if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then |
877 | echo $ac_n "(cached) $ac_c" 1>&6 | |
878 | else | |
879 | if test -n "$CC"; then | |
880 | ac_cv_prog_CC="$CC" # Let the user override the test. | |
881 | else | |
882 | IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":" | |
883 | ac_prog_rejected=no | |
884 | ac_dummy="$PATH" | |
885 | for ac_dir in $ac_dummy; do | |
886 | test -z "$ac_dir" && ac_dir=. | |
887 | if test -f $ac_dir/$ac_word; then | |
888 | if test "$ac_dir/$ac_word" = "/usr/ucb/cc"; then | |
889 | ac_prog_rejected=yes | |
890 | continue | |
891 | fi | |
892 | ac_cv_prog_CC="cc" | |
893 | break | |
894 | fi | |
895 | done | |
896 | IFS="$ac_save_ifs" | |
897 | if test $ac_prog_rejected = yes; then | |
898 | # We found a bogon in the path, so make sure we never use it. | |
899 | set dummy $ac_cv_prog_CC | |
900 | shift | |
901 | if test $# -gt 0; then | |
902 | # We chose a different compiler from the bogus one. | |
903 | # However, it has the same basename, so the bogon will be chosen | |
904 | # first if we set CC to just the basename; use the full file name. | |
905 | shift | |
906 | set dummy "$ac_dir/$ac_word" "$@" | |
907 | shift | |
908 | ac_cv_prog_CC="$@" | |
909 | fi | |
910 | fi | |
911 | fi | |
912 | fi | |
913 | CC="$ac_cv_prog_CC" | |
914 | if test -n "$CC"; then | |
915 | echo "$ac_t""$CC" 1>&6 | |
916 | else | |
917 | echo "$ac_t""no" 1>&6 | |
918 | fi | |
919 | ||
920 | test -z "$CC" && { echo "configure: error: no acceptable cc found in \$PATH" 1>&2; exit 1; } | |
921 | fi | |
922 | ||
923 | echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6 | |
da191b5b | 924 | echo "configure:925: checking whether we are using GNU C" >&5 |
252b5132 RH |
925 | if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then |
926 | echo $ac_n "(cached) $ac_c" 1>&6 | |
927 | else | |
928 | cat > conftest.c <<EOF | |
929 | #ifdef __GNUC__ | |
930 | yes; | |
931 | #endif | |
932 | EOF | |
da191b5b | 933 | if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:934: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then |
252b5132 RH |
934 | ac_cv_prog_gcc=yes |
935 | else | |
936 | ac_cv_prog_gcc=no | |
937 | fi | |
938 | fi | |
939 | ||
940 | echo "$ac_t""$ac_cv_prog_gcc" 1>&6 | |
941 | ||
942 | if test $ac_cv_prog_gcc = yes; then | |
943 | GCC=yes | |
eb383413 | 944 | ac_libiberty_warn_cflags='-W -Wall -Wtraditional -pedantic' |
252b5132 RH |
945 | ac_test_CFLAGS="${CFLAGS+set}" |
946 | ac_save_CFLAGS="$CFLAGS" | |
947 | CFLAGS= | |
948 | echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6 | |
da191b5b | 949 | echo "configure:950: checking whether ${CC-cc} accepts -g" >&5 |
252b5132 RH |
950 | if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then |
951 | echo $ac_n "(cached) $ac_c" 1>&6 | |
952 | else | |
953 | echo 'void f(){}' > conftest.c | |
954 | if test -z "`${CC-cc} -g -c conftest.c 2>&1`"; then | |
955 | ac_cv_prog_cc_g=yes | |
956 | else | |
957 | ac_cv_prog_cc_g=no | |
958 | fi | |
959 | rm -f conftest* | |
960 | ||
961 | fi | |
962 | ||
963 | echo "$ac_t""$ac_cv_prog_cc_g" 1>&6 | |
964 | if test "$ac_test_CFLAGS" = set; then | |
965 | CFLAGS="$ac_save_CFLAGS" | |
966 | elif test $ac_cv_prog_cc_g = yes; then | |
967 | CFLAGS="-g -O2" | |
968 | else | |
969 | CFLAGS="-O2" | |
970 | fi | |
971 | else | |
972 | GCC= | |
0c0a36a4 | 973 | ac_libiberty_warn_cflags= |
252b5132 RH |
974 | test "${CFLAGS+set}" = set || CFLAGS="-g" |
975 | fi | |
976 | ||
977 | ||
92655e19 | 978 | |
252b5132 | 979 | echo $ac_n "checking for POSIXized ISC""... $ac_c" 1>&6 |
da191b5b | 980 | echo "configure:981: checking for POSIXized ISC" >&5 |
252b5132 RH |
981 | if test -d /etc/conf/kconfig.d && |
982 | grep _POSIX_VERSION /usr/include/sys/unistd.h >/dev/null 2>&1 | |
983 | then | |
984 | echo "$ac_t""yes" 1>&6 | |
985 | ISC=yes # If later tests want to check for ISC. | |
986 | cat >> confdefs.h <<\EOF | |
987 | #define _POSIX_SOURCE 1 | |
988 | EOF | |
989 | ||
990 | if test "$GCC" = yes; then | |
991 | CC="$CC -posix" | |
992 | else | |
993 | CC="$CC -Xp" | |
994 | fi | |
995 | else | |
996 | echo "$ac_t""no" 1>&6 | |
997 | ISC= | |
998 | fi | |
999 | ||
92655e19 | 1000 | echo $ac_n "checking for working const""... $ac_c" 1>&6 |
da191b5b | 1001 | echo "configure:1002: checking for working const" >&5 |
92655e19 DD |
1002 | if eval "test \"`echo '$''{'ac_cv_c_const'+set}'`\" = set"; then |
1003 | echo $ac_n "(cached) $ac_c" 1>&6 | |
1004 | else | |
1005 | cat > conftest.$ac_ext <<EOF | |
da191b5b | 1006 | #line 1007 "configure" |
92655e19 DD |
1007 | #include "confdefs.h" |
1008 | ||
1009 | int main() { | |
1010 | ||
1011 | /* Ultrix mips cc rejects this. */ | |
c6da642e | 1012 | typedef int charset[2]; const charset x; |
92655e19 DD |
1013 | /* SunOS 4.1.1 cc rejects this. */ |
1014 | char const *const *ccp; | |
1015 | char **p; | |
1016 | /* NEC SVR4.0.2 mips cc rejects this. */ | |
1017 | struct point {int x, y;}; | |
1018 | static struct point const zero = {0,0}; | |
1019 | /* AIX XL C 1.02.0.0 rejects this. | |
1020 | It does not let you subtract one const X* pointer from another in an arm | |
1021 | of an if-expression whose if-part is not a constant expression */ | |
1022 | const char *g = "string"; | |
1023 | ccp = &g + (g ? g-g : 0); | |
1024 | /* HPUX 7.0 cc rejects these. */ | |
1025 | ++ccp; | |
1026 | p = (char**) ccp; | |
1027 | ccp = (char const *const *) p; | |
1028 | { /* SCO 3.2v4 cc rejects this. */ | |
1029 | char *t; | |
1030 | char const *s = 0 ? (char *) 0 : (char const *) 0; | |
1031 | ||
1032 | *t++ = 0; | |
1033 | } | |
1034 | { /* Someone thinks the Sun supposedly-ANSI compiler will reject this. */ | |
1035 | int x[] = {25, 17}; | |
1036 | const int *foo = &x[0]; | |
1037 | ++foo; | |
1038 | } | |
1039 | { /* Sun SC1.0 ANSI compiler rejects this -- but not the above. */ | |
1040 | typedef const int *iptr; | |
1041 | iptr p = 0; | |
1042 | ++p; | |
1043 | } | |
1044 | { /* AIX XL C 1.02.0.0 rejects this saying | |
1045 | "k.c", line 2.27: 1506-025 (S) Operand must be a modifiable lvalue. */ | |
1046 | struct s { int j; const int *ap[3]; }; | |
1047 | struct s *b; b->j = 5; | |
1048 | } | |
1049 | { /* ULTRIX-32 V3.1 (Rev 9) vcc rejects this */ | |
1050 | const int foo = 10; | |
1051 | } | |
1052 | ||
1053 | ; return 0; } | |
1054 | EOF | |
da191b5b | 1055 | if { (eval echo configure:1056: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then |
92655e19 DD |
1056 | rm -rf conftest* |
1057 | ac_cv_c_const=yes | |
1058 | else | |
1059 | echo "configure: failed program was:" >&5 | |
1060 | cat conftest.$ac_ext >&5 | |
1061 | rm -rf conftest* | |
1062 | ac_cv_c_const=no | |
1063 | fi | |
1064 | rm -f conftest* | |
1065 | fi | |
1066 | ||
1067 | echo "$ac_t""$ac_cv_c_const" 1>&6 | |
1068 | if test $ac_cv_c_const = no; then | |
1069 | cat >> confdefs.h <<\EOF | |
1070 | #define const | |
1071 | EOF | |
1072 | ||
1073 | fi | |
1074 | ||
1075 | echo $ac_n "checking for inline""... $ac_c" 1>&6 | |
da191b5b | 1076 | echo "configure:1077: checking for inline" >&5 |
92655e19 DD |
1077 | if eval "test \"`echo '$''{'ac_cv_c_inline'+set}'`\" = set"; then |
1078 | echo $ac_n "(cached) $ac_c" 1>&6 | |
1079 | else | |
1080 | ac_cv_c_inline=no | |
1081 | for ac_kw in inline __inline__ __inline; do | |
1082 | cat > conftest.$ac_ext <<EOF | |
da191b5b | 1083 | #line 1084 "configure" |
92655e19 DD |
1084 | #include "confdefs.h" |
1085 | ||
1086 | int main() { | |
c6da642e | 1087 | } $ac_kw foo() { |
92655e19 DD |
1088 | ; return 0; } |
1089 | EOF | |
da191b5b | 1090 | if { (eval echo configure:1091: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then |
92655e19 DD |
1091 | rm -rf conftest* |
1092 | ac_cv_c_inline=$ac_kw; break | |
1093 | else | |
1094 | echo "configure: failed program was:" >&5 | |
1095 | cat conftest.$ac_ext >&5 | |
1096 | fi | |
1097 | rm -f conftest* | |
1098 | done | |
1099 | ||
1100 | fi | |
1101 | ||
1102 | echo "$ac_t""$ac_cv_c_inline" 1>&6 | |
1103 | case "$ac_cv_c_inline" in | |
1104 | inline | yes) ;; | |
1105 | no) cat >> confdefs.h <<\EOF | |
1106 | #define inline | |
1107 | EOF | |
1108 | ;; | |
1109 | *) cat >> confdefs.h <<EOF | |
1110 | #define inline $ac_cv_c_inline | |
1111 | EOF | |
1112 | ;; | |
1113 | esac | |
1114 | ||
252b5132 RH |
1115 | |
1116 | ||
1117 | ||
1118 | ||
1119 | ||
1120 | ||
1121 | # Find a good install program. We prefer a C program (faster), | |
1122 | # so one script is as good as another. But avoid the broken or | |
1123 | # incompatible versions: | |
1124 | # SysV /etc/install, /usr/sbin/install | |
1125 | # SunOS /usr/etc/install | |
1126 | # IRIX /sbin/install | |
1127 | # AIX /bin/install | |
1128 | # AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag | |
1129 | # AFS /usr/afsws/bin/install, which mishandles nonexistent args | |
1130 | # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" | |
1131 | # ./install, which can be erroneously created by make from ./install.sh. | |
1132 | echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6 | |
da191b5b | 1133 | echo "configure:1134: checking for a BSD compatible install" >&5 |
252b5132 RH |
1134 | if test -z "$INSTALL"; then |
1135 | if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then | |
1136 | echo $ac_n "(cached) $ac_c" 1>&6 | |
1137 | else | |
1138 | IFS="${IFS= }"; ac_save_IFS="$IFS"; IFS=":" | |
1139 | for ac_dir in $PATH; do | |
1140 | # Account for people who put trailing slashes in PATH elements. | |
1141 | case "$ac_dir/" in | |
1142 | /|./|.//|/etc/*|/usr/sbin/*|/usr/etc/*|/sbin/*|/usr/afsws/bin/*|/usr/ucb/*) ;; | |
1143 | *) | |
1144 | # OSF1 and SCO ODT 3.0 have their own names for install. | |
1145 | # Don't use installbsd from OSF since it installs stuff as root | |
1146 | # by default. | |
1147 | for ac_prog in ginstall scoinst install; do | |
1148 | if test -f $ac_dir/$ac_prog; then | |
1149 | if test $ac_prog = install && | |
1150 | grep dspmsg $ac_dir/$ac_prog >/dev/null 2>&1; then | |
1151 | # AIX install. It has an incompatible calling convention. | |
1152 | : | |
1153 | else | |
1154 | ac_cv_path_install="$ac_dir/$ac_prog -c" | |
1155 | break 2 | |
1156 | fi | |
1157 | fi | |
1158 | done | |
1159 | ;; | |
1160 | esac | |
1161 | done | |
1162 | IFS="$ac_save_IFS" | |
1163 | ||
1164 | fi | |
1165 | if test "${ac_cv_path_install+set}" = set; then | |
1166 | INSTALL="$ac_cv_path_install" | |
1167 | else | |
1168 | # As a last resort, use the slow shell script. We don't cache a | |
1169 | # path for INSTALL within a source directory, because that will | |
1170 | # break other packages using the cache if that directory is | |
1171 | # removed, or if the path is relative. | |
1172 | INSTALL="$ac_install_sh" | |
1173 | fi | |
1174 | fi | |
1175 | echo "$ac_t""$INSTALL" 1>&6 | |
1176 | ||
1177 | # Use test -z because SunOS4 sh mishandles braces in ${var-val}. | |
1178 | # It thinks the first close brace ends the variable substitution. | |
1179 | test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}' | |
1180 | ||
1181 | test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL_PROGRAM}' | |
1182 | ||
1183 | test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' | |
1184 | ||
1185 | ||
1186 | . ${srcdir}/config.table | |
1187 | host_makefile_frag=${frag} | |
1188 | ||
1189 | ||
1190 | # It's OK to check for header files. Although the compiler may not be | |
1191 | # able to link anything, it had better be able to at least compile | |
1192 | # something. | |
1193 | echo $ac_n "checking how to run the C preprocessor""... $ac_c" 1>&6 | |
da191b5b | 1194 | echo "configure:1195: checking how to run the C preprocessor" >&5 |
252b5132 RH |
1195 | # On Suns, sometimes $CPP names a directory. |
1196 | if test -n "$CPP" && test -d "$CPP"; then | |
1197 | CPP= | |
1198 | fi | |
1199 | if test -z "$CPP"; then | |
1200 | if eval "test \"`echo '$''{'ac_cv_prog_CPP'+set}'`\" = set"; then | |
1201 | echo $ac_n "(cached) $ac_c" 1>&6 | |
1202 | else | |
1203 | # This must be in double quotes, not single quotes, because CPP may get | |
1204 | # substituted into the Makefile and "${CC-cc}" will confuse make. | |
1205 | CPP="${CC-cc} -E" | |
1206 | # On the NeXT, cc -E runs the code through the compiler's parser, | |
1207 | # not just through cpp. | |
1208 | cat > conftest.$ac_ext <<EOF | |
da191b5b | 1209 | #line 1210 "configure" |
252b5132 RH |
1210 | #include "confdefs.h" |
1211 | #include <assert.h> | |
1212 | Syntax Error | |
1213 | EOF | |
1214 | ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" | |
da191b5b | 1215 | { (eval echo configure:1216: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
252b5132 RH |
1216 | ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` |
1217 | if test -z "$ac_err"; then | |
1218 | : | |
1219 | else | |
1220 | echo "$ac_err" >&5 | |
1221 | echo "configure: failed program was:" >&5 | |
1222 | cat conftest.$ac_ext >&5 | |
1223 | rm -rf conftest* | |
1224 | CPP="${CC-cc} -E -traditional-cpp" | |
1225 | cat > conftest.$ac_ext <<EOF | |
da191b5b | 1226 | #line 1227 "configure" |
252b5132 RH |
1227 | #include "confdefs.h" |
1228 | #include <assert.h> | |
1229 | Syntax Error | |
1230 | EOF | |
1231 | ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" | |
da191b5b | 1232 | { (eval echo configure:1233: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
252b5132 RH |
1233 | ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` |
1234 | if test -z "$ac_err"; then | |
1235 | : | |
1236 | else | |
1237 | echo "$ac_err" >&5 | |
1238 | echo "configure: failed program was:" >&5 | |
1239 | cat conftest.$ac_ext >&5 | |
1240 | rm -rf conftest* | |
1241 | CPP="${CC-cc} -nologo -E" | |
1242 | cat > conftest.$ac_ext <<EOF | |
da191b5b | 1243 | #line 1244 "configure" |
252b5132 RH |
1244 | #include "confdefs.h" |
1245 | #include <assert.h> | |
1246 | Syntax Error | |
1247 | EOF | |
1248 | ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" | |
da191b5b | 1249 | { (eval echo configure:1250: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
252b5132 RH |
1250 | ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` |
1251 | if test -z "$ac_err"; then | |
1252 | : | |
1253 | else | |
1254 | echo "$ac_err" >&5 | |
1255 | echo "configure: failed program was:" >&5 | |
1256 | cat conftest.$ac_ext >&5 | |
1257 | rm -rf conftest* | |
1258 | CPP=/lib/cpp | |
1259 | fi | |
1260 | rm -f conftest* | |
1261 | fi | |
1262 | rm -f conftest* | |
1263 | fi | |
1264 | rm -f conftest* | |
1265 | ac_cv_prog_CPP="$CPP" | |
1266 | fi | |
1267 | CPP="$ac_cv_prog_CPP" | |
1268 | else | |
1269 | ac_cv_prog_CPP="$CPP" | |
1270 | fi | |
1271 | echo "$ac_t""$CPP" 1>&6 | |
1272 | ||
62df2065 | 1273 | for ac_hdr in sys/file.h sys/param.h limits.h stdlib.h string.h unistd.h strings.h sys/time.h time.h sys/resource.h sys/stat.h sys/mman.h fcntl.h |
252b5132 RH |
1274 | do |
1275 | ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` | |
1276 | echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 | |
da191b5b | 1277 | echo "configure:1278: checking for $ac_hdr" >&5 |
252b5132 RH |
1278 | if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then |
1279 | echo $ac_n "(cached) $ac_c" 1>&6 | |
1280 | else | |
1281 | cat > conftest.$ac_ext <<EOF | |
da191b5b | 1282 | #line 1283 "configure" |
252b5132 RH |
1283 | #include "confdefs.h" |
1284 | #include <$ac_hdr> | |
1285 | EOF | |
1286 | ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" | |
da191b5b | 1287 | { (eval echo configure:1288: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
252b5132 RH |
1288 | ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` |
1289 | if test -z "$ac_err"; then | |
1290 | rm -rf conftest* | |
1291 | eval "ac_cv_header_$ac_safe=yes" | |
1292 | else | |
1293 | echo "$ac_err" >&5 | |
1294 | echo "configure: failed program was:" >&5 | |
1295 | cat conftest.$ac_ext >&5 | |
1296 | rm -rf conftest* | |
1297 | eval "ac_cv_header_$ac_safe=no" | |
1298 | fi | |
1299 | rm -f conftest* | |
1300 | fi | |
1301 | if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then | |
1302 | echo "$ac_t""yes" 1>&6 | |
1303 | ac_tr_hdr=HAVE_`echo $ac_hdr | sed 'y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%'` | |
1304 | cat >> confdefs.h <<EOF | |
1305 | #define $ac_tr_hdr 1 | |
1306 | EOF | |
1307 | ||
1308 | else | |
1309 | echo "$ac_t""no" 1>&6 | |
1310 | fi | |
1311 | done | |
1312 | ||
1313 | echo $ac_n "checking for sys/wait.h that is POSIX.1 compatible""... $ac_c" 1>&6 | |
da191b5b | 1314 | echo "configure:1315: checking for sys/wait.h that is POSIX.1 compatible" >&5 |
252b5132 RH |
1315 | if eval "test \"`echo '$''{'ac_cv_header_sys_wait_h'+set}'`\" = set"; then |
1316 | echo $ac_n "(cached) $ac_c" 1>&6 | |
1317 | else | |
1318 | cat > conftest.$ac_ext <<EOF | |
da191b5b | 1319 | #line 1320 "configure" |
252b5132 RH |
1320 | #include "confdefs.h" |
1321 | #include <sys/types.h> | |
1322 | #include <sys/wait.h> | |
1323 | #ifndef WEXITSTATUS | |
1324 | #define WEXITSTATUS(stat_val) ((unsigned)(stat_val) >> 8) | |
1325 | #endif | |
1326 | #ifndef WIFEXITED | |
1327 | #define WIFEXITED(stat_val) (((stat_val) & 255) == 0) | |
1328 | #endif | |
1329 | int main() { | |
1330 | int s; | |
1331 | wait (&s); | |
1332 | s = WIFEXITED (s) ? WEXITSTATUS (s) : 1; | |
1333 | ; return 0; } | |
1334 | EOF | |
da191b5b | 1335 | if { (eval echo configure:1336: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then |
252b5132 RH |
1336 | rm -rf conftest* |
1337 | ac_cv_header_sys_wait_h=yes | |
1338 | else | |
1339 | echo "configure: failed program was:" >&5 | |
1340 | cat conftest.$ac_ext >&5 | |
1341 | rm -rf conftest* | |
1342 | ac_cv_header_sys_wait_h=no | |
1343 | fi | |
1344 | rm -f conftest* | |
1345 | fi | |
1346 | ||
1347 | echo "$ac_t""$ac_cv_header_sys_wait_h" 1>&6 | |
1348 | if test $ac_cv_header_sys_wait_h = yes; then | |
1349 | cat >> confdefs.h <<\EOF | |
1350 | #define HAVE_SYS_WAIT_H 1 | |
1351 | EOF | |
1352 | ||
1353 | fi | |
1354 | ||
62df2065 | 1355 | echo $ac_n "checking whether time.h and sys/time.h may both be included""... $ac_c" 1>&6 |
da191b5b | 1356 | echo "configure:1357: checking whether time.h and sys/time.h may both be included" >&5 |
62df2065 JL |
1357 | if eval "test \"`echo '$''{'ac_cv_header_time'+set}'`\" = set"; then |
1358 | echo $ac_n "(cached) $ac_c" 1>&6 | |
1359 | else | |
1360 | cat > conftest.$ac_ext <<EOF | |
da191b5b | 1361 | #line 1362 "configure" |
62df2065 JL |
1362 | #include "confdefs.h" |
1363 | #include <sys/types.h> | |
1364 | #include <sys/time.h> | |
1365 | #include <time.h> | |
1366 | int main() { | |
1367 | struct tm *tp; | |
1368 | ; return 0; } | |
1369 | EOF | |
da191b5b | 1370 | if { (eval echo configure:1371: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then |
62df2065 JL |
1371 | rm -rf conftest* |
1372 | ac_cv_header_time=yes | |
1373 | else | |
1374 | echo "configure: failed program was:" >&5 | |
1375 | cat conftest.$ac_ext >&5 | |
1376 | rm -rf conftest* | |
1377 | ac_cv_header_time=no | |
1378 | fi | |
1379 | rm -f conftest* | |
1380 | fi | |
1381 | ||
1382 | echo "$ac_t""$ac_cv_header_time" 1>&6 | |
1383 | if test $ac_cv_header_time = yes; then | |
1384 | cat >> confdefs.h <<\EOF | |
1385 | #define TIME_WITH_SYS_TIME 1 | |
1386 | EOF | |
1387 | ||
1388 | fi | |
1389 | ||
252b5132 | 1390 | |
7d3ffcaf | 1391 | echo $ac_n "checking whether errno must be declared""... $ac_c" 1>&6 |
da191b5b | 1392 | echo "configure:1393: checking whether errno must be declared" >&5 |
7d3ffcaf JL |
1393 | if eval "test \"`echo '$''{'libiberty_cv_declare_errno'+set}'`\" = set"; then |
1394 | echo $ac_n "(cached) $ac_c" 1>&6 | |
1395 | else | |
1396 | cat > conftest.$ac_ext <<EOF | |
da191b5b | 1397 | #line 1398 "configure" |
7d3ffcaf JL |
1398 | #include "confdefs.h" |
1399 | #include <errno.h> | |
1400 | int main() { | |
1401 | int x = errno; | |
1402 | ; return 0; } | |
1403 | EOF | |
da191b5b | 1404 | if { (eval echo configure:1405: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then |
7d3ffcaf JL |
1405 | rm -rf conftest* |
1406 | libiberty_cv_declare_errno=no | |
1407 | else | |
1408 | echo "configure: failed program was:" >&5 | |
1409 | cat conftest.$ac_ext >&5 | |
1410 | rm -rf conftest* | |
1411 | libiberty_cv_declare_errno=yes | |
1412 | fi | |
1413 | rm -f conftest* | |
1414 | fi | |
1415 | ||
1416 | echo "$ac_t""$libiberty_cv_declare_errno" 1>&6 | |
1417 | if test $libiberty_cv_declare_errno = yes | |
1418 | then cat >> confdefs.h <<\EOF | |
1419 | #define NEED_DECLARATION_ERRNO 1 | |
1420 | EOF | |
1421 | ||
1422 | fi | |
1423 | ||
1424 | ||
252b5132 RH |
1425 | # This is the list of functions which libiberty will provide if they |
1426 | # are not available on the host. | |
1427 | ||
1428 | funcs="asprintf" | |
1429 | funcs="$funcs atexit" | |
1430 | funcs="$funcs basename" | |
1431 | funcs="$funcs bcmp" | |
1432 | funcs="$funcs bcopy" | |
c6da642e | 1433 | funcs="$funcs bsearch" |
252b5132 RH |
1434 | funcs="$funcs bzero" |
1435 | funcs="$funcs calloc" | |
1436 | funcs="$funcs clock" | |
7b78baae | 1437 | funcs="$funcs ffs" |
252b5132 RH |
1438 | funcs="$funcs getcwd" |
1439 | funcs="$funcs getpagesize" | |
1440 | funcs="$funcs index" | |
1441 | funcs="$funcs insque" | |
1442 | funcs="$funcs memchr" | |
1443 | funcs="$funcs memcmp" | |
1444 | funcs="$funcs memcpy" | |
1445 | funcs="$funcs memmove" | |
1446 | funcs="$funcs memset" | |
1447 | funcs="$funcs mkstemps" | |
0c0a36a4 | 1448 | funcs="$funcs putenv" |
252b5132 RH |
1449 | funcs="$funcs random" |
1450 | funcs="$funcs rename" | |
1451 | funcs="$funcs rindex" | |
0c0a36a4 | 1452 | funcs="$funcs setenv" |
252b5132 RH |
1453 | funcs="$funcs sigsetmask" |
1454 | funcs="$funcs strcasecmp" | |
1455 | funcs="$funcs strchr" | |
1456 | funcs="$funcs strdup" | |
1457 | funcs="$funcs strncasecmp" | |
1458 | funcs="$funcs strrchr" | |
1459 | funcs="$funcs strstr" | |
1460 | funcs="$funcs strtod" | |
1461 | funcs="$funcs strtol" | |
1462 | funcs="$funcs strtoul" | |
1463 | funcs="$funcs tmpnam" | |
1464 | funcs="$funcs vasprintf" | |
1465 | funcs="$funcs vfprintf" | |
1466 | funcs="$funcs vprintf" | |
1467 | funcs="$funcs vsprintf" | |
1468 | funcs="$funcs waitpid" | |
1469 | ||
1470 | # Also in the old function.def file: alloca, vfork, getopt. | |
1471 | ||
1472 | vars="sys_errlist sys_nerr sys_siglist" | |
1473 | ||
0c0a36a4 | 1474 | checkfuncs="getrusage on_exit psignal strerror strsignal sysconf times sbrk gettimeofday" |
252b5132 RH |
1475 | |
1476 | # These are neither executed nor required, but they help keep | |
1477 | # autoheader happy without adding a bunch of text to acconfig.h. | |
1478 | if test "x" = "y"; then | |
c6da642e | 1479 | for ac_func in asprintf atexit basename bcmp bcopy bsearch bzero calloc clock |
252b5132 RH |
1480 | do |
1481 | echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 | |
da191b5b | 1482 | echo "configure:1483: checking for $ac_func" >&5 |
252b5132 RH |
1483 | if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then |
1484 | echo $ac_n "(cached) $ac_c" 1>&6 | |
1485 | else | |
1486 | cat > conftest.$ac_ext <<EOF | |
da191b5b | 1487 | #line 1488 "configure" |
252b5132 RH |
1488 | #include "confdefs.h" |
1489 | /* System header to define __stub macros and hopefully few prototypes, | |
1490 | which can conflict with char $ac_func(); below. */ | |
1491 | #include <assert.h> | |
1492 | /* Override any gcc2 internal prototype to avoid an error. */ | |
1493 | /* We use char because int might match the return type of a gcc2 | |
1494 | builtin and then its argument prototype would still apply. */ | |
1495 | char $ac_func(); | |
1496 | ||
1497 | int main() { | |
1498 | ||
1499 | /* The GNU C library defines this for functions which it implements | |
1500 | to always fail with ENOSYS. Some functions are actually named | |
1501 | something starting with __ and the normal name is an alias. */ | |
1502 | #if defined (__stub_$ac_func) || defined (__stub___$ac_func) | |
1503 | choke me | |
1504 | #else | |
1505 | $ac_func(); | |
1506 | #endif | |
1507 | ||
1508 | ; return 0; } | |
1509 | EOF | |
da191b5b | 1510 | if { (eval echo configure:1511: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then |
252b5132 RH |
1511 | rm -rf conftest* |
1512 | eval "ac_cv_func_$ac_func=yes" | |
1513 | else | |
1514 | echo "configure: failed program was:" >&5 | |
1515 | cat conftest.$ac_ext >&5 | |
1516 | rm -rf conftest* | |
1517 | eval "ac_cv_func_$ac_func=no" | |
1518 | fi | |
1519 | rm -f conftest* | |
1520 | fi | |
1521 | ||
1522 | if eval "test \"`echo '$ac_cv_func_'$ac_func`\" = yes"; then | |
1523 | echo "$ac_t""yes" 1>&6 | |
1524 | ac_tr_func=HAVE_`echo $ac_func | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'` | |
1525 | cat >> confdefs.h <<EOF | |
1526 | #define $ac_tr_func 1 | |
1527 | EOF | |
1528 | ||
1529 | else | |
1530 | echo "$ac_t""no" 1>&6 | |
1531 | fi | |
1532 | done | |
1533 | ||
c6da642e | 1534 | for ac_func in getcwd getpagesize index insque mkstemps memchr memcmp memcpy |
252b5132 RH |
1535 | do |
1536 | echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 | |
da191b5b | 1537 | echo "configure:1538: checking for $ac_func" >&5 |
252b5132 RH |
1538 | if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then |
1539 | echo $ac_n "(cached) $ac_c" 1>&6 | |
1540 | else | |
1541 | cat > conftest.$ac_ext <<EOF | |
da191b5b | 1542 | #line 1543 "configure" |
252b5132 RH |
1543 | #include "confdefs.h" |
1544 | /* System header to define __stub macros and hopefully few prototypes, | |
1545 | which can conflict with char $ac_func(); below. */ | |
1546 | #include <assert.h> | |
1547 | /* Override any gcc2 internal prototype to avoid an error. */ | |
1548 | /* We use char because int might match the return type of a gcc2 | |
1549 | builtin and then its argument prototype would still apply. */ | |
1550 | char $ac_func(); | |
1551 | ||
1552 | int main() { | |
1553 | ||
1554 | /* The GNU C library defines this for functions which it implements | |
1555 | to always fail with ENOSYS. Some functions are actually named | |
1556 | something starting with __ and the normal name is an alias. */ | |
1557 | #if defined (__stub_$ac_func) || defined (__stub___$ac_func) | |
1558 | choke me | |
1559 | #else | |
1560 | $ac_func(); | |
1561 | #endif | |
1562 | ||
1563 | ; return 0; } | |
1564 | EOF | |
da191b5b | 1565 | if { (eval echo configure:1566: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then |
252b5132 RH |
1566 | rm -rf conftest* |
1567 | eval "ac_cv_func_$ac_func=yes" | |
1568 | else | |
1569 | echo "configure: failed program was:" >&5 | |
1570 | cat conftest.$ac_ext >&5 | |
1571 | rm -rf conftest* | |
1572 | eval "ac_cv_func_$ac_func=no" | |
1573 | fi | |
1574 | rm -f conftest* | |
1575 | fi | |
1576 | ||
1577 | if eval "test \"`echo '$ac_cv_func_'$ac_func`\" = yes"; then | |
1578 | echo "$ac_t""yes" 1>&6 | |
1579 | ac_tr_func=HAVE_`echo $ac_func | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'` | |
1580 | cat >> confdefs.h <<EOF | |
1581 | #define $ac_tr_func 1 | |
1582 | EOF | |
1583 | ||
1584 | else | |
1585 | echo "$ac_t""no" 1>&6 | |
1586 | fi | |
1587 | done | |
1588 | ||
c6da642e | 1589 | for ac_func in memmove memset putenv random rename rindex sigsetmask |
252b5132 RH |
1590 | do |
1591 | echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 | |
da191b5b | 1592 | echo "configure:1593: checking for $ac_func" >&5 |
252b5132 RH |
1593 | if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then |
1594 | echo $ac_n "(cached) $ac_c" 1>&6 | |
1595 | else | |
1596 | cat > conftest.$ac_ext <<EOF | |
da191b5b | 1597 | #line 1598 "configure" |
252b5132 RH |
1598 | #include "confdefs.h" |
1599 | /* System header to define __stub macros and hopefully few prototypes, | |
1600 | which can conflict with char $ac_func(); below. */ | |
1601 | #include <assert.h> | |
1602 | /* Override any gcc2 internal prototype to avoid an error. */ | |
1603 | /* We use char because int might match the return type of a gcc2 | |
1604 | builtin and then its argument prototype would still apply. */ | |
1605 | char $ac_func(); | |
1606 | ||
1607 | int main() { | |
1608 | ||
1609 | /* The GNU C library defines this for functions which it implements | |
1610 | to always fail with ENOSYS. Some functions are actually named | |
1611 | something starting with __ and the normal name is an alias. */ | |
1612 | #if defined (__stub_$ac_func) || defined (__stub___$ac_func) | |
1613 | choke me | |
1614 | #else | |
1615 | $ac_func(); | |
1616 | #endif | |
1617 | ||
1618 | ; return 0; } | |
1619 | EOF | |
da191b5b | 1620 | if { (eval echo configure:1621: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then |
252b5132 RH |
1621 | rm -rf conftest* |
1622 | eval "ac_cv_func_$ac_func=yes" | |
1623 | else | |
1624 | echo "configure: failed program was:" >&5 | |
1625 | cat conftest.$ac_ext >&5 | |
1626 | rm -rf conftest* | |
1627 | eval "ac_cv_func_$ac_func=no" | |
1628 | fi | |
1629 | rm -f conftest* | |
1630 | fi | |
1631 | ||
1632 | if eval "test \"`echo '$ac_cv_func_'$ac_func`\" = yes"; then | |
1633 | echo "$ac_t""yes" 1>&6 | |
1634 | ac_tr_func=HAVE_`echo $ac_func | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'` | |
1635 | cat >> confdefs.h <<EOF | |
1636 | #define $ac_tr_func 1 | |
1637 | EOF | |
1638 | ||
1639 | else | |
1640 | echo "$ac_t""no" 1>&6 | |
1641 | fi | |
1642 | done | |
1643 | ||
c6da642e | 1644 | for ac_func in strcasecmp setenv strchr strdup strncasecmp strrchr strstr |
252b5132 RH |
1645 | do |
1646 | echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 | |
da191b5b | 1647 | echo "configure:1648: checking for $ac_func" >&5 |
252b5132 RH |
1648 | if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then |
1649 | echo $ac_n "(cached) $ac_c" 1>&6 | |
1650 | else | |
1651 | cat > conftest.$ac_ext <<EOF | |
da191b5b | 1652 | #line 1653 "configure" |
252b5132 RH |
1653 | #include "confdefs.h" |
1654 | /* System header to define __stub macros and hopefully few prototypes, | |
1655 | which can conflict with char $ac_func(); below. */ | |
1656 | #include <assert.h> | |
1657 | /* Override any gcc2 internal prototype to avoid an error. */ | |
1658 | /* We use char because int might match the return type of a gcc2 | |
1659 | builtin and then its argument prototype would still apply. */ | |
1660 | char $ac_func(); | |
1661 | ||
1662 | int main() { | |
1663 | ||
1664 | /* The GNU C library defines this for functions which it implements | |
1665 | to always fail with ENOSYS. Some functions are actually named | |
1666 | something starting with __ and the normal name is an alias. */ | |
1667 | #if defined (__stub_$ac_func) || defined (__stub___$ac_func) | |
1668 | choke me | |
1669 | #else | |
1670 | $ac_func(); | |
1671 | #endif | |
1672 | ||
1673 | ; return 0; } | |
1674 | EOF | |
da191b5b | 1675 | if { (eval echo configure:1676: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then |
252b5132 RH |
1676 | rm -rf conftest* |
1677 | eval "ac_cv_func_$ac_func=yes" | |
1678 | else | |
1679 | echo "configure: failed program was:" >&5 | |
1680 | cat conftest.$ac_ext >&5 | |
1681 | rm -rf conftest* | |
1682 | eval "ac_cv_func_$ac_func=no" | |
1683 | fi | |
1684 | rm -f conftest* | |
1685 | fi | |
1686 | ||
1687 | if eval "test \"`echo '$ac_cv_func_'$ac_func`\" = yes"; then | |
1688 | echo "$ac_t""yes" 1>&6 | |
1689 | ac_tr_func=HAVE_`echo $ac_func | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'` | |
1690 | cat >> confdefs.h <<EOF | |
1691 | #define $ac_tr_func 1 | |
1692 | EOF | |
1693 | ||
1694 | else | |
1695 | echo "$ac_t""no" 1>&6 | |
1696 | fi | |
1697 | done | |
1698 | ||
c6da642e | 1699 | for ac_func in strtod strtol strtoul tmpnam vasprintf vfprintf vprintf |
252b5132 RH |
1700 | do |
1701 | echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 | |
da191b5b | 1702 | echo "configure:1703: checking for $ac_func" >&5 |
252b5132 RH |
1703 | if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then |
1704 | echo $ac_n "(cached) $ac_c" 1>&6 | |
1705 | else | |
1706 | cat > conftest.$ac_ext <<EOF | |
da191b5b | 1707 | #line 1708 "configure" |
252b5132 RH |
1708 | #include "confdefs.h" |
1709 | /* System header to define __stub macros and hopefully few prototypes, | |
1710 | which can conflict with char $ac_func(); below. */ | |
1711 | #include <assert.h> | |
1712 | /* Override any gcc2 internal prototype to avoid an error. */ | |
1713 | /* We use char because int might match the return type of a gcc2 | |
1714 | builtin and then its argument prototype would still apply. */ | |
1715 | char $ac_func(); | |
1716 | ||
1717 | int main() { | |
1718 | ||
1719 | /* The GNU C library defines this for functions which it implements | |
1720 | to always fail with ENOSYS. Some functions are actually named | |
1721 | something starting with __ and the normal name is an alias. */ | |
1722 | #if defined (__stub_$ac_func) || defined (__stub___$ac_func) | |
1723 | choke me | |
1724 | #else | |
1725 | $ac_func(); | |
1726 | #endif | |
1727 | ||
1728 | ; return 0; } | |
1729 | EOF | |
da191b5b | 1730 | if { (eval echo configure:1731: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then |
252b5132 RH |
1731 | rm -rf conftest* |
1732 | eval "ac_cv_func_$ac_func=yes" | |
1733 | else | |
1734 | echo "configure: failed program was:" >&5 | |
1735 | cat conftest.$ac_ext >&5 | |
1736 | rm -rf conftest* | |
1737 | eval "ac_cv_func_$ac_func=no" | |
1738 | fi | |
1739 | rm -f conftest* | |
1740 | fi | |
1741 | ||
1742 | if eval "test \"`echo '$ac_cv_func_'$ac_func`\" = yes"; then | |
1743 | echo "$ac_t""yes" 1>&6 | |
1744 | ac_tr_func=HAVE_`echo $ac_func | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'` | |
1745 | cat >> confdefs.h <<EOF | |
1746 | #define $ac_tr_func 1 | |
1747 | EOF | |
1748 | ||
1749 | else | |
1750 | echo "$ac_t""no" 1>&6 | |
1751 | fi | |
1752 | done | |
1753 | ||
c6da642e | 1754 | for ac_func in vsprintf waitpid getrusage on_exit psignal strerror strsignal |
252b5132 RH |
1755 | do |
1756 | echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 | |
da191b5b | 1757 | echo "configure:1758: checking for $ac_func" >&5 |
c1687039 ILT |
1758 | if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then |
1759 | echo $ac_n "(cached) $ac_c" 1>&6 | |
1760 | else | |
1761 | cat > conftest.$ac_ext <<EOF | |
da191b5b | 1762 | #line 1763 "configure" |
c1687039 ILT |
1763 | #include "confdefs.h" |
1764 | /* System header to define __stub macros and hopefully few prototypes, | |
1765 | which can conflict with char $ac_func(); below. */ | |
1766 | #include <assert.h> | |
1767 | /* Override any gcc2 internal prototype to avoid an error. */ | |
1768 | /* We use char because int might match the return type of a gcc2 | |
1769 | builtin and then its argument prototype would still apply. */ | |
1770 | char $ac_func(); | |
1771 | ||
1772 | int main() { | |
1773 | ||
1774 | /* The GNU C library defines this for functions which it implements | |
1775 | to always fail with ENOSYS. Some functions are actually named | |
1776 | something starting with __ and the normal name is an alias. */ | |
1777 | #if defined (__stub_$ac_func) || defined (__stub___$ac_func) | |
1778 | choke me | |
1779 | #else | |
1780 | $ac_func(); | |
1781 | #endif | |
1782 | ||
1783 | ; return 0; } | |
1784 | EOF | |
da191b5b | 1785 | if { (eval echo configure:1786: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then |
c1687039 ILT |
1786 | rm -rf conftest* |
1787 | eval "ac_cv_func_$ac_func=yes" | |
1788 | else | |
1789 | echo "configure: failed program was:" >&5 | |
1790 | cat conftest.$ac_ext >&5 | |
1791 | rm -rf conftest* | |
1792 | eval "ac_cv_func_$ac_func=no" | |
1793 | fi | |
1794 | rm -f conftest* | |
1795 | fi | |
1796 | ||
1797 | if eval "test \"`echo '$ac_cv_func_'$ac_func`\" = yes"; then | |
1798 | echo "$ac_t""yes" 1>&6 | |
1799 | ac_tr_func=HAVE_`echo $ac_func | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'` | |
1800 | cat >> confdefs.h <<EOF | |
1801 | #define $ac_tr_func 1 | |
1802 | EOF | |
1803 | ||
1804 | else | |
1805 | echo "$ac_t""no" 1>&6 | |
1806 | fi | |
1807 | done | |
1808 | ||
7b78baae | 1809 | for ac_func in sysconf times sbrk gettimeofday ffs |
c1687039 ILT |
1810 | do |
1811 | echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 | |
da191b5b | 1812 | echo "configure:1813: checking for $ac_func" >&5 |
252b5132 RH |
1813 | if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then |
1814 | echo $ac_n "(cached) $ac_c" 1>&6 | |
1815 | else | |
1816 | cat > conftest.$ac_ext <<EOF | |
da191b5b | 1817 | #line 1818 "configure" |
252b5132 RH |
1818 | #include "confdefs.h" |
1819 | /* System header to define __stub macros and hopefully few prototypes, | |
1820 | which can conflict with char $ac_func(); below. */ | |
1821 | #include <assert.h> | |
1822 | /* Override any gcc2 internal prototype to avoid an error. */ | |
1823 | /* We use char because int might match the return type of a gcc2 | |
1824 | builtin and then its argument prototype would still apply. */ | |
1825 | char $ac_func(); | |
1826 | ||
1827 | int main() { | |
1828 | ||
1829 | /* The GNU C library defines this for functions which it implements | |
1830 | to always fail with ENOSYS. Some functions are actually named | |
1831 | something starting with __ and the normal name is an alias. */ | |
1832 | #if defined (__stub_$ac_func) || defined (__stub___$ac_func) | |
1833 | choke me | |
1834 | #else | |
1835 | $ac_func(); | |
1836 | #endif | |
1837 | ||
1838 | ; return 0; } | |
1839 | EOF | |
da191b5b | 1840 | if { (eval echo configure:1841: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then |
252b5132 RH |
1841 | rm -rf conftest* |
1842 | eval "ac_cv_func_$ac_func=yes" | |
1843 | else | |
1844 | echo "configure: failed program was:" >&5 | |
1845 | cat conftest.$ac_ext >&5 | |
1846 | rm -rf conftest* | |
1847 | eval "ac_cv_func_$ac_func=no" | |
1848 | fi | |
1849 | rm -f conftest* | |
1850 | fi | |
1851 | ||
1852 | if eval "test \"`echo '$ac_cv_func_'$ac_func`\" = yes"; then | |
1853 | echo "$ac_t""yes" 1>&6 | |
1854 | ac_tr_func=HAVE_`echo $ac_func | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'` | |
1855 | cat >> confdefs.h <<EOF | |
1856 | #define $ac_tr_func 1 | |
1857 | EOF | |
1858 | ||
1859 | else | |
1860 | echo "$ac_t""no" 1>&6 | |
1861 | fi | |
1862 | done | |
1863 | ||
92655e19 DD |
1864 | cat >> confdefs.h <<\EOF |
1865 | #define HAVE_SYS_ERRLIST 1 | |
1866 | EOF | |
1867 | ||
1868 | cat >> confdefs.h <<\EOF | |
c6da642e | 1869 | #define HAVE_SYS_NERR 1 |
92655e19 DD |
1870 | EOF |
1871 | ||
1872 | cat >> confdefs.h <<\EOF | |
1873 | #define HAVE_SYS_SIGLIST 1 | |
1874 | EOF | |
1875 | ||
252b5132 RH |
1876 | fi |
1877 | ||
1878 | # For each of these functions, if the host does not provide the | |
1879 | # function we want to put FN.o in LIBOBJS, and if the host does | |
30673bf5 | 1880 | # provide the function, we want to define HAVE_FN in config.h. |
252b5132 RH |
1881 | |
1882 | setobjs= | |
0c0a36a4 | 1883 | CHECK= |
252b5132 RH |
1884 | if test -n "${with_target_subdir}"; then |
1885 | ||
1886 | # We are being configured as a target library. AC_REPLACE_FUNCS | |
1887 | # may not work correctly, because the compiler may not be able to | |
1888 | # link executables. Note that we may still be being configured | |
1889 | # native. | |
1890 | ||
1891 | # If we are being configured for newlib, we know which functions | |
1892 | # newlib provide and which ones we will be expected to provide. | |
1893 | ||
1894 | if test "x${with_newlib}" = "xyes"; then | |
252b5132 RH |
1895 | LIBOBJS="asprintf.o basename.o insque.o random.o strdup.o vasprintf.o" |
1896 | ||
1897 | for f in $funcs; do | |
1898 | case "$f" in | |
1899 | asprintf | basename | insque | random | strdup | vasprintf) | |
1900 | ;; | |
1901 | *) | |
1902 | n=HAVE_`echo $f | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'` | |
1903 | cat >> confdefs.h <<EOF | |
1904 | #define $n 1 | |
1905 | EOF | |
1906 | ||
1907 | ;; | |
1908 | esac | |
1909 | done | |
1910 | ||
1911 | # newlib doesnt provide any of the variables in $vars, so we | |
1912 | # dont have to check them here. | |
1913 | ||
1914 | # Of the functions in $checkfuncs, newlib only has strerror. | |
1915 | cat >> confdefs.h <<\EOF | |
1916 | #define HAVE_STRERROR 1 | |
1917 | EOF | |
1918 | ||
1919 | ||
1920 | setobjs=yes | |
1921 | ||
1922 | fi | |
0c0a36a4 ILT |
1923 | |
1924 | else | |
1925 | ||
1926 | # Not a target library, so we set things up to run the test suite. | |
1927 | CHECK=check-cplus-dem | |
1928 | ||
252b5132 RH |
1929 | fi |
1930 | ||
0c0a36a4 ILT |
1931 | |
1932 | ||
f01b59ed DD |
1933 | case "${host}" in |
1934 | *-*-cygwin*) | |
1935 | cat >> confdefs.h <<\EOF | |
1936 | #define HAVE_SYS_ERRLIST 1 | |
1937 | EOF | |
1938 | ||
1939 | cat >> confdefs.h <<\EOF | |
1940 | #define HAVE_SYS_NERR 1 | |
1941 | EOF | |
1942 | ||
1943 | ;; | |
1944 | esac | |
1945 | ||
252b5132 RH |
1946 | if test -z "${setobjs}"; then |
1947 | case "${host}" in | |
1948 | ||
1949 | *-*-vxworks*) | |
1950 | # Handle VxWorks configuration specially, since on VxWorks the | |
1951 | # libraries are actually on the target board, not in the file | |
1952 | # system. | |
1953 | LIBOBJS="basename.o getpagesize.o insque.o random.o strcasecmp.o" | |
1954 | LIBOBJS="$LIBOBJS strncasecmp.o strdup.o vfork.o waitpid.o vasprintf.o" | |
1955 | for f in $funcs; do | |
1956 | case "$f" in | |
1957 | basename | getpagesize | insque | random | strcasecmp) | |
1958 | ;; | |
1959 | strncasecmp | strdup | vfork | waitpid | vasprintf) | |
1960 | ;; | |
1961 | *) | |
1962 | n=HAVE_`echo $f | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'` | |
1963 | cat >> confdefs.h <<EOF | |
1964 | #define $n 1 | |
1965 | EOF | |
1966 | ||
1967 | ;; | |
1968 | esac | |
1969 | done | |
1970 | ||
1971 | # VxWorks doesn't provide any of the variables in $vars, so we | |
1972 | # don't have to check them here. | |
1973 | ||
1974 | # Of the functions in $checkfuncs, VxWorks only has strerror. | |
1975 | cat >> confdefs.h <<\EOF | |
1976 | #define HAVE_STRERROR 1 | |
1977 | EOF | |
1978 | ||
1979 | ||
1980 | setobjs=yes | |
1981 | ;; | |
1982 | ||
1983 | esac | |
1984 | fi | |
1985 | ||
1986 | if test -z "${setobjs}"; then | |
1987 | ||
1988 | case "${host}" in | |
1989 | ||
1990 | *-*-cygwin*) | |
1991 | # The Cygwin library actually uses a couple of files from | |
1992 | # libiberty when it is built. If we are building a native | |
1993 | # Cygwin, and we run the tests, we will appear to have these | |
1994 | # files. However, when we go on to build winsup, we will wind up | |
1995 | # with a library which does not have the files, since they should | |
1996 | # have come from libiberty. | |
1997 | ||
1998 | # We handle this by removing the functions the winsup library | |
1999 | # provides from our shell variables, so that they appear to be | |
2000 | # missing. | |
2001 | ||
64e3a659 DD |
2002 | # DJ - only if we're *building* cygwin, not just building *with* cygwin |
2003 | ||
2004 | if test -n "${with_target_subdir}" | |
2005 | then | |
2006 | funcs="`echo $funcs | sed -e 's/random//'`" | |
2007 | LIBOBJS="$LIBOBJS random.o" | |
2008 | vars="`echo $vars | sed -e 's/sys_siglist//'`" | |
2009 | checkfuncs="`echo $checkfuncs | sed -e 's/strsignal//' -e 's/psignal//'`" | |
2010 | fi | |
252b5132 RH |
2011 | ;; |
2012 | ||
2013 | *-*-mingw32*) | |
2014 | # Under mingw32, sys_nerr and sys_errlist exist, but they are | |
2015 | # macros, so the test below won't find them. | |
92655e19 DD |
2016 | libiberty_cv_var_sys_nerr=yes |
2017 | libiberty_cv_var_sys_errlist=yes | |
252b5132 RH |
2018 | ;; |
2019 | ||
2020 | *-*-uwin*) | |
2021 | # Under some versions of uwin, vfork is notoriously buggy and the test | |
2022 | # can hang configure; on other versions, vfork exists just as a stub. | |
2023 | # FIXME: This should be removed once vfork in uwin's runtime is fixed. | |
2024 | ac_cv_func_vfork_works=no | |
0c0a36a4 ILT |
2025 | # Under uwin 2.0+, sys_nerr and sys_errlist exist, but they are |
2026 | # macros (actually, these are imported from a DLL, but the end effect | |
2027 | # is the same), so the test below won't find them. | |
92655e19 DD |
2028 | libiberty_cv_var_sys_nerr=yes |
2029 | libiberty_cv_var_sys_errlist=yes | |
252b5132 RH |
2030 | ;; |
2031 | ||
2032 | esac | |
2033 | ||
2034 | # We haven't set the list of objects yet. Use the standard autoconf | |
2035 | # tests. This will only work if the compiler works. | |
2036 | echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6 | |
da191b5b | 2037 | echo "configure:2038: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5 |
252b5132 RH |
2038 | |
2039 | ac_ext=c | |
2040 | # CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options. | |
2041 | ac_cpp='$CPP $CPPFLAGS' | |
2042 | ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5' | |
2043 | ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5' | |
2044 | cross_compiling=$ac_cv_prog_cc_cross | |
2045 | ||
2046 | cat > conftest.$ac_ext << EOF | |
2047 | ||
da191b5b | 2048 | #line 2049 "configure" |
252b5132 RH |
2049 | #include "confdefs.h" |
2050 | ||
2051 | main(){return(0);} | |
2052 | EOF | |
da191b5b | 2053 | if { (eval echo configure:2054: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then |
252b5132 RH |
2054 | ac_cv_prog_cc_works=yes |
2055 | # If we can't run a trivial program, we are probably using a cross compiler. | |
2056 | if (./conftest; exit) 2>/dev/null; then | |
2057 | ac_cv_prog_cc_cross=no | |
2058 | else | |
2059 | ac_cv_prog_cc_cross=yes | |
2060 | fi | |
2061 | else | |
2062 | echo "configure: failed program was:" >&5 | |
2063 | cat conftest.$ac_ext >&5 | |
2064 | ac_cv_prog_cc_works=no | |
2065 | fi | |
2066 | rm -fr conftest* | |
2067 | ac_ext=c | |
2068 | # CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options. | |
2069 | ac_cpp='$CPP $CPPFLAGS' | |
2070 | ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5' | |
2071 | ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5' | |
2072 | cross_compiling=$ac_cv_prog_cc_cross | |
2073 | ||
2074 | echo "$ac_t""$ac_cv_prog_cc_works" 1>&6 | |
2075 | if test $ac_cv_prog_cc_works = no; then | |
2076 | { echo "configure: error: installation or configuration problem: C compiler cannot create executables." 1>&2; exit 1; } | |
2077 | fi | |
2078 | echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6 | |
da191b5b | 2079 | echo "configure:2080: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5 |
252b5132 RH |
2080 | echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6 |
2081 | cross_compiling=$ac_cv_prog_cc_cross | |
2082 | ||
2083 | for ac_func in $funcs | |
2084 | do | |
2085 | echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 | |
da191b5b | 2086 | echo "configure:2087: checking for $ac_func" >&5 |
252b5132 RH |
2087 | if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then |
2088 | echo $ac_n "(cached) $ac_c" 1>&6 | |
2089 | else | |
2090 | cat > conftest.$ac_ext <<EOF | |
da191b5b | 2091 | #line 2092 "configure" |
252b5132 RH |
2092 | #include "confdefs.h" |
2093 | /* System header to define __stub macros and hopefully few prototypes, | |
2094 | which can conflict with char $ac_func(); below. */ | |
2095 | #include <assert.h> | |
2096 | /* Override any gcc2 internal prototype to avoid an error. */ | |
2097 | /* We use char because int might match the return type of a gcc2 | |
2098 | builtin and then its argument prototype would still apply. */ | |
2099 | char $ac_func(); | |
2100 | ||
2101 | int main() { | |
2102 | ||
2103 | /* The GNU C library defines this for functions which it implements | |
2104 | to always fail with ENOSYS. Some functions are actually named | |
2105 | something starting with __ and the normal name is an alias. */ | |
2106 | #if defined (__stub_$ac_func) || defined (__stub___$ac_func) | |
2107 | choke me | |
2108 | #else | |
2109 | $ac_func(); | |
2110 | #endif | |
2111 | ||
2112 | ; return 0; } | |
2113 | EOF | |
da191b5b | 2114 | if { (eval echo configure:2115: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then |
252b5132 RH |
2115 | rm -rf conftest* |
2116 | eval "ac_cv_func_$ac_func=yes" | |
2117 | else | |
2118 | echo "configure: failed program was:" >&5 | |
2119 | cat conftest.$ac_ext >&5 | |
2120 | rm -rf conftest* | |
2121 | eval "ac_cv_func_$ac_func=no" | |
2122 | fi | |
2123 | rm -f conftest* | |
2124 | fi | |
2125 | ||
2126 | if eval "test \"`echo '$ac_cv_func_'$ac_func`\" = yes"; then | |
2127 | echo "$ac_t""yes" 1>&6 | |
2128 | ac_tr_func=HAVE_`echo $ac_func | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'` | |
2129 | cat >> confdefs.h <<EOF | |
2130 | #define $ac_tr_func 1 | |
2131 | EOF | |
2132 | ||
2133 | else | |
2134 | echo "$ac_t""no" 1>&6 | |
2135 | LIBOBJS="$LIBOBJS ${ac_func}.${ac_objext}" | |
2136 | fi | |
2137 | done | |
2138 | ||
2139 | ||
30673bf5 | 2140 | echo $ac_n "checking whether alloca needs Cray hooks""... $ac_c" 1>&6 |
da191b5b | 2141 | echo "configure:2142: checking whether alloca needs Cray hooks" >&5 |
252b5132 RH |
2142 | if eval "test \"`echo '$''{'ac_cv_os_cray'+set}'`\" = set"; then |
2143 | echo $ac_n "(cached) $ac_c" 1>&6 | |
2144 | else | |
2145 | cat > conftest.$ac_ext <<EOF | |
da191b5b | 2146 | #line 2147 "configure" |
252b5132 RH |
2147 | #include "confdefs.h" |
2148 | #if defined(CRAY) && ! defined(CRAY2) | |
2149 | webecray | |
2150 | #else | |
2151 | wenotbecray | |
2152 | #endif | |
2153 | ||
2154 | EOF | |
2155 | if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | | |
2156 | egrep "webecray" >/dev/null 2>&1; then | |
2157 | rm -rf conftest* | |
2158 | ac_cv_os_cray=yes | |
2159 | else | |
2160 | rm -rf conftest* | |
2161 | ac_cv_os_cray=no | |
2162 | fi | |
2163 | rm -f conftest* | |
2164 | ||
2165 | fi | |
2166 | ||
2167 | echo "$ac_t""$ac_cv_os_cray" 1>&6 | |
2168 | if test $ac_cv_os_cray = yes; then | |
30673bf5 DD |
2169 | for ac_func in _getb67 GETB67 getb67; do |
2170 | echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 | |
da191b5b | 2171 | echo "configure:2172: checking for $ac_func" >&5 |
252b5132 RH |
2172 | if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then |
2173 | echo $ac_n "(cached) $ac_c" 1>&6 | |
2174 | else | |
2175 | cat > conftest.$ac_ext <<EOF | |
da191b5b | 2176 | #line 2177 "configure" |
252b5132 RH |
2177 | #include "confdefs.h" |
2178 | /* System header to define __stub macros and hopefully few prototypes, | |
2179 | which can conflict with char $ac_func(); below. */ | |
2180 | #include <assert.h> | |
2181 | /* Override any gcc2 internal prototype to avoid an error. */ | |
2182 | /* We use char because int might match the return type of a gcc2 | |
2183 | builtin and then its argument prototype would still apply. */ | |
2184 | char $ac_func(); | |
2185 | ||
2186 | int main() { | |
2187 | ||
2188 | /* The GNU C library defines this for functions which it implements | |
2189 | to always fail with ENOSYS. Some functions are actually named | |
2190 | something starting with __ and the normal name is an alias. */ | |
2191 | #if defined (__stub_$ac_func) || defined (__stub___$ac_func) | |
2192 | choke me | |
2193 | #else | |
2194 | $ac_func(); | |
2195 | #endif | |
2196 | ||
2197 | ; return 0; } | |
2198 | EOF | |
da191b5b | 2199 | if { (eval echo configure:2200: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then |
252b5132 RH |
2200 | rm -rf conftest* |
2201 | eval "ac_cv_func_$ac_func=yes" | |
2202 | else | |
2203 | echo "configure: failed program was:" >&5 | |
2204 | cat conftest.$ac_ext >&5 | |
2205 | rm -rf conftest* | |
2206 | eval "ac_cv_func_$ac_func=no" | |
2207 | fi | |
2208 | rm -f conftest* | |
2209 | fi | |
2210 | ||
2211 | if eval "test \"`echo '$ac_cv_func_'$ac_func`\" = yes"; then | |
2212 | echo "$ac_t""yes" 1>&6 | |
2213 | cat >> confdefs.h <<EOF | |
2214 | #define CRAY_STACKSEG_END $ac_func | |
2215 | EOF | |
252b5132 RH |
2216 | break |
2217 | else | |
2218 | echo "$ac_t""no" 1>&6 | |
2219 | fi | |
2220 | ||
30673bf5 | 2221 | done |
252b5132 RH |
2222 | fi |
2223 | ||
2224 | echo $ac_n "checking stack direction for C alloca""... $ac_c" 1>&6 | |
da191b5b | 2225 | echo "configure:2226: checking stack direction for C alloca" >&5 |
252b5132 RH |
2226 | if eval "test \"`echo '$''{'ac_cv_c_stack_direction'+set}'`\" = set"; then |
2227 | echo $ac_n "(cached) $ac_c" 1>&6 | |
2228 | else | |
2229 | if test "$cross_compiling" = yes; then | |
2230 | ac_cv_c_stack_direction=0 | |
2231 | else | |
2232 | cat > conftest.$ac_ext <<EOF | |
da191b5b | 2233 | #line 2234 "configure" |
252b5132 RH |
2234 | #include "confdefs.h" |
2235 | find_stack_direction () | |
2236 | { | |
2237 | static char *addr = 0; | |
2238 | auto char dummy; | |
2239 | if (addr == 0) | |
2240 | { | |
2241 | addr = &dummy; | |
2242 | return find_stack_direction (); | |
2243 | } | |
2244 | else | |
2245 | return (&dummy > addr) ? 1 : -1; | |
2246 | } | |
2247 | main () | |
2248 | { | |
2249 | exit (find_stack_direction() < 0); | |
2250 | } | |
2251 | EOF | |
da191b5b | 2252 | if { (eval echo configure:2253: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null |
252b5132 RH |
2253 | then |
2254 | ac_cv_c_stack_direction=1 | |
2255 | else | |
2256 | echo "configure: failed program was:" >&5 | |
2257 | cat conftest.$ac_ext >&5 | |
2258 | rm -fr conftest* | |
2259 | ac_cv_c_stack_direction=-1 | |
2260 | fi | |
2261 | rm -fr conftest* | |
2262 | fi | |
2263 | ||
2264 | fi | |
2265 | ||
2266 | echo "$ac_t""$ac_cv_c_stack_direction" 1>&6 | |
2267 | cat >> confdefs.h <<EOF | |
2268 | #define STACK_DIRECTION $ac_cv_c_stack_direction | |
2269 | EOF | |
2270 | ||
0c0a36a4 | 2271 | |
252b5132 | 2272 | echo $ac_n "checking for ANSI C header files""... $ac_c" 1>&6 |
da191b5b | 2273 | echo "configure:2274: checking for ANSI C header files" >&5 |
252b5132 RH |
2274 | if eval "test \"`echo '$''{'ac_cv_header_stdc'+set}'`\" = set"; then |
2275 | echo $ac_n "(cached) $ac_c" 1>&6 | |
2276 | else | |
2277 | cat > conftest.$ac_ext <<EOF | |
da191b5b | 2278 | #line 2279 "configure" |
252b5132 RH |
2279 | #include "confdefs.h" |
2280 | #include <stdlib.h> | |
2281 | #include <stdarg.h> | |
2282 | #include <string.h> | |
2283 | #include <float.h> | |
2284 | EOF | |
2285 | ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" | |
da191b5b | 2286 | { (eval echo configure:2287: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
252b5132 RH |
2287 | ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` |
2288 | if test -z "$ac_err"; then | |
2289 | rm -rf conftest* | |
2290 | ac_cv_header_stdc=yes | |
2291 | else | |
2292 | echo "$ac_err" >&5 | |
2293 | echo "configure: failed program was:" >&5 | |
2294 | cat conftest.$ac_ext >&5 | |
2295 | rm -rf conftest* | |
2296 | ac_cv_header_stdc=no | |
2297 | fi | |
2298 | rm -f conftest* | |
2299 | ||
2300 | if test $ac_cv_header_stdc = yes; then | |
2301 | # SunOS 4.x string.h does not declare mem*, contrary to ANSI. | |
2302 | cat > conftest.$ac_ext <<EOF | |
da191b5b | 2303 | #line 2304 "configure" |
252b5132 RH |
2304 | #include "confdefs.h" |
2305 | #include <string.h> | |
2306 | EOF | |
2307 | if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | | |
2308 | egrep "memchr" >/dev/null 2>&1; then | |
2309 | : | |
2310 | else | |
2311 | rm -rf conftest* | |
2312 | ac_cv_header_stdc=no | |
2313 | fi | |
2314 | rm -f conftest* | |
2315 | ||
2316 | fi | |
2317 | ||
2318 | if test $ac_cv_header_stdc = yes; then | |
2319 | # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. | |
2320 | cat > conftest.$ac_ext <<EOF | |
da191b5b | 2321 | #line 2322 "configure" |
252b5132 RH |
2322 | #include "confdefs.h" |
2323 | #include <stdlib.h> | |
2324 | EOF | |
2325 | if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | | |
2326 | egrep "free" >/dev/null 2>&1; then | |
2327 | : | |
2328 | else | |
2329 | rm -rf conftest* | |
2330 | ac_cv_header_stdc=no | |
2331 | fi | |
2332 | rm -f conftest* | |
2333 | ||
2334 | fi | |
2335 | ||
2336 | if test $ac_cv_header_stdc = yes; then | |
2337 | # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. | |
2338 | if test "$cross_compiling" = yes; then | |
2339 | : | |
2340 | else | |
2341 | cat > conftest.$ac_ext <<EOF | |
da191b5b | 2342 | #line 2343 "configure" |
252b5132 RH |
2343 | #include "confdefs.h" |
2344 | #include <ctype.h> | |
2345 | #define ISLOWER(c) ('a' <= (c) && (c) <= 'z') | |
2346 | #define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) | |
2347 | #define XOR(e, f) (((e) && !(f)) || (!(e) && (f))) | |
2348 | int main () { int i; for (i = 0; i < 256; i++) | |
2349 | if (XOR (islower (i), ISLOWER (i)) || toupper (i) != TOUPPER (i)) exit(2); | |
2350 | exit (0); } | |
2351 | ||
2352 | EOF | |
da191b5b | 2353 | if { (eval echo configure:2354: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null |
252b5132 RH |
2354 | then |
2355 | : | |
2356 | else | |
2357 | echo "configure: failed program was:" >&5 | |
2358 | cat conftest.$ac_ext >&5 | |
2359 | rm -fr conftest* | |
2360 | ac_cv_header_stdc=no | |
2361 | fi | |
2362 | rm -fr conftest* | |
2363 | fi | |
2364 | ||
2365 | fi | |
2366 | fi | |
2367 | ||
2368 | echo "$ac_t""$ac_cv_header_stdc" 1>&6 | |
2369 | if test $ac_cv_header_stdc = yes; then | |
2370 | cat >> confdefs.h <<\EOF | |
2371 | #define STDC_HEADERS 1 | |
2372 | EOF | |
2373 | ||
2374 | fi | |
2375 | ||
2376 | echo $ac_n "checking for pid_t""... $ac_c" 1>&6 | |
da191b5b | 2377 | echo "configure:2378: checking for pid_t" >&5 |
252b5132 RH |
2378 | if eval "test \"`echo '$''{'ac_cv_type_pid_t'+set}'`\" = set"; then |
2379 | echo $ac_n "(cached) $ac_c" 1>&6 | |
2380 | else | |
2381 | cat > conftest.$ac_ext <<EOF | |
da191b5b | 2382 | #line 2383 "configure" |
252b5132 RH |
2383 | #include "confdefs.h" |
2384 | #include <sys/types.h> | |
2385 | #if STDC_HEADERS | |
2386 | #include <stdlib.h> | |
2387 | #include <stddef.h> | |
2388 | #endif | |
2389 | EOF | |
2390 | if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | | |
2391 | egrep "(^|[^a-zA-Z_0-9])pid_t[^a-zA-Z_0-9]" >/dev/null 2>&1; then | |
2392 | rm -rf conftest* | |
2393 | ac_cv_type_pid_t=yes | |
2394 | else | |
2395 | rm -rf conftest* | |
2396 | ac_cv_type_pid_t=no | |
2397 | fi | |
2398 | rm -f conftest* | |
2399 | ||
2400 | fi | |
2401 | echo "$ac_t""$ac_cv_type_pid_t" 1>&6 | |
2402 | if test $ac_cv_type_pid_t = no; then | |
2403 | cat >> confdefs.h <<\EOF | |
2404 | #define pid_t int | |
2405 | EOF | |
2406 | ||
2407 | fi | |
2408 | ||
2409 | ac_safe=`echo "vfork.h" | sed 'y%./+-%__p_%'` | |
2410 | echo $ac_n "checking for vfork.h""... $ac_c" 1>&6 | |
da191b5b | 2411 | echo "configure:2412: checking for vfork.h" >&5 |
252b5132 RH |
2412 | if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then |
2413 | echo $ac_n "(cached) $ac_c" 1>&6 | |
2414 | else | |
2415 | cat > conftest.$ac_ext <<EOF | |
da191b5b | 2416 | #line 2417 "configure" |
252b5132 RH |
2417 | #include "confdefs.h" |
2418 | #include <vfork.h> | |
2419 | EOF | |
2420 | ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" | |
da191b5b | 2421 | { (eval echo configure:2422: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
252b5132 RH |
2422 | ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` |
2423 | if test -z "$ac_err"; then | |
2424 | rm -rf conftest* | |
2425 | eval "ac_cv_header_$ac_safe=yes" | |
2426 | else | |
2427 | echo "$ac_err" >&5 | |
2428 | echo "configure: failed program was:" >&5 | |
2429 | cat conftest.$ac_ext >&5 | |
2430 | rm -rf conftest* | |
2431 | eval "ac_cv_header_$ac_safe=no" | |
2432 | fi | |
2433 | rm -f conftest* | |
2434 | fi | |
2435 | if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then | |
2436 | echo "$ac_t""yes" 1>&6 | |
2437 | cat >> confdefs.h <<\EOF | |
2438 | #define HAVE_VFORK_H 1 | |
2439 | EOF | |
2440 | ||
2441 | else | |
2442 | echo "$ac_t""no" 1>&6 | |
2443 | fi | |
2444 | ||
2445 | echo $ac_n "checking for working vfork""... $ac_c" 1>&6 | |
da191b5b | 2446 | echo "configure:2447: checking for working vfork" >&5 |
252b5132 RH |
2447 | if eval "test \"`echo '$''{'ac_cv_func_vfork_works'+set}'`\" = set"; then |
2448 | echo $ac_n "(cached) $ac_c" 1>&6 | |
2449 | else | |
2450 | if test "$cross_compiling" = yes; then | |
2451 | echo $ac_n "checking for vfork""... $ac_c" 1>&6 | |
da191b5b | 2452 | echo "configure:2453: checking for vfork" >&5 |
252b5132 RH |
2453 | if eval "test \"`echo '$''{'ac_cv_func_vfork'+set}'`\" = set"; then |
2454 | echo $ac_n "(cached) $ac_c" 1>&6 | |
2455 | else | |
2456 | cat > conftest.$ac_ext <<EOF | |
da191b5b | 2457 | #line 2458 "configure" |
252b5132 RH |
2458 | #include "confdefs.h" |
2459 | /* System header to define __stub macros and hopefully few prototypes, | |
2460 | which can conflict with char vfork(); below. */ | |
2461 | #include <assert.h> | |
2462 | /* Override any gcc2 internal prototype to avoid an error. */ | |
2463 | /* We use char because int might match the return type of a gcc2 | |
2464 | builtin and then its argument prototype would still apply. */ | |
2465 | char vfork(); | |
2466 | ||
2467 | int main() { | |
2468 | ||
2469 | /* The GNU C library defines this for functions which it implements | |
2470 | to always fail with ENOSYS. Some functions are actually named | |
2471 | something starting with __ and the normal name is an alias. */ | |
2472 | #if defined (__stub_vfork) || defined (__stub___vfork) | |
2473 | choke me | |
2474 | #else | |
2475 | vfork(); | |
2476 | #endif | |
2477 | ||
2478 | ; return 0; } | |
2479 | EOF | |
da191b5b | 2480 | if { (eval echo configure:2481: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then |
252b5132 RH |
2481 | rm -rf conftest* |
2482 | eval "ac_cv_func_vfork=yes" | |
2483 | else | |
2484 | echo "configure: failed program was:" >&5 | |
2485 | cat conftest.$ac_ext >&5 | |
2486 | rm -rf conftest* | |
2487 | eval "ac_cv_func_vfork=no" | |
2488 | fi | |
2489 | rm -f conftest* | |
2490 | fi | |
2491 | ||
2492 | if eval "test \"`echo '$ac_cv_func_'vfork`\" = yes"; then | |
2493 | echo "$ac_t""yes" 1>&6 | |
2494 | : | |
2495 | else | |
2496 | echo "$ac_t""no" 1>&6 | |
2497 | fi | |
2498 | ||
2499 | ac_cv_func_vfork_works=$ac_cv_func_vfork | |
2500 | else | |
2501 | cat > conftest.$ac_ext <<EOF | |
da191b5b | 2502 | #line 2503 "configure" |
252b5132 RH |
2503 | #include "confdefs.h" |
2504 | /* Thanks to Paul Eggert for this test. */ | |
2505 | #include <stdio.h> | |
2506 | #include <sys/types.h> | |
2507 | #include <sys/stat.h> | |
2508 | #ifdef HAVE_UNISTD_H | |
2509 | #include <unistd.h> | |
2510 | #endif | |
2511 | #ifdef HAVE_VFORK_H | |
2512 | #include <vfork.h> | |
2513 | #endif | |
2514 | /* On some sparc systems, changes by the child to local and incoming | |
2515 | argument registers are propagated back to the parent. | |
2516 | The compiler is told about this with #include <vfork.h>, | |
2517 | but some compilers (e.g. gcc -O) don't grok <vfork.h>. | |
2518 | Test for this by using a static variable whose address | |
2519 | is put into a register that is clobbered by the vfork. */ | |
2520 | static | |
2521 | #ifdef __cplusplus | |
2522 | sparc_address_test (int arg) | |
2523 | #else | |
2524 | sparc_address_test (arg) int arg; | |
2525 | #endif | |
2526 | { | |
2527 | static pid_t child; | |
2528 | if (!child) { | |
2529 | child = vfork (); | |
2530 | if (child < 0) { | |
2531 | perror ("vfork"); | |
2532 | _exit(2); | |
2533 | } | |
2534 | if (!child) { | |
2535 | arg = getpid(); | |
2536 | write(-1, "", 0); | |
2537 | _exit (arg); | |
2538 | } | |
2539 | } | |
2540 | } | |
2541 | main() { | |
2542 | pid_t parent = getpid (); | |
2543 | pid_t child; | |
2544 | ||
2545 | sparc_address_test (); | |
2546 | ||
2547 | child = vfork (); | |
2548 | ||
2549 | if (child == 0) { | |
2550 | /* Here is another test for sparc vfork register problems. | |
2551 | This test uses lots of local variables, at least | |
2552 | as many local variables as main has allocated so far | |
2553 | including compiler temporaries. 4 locals are enough for | |
2554 | gcc 1.40.3 on a Solaris 4.1.3 sparc, but we use 8 to be safe. | |
2555 | A buggy compiler should reuse the register of parent | |
2556 | for one of the local variables, since it will think that | |
2557 | parent can't possibly be used any more in this routine. | |
2558 | Assigning to the local variable will thus munge parent | |
2559 | in the parent process. */ | |
2560 | pid_t | |
2561 | p = getpid(), p1 = getpid(), p2 = getpid(), p3 = getpid(), | |
2562 | p4 = getpid(), p5 = getpid(), p6 = getpid(), p7 = getpid(); | |
2563 | /* Convince the compiler that p..p7 are live; otherwise, it might | |
2564 | use the same hardware register for all 8 local variables. */ | |
2565 | if (p != p1 || p != p2 || p != p3 || p != p4 | |
2566 | || p != p5 || p != p6 || p != p7) | |
2567 | _exit(1); | |
2568 | ||
2569 | /* On some systems (e.g. IRIX 3.3), | |
2570 | vfork doesn't separate parent from child file descriptors. | |
2571 | If the child closes a descriptor before it execs or exits, | |
2572 | this munges the parent's descriptor as well. | |
2573 | Test for this by closing stdout in the child. */ | |
2574 | _exit(close(fileno(stdout)) != 0); | |
2575 | } else { | |
2576 | int status; | |
2577 | struct stat st; | |
2578 | ||
2579 | while (wait(&status) != child) | |
2580 | ; | |
2581 | exit( | |
2582 | /* Was there some problem with vforking? */ | |
2583 | child < 0 | |
2584 | ||
2585 | /* Did the child fail? (This shouldn't happen.) */ | |
2586 | || status | |
2587 | ||
2588 | /* Did the vfork/compiler bug occur? */ | |
2589 | || parent != getpid() | |
2590 | ||
2591 | /* Did the file descriptor bug occur? */ | |
2592 | || fstat(fileno(stdout), &st) != 0 | |
2593 | ); | |
2594 | } | |
2595 | } | |
2596 | EOF | |
da191b5b | 2597 | if { (eval echo configure:2598: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null |
252b5132 RH |
2598 | then |
2599 | ac_cv_func_vfork_works=yes | |
2600 | else | |
2601 | echo "configure: failed program was:" >&5 | |
2602 | cat conftest.$ac_ext >&5 | |
2603 | rm -fr conftest* | |
2604 | ac_cv_func_vfork_works=no | |
2605 | fi | |
2606 | rm -fr conftest* | |
2607 | fi | |
2608 | ||
2609 | fi | |
2610 | ||
2611 | echo "$ac_t""$ac_cv_func_vfork_works" 1>&6 | |
2612 | if test $ac_cv_func_vfork_works = no; then | |
2613 | cat >> confdefs.h <<\EOF | |
2614 | #define vfork fork | |
2615 | EOF | |
2616 | ||
2617 | fi | |
2618 | ||
2619 | if test $ac_cv_func_vfork_works = no; then | |
2620 | LIBOBJS="$LIBOBJS vfork.o" | |
2621 | fi | |
2622 | for v in $vars; do | |
2623 | echo $ac_n "checking for $v""... $ac_c" 1>&6 | |
da191b5b | 2624 | echo "configure:2625: checking for $v" >&5 |
252b5132 RH |
2625 | if eval "test \"`echo '$''{'libiberty_cv_var_$v'+set}'`\" = set"; then |
2626 | echo $ac_n "(cached) $ac_c" 1>&6 | |
2627 | else | |
2628 | cat > conftest.$ac_ext <<EOF | |
da191b5b | 2629 | #line 2630 "configure" |
252b5132 RH |
2630 | #include "confdefs.h" |
2631 | int *p; | |
2632 | int main() { | |
2633 | extern int $v; p = &$v; | |
2634 | ; return 0; } | |
2635 | EOF | |
da191b5b | 2636 | if { (eval echo configure:2637: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then |
252b5132 RH |
2637 | rm -rf conftest* |
2638 | eval "libiberty_cv_var_$v=yes" | |
2639 | else | |
2640 | echo "configure: failed program was:" >&5 | |
2641 | cat conftest.$ac_ext >&5 | |
2642 | rm -rf conftest* | |
2643 | eval "libiberty_cv_var_$v=no" | |
2644 | fi | |
2645 | rm -f conftest* | |
2646 | fi | |
2647 | ||
2648 | if eval "test \"`echo '$libiberty_cv_var_'$v`\" = yes"; then | |
2649 | echo "$ac_t""yes" 1>&6 | |
2650 | n=HAVE_`echo $v | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'` | |
2651 | cat >> confdefs.h <<EOF | |
2652 | #define $n 1 | |
2653 | EOF | |
2654 | ||
2655 | else | |
2656 | echo "$ac_t""no" 1>&6 | |
2657 | fi | |
2658 | done | |
2659 | for ac_func in $checkfuncs | |
2660 | do | |
2661 | echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 | |
da191b5b | 2662 | echo "configure:2663: checking for $ac_func" >&5 |
eb383413 L |
2663 | if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then |
2664 | echo $ac_n "(cached) $ac_c" 1>&6 | |
2665 | else | |
2666 | cat > conftest.$ac_ext <<EOF | |
da191b5b | 2667 | #line 2668 "configure" |
eb383413 L |
2668 | #include "confdefs.h" |
2669 | /* System header to define __stub macros and hopefully few prototypes, | |
2670 | which can conflict with char $ac_func(); below. */ | |
2671 | #include <assert.h> | |
2672 | /* Override any gcc2 internal prototype to avoid an error. */ | |
2673 | /* We use char because int might match the return type of a gcc2 | |
2674 | builtin and then its argument prototype would still apply. */ | |
2675 | char $ac_func(); | |
2676 | ||
2677 | int main() { | |
2678 | ||
2679 | /* The GNU C library defines this for functions which it implements | |
2680 | to always fail with ENOSYS. Some functions are actually named | |
2681 | something starting with __ and the normal name is an alias. */ | |
2682 | #if defined (__stub_$ac_func) || defined (__stub___$ac_func) | |
2683 | choke me | |
2684 | #else | |
2685 | $ac_func(); | |
2686 | #endif | |
2687 | ||
2688 | ; return 0; } | |
2689 | EOF | |
da191b5b | 2690 | if { (eval echo configure:2691: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then |
eb383413 L |
2691 | rm -rf conftest* |
2692 | eval "ac_cv_func_$ac_func=yes" | |
2693 | else | |
2694 | echo "configure: failed program was:" >&5 | |
2695 | cat conftest.$ac_ext >&5 | |
2696 | rm -rf conftest* | |
2697 | eval "ac_cv_func_$ac_func=no" | |
2698 | fi | |
2699 | rm -f conftest* | |
2700 | fi | |
2701 | ||
2702 | if eval "test \"`echo '$ac_cv_func_'$ac_func`\" = yes"; then | |
2703 | echo "$ac_t""yes" 1>&6 | |
2704 | ac_tr_func=HAVE_`echo $ac_func | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'` | |
2705 | cat >> confdefs.h <<EOF | |
2706 | #define $ac_tr_func 1 | |
2707 | EOF | |
2708 | ||
2709 | else | |
2710 | echo "$ac_t""no" 1>&6 | |
2711 | fi | |
2712 | done | |
2713 | ||
2714 | fi | |
2715 | ||
2716 | for ac_hdr in unistd.h | |
2717 | do | |
2718 | ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` | |
2719 | echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 | |
da191b5b | 2720 | echo "configure:2721: checking for $ac_hdr" >&5 |
eb383413 L |
2721 | if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then |
2722 | echo $ac_n "(cached) $ac_c" 1>&6 | |
2723 | else | |
2724 | cat > conftest.$ac_ext <<EOF | |
da191b5b | 2725 | #line 2726 "configure" |
eb383413 L |
2726 | #include "confdefs.h" |
2727 | #include <$ac_hdr> | |
2728 | EOF | |
2729 | ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" | |
da191b5b | 2730 | { (eval echo configure:2731: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } |
eb383413 L |
2731 | ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` |
2732 | if test -z "$ac_err"; then | |
2733 | rm -rf conftest* | |
2734 | eval "ac_cv_header_$ac_safe=yes" | |
2735 | else | |
2736 | echo "$ac_err" >&5 | |
2737 | echo "configure: failed program was:" >&5 | |
2738 | cat conftest.$ac_ext >&5 | |
2739 | rm -rf conftest* | |
2740 | eval "ac_cv_header_$ac_safe=no" | |
2741 | fi | |
2742 | rm -f conftest* | |
2743 | fi | |
2744 | if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then | |
2745 | echo "$ac_t""yes" 1>&6 | |
2746 | ac_tr_hdr=HAVE_`echo $ac_hdr | sed 'y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%'` | |
2747 | cat >> confdefs.h <<EOF | |
2748 | #define $ac_tr_hdr 1 | |
2749 | EOF | |
2750 | ||
2751 | else | |
2752 | echo "$ac_t""no" 1>&6 | |
2753 | fi | |
2754 | done | |
2755 | ||
2756 | for ac_func in getpagesize | |
2757 | do | |
2758 | echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 | |
da191b5b | 2759 | echo "configure:2760: checking for $ac_func" >&5 |
252b5132 RH |
2760 | if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then |
2761 | echo $ac_n "(cached) $ac_c" 1>&6 | |
2762 | else | |
2763 | cat > conftest.$ac_ext <<EOF | |
da191b5b | 2764 | #line 2765 "configure" |
252b5132 RH |
2765 | #include "confdefs.h" |
2766 | /* System header to define __stub macros and hopefully few prototypes, | |
2767 | which can conflict with char $ac_func(); below. */ | |
2768 | #include <assert.h> | |
2769 | /* Override any gcc2 internal prototype to avoid an error. */ | |
2770 | /* We use char because int might match the return type of a gcc2 | |
2771 | builtin and then its argument prototype would still apply. */ | |
2772 | char $ac_func(); | |
2773 | ||
2774 | int main() { | |
2775 | ||
2776 | /* The GNU C library defines this for functions which it implements | |
2777 | to always fail with ENOSYS. Some functions are actually named | |
2778 | something starting with __ and the normal name is an alias. */ | |
2779 | #if defined (__stub_$ac_func) || defined (__stub___$ac_func) | |
2780 | choke me | |
2781 | #else | |
2782 | $ac_func(); | |
2783 | #endif | |
2784 | ||
2785 | ; return 0; } | |
2786 | EOF | |
da191b5b | 2787 | if { (eval echo configure:2788: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then |
252b5132 RH |
2788 | rm -rf conftest* |
2789 | eval "ac_cv_func_$ac_func=yes" | |
2790 | else | |
2791 | echo "configure: failed program was:" >&5 | |
2792 | cat conftest.$ac_ext >&5 | |
2793 | rm -rf conftest* | |
2794 | eval "ac_cv_func_$ac_func=no" | |
2795 | fi | |
2796 | rm -f conftest* | |
2797 | fi | |
2798 | ||
2799 | if eval "test \"`echo '$ac_cv_func_'$ac_func`\" = yes"; then | |
2800 | echo "$ac_t""yes" 1>&6 | |
2801 | ac_tr_func=HAVE_`echo $ac_func | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'` | |
2802 | cat >> confdefs.h <<EOF | |
2803 | #define $ac_tr_func 1 | |
2804 | EOF | |
2805 | ||
2806 | else | |
2807 | echo "$ac_t""no" 1>&6 | |
2808 | fi | |
2809 | done | |
2810 | ||
eb383413 | 2811 | echo $ac_n "checking for working mmap""... $ac_c" 1>&6 |
da191b5b | 2812 | echo "configure:2813: checking for working mmap" >&5 |
eb383413 L |
2813 | if eval "test \"`echo '$''{'ac_cv_func_mmap_fixed_mapped'+set}'`\" = set"; then |
2814 | echo $ac_n "(cached) $ac_c" 1>&6 | |
2815 | else | |
2816 | if test "$cross_compiling" = yes; then | |
2817 | ac_cv_func_mmap_fixed_mapped=no | |
2818 | else | |
2819 | cat > conftest.$ac_ext <<EOF | |
da191b5b | 2820 | #line 2821 "configure" |
eb383413 L |
2821 | #include "confdefs.h" |
2822 | ||
2823 | /* Thanks to Mike Haertel and Jim Avera for this test. | |
2824 | Here is a matrix of mmap possibilities: | |
2825 | mmap private not fixed | |
2826 | mmap private fixed at somewhere currently unmapped | |
2827 | mmap private fixed at somewhere already mapped | |
2828 | mmap shared not fixed | |
2829 | mmap shared fixed at somewhere currently unmapped | |
2830 | mmap shared fixed at somewhere already mapped | |
2831 | For private mappings, we should verify that changes cannot be read() | |
2832 | back from the file, nor mmap's back from the file at a different | |
2833 | address. (There have been systems where private was not correctly | |
2834 | implemented like the infamous i386 svr4.0, and systems where the | |
2835 | VM page cache was not coherent with the filesystem buffer cache | |
2836 | like early versions of FreeBSD and possibly contemporary NetBSD.) | |
2837 | For shared mappings, we should conversely verify that changes get | |
2838 | propogated back to all the places they're supposed to be. | |
2839 | ||
2840 | Grep wants private fixed already mapped. | |
2841 | The main things grep needs to know about mmap are: | |
2842 | * does it exist and is it safe to write into the mmap'd area | |
2843 | * how to use it (BSD variants) */ | |
2844 | #include <sys/types.h> | |
2845 | #include <fcntl.h> | |
2846 | #include <sys/mman.h> | |
2847 | ||
2848 | /* This mess was copied from the GNU getpagesize.h. */ | |
2849 | #ifndef HAVE_GETPAGESIZE | |
c6da642e DD |
2850 | # ifdef HAVE_UNISTD_H |
2851 | # include <unistd.h> | |
2852 | # endif | |
eb383413 L |
2853 | |
2854 | /* Assume that all systems that can run configure have sys/param.h. */ | |
2855 | # ifndef HAVE_SYS_PARAM_H | |
2856 | # define HAVE_SYS_PARAM_H 1 | |
2857 | # endif | |
2858 | ||
2859 | # ifdef _SC_PAGESIZE | |
2860 | # define getpagesize() sysconf(_SC_PAGESIZE) | |
2861 | # else /* no _SC_PAGESIZE */ | |
2862 | # ifdef HAVE_SYS_PARAM_H | |
2863 | # include <sys/param.h> | |
2864 | # ifdef EXEC_PAGESIZE | |
2865 | # define getpagesize() EXEC_PAGESIZE | |
2866 | # else /* no EXEC_PAGESIZE */ | |
2867 | # ifdef NBPG | |
2868 | # define getpagesize() NBPG * CLSIZE | |
2869 | # ifndef CLSIZE | |
2870 | # define CLSIZE 1 | |
2871 | # endif /* no CLSIZE */ | |
2872 | # else /* no NBPG */ | |
2873 | # ifdef NBPC | |
2874 | # define getpagesize() NBPC | |
2875 | # else /* no NBPC */ | |
2876 | # ifdef PAGESIZE | |
2877 | # define getpagesize() PAGESIZE | |
2878 | # endif /* PAGESIZE */ | |
2879 | # endif /* no NBPC */ | |
2880 | # endif /* no NBPG */ | |
2881 | # endif /* no EXEC_PAGESIZE */ | |
2882 | # else /* no HAVE_SYS_PARAM_H */ | |
2883 | # define getpagesize() 8192 /* punt totally */ | |
2884 | # endif /* no HAVE_SYS_PARAM_H */ | |
2885 | # endif /* no _SC_PAGESIZE */ | |
2886 | ||
2887 | #endif /* no HAVE_GETPAGESIZE */ | |
2888 | ||
2889 | #ifdef __cplusplus | |
2890 | extern "C" { void *malloc(unsigned); } | |
2891 | #else | |
2892 | char *malloc(); | |
2893 | #endif | |
2894 | ||
2895 | int | |
2896 | main() | |
2897 | { | |
2898 | char *data, *data2, *data3; | |
2899 | int i, pagesize; | |
2900 | int fd; | |
2901 | ||
2902 | pagesize = getpagesize(); | |
2903 | ||
2904 | /* | |
2905 | * First, make a file with some known garbage in it. | |
2906 | */ | |
c6da642e | 2907 | data = malloc(pagesize); |
eb383413 L |
2908 | if (!data) |
2909 | exit(1); | |
2910 | for (i = 0; i < pagesize; ++i) | |
2911 | *(data + i) = rand(); | |
2912 | umask(0); | |
2913 | fd = creat("conftestmmap", 0600); | |
2914 | if (fd < 0) | |
2915 | exit(1); | |
2916 | if (write(fd, data, pagesize) != pagesize) | |
2917 | exit(1); | |
2918 | close(fd); | |
2919 | ||
2920 | /* | |
2921 | * Next, try to mmap the file at a fixed address which | |
2922 | * already has something else allocated at it. If we can, | |
2923 | * also make sure that we see the same garbage. | |
2924 | */ | |
2925 | fd = open("conftestmmap", O_RDWR); | |
2926 | if (fd < 0) | |
2927 | exit(1); | |
c6da642e | 2928 | data2 = malloc(2 * pagesize); |
eb383413 L |
2929 | if (!data2) |
2930 | exit(1); | |
2931 | data2 += (pagesize - ((int) data2 & (pagesize - 1))) & (pagesize - 1); | |
2932 | if (data2 != mmap(data2, pagesize, PROT_READ | PROT_WRITE, | |
2933 | MAP_PRIVATE | MAP_FIXED, fd, 0L)) | |
2934 | exit(1); | |
2935 | for (i = 0; i < pagesize; ++i) | |
2936 | if (*(data + i) != *(data2 + i)) | |
2937 | exit(1); | |
2938 | ||
2939 | /* | |
2940 | * Finally, make sure that changes to the mapped area | |
2941 | * do not percolate back to the file as seen by read(). | |
2942 | * (This is a bug on some variants of i386 svr4.0.) | |
2943 | */ | |
2944 | for (i = 0; i < pagesize; ++i) | |
2945 | *(data2 + i) = *(data2 + i) + 1; | |
c6da642e | 2946 | data3 = malloc(pagesize); |
eb383413 L |
2947 | if (!data3) |
2948 | exit(1); | |
2949 | if (read(fd, data3, pagesize) != pagesize) | |
2950 | exit(1); | |
2951 | for (i = 0; i < pagesize; ++i) | |
2952 | if (*(data + i) != *(data3 + i)) | |
2953 | exit(1); | |
2954 | close(fd); | |
2955 | unlink("conftestmmap"); | |
2956 | exit(0); | |
2957 | } | |
2958 | ||
2959 | EOF | |
da191b5b | 2960 | if { (eval echo configure:2961: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null |
eb383413 L |
2961 | then |
2962 | ac_cv_func_mmap_fixed_mapped=yes | |
2963 | else | |
2964 | echo "configure: failed program was:" >&5 | |
2965 | cat conftest.$ac_ext >&5 | |
2966 | rm -fr conftest* | |
2967 | ac_cv_func_mmap_fixed_mapped=no | |
2968 | fi | |
2969 | rm -fr conftest* | |
2970 | fi | |
2971 | ||
2972 | fi | |
2973 | ||
2974 | echo "$ac_t""$ac_cv_func_mmap_fixed_mapped" 1>&6 | |
2975 | if test $ac_cv_func_mmap_fixed_mapped = yes; then | |
2976 | cat >> confdefs.h <<\EOF | |
2977 | #define HAVE_MMAP 1 | |
2978 | EOF | |
2979 | ||
252b5132 RH |
2980 | fi |
2981 | ||
eb383413 L |
2982 | |
2983 | echo $ac_n "checking for working strncmp""... $ac_c" 1>&6 | |
da191b5b | 2984 | echo "configure:2985: checking for working strncmp" >&5 |
eb383413 L |
2985 | if eval "test \"`echo '$''{'ac_cv_func_strncmp_works'+set}'`\" = set"; then |
2986 | echo $ac_n "(cached) $ac_c" 1>&6 | |
2987 | else | |
2988 | if test "$cross_compiling" = yes; then | |
2989 | ac_cv_func_strncmp_works=no | |
2990 | else | |
2991 | cat > conftest.$ac_ext <<EOF | |
da191b5b | 2992 | #line 2993 "configure" |
eb383413 L |
2993 | #include "confdefs.h" |
2994 | ||
2995 | /* Test by Jim Wilson and Kaveh Ghazi. | |
2996 | Check whether strncmp reads past the end of its string parameters. */ | |
2997 | #include <sys/types.h> | |
2998 | ||
2999 | #ifdef HAVE_FCNTL_H | |
3000 | #include <fcntl.h> | |
3001 | #endif | |
3002 | ||
3003 | #ifdef HAVE_SYS_MMAN_H | |
3004 | #include <sys/mman.h> | |
3005 | #endif | |
3006 | ||
3007 | #ifndef MAP_ANON | |
3008 | #ifdef MAP_ANONYMOUS | |
3009 | #define MAP_ANON MAP_ANONYMOUS | |
3010 | #else | |
3011 | #define MAP_ANON MAP_FILE | |
3012 | #endif | |
3013 | #endif | |
3014 | ||
3015 | #ifndef MAP_FILE | |
3016 | #define MAP_FILE 0 | |
3017 | #endif | |
3018 | #ifndef O_RDONLY | |
3019 | #define O_RDONLY 0 | |
3020 | #endif | |
3021 | ||
3022 | #define MAP_LEN 0x10000 | |
3023 | ||
3024 | main () | |
3025 | { | |
3026 | #if defined(HAVE_MMAP) || defined(HAVE_MMAP_ANYWHERE) | |
3027 | char *p; | |
3028 | int dev_zero; | |
3029 | ||
3030 | dev_zero = open ("/dev/zero", O_RDONLY); | |
3031 | if (dev_zero < 0) | |
3032 | exit (1); | |
3033 | ||
3034 | p = (char *) mmap (0, MAP_LEN, PROT_READ|PROT_WRITE, | |
3035 | MAP_ANON|MAP_PRIVATE, dev_zero, 0); | |
3036 | if (p == (char *)-1) | |
3037 | exit (2); | |
3038 | else | |
3039 | { | |
3040 | char *string = "__si_type_info"; | |
3041 | char *q = (char *) p + MAP_LEN - strlen (string) - 2; | |
3042 | char *r = (char *) p + 0xe; | |
3043 | ||
3044 | strcpy (q, string); | |
3045 | strcpy (r, string); | |
3046 | strncmp (r, q, 14); | |
3047 | } | |
3048 | #endif /* HAVE_MMAP || HAVE_MMAP_ANYWHERE */ | |
3049 | exit (0); | |
3050 | } | |
3051 | ||
3052 | EOF | |
da191b5b | 3053 | if { (eval echo configure:3054: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null |
eb383413 L |
3054 | then |
3055 | ac_cv_func_strncmp_works=yes | |
3056 | else | |
3057 | echo "configure: failed program was:" >&5 | |
3058 | cat conftest.$ac_ext >&5 | |
3059 | rm -fr conftest* | |
3060 | ac_cv_func_strncmp_works=no | |
3061 | fi | |
3062 | rm -fr conftest* | |
3063 | fi | |
3064 | ||
3065 | rm -f core core.* *.core | |
3066 | fi | |
3067 | ||
3068 | echo "$ac_t""$ac_cv_func_strncmp_works" 1>&6 | |
3069 | if test $ac_cv_func_strncmp_works = no ; then | |
3070 | LIBOBJS="$LIBOBJS strncmp.o" | |
3071 | fi | |
3072 | ||
3073 | ||
252b5132 RH |
3074 | # Install a library built with a cross compiler in $(tooldir) rather |
3075 | # than $(libdir). | |
3076 | if test -z "${with_cross_host}"; then | |
3077 | INSTALL_DEST=libdir | |
3078 | else | |
3079 | INSTALL_DEST=tooldir | |
3080 | fi | |
3081 | ||
3082 | ||
3083 | # We need multilib support, but only if configuring for the target. | |
3084 | trap '' 1 2 15 | |
3085 | cat > confcache <<\EOF | |
3086 | # This file is a shell script that caches the results of configure | |
3087 | # tests run on this system so they can be shared between configure | |
3088 | # scripts and configure runs. It is not useful on other systems. | |
3089 | # If it contains results you don't want to keep, you may remove or edit it. | |
3090 | # | |
3091 | # By default, configure uses ./config.cache as the cache file, | |
3092 | # creating it if it does not exist already. You can give configure | |
3093 | # the --cache-file=FILE option to use a different cache file; that is | |
3094 | # what configure does when it calls configure scripts in | |
3095 | # subdirectories, so they share the cache. | |
3096 | # Giving --cache-file=/dev/null disables caching, for debugging configure. | |
3097 | # config.status only pays attention to the cache file if you give it the | |
3098 | # --recheck option to rerun configure. | |
3099 | # | |
3100 | EOF | |
3101 | # The following way of writing the cache mishandles newlines in values, | |
3102 | # but we know of no workaround that is simple, portable, and efficient. | |
3103 | # So, don't put newlines in cache variables' values. | |
3104 | # Ultrix sh set writes to stderr and can't be redirected directly, | |
3105 | # and sets the high bit in the cache file unless we assign to the vars. | |
3106 | (set) 2>&1 | | |
3107 | case `(ac_space=' '; set | grep ac_space) 2>&1` in | |
3108 | *ac_space=\ *) | |
3109 | # `set' does not quote correctly, so add quotes (double-quote substitution | |
3110 | # turns \\\\ into \\, and sed turns \\ into \). | |
3111 | sed -n \ | |
3112 | -e "s/'/'\\\\''/g" \ | |
3113 | -e "s/^\\([a-zA-Z0-9_]*_cv_[a-zA-Z0-9_]*\\)=\\(.*\\)/\\1=\${\\1='\\2'}/p" | |
3114 | ;; | |
3115 | *) | |
3116 | # `set' quotes correctly as required by POSIX, so do not add quotes. | |
3117 | sed -n -e 's/^\([a-zA-Z0-9_]*_cv_[a-zA-Z0-9_]*\)=\(.*\)/\1=${\1=\2}/p' | |
3118 | ;; | |
3119 | esac >> confcache | |
3120 | if cmp -s $cache_file confcache; then | |
3121 | : | |
3122 | else | |
3123 | if test -w $cache_file; then | |
3124 | echo "updating cache $cache_file" | |
3125 | cat confcache > $cache_file | |
3126 | else | |
3127 | echo "not updating unwritable cache $cache_file" | |
3128 | fi | |
3129 | fi | |
3130 | rm -f confcache | |
3131 | ||
3132 | trap 'rm -fr conftest* confdefs* core core.* *.core $ac_clean_files; exit 1' 1 2 15 | |
3133 | ||
3134 | test "x$prefix" = xNONE && prefix=$ac_default_prefix | |
3135 | # Let make expand exec_prefix. | |
3136 | test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' | |
3137 | ||
3138 | # Any assignment to VPATH causes Sun make to only execute | |
3139 | # the first set of double-colon rules, so remove it if not needed. | |
3140 | # If there is a colon in the path, we need to keep it. | |
3141 | if test "x$srcdir" = x.; then | |
3142 | ac_vpsub='/^[ ]*VPATH[ ]*=[^:]*$/d' | |
3143 | fi | |
3144 | ||
3145 | trap 'rm -f $CONFIG_STATUS conftest*; exit 1' 1 2 15 | |
3146 | ||
3147 | DEFS=-DHAVE_CONFIG_H | |
3148 | ||
3149 | # Without the "./", some shells look in PATH for config.status. | |
3150 | : ${CONFIG_STATUS=./config.status} | |
3151 | ||
3152 | echo creating $CONFIG_STATUS | |
3153 | rm -f $CONFIG_STATUS | |
3154 | cat > $CONFIG_STATUS <<EOF | |
3155 | #! /bin/sh | |
3156 | # Generated automatically by configure. | |
3157 | # Run this file to recreate the current configuration. | |
3158 | # This directory was configured as follows, | |
3159 | # on host `(hostname || uname -n) 2>/dev/null | sed 1q`: | |
3160 | # | |
3161 | # $0 $ac_configure_args | |
3162 | # | |
3163 | # Compiler output produced by configure, useful for debugging | |
3164 | # configure, is in ./config.log if it exists. | |
3165 | ||
3166 | ac_cs_usage="Usage: $CONFIG_STATUS [--recheck] [--version] [--help]" | |
3167 | for ac_option | |
3168 | do | |
3169 | case "\$ac_option" in | |
3170 | -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) | |
3171 | echo "running \${CONFIG_SHELL-/bin/sh} $0 $ac_configure_args --no-create --no-recursion" | |
3172 | exec \${CONFIG_SHELL-/bin/sh} $0 $ac_configure_args --no-create --no-recursion ;; | |
3173 | -version | --version | --versio | --versi | --vers | --ver | --ve | --v) | |
3174 | echo "$CONFIG_STATUS generated by autoconf version 2.13" | |
3175 | exit 0 ;; | |
3176 | -help | --help | --hel | --he | --h) | |
3177 | echo "\$ac_cs_usage"; exit 0 ;; | |
3178 | *) echo "\$ac_cs_usage"; exit 1 ;; | |
3179 | esac | |
3180 | done | |
3181 | ||
3182 | ac_given_srcdir=$srcdir | |
3183 | ac_given_INSTALL="$INSTALL" | |
3184 | ||
0c0a36a4 | 3185 | trap 'rm -fr `echo "Makefile testsuite/Makefile config.h:config.in" | sed "s/:[^ ]*//g"` conftest*; exit 1' 1 2 15 |
252b5132 RH |
3186 | EOF |
3187 | cat >> $CONFIG_STATUS <<EOF | |
3188 | ||
3189 | # Protect against being on the right side of a sed subst in config.status. | |
3190 | sed 's/%@/@@/; s/@%/@@/; s/%g\$/@g/; /@g\$/s/[\\\\&%]/\\\\&/g; | |
3191 | s/@@/%@/; s/@@/@%/; s/@g\$/%g/' > conftest.subs <<\\CEOF | |
3192 | $ac_vpsub | |
3193 | $extrasub | |
3194 | s%@SHELL@%$SHELL%g | |
3195 | s%@CFLAGS@%$CFLAGS%g | |
3196 | s%@CPPFLAGS@%$CPPFLAGS%g | |
3197 | s%@CXXFLAGS@%$CXXFLAGS%g | |
3198 | s%@FFLAGS@%$FFLAGS%g | |
3199 | s%@DEFS@%$DEFS%g | |
3200 | s%@LDFLAGS@%$LDFLAGS%g | |
3201 | s%@LIBS@%$LIBS%g | |
3202 | s%@exec_prefix@%$exec_prefix%g | |
3203 | s%@prefix@%$prefix%g | |
3204 | s%@program_transform_name@%$program_transform_name%g | |
3205 | s%@bindir@%$bindir%g | |
3206 | s%@sbindir@%$sbindir%g | |
3207 | s%@libexecdir@%$libexecdir%g | |
3208 | s%@datadir@%$datadir%g | |
3209 | s%@sysconfdir@%$sysconfdir%g | |
3210 | s%@sharedstatedir@%$sharedstatedir%g | |
3211 | s%@localstatedir@%$localstatedir%g | |
3212 | s%@libdir@%$libdir%g | |
3213 | s%@includedir@%$includedir%g | |
3214 | s%@oldincludedir@%$oldincludedir%g | |
3215 | s%@infodir@%$infodir%g | |
3216 | s%@mandir@%$mandir%g | |
39423523 DD |
3217 | s%@MAINT@%$MAINT%g |
3218 | s%@NOTMAINT@%$NOTMAINT%g | |
3219 | s%@MAKEINFO@%$MAKEINFO%g | |
3220 | s%@BUILD_INFO@%$BUILD_INFO%g | |
3221 | s%@PERL@%$PERL%g | |
3222 | s%@HAVE_PERL@%$HAVE_PERL%g | |
252b5132 RH |
3223 | s%@host@%$host%g |
3224 | s%@host_alias@%$host_alias%g | |
3225 | s%@host_cpu@%$host_cpu%g | |
3226 | s%@host_vendor@%$host_vendor%g | |
3227 | s%@host_os@%$host_os%g | |
3228 | s%@build@%$build%g | |
3229 | s%@build_alias@%$build_alias%g | |
3230 | s%@build_cpu@%$build_cpu%g | |
3231 | s%@build_vendor@%$build_vendor%g | |
3232 | s%@build_os@%$build_os%g | |
3233 | s%@AR@%$AR%g | |
3234 | s%@RANLIB@%$RANLIB%g | |
3235 | s%@CC@%$CC%g | |
92655e19 | 3236 | s%@ac_libiberty_warn_cflags@%$ac_libiberty_warn_cflags%g |
252b5132 RH |
3237 | s%@INSTALL_PROGRAM@%$INSTALL_PROGRAM%g |
3238 | s%@INSTALL_SCRIPT@%$INSTALL_SCRIPT%g | |
3239 | s%@INSTALL_DATA@%$INSTALL_DATA%g | |
3240 | /@host_makefile_frag@/r $host_makefile_frag | |
3241 | s%@host_makefile_frag@%%g | |
3242 | s%@CPP@%$CPP%g | |
0c0a36a4 | 3243 | s%@CHECK@%$CHECK%g |
252b5132 | 3244 | s%@LIBOBJS@%$LIBOBJS%g |
252b5132 RH |
3245 | s%@INSTALL_DEST@%$INSTALL_DEST%g |
3246 | ||
3247 | CEOF | |
3248 | EOF | |
3249 | ||
3250 | cat >> $CONFIG_STATUS <<\EOF | |
3251 | ||
3252 | # Split the substitutions into bite-sized pieces for seds with | |
3253 | # small command number limits, like on Digital OSF/1 and HP-UX. | |
3254 | ac_max_sed_cmds=90 # Maximum number of lines to put in a sed script. | |
3255 | ac_file=1 # Number of current file. | |
3256 | ac_beg=1 # First line for current file. | |
3257 | ac_end=$ac_max_sed_cmds # Line after last line for current file. | |
3258 | ac_more_lines=: | |
3259 | ac_sed_cmds="" | |
3260 | while $ac_more_lines; do | |
3261 | if test $ac_beg -gt 1; then | |
3262 | sed "1,${ac_beg}d; ${ac_end}q" conftest.subs > conftest.s$ac_file | |
3263 | else | |
3264 | sed "${ac_end}q" conftest.subs > conftest.s$ac_file | |
3265 | fi | |
3266 | if test ! -s conftest.s$ac_file; then | |
3267 | ac_more_lines=false | |
3268 | rm -f conftest.s$ac_file | |
3269 | else | |
3270 | if test -z "$ac_sed_cmds"; then | |
3271 | ac_sed_cmds="sed -f conftest.s$ac_file" | |
3272 | else | |
3273 | ac_sed_cmds="$ac_sed_cmds | sed -f conftest.s$ac_file" | |
3274 | fi | |
3275 | ac_file=`expr $ac_file + 1` | |
3276 | ac_beg=$ac_end | |
3277 | ac_end=`expr $ac_end + $ac_max_sed_cmds` | |
3278 | fi | |
3279 | done | |
3280 | if test -z "$ac_sed_cmds"; then | |
3281 | ac_sed_cmds=cat | |
3282 | fi | |
3283 | EOF | |
3284 | ||
3285 | cat >> $CONFIG_STATUS <<EOF | |
3286 | ||
0c0a36a4 | 3287 | CONFIG_FILES=\${CONFIG_FILES-"Makefile testsuite/Makefile"} |
252b5132 RH |
3288 | EOF |
3289 | cat >> $CONFIG_STATUS <<\EOF | |
3290 | for ac_file in .. $CONFIG_FILES; do if test "x$ac_file" != x..; then | |
3291 | # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in". | |
3292 | case "$ac_file" in | |
3293 | *:*) ac_file_in=`echo "$ac_file"|sed 's%[^:]*:%%'` | |
3294 | ac_file=`echo "$ac_file"|sed 's%:.*%%'` ;; | |
3295 | *) ac_file_in="${ac_file}.in" ;; | |
3296 | esac | |
3297 | ||
3298 | # Adjust a relative srcdir, top_srcdir, and INSTALL for subdirectories. | |
3299 | ||
3300 | # Remove last slash and all that follows it. Not all systems have dirname. | |
3301 | ac_dir=`echo $ac_file|sed 's%/[^/][^/]*$%%'` | |
3302 | if test "$ac_dir" != "$ac_file" && test "$ac_dir" != .; then | |
3303 | # The file is in a subdirectory. | |
3304 | test ! -d "$ac_dir" && mkdir "$ac_dir" | |
3305 | ac_dir_suffix="/`echo $ac_dir|sed 's%^\./%%'`" | |
3306 | # A "../" for each directory in $ac_dir_suffix. | |
3307 | ac_dots=`echo $ac_dir_suffix|sed 's%/[^/]*%../%g'` | |
3308 | else | |
3309 | ac_dir_suffix= ac_dots= | |
3310 | fi | |
3311 | ||
3312 | case "$ac_given_srcdir" in | |
3313 | .) srcdir=. | |
3314 | if test -z "$ac_dots"; then top_srcdir=. | |
3315 | else top_srcdir=`echo $ac_dots|sed 's%/$%%'`; fi ;; | |
3316 | /*) srcdir="$ac_given_srcdir$ac_dir_suffix"; top_srcdir="$ac_given_srcdir" ;; | |
3317 | *) # Relative path. | |
3318 | srcdir="$ac_dots$ac_given_srcdir$ac_dir_suffix" | |
3319 | top_srcdir="$ac_dots$ac_given_srcdir" ;; | |
3320 | esac | |
3321 | ||
3322 | case "$ac_given_INSTALL" in | |
3323 | [/$]*) INSTALL="$ac_given_INSTALL" ;; | |
3324 | *) INSTALL="$ac_dots$ac_given_INSTALL" ;; | |
3325 | esac | |
3326 | ||
3327 | echo creating "$ac_file" | |
3328 | rm -f "$ac_file" | |
3329 | configure_input="Generated automatically from `echo $ac_file_in|sed 's%.*/%%'` by configure." | |
3330 | case "$ac_file" in | |
3331 | *Makefile*) ac_comsub="1i\\ | |
3332 | # $configure_input" ;; | |
3333 | *) ac_comsub= ;; | |
3334 | esac | |
3335 | ||
3336 | ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s%:% $ac_given_srcdir/%g"` | |
3337 | sed -e "$ac_comsub | |
3338 | s%@configure_input@%$configure_input%g | |
3339 | s%@srcdir@%$srcdir%g | |
3340 | s%@top_srcdir@%$top_srcdir%g | |
3341 | s%@INSTALL@%$INSTALL%g | |
3342 | " $ac_file_inputs | (eval "$ac_sed_cmds") > $ac_file | |
3343 | fi; done | |
3344 | rm -f conftest.s* | |
3345 | ||
3346 | # These sed commands are passed to sed as "A NAME B NAME C VALUE D", where | |
3347 | # NAME is the cpp macro being defined and VALUE is the value it is being given. | |
3348 | # | |
3349 | # ac_d sets the value in "#define NAME VALUE" lines. | |
3350 | ac_dA='s%^\([ ]*\)#\([ ]*define[ ][ ]*\)' | |
3351 | ac_dB='\([ ][ ]*\)[^ ]*%\1#\2' | |
3352 | ac_dC='\3' | |
3353 | ac_dD='%g' | |
3354 | # ac_u turns "#undef NAME" with trailing blanks into "#define NAME VALUE". | |
3355 | ac_uA='s%^\([ ]*\)#\([ ]*\)undef\([ ][ ]*\)' | |
3356 | ac_uB='\([ ]\)%\1#\2define\3' | |
3357 | ac_uC=' ' | |
3358 | ac_uD='\4%g' | |
3359 | # ac_e turns "#undef NAME" without trailing blanks into "#define NAME VALUE". | |
3360 | ac_eA='s%^\([ ]*\)#\([ ]*\)undef\([ ][ ]*\)' | |
3361 | ac_eB='$%\1#\2define\3' | |
3362 | ac_eC=' ' | |
3363 | ac_eD='%g' | |
3364 | ||
3365 | if test "${CONFIG_HEADERS+set}" != set; then | |
3366 | EOF | |
3367 | cat >> $CONFIG_STATUS <<EOF | |
3368 | CONFIG_HEADERS="config.h:config.in" | |
3369 | EOF | |
3370 | cat >> $CONFIG_STATUS <<\EOF | |
3371 | fi | |
3372 | for ac_file in .. $CONFIG_HEADERS; do if test "x$ac_file" != x..; then | |
3373 | # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in". | |
3374 | case "$ac_file" in | |
3375 | *:*) ac_file_in=`echo "$ac_file"|sed 's%[^:]*:%%'` | |
3376 | ac_file=`echo "$ac_file"|sed 's%:.*%%'` ;; | |
3377 | *) ac_file_in="${ac_file}.in" ;; | |
3378 | esac | |
3379 | ||
3380 | echo creating $ac_file | |
3381 | ||
3382 | rm -f conftest.frag conftest.in conftest.out | |
3383 | ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s%:% $ac_given_srcdir/%g"` | |
3384 | cat $ac_file_inputs > conftest.in | |
3385 | ||
3386 | EOF | |
3387 | ||
3388 | # Transform confdefs.h into a sed script conftest.vals that substitutes | |
3389 | # the proper values into config.h.in to produce config.h. And first: | |
3390 | # Protect against being on the right side of a sed subst in config.status. | |
3391 | # Protect against being in an unquoted here document in config.status. | |
3392 | rm -f conftest.vals | |
3393 | cat > conftest.hdr <<\EOF | |
3394 | s/[\\&%]/\\&/g | |
3395 | s%[\\$`]%\\&%g | |
3396 | s%#define \([A-Za-z_][A-Za-z0-9_]*\) *\(.*\)%${ac_dA}\1${ac_dB}\1${ac_dC}\2${ac_dD}%gp | |
3397 | s%ac_d%ac_u%gp | |
3398 | s%ac_u%ac_e%gp | |
3399 | EOF | |
3400 | sed -n -f conftest.hdr confdefs.h > conftest.vals | |
3401 | rm -f conftest.hdr | |
3402 | ||
3403 | # This sed command replaces #undef with comments. This is necessary, for | |
3404 | # example, in the case of _POSIX_SOURCE, which is predefined and required | |
3405 | # on some systems where configure will not decide to define it. | |
3406 | cat >> conftest.vals <<\EOF | |
3407 | s%^[ ]*#[ ]*undef[ ][ ]*[a-zA-Z_][a-zA-Z_0-9]*%/* & */% | |
3408 | EOF | |
3409 | ||
3410 | # Break up conftest.vals because some shells have a limit on | |
3411 | # the size of here documents, and old seds have small limits too. | |
3412 | ||
3413 | rm -f conftest.tail | |
3414 | while : | |
3415 | do | |
3416 | ac_lines=`grep -c . conftest.vals` | |
3417 | # grep -c gives empty output for an empty file on some AIX systems. | |
3418 | if test -z "$ac_lines" || test "$ac_lines" -eq 0; then break; fi | |
3419 | # Write a limited-size here document to conftest.frag. | |
3420 | echo ' cat > conftest.frag <<CEOF' >> $CONFIG_STATUS | |
3421 | sed ${ac_max_here_lines}q conftest.vals >> $CONFIG_STATUS | |
3422 | echo 'CEOF | |
3423 | sed -f conftest.frag conftest.in > conftest.out | |
3424 | rm -f conftest.in | |
3425 | mv conftest.out conftest.in | |
3426 | ' >> $CONFIG_STATUS | |
3427 | sed 1,${ac_max_here_lines}d conftest.vals > conftest.tail | |
3428 | rm -f conftest.vals | |
3429 | mv conftest.tail conftest.vals | |
3430 | done | |
3431 | rm -f conftest.vals | |
3432 | ||
3433 | cat >> $CONFIG_STATUS <<\EOF | |
3434 | rm -f conftest.frag conftest.h | |
3435 | echo "/* $ac_file. Generated automatically by configure. */" > conftest.h | |
3436 | cat conftest.in >> conftest.h | |
3437 | rm -f conftest.in | |
3438 | if cmp -s $ac_file conftest.h 2>/dev/null; then | |
3439 | echo "$ac_file is unchanged" | |
3440 | rm -f conftest.h | |
3441 | else | |
3442 | # Remove last slash and all that follows it. Not all systems have dirname. | |
3443 | ac_dir=`echo $ac_file|sed 's%/[^/][^/]*$%%'` | |
3444 | if test "$ac_dir" != "$ac_file" && test "$ac_dir" != .; then | |
3445 | # The file is in a subdirectory. | |
3446 | test ! -d "$ac_dir" && mkdir "$ac_dir" | |
3447 | fi | |
3448 | rm -f $ac_file | |
3449 | mv conftest.h $ac_file | |
3450 | fi | |
3451 | fi; done | |
3452 | ||
3453 | EOF | |
3454 | cat >> $CONFIG_STATUS <<EOF | |
3455 | srcdir=${srcdir} | |
3456 | host=${host} | |
3457 | target=${target} | |
3458 | with_target_subdir=${with_target_subdir} | |
3459 | with_multisubdir=${with_multisubdir} | |
3460 | ac_configure_args="--enable-multilib ${ac_configure_args}" | |
3461 | CONFIG_SHELL=${CONFIG_SHELL-/bin/sh} | |
3462 | libiberty_topdir=${libiberty_topdir} | |
3463 | ||
3464 | EOF | |
3465 | cat >> $CONFIG_STATUS <<\EOF | |
3466 | test -z "$CONFIG_HEADERS" || echo timestamp > stamp-h | |
3467 | if test -n "$CONFIG_FILES"; then | |
3468 | if test -n "${with_target_subdir}"; then | |
3469 | # FIXME: We shouldn't need to set ac_file | |
3470 | ac_file=Makefile | |
3471 | . ${libiberty_topdir}/config-ml.in | |
3472 | fi | |
3473 | fi | |
3474 | exit 0 | |
3475 | EOF | |
3476 | chmod +x $CONFIG_STATUS | |
3477 | rm -fr confdefs* $ac_clean_files | |
3478 | test "$no_create" = yes || ${CONFIG_SHELL-/bin/sh} $CONFIG_STATUS || exit 1 | |
3479 |