* targets.c: Alphabetize list of xvecs.
[deliverable/binutils-gdb.git] / gas / configure
CommitLineData
252b5132
RH
1#! /bin/sh
2
3# Guess values for system-dependent variables and create Makefiles.
a2d91340 4# Generated automatically using autoconf version 2.13
252b5132
RH
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:
11ac_help=
12ac_default_prefix=/usr/local
13# Any additions from configure.in:
14ac_help="$ac_help
15 --enable-shared[=PKGS] build shared libraries [default=yes]"
16ac_help="$ac_help
17 --enable-static[=PKGS] build static libraries [default=yes]"
bedf545c
ILT
18ac_help="$ac_help
19 --enable-fast-install[=PKGS] optimize for fast installation [default=yes]"
252b5132
RH
20ac_help="$ac_help
21 --with-gnu-ld assume the C compiler uses GNU ld [default=no]"
bedf545c 22ac_help="$ac_help
a74801ba 23 --disable-libtool-lock avoid locking (might break parallel builds)"
ac48eca1
AO
24ac_help="$ac_help
25 --with-pic try to use only PIC/non-PIC objects [default=use both]"
252b5132
RH
26ac_help="$ac_help
27 --enable-bfd-assembler use BFD back end for writing object files"
28ac_help="$ac_help
29 targets alternative target configurations besides the primary"
30ac_help="$ac_help
31 --enable-commonbfdlib build shared BFD/opcodes/libiberty library"
a2d91340
AC
32ac_help="$ac_help
33 --enable-build-warnings Enable build-time compiler warnings if gcc is used"
252b5132
RH
34ac_help="$ac_help
35 --disable-nls do not use Native Language Support"
36ac_help="$ac_help
37 --with-included-gettext use the GNU gettext library included here"
38ac_help="$ac_help
39 --enable-maintainer-mode enable make rules and dependencies not useful
40 (and sometimes confusing) to the casual installer"
41
42# Initialize some variables set by options.
43# The variables have the same names as the options, with
44# dashes changed to underlines.
45build=NONE
46cache_file=./config.cache
47exec_prefix=NONE
48host=NONE
49no_create=
50nonopt=NONE
51no_recursion=
52prefix=NONE
53program_prefix=NONE
54program_suffix=NONE
55program_transform_name=s,x,x,
56silent=
57site=
6f6ef0fa 58sitefile=
252b5132
RH
59srcdir=
60target=NONE
61verbose=
62x_includes=NONE
63x_libraries=NONE
64bindir='${exec_prefix}/bin'
65sbindir='${exec_prefix}/sbin'
66libexecdir='${exec_prefix}/libexec'
67datadir='${prefix}/share'
68sysconfdir='${prefix}/etc'
69sharedstatedir='${prefix}/com'
70localstatedir='${prefix}/var'
71libdir='${exec_prefix}/lib'
72includedir='${prefix}/include'
73oldincludedir='/usr/include'
74infodir='${prefix}/info'
75mandir='${prefix}/man'
76
77# Initialize some other variables.
78subdirs=
79MFLAGS= MAKEFLAGS=
80SHELL=${CONFIG_SHELL-/bin/sh}
81# Maximum number of lines to put in a shell here document.
82ac_max_here_lines=12
83
84ac_prev=
85for ac_option
86do
87
88 # If the previous option needs an argument, assign it.
89 if test -n "$ac_prev"; then
90 eval "$ac_prev=\$ac_option"
91 ac_prev=
92 continue
93 fi
94
95 case "$ac_option" in
96 -*=*) ac_optarg=`echo "$ac_option" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
97 *) ac_optarg= ;;
98 esac
99
100 # Accept the important Cygnus configure options, so we can diagnose typos.
101
102 case "$ac_option" in
103
104 -bindir | --bindir | --bindi | --bind | --bin | --bi)
105 ac_prev=bindir ;;
106 -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*)
107 bindir="$ac_optarg" ;;
108
109 -build | --build | --buil | --bui | --bu)
110 ac_prev=build ;;
111 -build=* | --build=* | --buil=* | --bui=* | --bu=*)
112 build="$ac_optarg" ;;
113
114 -cache-file | --cache-file | --cache-fil | --cache-fi \
115 | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)
116 ac_prev=cache_file ;;
117 -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \
118 | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*)
119 cache_file="$ac_optarg" ;;
120
121 -datadir | --datadir | --datadi | --datad | --data | --dat | --da)
122 ac_prev=datadir ;;
123 -datadir=* | --datadir=* | --datadi=* | --datad=* | --data=* | --dat=* \
124 | --da=*)
125 datadir="$ac_optarg" ;;
126
127 -disable-* | --disable-*)
128 ac_feature=`echo $ac_option|sed -e 's/-*disable-//'`
129 # Reject names that are not valid shell variable names.
130 if test -n "`echo $ac_feature| sed 's/[-a-zA-Z0-9_]//g'`"; then
131 { echo "configure: error: $ac_feature: invalid feature name" 1>&2; exit 1; }
132 fi
133 ac_feature=`echo $ac_feature| sed 's/-/_/g'`
134 eval "enable_${ac_feature}=no" ;;
135
136 -enable-* | --enable-*)
137 ac_feature=`echo $ac_option|sed -e 's/-*enable-//' -e 's/=.*//'`
138 # Reject names that are not valid shell variable names.
139 if test -n "`echo $ac_feature| sed 's/[-_a-zA-Z0-9]//g'`"; then
140 { echo "configure: error: $ac_feature: invalid feature name" 1>&2; exit 1; }
141 fi
142 ac_feature=`echo $ac_feature| sed 's/-/_/g'`
143 case "$ac_option" in
144 *=*) ;;
145 *) ac_optarg=yes ;;
146 esac
147 eval "enable_${ac_feature}='$ac_optarg'" ;;
148
149 -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \
150 | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \
151 | --exec | --exe | --ex)
152 ac_prev=exec_prefix ;;
153 -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \
154 | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \
155 | --exec=* | --exe=* | --ex=*)
156 exec_prefix="$ac_optarg" ;;
157
158 -gas | --gas | --ga | --g)
159 # Obsolete; use --with-gas.
160 with_gas=yes ;;
161
162 -help | --help | --hel | --he)
163 # Omit some internal or obsolete options to make the list less imposing.
164 # This message is too long to be a string in the A/UX 3.1 sh.
165 cat << EOF
166Usage: configure [options] [host]
167Options: [defaults in brackets after descriptions]
168Configuration:
169 --cache-file=FILE cache test results in FILE
170 --help print this message
171 --no-create do not create output files
172 --quiet, --silent do not print \`checking...' messages
6f6ef0fa 173 --site-file=FILE use FILE as the site file
252b5132
RH
174 --version print the version of autoconf that created configure
175Directory and file names:
176 --prefix=PREFIX install architecture-independent files in PREFIX
177 [$ac_default_prefix]
178 --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX
179 [same as prefix]
180 --bindir=DIR user executables in DIR [EPREFIX/bin]
181 --sbindir=DIR system admin executables in DIR [EPREFIX/sbin]
182 --libexecdir=DIR program executables in DIR [EPREFIX/libexec]
183 --datadir=DIR read-only architecture-independent data in DIR
184 [PREFIX/share]
185 --sysconfdir=DIR read-only single-machine data in DIR [PREFIX/etc]
186 --sharedstatedir=DIR modifiable architecture-independent data in DIR
187 [PREFIX/com]
188 --localstatedir=DIR modifiable single-machine data in DIR [PREFIX/var]
189 --libdir=DIR object code libraries in DIR [EPREFIX/lib]
190 --includedir=DIR C header files in DIR [PREFIX/include]
191 --oldincludedir=DIR C header files for non-gcc in DIR [/usr/include]
192 --infodir=DIR info documentation in DIR [PREFIX/info]
193 --mandir=DIR man documentation in DIR [PREFIX/man]
194 --srcdir=DIR find the sources in DIR [configure dir or ..]
195 --program-prefix=PREFIX prepend PREFIX to installed program names
196 --program-suffix=SUFFIX append SUFFIX to installed program names
197 --program-transform-name=PROGRAM
198 run sed PROGRAM on installed program names
199EOF
200 cat << EOF
201Host type:
202 --build=BUILD configure for building on BUILD [BUILD=HOST]
203 --host=HOST configure for HOST [guessed]
204 --target=TARGET configure for TARGET [TARGET=HOST]
205Features and packages:
206 --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no)
207 --enable-FEATURE[=ARG] include FEATURE [ARG=yes]
208 --with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
209 --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no)
210 --x-includes=DIR X include files are in DIR
211 --x-libraries=DIR X library files are in DIR
212EOF
213 if test -n "$ac_help"; then
214 echo "--enable and --with options recognized:$ac_help"
215 fi
216 exit 0 ;;
217
218 -host | --host | --hos | --ho)
219 ac_prev=host ;;
220 -host=* | --host=* | --hos=* | --ho=*)
221 host="$ac_optarg" ;;
222
223 -includedir | --includedir | --includedi | --included | --include \
224 | --includ | --inclu | --incl | --inc)
225 ac_prev=includedir ;;
226 -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \
227 | --includ=* | --inclu=* | --incl=* | --inc=*)
228 includedir="$ac_optarg" ;;
229
230 -infodir | --infodir | --infodi | --infod | --info | --inf)
231 ac_prev=infodir ;;
232 -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*)
233 infodir="$ac_optarg" ;;
234
235 -libdir | --libdir | --libdi | --libd)
236 ac_prev=libdir ;;
237 -libdir=* | --libdir=* | --libdi=* | --libd=*)
238 libdir="$ac_optarg" ;;
239
240 -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \
241 | --libexe | --libex | --libe)
242 ac_prev=libexecdir ;;
243 -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \
244 | --libexe=* | --libex=* | --libe=*)
245 libexecdir="$ac_optarg" ;;
246
247 -localstatedir | --localstatedir | --localstatedi | --localstated \
248 | --localstate | --localstat | --localsta | --localst \
249 | --locals | --local | --loca | --loc | --lo)
250 ac_prev=localstatedir ;;
251 -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \
252 | --localstate=* | --localstat=* | --localsta=* | --localst=* \
253 | --locals=* | --local=* | --loca=* | --loc=* | --lo=*)
254 localstatedir="$ac_optarg" ;;
255
256 -mandir | --mandir | --mandi | --mand | --man | --ma | --m)
257 ac_prev=mandir ;;
258 -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*)
259 mandir="$ac_optarg" ;;
260
261 -nfp | --nfp | --nf)
262 # Obsolete; use --without-fp.
263 with_fp=no ;;
264
265 -no-create | --no-create | --no-creat | --no-crea | --no-cre \
266 | --no-cr | --no-c)
267 no_create=yes ;;
268
269 -no-recursion | --no-recursion | --no-recursio | --no-recursi \
270 | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r)
271 no_recursion=yes ;;
272
273 -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \
274 | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \
275 | --oldin | --oldi | --old | --ol | --o)
276 ac_prev=oldincludedir ;;
277 -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \
278 | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \
279 | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*)
280 oldincludedir="$ac_optarg" ;;
281
282 -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
283 ac_prev=prefix ;;
284 -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
285 prefix="$ac_optarg" ;;
286
287 -program-prefix | --program-prefix | --program-prefi | --program-pref \
288 | --program-pre | --program-pr | --program-p)
289 ac_prev=program_prefix ;;
290 -program-prefix=* | --program-prefix=* | --program-prefi=* \
291 | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*)
292 program_prefix="$ac_optarg" ;;
293
294 -program-suffix | --program-suffix | --program-suffi | --program-suff \
295 | --program-suf | --program-su | --program-s)
296 ac_prev=program_suffix ;;
297 -program-suffix=* | --program-suffix=* | --program-suffi=* \
298 | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*)
299 program_suffix="$ac_optarg" ;;
300
301 -program-transform-name | --program-transform-name \
302 | --program-transform-nam | --program-transform-na \
303 | --program-transform-n | --program-transform- \
304 | --program-transform | --program-transfor \
305 | --program-transfo | --program-transf \
306 | --program-trans | --program-tran \
307 | --progr-tra | --program-tr | --program-t)
308 ac_prev=program_transform_name ;;
309 -program-transform-name=* | --program-transform-name=* \
310 | --program-transform-nam=* | --program-transform-na=* \
311 | --program-transform-n=* | --program-transform-=* \
312 | --program-transform=* | --program-transfor=* \
313 | --program-transfo=* | --program-transf=* \
314 | --program-trans=* | --program-tran=* \
315 | --progr-tra=* | --program-tr=* | --program-t=*)
316 program_transform_name="$ac_optarg" ;;
317
318 -q | -quiet | --quiet | --quie | --qui | --qu | --q \
319 | -silent | --silent | --silen | --sile | --sil)
320 silent=yes ;;
321
322 -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb)
323 ac_prev=sbindir ;;
324 -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \
325 | --sbi=* | --sb=*)
326 sbindir="$ac_optarg" ;;
327
328 -sharedstatedir | --sharedstatedir | --sharedstatedi \
329 | --sharedstated | --sharedstate | --sharedstat | --sharedsta \
330 | --sharedst | --shareds | --shared | --share | --shar \
331 | --sha | --sh)
332 ac_prev=sharedstatedir ;;
333 -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \
334 | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \
335 | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \
336 | --sha=* | --sh=*)
337 sharedstatedir="$ac_optarg" ;;
338
339 -site | --site | --sit)
340 ac_prev=site ;;
341 -site=* | --site=* | --sit=*)
342 site="$ac_optarg" ;;
343
6f6ef0fa
NC
344 -site-file | --site-file | --site-fil | --site-fi | --site-f)
345 ac_prev=sitefile ;;
346 -site-file=* | --site-file=* | --site-fil=* | --site-fi=* | --site-f=*)
347 sitefile="$ac_optarg" ;;
348
252b5132
RH
349 -srcdir | --srcdir | --srcdi | --srcd | --src | --sr)
350 ac_prev=srcdir ;;
351 -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)
352 srcdir="$ac_optarg" ;;
353
354 -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \
355 | --syscon | --sysco | --sysc | --sys | --sy)
356 ac_prev=sysconfdir ;;
357 -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \
358 | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*)
359 sysconfdir="$ac_optarg" ;;
360
361 -target | --target | --targe | --targ | --tar | --ta | --t)
362 ac_prev=target ;;
363 -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*)
364 target="$ac_optarg" ;;
365
366 -v | -verbose | --verbose | --verbos | --verbo | --verb)
367 verbose=yes ;;
368
369 -version | --version | --versio | --versi | --vers)
a2d91340 370 echo "configure generated by autoconf version 2.13"
252b5132
RH
371 exit 0 ;;
372
373 -with-* | --with-*)
374 ac_package=`echo $ac_option|sed -e 's/-*with-//' -e 's/=.*//'`
375 # Reject names that are not valid shell variable names.
376 if test -n "`echo $ac_package| sed 's/[-_a-zA-Z0-9]//g'`"; then
377 { echo "configure: error: $ac_package: invalid package name" 1>&2; exit 1; }
378 fi
379 ac_package=`echo $ac_package| sed 's/-/_/g'`
380 case "$ac_option" in
381 *=*) ;;
382 *) ac_optarg=yes ;;
383 esac
384 eval "with_${ac_package}='$ac_optarg'" ;;
385
386 -without-* | --without-*)
387 ac_package=`echo $ac_option|sed -e 's/-*without-//'`
388 # Reject names that are not valid shell variable names.
389 if test -n "`echo $ac_package| sed 's/[-a-zA-Z0-9_]//g'`"; then
390 { echo "configure: error: $ac_package: invalid package name" 1>&2; exit 1; }
391 fi
392 ac_package=`echo $ac_package| sed 's/-/_/g'`
393 eval "with_${ac_package}=no" ;;
394
395 --x)
396 # Obsolete; use --with-x.
397 with_x=yes ;;
398
399 -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \
400 | --x-incl | --x-inc | --x-in | --x-i)
401 ac_prev=x_includes ;;
402 -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \
403 | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*)
404 x_includes="$ac_optarg" ;;
405
406 -x-libraries | --x-libraries | --x-librarie | --x-librari \
407 | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l)
408 ac_prev=x_libraries ;;
409 -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \
410 | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
411 x_libraries="$ac_optarg" ;;
412
413 -*) { echo "configure: error: $ac_option: invalid option; use --help to show usage" 1>&2; exit 1; }
414 ;;
415
416 *)
417 if test -n "`echo $ac_option| sed 's/[-a-z0-9.]//g'`"; then
418 echo "configure: warning: $ac_option: invalid host type" 1>&2
419 fi
420 if test "x$nonopt" != xNONE; then
421 { echo "configure: error: can only configure for one host and one target at a time" 1>&2; exit 1; }
422 fi
423 nonopt="$ac_option"
424 ;;
425
426 esac
427done
428
429if test -n "$ac_prev"; then
430 { echo "configure: error: missing argument to --`echo $ac_prev | sed 's/_/-/g'`" 1>&2; exit 1; }
431fi
432
433trap 'rm -fr conftest* confdefs* core core.* *.core $ac_clean_files; exit 1' 1 2 15
434
435# File descriptor usage:
436# 0 standard input
437# 1 file creation
438# 2 errors and warnings
439# 3 some systems may open it to /dev/tty
440# 4 used on the Kubota Titan
441# 6 checking for... messages and results
442# 5 compiler messages saved in config.log
443if test "$silent" = yes; then
444 exec 6>/dev/null
445else
446 exec 6>&1
447fi
448exec 5>./config.log
449
450echo "\
451This file contains any messages produced by compilers while
452running configure, to aid debugging if configure makes a mistake.
453" 1>&5
454
455# Strip out --no-create and --no-recursion so they do not pile up.
456# Also quote any args containing shell metacharacters.
457ac_configure_args=
458for ac_arg
459do
460 case "$ac_arg" in
461 -no-create | --no-create | --no-creat | --no-crea | --no-cre \
462 | --no-cr | --no-c) ;;
463 -no-recursion | --no-recursion | --no-recursio | --no-recursi \
464 | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) ;;
465 *" "*|*" "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?]*)
466 ac_configure_args="$ac_configure_args '$ac_arg'" ;;
467 *) ac_configure_args="$ac_configure_args $ac_arg" ;;
468 esac
469done
470
471# NLS nuisances.
472# Only set these to C if already set. These must not be set unconditionally
473# because not all systems understand e.g. LANG=C (notably SCO).
474# Fixing LC_MESSAGES prevents Solaris sh from translating var values in `set'!
475# Non-C LC_CTYPE values break the ctype check.
476if test "${LANG+set}" = set; then LANG=C; export LANG; fi
477if test "${LC_ALL+set}" = set; then LC_ALL=C; export LC_ALL; fi
478if test "${LC_MESSAGES+set}" = set; then LC_MESSAGES=C; export LC_MESSAGES; fi
479if test "${LC_CTYPE+set}" = set; then LC_CTYPE=C; export LC_CTYPE; fi
480
481# confdefs.h avoids OS command line length limits that DEFS can exceed.
482rm -rf conftest* confdefs.h
483# AIX cpp loses on an empty file, so make sure it contains at least a newline.
484echo > confdefs.h
485
486# A filename unique to this package, relative to the directory that
487# configure is in, which we can look for to find out if srcdir is correct.
488ac_unique_file=as.h
489
490# Find the source files, if location was not specified.
491if test -z "$srcdir"; then
492 ac_srcdir_defaulted=yes
493 # Try the directory containing this script, then its parent.
494 ac_prog=$0
495 ac_confdir=`echo $ac_prog|sed 's%/[^/][^/]*$%%'`
496 test "x$ac_confdir" = "x$ac_prog" && ac_confdir=.
497 srcdir=$ac_confdir
498 if test ! -r $srcdir/$ac_unique_file; then
499 srcdir=..
500 fi
501else
502 ac_srcdir_defaulted=no
503fi
504if test ! -r $srcdir/$ac_unique_file; then
505 if test "$ac_srcdir_defaulted" = yes; then
506 { echo "configure: error: can not find sources in $ac_confdir or .." 1>&2; exit 1; }
507 else
508 { echo "configure: error: can not find sources in $srcdir" 1>&2; exit 1; }
509 fi
510fi
511srcdir=`echo "${srcdir}" | sed 's%\([^/]\)/*$%\1%'`
512
513# Prefer explicitly selected file to automatically selected ones.
6f6ef0fa
NC
514if test -z "$sitefile"; then
515 if test -z "$CONFIG_SITE"; then
516 if test "x$prefix" != xNONE; then
517 CONFIG_SITE="$prefix/share/config.site $prefix/etc/config.site"
518 else
519 CONFIG_SITE="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site"
520 fi
252b5132 521 fi
6f6ef0fa
NC
522else
523 CONFIG_SITE="$sitefile"
252b5132
RH
524fi
525for ac_site_file in $CONFIG_SITE; do
526 if test -r "$ac_site_file"; then
527 echo "loading site script $ac_site_file"
528 . "$ac_site_file"
529 fi
530done
531
532if test -r "$cache_file"; then
533 echo "loading cache $cache_file"
a2d91340 534 . $cache_file
252b5132
RH
535else
536 echo "creating cache $cache_file"
537 > $cache_file
538fi
539
540ac_ext=c
541# CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.
542ac_cpp='$CPP $CPPFLAGS'
543ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5'
544ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5'
545cross_compiling=$ac_cv_prog_cc_cross
546
547ac_exeext=
548ac_objext=o
549if (echo "testing\c"; echo 1,2,3) | grep c >/dev/null; then
550 # Stardent Vistra SVR4 grep lacks -e, says ghazi@caip.rutgers.edu.
551 if (echo -n testing; echo 1,2,3) | sed s/-n/xn/ | grep xn >/dev/null; then
552 ac_n= ac_c='
553' ac_t=' '
554 else
555 ac_n=-n ac_c= ac_t=
556 fi
557else
558 ac_n= ac_c='\c' ac_t=
559fi
560
ac48eca1 561echo $ac_n "checking for Cygwin environment""... $ac_c" 1>&6
6f6ef0fa 562echo "configure:563: checking for Cygwin environment" >&5
ac48eca1
AO
563if eval "test \"`echo '$''{'ac_cv_cygwin'+set}'`\" = set"; then
564 echo $ac_n "(cached) $ac_c" 1>&6
565else
566 cat > conftest.$ac_ext <<EOF
6f6ef0fa 567#line 568 "configure"
ac48eca1
AO
568#include "confdefs.h"
569
570int main() {
571
572#ifndef __CYGWIN__
573#define __CYGWIN__ __CYGWIN32__
574#endif
575return __CYGWIN__;
576; return 0; }
577EOF
6f6ef0fa 578if { (eval echo configure:579: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
ac48eca1
AO
579 rm -rf conftest*
580 ac_cv_cygwin=yes
581else
582 echo "configure: failed program was:" >&5
583 cat conftest.$ac_ext >&5
584 rm -rf conftest*
585 ac_cv_cygwin=no
586fi
587rm -f conftest*
588rm -f conftest*
589fi
590
591echo "$ac_t""$ac_cv_cygwin" 1>&6
592CYGWIN=
593test "$ac_cv_cygwin" = yes && CYGWIN=yes
594echo $ac_n "checking for mingw32 environment""... $ac_c" 1>&6
6f6ef0fa 595echo "configure:596: checking for mingw32 environment" >&5
ac48eca1
AO
596if eval "test \"`echo '$''{'ac_cv_mingw32'+set}'`\" = set"; then
597 echo $ac_n "(cached) $ac_c" 1>&6
598else
599 cat > conftest.$ac_ext <<EOF
6f6ef0fa 600#line 601 "configure"
ac48eca1
AO
601#include "confdefs.h"
602
603int main() {
604return __MINGW32__;
605; return 0; }
606EOF
6f6ef0fa 607if { (eval echo configure:608: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
ac48eca1
AO
608 rm -rf conftest*
609 ac_cv_mingw32=yes
610else
611 echo "configure: failed program was:" >&5
612 cat conftest.$ac_ext >&5
613 rm -rf conftest*
614 ac_cv_mingw32=no
615fi
616rm -f conftest*
617rm -f conftest*
618fi
619
620echo "$ac_t""$ac_cv_mingw32" 1>&6
621MINGW32=
622test "$ac_cv_mingw32" = yes && MINGW32=yes
252b5132
RH
623
624
625ac_aux_dir=
626for ac_dir in $srcdir $srcdir/.. $srcdir/../..; do
627 if test -f $ac_dir/install-sh; then
628 ac_aux_dir=$ac_dir
629 ac_install_sh="$ac_aux_dir/install-sh -c"
630 break
631 elif test -f $ac_dir/install.sh; then
632 ac_aux_dir=$ac_dir
633 ac_install_sh="$ac_aux_dir/install.sh -c"
634 break
635 fi
636done
637if test -z "$ac_aux_dir"; then
638 { echo "configure: error: can not find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." 1>&2; exit 1; }
639fi
a2d91340
AC
640ac_config_guess=$ac_aux_dir/config.guess
641ac_config_sub=$ac_aux_dir/config.sub
642ac_configure=$ac_aux_dir/configure # This should be Cygnus configure.
252b5132
RH
643
644
645# Do some error checking and defaulting for the host and target type.
646# The inputs are:
647# configure --host=HOST --target=TARGET --build=BUILD NONOPT
648#
649# The rules are:
650# 1. You are not allowed to specify --host, --target, and nonopt at the
651# same time.
652# 2. Host defaults to nonopt.
653# 3. If nonopt is not specified, then host defaults to the current host,
654# as determined by config.guess.
655# 4. Target and build default to nonopt.
656# 5. If nonopt is not specified, then target and build default to host.
657
658# The aliases save the names the user supplied, while $host etc.
659# will get canonicalized.
660case $host---$target---$nonopt in
661NONE---*---* | *---NONE---* | *---*---NONE) ;;
662*) { echo "configure: error: can only configure for one host and one target at a time" 1>&2; exit 1; } ;;
663esac
664
a2d91340
AC
665
666# Make sure we can run config.sub.
667if ${CONFIG_SHELL-/bin/sh} $ac_config_sub sun4 >/dev/null 2>&1; then :
668else { echo "configure: error: can not run $ac_config_sub" 1>&2; exit 1; }
669fi
670
671echo $ac_n "checking host system type""... $ac_c" 1>&6
6f6ef0fa 672echo "configure:673: checking host system type" >&5
a2d91340
AC
673
674host_alias=$host
675case "$host_alias" in
676NONE)
677 case $nonopt in
678 NONE)
679 if host_alias=`${CONFIG_SHELL-/bin/sh} $ac_config_guess`; then :
680 else { echo "configure: error: can not guess host type; you must specify one" 1>&2; exit 1; }
681 fi ;;
682 *) host_alias=$nonopt ;;
683 esac ;;
684esac
685
686host=`${CONFIG_SHELL-/bin/sh} $ac_config_sub $host_alias`
687host_cpu=`echo $host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
688host_vendor=`echo $host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
689host_os=`echo $host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
690echo "$ac_t""$host" 1>&6
691
692echo $ac_n "checking target system type""... $ac_c" 1>&6
6f6ef0fa 693echo "configure:694: checking target system type" >&5
a2d91340
AC
694
695target_alias=$target
696case "$target_alias" in
697NONE)
698 case $nonopt in
699 NONE) target_alias=$host_alias ;;
700 *) target_alias=$nonopt ;;
701 esac ;;
702esac
703
704target=`${CONFIG_SHELL-/bin/sh} $ac_config_sub $target_alias`
705target_cpu=`echo $target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
706target_vendor=`echo $target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
707target_os=`echo $target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
708echo "$ac_t""$target" 1>&6
709
710echo $ac_n "checking build system type""... $ac_c" 1>&6
6f6ef0fa 711echo "configure:712: checking build system type" >&5
a2d91340
AC
712
713build_alias=$build
714case "$build_alias" in
715NONE)
716 case $nonopt in
717 NONE) build_alias=$host_alias ;;
718 *) build_alias=$nonopt ;;
719 esac ;;
720esac
721
722build=`${CONFIG_SHELL-/bin/sh} $ac_config_sub $build_alias`
723build_cpu=`echo $build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
724build_vendor=`echo $build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
725build_os=`echo $build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
726echo "$ac_t""$build" 1>&6
727
252b5132
RH
728test "$host_alias" != "$target_alias" &&
729 test "$program_prefix$program_suffix$program_transform_name" = \
730 NONENONEs,x,x, &&
731 program_prefix=${target_alias}-
732
5d64ca4e 733
5f68c319
NC
734 echo $ac_n "checking for strerror in -lcposix""... $ac_c" 1>&6
735echo "configure:736: checking for strerror in -lcposix" >&5
736ac_lib_var=`echo cposix'_'strerror | sed 'y%./+-%__p_%'`
737if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
5d64ca4e
L
738 echo $ac_n "(cached) $ac_c" 1>&6
739else
5f68c319
NC
740 ac_save_LIBS="$LIBS"
741LIBS="-lcposix $LIBS"
742cat > conftest.$ac_ext <<EOF
743#line 744 "configure"
5d64ca4e 744#include "confdefs.h"
5f68c319
NC
745/* Override any gcc2 internal prototype to avoid an error. */
746/* We use char because int might match the return type of a gcc2
747 builtin and then its argument prototype would still apply. */
748char strerror();
5d64ca4e 749
5f68c319
NC
750int main() {
751strerror()
752; return 0; }
5d64ca4e 753EOF
5f68c319
NC
754if { (eval echo configure:755: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
755 rm -rf conftest*
756 eval "ac_cv_lib_$ac_lib_var=yes"
5d64ca4e
L
757else
758 echo "configure: failed program was:" >&5
759 cat conftest.$ac_ext >&5
5f68c319
NC
760 rm -rf conftest*
761 eval "ac_cv_lib_$ac_lib_var=no"
5d64ca4e
L
762fi
763rm -f conftest*
5f68c319 764LIBS="$ac_save_LIBS"
5d64ca4e
L
765
766fi
5f68c319 767if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
5d64ca4e 768 echo "$ac_t""yes" 1>&6
5f68c319 769 LIBS="$LIBS -lcposix"
5d64ca4e
L
770else
771 echo "$ac_t""no" 1>&6
5d64ca4e
L
772fi
773
5f68c319
NC
774
775
252b5132
RH
776
777# Find a good install program. We prefer a C program (faster),
778# so one script is as good as another. But avoid the broken or
779# incompatible versions:
780# SysV /etc/install, /usr/sbin/install
781# SunOS /usr/etc/install
782# IRIX /sbin/install
783# AIX /bin/install
784# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag
785# AFS /usr/afsws/bin/install, which mishandles nonexistent args
786# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
787# ./install, which can be erroneously created by make from ./install.sh.
788echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6
5f68c319 789echo "configure:790: checking for a BSD compatible install" >&5
252b5132 790if test -z "$INSTALL"; then
a2d91340 791if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then
252b5132
RH
792 echo $ac_n "(cached) $ac_c" 1>&6
793else
794 IFS="${IFS= }"; ac_save_IFS="$IFS"; IFS=":"
795 for ac_dir in $PATH; do
796 # Account for people who put trailing slashes in PATH elements.
797 case "$ac_dir/" in
798 /|./|.//|/etc/*|/usr/sbin/*|/usr/etc/*|/sbin/*|/usr/afsws/bin/*|/usr/ucb/*) ;;
799 *)
800 # OSF1 and SCO ODT 3.0 have their own names for install.
801 # Don't use installbsd from OSF since it installs stuff as root
802 # by default.
803 for ac_prog in ginstall scoinst install; do
804 if test -f $ac_dir/$ac_prog; then
805 if test $ac_prog = install &&
806 grep dspmsg $ac_dir/$ac_prog >/dev/null 2>&1; then
807 # AIX install. It has an incompatible calling convention.
808 :
809 else
810 ac_cv_path_install="$ac_dir/$ac_prog -c"
811 break 2
812 fi
813 fi
814 done
815 ;;
816 esac
817 done
818 IFS="$ac_save_IFS"
819
820fi
821 if test "${ac_cv_path_install+set}" = set; then
822 INSTALL="$ac_cv_path_install"
823 else
824 # As a last resort, use the slow shell script. We don't cache a
825 # path for INSTALL within a source directory, because that will
826 # break other packages using the cache if that directory is
827 # removed, or if the path is relative.
828 INSTALL="$ac_install_sh"
829 fi
830fi
831echo "$ac_t""$INSTALL" 1>&6
832
833# Use test -z because SunOS4 sh mishandles braces in ${var-val}.
834# It thinks the first close brace ends the variable substitution.
835test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}'
836
a2d91340 837test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL_PROGRAM}'
252b5132
RH
838
839test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
840
841echo $ac_n "checking whether build environment is sane""... $ac_c" 1>&6
5f68c319 842echo "configure:843: checking whether build environment is sane" >&5
252b5132
RH
843# Just in case
844sleep 1
845echo timestamp > conftestfile
846# Do `set' in a subshell so we don't clobber the current shell's
847# arguments. Must try -L first in case configure is actually a
848# symlink; some systems play weird games with the mod time of symlinks
849# (eg FreeBSD returns the mod time of the symlink's containing
850# directory).
851if (
852 set X `ls -Lt $srcdir/configure conftestfile 2> /dev/null`
853 if test "$*" = "X"; then
854 # -L didn't work.
855 set X `ls -t $srcdir/configure conftestfile`
856 fi
857 if test "$*" != "X $srcdir/configure conftestfile" \
858 && test "$*" != "X conftestfile $srcdir/configure"; then
859
860 # If neither matched, then we have a broken ls. This can happen
861 # if, for instance, CONFIG_SHELL is bash and it inherits a
862 # broken ls alias from the environment. This has actually
863 # happened. Such a system could not be considered "sane".
864 { echo "configure: error: ls -t appears to fail. Make sure there is not a broken
865alias in your environment" 1>&2; exit 1; }
866 fi
867
868 test "$2" = conftestfile
869 )
870then
871 # Ok.
872 :
873else
874 { echo "configure: error: newly created file is older than distributed files!
875Check your system clock" 1>&2; exit 1; }
876fi
877rm -f conftest*
878echo "$ac_t""yes" 1>&6
879if test "$program_transform_name" = s,x,x,; then
880 program_transform_name=
881else
882 # Double any \ or $. echo might interpret backslashes.
883 cat <<\EOF_SED > conftestsed
884s,\\,\\\\,g; s,\$,$$,g
885EOF_SED
886 program_transform_name="`echo $program_transform_name|sed -f conftestsed`"
887 rm -f conftestsed
888fi
889test "$program_prefix" != NONE &&
a2d91340 890 program_transform_name="s,^,${program_prefix},; $program_transform_name"
252b5132
RH
891# Use a double $ so make ignores it.
892test "$program_suffix" != NONE &&
a2d91340 893 program_transform_name="s,\$\$,${program_suffix},; $program_transform_name"
252b5132
RH
894
895# sed with no file args requires a program.
896test "$program_transform_name" = "" && program_transform_name="s,x,x,"
897
898echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6
5f68c319 899echo "configure:900: checking whether ${MAKE-make} sets \${MAKE}" >&5
252b5132 900set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y%./+-%__p_%'`
a2d91340 901if eval "test \"`echo '$''{'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then
252b5132
RH
902 echo $ac_n "(cached) $ac_c" 1>&6
903else
904 cat > conftestmake <<\EOF
905all:
906 @echo 'ac_maketemp="${MAKE}"'
907EOF
908# GNU make sometimes prints "make[1]: Entering...", which would confuse us.
909eval `${MAKE-make} -f conftestmake 2>/dev/null | grep temp=`
910if test -n "$ac_maketemp"; then
911 eval ac_cv_prog_make_${ac_make}_set=yes
912else
913 eval ac_cv_prog_make_${ac_make}_set=no
914fi
915rm -f conftestmake
916fi
917if eval "test \"`echo '$ac_cv_prog_make_'${ac_make}_set`\" = yes"; then
918 echo "$ac_t""yes" 1>&6
919 SET_MAKE=
920else
921 echo "$ac_t""no" 1>&6
922 SET_MAKE="MAKE=${MAKE-make}"
923fi
924
925
926PACKAGE=gas
927
18e03609 928VERSION=2.10.91
252b5132
RH
929
930if test "`cd $srcdir && pwd`" != "`pwd`" && test -f $srcdir/config.status; then
931 { echo "configure: error: source directory already configured; run "make distclean" there first" 1>&2; exit 1; }
932fi
933cat >> confdefs.h <<EOF
934#define PACKAGE "$PACKAGE"
935EOF
936
937cat >> confdefs.h <<EOF
938#define VERSION "$VERSION"
939EOF
940
941
942
943missing_dir=`cd $ac_aux_dir && pwd`
944echo $ac_n "checking for working aclocal""... $ac_c" 1>&6
5f68c319 945echo "configure:946: checking for working aclocal" >&5
252b5132
RH
946# Run test in a subshell; some versions of sh will print an error if
947# an executable is not found, even if stderr is redirected.
948# Redirect stdin to placate older versions of autoconf. Sigh.
949if (aclocal --version) < /dev/null > /dev/null 2>&1; then
950 ACLOCAL=aclocal
951 echo "$ac_t""found" 1>&6
952else
953 ACLOCAL="$missing_dir/missing aclocal"
954 echo "$ac_t""missing" 1>&6
955fi
956
957echo $ac_n "checking for working autoconf""... $ac_c" 1>&6
5f68c319 958echo "configure:959: checking for working autoconf" >&5
252b5132
RH
959# Run test in a subshell; some versions of sh will print an error if
960# an executable is not found, even if stderr is redirected.
961# Redirect stdin to placate older versions of autoconf. Sigh.
962if (autoconf --version) < /dev/null > /dev/null 2>&1; then
963 AUTOCONF=autoconf
964 echo "$ac_t""found" 1>&6
965else
966 AUTOCONF="$missing_dir/missing autoconf"
967 echo "$ac_t""missing" 1>&6
968fi
969
970echo $ac_n "checking for working automake""... $ac_c" 1>&6
5f68c319 971echo "configure:972: checking for working automake" >&5
252b5132
RH
972# Run test in a subshell; some versions of sh will print an error if
973# an executable is not found, even if stderr is redirected.
974# Redirect stdin to placate older versions of autoconf. Sigh.
975if (automake --version) < /dev/null > /dev/null 2>&1; then
976 AUTOMAKE=automake
977 echo "$ac_t""found" 1>&6
978else
979 AUTOMAKE="$missing_dir/missing automake"
980 echo "$ac_t""missing" 1>&6
981fi
982
983echo $ac_n "checking for working autoheader""... $ac_c" 1>&6
5f68c319 984echo "configure:985: checking for working autoheader" >&5
252b5132
RH
985# Run test in a subshell; some versions of sh will print an error if
986# an executable is not found, even if stderr is redirected.
987# Redirect stdin to placate older versions of autoconf. Sigh.
988if (autoheader --version) < /dev/null > /dev/null 2>&1; then
989 AUTOHEADER=autoheader
990 echo "$ac_t""found" 1>&6
991else
992 AUTOHEADER="$missing_dir/missing autoheader"
993 echo "$ac_t""missing" 1>&6
994fi
995
996echo $ac_n "checking for working makeinfo""... $ac_c" 1>&6
5f68c319 997echo "configure:998: checking for working makeinfo" >&5
252b5132
RH
998# Run test in a subshell; some versions of sh will print an error if
999# an executable is not found, even if stderr is redirected.
1000# Redirect stdin to placate older versions of autoconf. Sigh.
1001if (makeinfo --version) < /dev/null > /dev/null 2>&1; then
1002 MAKEINFO=makeinfo
1003 echo "$ac_t""found" 1>&6
1004else
1005 MAKEINFO="$missing_dir/missing makeinfo"
1006 echo "$ac_t""missing" 1>&6
1007fi
1008
1009
1010
1011# Check whether --enable-shared or --disable-shared was given.
1012if test "${enable_shared+set}" = set; then
1013 enableval="$enable_shared"
1014 p=${PACKAGE-default}
1015case "$enableval" in
1016yes) enable_shared=yes ;;
1017no) enable_shared=no ;;
1018*)
1019 enable_shared=no
1020 # Look at the argument we got. We use all the common list separators.
1021 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:,"
1022 for pkg in $enableval; do
1023 if test "X$pkg" = "X$p"; then
1024 enable_shared=yes
1025 fi
1026 done
1027 IFS="$ac_save_ifs"
1028 ;;
1029esac
1030else
1031 enable_shared=yes
1032fi
1033
1034# Check whether --enable-static or --disable-static was given.
1035if test "${enable_static+set}" = set; then
1036 enableval="$enable_static"
1037 p=${PACKAGE-default}
1038case "$enableval" in
1039yes) enable_static=yes ;;
1040no) enable_static=no ;;
1041*)
1042 enable_static=no
1043 # Look at the argument we got. We use all the common list separators.
1044 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:,"
1045 for pkg in $enableval; do
1046 if test "X$pkg" = "X$p"; then
1047 enable_static=yes
1048 fi
1049 done
1050 IFS="$ac_save_ifs"
1051 ;;
1052esac
1053else
1054 enable_static=yes
1055fi
1056
bedf545c
ILT
1057# Check whether --enable-fast-install or --disable-fast-install was given.
1058if test "${enable_fast_install+set}" = set; then
1059 enableval="$enable_fast_install"
1060 p=${PACKAGE-default}
1061case "$enableval" in
1062yes) enable_fast_install=yes ;;
1063no) enable_fast_install=no ;;
1064*)
1065 enable_fast_install=no
1066 # Look at the argument we got. We use all the common list separators.
1067 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:,"
1068 for pkg in $enableval; do
1069 if test "X$pkg" = "X$p"; then
1070 enable_fast_install=yes
1071 fi
1072 done
1073 IFS="$ac_save_ifs"
1074 ;;
1075esac
1076else
1077 enable_fast_install=yes
1078fi
1079
5f68c319
NC
1080# Extract the first word of "gcc", so it can be a program name with args.
1081set dummy gcc; ac_word=$2
1082echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
1083echo "configure:1084: checking for $ac_word" >&5
1084if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
1085 echo $ac_n "(cached) $ac_c" 1>&6
1086else
1087 if test -n "$CC"; then
1088 ac_cv_prog_CC="$CC" # Let the user override the test.
1089else
1090 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":"
1091 ac_dummy="$PATH"
1092 for ac_dir in $ac_dummy; do
1093 test -z "$ac_dir" && ac_dir=.
1094 if test -f $ac_dir/$ac_word; then
1095 ac_cv_prog_CC="gcc"
1096 break
1097 fi
1098 done
1099 IFS="$ac_save_ifs"
1100fi
1101fi
1102CC="$ac_cv_prog_CC"
1103if test -n "$CC"; then
1104 echo "$ac_t""$CC" 1>&6
1105else
1106 echo "$ac_t""no" 1>&6
1107fi
1108
1109if test -z "$CC"; then
1110 # Extract the first word of "cc", so it can be a program name with args.
1111set dummy cc; ac_word=$2
1112echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
1113echo "configure:1114: checking for $ac_word" >&5
1114if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
1115 echo $ac_n "(cached) $ac_c" 1>&6
1116else
1117 if test -n "$CC"; then
1118 ac_cv_prog_CC="$CC" # Let the user override the test.
1119else
1120 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":"
1121 ac_prog_rejected=no
1122 ac_dummy="$PATH"
1123 for ac_dir in $ac_dummy; do
1124 test -z "$ac_dir" && ac_dir=.
1125 if test -f $ac_dir/$ac_word; then
1126 if test "$ac_dir/$ac_word" = "/usr/ucb/cc"; then
1127 ac_prog_rejected=yes
1128 continue
1129 fi
1130 ac_cv_prog_CC="cc"
1131 break
1132 fi
1133 done
1134 IFS="$ac_save_ifs"
1135if test $ac_prog_rejected = yes; then
1136 # We found a bogon in the path, so make sure we never use it.
1137 set dummy $ac_cv_prog_CC
1138 shift
1139 if test $# -gt 0; then
1140 # We chose a different compiler from the bogus one.
1141 # However, it has the same basename, so the bogon will be chosen
1142 # first if we set CC to just the basename; use the full file name.
1143 shift
1144 set dummy "$ac_dir/$ac_word" "$@"
1145 shift
1146 ac_cv_prog_CC="$@"
1147 fi
1148fi
1149fi
1150fi
1151CC="$ac_cv_prog_CC"
1152if test -n "$CC"; then
1153 echo "$ac_t""$CC" 1>&6
1154else
1155 echo "$ac_t""no" 1>&6
1156fi
1157
1158 if test -z "$CC"; then
1159 case "`uname -s`" in
1160 *win32* | *WIN32*)
1161 # Extract the first word of "cl", so it can be a program name with args.
1162set dummy cl; ac_word=$2
1163echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
1164echo "configure:1165: checking for $ac_word" >&5
1165if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
1166 echo $ac_n "(cached) $ac_c" 1>&6
1167else
1168 if test -n "$CC"; then
1169 ac_cv_prog_CC="$CC" # Let the user override the test.
1170else
1171 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":"
1172 ac_dummy="$PATH"
1173 for ac_dir in $ac_dummy; do
1174 test -z "$ac_dir" && ac_dir=.
1175 if test -f $ac_dir/$ac_word; then
1176 ac_cv_prog_CC="cl"
1177 break
1178 fi
1179 done
1180 IFS="$ac_save_ifs"
1181fi
1182fi
1183CC="$ac_cv_prog_CC"
1184if test -n "$CC"; then
1185 echo "$ac_t""$CC" 1>&6
1186else
1187 echo "$ac_t""no" 1>&6
1188fi
1189 ;;
1190 esac
1191 fi
1192 test -z "$CC" && { echo "configure: error: no acceptable cc found in \$PATH" 1>&2; exit 1; }
1193fi
1194
1195echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6
1196echo "configure:1197: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5
1197
1198ac_ext=c
1199# CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.
1200ac_cpp='$CPP $CPPFLAGS'
1201ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5'
1202ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5'
1203cross_compiling=$ac_cv_prog_cc_cross
1204
1205cat > conftest.$ac_ext << EOF
1206
1207#line 1208 "configure"
1208#include "confdefs.h"
1209
1210main(){return(0);}
1211EOF
1212if { (eval echo configure:1213: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
1213 ac_cv_prog_cc_works=yes
1214 # If we can't run a trivial program, we are probably using a cross compiler.
1215 if (./conftest; exit) 2>/dev/null; then
1216 ac_cv_prog_cc_cross=no
1217 else
1218 ac_cv_prog_cc_cross=yes
1219 fi
1220else
1221 echo "configure: failed program was:" >&5
1222 cat conftest.$ac_ext >&5
1223 ac_cv_prog_cc_works=no
1224fi
1225rm -fr conftest*
1226ac_ext=c
1227# CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.
1228ac_cpp='$CPP $CPPFLAGS'
1229ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5'
1230ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5'
1231cross_compiling=$ac_cv_prog_cc_cross
1232
1233echo "$ac_t""$ac_cv_prog_cc_works" 1>&6
1234if test $ac_cv_prog_cc_works = no; then
1235 { echo "configure: error: installation or configuration problem: C compiler cannot create executables." 1>&2; exit 1; }
1236fi
1237echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6
1238echo "configure:1239: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5
1239echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6
1240cross_compiling=$ac_cv_prog_cc_cross
1241
1242echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6
1243echo "configure:1244: checking whether we are using GNU C" >&5
1244if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then
1245 echo $ac_n "(cached) $ac_c" 1>&6
1246else
1247 cat > conftest.c <<EOF
1248#ifdef __GNUC__
1249 yes;
1250#endif
1251EOF
1252if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:1253: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then
1253 ac_cv_prog_gcc=yes
1254else
1255 ac_cv_prog_gcc=no
1256fi
1257fi
1258
1259echo "$ac_t""$ac_cv_prog_gcc" 1>&6
1260
1261if test $ac_cv_prog_gcc = yes; then
1262 GCC=yes
1263else
1264 GCC=
1265fi
1266
1267ac_test_CFLAGS="${CFLAGS+set}"
1268ac_save_CFLAGS="$CFLAGS"
1269CFLAGS=
1270echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6
1271echo "configure:1272: checking whether ${CC-cc} accepts -g" >&5
1272if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then
1273 echo $ac_n "(cached) $ac_c" 1>&6
1274else
1275 echo 'void f(){}' > conftest.c
1276if test -z "`${CC-cc} -g -c conftest.c 2>&1`"; then
1277 ac_cv_prog_cc_g=yes
1278else
1279 ac_cv_prog_cc_g=no
1280fi
1281rm -f conftest*
1282
1283fi
1284
1285echo "$ac_t""$ac_cv_prog_cc_g" 1>&6
1286if test "$ac_test_CFLAGS" = set; then
1287 CFLAGS="$ac_save_CFLAGS"
1288elif test $ac_cv_prog_cc_g = yes; then
1289 if test "$GCC" = yes; then
1290 CFLAGS="-g -O2"
1291 else
1292 CFLAGS="-g"
1293 fi
1294else
1295 if test "$GCC" = yes; then
1296 CFLAGS="-O2"
1297 else
1298 CFLAGS=
1299 fi
1300fi
1301
252b5132
RH
1302# Check whether --with-gnu-ld or --without-gnu-ld was given.
1303if test "${with_gnu_ld+set}" = set; then
1304 withval="$with_gnu_ld"
1305 test "$withval" = no || with_gnu_ld=yes
1306else
1307 with_gnu_ld=no
1308fi
1309
252b5132
RH
1310ac_prog=ld
1311if test "$ac_cv_prog_gcc" = yes; then
1312 # Check if gcc -print-prog-name=ld gives a path.
1313 echo $ac_n "checking for ld used by GCC""... $ac_c" 1>&6
5f68c319 1314echo "configure:1315: checking for ld used by GCC" >&5
ac48eca1
AO
1315 case $host in
1316 *-*-mingw*)
1317 # gcc leaves a trailing carriage return which upsets mingw
1318 ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;;
1319 *)
1320 ac_prog=`($CC -print-prog-name=ld) 2>&5` ;;
1321 esac
252b5132 1322 case "$ac_prog" in
bedf545c 1323 # Accept absolute paths.
a74801ba 1324 [\\/]* | [A-Za-z]:[\\/]*)
bedf545c
ILT
1325 re_direlt='/[^/][^/]*/\.\./'
1326 # Canonicalize the path of ld
1327 ac_prog=`echo $ac_prog| sed 's%\\\\%/%g'`
1328 while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do
1329 ac_prog=`echo $ac_prog| sed "s%$re_direlt%/%"`
1330 done
1331 test -z "$LD" && LD="$ac_prog"
1332 ;;
252b5132
RH
1333 "")
1334 # If it fails, then pretend we aren't using GCC.
1335 ac_prog=ld
1336 ;;
1337 *)
1338 # If it is relative, then search for the first ld in PATH.
1339 with_gnu_ld=unknown
1340 ;;
1341 esac
1342elif test "$with_gnu_ld" = yes; then
1343 echo $ac_n "checking for GNU ld""... $ac_c" 1>&6
5f68c319 1344echo "configure:1345: checking for GNU ld" >&5
252b5132
RH
1345else
1346 echo $ac_n "checking for non-GNU ld""... $ac_c" 1>&6
5f68c319 1347echo "configure:1348: checking for non-GNU ld" >&5
252b5132 1348fi
a2d91340 1349if eval "test \"`echo '$''{'ac_cv_path_LD'+set}'`\" = set"; then
252b5132
RH
1350 echo $ac_n "(cached) $ac_c" 1>&6
1351else
1352 if test -z "$LD"; then
a74801ba 1353 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}${PATH_SEPARATOR-:}"
252b5132
RH
1354 for ac_dir in $PATH; do
1355 test -z "$ac_dir" && ac_dir=.
a74801ba 1356 if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then
252b5132
RH
1357 ac_cv_path_LD="$ac_dir/$ac_prog"
1358 # Check to see if the program is GNU ld. I'd rather use --version,
1359 # but apparently some GNU ld's only accept -v.
1360 # Break only if it was the GNU/non-GNU ld that we prefer.
1361 if "$ac_cv_path_LD" -v 2>&1 < /dev/null | egrep '(GNU|with BFD)' > /dev/null; then
1362 test "$with_gnu_ld" != no && break
1363 else
bedf545c 1364 test "$with_gnu_ld" != yes && break
252b5132
RH
1365 fi
1366 fi
1367 done
1368 IFS="$ac_save_ifs"
1369else
1370 ac_cv_path_LD="$LD" # Let the user override the test with a path.
1371fi
1372fi
1373
1374LD="$ac_cv_path_LD"
1375if test -n "$LD"; then
1376 echo "$ac_t""$LD" 1>&6
1377else
1378 echo "$ac_t""no" 1>&6
1379fi
1380test -z "$LD" && { echo "configure: error: no acceptable ld found in \$PATH" 1>&2; exit 1; }
252b5132 1381echo $ac_n "checking if the linker ($LD) is GNU ld""... $ac_c" 1>&6
5f68c319 1382echo "configure:1383: checking if the linker ($LD) is GNU ld" >&5
a2d91340 1383if eval "test \"`echo '$''{'ac_cv_prog_gnu_ld'+set}'`\" = set"; then
252b5132
RH
1384 echo $ac_n "(cached) $ac_c" 1>&6
1385else
1386 # I'd rather use --version here, but apparently some GNU ld's only accept -v.
1387if $LD -v 2>&1 </dev/null | egrep '(GNU|with BFD)' 1>&5; then
1388 ac_cv_prog_gnu_ld=yes
1389else
1390 ac_cv_prog_gnu_ld=no
1391fi
1392fi
1393
1394echo "$ac_t""$ac_cv_prog_gnu_ld" 1>&6
ac48eca1
AO
1395with_gnu_ld=$ac_cv_prog_gnu_ld
1396
1397
1398echo $ac_n "checking for $LD option to reload object files""... $ac_c" 1>&6
5f68c319 1399echo "configure:1400: checking for $LD option to reload object files" >&5
ac48eca1
AO
1400if eval "test \"`echo '$''{'lt_cv_ld_reload_flag'+set}'`\" = set"; then
1401 echo $ac_n "(cached) $ac_c" 1>&6
1402else
1403 lt_cv_ld_reload_flag='-r'
1404fi
252b5132 1405
ac48eca1
AO
1406echo "$ac_t""$lt_cv_ld_reload_flag" 1>&6
1407reload_flag=$lt_cv_ld_reload_flag
1408test -n "$reload_flag" && reload_flag=" $reload_flag"
252b5132
RH
1409
1410echo $ac_n "checking for BSD-compatible nm""... $ac_c" 1>&6
5f68c319 1411echo "configure:1412: checking for BSD-compatible nm" >&5
a2d91340 1412if eval "test \"`echo '$''{'ac_cv_path_NM'+set}'`\" = set"; then
252b5132
RH
1413 echo $ac_n "(cached) $ac_c" 1>&6
1414else
1415 if test -n "$NM"; then
1416 # Let the user override the test.
1417 ac_cv_path_NM="$NM"
1418else
a74801ba 1419 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}${PATH_SEPARATOR-:}"
bedf545c 1420 for ac_dir in $PATH /usr/ccs/bin /usr/ucb /bin; do
252b5132 1421 test -z "$ac_dir" && ac_dir=.
ac48eca1
AO
1422 tmp_nm=$ac_dir/${ac_tool_prefix}nm
1423 if test -f $tmp_nm || test -f $tmp_nm$ac_exeext ; then
252b5132
RH
1424 # Check to see if the nm accepts a BSD-compat flag.
1425 # Adding the `sed 1q' prevents false positives on HP-UX, which says:
1426 # nm: unknown option "B" ignored
58cccadb
AO
1427 # Tru64's nm complains that /dev/null is an invalid object file
1428 if ($tmp_nm -B /dev/null 2>&1 | sed '1q'; exit 0) | egrep '(/dev/null|Invalid file or object type)' >/dev/null; then
ac48eca1 1429 ac_cv_path_NM="$tmp_nm -B"
bedf545c 1430 break
ac48eca1
AO
1431 elif ($tmp_nm -p /dev/null 2>&1 | sed '1q'; exit 0) | egrep /dev/null >/dev/null; then
1432 ac_cv_path_NM="$tmp_nm -p"
bedf545c 1433 break
252b5132 1434 else
ac48eca1 1435 ac_cv_path_NM=${ac_cv_path_NM="$tmp_nm"} # keep the first match, but
bedf545c 1436 continue # so that we can try to find one that supports BSD flags
252b5132 1437 fi
252b5132
RH
1438 fi
1439 done
1440 IFS="$ac_save_ifs"
1441 test -z "$ac_cv_path_NM" && ac_cv_path_NM=nm
1442fi
1443fi
1444
1445NM="$ac_cv_path_NM"
1446echo "$ac_t""$NM" 1>&6
1447
252b5132 1448echo $ac_n "checking whether ln -s works""... $ac_c" 1>&6
5f68c319 1449echo "configure:1450: checking whether ln -s works" >&5
a2d91340 1450if eval "test \"`echo '$''{'ac_cv_prog_LN_S'+set}'`\" = set"; then
252b5132
RH
1451 echo $ac_n "(cached) $ac_c" 1>&6
1452else
1453 rm -f conftestdata
1454if ln -s X conftestdata 2>/dev/null
1455then
1456 rm -f conftestdata
1457 ac_cv_prog_LN_S="ln -s"
1458else
1459 ac_cv_prog_LN_S=ln
1460fi
1461fi
1462LN_S="$ac_cv_prog_LN_S"
1463if test "$ac_cv_prog_LN_S" = "ln -s"; then
1464 echo "$ac_t""yes" 1>&6
1465else
1466 echo "$ac_t""no" 1>&6
1467fi
1468
ac48eca1 1469echo $ac_n "checking how to recognise dependant libraries""... $ac_c" 1>&6
5f68c319 1470echo "configure:1471: checking how to recognise dependant libraries" >&5
ac48eca1
AO
1471if eval "test \"`echo '$''{'lt_cv_deplibs_check_method'+set}'`\" = set"; then
1472 echo $ac_n "(cached) $ac_c" 1>&6
1473else
d64552c5 1474 lt_cv_file_magic_cmd='$MAGIC_CMD'
ac48eca1
AO
1475lt_cv_file_magic_test_file=
1476lt_cv_deplibs_check_method='unknown'
1477# Need to set the preceding variable on all platforms that support
1478# interlibrary dependencies.
1479# 'none' -- dependencies not supported.
1480# `unknown' -- same as none, but documents that we really don't know.
1481# 'pass_all' -- all dependencies passed with no checks.
1482# 'test_compile' -- check by making test program.
1483# 'file_magic [regex]' -- check by looking for files in library path
1484# which responds to the $file_magic_cmd with a given egrep regex.
1485# If you have `file' or equivalent on your system and you're not sure
1486# whether `pass_all' will *always* work, you probably want this one.
1487
1488case "$host_os" in
1489aix4*)
1490 lt_cv_deplibs_check_method=pass_all
1491 ;;
1492
1493beos*)
1494 lt_cv_deplibs_check_method=pass_all
1495 ;;
1496
1497bsdi4*)
1498 lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib)'
1499 lt_cv_file_magic_cmd='/usr/bin/file -L'
1500 lt_cv_file_magic_test_file=/shlib/libc.so
1501 ;;
1502
d64552c5 1503cygwin* | mingw* |pw32*)
ac48eca1 1504 lt_cv_deplibs_check_method='file_magic file format pei*-i386(.*architecture: i386)?'
d64552c5 1505 lt_cv_file_magic_cmd='$OBJDUMP -f'
ac48eca1
AO
1506 ;;
1507
1508freebsd* )
1509 if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then
1510 case "$host_cpu" in
1511 i*86 )
58cccadb
AO
1512 # Not sure whether the presence of OpenBSD here was a mistake.
1513 # Let's accept both of them until this is cleared up.
1514 lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD)/i[3-9]86 (compact )?demand paged shared library'
ac48eca1
AO
1515 lt_cv_file_magic_cmd=/usr/bin/file
1516 lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*`
1517 ;;
1518 esac
1519 else
1520 lt_cv_deplibs_check_method=pass_all
1521 fi
1522 ;;
1523
1524gnu*)
1525 lt_cv_deplibs_check_method=pass_all
1526 ;;
1527
1528hpux10.20*)
1529 # TODO: Does this work for hpux-11 too?
1530 lt_cv_deplibs_check_method='file_magic (s0-90-90-9|PA-RISC0-9.0-9) shared library'
1531 lt_cv_file_magic_cmd=/usr/bin/file
1532 lt_cv_file_magic_test_file=/usr/lib/libc.sl
1533 ;;
1534
1535irix5* | irix6*)
1536 case "$host_os" in
1537 irix5*)
1538 # this will be overridden with pass_all, but let us keep it just in case
1539 lt_cv_deplibs_check_method="file_magic ELF 32-bit MSB dynamic lib MIPS - version 1"
1540 ;;
1541 *)
1542 case "$LD" in
1543 *-32|*"-32 ") libmagic=32-bit;;
1544 *-n32|*"-n32 ") libmagic=N32;;
1545 *-64|*"-64 ") libmagic=64-bit;;
1546 *) libmagic=never-match;;
1547 esac
1548 # this will be overridden with pass_all, but let us keep it just in case
1549 lt_cv_deplibs_check_method="file_magic ELF ${libmagic} MSB mips-[1234] dynamic lib MIPS - version 1"
1550 ;;
1551 esac
1552 lt_cv_file_magic_test_file=`echo /lib${libsuff}/libc.so*`
1553 lt_cv_deplibs_check_method=pass_all
1554 ;;
1555
1556# This must be Linux ELF.
58cccadb 1557linux-gnu*)
ac48eca1
AO
1558 case "$host_cpu" in
1559 alpha* | i*86 | powerpc* | sparc* | ia64* )
1560 lt_cv_deplibs_check_method=pass_all ;;
1561 *)
1562 # glibc up to 2.1.1 does not perform some relocations on ARM
1563 lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [LM]SB (shared object|dynamic lib )' ;;
1564 esac
1565 lt_cv_file_magic_test_file=`echo /lib/libc.so* /lib/libc-*.so`
1566 ;;
1567
1568netbsd*)
1569 if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then :
1570 else
1571 lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [LM]SB shared object'
1572 lt_cv_file_magic_cmd='/usr/bin/file -L'
1573 lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*`
1574 fi
1575 ;;
1576
1577osf3* | osf4* | osf5*)
1578 # this will be overridden with pass_all, but let us keep it just in case
1579 lt_cv_deplibs_check_method='file_magic COFF format alpha shared library'
1580 lt_cv_file_magic_test_file=/shlib/libc.so
1581 lt_cv_deplibs_check_method=pass_all
1582 ;;
1583
1584sco3.2v5*)
1585 lt_cv_deplibs_check_method=pass_all
1586 ;;
1587
1588solaris*)
1589 lt_cv_deplibs_check_method=pass_all
1590 lt_cv_file_magic_test_file=/lib/libc.so
1591 ;;
1592
1593sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*)
1594 case "$host_vendor" in
1595 ncr)
1596 lt_cv_deplibs_check_method=pass_all
1597 ;;
1598 motorola)
1599 lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib) M[0-9][0-9]* Version [0-9]'
1600 lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*`
1601 ;;
1602 esac
1603 ;;
1604esac
1605
1606fi
1607
1608echo "$ac_t""$lt_cv_deplibs_check_method" 1>&6
1609file_magic_cmd=$lt_cv_file_magic_cmd
1610deplibs_check_method=$lt_cv_deplibs_check_method
1611
1612echo $ac_n "checking for object suffix""... $ac_c" 1>&6
5f68c319 1613echo "configure:1614: checking for object suffix" >&5
ac48eca1
AO
1614if eval "test \"`echo '$''{'ac_cv_objext'+set}'`\" = set"; then
1615 echo $ac_n "(cached) $ac_c" 1>&6
1616else
1617 rm -f conftest*
1618echo 'int i = 1;' > conftest.$ac_ext
5f68c319 1619if { (eval echo configure:1620: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
ac48eca1
AO
1620 for ac_file in conftest.*; do
1621 case $ac_file in
1622 *.c) ;;
1623 *) ac_cv_objext=`echo $ac_file | sed -e s/conftest.//` ;;
1624 esac
1625 done
1626else
1627 { echo "configure: error: installation or configuration problem; compiler does not work" 1>&2; exit 1; }
1628fi
1629rm -f conftest*
1630fi
1631
1632echo "$ac_t""$ac_cv_objext" 1>&6
1633OBJEXT=$ac_cv_objext
1634ac_objext=$ac_cv_objext
1635
1636
1637
1638echo $ac_n "checking for executable suffix""... $ac_c" 1>&6
5f68c319 1639echo "configure:1640: checking for executable suffix" >&5
ac48eca1
AO
1640if eval "test \"`echo '$''{'ac_cv_exeext'+set}'`\" = set"; then
1641 echo $ac_n "(cached) $ac_c" 1>&6
1642else
1643 if test "$CYGWIN" = yes || test "$MINGW32" = yes; then
1644 ac_cv_exeext=.exe
1645else
1646 rm -f conftest*
1647 echo 'int main () { return 0; }' > conftest.$ac_ext
1648 ac_cv_exeext=
5f68c319 1649 if { (eval echo configure:1650: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then
ac48eca1
AO
1650 for file in conftest.*; do
1651 case $file in
6f6ef0fa 1652 *.c | *.o | *.obj | *.ilk | *.pdb) ;;
ac48eca1
AO
1653 *) ac_cv_exeext=`echo $file | sed -e s/conftest//` ;;
1654 esac
1655 done
1656 else
1657 { echo "configure: error: installation or configuration problem: compiler cannot create executables." 1>&2; exit 1; }
1658 fi
1659 rm -f conftest*
1660 test x"${ac_cv_exeext}" = x && ac_cv_exeext=no
1661fi
1662fi
1663
1664EXEEXT=""
1665test x"${ac_cv_exeext}" != xno && EXEEXT=${ac_cv_exeext}
1666echo "$ac_t""${ac_cv_exeext}" 1>&6
1667ac_exeext=$EXEEXT
1668
1669if test $host != $build; then
1670 ac_tool_prefix=${host_alias}-
1671else
1672 ac_tool_prefix=
1673fi
1674
1675# Autoconf 2.13's AC_OBJEXT and AC_EXEEXT macros only works for C compilers!
1676
1677# Only perform the check for file, if the check method requires it
1678case "$deplibs_check_method" in
1679file_magic*)
d64552c5 1680 if test "$file_magic_cmd" = '$MAGIC_CMD'; then
ac48eca1 1681 echo $ac_n "checking for ${ac_tool_prefix}file""... $ac_c" 1>&6
5f68c319 1682echo "configure:1683: checking for ${ac_tool_prefix}file" >&5
d64552c5 1683if eval "test \"`echo '$''{'lt_cv_path_MAGIC_CMD'+set}'`\" = set"; then
ac48eca1
AO
1684 echo $ac_n "(cached) $ac_c" 1>&6
1685else
d64552c5 1686 case "$MAGIC_CMD" in
ac48eca1 1687 /*)
d64552c5 1688 lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path.
ac48eca1
AO
1689 ;;
1690 ?:/*)
d64552c5 1691 lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a dos path.
ac48eca1
AO
1692 ;;
1693 *)
d64552c5 1694 ac_save_MAGIC_CMD="$MAGIC_CMD"
ac48eca1
AO
1695 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":"
1696 ac_dummy="/usr/bin:$PATH"
1697 for ac_dir in $ac_dummy; do
1698 test -z "$ac_dir" && ac_dir=.
1699 if test -f $ac_dir/${ac_tool_prefix}file; then
d64552c5 1700 lt_cv_path_MAGIC_CMD="$ac_dir/${ac_tool_prefix}file"
ac48eca1
AO
1701 if test -n "$file_magic_test_file"; then
1702 case "$deplibs_check_method" in
1703 "file_magic "*)
1704 file_magic_regex="`expr \"$deplibs_check_method\" : \"file_magic \(.*\)\"`"
d64552c5 1705 MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
ac48eca1
AO
1706 if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null |
1707 egrep "$file_magic_regex" > /dev/null; then
1708 :
1709 else
1710 cat <<EOF 1>&2
1711
1712*** Warning: the command libtool uses to detect shared libraries,
1713*** $file_magic_cmd, produces output that libtool cannot recognize.
1714*** The result is that libtool may fail to recognize shared libraries
1715*** as such. This will affect the creation of libtool libraries that
1716*** depend on shared libraries, but programs linked with such libtool
1717*** libraries will work regardless of this problem. Nevertheless, you
1718*** may want to report the problem to your system manager and/or to
1719*** bug-libtool@gnu.org
1720
1721EOF
1722 fi ;;
1723 esac
1724 fi
1725 break
1726 fi
1727 done
1728 IFS="$ac_save_ifs"
d64552c5 1729 MAGIC_CMD="$ac_save_MAGIC_CMD"
ac48eca1
AO
1730 ;;
1731esac
1732fi
1733
d64552c5
AO
1734MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
1735if test -n "$MAGIC_CMD"; then
1736 echo "$ac_t""$MAGIC_CMD" 1>&6
ac48eca1
AO
1737else
1738 echo "$ac_t""no" 1>&6
1739fi
1740
d64552c5 1741if test -z "$lt_cv_path_MAGIC_CMD"; then
ac48eca1
AO
1742 if test -n "$ac_tool_prefix"; then
1743 echo $ac_n "checking for file""... $ac_c" 1>&6
5f68c319 1744echo "configure:1745: checking for file" >&5
d64552c5 1745if eval "test \"`echo '$''{'lt_cv_path_MAGIC_CMD'+set}'`\" = set"; then
ac48eca1
AO
1746 echo $ac_n "(cached) $ac_c" 1>&6
1747else
d64552c5 1748 case "$MAGIC_CMD" in
ac48eca1 1749 /*)
d64552c5 1750 lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path.
ac48eca1
AO
1751 ;;
1752 ?:/*)
d64552c5 1753 lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a dos path.
ac48eca1
AO
1754 ;;
1755 *)
d64552c5 1756 ac_save_MAGIC_CMD="$MAGIC_CMD"
ac48eca1
AO
1757 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":"
1758 ac_dummy="/usr/bin:$PATH"
1759 for ac_dir in $ac_dummy; do
1760 test -z "$ac_dir" && ac_dir=.
1761 if test -f $ac_dir/file; then
d64552c5 1762 lt_cv_path_MAGIC_CMD="$ac_dir/file"
ac48eca1
AO
1763 if test -n "$file_magic_test_file"; then
1764 case "$deplibs_check_method" in
1765 "file_magic "*)
1766 file_magic_regex="`expr \"$deplibs_check_method\" : \"file_magic \(.*\)\"`"
d64552c5 1767 MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
ac48eca1
AO
1768 if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null |
1769 egrep "$file_magic_regex" > /dev/null; then
1770 :
1771 else
1772 cat <<EOF 1>&2
1773
1774*** Warning: the command libtool uses to detect shared libraries,
1775*** $file_magic_cmd, produces output that libtool cannot recognize.
1776*** The result is that libtool may fail to recognize shared libraries
1777*** as such. This will affect the creation of libtool libraries that
1778*** depend on shared libraries, but programs linked with such libtool
1779*** libraries will work regardless of this problem. Nevertheless, you
1780*** may want to report the problem to your system manager and/or to
1781*** bug-libtool@gnu.org
1782
1783EOF
1784 fi ;;
1785 esac
1786 fi
1787 break
1788 fi
1789 done
1790 IFS="$ac_save_ifs"
d64552c5 1791 MAGIC_CMD="$ac_save_MAGIC_CMD"
ac48eca1
AO
1792 ;;
1793esac
1794fi
1795
d64552c5
AO
1796MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
1797if test -n "$MAGIC_CMD"; then
1798 echo "$ac_t""$MAGIC_CMD" 1>&6
ac48eca1
AO
1799else
1800 echo "$ac_t""no" 1>&6
1801fi
1802
1803 else
d64552c5 1804 MAGIC_CMD=:
ac48eca1
AO
1805 fi
1806fi
1807
1808 fi
1809 ;;
1810esac
1811
1812# Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args.
1813set dummy ${ac_tool_prefix}ranlib; ac_word=$2
1814echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
5f68c319 1815echo "configure:1816: checking for $ac_word" >&5
ac48eca1
AO
1816if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then
1817 echo $ac_n "(cached) $ac_c" 1>&6
1818else
1819 if test -n "$RANLIB"; then
1820 ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test.
1821else
1822 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":"
1823 ac_dummy="$PATH"
1824 for ac_dir in $ac_dummy; do
1825 test -z "$ac_dir" && ac_dir=.
1826 if test -f $ac_dir/$ac_word; then
1827 ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib"
1828 break
1829 fi
1830 done
1831 IFS="$ac_save_ifs"
1832fi
1833fi
1834RANLIB="$ac_cv_prog_RANLIB"
1835if test -n "$RANLIB"; then
1836 echo "$ac_t""$RANLIB" 1>&6
1837else
1838 echo "$ac_t""no" 1>&6
1839fi
1840
1841
1842if test -z "$ac_cv_prog_RANLIB"; then
1843if test -n "$ac_tool_prefix"; then
1844 # Extract the first word of "ranlib", so it can be a program name with args.
1845set dummy ranlib; ac_word=$2
1846echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
5f68c319 1847echo "configure:1848: checking for $ac_word" >&5
ac48eca1
AO
1848if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then
1849 echo $ac_n "(cached) $ac_c" 1>&6
1850else
1851 if test -n "$RANLIB"; then
1852 ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test.
1853else
1854 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":"
1855 ac_dummy="$PATH"
1856 for ac_dir in $ac_dummy; do
1857 test -z "$ac_dir" && ac_dir=.
1858 if test -f $ac_dir/$ac_word; then
1859 ac_cv_prog_RANLIB="ranlib"
1860 break
1861 fi
1862 done
1863 IFS="$ac_save_ifs"
1864 test -z "$ac_cv_prog_RANLIB" && ac_cv_prog_RANLIB=":"
1865fi
1866fi
1867RANLIB="$ac_cv_prog_RANLIB"
1868if test -n "$RANLIB"; then
1869 echo "$ac_t""$RANLIB" 1>&6
1870else
1871 echo "$ac_t""no" 1>&6
1872fi
1873
1874else
1875 RANLIB=":"
1876fi
1877fi
1878
1879# Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args.
1880set dummy ${ac_tool_prefix}strip; ac_word=$2
1881echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
5f68c319 1882echo "configure:1883: checking for $ac_word" >&5
ac48eca1
AO
1883if eval "test \"`echo '$''{'ac_cv_prog_STRIP'+set}'`\" = set"; then
1884 echo $ac_n "(cached) $ac_c" 1>&6
1885else
1886 if test -n "$STRIP"; then
1887 ac_cv_prog_STRIP="$STRIP" # Let the user override the test.
1888else
1889 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":"
1890 ac_dummy="$PATH"
1891 for ac_dir in $ac_dummy; do
1892 test -z "$ac_dir" && ac_dir=.
1893 if test -f $ac_dir/$ac_word; then
1894 ac_cv_prog_STRIP="${ac_tool_prefix}strip"
1895 break
1896 fi
1897 done
1898 IFS="$ac_save_ifs"
1899fi
1900fi
1901STRIP="$ac_cv_prog_STRIP"
1902if test -n "$STRIP"; then
1903 echo "$ac_t""$STRIP" 1>&6
1904else
1905 echo "$ac_t""no" 1>&6
1906fi
1907
1908
1909if test -z "$ac_cv_prog_STRIP"; then
1910if test -n "$ac_tool_prefix"; then
1911 # Extract the first word of "strip", so it can be a program name with args.
1912set dummy strip; ac_word=$2
1913echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
5f68c319 1914echo "configure:1915: checking for $ac_word" >&5
ac48eca1
AO
1915if eval "test \"`echo '$''{'ac_cv_prog_STRIP'+set}'`\" = set"; then
1916 echo $ac_n "(cached) $ac_c" 1>&6
1917else
1918 if test -n "$STRIP"; then
1919 ac_cv_prog_STRIP="$STRIP" # Let the user override the test.
1920else
1921 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":"
1922 ac_dummy="$PATH"
1923 for ac_dir in $ac_dummy; do
1924 test -z "$ac_dir" && ac_dir=.
1925 if test -f $ac_dir/$ac_word; then
1926 ac_cv_prog_STRIP="strip"
1927 break
1928 fi
1929 done
1930 IFS="$ac_save_ifs"
1931 test -z "$ac_cv_prog_STRIP" && ac_cv_prog_STRIP=":"
1932fi
1933fi
1934STRIP="$ac_cv_prog_STRIP"
1935if test -n "$STRIP"; then
1936 echo "$ac_t""$STRIP" 1>&6
1937else
1938 echo "$ac_t""no" 1>&6
1939fi
1940
1941else
1942 STRIP=":"
1943fi
1944fi
1945
252b5132 1946
252b5132 1947# Check for any special flags to pass to ltconfig.
bedf545c 1948libtool_flags="--cache-file=$cache_file"
252b5132
RH
1949test "$enable_shared" = no && libtool_flags="$libtool_flags --disable-shared"
1950test "$enable_static" = no && libtool_flags="$libtool_flags --disable-static"
bedf545c 1951test "$enable_fast_install" = no && libtool_flags="$libtool_flags --disable-fast-install"
252b5132
RH
1952test "$ac_cv_prog_gcc" = yes && libtool_flags="$libtool_flags --with-gcc"
1953test "$ac_cv_prog_gnu_ld" = yes && libtool_flags="$libtool_flags --with-gnu-ld"
1954
a74801ba
ILT
1955
1956# Check whether --enable-libtool-lock or --disable-libtool-lock was given.
1957if test "${enable_libtool_lock+set}" = set; then
1958 enableval="$enable_libtool_lock"
1959 :
1960fi
1961
1962test "x$enable_libtool_lock" = xno && libtool_flags="$libtool_flags --disable-lock"
1963test x"$silent" = xyes && libtool_flags="$libtool_flags --silent"
1964
ac48eca1
AO
1965# Check whether --with-pic or --without-pic was given.
1966if test "${with_pic+set}" = set; then
1967 withval="$with_pic"
1968 pic_mode="$withval"
1969else
1970 pic_mode=default
1971fi
1972
1973test x"$pic_mode" = xyes && libtool_flags="$libtool_flags --prefer-pic"
1974test x"$pic_mode" = xno && libtool_flags="$libtool_flags --prefer-non-pic"
1975
252b5132
RH
1976# Some flags need to be propagated to the compiler or linker for good
1977# libtool support.
28e7409f 1978case "$host" in
252b5132
RH
1979*-*-irix6*)
1980 # Find out which ABI we are using.
5f68c319
NC
1981 echo '#line 1982 "configure"' > conftest.$ac_ext
1982 if { (eval echo configure:1983: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
252b5132
RH
1983 case "`/usr/bin/file conftest.o`" in
1984 *32-bit*)
1985 LD="${LD-ld} -32"
1986 ;;
1987 *N32*)
1988 LD="${LD-ld} -n32"
1989 ;;
1990 *64-bit*)
1991 LD="${LD-ld} -64"
1992 ;;
1993 esac
1994 fi
1995 rm -rf conftest*
1996 ;;
1997
1998*-*-sco3.2v5*)
1999 # On SCO OpenServer 5, we need -belf to get full-featured binaries.
bedf545c 2000 SAVE_CFLAGS="$CFLAGS"
252b5132 2001 CFLAGS="$CFLAGS -belf"
bedf545c 2002 echo $ac_n "checking whether the C compiler needs -belf""... $ac_c" 1>&6
5f68c319 2003echo "configure:2004: checking whether the C compiler needs -belf" >&5
a2d91340 2004if eval "test \"`echo '$''{'lt_cv_cc_needs_belf'+set}'`\" = set"; then
bedf545c
ILT
2005 echo $ac_n "(cached) $ac_c" 1>&6
2006else
ac48eca1
AO
2007
2008 ac_ext=c
2009# CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.
2010ac_cpp='$CPP $CPPFLAGS'
2011ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5'
2012ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5'
2013cross_compiling=$ac_cv_prog_cc_cross
2014
2015 cat > conftest.$ac_ext <<EOF
5f68c319 2016#line 2017 "configure"
bedf545c
ILT
2017#include "confdefs.h"
2018
2019int main() {
2020
2021; return 0; }
2022EOF
5f68c319 2023if { (eval echo configure:2024: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
bedf545c
ILT
2024 rm -rf conftest*
2025 lt_cv_cc_needs_belf=yes
2026else
2027 echo "configure: failed program was:" >&5
2028 cat conftest.$ac_ext >&5
2029 rm -rf conftest*
2030 lt_cv_cc_needs_belf=no
2031fi
2032rm -f conftest*
ac48eca1
AO
2033 ac_ext=c
2034# CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.
2035ac_cpp='$CPP $CPPFLAGS'
2036ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5'
2037ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5'
2038cross_compiling=$ac_cv_prog_cc_cross
2039
bedf545c
ILT
2040fi
2041
2042echo "$ac_t""$lt_cv_cc_needs_belf" 1>&6
2043 if test x"$lt_cv_cc_needs_belf" != x"yes"; then
2044 # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf
2045 CFLAGS="$SAVE_CFLAGS"
2046 fi
252b5132
RH
2047 ;;
2048
252b5132
RH
2049
2050esac
2051
bedf545c
ILT
2052
2053# Save cache, so that ltconfig can load it
2054cat > confcache <<\EOF
2055# This file is a shell script that caches the results of configure
2056# tests run on this system so they can be shared between configure
2057# scripts and configure runs. It is not useful on other systems.
2058# If it contains results you don't want to keep, you may remove or edit it.
2059#
2060# By default, configure uses ./config.cache as the cache file,
2061# creating it if it does not exist already. You can give configure
2062# the --cache-file=FILE option to use a different cache file; that is
2063# what configure does when it calls configure scripts in
2064# subdirectories, so they share the cache.
2065# Giving --cache-file=/dev/null disables caching, for debugging configure.
2066# config.status only pays attention to the cache file if you give it the
2067# --recheck option to rerun configure.
2068#
2069EOF
2070# The following way of writing the cache mishandles newlines in values,
2071# but we know of no workaround that is simple, portable, and efficient.
2072# So, don't put newlines in cache variables' values.
2073# Ultrix sh set writes to stderr and can't be redirected directly,
2074# and sets the high bit in the cache file unless we assign to the vars.
2075(set) 2>&1 |
2076 case `(ac_space=' '; set | grep ac_space) 2>&1` in
2077 *ac_space=\ *)
2078 # `set' does not quote correctly, so add quotes (double-quote substitution
2079 # turns \\\\ into \\, and sed turns \\ into \).
2080 sed -n \
2081 -e "s/'/'\\\\''/g" \
2082 -e "s/^\\([a-zA-Z0-9_]*_cv_[a-zA-Z0-9_]*\\)=\\(.*\\)/\\1=\${\\1='\\2'}/p"
2083 ;;
2084 *)
2085 # `set' quotes correctly as required by POSIX, so do not add quotes.
2086 sed -n -e 's/^\([a-zA-Z0-9_]*_cv_[a-zA-Z0-9_]*\)=\(.*\)/\1=${\1=\2}/p'
2087 ;;
2088 esac >> confcache
2089if cmp -s $cache_file confcache; then
2090 :
2091else
2092 if test -w $cache_file; then
2093 echo "updating cache $cache_file"
2094 cat confcache > $cache_file
2095 else
2096 echo "not updating unwritable cache $cache_file"
2097 fi
2098fi
2099rm -f confcache
2100
2101
252b5132 2102# Actually configure libtool. ac_aux_dir is where install-sh is found.
ac48eca1 2103AR="$AR" LTCC="$CC" CC="$CC" CFLAGS="$CFLAGS" CPPFLAGS="$CPPFLAGS" \
d64552c5 2104MAGIC_CMD="$MAGIC_CMD" LD="$LD" LDFLAGS="$LDFLAGS" LIBS="$LIBS" \
ac48eca1
AO
2105LN_S="$LN_S" NM="$NM" RANLIB="$RANLIB" STRIP="$STRIP" \
2106AS="$AS" DLLTOOL="$DLLTOOL" OBJDUMP="$OBJDUMP" \
2107objext="$OBJEXT" exeext="$EXEEXT" reload_flag="$reload_flag" \
2108deplibs_check_method="$deplibs_check_method" file_magic_cmd="$file_magic_cmd" \
252b5132 2109${CONFIG_SHELL-/bin/sh} $ac_aux_dir/ltconfig --no-reexec \
ac48eca1 2110$libtool_flags --no-verify --build="$build" $ac_aux_dir/ltmain.sh $host \
252b5132
RH
2111|| { echo "configure: error: libtool configure failed" 1>&2; exit 1; }
2112
bedf545c
ILT
2113# Reload cache, that may have been modified by ltconfig
2114if test -r "$cache_file"; then
2115 echo "loading cache $cache_file"
a2d91340 2116 . $cache_file
bedf545c
ILT
2117else
2118 echo "creating cache $cache_file"
2119 > $cache_file
2120fi
2121
2122
2123# This can be used to rebuild libtool when needed
ac48eca1 2124LIBTOOL_DEPS="$ac_aux_dir/ltconfig $ac_aux_dir/ltmain.sh $ac_aux_dir/ltcf-c.sh"
bedf545c
ILT
2125
2126# Always use our own libtool.
2127LIBTOOL='$(SHELL) $(top_builddir)/libtool'
2128
252b5132
RH
2129# Redirect the config.log output again, so that the ltconfig log is not
2130# clobbered by the next message.
2131exec 5>>./config.log
2132
2133
ac48eca1
AO
2134
2135
2136
2137
d64552c5 2138
ac48eca1 2139
252b5132
RH
2140user_bfd_gas=
2141# Check whether --enable-bfd-assembler or --disable-bfd-assembler was given.
2142if test "${enable_bfd_assembler+set}" = set; then
2143 enableval="$enable_bfd_assembler"
2144 case "${enableval}" in
2145 yes) need_bfd=yes user_bfd_gas=yes ;;
2146 no) user_bfd_gas=no ;;
2147 *) { echo "configure: error: bad value ${enableval} given for bfd-assembler option" 1>&2; exit 1; } ;;
2148esac
2149fi
2150# Check whether --enable-targets or --disable-targets was given.
2151if test "${enable_targets+set}" = set; then
2152 enableval="$enable_targets"
2153 case "${enableval}" in
2154 yes | "") { echo "configure: error: enable-targets option must specify target names or 'all'" 1>&2; exit 1; }
2155 ;;
2156 no) enable_targets= ;;
2157 *) enable_targets=$enableval ;;
2158esac
2159fi
2160# Check whether --enable-commonbfdlib or --disable-commonbfdlib was given.
2161if test "${enable_commonbfdlib+set}" = set; then
2162 enableval="$enable_commonbfdlib"
2163 case "${enableval}" in
2164 yes) commonbfdlib=true ;;
2165 no) commonbfdlib=false ;;
2166 *) { echo "configure: error: bad value ${enableval} for BFD commonbfdlib option" 1>&2; exit 1; } ;;
2167esac
2168fi
2169
2170using_cgen=no
2171
a2d91340
AC
2172build_warnings="-W -Wall"
2173# Check whether --enable-build-warnings or --disable-build-warnings was given.
2174if test "${enable_build_warnings+set}" = set; then
2175 enableval="$enable_build_warnings"
2176 case "${enableval}" in
2177 yes) ;;
2178 no) build_warnings="-w";;
2179 ,*) t=`echo "${enableval}" | sed -e "s/,/ /g"`
2180 build_warnings="${build_warnings} ${t}";;
2181 *,) t=`echo "${enableval}" | sed -e "s/,/ /g"`
2182 build_warnings="${t} ${build_warnings}";;
2183 *) build_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
2184esac
2185if test x"$silent" != x"yes" && test x"$build_warnings" != x""; then
2186 echo "Setting warning flags = $build_warnings" 6>&1
2187fi
2188fi
2189WARN_CFLAGS=""
2190if test "x${build_warnings}" != x -a "x$GCC" = xyes ; then
2191 WARN_CFLAGS="${build_warnings}"
2192fi
2193
2194
252b5132
RH
2195# Generate a header file
2196
2197
2198
2199
76a27922
ILT
2200# If we are on a DOS filesystem, we must use gdb.ini rather than
2201# .gdbinit.
2202GDBINIT=".gdbinit"
2203case "${host}" in
2204 *-*-msdos* | *-*-go32* | *-*-mingw32* | *-*-cygwin* | *-*-windows*)
2205 GDBINIT="gdb.ini"
2206 ;;
2207esac
2208
2209
252b5132
RH
2210te_file=generic
2211
2212# Makefile target for installing gas in $(tooldir)/bin.
2213install_tooldir=install-exec-tooldir
2214
2215canon_targets=""
15886821 2216all_targets=no
252b5132
RH
2217if test -n "$enable_targets" ; then
2218 for t in `echo $enable_targets | sed 's/,/ /g'`; do
15886821
L
2219 if test $t = "all"; then
2220 all_targets=yes
2221 continue
2222 fi
6d83c84b 2223 result=`$ac_config_sub $t 2>/dev/null`
252b5132
RH
2224 if test -n "$result" ; then
2225 canon_targets="$canon_targets $result"
2226# else
2227# # Permit "all", etc. We don't support it yet though.
2228# canon_targets="$canon_targets $t"
2229 fi
2230 done
2231 _gas_uniq_list="$canon_targets"
2232_gas_uniq_newlist=""
2233for _gas_uniq_i in _gas_uniq_dummy $_gas_uniq_list ; do
2234 case $_gas_uniq_i in
2235 _gas_uniq_dummy) ;;
2236 *) case " $_gas_uniq_newlist " in
2237 *" $_gas_uniq_i "*) ;;
2238 *) _gas_uniq_newlist="$_gas_uniq_newlist $_gas_uniq_i" ;;
2239 esac ;;
2240 esac
2241done
2242canon_targets=$_gas_uniq_newlist
2243
2244fi
2245
2246emulations=""
2247
2248for this_target in $target $canon_targets ; do
2249
2250 eval `echo $this_target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/cpu=\1 vendor=\2 os=\3/'`
2251
2252 # check for architecture variants
2253 arch=
2254 endian=
2255 case ${cpu} in
2256 alpha*) cpu_type=alpha ;;
2257 armeb) cpu_type=arm endian=big ;;
2258 arm*) cpu_type=arm endian=little ;;
2259 armb*) cpu_type=arm endian=little ;;
2260 armv*l) cpu_type=arm endian=little ;;
2261 armv*b) cpu_type=arm endian=big ;;
077b8428 2262 xscale*) cpu_type=arm endian=little ;;
252b5132
RH
2263 strongarm*) cpu_type=arm endian=little ;;
2264 thumb*) cpu_type=arm endian=little ;;
2265 hppa*) cpu_type=hppa ;;
a735d1cd
L
2266 i[456]86) cpu_type=i386 arch=i386;;
2267 x86_64) cpu_type=i386 arch=x86_64;;
800eeca4 2268 ia64) cpu_type=ia64 ;;
6f6ef0fa 2269 m6811|m6812|m68hc12) cpu_type=m68hc11 ;;
252b5132
RH
2270 m680[012346]0) cpu_type=m68k ;;
2271 m68008) cpu_type=m68k ;;
2272 m683??) cpu_type=m68k ;;
2273 m5200) cpu_type=m68k ;;
2274 m8*) cpu_type=m88k ;;
2275 mips*el) cpu_type=mips endian=little ;;
2276 mips*) cpu_type=mips endian=big ;;
041dd5a9
ILT
2277 pjl*) cpu_type=pj endian=little ;;
2278 pj*) cpu_type=pj endian=big ;;
252b5132
RH
2279 powerpcle*) cpu_type=ppc endian=little ;;
2280 powerpc*) cpu_type=ppc endian=big ;;
2281 rs6000*) cpu_type=ppc ;;
2282 sparclite*) cpu_type=sparc arch=sparclite ;;
2283 sparclet*) cpu_type=sparc arch=sparclet ;;
2284 sparc64*) cpu_type=sparc arch=v9-64 ;;
2285 sparc86x*) cpu_type=sparc arch=sparc86x ;;
2286 sparc*) cpu_type=sparc arch=sparclite ;; # ??? See tc-sparc.c.
2287 v850*) cpu_type=v850 ;;
2288 *) cpu_type=${cpu} ;;
2289 esac
2290
2291 if test ${this_target} = $target ; then
2292 target_cpu_type=${cpu_type}
2293 elif test ${target_cpu_type} != ${cpu_type} ; then
2294 continue
2295 fi
2296
2297 generic_target=${cpu_type}-$vendor-$os
2298 dev=no
2299 bfd_gas=no
2300 em=generic
2301
2302 # assign object format
2303 case ${generic_target} in
2304 a29k-*-coff) fmt=coff ;;
2305 a29k-amd-udi) fmt=coff ;;
2306 a29k-amd-ebmon) fmt=coff ;;
2307 a29k-nyu-sym1) fmt=coff ;;
5f68c319 2308 a29k-*-rtems*) fmt=coff ;;
252b5132
RH
2309 a29k-*-vxworks*) fmt=coff ;;
2310
2311 alpha*-*-*vms*) fmt=evax ;;
2312 alpha*-*-netware*) fmt=ecoff ;;
2313 alpha*-*-openbsd*) fmt=ecoff ;;
2314 alpha*-*-osf*) fmt=ecoff ;;
2315 alpha*-*-linuxecoff*) fmt=ecoff ;;
2316 alpha*-*-linux-gnu*) fmt=elf em=linux ;;
2317 alpha*-*-netbsd*) fmt=elf em=nbsd ;;
2318
2319 arc-*-elf*) fmt=elf bfd_gas=yes ;;
2320
2321 arm-*-aout) fmt=aout ;;
2322 arm-*-coff | thumb-*-coff) fmt=coff ;;
5f68c319 2323 arm-*-rtems | thumb-*-rtems) fmt=elf ;;
252b5132 2324 arm-*-elf | thumb-*-elf) fmt=elf ;;
0decc840 2325 arm*-*-conix*) fmt=elf ;;
252b5132 2326 arm-*-linux*aout*) fmt=aout em=linux ;;
222f8079
PB
2327 arm*-*-linux-gnu* | arm*-*-uclinux*)
2328 fmt=elf em=linux ;;
c1e73230 2329 arm-*-netbsd*) fmt=aout em=nbsd ;;
252b5132
RH
2330 arm-*-oabi | thumb-*-oabi) fmt=elf ;;
2331 arm-epoc-pe | thumb-epoc-pe) fmt=coff em=epoc-pe ;;
c1e73230 2332 arm-*-wince) fmt=coff em=wince-pe ;;
252b5132
RH
2333 arm-*-pe | thumb-*-pe) fmt=coff em=pe ;;
2334 arm-*-riscix*) fmt=aout em=riscix ;;
2335
adde6300
AM
2336 avr-*-*) fmt=elf bfd_gas=yes ;;
2337
3bcbcc3d
HPN
2338 cris-*-*) fmt=multi bfd_gas=yes ;;
2339
252b5132
RH
2340 d10v-*-*) fmt=elf bfd_gas=yes ;;
2341 d30v-*-*) fmt=elf bfd_gas=yes ;;
2342
2343
2344 fr30-*-*) fmt=elf bfd_gas=yes ;;
2345
ad1079af
AM
2346 hppa-*-linux-gnu*) case ${cpu} in
2347 hppa*64*)
2348 fmt=elf em=hppalinux64;;
2349 hppa*)
2350 fmt=elf em=linux;;
2351 esac ;;
252b5132
RH
2352 hppa-*-*elf*) fmt=elf em=hppa ;;
2353 hppa-*-lites*) fmt=elf em=hppa ;;
2354 hppa-*-osf*) fmt=som em=hppa ;;
2355 hppa-*-rtems*) fmt=elf em=hppa ;;
ad1079af 2356 hppa-*-hpux11*) case ${cpu} in
c9e10a08 2357 hppa*64*)
ad1079af 2358 fmt=elf em=hppa64 ;;
c9e10a08 2359 hppa*)
ad1079af
AM
2360 fmt=som em=hppa ;;
2361 esac ;;
252b5132
RH
2362 hppa-*-hpux*) fmt=som em=hppa ;;
2363 hppa-*-mpeix*) fmt=som em=hppa ;;
2364 hppa-*-bsd*) fmt=som em=hppa ;;
2365 hppa-*-hiux*) fmt=som em=hppa ;;
2366
5f68c319 2367 h8300-*-rtems*) fmt=coff ;;
252b5132
RH
2368 h8300-*-coff) fmt=coff ;;
2369
5b93d8bb 2370 i370-*-elf* | i370-*-linux*) fmt=elf ;;
252b5132
RH
2371 i386-ibm-aix*) fmt=coff em=i386aix ;;
2372 i386-sequent-bsd*) fmt=aout em=dynix bfd_gas=yes ;;
2373 i386-*-beospe*) fmt=coff em=pe bfd_gas=yes ;;
2374 i386-*-beoself* | i386-*-beos*) fmt=elf bfd_gas=yes ;;
2375 i386-*-bsd*) fmt=aout em=386bsd ;;
2376 i386-*-netbsd0.8) fmt=aout em=386bsd ;;
2377 i386-*-netbsd*) fmt=aout em=nbsd bfd_gas=yes;;
2378 i386-*-openbsd*) fmt=aout em=nbsd bfd_gas=yes;;
2379 i386-*-linux*aout* | i386-*-linuxoldld) fmt=aout em=linux ;;
2380 i386-*-linux*coff*) fmt=coff em=linux ;;
2381 i386-*-linux-gnu*) fmt=elf em=linux bfd_gas=yes ;;
a735d1cd 2382 x86_64-*-linux-gnu*) fmt=elf em=linux bfd_gas=yes ;;
252b5132 2383 i386-*-lynxos*) fmt=coff em=lynx ;;
fc997f4b 2384 i386-*-sysv[45]* | i386-*-solaris* | i386-*-elf)
252b5132 2385 fmt=elf bfd_gas=yes ;;
f98fd99f 2386 i386-*-freebsdaout* | i386-*-freebsd[12].* | i386-*-freebsd[12])
008960a5
ILT
2387 fmt=aout em=386bsd ;;
2388 i386-*-freebsd*) fmt=elf bfd_gas=yes ;;
252b5132
RH
2389 i386-*-coff | i386-*-sysv* | i386-*-sco3.2v5*coff | i386-*-isc*)
2390 fmt=coff ;;
2391 i386-*-sco3.2v5*) fmt=elf
2392 if test ${this_target} = $target; then
2393 cat >> confdefs.h <<\EOF
2394#define SCO_ELF 1
2395EOF
2396
2397 fi
2398 ;;
2399 i386-*-sco3.2*) fmt=coff ;;
2400 i386-*-vsta) fmt=aout ;;
2401 i386-*-msdosdjgpp* | i386-*-go32* | i386-go32-rtems*)
349a994c 2402 fmt=coff em=go32 bfd_gas=yes
56385375
L
2403 cat >> confdefs.h <<\EOF
2404#define STRICTCOFF 1
2405EOF
2406
2407 ;;
53f3de98 2408 i386-*-rtemself*) fmt=elf ;;
252b5132
RH
2409 i386-*-rtems*) fmt=coff ;;
2410 i386-*-gnu*) fmt=elf ;;
2411 i386-*-mach*)
2412 fmt=aout em=mach bfd_gas=yes ;;
2413 i386-*-msdos*) fmt=aout ;;
2414 i386-*-moss*) fmt=elf ;;
c1e73230 2415 i386-*-pe) fmt=coff em=pe bfd_gas=yes ;;
252b5132 2416 i386-*-cygwin*) fmt=coff em=pe bfd_gas=yes ;;
9750fcc5 2417 i386-*-interix*) fmt=coff em=interix bfd_gas=yes ;;
252b5132 2418 i386-*-mingw32*) fmt=coff em=pe bfd_gas=yes ;;
c1e73230 2419 i386-*-*nt*) fmt=coff em=pe bfd_gas=yes ;;
29fe79d3 2420 i386-*-vxworks*) fmt=aout ;;
59ff2774 2421 i386-*-chaos) fmt=elf ;;
aa8c34c3
JE
2422 i860-stardent-sysv4* | i860-stardent-elf*)
2423 fmt=elf bfd_gas=yes endian=little
2424 echo "configure: warning: GAS support for ${generic_target} is preliminary and a work in progress" 1>&2 ;;
252b5132
RH
2425 i960-*-bout) fmt=bout ;;
2426 i960-*-coff) fmt=coff em=ic960 ;;
2427 i960-*-rtems*) fmt=coff em=ic960 ;;
2428 i960-*-nindy*) fmt=bout ;;
2429 i960-*-vxworks4*) fmt=bout ;;
2430 i960-*-vxworks5.0) fmt=bout ;;
2431 i960-*-vxworks5.*) fmt=coff em=ic960 ;;
2432 i960-*-vxworks*) fmt=bout ;;
bedf545c 2433 i960-*-elf*) fmt=elf ;;
252b5132 2434
800eeca4
JW
2435 ia64-*-elf*) fmt=elf ;;
2436 ia64-*-linux-gnu*) fmt=elf em=linux ;;
44f5c83a 2437 ia64-*-hpux*) fmt=elf em=hpux ;;
800eeca4 2438
252b5132
RH
2439 m32r-*-*) fmt=elf bfd_gas=yes ;;
2440
60bcf0fa
NC
2441 m68hc11-*-*|m6811-*-*|m68hc12-*-*|m6812-*-*)fmt=elf bfd_gas=yes ;;
2442
252b5132
RH
2443 m68k-*-vxworks* | m68k-ericsson-ose | m68k-*-sunos*)
2444 fmt=aout em=sun3 ;;
2445 m68k-motorola-sysv*) fmt=coff em=delta ;;
2446 m68k-bull-sysv3*) fmt=coff em=dpx2 ;;
2447 m68k-apollo-*) fmt=coff em=apollo ;;
2448 m68k-*-sysv4*) # must be before -sysv*
2449 fmt=elf em=svr4 ;;
2450 m68k-*-elf*) fmt=elf ;;
2451 m68k-*-coff | m68k-*-sysv* | m68k-*-rtems*)
2452 fmt=coff ;;
2453 m68k-*-hpux*) fmt=hp300 em=hp300 ;;
2454 m68k-*-linux*aout*) fmt=aout em=linux ;;
2455 m68k-*-linux-gnu*) fmt=elf em=linux ;;
2456 m68k-*-gnu*) fmt=elf ;;
2457 m68k-*-lynxos*) fmt=coff em=lynx ;;
2458 m68k-*-netbsd*) fmt=aout em=nbsd bfd_gas=yes ;;
2459 m68k-*-openbsd*) fmt=aout em=nbsd bfd_gas=yes ;;
2460 m68k-apple-aux*) fmt=coff em=aux ;;
2461 m68k-*-psos*) fmt=elf em=psos;;
2462
2463 m88k-motorola-sysv3*) fmt=coff em=delt88 ;;
2464 m88k-*-coff*) fmt=coff ;;
2465
2466 mcore-*-elf) fmt=elf bfd_gas=yes ;;
2467 mcore-*-pe) fmt=coff em=pe bfd_gas=yes ;;
2468
2469 # don't change em like *-*-bsd does
2470 mips-dec-netbsd*) fmt=elf endian=little ;;
2471 mips-dec-openbsd*) fmt=elf endian=little ;;
2472 mips-dec-bsd*) fmt=aout endian=little ;;
2473 mips-sony-bsd*) fmt=ecoff ;;
2474 mips-*-bsd*) { echo "configure: error: Unknown vendor for mips-bsd configuration." 1>&2; exit 1; } ;;
2475 mips-*-ultrix*) fmt=ecoff endian=little ;;
2476 mips-*-osf*) fmt=ecoff endian=little ;;
2477 mips-*-ecoff*) fmt=ecoff ;;
2478 mips-*-ecoff*) fmt=ecoff ;;
056350c6 2479 mips-*-pe*) fmt=coff endian=little em=pe ;;
252b5132
RH
2480 mips-*-irix6*) fmt=elf ;;
2481 mips-*-irix5*) fmt=elf ;;
2482 mips-*-irix*) fmt=ecoff ;;
2483 mips-*-lnews*) fmt=ecoff em=lnews ;;
2484 mips-*-riscos*) fmt=ecoff ;;
906fac54 2485 mips-*-sysv4*MP*) fmt=elf em=tmips ;;
252b5132
RH
2486 mips-*-sysv*) fmt=ecoff ;;
2487 mips-*-elf* | mips-*-rtems* | mips-*-linux-gnu* | mips-*-gnu* | mips-*-openbsd*)
2488 fmt=elf ;;
2489 mips-*-vxworks*) fmt=elf
2490 cat >> confdefs.h <<\EOF
2491#define MIPS_STABS_ELF 1
2492EOF
2493
2494 ;;
2495 mn10200-*-*) fmt=elf bfd_gas=yes ;;
2496 mn10300-*-*) fmt=elf bfd_gas=yes ;;
041dd5a9 2497 pj*) fmt=elf ;;
252b5132
RH
2498 ppc-*-pe | ppc-*-cygwin* | ppc-*-winnt*)
2499 fmt=coff em=pe ;;
2500 ppc-*-aix*) fmt=coff ;;
2501 ppc-*-beos*) fmt=coff ;;
2502 ppc-*-*bsd* | ppc-*-elf* | ppc-*-eabi* | ppc-*-sysv4*)
2503 fmt=elf ;;
2504 ppc-*-linux-gnu*) fmt=elf
2505 case "$endian" in
2506 big) ;;
2507 *) { echo "configure: error: GNU/Linux must be configured big endian" 1>&2; exit 1; } ;;
2508 esac
2509 ;;
2510 ppc-*-solaris*) fmt=elf
2511 if test ${this_target} = $target; then
2512 cat >> confdefs.h <<\EOF
2513#define TARGET_SOLARIS_COMMENT 1
2514EOF
2515
2516 fi
2517 if test x${endian} = xbig; then
2518 { echo "configure: error: Solaris must be configured little endian" 1>&2; exit 1; }
2519 fi
2520 ;;
2521 ppc-*-rtems*) fmt=elf ;;
2522 ppc-*-macos* | ppc-*-mpw*)
2523 fmt=coff em=macos ;;
2524 ppc-*-netware*) fmt=elf em=ppcnw ;;
e4a86f6f 2525 ppc-*-vxworks*) fmt=elf ;;
252b5132 2526
d07ed2cd 2527 sh-*-linux*) fmt=elf em=linux ;;
252b5132
RH
2528 sh-*-elf*) fmt=elf ;;
2529 sh-*-coff*) fmt=coff ;;
056350c6 2530 sh-*-pe*) fmt=coff em=pe bfd_gas=yes;;
53f3de98 2531 sh-*-rtemself*) fmt=elf ;;
252b5132
RH
2532 sh-*-rtems*) fmt=coff ;;
2533
2534 ns32k-pc532-mach* | ns32k-pc532-ux*) fmt=aout em=pc532mach ;;
2535 ns32k-pc532-netbsd* | ns32k-pc532-lites*) fmt=aout em=nbsd532 ;;
2536 ns32k-pc532-openbsd*) fmt=aout em=nbsd532 ;;
2537
5f68c319
NC
2538 sparc-*-rtemsaout*) fmt=aout ;;
2539 sparc-*-rtemself*) fmt=elf ;;
2540 sparc-*-rtems*) fmt=elf ;;
252b5132
RH
2541 sparc-*-sunos4*) fmt=aout em=sun3 ;;
2542 sparc-*-aout | sparc*-*-vxworks*)
2543 fmt=aout em=sparcaout ;;
2544 sparc-*-coff) fmt=coff ;;
2545 sparc-*-linux*aout*) fmt=aout em=linux ;;
2546 sparc-*-linux-gnu*) fmt=elf em=linux ;;
2547 sparc-*-lynxos*) fmt=coff em=lynx ;;
2548 sparc-fujitsu-none) fmt=aout ;;
2549 sparc-*-elf | sparc-*-sysv4* | sparc-*-solaris*)
2550 fmt=elf ;;
98e5953c
JL
2551 sparc-*-netbsd*) em=nbsd bfd_gas=yes
2552 case ${cpu} in
2553 sparc) case ${os} in
2554 *elf*) fmt=elf ;;
2555 *) fmt=aout ;;
2556 esac ;;
2557 sparc64) fmt=elf ;;
2558 esac
2559 ;;
252b5132
RH
2560 sparc-*-openbsd*) fmt=aout em=nbsd ;;
2561
2562 strongarm-*-coff) fmt=coff ;;
2563 strongarm-*-elf) fmt=elf ;;
077b8428
NC
2564 xscale-*-coff) fmt=coff ;;
2565 xscale-*-elf) fmt=elf ;;
252b5132
RH
2566
2567 tic30-*-*aout*) fmt=aout bfd_gas=yes ;;
2568 tic30-*-*coff*) fmt=coff bfd_gas=yes ;;
39bec121
TW
2569 tic54x-*-* | c54x*-*-*)
2570 fmt=coff bfd_gas=yes need_libm=yes;;
252b5132
RH
2571 tic80-*-*) fmt=coff ;;
2572
2573 v850-*-*) fmt=elf bfd_gas=yes ;;
2574 v850e-*-*) fmt=elf bfd_gas=yes ;;
2575 v850ea-*-*) fmt=elf bfd_gas=yes ;;
2576
2577 vax-*-bsd* | vax-*-ultrix*)
2578 fmt=aout ;;
2579 vax-*-vms) fmt=vms ;;
2580
2581
2582 z8k-*-coff | z8k-*-sim)
2583 fmt=coff ;;
2584
2585 w65-*-*) fmt=coff ;;
2586
2587 *-*-aout | *-*-scout)
2588 fmt=aout ;;
2589 *-*-nindy*)
2590 fmt=bout ;;
2591 *-*-bsd*)
2592 fmt=aout em=sun3 ;;
2593 *-*-generic) fmt=generic ;;
2594 *-*-xray | *-*-hms) fmt=coff ;;
2595 *-*-sim) fmt=coff ;;
2596 *-*-elf | *-*-sysv4* | *-*-solaris*)
2597 echo "configure: warning: GAS support for ${generic_target} is incomplete." 1>&2
2598 fmt=elf dev=yes ;;
2599 *-*-vxworks) fmt=aout ;;
2600 *-*-netware) fmt=elf ;;
2601 esac
2602
2603 if test ${this_target} = $target ; then
2604 endian_def=
2605 if test x${endian} = xbig; then
2606 endian_def=1
2607 elif test x${endian} = xlittle; then
2608 endian_def=0
2609 fi
2610 if test x${endian_def} != x; then
2611 cat >> confdefs.h <<EOF
2612#define TARGET_BYTES_BIG_ENDIAN $endian_def
2613EOF
2614
2615 fi
2616 fi
2617
2618 case ${cpu_type}-${fmt} in
2619 alpha*-*) bfd_gas=yes ;;
2620 arm-*) bfd_gas=yes ;;
2621 # not yet
2622 # i386-aout) bfd_gas=preferred ;;
800eeca4 2623 ia64*-*) bfd_gas=yes ;;
252b5132
RH
2624 mips-*) bfd_gas=yes ;;
2625 ns32k-*) bfd_gas=yes ;;
2626 ppc-*) bfd_gas=yes ;;
2627 sparc-*) bfd_gas=yes ;;
2628 strongarm-*) bfd_gas=yes ;;
a735d1cd 2629 xscale-*) bfd_gas=yes ;;
252b5132
RH
2630 *-elf) bfd_gas=yes ;;
2631 *-ecoff) bfd_gas=yes ;;
2632 *-som) bfd_gas=yes ;;
4c63da97
AM
2633 #enable bfd for coff and aout to allow testing if a bfd target is
2634 #the primary target, but not for coff or aout as the primary target
4ca72d38 2635 i386-coff) if test x${primary_bfd_gas} = xyes; then bfd_gas=yes; fi ;;
4c63da97 2636 i386-aout) if test x${primary_bfd_gas} = xyes; then bfd_gas=yes; fi ;;
252b5132
RH
2637 *) ;;
2638 esac
2639
2640# Other random stuff.
2641
2642 # Do we need the opcodes library?
2643 case ${cpu_type} in
2644 vax | i386 | tic30)
2645 ;;
2646
2647 *)
2648 need_opcodes=yes
2649
2650 case "${enable_shared}" in
2651 yes) shared_opcodes=true ;;
2652 *opcodes*) shared_opcodes=true ;;
2653 *) shared_opcodes=false ;;
2654 esac
2655 if test "${shared_opcodes}" = "true"; then
2656 # A shared libopcodes must be linked against libbfd.
2657 need_bfd=yes
2658 fi
2659 ;;
2660 esac
2661
2662 # Any other special object files needed ?
2663 case ${cpu_type} in
2664 fr30 | m32r)
2665 using_cgen=yes
2666 ;;
2667
2668 m68k)
2669 case ${extra_objects} in
2670 *m68k-parse.o*) ;;
2671 *) extra_objects="$extra_objects m68k-parse.o" ;;
2672 esac
2673 ;;
2674
2675 mips)
2676 echo ${extra_objects} | grep -s "itbl-parse.o"
2677 if test $? -ne 0 ; then
2678 extra_objects="$extra_objects itbl-parse.o"
2679 fi
2680
2681 echo ${extra_objects} | grep -s "itbl-lex.o"
2682 if test $? -ne 0 ; then
2683 extra_objects="$extra_objects itbl-lex.o"
2684 fi
2685
2686 echo ${extra_objects} | grep -s "itbl-ops.o"
2687 if test $? -ne 0 ; then
2688 extra_objects="$extra_objects itbl-ops.o"
2689 fi
2690 ;;
2691
b96d3a20
JH
2692 i386)
2693 if test $this_target = $target ; then
2694 cat >> confdefs.h <<EOF
2695#define DEFAULT_ARCH "${arch}"
2696EOF
2697
2698 fi
2699 ;;
252b5132
RH
2700 sparc)
2701 if test $this_target = $target ; then
2702 cat >> confdefs.h <<EOF
2703#define DEFAULT_ARCH "${arch}"
2704EOF
2705
2706 fi
2707 ;;
2708 *)
2709 ;;
2710 esac
2711
2712 if test $using_cgen = yes ; then
2713 case "x${extra_objects}" in
2714 *cgen.o*) ;;
2715 *) extra_objects="$extra_objects cgen.o" ;;
2716 esac
2717 fi
2718
2719# See if we really can support this configuration with the emulation code.
2720
2721 if test $this_target = $target ; then
2722 primary_bfd_gas=$bfd_gas
2723 obj_format=$fmt
2724 te_file=$em
2725
2726 if test $bfd_gas = no ; then
2727 # Can't support other configurations this way.
2728 break
2729 fi
2730 elif test $bfd_gas = no ; then
2731 # Can't support this configuration.
2732 break
2733 fi
2734
2735# From target name and format, produce a list of supported emulations.
2736
2737 case ${generic_target}-${fmt} in
2738 mips-*-irix5*-*) emulation="mipsbelf mipslelf mipself mipsbecoff mipslecoff mipsecoff" ;;
2739 mips-*-linux-gnu*-*) case "$endian" in
2740 big) emulation="mipsbelf mipslelf mipself mipsbecoff mipslecoff mipsecoff" ;;
2741 *) emulation="mipslelf mipsbelf mipself mipslecoff mipsbecoff mipsecoff" ;;
2742 esac ;;
2743 mips-*-lnews*-ecoff) ;;
2744 mips-*-*-ecoff) case "$endian" in
2745 big) emulation="mipsbecoff mipslecoff mipsecoff" ;;
2746 *) emulation="mipslecoff mipsbecoff mipsecoff" ;;
2747 esac ;;
2748 mips-*-*-elf) case "$endian" in
2749 big) emulation="mipsbelf mipslelf mipself" ;;
2750 *) emulation="mipslelf mipsbelf mipself" ;;
252b5132 2751 esac ;;
906fac54 2752 mips-*-sysv4*MP*-*) emulation="mipsbelf mipslelf mipself mipsbecoff mipslecoff mipsecoff" ;;
119caedd
L
2753 # i386-pc-pe-coff != i386-pc-coff.
2754 i386-*-pe-coff) ;;
4c63da97
AM
2755 # Uncommenting the next line will turn on support for i386 AOUT
2756 # for the default linux configuration
2757 # i386-*-linux*-elf) emulation="i386elf i386aout" ;;
2758 #
2759 i386-*-aout) emulation="i386aout" ;;
4ca72d38 2760 i386-*-coff) emulation="i386coff" ;;
4c63da97 2761 i386-*-elf) emulation="i386elf" ;;
3bcbcc3d
HPN
2762
2763 # Always all formats. Having a.out first makes it the default.
2764 cris-*-*) emulation="crisaout criself" ;;
252b5132
RH
2765 esac
2766
2767 emulations="$emulations $emulation"
2768
2769done
2770
15886821
L
2771# Turn on all targets if possible
2772if test ${all_targets} = "yes"; then
2773 case ${target_cpu_type} in
2774 i386)
2775 case ${obj_format} in
2776 aout)
2777 emulations="$emulations i386coff i386elf"
2778 ;;
2779 coff)
2780 emulations="$emulations i386aout i386elf"
2781 ;;
2782 elf)
2783 emulations="$emulations i386aout i386coff"
2784 ;;
2785 esac
2786 ;;
2787 esac
2788fi
2789
252b5132
RH
2790# Assign floating point type. Most processors with FP support
2791# IEEE FP. On those that don't support FP at all, usually IEEE
2792# is emulated.
2793case ${target_cpu} in
2794 vax | tahoe ) atof=${target_cpu} ;;
2795 *) atof=ieee ;;
2796esac
2797
2798case "${obj_format}" in
2799 "") { echo "configure: error: GAS does not know what format to use for target ${target}" 1>&2; exit 1; } ;;
2800esac
2801
2802# Unfortunately the cpu in cpu-opc.h file isn't always $(TARGET_CPU).
2803cgen_cpu_prefix=""
2804if test $using_cgen = yes ; then
2805 case ${target_cpu} in
2806 *) cgen_cpu_prefix=${target_cpu} ;;
2807 esac
2808
2809 cat >> confdefs.h <<\EOF
2810#define USING_CGEN 1
2811EOF
2812
2813fi
2814
2815
2816if test ! -r ${srcdir}/config/tc-${target_cpu_type}.c; then
2817 { echo "configure: error: GAS does not support target CPU ${target_cpu_type}" 1>&2; exit 1; }
2818fi
2819
2820if test ! -r ${srcdir}/config/obj-${obj_format}.c; then
2821 { echo "configure: error: GAS does not have support for object file format ${obj_format}" 1>&2; exit 1; }
2822fi
2823
2824case ${user_bfd_gas}-${primary_bfd_gas} in
2825 yes-yes | no-no)
2826 # We didn't override user's choice.
2827 ;;
2828 no-yes)
2829 echo "configure: warning: Use of BFD is required for ${target}; overriding config options." 1>&2
2830 ;;
2831 no-preferred)
2832 primary_bfd_gas=no
2833 ;;
2834 *-preferred)
2835 primary_bfd_gas=yes
2836 ;;
2837 yes-*)
2838 primary_bfd_gas=yes
2839 ;;
2840 -*)
2841 # User specified nothing.
2842 ;;
2843esac
2844
2845# Some COFF configurations want these random other flags set.
2846case ${obj_format} in
2847 coff)
2848 case ${target_cpu_type} in
2849 i386) cat >> confdefs.h <<\EOF
2850#define I386COFF 1
2851EOF
2852 ;;
2853 m68k) cat >> confdefs.h <<\EOF
2854#define M68KCOFF 1
2855EOF
2856 ;;
2857 m88k) cat >> confdefs.h <<\EOF
2858#define M88KCOFF 1
2859EOF
2860 ;;
2861 esac
2862 ;;
2863esac
2864
2865# Getting this done right is going to be a bitch. Each configuration specified
2866# with --enable-targets=... should be checked for environment, format, cpu, and
2867# bfd_gas setting.
2868#
2869# For each configuration, the necessary object file support code must be linked
2870# in. This might be only one, it might be up to four. The necessary emulation
2871# code needs to be provided, too.
2872#
2873# And then there's "--enable-targets=all"....
2874#
2875# For now, just always do it for MIPS ELF or ECOFF configurations. Sigh.
2876
2877formats="${obj_format}"
2878emfiles=""
2879EMULATIONS=""
2880_gas_uniq_list="$emulations"
2881_gas_uniq_newlist=""
2882for _gas_uniq_i in _gas_uniq_dummy $_gas_uniq_list ; do
2883 case $_gas_uniq_i in
2884 _gas_uniq_dummy) ;;
2885 *) case " $_gas_uniq_newlist " in
2886 *" $_gas_uniq_i "*) ;;
2887 *) _gas_uniq_newlist="$_gas_uniq_newlist $_gas_uniq_i" ;;
2888 esac ;;
2889 esac
2890done
2891emulations=$_gas_uniq_newlist
2892
2893for em in . $emulations ; do
2894 case $em in
2895 .) continue ;;
2896 mipsbelf | mipslelf)
2897 fmt=elf file=mipself ;;
2898 mipsbecoff | mipslecoff)
2899 fmt=ecoff file=mipsecoff ;;
0aa5d426
HPN
2900 *coff)
2901 fmt=coff file=$em ;;
2902 *aout)
2903 fmt=aout file=$em ;;
2904 *elf)
2905 fmt=elf file=$em ;;
252b5132
RH
2906 esac
2907 formats="$formats $fmt"
2908 emfiles="$emfiles e-$file.o"
2909 EMULATIONS="$EMULATIONS &$em,"
2910done
2911_gas_uniq_list="$formats"
2912_gas_uniq_newlist=""
2913for _gas_uniq_i in _gas_uniq_dummy $_gas_uniq_list ; do
2914 case $_gas_uniq_i in
2915 _gas_uniq_dummy) ;;
2916 *) case " $_gas_uniq_newlist " in
2917 *" $_gas_uniq_i "*) ;;
2918 *) _gas_uniq_newlist="$_gas_uniq_newlist $_gas_uniq_i" ;;
2919 esac ;;
2920 esac
2921done
2922formats=$_gas_uniq_newlist
2923
2924_gas_uniq_list="$emfiles"
2925_gas_uniq_newlist=""
2926for _gas_uniq_i in _gas_uniq_dummy $_gas_uniq_list ; do
2927 case $_gas_uniq_i in
2928 _gas_uniq_dummy) ;;
2929 *) case " $_gas_uniq_newlist " in
2930 *" $_gas_uniq_i "*) ;;
2931 *) _gas_uniq_newlist="$_gas_uniq_newlist $_gas_uniq_i" ;;
2932 esac ;;
2933 esac
2934done
2935emfiles=$_gas_uniq_newlist
2936
2937if test `set . $formats ; shift ; echo $#` -gt 1 ; then
2938 for fmt in $formats ; do
2939 case $fmt in
2940 aout) cat >> confdefs.h <<\EOF
2941#define OBJ_MAYBE_AOUT 1
2942EOF
2943 ;;
2944 bout) cat >> confdefs.h <<\EOF
2945#define OBJ_MAYBE_BOUT 1
2946EOF
2947 ;;
2948 coff) cat >> confdefs.h <<\EOF
2949#define OBJ_MAYBE_COFF 1
2950EOF
2951 ;;
2952 ecoff) cat >> confdefs.h <<\EOF
2953#define OBJ_MAYBE_ECOFF 1
2954EOF
2955 ;;
2956 elf) cat >> confdefs.h <<\EOF
2957#define OBJ_MAYBE_ELF 1
2958EOF
2959 ;;
2960 generic) cat >> confdefs.h <<\EOF
2961#define OBJ_MAYBE_GENERIC 1
2962EOF
2963 ;;
2964 hp300) cat >> confdefs.h <<\EOF
2965#define OBJ_MAYBE_HP300 1
2966EOF
2967 ;;
2968 ieee) cat >> confdefs.h <<\EOF
2969#define OBJ_MAYBE_IEEE 1
2970EOF
2971 ;;
2972 som) cat >> confdefs.h <<\EOF
2973#define OBJ_MAYBE_SOM 1
2974EOF
2975 ;;
2976 vms) cat >> confdefs.h <<\EOF
2977#define OBJ_MAYBE_VMS 1
2978EOF
2979 ;;
2980 esac
2981 extra_objects="$extra_objects obj-$fmt.o"
2982 done
2983 obj_format=multi
2984fi
2985if test `set . $emfiles ; shift ; echo $#` -gt 0 ; then
252b5132 2986 DEFAULT_EMULATION=`set . $emulations ; echo $2`
4ca72d38
AM
2987 # e-mips* has more than one emulation per file, e-i386* has just one at the
2988 # moment. If only one emulation is specified, then don't define
2989 # USE_EMULATIONS or include any of the e-files as they will only be bloat.
2990 case "${obj_format}${emfiles}" in
2991 multi* | *mips*)
4ca72d38
AM
2992 extra_objects="$extra_objects $emfiles"
2993 cat >> confdefs.h <<\EOF
252b5132
RH
2994#define USE_EMULATIONS 1
2995EOF
4ca72d38
AM
2996 ;;
2997 esac
252b5132
RH
2998fi
2999
3000cat >> confdefs.h <<EOF
3001#define EMULATIONS $EMULATIONS
3002EOF
3003
3004cat >> confdefs.h <<EOF
3005#define DEFAULT_EMULATION "$DEFAULT_EMULATION"
3006EOF
3007
3008
3009case ${primary_bfd_gas}-${target_cpu_type}-${obj_format} in
3010 yes-*-coff) need_bfd=yes ;;
3011 no-*-coff) need_bfd=yes
3012 cat >> confdefs.h <<\EOF
3013#define MANY_SEGMENTS 1
3014EOF
3015 ;;
3016esac
3017
3018reject_dev_configs=yes
3019
3020case ${reject_dev_configs}-${dev} in
3021 yes-yes) # Oops.
3022 { echo "configure: error: GAS does not support the ${generic_target} configuration." 1>&2; exit 1; }
3023 ;;
3024esac
3025
3026
3027
3028
3029
3030
3031
3032case "${primary_bfd_gas}" in
3033 yes) cat >> confdefs.h <<\EOF
3034#define BFD_ASSEMBLER 1
3035EOF
3036
3037 need_bfd=yes ;;
3038esac
3039
3040# do we need the opcodes library?
3041case "${need_opcodes}" in
3042yes)
3043 OPCODES_LIB=../opcodes/libopcodes.la
3044 ;;
3045esac
3046
3047case "${need_bfd}" in
3048yes)
3049 BFDLIB=../bfd/libbfd.la
3050 ALL_OBJ_DEPS="$ALL_OBJ_DEPS ../bfd/bfd.h"
3051 ;;
3052esac
3053
3054
3055
3056
3057
3058
3059cat >> confdefs.h <<EOF
3060#define TARGET_ALIAS "${target_alias}"
3061EOF
3062
3063cat >> confdefs.h <<EOF
3064#define TARGET_CANONICAL "${target}"
3065EOF
3066
3067cat >> confdefs.h <<EOF
3068#define TARGET_CPU "${target_cpu}"
3069EOF
3070
3071cat >> confdefs.h <<EOF
3072#define TARGET_VENDOR "${target_vendor}"
3073EOF
3074
3075cat >> confdefs.h <<EOF
3076#define TARGET_OS "${target_os}"
3077EOF
3078
3079
3080# Extract the first word of "gcc", so it can be a program name with args.
3081set dummy gcc; ac_word=$2
3082echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
b96d3a20 3083echo "configure:3084: checking for $ac_word" >&5
a2d91340 3084if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
252b5132
RH
3085 echo $ac_n "(cached) $ac_c" 1>&6
3086else
3087 if test -n "$CC"; then
3088 ac_cv_prog_CC="$CC" # Let the user override the test.
3089else
3090 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":"
3091 ac_dummy="$PATH"
3092 for ac_dir in $ac_dummy; do
3093 test -z "$ac_dir" && ac_dir=.
3094 if test -f $ac_dir/$ac_word; then
3095 ac_cv_prog_CC="gcc"
3096 break
3097 fi
3098 done
3099 IFS="$ac_save_ifs"
3100fi
3101fi
3102CC="$ac_cv_prog_CC"
3103if test -n "$CC"; then
3104 echo "$ac_t""$CC" 1>&6
3105else
3106 echo "$ac_t""no" 1>&6
3107fi
3108
3109if test -z "$CC"; then
3110 # Extract the first word of "cc", so it can be a program name with args.
3111set dummy cc; ac_word=$2
3112echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
b96d3a20 3113echo "configure:3114: checking for $ac_word" >&5
a2d91340 3114if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
252b5132
RH
3115 echo $ac_n "(cached) $ac_c" 1>&6
3116else
3117 if test -n "$CC"; then
3118 ac_cv_prog_CC="$CC" # Let the user override the test.
3119else
3120 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":"
3121 ac_prog_rejected=no
3122 ac_dummy="$PATH"
3123 for ac_dir in $ac_dummy; do
3124 test -z "$ac_dir" && ac_dir=.
3125 if test -f $ac_dir/$ac_word; then
3126 if test "$ac_dir/$ac_word" = "/usr/ucb/cc"; then
3127 ac_prog_rejected=yes
3128 continue
3129 fi
3130 ac_cv_prog_CC="cc"
3131 break
3132 fi
3133 done
3134 IFS="$ac_save_ifs"
3135if test $ac_prog_rejected = yes; then
3136 # We found a bogon in the path, so make sure we never use it.
3137 set dummy $ac_cv_prog_CC
3138 shift
3139 if test $# -gt 0; then
3140 # We chose a different compiler from the bogus one.
3141 # However, it has the same basename, so the bogon will be chosen
3142 # first if we set CC to just the basename; use the full file name.
3143 shift
3144 set dummy "$ac_dir/$ac_word" "$@"
3145 shift
3146 ac_cv_prog_CC="$@"
3147 fi
3148fi
3149fi
3150fi
3151CC="$ac_cv_prog_CC"
3152if test -n "$CC"; then
3153 echo "$ac_t""$CC" 1>&6
3154else
3155 echo "$ac_t""no" 1>&6
3156fi
3157
3158 if test -z "$CC"; then
3159 case "`uname -s`" in
a2d91340 3160 *win32* | *WIN32*)
252b5132
RH
3161 # Extract the first word of "cl", so it can be a program name with args.
3162set dummy cl; ac_word=$2
3163echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
b96d3a20 3164echo "configure:3165: checking for $ac_word" >&5
a2d91340 3165if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
252b5132
RH
3166 echo $ac_n "(cached) $ac_c" 1>&6
3167else
3168 if test -n "$CC"; then
3169 ac_cv_prog_CC="$CC" # Let the user override the test.
3170else
3171 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":"
3172 ac_dummy="$PATH"
3173 for ac_dir in $ac_dummy; do
3174 test -z "$ac_dir" && ac_dir=.
3175 if test -f $ac_dir/$ac_word; then
3176 ac_cv_prog_CC="cl"
3177 break
3178 fi
3179 done
3180 IFS="$ac_save_ifs"
3181fi
3182fi
3183CC="$ac_cv_prog_CC"
3184if test -n "$CC"; then
3185 echo "$ac_t""$CC" 1>&6
3186else
3187 echo "$ac_t""no" 1>&6
3188fi
3189 ;;
3190 esac
3191 fi
3192 test -z "$CC" && { echo "configure: error: no acceptable cc found in \$PATH" 1>&2; exit 1; }
3193fi
3194
a2d91340 3195echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6
b96d3a20 3196echo "configure:3197: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5
252b5132
RH
3197
3198ac_ext=c
3199# CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.
3200ac_cpp='$CPP $CPPFLAGS'
3201ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5'
3202ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5'
3203cross_compiling=$ac_cv_prog_cc_cross
3204
3205cat > conftest.$ac_ext << EOF
3206
b96d3a20 3207#line 3208 "configure"
252b5132
RH
3208#include "confdefs.h"
3209
3210main(){return(0);}
3211EOF
b96d3a20 3212if { (eval echo configure:3213: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
252b5132
RH
3213 ac_cv_prog_cc_works=yes
3214 # If we can't run a trivial program, we are probably using a cross compiler.
3215 if (./conftest; exit) 2>/dev/null; then
3216 ac_cv_prog_cc_cross=no
3217 else
3218 ac_cv_prog_cc_cross=yes
3219 fi
3220else
3221 echo "configure: failed program was:" >&5
3222 cat conftest.$ac_ext >&5
3223 ac_cv_prog_cc_works=no
3224fi
3225rm -fr conftest*
3226ac_ext=c
3227# CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.
3228ac_cpp='$CPP $CPPFLAGS'
3229ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5'
3230ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5'
3231cross_compiling=$ac_cv_prog_cc_cross
3232
3233echo "$ac_t""$ac_cv_prog_cc_works" 1>&6
3234if test $ac_cv_prog_cc_works = no; then
3235 { echo "configure: error: installation or configuration problem: C compiler cannot create executables." 1>&2; exit 1; }
3236fi
a2d91340 3237echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6
b96d3a20 3238echo "configure:3239: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5
252b5132
RH
3239echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6
3240cross_compiling=$ac_cv_prog_cc_cross
3241
3242echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6
b96d3a20 3243echo "configure:3244: checking whether we are using GNU C" >&5
a2d91340 3244if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then
252b5132
RH
3245 echo $ac_n "(cached) $ac_c" 1>&6
3246else
3247 cat > conftest.c <<EOF
3248#ifdef __GNUC__
3249 yes;
3250#endif
3251EOF
b96d3a20 3252if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:3253: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then
252b5132
RH
3253 ac_cv_prog_gcc=yes
3254else
3255 ac_cv_prog_gcc=no
3256fi
3257fi
3258
3259echo "$ac_t""$ac_cv_prog_gcc" 1>&6
3260
3261if test $ac_cv_prog_gcc = yes; then
3262 GCC=yes
3263else
3264 GCC=
3265fi
3266
3267ac_test_CFLAGS="${CFLAGS+set}"
3268ac_save_CFLAGS="$CFLAGS"
3269CFLAGS=
3270echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6
b96d3a20 3271echo "configure:3272: checking whether ${CC-cc} accepts -g" >&5
a2d91340 3272if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then
252b5132
RH
3273 echo $ac_n "(cached) $ac_c" 1>&6
3274else
3275 echo 'void f(){}' > conftest.c
3276if test -z "`${CC-cc} -g -c conftest.c 2>&1`"; then
3277 ac_cv_prog_cc_g=yes
3278else
3279 ac_cv_prog_cc_g=no
3280fi
3281rm -f conftest*
3282
3283fi
3284
3285echo "$ac_t""$ac_cv_prog_cc_g" 1>&6
3286if test "$ac_test_CFLAGS" = set; then
3287 CFLAGS="$ac_save_CFLAGS"
3288elif test $ac_cv_prog_cc_g = yes; then
3289 if test "$GCC" = yes; then
3290 CFLAGS="-g -O2"
3291 else
3292 CFLAGS="-g"
3293 fi
3294else
3295 if test "$GCC" = yes; then
3296 CFLAGS="-O2"
3297 else
3298 CFLAGS=
3299 fi
3300fi
3301
3302
3303for ac_prog in 'bison -y' byacc
3304do
3305# Extract the first word of "$ac_prog", so it can be a program name with args.
3306set dummy $ac_prog; ac_word=$2
3307echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
b96d3a20 3308echo "configure:3309: checking for $ac_word" >&5
a2d91340 3309if eval "test \"`echo '$''{'ac_cv_prog_YACC'+set}'`\" = set"; then
252b5132
RH
3310 echo $ac_n "(cached) $ac_c" 1>&6
3311else
3312 if test -n "$YACC"; then
3313 ac_cv_prog_YACC="$YACC" # Let the user override the test.
3314else
3315 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":"
3316 ac_dummy="$PATH"
3317 for ac_dir in $ac_dummy; do
3318 test -z "$ac_dir" && ac_dir=.
3319 if test -f $ac_dir/$ac_word; then
3320 ac_cv_prog_YACC="$ac_prog"
3321 break
3322 fi
3323 done
3324 IFS="$ac_save_ifs"
3325fi
3326fi
3327YACC="$ac_cv_prog_YACC"
3328if test -n "$YACC"; then
3329 echo "$ac_t""$YACC" 1>&6
3330else
3331 echo "$ac_t""no" 1>&6
3332fi
3333
3334test -n "$YACC" && break
3335done
3336test -n "$YACC" || YACC="yacc"
3337
3338echo $ac_n "checking how to run the C preprocessor""... $ac_c" 1>&6
b96d3a20 3339echo "configure:3340: checking how to run the C preprocessor" >&5
252b5132
RH
3340# On Suns, sometimes $CPP names a directory.
3341if test -n "$CPP" && test -d "$CPP"; then
3342 CPP=
3343fi
3344if test -z "$CPP"; then
a2d91340 3345if eval "test \"`echo '$''{'ac_cv_prog_CPP'+set}'`\" = set"; then
252b5132
RH
3346 echo $ac_n "(cached) $ac_c" 1>&6
3347else
3348 # This must be in double quotes, not single quotes, because CPP may get
3349 # substituted into the Makefile and "${CC-cc}" will confuse make.
3350 CPP="${CC-cc} -E"
3351 # On the NeXT, cc -E runs the code through the compiler's parser,
3352 # not just through cpp.
3353 cat > conftest.$ac_ext <<EOF
b96d3a20 3354#line 3355 "configure"
252b5132
RH
3355#include "confdefs.h"
3356#include <assert.h>
3357Syntax Error
3358EOF
3359ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
b96d3a20 3360{ (eval echo configure:3361: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
252b5132
RH
3361ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
3362if test -z "$ac_err"; then
3363 :
3364else
3365 echo "$ac_err" >&5
3366 echo "configure: failed program was:" >&5
3367 cat conftest.$ac_ext >&5
3368 rm -rf conftest*
3369 CPP="${CC-cc} -E -traditional-cpp"
3370 cat > conftest.$ac_ext <<EOF
b96d3a20 3371#line 3372 "configure"
252b5132
RH
3372#include "confdefs.h"
3373#include <assert.h>
3374Syntax Error
3375EOF
3376ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
b96d3a20 3377{ (eval echo configure:3378: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
252b5132
RH
3378ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
3379if test -z "$ac_err"; then
3380 :
3381else
3382 echo "$ac_err" >&5
3383 echo "configure: failed program was:" >&5
3384 cat conftest.$ac_ext >&5
3385 rm -rf conftest*
3386 CPP="${CC-cc} -nologo -E"
3387 cat > conftest.$ac_ext <<EOF
b96d3a20 3388#line 3389 "configure"
252b5132
RH
3389#include "confdefs.h"
3390#include <assert.h>
3391Syntax Error
3392EOF
3393ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
b96d3a20 3394{ (eval echo configure:3395: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
252b5132
RH
3395ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
3396if test -z "$ac_err"; then
3397 :
3398else
3399 echo "$ac_err" >&5
3400 echo "configure: failed program was:" >&5
3401 cat conftest.$ac_ext >&5
3402 rm -rf conftest*
3403 CPP=/lib/cpp
3404fi
3405rm -f conftest*
3406fi
3407rm -f conftest*
3408fi
3409rm -f conftest*
3410 ac_cv_prog_CPP="$CPP"
3411fi
3412 CPP="$ac_cv_prog_CPP"
3413else
3414 ac_cv_prog_CPP="$CPP"
3415fi
3416echo "$ac_t""$CPP" 1>&6
3417
3418missing_dir=`cd $ac_aux_dir && pwd`
3419for ac_prog in flex lex
3420do
3421# Extract the first word of "$ac_prog", so it can be a program name with args.
3422set dummy $ac_prog; ac_word=$2
3423echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
b96d3a20 3424echo "configure:3425: checking for $ac_word" >&5
a2d91340 3425if eval "test \"`echo '$''{'ac_cv_prog_LEX'+set}'`\" = set"; then
252b5132
RH
3426 echo $ac_n "(cached) $ac_c" 1>&6
3427else
3428 if test -n "$LEX"; then
3429 ac_cv_prog_LEX="$LEX" # Let the user override the test.
3430else
3431 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":"
3432 ac_dummy="$PATH"
3433 for ac_dir in $ac_dummy; do
3434 test -z "$ac_dir" && ac_dir=.
3435 if test -f $ac_dir/$ac_word; then
3436 ac_cv_prog_LEX="$ac_prog"
3437 break
3438 fi
3439 done
3440 IFS="$ac_save_ifs"
3441fi
3442fi
3443LEX="$ac_cv_prog_LEX"
3444if test -n "$LEX"; then
3445 echo "$ac_t""$LEX" 1>&6
3446else
3447 echo "$ac_t""no" 1>&6
3448fi
3449
3450test -n "$LEX" && break
3451done
3452test -n "$LEX" || LEX=""$missing_dir/missing flex""
3453
3454# Extract the first word of "flex", so it can be a program name with args.
3455set dummy flex; ac_word=$2
3456echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
b96d3a20 3457echo "configure:3458: checking for $ac_word" >&5
a2d91340 3458if eval "test \"`echo '$''{'ac_cv_prog_LEX'+set}'`\" = set"; then
252b5132
RH
3459 echo $ac_n "(cached) $ac_c" 1>&6
3460else
3461 if test -n "$LEX"; then
3462 ac_cv_prog_LEX="$LEX" # Let the user override the test.
3463else
3464 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":"
3465 ac_dummy="$PATH"
3466 for ac_dir in $ac_dummy; do
3467 test -z "$ac_dir" && ac_dir=.
3468 if test -f $ac_dir/$ac_word; then
3469 ac_cv_prog_LEX="flex"
3470 break
3471 fi
3472 done
3473 IFS="$ac_save_ifs"
3474 test -z "$ac_cv_prog_LEX" && ac_cv_prog_LEX="lex"
3475fi
3476fi
3477LEX="$ac_cv_prog_LEX"
3478if test -n "$LEX"; then
3479 echo "$ac_t""$LEX" 1>&6
3480else
3481 echo "$ac_t""no" 1>&6
3482fi
3483
3484if test -z "$LEXLIB"
3485then
3486 case "$LEX" in
3487 flex*) ac_lib=fl ;;
3488 *) ac_lib=l ;;
3489 esac
3490 echo $ac_n "checking for yywrap in -l$ac_lib""... $ac_c" 1>&6
b96d3a20 3491echo "configure:3492: checking for yywrap in -l$ac_lib" >&5
a2d91340
AC
3492ac_lib_var=`echo $ac_lib'_'yywrap | sed 'y%./+-%__p_%'`
3493if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
252b5132
RH
3494 echo $ac_n "(cached) $ac_c" 1>&6
3495else
3496 ac_save_LIBS="$LIBS"
3497LIBS="-l$ac_lib $LIBS"
3498cat > conftest.$ac_ext <<EOF
b96d3a20 3499#line 3500 "configure"
252b5132
RH
3500#include "confdefs.h"
3501/* Override any gcc2 internal prototype to avoid an error. */
3502/* We use char because int might match the return type of a gcc2
3503 builtin and then its argument prototype would still apply. */
3504char yywrap();
3505
3506int main() {
3507yywrap()
3508; return 0; }
3509EOF
b96d3a20 3510if { (eval echo configure:3511: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
252b5132
RH
3511 rm -rf conftest*
3512 eval "ac_cv_lib_$ac_lib_var=yes"
3513else
3514 echo "configure: failed program was:" >&5
3515 cat conftest.$ac_ext >&5
3516 rm -rf conftest*
3517 eval "ac_cv_lib_$ac_lib_var=no"
3518fi
3519rm -f conftest*
3520LIBS="$ac_save_LIBS"
3521
3522fi
3523if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
3524 echo "$ac_t""yes" 1>&6
3525 LEXLIB="-l$ac_lib"
3526else
3527 echo "$ac_t""no" 1>&6
3528fi
3529
3530fi
3531
3532echo $ac_n "checking lex output file root""... $ac_c" 1>&6
b96d3a20 3533echo "configure:3534: checking lex output file root" >&5
a2d91340 3534if eval "test \"`echo '$''{'ac_cv_prog_lex_root'+set}'`\" = set"; then
252b5132
RH
3535 echo $ac_n "(cached) $ac_c" 1>&6
3536else
3537 # The minimal lex program is just a single line: %%. But some broken lexes
3538# (Solaris, I think it was) want two %% lines, so accommodate them.
3539echo '%%
3540%%' | $LEX
3541if test -f lex.yy.c; then
3542 ac_cv_prog_lex_root=lex.yy
3543elif test -f lexyy.c; then
3544 ac_cv_prog_lex_root=lexyy
3545else
3546 { echo "configure: error: cannot find output from $LEX; giving up" 1>&2; exit 1; }
3547fi
3548fi
3549
3550echo "$ac_t""$ac_cv_prog_lex_root" 1>&6
3551LEX_OUTPUT_ROOT=$ac_cv_prog_lex_root
3552
3553echo $ac_n "checking whether yytext is a pointer""... $ac_c" 1>&6
b96d3a20 3554echo "configure:3555: checking whether yytext is a pointer" >&5
a2d91340 3555if eval "test \"`echo '$''{'ac_cv_prog_lex_yytext_pointer'+set}'`\" = set"; then
252b5132
RH
3556 echo $ac_n "(cached) $ac_c" 1>&6
3557else
3558 # POSIX says lex can declare yytext either as a pointer or an array; the
3559# default is implementation-dependent. Figure out which it is, since
3560# not all implementations provide the %pointer and %array declarations.
3561ac_cv_prog_lex_yytext_pointer=no
3562echo 'extern char *yytext;' >>$LEX_OUTPUT_ROOT.c
3563ac_save_LIBS="$LIBS"
3564LIBS="$LIBS $LEXLIB"
3565cat > conftest.$ac_ext <<EOF
b96d3a20 3566#line 3567 "configure"
252b5132
RH
3567#include "confdefs.h"
3568`cat $LEX_OUTPUT_ROOT.c`
3569int main() {
3570
3571; return 0; }
3572EOF
b96d3a20 3573if { (eval echo configure:3574: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
252b5132
RH
3574 rm -rf conftest*
3575 ac_cv_prog_lex_yytext_pointer=yes
3576else
3577 echo "configure: failed program was:" >&5
3578 cat conftest.$ac_ext >&5
3579fi
3580rm -f conftest*
3581LIBS="$ac_save_LIBS"
3582rm -f "${LEX_OUTPUT_ROOT}.c"
3583
3584fi
3585
3586echo "$ac_t""$ac_cv_prog_lex_yytext_pointer" 1>&6
3587if test $ac_cv_prog_lex_yytext_pointer = yes; then
3588 cat >> confdefs.h <<\EOF
3589#define YYTEXT_POINTER 1
3590EOF
3591
3592fi
3593
3594
3595ALL_LINGUAS=
ac48eca1
AO
3596# Extract the first word of "ranlib", so it can be a program name with args.
3597set dummy ranlib; ac_word=$2
3598echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
b96d3a20 3599echo "configure:3600: checking for $ac_word" >&5
ac48eca1
AO
3600if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then
3601 echo $ac_n "(cached) $ac_c" 1>&6
3602else
3603 if test -n "$RANLIB"; then
3604 ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test.
3605else
3606 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":"
3607 ac_dummy="$PATH"
3608 for ac_dir in $ac_dummy; do
3609 test -z "$ac_dir" && ac_dir=.
3610 if test -f $ac_dir/$ac_word; then
3611 ac_cv_prog_RANLIB="ranlib"
3612 break
3613 fi
3614 done
3615 IFS="$ac_save_ifs"
3616 test -z "$ac_cv_prog_RANLIB" && ac_cv_prog_RANLIB=":"
3617fi
3618fi
3619RANLIB="$ac_cv_prog_RANLIB"
3620if test -n "$RANLIB"; then
3621 echo "$ac_t""$RANLIB" 1>&6
3622else
3623 echo "$ac_t""no" 1>&6
3624fi
3625
252b5132 3626echo $ac_n "checking for ANSI C header files""... $ac_c" 1>&6
b96d3a20 3627echo "configure:3628: checking for ANSI C header files" >&5
a2d91340 3628if eval "test \"`echo '$''{'ac_cv_header_stdc'+set}'`\" = set"; then
252b5132
RH
3629 echo $ac_n "(cached) $ac_c" 1>&6
3630else
3631 cat > conftest.$ac_ext <<EOF
b96d3a20 3632#line 3633 "configure"
252b5132
RH
3633#include "confdefs.h"
3634#include <stdlib.h>
3635#include <stdarg.h>
3636#include <string.h>
3637#include <float.h>
3638EOF
3639ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
b96d3a20 3640{ (eval echo configure:3641: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
252b5132
RH
3641ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
3642if test -z "$ac_err"; then
3643 rm -rf conftest*
3644 ac_cv_header_stdc=yes
3645else
3646 echo "$ac_err" >&5
3647 echo "configure: failed program was:" >&5
3648 cat conftest.$ac_ext >&5
3649 rm -rf conftest*
3650 ac_cv_header_stdc=no
3651fi
3652rm -f conftest*
3653
3654if test $ac_cv_header_stdc = yes; then
3655 # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
3656cat > conftest.$ac_ext <<EOF
b96d3a20 3657#line 3658 "configure"
252b5132
RH
3658#include "confdefs.h"
3659#include <string.h>
3660EOF
3661if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
3662 egrep "memchr" >/dev/null 2>&1; then
3663 :
3664else
3665 rm -rf conftest*
3666 ac_cv_header_stdc=no
3667fi
3668rm -f conftest*
3669
3670fi
3671
3672if test $ac_cv_header_stdc = yes; then
3673 # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
3674cat > conftest.$ac_ext <<EOF
b96d3a20 3675#line 3676 "configure"
252b5132
RH
3676#include "confdefs.h"
3677#include <stdlib.h>
3678EOF
3679if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
3680 egrep "free" >/dev/null 2>&1; then
3681 :
3682else
3683 rm -rf conftest*
3684 ac_cv_header_stdc=no
3685fi
3686rm -f conftest*
3687
3688fi
3689
3690if test $ac_cv_header_stdc = yes; then
3691 # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi.
3692if test "$cross_compiling" = yes; then
3693 :
3694else
3695 cat > conftest.$ac_ext <<EOF
b96d3a20 3696#line 3697 "configure"
252b5132
RH
3697#include "confdefs.h"
3698#include <ctype.h>
3699#define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
3700#define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))
3701#define XOR(e, f) (((e) && !(f)) || (!(e) && (f)))
3702int main () { int i; for (i = 0; i < 256; i++)
3703if (XOR (islower (i), ISLOWER (i)) || toupper (i) != TOUPPER (i)) exit(2);
3704exit (0); }
3705
3706EOF
b96d3a20 3707if { (eval echo configure:3708: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
252b5132
RH
3708then
3709 :
3710else
3711 echo "configure: failed program was:" >&5
3712 cat conftest.$ac_ext >&5
3713 rm -fr conftest*
3714 ac_cv_header_stdc=no
3715fi
3716rm -fr conftest*
3717fi
3718
3719fi
3720fi
3721
3722echo "$ac_t""$ac_cv_header_stdc" 1>&6
3723if test $ac_cv_header_stdc = yes; then
3724 cat >> confdefs.h <<\EOF
3725#define STDC_HEADERS 1
3726EOF
3727
3728fi
3729
3730echo $ac_n "checking for working const""... $ac_c" 1>&6
b96d3a20 3731echo "configure:3732: checking for working const" >&5
a2d91340 3732if eval "test \"`echo '$''{'ac_cv_c_const'+set}'`\" = set"; then
252b5132
RH
3733 echo $ac_n "(cached) $ac_c" 1>&6
3734else
3735 cat > conftest.$ac_ext <<EOF
b96d3a20 3736#line 3737 "configure"
252b5132
RH
3737#include "confdefs.h"
3738
3739int main() {
3740
3741/* Ultrix mips cc rejects this. */
3742typedef int charset[2]; const charset x;
3743/* SunOS 4.1.1 cc rejects this. */
3744char const *const *ccp;
3745char **p;
3746/* NEC SVR4.0.2 mips cc rejects this. */
3747struct point {int x, y;};
3748static struct point const zero = {0,0};
3749/* AIX XL C 1.02.0.0 rejects this.
3750 It does not let you subtract one const X* pointer from another in an arm
3751 of an if-expression whose if-part is not a constant expression */
3752const char *g = "string";
3753ccp = &g + (g ? g-g : 0);
3754/* HPUX 7.0 cc rejects these. */
3755++ccp;
3756p = (char**) ccp;
3757ccp = (char const *const *) p;
3758{ /* SCO 3.2v4 cc rejects this. */
3759 char *t;
3760 char const *s = 0 ? (char *) 0 : (char const *) 0;
3761
3762 *t++ = 0;
3763}
3764{ /* Someone thinks the Sun supposedly-ANSI compiler will reject this. */
3765 int x[] = {25, 17};
3766 const int *foo = &x[0];
3767 ++foo;
3768}
3769{ /* Sun SC1.0 ANSI compiler rejects this -- but not the above. */
3770 typedef const int *iptr;
3771 iptr p = 0;
3772 ++p;
3773}
3774{ /* AIX XL C 1.02.0.0 rejects this saying
3775 "k.c", line 2.27: 1506-025 (S) Operand must be a modifiable lvalue. */
3776 struct s { int j; const int *ap[3]; };
3777 struct s *b; b->j = 5;
3778}
3779{ /* ULTRIX-32 V3.1 (Rev 9) vcc rejects this */
3780 const int foo = 10;
3781}
3782
3783; return 0; }
3784EOF
b96d3a20 3785if { (eval echo configure:3786: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
252b5132
RH
3786 rm -rf conftest*
3787 ac_cv_c_const=yes
3788else
3789 echo "configure: failed program was:" >&5
3790 cat conftest.$ac_ext >&5
3791 rm -rf conftest*
3792 ac_cv_c_const=no
3793fi
3794rm -f conftest*
3795fi
3796
3797echo "$ac_t""$ac_cv_c_const" 1>&6
3798if test $ac_cv_c_const = no; then
3799 cat >> confdefs.h <<\EOF
3800#define const
3801EOF
3802
3803fi
3804
3805echo $ac_n "checking for inline""... $ac_c" 1>&6
b96d3a20 3806echo "configure:3807: checking for inline" >&5
a2d91340 3807if eval "test \"`echo '$''{'ac_cv_c_inline'+set}'`\" = set"; then
252b5132
RH
3808 echo $ac_n "(cached) $ac_c" 1>&6
3809else
3810 ac_cv_c_inline=no
3811for ac_kw in inline __inline__ __inline; do
3812 cat > conftest.$ac_ext <<EOF
b96d3a20 3813#line 3814 "configure"
252b5132
RH
3814#include "confdefs.h"
3815
3816int main() {
a2d91340 3817} $ac_kw foo() {
252b5132
RH
3818; return 0; }
3819EOF
b96d3a20 3820if { (eval echo configure:3821: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
252b5132
RH
3821 rm -rf conftest*
3822 ac_cv_c_inline=$ac_kw; break
3823else
3824 echo "configure: failed program was:" >&5
3825 cat conftest.$ac_ext >&5
3826fi
3827rm -f conftest*
3828done
3829
3830fi
3831
3832echo "$ac_t""$ac_cv_c_inline" 1>&6
3833case "$ac_cv_c_inline" in
3834 inline | yes) ;;
3835 no) cat >> confdefs.h <<\EOF
3836#define inline
3837EOF
3838 ;;
3839 *) cat >> confdefs.h <<EOF
3840#define inline $ac_cv_c_inline
3841EOF
3842 ;;
3843esac
3844
3845echo $ac_n "checking for off_t""... $ac_c" 1>&6
b96d3a20 3846echo "configure:3847: checking for off_t" >&5
a2d91340 3847if eval "test \"`echo '$''{'ac_cv_type_off_t'+set}'`\" = set"; then
252b5132
RH
3848 echo $ac_n "(cached) $ac_c" 1>&6
3849else
3850 cat > conftest.$ac_ext <<EOF
b96d3a20 3851#line 3852 "configure"
252b5132
RH
3852#include "confdefs.h"
3853#include <sys/types.h>
3854#if STDC_HEADERS
3855#include <stdlib.h>
3856#include <stddef.h>
3857#endif
3858EOF
3859if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
3860 egrep "(^|[^a-zA-Z_0-9])off_t[^a-zA-Z_0-9]" >/dev/null 2>&1; then
3861 rm -rf conftest*
a2d91340 3862 ac_cv_type_off_t=yes
252b5132
RH
3863else
3864 rm -rf conftest*
a2d91340 3865 ac_cv_type_off_t=no
252b5132
RH
3866fi
3867rm -f conftest*
3868
3869fi
a2d91340
AC
3870echo "$ac_t""$ac_cv_type_off_t" 1>&6
3871if test $ac_cv_type_off_t = no; then
3872 cat >> confdefs.h <<\EOF
252b5132
RH
3873#define off_t long
3874EOF
3875
3876fi
3877
3878echo $ac_n "checking for size_t""... $ac_c" 1>&6
b96d3a20 3879echo "configure:3880: checking for size_t" >&5
a2d91340 3880if eval "test \"`echo '$''{'ac_cv_type_size_t'+set}'`\" = set"; then
252b5132
RH
3881 echo $ac_n "(cached) $ac_c" 1>&6
3882else
3883 cat > conftest.$ac_ext <<EOF
b96d3a20 3884#line 3885 "configure"
252b5132
RH
3885#include "confdefs.h"
3886#include <sys/types.h>
3887#if STDC_HEADERS
3888#include <stdlib.h>
3889#include <stddef.h>
3890#endif
3891EOF
3892if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
3893 egrep "(^|[^a-zA-Z_0-9])size_t[^a-zA-Z_0-9]" >/dev/null 2>&1; then
3894 rm -rf conftest*
a2d91340 3895 ac_cv_type_size_t=yes
252b5132
RH
3896else
3897 rm -rf conftest*
a2d91340 3898 ac_cv_type_size_t=no
252b5132
RH
3899fi
3900rm -f conftest*
3901
3902fi
a2d91340
AC
3903echo "$ac_t""$ac_cv_type_size_t" 1>&6
3904if test $ac_cv_type_size_t = no; then
3905 cat >> confdefs.h <<\EOF
252b5132
RH
3906#define size_t unsigned
3907EOF
3908
3909fi
3910
3911# The Ultrix 4.2 mips builtin alloca declared by alloca.h only works
3912# for constant arguments. Useless!
3913echo $ac_n "checking for working alloca.h""... $ac_c" 1>&6
b96d3a20 3914echo "configure:3915: checking for working alloca.h" >&5
a2d91340 3915if eval "test \"`echo '$''{'ac_cv_header_alloca_h'+set}'`\" = set"; then
252b5132
RH
3916 echo $ac_n "(cached) $ac_c" 1>&6
3917else
3918 cat > conftest.$ac_ext <<EOF
b96d3a20 3919#line 3920 "configure"
252b5132
RH
3920#include "confdefs.h"
3921#include <alloca.h>
3922int main() {
3923char *p = alloca(2 * sizeof(int));
3924; return 0; }
3925EOF
b96d3a20 3926if { (eval echo configure:3927: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
252b5132
RH
3927 rm -rf conftest*
3928 ac_cv_header_alloca_h=yes
3929else
3930 echo "configure: failed program was:" >&5
3931 cat conftest.$ac_ext >&5
3932 rm -rf conftest*
3933 ac_cv_header_alloca_h=no
3934fi
3935rm -f conftest*
3936fi
3937
3938echo "$ac_t""$ac_cv_header_alloca_h" 1>&6
3939if test $ac_cv_header_alloca_h = yes; then
3940 cat >> confdefs.h <<\EOF
3941#define HAVE_ALLOCA_H 1
3942EOF
3943
3944fi
3945
3946echo $ac_n "checking for alloca""... $ac_c" 1>&6
b96d3a20 3947echo "configure:3948: checking for alloca" >&5
a2d91340 3948if eval "test \"`echo '$''{'ac_cv_func_alloca_works'+set}'`\" = set"; then
252b5132
RH
3949 echo $ac_n "(cached) $ac_c" 1>&6
3950else
3951 cat > conftest.$ac_ext <<EOF
b96d3a20 3952#line 3953 "configure"
252b5132
RH
3953#include "confdefs.h"
3954
3955#ifdef __GNUC__
3956# define alloca __builtin_alloca
3957#else
3958# ifdef _MSC_VER
3959# include <malloc.h>
3960# define alloca _alloca
3961# else
3962# if HAVE_ALLOCA_H
3963# include <alloca.h>
3964# else
3965# ifdef _AIX
3966 #pragma alloca
3967# else
3968# ifndef alloca /* predefined by HP cc +Olibcalls */
3969char *alloca ();
3970# endif
3971# endif
3972# endif
3973# endif
3974#endif
3975
3976int main() {
3977char *p = (char *) alloca(1);
3978; return 0; }
3979EOF
b96d3a20 3980if { (eval echo configure:3981: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
252b5132
RH
3981 rm -rf conftest*
3982 ac_cv_func_alloca_works=yes
3983else
3984 echo "configure: failed program was:" >&5
3985 cat conftest.$ac_ext >&5
3986 rm -rf conftest*
3987 ac_cv_func_alloca_works=no
3988fi
3989rm -f conftest*
3990fi
3991
3992echo "$ac_t""$ac_cv_func_alloca_works" 1>&6
3993if test $ac_cv_func_alloca_works = yes; then
3994 cat >> confdefs.h <<\EOF
3995#define HAVE_ALLOCA 1
3996EOF
3997
3998fi
3999
4000if test $ac_cv_func_alloca_works = no; then
4001 # The SVR3 libPW and SVR4 libucb both contain incompatible functions
4002 # that cause trouble. Some versions do not even contain alloca or
4003 # contain a buggy version. If you still want to use their alloca,
4004 # use ar to extract alloca.o from them instead of compiling alloca.c.
4005 ALLOCA=alloca.${ac_objext}
4006 cat >> confdefs.h <<\EOF
4007#define C_ALLOCA 1
4008EOF
4009
4010
4011echo $ac_n "checking whether alloca needs Cray hooks""... $ac_c" 1>&6
b96d3a20 4012echo "configure:4013: checking whether alloca needs Cray hooks" >&5
a2d91340 4013if eval "test \"`echo '$''{'ac_cv_os_cray'+set}'`\" = set"; then
252b5132
RH
4014 echo $ac_n "(cached) $ac_c" 1>&6
4015else
4016 cat > conftest.$ac_ext <<EOF
b96d3a20 4017#line 4018 "configure"
252b5132
RH
4018#include "confdefs.h"
4019#if defined(CRAY) && ! defined(CRAY2)
4020webecray
4021#else
4022wenotbecray
4023#endif
4024
4025EOF
4026if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
4027 egrep "webecray" >/dev/null 2>&1; then
4028 rm -rf conftest*
4029 ac_cv_os_cray=yes
4030else
4031 rm -rf conftest*
4032 ac_cv_os_cray=no
4033fi
4034rm -f conftest*
4035
4036fi
4037
4038echo "$ac_t""$ac_cv_os_cray" 1>&6
4039if test $ac_cv_os_cray = yes; then
4040for ac_func in _getb67 GETB67 getb67; do
4041 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
b96d3a20 4042echo "configure:4043: checking for $ac_func" >&5
a2d91340 4043if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
252b5132
RH
4044 echo $ac_n "(cached) $ac_c" 1>&6
4045else
4046 cat > conftest.$ac_ext <<EOF
b96d3a20 4047#line 4048 "configure"
252b5132
RH
4048#include "confdefs.h"
4049/* System header to define __stub macros and hopefully few prototypes,
4050 which can conflict with char $ac_func(); below. */
4051#include <assert.h>
4052/* Override any gcc2 internal prototype to avoid an error. */
4053/* We use char because int might match the return type of a gcc2
4054 builtin and then its argument prototype would still apply. */
4055char $ac_func();
4056
4057int main() {
4058
4059/* The GNU C library defines this for functions which it implements
4060 to always fail with ENOSYS. Some functions are actually named
4061 something starting with __ and the normal name is an alias. */
4062#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
4063choke me
4064#else
a2d91340 4065$ac_func();
252b5132
RH
4066#endif
4067
4068; return 0; }
4069EOF
b96d3a20 4070if { (eval echo configure:4071: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
252b5132
RH
4071 rm -rf conftest*
4072 eval "ac_cv_func_$ac_func=yes"
4073else
4074 echo "configure: failed program was:" >&5
4075 cat conftest.$ac_ext >&5
4076 rm -rf conftest*
4077 eval "ac_cv_func_$ac_func=no"
4078fi
4079rm -f conftest*
4080fi
4081
4082if eval "test \"`echo '$ac_cv_func_'$ac_func`\" = yes"; then
4083 echo "$ac_t""yes" 1>&6
4084 cat >> confdefs.h <<EOF
4085#define CRAY_STACKSEG_END $ac_func
4086EOF
4087
4088 break
4089else
4090 echo "$ac_t""no" 1>&6
4091fi
4092
4093done
4094fi
4095
4096echo $ac_n "checking stack direction for C alloca""... $ac_c" 1>&6
b96d3a20 4097echo "configure:4098: checking stack direction for C alloca" >&5
a2d91340 4098if eval "test \"`echo '$''{'ac_cv_c_stack_direction'+set}'`\" = set"; then
252b5132
RH
4099 echo $ac_n "(cached) $ac_c" 1>&6
4100else
4101 if test "$cross_compiling" = yes; then
4102 ac_cv_c_stack_direction=0
4103else
4104 cat > conftest.$ac_ext <<EOF
b96d3a20 4105#line 4106 "configure"
252b5132
RH
4106#include "confdefs.h"
4107find_stack_direction ()
4108{
4109 static char *addr = 0;
4110 auto char dummy;
4111 if (addr == 0)
4112 {
4113 addr = &dummy;
4114 return find_stack_direction ();
4115 }
4116 else
4117 return (&dummy > addr) ? 1 : -1;
4118}
4119main ()
4120{
4121 exit (find_stack_direction() < 0);
4122}
4123EOF
b96d3a20 4124if { (eval echo configure:4125: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
252b5132
RH
4125then
4126 ac_cv_c_stack_direction=1
4127else
4128 echo "configure: failed program was:" >&5
4129 cat conftest.$ac_ext >&5
4130 rm -fr conftest*
4131 ac_cv_c_stack_direction=-1
4132fi
4133rm -fr conftest*
4134fi
4135
4136fi
4137
4138echo "$ac_t""$ac_cv_c_stack_direction" 1>&6
4139cat >> confdefs.h <<EOF
4140#define STACK_DIRECTION $ac_cv_c_stack_direction
4141EOF
4142
4143fi
4144
4145for ac_hdr in unistd.h
4146do
4147ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
4148echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
b96d3a20 4149echo "configure:4150: checking for $ac_hdr" >&5
a2d91340 4150if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
252b5132
RH
4151 echo $ac_n "(cached) $ac_c" 1>&6
4152else
4153 cat > conftest.$ac_ext <<EOF
b96d3a20 4154#line 4155 "configure"
252b5132
RH
4155#include "confdefs.h"
4156#include <$ac_hdr>
4157EOF
4158ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
b96d3a20 4159{ (eval echo configure:4160: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
252b5132
RH
4160ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
4161if test -z "$ac_err"; then
4162 rm -rf conftest*
4163 eval "ac_cv_header_$ac_safe=yes"
4164else
4165 echo "$ac_err" >&5
4166 echo "configure: failed program was:" >&5
4167 cat conftest.$ac_ext >&5
4168 rm -rf conftest*
4169 eval "ac_cv_header_$ac_safe=no"
4170fi
4171rm -f conftest*
4172fi
4173if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then
4174 echo "$ac_t""yes" 1>&6
4175 ac_tr_hdr=HAVE_`echo $ac_hdr | sed 'y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%'`
4176 cat >> confdefs.h <<EOF
4177#define $ac_tr_hdr 1
4178EOF
4179
4180else
4181 echo "$ac_t""no" 1>&6
4182fi
4183done
4184
4185for ac_func in getpagesize
4186do
4187echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
b96d3a20 4188echo "configure:4189: checking for $ac_func" >&5
a2d91340 4189if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
252b5132
RH
4190 echo $ac_n "(cached) $ac_c" 1>&6
4191else
4192 cat > conftest.$ac_ext <<EOF
b96d3a20 4193#line 4194 "configure"
252b5132
RH
4194#include "confdefs.h"
4195/* System header to define __stub macros and hopefully few prototypes,
4196 which can conflict with char $ac_func(); below. */
4197#include <assert.h>
4198/* Override any gcc2 internal prototype to avoid an error. */
4199/* We use char because int might match the return type of a gcc2
4200 builtin and then its argument prototype would still apply. */
4201char $ac_func();
4202
4203int main() {
4204
4205/* The GNU C library defines this for functions which it implements
4206 to always fail with ENOSYS. Some functions are actually named
4207 something starting with __ and the normal name is an alias. */
4208#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
4209choke me
4210#else
a2d91340 4211$ac_func();
252b5132
RH
4212#endif
4213
4214; return 0; }
4215EOF
b96d3a20 4216if { (eval echo configure:4217: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
252b5132
RH
4217 rm -rf conftest*
4218 eval "ac_cv_func_$ac_func=yes"
4219else
4220 echo "configure: failed program was:" >&5
4221 cat conftest.$ac_ext >&5
4222 rm -rf conftest*
4223 eval "ac_cv_func_$ac_func=no"
4224fi
4225rm -f conftest*
4226fi
4227
4228if eval "test \"`echo '$ac_cv_func_'$ac_func`\" = yes"; then
4229 echo "$ac_t""yes" 1>&6
4230 ac_tr_func=HAVE_`echo $ac_func | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`
4231 cat >> confdefs.h <<EOF
4232#define $ac_tr_func 1
4233EOF
4234
4235else
4236 echo "$ac_t""no" 1>&6
4237fi
4238done
4239
4240echo $ac_n "checking for working mmap""... $ac_c" 1>&6
b96d3a20 4241echo "configure:4242: checking for working mmap" >&5
a2d91340 4242if eval "test \"`echo '$''{'ac_cv_func_mmap_fixed_mapped'+set}'`\" = set"; then
252b5132
RH
4243 echo $ac_n "(cached) $ac_c" 1>&6
4244else
4245 if test "$cross_compiling" = yes; then
4246 ac_cv_func_mmap_fixed_mapped=no
4247else
4248 cat > conftest.$ac_ext <<EOF
b96d3a20 4249#line 4250 "configure"
252b5132
RH
4250#include "confdefs.h"
4251
4252/* Thanks to Mike Haertel and Jim Avera for this test.
4253 Here is a matrix of mmap possibilities:
4254 mmap private not fixed
4255 mmap private fixed at somewhere currently unmapped
4256 mmap private fixed at somewhere already mapped
4257 mmap shared not fixed
4258 mmap shared fixed at somewhere currently unmapped
4259 mmap shared fixed at somewhere already mapped
4260 For private mappings, we should verify that changes cannot be read()
4261 back from the file, nor mmap's back from the file at a different
4262 address. (There have been systems where private was not correctly
4263 implemented like the infamous i386 svr4.0, and systems where the
4264 VM page cache was not coherent with the filesystem buffer cache
4265 like early versions of FreeBSD and possibly contemporary NetBSD.)
4266 For shared mappings, we should conversely verify that changes get
4267 propogated back to all the places they're supposed to be.
4268
4269 Grep wants private fixed already mapped.
4270 The main things grep needs to know about mmap are:
4271 * does it exist and is it safe to write into the mmap'd area
4272 * how to use it (BSD variants) */
4273#include <sys/types.h>
4274#include <fcntl.h>
4275#include <sys/mman.h>
4276
4277/* This mess was copied from the GNU getpagesize.h. */
4278#ifndef HAVE_GETPAGESIZE
4279# ifdef HAVE_UNISTD_H
4280# include <unistd.h>
4281# endif
4282
4283/* Assume that all systems that can run configure have sys/param.h. */
4284# ifndef HAVE_SYS_PARAM_H
4285# define HAVE_SYS_PARAM_H 1
4286# endif
4287
4288# ifdef _SC_PAGESIZE
4289# define getpagesize() sysconf(_SC_PAGESIZE)
4290# else /* no _SC_PAGESIZE */
4291# ifdef HAVE_SYS_PARAM_H
4292# include <sys/param.h>
4293# ifdef EXEC_PAGESIZE
4294# define getpagesize() EXEC_PAGESIZE
4295# else /* no EXEC_PAGESIZE */
4296# ifdef NBPG
4297# define getpagesize() NBPG * CLSIZE
4298# ifndef CLSIZE
4299# define CLSIZE 1
4300# endif /* no CLSIZE */
4301# else /* no NBPG */
4302# ifdef NBPC
4303# define getpagesize() NBPC
4304# else /* no NBPC */
4305# ifdef PAGESIZE
4306# define getpagesize() PAGESIZE
4307# endif /* PAGESIZE */
4308# endif /* no NBPC */
4309# endif /* no NBPG */
4310# endif /* no EXEC_PAGESIZE */
4311# else /* no HAVE_SYS_PARAM_H */
4312# define getpagesize() 8192 /* punt totally */
4313# endif /* no HAVE_SYS_PARAM_H */
4314# endif /* no _SC_PAGESIZE */
4315
4316#endif /* no HAVE_GETPAGESIZE */
4317
4318#ifdef __cplusplus
4319extern "C" { void *malloc(unsigned); }
4320#else
4321char *malloc();
4322#endif
4323
4324int
4325main()
4326{
4327 char *data, *data2, *data3;
4328 int i, pagesize;
4329 int fd;
4330
4331 pagesize = getpagesize();
4332
4333 /*
4334 * First, make a file with some known garbage in it.
4335 */
4336 data = malloc(pagesize);
4337 if (!data)
4338 exit(1);
4339 for (i = 0; i < pagesize; ++i)
4340 *(data + i) = rand();
4341 umask(0);
4342 fd = creat("conftestmmap", 0600);
4343 if (fd < 0)
4344 exit(1);
4345 if (write(fd, data, pagesize) != pagesize)
4346 exit(1);
4347 close(fd);
4348
4349 /*
4350 * Next, try to mmap the file at a fixed address which
4351 * already has something else allocated at it. If we can,
4352 * also make sure that we see the same garbage.
4353 */
4354 fd = open("conftestmmap", O_RDWR);
4355 if (fd < 0)
4356 exit(1);
4357 data2 = malloc(2 * pagesize);
4358 if (!data2)
4359 exit(1);
4360 data2 += (pagesize - ((int) data2 & (pagesize - 1))) & (pagesize - 1);
4361 if (data2 != mmap(data2, pagesize, PROT_READ | PROT_WRITE,
4362 MAP_PRIVATE | MAP_FIXED, fd, 0L))
4363 exit(1);
4364 for (i = 0; i < pagesize; ++i)
4365 if (*(data + i) != *(data2 + i))
4366 exit(1);
4367
4368 /*
4369 * Finally, make sure that changes to the mapped area
4370 * do not percolate back to the file as seen by read().
4371 * (This is a bug on some variants of i386 svr4.0.)
4372 */
4373 for (i = 0; i < pagesize; ++i)
4374 *(data2 + i) = *(data2 + i) + 1;
4375 data3 = malloc(pagesize);
4376 if (!data3)
4377 exit(1);
4378 if (read(fd, data3, pagesize) != pagesize)
4379 exit(1);
4380 for (i = 0; i < pagesize; ++i)
4381 if (*(data + i) != *(data3 + i))
4382 exit(1);
4383 close(fd);
4384 unlink("conftestmmap");
4385 exit(0);
4386}
4387
4388EOF
b96d3a20 4389if { (eval echo configure:4390: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
252b5132
RH
4390then
4391 ac_cv_func_mmap_fixed_mapped=yes
4392else
4393 echo "configure: failed program was:" >&5
4394 cat conftest.$ac_ext >&5
4395 rm -fr conftest*
4396 ac_cv_func_mmap_fixed_mapped=no
4397fi
4398rm -fr conftest*
4399fi
4400
4401fi
4402
4403echo "$ac_t""$ac_cv_func_mmap_fixed_mapped" 1>&6
4404if test $ac_cv_func_mmap_fixed_mapped = yes; then
4405 cat >> confdefs.h <<\EOF
4406#define HAVE_MMAP 1
4407EOF
4408
4409fi
4410
4411
4412 for ac_hdr in argz.h limits.h locale.h nl_types.h malloc.h string.h \
4413unistd.h values.h sys/param.h
4414do
4415ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
4416echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
b96d3a20 4417echo "configure:4418: checking for $ac_hdr" >&5
a2d91340 4418if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
252b5132
RH
4419 echo $ac_n "(cached) $ac_c" 1>&6
4420else
4421 cat > conftest.$ac_ext <<EOF
b96d3a20 4422#line 4423 "configure"
252b5132
RH
4423#include "confdefs.h"
4424#include <$ac_hdr>
4425EOF
4426ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
b96d3a20 4427{ (eval echo configure:4428: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
252b5132
RH
4428ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
4429if test -z "$ac_err"; then
4430 rm -rf conftest*
4431 eval "ac_cv_header_$ac_safe=yes"
4432else
4433 echo "$ac_err" >&5
4434 echo "configure: failed program was:" >&5
4435 cat conftest.$ac_ext >&5
4436 rm -rf conftest*
4437 eval "ac_cv_header_$ac_safe=no"
4438fi
4439rm -f conftest*
4440fi
4441if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then
4442 echo "$ac_t""yes" 1>&6
4443 ac_tr_hdr=HAVE_`echo $ac_hdr | sed 'y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%'`
4444 cat >> confdefs.h <<EOF
4445#define $ac_tr_hdr 1
4446EOF
4447
4448else
4449 echo "$ac_t""no" 1>&6
4450fi
4451done
4452
4453 for ac_func in getcwd munmap putenv setenv setlocale strchr strcasecmp \
4454__argz_count __argz_stringify __argz_next
4455do
4456echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
b96d3a20 4457echo "configure:4458: checking for $ac_func" >&5
a2d91340 4458if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
252b5132
RH
4459 echo $ac_n "(cached) $ac_c" 1>&6
4460else
4461 cat > conftest.$ac_ext <<EOF
b96d3a20 4462#line 4463 "configure"
252b5132
RH
4463#include "confdefs.h"
4464/* System header to define __stub macros and hopefully few prototypes,
4465 which can conflict with char $ac_func(); below. */
4466#include <assert.h>
4467/* Override any gcc2 internal prototype to avoid an error. */
4468/* We use char because int might match the return type of a gcc2
4469 builtin and then its argument prototype would still apply. */
4470char $ac_func();
4471
4472int main() {
4473
4474/* The GNU C library defines this for functions which it implements
4475 to always fail with ENOSYS. Some functions are actually named
4476 something starting with __ and the normal name is an alias. */
4477#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
4478choke me
4479#else
a2d91340 4480$ac_func();
252b5132
RH
4481#endif
4482
4483; return 0; }
4484EOF
b96d3a20 4485if { (eval echo configure:4486: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
252b5132
RH
4486 rm -rf conftest*
4487 eval "ac_cv_func_$ac_func=yes"
4488else
4489 echo "configure: failed program was:" >&5
4490 cat conftest.$ac_ext >&5
4491 rm -rf conftest*
4492 eval "ac_cv_func_$ac_func=no"
4493fi
4494rm -f conftest*
4495fi
4496
4497if eval "test \"`echo '$ac_cv_func_'$ac_func`\" = yes"; then
4498 echo "$ac_t""yes" 1>&6
4499 ac_tr_func=HAVE_`echo $ac_func | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`
4500 cat >> confdefs.h <<EOF
4501#define $ac_tr_func 1
4502EOF
4503
4504else
4505 echo "$ac_t""no" 1>&6
4506fi
4507done
4508
4509
4510 if test "${ac_cv_func_stpcpy+set}" != "set"; then
4511 for ac_func in stpcpy
4512do
4513echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
b96d3a20 4514echo "configure:4515: checking for $ac_func" >&5
a2d91340 4515if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
252b5132
RH
4516 echo $ac_n "(cached) $ac_c" 1>&6
4517else
4518 cat > conftest.$ac_ext <<EOF
b96d3a20 4519#line 4520 "configure"
252b5132
RH
4520#include "confdefs.h"
4521/* System header to define __stub macros and hopefully few prototypes,
4522 which can conflict with char $ac_func(); below. */
4523#include <assert.h>
4524/* Override any gcc2 internal prototype to avoid an error. */
4525/* We use char because int might match the return type of a gcc2
4526 builtin and then its argument prototype would still apply. */
4527char $ac_func();
4528
4529int main() {
4530
4531/* The GNU C library defines this for functions which it implements
4532 to always fail with ENOSYS. Some functions are actually named
4533 something starting with __ and the normal name is an alias. */
4534#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
4535choke me
4536#else
a2d91340 4537$ac_func();
252b5132
RH
4538#endif
4539
4540; return 0; }
4541EOF
b96d3a20 4542if { (eval echo configure:4543: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
252b5132
RH
4543 rm -rf conftest*
4544 eval "ac_cv_func_$ac_func=yes"
4545else
4546 echo "configure: failed program was:" >&5
4547 cat conftest.$ac_ext >&5
4548 rm -rf conftest*
4549 eval "ac_cv_func_$ac_func=no"
4550fi
4551rm -f conftest*
4552fi
4553
4554if eval "test \"`echo '$ac_cv_func_'$ac_func`\" = yes"; then
4555 echo "$ac_t""yes" 1>&6
4556 ac_tr_func=HAVE_`echo $ac_func | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`
4557 cat >> confdefs.h <<EOF
4558#define $ac_tr_func 1
4559EOF
4560
4561else
4562 echo "$ac_t""no" 1>&6
4563fi
4564done
4565
4566 fi
4567 if test "${ac_cv_func_stpcpy}" = "yes"; then
4568 cat >> confdefs.h <<\EOF
4569#define HAVE_STPCPY 1
4570EOF
4571
4572 fi
4573
4574 if test $ac_cv_header_locale_h = yes; then
4575 echo $ac_n "checking for LC_MESSAGES""... $ac_c" 1>&6
b96d3a20 4576echo "configure:4577: checking for LC_MESSAGES" >&5
a2d91340 4577if eval "test \"`echo '$''{'am_cv_val_LC_MESSAGES'+set}'`\" = set"; then
252b5132
RH
4578 echo $ac_n "(cached) $ac_c" 1>&6
4579else
4580 cat > conftest.$ac_ext <<EOF
b96d3a20 4581#line 4582 "configure"
252b5132
RH
4582#include "confdefs.h"
4583#include <locale.h>
4584int main() {
4585return LC_MESSAGES
4586; return 0; }
4587EOF
b96d3a20 4588if { (eval echo configure:4589: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
252b5132
RH
4589 rm -rf conftest*
4590 am_cv_val_LC_MESSAGES=yes
4591else
4592 echo "configure: failed program was:" >&5
4593 cat conftest.$ac_ext >&5
4594 rm -rf conftest*
4595 am_cv_val_LC_MESSAGES=no
4596fi
4597rm -f conftest*
4598fi
4599
4600echo "$ac_t""$am_cv_val_LC_MESSAGES" 1>&6
4601 if test $am_cv_val_LC_MESSAGES = yes; then
4602 cat >> confdefs.h <<\EOF
4603#define HAVE_LC_MESSAGES 1
4604EOF
4605
4606 fi
4607 fi
4608 echo $ac_n "checking whether NLS is requested""... $ac_c" 1>&6
b96d3a20 4609echo "configure:4610: checking whether NLS is requested" >&5
252b5132
RH
4610 # Check whether --enable-nls or --disable-nls was given.
4611if test "${enable_nls+set}" = set; then
4612 enableval="$enable_nls"
4613 USE_NLS=$enableval
4614else
4615 USE_NLS=yes
4616fi
4617
4618 echo "$ac_t""$USE_NLS" 1>&6
4619
4620
4621 USE_INCLUDED_LIBINTL=no
4622
4623 if test "$USE_NLS" = "yes"; then
4624 cat >> confdefs.h <<\EOF
4625#define ENABLE_NLS 1
4626EOF
4627
4628 echo $ac_n "checking whether included gettext is requested""... $ac_c" 1>&6
b96d3a20 4629echo "configure:4630: checking whether included gettext is requested" >&5
252b5132
RH
4630 # Check whether --with-included-gettext or --without-included-gettext was given.
4631if test "${with_included_gettext+set}" = set; then
4632 withval="$with_included_gettext"
4633 nls_cv_force_use_gnu_gettext=$withval
4634else
4635 nls_cv_force_use_gnu_gettext=no
4636fi
4637
4638 echo "$ac_t""$nls_cv_force_use_gnu_gettext" 1>&6
4639
4640 nls_cv_use_gnu_gettext="$nls_cv_force_use_gnu_gettext"
4641 if test "$nls_cv_force_use_gnu_gettext" != "yes"; then
4642 nls_cv_header_intl=
4643 nls_cv_header_libgt=
4644 CATOBJEXT=NONE
4645
4646 ac_safe=`echo "libintl.h" | sed 'y%./+-%__p_%'`
4647echo $ac_n "checking for libintl.h""... $ac_c" 1>&6
b96d3a20 4648echo "configure:4649: checking for libintl.h" >&5
a2d91340 4649if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
252b5132
RH
4650 echo $ac_n "(cached) $ac_c" 1>&6
4651else
4652 cat > conftest.$ac_ext <<EOF
b96d3a20 4653#line 4654 "configure"
252b5132
RH
4654#include "confdefs.h"
4655#include <libintl.h>
4656EOF
4657ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
b96d3a20 4658{ (eval echo configure:4659: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
252b5132
RH
4659ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
4660if test -z "$ac_err"; then
4661 rm -rf conftest*
4662 eval "ac_cv_header_$ac_safe=yes"
4663else
4664 echo "$ac_err" >&5
4665 echo "configure: failed program was:" >&5
4666 cat conftest.$ac_ext >&5
4667 rm -rf conftest*
4668 eval "ac_cv_header_$ac_safe=no"
4669fi
4670rm -f conftest*
4671fi
4672if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then
4673 echo "$ac_t""yes" 1>&6
4674 echo $ac_n "checking for gettext in libc""... $ac_c" 1>&6
b96d3a20 4675echo "configure:4676: checking for gettext in libc" >&5
a2d91340 4676if eval "test \"`echo '$''{'gt_cv_func_gettext_libc'+set}'`\" = set"; then
252b5132
RH
4677 echo $ac_n "(cached) $ac_c" 1>&6
4678else
4679 cat > conftest.$ac_ext <<EOF
b96d3a20 4680#line 4681 "configure"
252b5132
RH
4681#include "confdefs.h"
4682#include <libintl.h>
4683int main() {
4684return (int) gettext ("")
4685; return 0; }
4686EOF
b96d3a20 4687if { (eval echo configure:4688: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
252b5132
RH
4688 rm -rf conftest*
4689 gt_cv_func_gettext_libc=yes
4690else
4691 echo "configure: failed program was:" >&5
4692 cat conftest.$ac_ext >&5
4693 rm -rf conftest*
4694 gt_cv_func_gettext_libc=no
4695fi
4696rm -f conftest*
4697fi
4698
4699echo "$ac_t""$gt_cv_func_gettext_libc" 1>&6
4700
4701 if test "$gt_cv_func_gettext_libc" != "yes"; then
4702 echo $ac_n "checking for bindtextdomain in -lintl""... $ac_c" 1>&6
b96d3a20 4703echo "configure:4704: checking for bindtextdomain in -lintl" >&5
a2d91340
AC
4704ac_lib_var=`echo intl'_'bindtextdomain | sed 'y%./+-%__p_%'`
4705if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
252b5132
RH
4706 echo $ac_n "(cached) $ac_c" 1>&6
4707else
4708 ac_save_LIBS="$LIBS"
4709LIBS="-lintl $LIBS"
4710cat > conftest.$ac_ext <<EOF
b96d3a20 4711#line 4712 "configure"
252b5132
RH
4712#include "confdefs.h"
4713/* Override any gcc2 internal prototype to avoid an error. */
4714/* We use char because int might match the return type of a gcc2
4715 builtin and then its argument prototype would still apply. */
4716char bindtextdomain();
4717
4718int main() {
4719bindtextdomain()
4720; return 0; }
4721EOF
b96d3a20 4722if { (eval echo configure:4723: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
252b5132
RH
4723 rm -rf conftest*
4724 eval "ac_cv_lib_$ac_lib_var=yes"
4725else
4726 echo "configure: failed program was:" >&5
4727 cat conftest.$ac_ext >&5
4728 rm -rf conftest*
4729 eval "ac_cv_lib_$ac_lib_var=no"
4730fi
4731rm -f conftest*
4732LIBS="$ac_save_LIBS"
4733
4734fi
4735if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
4736 echo "$ac_t""yes" 1>&6
4737 echo $ac_n "checking for gettext in libintl""... $ac_c" 1>&6
b96d3a20 4738echo "configure:4739: checking for gettext in libintl" >&5
a2d91340 4739if eval "test \"`echo '$''{'gt_cv_func_gettext_libintl'+set}'`\" = set"; then
252b5132
RH
4740 echo $ac_n "(cached) $ac_c" 1>&6
4741else
4742 cat > conftest.$ac_ext <<EOF
b96d3a20 4743#line 4744 "configure"
252b5132
RH
4744#include "confdefs.h"
4745
4746int main() {
4747return (int) gettext ("")
4748; return 0; }
4749EOF
b96d3a20 4750if { (eval echo configure:4751: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
252b5132
RH
4751 rm -rf conftest*
4752 gt_cv_func_gettext_libintl=yes
4753else
4754 echo "configure: failed program was:" >&5
4755 cat conftest.$ac_ext >&5
4756 rm -rf conftest*
4757 gt_cv_func_gettext_libintl=no
4758fi
4759rm -f conftest*
4760fi
4761
4762echo "$ac_t""$gt_cv_func_gettext_libintl" 1>&6
4763else
4764 echo "$ac_t""no" 1>&6
4765fi
4766
4767 fi
4768
4769 if test "$gt_cv_func_gettext_libc" = "yes" \
4770 || test "$gt_cv_func_gettext_libintl" = "yes"; then
4771 cat >> confdefs.h <<\EOF
4772#define HAVE_GETTEXT 1
4773EOF
4774
4775 # Extract the first word of "msgfmt", so it can be a program name with args.
4776set dummy msgfmt; ac_word=$2
4777echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
b96d3a20 4778echo "configure:4779: checking for $ac_word" >&5
a2d91340 4779if eval "test \"`echo '$''{'ac_cv_path_MSGFMT'+set}'`\" = set"; then
252b5132
RH
4780 echo $ac_n "(cached) $ac_c" 1>&6
4781else
4782 case "$MSGFMT" in
4783 /*)
4784 ac_cv_path_MSGFMT="$MSGFMT" # Let the user override the test with a path.
4785 ;;
4786 *)
4787 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
4788 for ac_dir in $PATH; do
4789 test -z "$ac_dir" && ac_dir=.
4790 if test -f $ac_dir/$ac_word; then
4791 if test -z "`$ac_dir/$ac_word -h 2>&1 | grep 'dv '`"; then
4792 ac_cv_path_MSGFMT="$ac_dir/$ac_word"
4793 break
4794 fi
4795 fi
4796 done
4797 IFS="$ac_save_ifs"
4798 test -z "$ac_cv_path_MSGFMT" && ac_cv_path_MSGFMT="no"
4799 ;;
4800esac
4801fi
4802MSGFMT="$ac_cv_path_MSGFMT"
4803if test -n "$MSGFMT"; then
4804 echo "$ac_t""$MSGFMT" 1>&6
4805else
4806 echo "$ac_t""no" 1>&6
4807fi
4808 if test "$MSGFMT" != "no"; then
4809 for ac_func in dcgettext
4810do
4811echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
b96d3a20 4812echo "configure:4813: checking for $ac_func" >&5
a2d91340 4813if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
252b5132
RH
4814 echo $ac_n "(cached) $ac_c" 1>&6
4815else
4816 cat > conftest.$ac_ext <<EOF
b96d3a20 4817#line 4818 "configure"
252b5132
RH
4818#include "confdefs.h"
4819/* System header to define __stub macros and hopefully few prototypes,
4820 which can conflict with char $ac_func(); below. */
4821#include <assert.h>
4822/* Override any gcc2 internal prototype to avoid an error. */
4823/* We use char because int might match the return type of a gcc2
4824 builtin and then its argument prototype would still apply. */
4825char $ac_func();
4826
4827int main() {
4828
4829/* The GNU C library defines this for functions which it implements
4830 to always fail with ENOSYS. Some functions are actually named
4831 something starting with __ and the normal name is an alias. */
4832#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
4833choke me
4834#else
a2d91340 4835$ac_func();
252b5132
RH
4836#endif
4837
4838; return 0; }
4839EOF
b96d3a20 4840if { (eval echo configure:4841: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
252b5132
RH
4841 rm -rf conftest*
4842 eval "ac_cv_func_$ac_func=yes"
4843else
4844 echo "configure: failed program was:" >&5
4845 cat conftest.$ac_ext >&5
4846 rm -rf conftest*
4847 eval "ac_cv_func_$ac_func=no"
4848fi
4849rm -f conftest*
4850fi
4851
4852if eval "test \"`echo '$ac_cv_func_'$ac_func`\" = yes"; then
4853 echo "$ac_t""yes" 1>&6
4854 ac_tr_func=HAVE_`echo $ac_func | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`
4855 cat >> confdefs.h <<EOF
4856#define $ac_tr_func 1
4857EOF
4858
4859else
4860 echo "$ac_t""no" 1>&6
4861fi
4862done
4863
4864 # Extract the first word of "gmsgfmt", so it can be a program name with args.
4865set dummy gmsgfmt; ac_word=$2
4866echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
b96d3a20 4867echo "configure:4868: checking for $ac_word" >&5
a2d91340 4868if eval "test \"`echo '$''{'ac_cv_path_GMSGFMT'+set}'`\" = set"; then
252b5132
RH
4869 echo $ac_n "(cached) $ac_c" 1>&6
4870else
4871 case "$GMSGFMT" in
4872 /*)
4873 ac_cv_path_GMSGFMT="$GMSGFMT" # Let the user override the test with a path.
4874 ;;
4875 ?:/*)
4876 ac_cv_path_GMSGFMT="$GMSGFMT" # Let the user override the test with a dos path.
4877 ;;
4878 *)
4879 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":"
4880 ac_dummy="$PATH"
4881 for ac_dir in $ac_dummy; do
4882 test -z "$ac_dir" && ac_dir=.
4883 if test -f $ac_dir/$ac_word; then
4884 ac_cv_path_GMSGFMT="$ac_dir/$ac_word"
4885 break
4886 fi
4887 done
4888 IFS="$ac_save_ifs"
4889 test -z "$ac_cv_path_GMSGFMT" && ac_cv_path_GMSGFMT="$MSGFMT"
4890 ;;
4891esac
4892fi
4893GMSGFMT="$ac_cv_path_GMSGFMT"
4894if test -n "$GMSGFMT"; then
4895 echo "$ac_t""$GMSGFMT" 1>&6
4896else
4897 echo "$ac_t""no" 1>&6
4898fi
4899
4900 # Extract the first word of "xgettext", so it can be a program name with args.
4901set dummy xgettext; ac_word=$2
4902echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
b96d3a20 4903echo "configure:4904: checking for $ac_word" >&5
a2d91340 4904if eval "test \"`echo '$''{'ac_cv_path_XGETTEXT'+set}'`\" = set"; then
252b5132
RH
4905 echo $ac_n "(cached) $ac_c" 1>&6
4906else
4907 case "$XGETTEXT" in
4908 /*)
4909 ac_cv_path_XGETTEXT="$XGETTEXT" # Let the user override the test with a path.
4910 ;;
4911 *)
4912 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
4913 for ac_dir in $PATH; do
4914 test -z "$ac_dir" && ac_dir=.
4915 if test -f $ac_dir/$ac_word; then
4916 if test -z "`$ac_dir/$ac_word -h 2>&1 | grep '(HELP)'`"; then
4917 ac_cv_path_XGETTEXT="$ac_dir/$ac_word"
4918 break
4919 fi
4920 fi
4921 done
4922 IFS="$ac_save_ifs"
4923 test -z "$ac_cv_path_XGETTEXT" && ac_cv_path_XGETTEXT=":"
4924 ;;
4925esac
4926fi
4927XGETTEXT="$ac_cv_path_XGETTEXT"
4928if test -n "$XGETTEXT"; then
4929 echo "$ac_t""$XGETTEXT" 1>&6
4930else
4931 echo "$ac_t""no" 1>&6
4932fi
4933
4934 cat > conftest.$ac_ext <<EOF
b96d3a20 4935#line 4936 "configure"
252b5132
RH
4936#include "confdefs.h"
4937
4938int main() {
4939extern int _nl_msg_cat_cntr;
4940 return _nl_msg_cat_cntr
4941; return 0; }
4942EOF
b96d3a20 4943if { (eval echo configure:4944: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
252b5132
RH
4944 rm -rf conftest*
4945 CATOBJEXT=.gmo
4946 DATADIRNAME=share
4947else
4948 echo "configure: failed program was:" >&5
4949 cat conftest.$ac_ext >&5
4950 rm -rf conftest*
4951 CATOBJEXT=.mo
4952 DATADIRNAME=lib
4953fi
4954rm -f conftest*
4955 INSTOBJEXT=.mo
4956 fi
4957 fi
4958
4959else
4960 echo "$ac_t""no" 1>&6
4961fi
4962
4963
4964
4965 if test "$CATOBJEXT" = "NONE"; then
4966 nls_cv_use_gnu_gettext=yes
4967 fi
4968 fi
4969
4970 if test "$nls_cv_use_gnu_gettext" = "yes"; then
4971 INTLOBJS="\$(GETTOBJS)"
4972 # Extract the first word of "msgfmt", so it can be a program name with args.
4973set dummy msgfmt; ac_word=$2
4974echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
b96d3a20 4975echo "configure:4976: checking for $ac_word" >&5
a2d91340 4976if eval "test \"`echo '$''{'ac_cv_path_MSGFMT'+set}'`\" = set"; then
252b5132
RH
4977 echo $ac_n "(cached) $ac_c" 1>&6
4978else
4979 case "$MSGFMT" in
4980 /*)
4981 ac_cv_path_MSGFMT="$MSGFMT" # Let the user override the test with a path.
4982 ;;
4983 *)
4984 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
4985 for ac_dir in $PATH; do
4986 test -z "$ac_dir" && ac_dir=.
4987 if test -f $ac_dir/$ac_word; then
4988 if test -z "`$ac_dir/$ac_word -h 2>&1 | grep 'dv '`"; then
4989 ac_cv_path_MSGFMT="$ac_dir/$ac_word"
4990 break
4991 fi
4992 fi
4993 done
4994 IFS="$ac_save_ifs"
4995 test -z "$ac_cv_path_MSGFMT" && ac_cv_path_MSGFMT="msgfmt"
4996 ;;
4997esac
4998fi
4999MSGFMT="$ac_cv_path_MSGFMT"
5000if test -n "$MSGFMT"; then
5001 echo "$ac_t""$MSGFMT" 1>&6
5002else
5003 echo "$ac_t""no" 1>&6
5004fi
5005
5006 # Extract the first word of "gmsgfmt", so it can be a program name with args.
5007set dummy gmsgfmt; ac_word=$2
5008echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
b96d3a20 5009echo "configure:5010: checking for $ac_word" >&5
a2d91340 5010if eval "test \"`echo '$''{'ac_cv_path_GMSGFMT'+set}'`\" = set"; then
252b5132
RH
5011 echo $ac_n "(cached) $ac_c" 1>&6
5012else
5013 case "$GMSGFMT" in
5014 /*)
5015 ac_cv_path_GMSGFMT="$GMSGFMT" # Let the user override the test with a path.
5016 ;;
5017 ?:/*)
5018 ac_cv_path_GMSGFMT="$GMSGFMT" # Let the user override the test with a dos path.
5019 ;;
5020 *)
5021 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":"
5022 ac_dummy="$PATH"
5023 for ac_dir in $ac_dummy; do
5024 test -z "$ac_dir" && ac_dir=.
5025 if test -f $ac_dir/$ac_word; then
5026 ac_cv_path_GMSGFMT="$ac_dir/$ac_word"
5027 break
5028 fi
5029 done
5030 IFS="$ac_save_ifs"
5031 test -z "$ac_cv_path_GMSGFMT" && ac_cv_path_GMSGFMT="$MSGFMT"
5032 ;;
5033esac
5034fi
5035GMSGFMT="$ac_cv_path_GMSGFMT"
5036if test -n "$GMSGFMT"; then
5037 echo "$ac_t""$GMSGFMT" 1>&6
5038else
5039 echo "$ac_t""no" 1>&6
5040fi
5041
5042 # Extract the first word of "xgettext", so it can be a program name with args.
5043set dummy xgettext; ac_word=$2
5044echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
b96d3a20 5045echo "configure:5046: checking for $ac_word" >&5
a2d91340 5046if eval "test \"`echo '$''{'ac_cv_path_XGETTEXT'+set}'`\" = set"; then
252b5132
RH
5047 echo $ac_n "(cached) $ac_c" 1>&6
5048else
5049 case "$XGETTEXT" in
5050 /*)
5051 ac_cv_path_XGETTEXT="$XGETTEXT" # Let the user override the test with a path.
5052 ;;
5053 *)
5054 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
5055 for ac_dir in $PATH; do
5056 test -z "$ac_dir" && ac_dir=.
5057 if test -f $ac_dir/$ac_word; then
5058 if test -z "`$ac_dir/$ac_word -h 2>&1 | grep '(HELP)'`"; then
5059 ac_cv_path_XGETTEXT="$ac_dir/$ac_word"
5060 break
5061 fi
5062 fi
5063 done
5064 IFS="$ac_save_ifs"
5065 test -z "$ac_cv_path_XGETTEXT" && ac_cv_path_XGETTEXT=":"
5066 ;;
5067esac
5068fi
5069XGETTEXT="$ac_cv_path_XGETTEXT"
5070if test -n "$XGETTEXT"; then
5071 echo "$ac_t""$XGETTEXT" 1>&6
5072else
5073 echo "$ac_t""no" 1>&6
5074fi
5075
5076
5077 USE_INCLUDED_LIBINTL=yes
5078 CATOBJEXT=.gmo
5079 INSTOBJEXT=.mo
5080 DATADIRNAME=share
5081 INTLDEPS='$(top_builddir)/../intl/libintl.a'
5082 INTLLIBS=$INTLDEPS
5083 LIBS=`echo $LIBS | sed -e 's/-lintl//'`
5084 nls_cv_header_intl=libintl.h
5085 nls_cv_header_libgt=libgettext.h
5086 fi
5087
5088 if test "$XGETTEXT" != ":"; then
5089 if $XGETTEXT --omit-header /dev/null 2> /dev/null; then
5090 : ;
5091 else
5092 echo "$ac_t""found xgettext programs is not GNU xgettext; ignore it" 1>&6
5093 XGETTEXT=":"
5094 fi
5095 fi
5096
5097 # We need to process the po/ directory.
5098 POSUB=po
5099 else
5100 DATADIRNAME=share
5101 nls_cv_header_intl=libintl.h
5102 nls_cv_header_libgt=libgettext.h
5103 fi
5104
5105 # If this is used in GNU gettext we have to set USE_NLS to `yes'
5106 # because some of the sources are only built for this goal.
5107 if test "$PACKAGE" = gettext; then
5108 USE_NLS=yes
5109 USE_INCLUDED_LIBINTL=yes
5110 fi
5111
5112 for lang in $ALL_LINGUAS; do
5113 GMOFILES="$GMOFILES $lang.gmo"
5114 POFILES="$POFILES $lang.po"
5115 done
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130 if test "x$CATOBJEXT" != "x"; then
5131 if test "x$ALL_LINGUAS" = "x"; then
5132 LINGUAS=
5133 else
5134 echo $ac_n "checking for catalogs to be installed""... $ac_c" 1>&6
b96d3a20 5135echo "configure:5136: checking for catalogs to be installed" >&5
252b5132
RH
5136 NEW_LINGUAS=
5137 for lang in ${LINGUAS=$ALL_LINGUAS}; do
5138 case "$ALL_LINGUAS" in
5139 *$lang*) NEW_LINGUAS="$NEW_LINGUAS $lang" ;;
5140 esac
5141 done
5142 LINGUAS=$NEW_LINGUAS
5143 echo "$ac_t""$LINGUAS" 1>&6
5144 fi
5145
5146 if test -n "$LINGUAS"; then
5147 for lang in $LINGUAS; do CATALOGS="$CATALOGS $lang$CATOBJEXT"; done
5148 fi
5149 fi
5150
5151 if test $ac_cv_header_locale_h = yes; then
5152 INCLUDE_LOCALE_H="#include <locale.h>"
5153 else
5154 INCLUDE_LOCALE_H="\
5155/* The system does not provide the header <locale.h>. Take care yourself. */"
5156 fi
5157
5158
5159 if test -f $srcdir/po2tbl.sed.in; then
5160 if test "$CATOBJEXT" = ".cat"; then
5161 ac_safe=`echo "linux/version.h" | sed 'y%./+-%__p_%'`
5162echo $ac_n "checking for linux/version.h""... $ac_c" 1>&6
b96d3a20 5163echo "configure:5164: checking for linux/version.h" >&5
a2d91340 5164if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
252b5132
RH
5165 echo $ac_n "(cached) $ac_c" 1>&6
5166else
5167 cat > conftest.$ac_ext <<EOF
b96d3a20 5168#line 5169 "configure"
252b5132
RH
5169#include "confdefs.h"
5170#include <linux/version.h>
5171EOF
5172ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
b96d3a20 5173{ (eval echo configure:5174: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
252b5132
RH
5174ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
5175if test -z "$ac_err"; then
5176 rm -rf conftest*
5177 eval "ac_cv_header_$ac_safe=yes"
5178else
5179 echo "$ac_err" >&5
5180 echo "configure: failed program was:" >&5
5181 cat conftest.$ac_ext >&5
5182 rm -rf conftest*
5183 eval "ac_cv_header_$ac_safe=no"
5184fi
5185rm -f conftest*
5186fi
5187if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then
5188 echo "$ac_t""yes" 1>&6
5189 msgformat=linux
5190else
5191 echo "$ac_t""no" 1>&6
5192msgformat=xopen
5193fi
5194
5195
5196 sed -e '/^#/d' $srcdir/$msgformat-msg.sed > po2msg.sed
5197 fi
5198 sed -e '/^#.*[^\\]$/d' -e '/^#$/d' \
5199 $srcdir/po2tbl.sed.in > po2tbl.sed
5200 fi
5201
5202 if test "$PACKAGE" = "gettext"; then
5203 GT_NO="#NO#"
5204 GT_YES=
5205 else
5206 GT_NO=
5207 GT_YES="#YES#"
5208 fi
5209
5210
5211
5212 MKINSTALLDIRS="\$(srcdir)/../../mkinstalldirs"
5213
5214
5215 l=
5216
5217
5218 if test -d $srcdir/po; then
5219 test -d po || mkdir po
5220 if test "x$srcdir" != "x."; then
5221 if test "x`echo $srcdir | sed 's@/.*@@'`" = "x"; then
5222 posrcprefix="$srcdir/"
5223 else
5224 posrcprefix="../$srcdir/"
5225 fi
5226 else
5227 posrcprefix="../"
5228 fi
5229 rm -f po/POTFILES
5230 sed -e "/^#/d" -e "/^\$/d" -e "s,.*, $posrcprefix& \\\\," -e "\$s/\(.*\) \\\\/\1/" \
5231 < $srcdir/po/POTFILES.in > po/POTFILES
5232 fi
5233
5234
5235echo $ac_n "checking whether to enable maintainer-specific portions of Makefiles""... $ac_c" 1>&6
b96d3a20 5236echo "configure:5237: checking whether to enable maintainer-specific portions of Makefiles" >&5
252b5132
RH
5237 # Check whether --enable-maintainer-mode or --disable-maintainer-mode was given.
5238if test "${enable_maintainer_mode+set}" = set; then
5239 enableval="$enable_maintainer_mode"
5240 USE_MAINTAINER_MODE=$enableval
5241else
5242 USE_MAINTAINER_MODE=no
5243fi
5244
5245 echo "$ac_t""$USE_MAINTAINER_MODE" 1>&6
5246
5247
5248if test $USE_MAINTAINER_MODE = yes; then
5249 MAINTAINER_MODE_TRUE=
5250 MAINTAINER_MODE_FALSE='#'
5251else
5252 MAINTAINER_MODE_TRUE='#'
5253 MAINTAINER_MODE_FALSE=
5254fi
5255 MAINT=$MAINTAINER_MODE_TRUE
5256
5257
252b5132
RH
5258
5259
5260echo $ac_n "checking for executable suffix""... $ac_c" 1>&6
b96d3a20 5261echo "configure:5262: checking for executable suffix" >&5
a2d91340 5262if eval "test \"`echo '$''{'ac_cv_exeext'+set}'`\" = set"; then
252b5132
RH
5263 echo $ac_n "(cached) $ac_c" 1>&6
5264else
a2d91340 5265 if test "$CYGWIN" = yes || test "$MINGW32" = yes; then
252b5132
RH
5266 ac_cv_exeext=.exe
5267else
5268 rm -f conftest*
5269 echo 'int main () { return 0; }' > conftest.$ac_ext
5270 ac_cv_exeext=
b96d3a20 5271 if { (eval echo configure:5272: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then
252b5132
RH
5272 for file in conftest.*; do
5273 case $file in
6f6ef0fa 5274 *.c | *.o | *.obj | *.ilk | *.pdb) ;;
252b5132
RH
5275 *) ac_cv_exeext=`echo $file | sed -e s/conftest//` ;;
5276 esac
5277 done
5278 else
5279 { echo "configure: error: installation or configuration problem: compiler cannot create executables." 1>&2; exit 1; }
5280 fi
5281 rm -f conftest*
5282 test x"${ac_cv_exeext}" = x && ac_cv_exeext=no
5283fi
5284fi
5285
5286EXEEXT=""
5287test x"${ac_cv_exeext}" != xno && EXEEXT=${ac_cv_exeext}
5288echo "$ac_t""${ac_cv_exeext}" 1>&6
5289ac_exeext=$EXEEXT
5290
5291
5292for ac_hdr in string.h stdlib.h memory.h strings.h unistd.h stdarg.h varargs.h errno.h sys/types.h
5293do
5294ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
5295echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
b96d3a20 5296echo "configure:5297: checking for $ac_hdr" >&5
a2d91340 5297if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
252b5132
RH
5298 echo $ac_n "(cached) $ac_c" 1>&6
5299else
5300 cat > conftest.$ac_ext <<EOF
b96d3a20 5301#line 5302 "configure"
252b5132
RH
5302#include "confdefs.h"
5303#include <$ac_hdr>
5304EOF
5305ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
b96d3a20 5306{ (eval echo configure:5307: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
252b5132
RH
5307ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
5308if test -z "$ac_err"; then
5309 rm -rf conftest*
5310 eval "ac_cv_header_$ac_safe=yes"
5311else
5312 echo "$ac_err" >&5
5313 echo "configure: failed program was:" >&5
5314 cat conftest.$ac_ext >&5
5315 rm -rf conftest*
5316 eval "ac_cv_header_$ac_safe=no"
5317fi
5318rm -f conftest*
5319fi
5320if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then
5321 echo "$ac_t""yes" 1>&6
5322 ac_tr_hdr=HAVE_`echo $ac_hdr | sed 'y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%'`
5323 cat >> confdefs.h <<EOF
5324#define $ac_tr_hdr 1
5325EOF
5326
5327else
5328 echo "$ac_t""no" 1>&6
5329fi
5330done
5331
5332
5333# Put this here so that autoconf's "cross-compiling" message doesn't confuse
5334# people who are not cross-compiling but are compiling cross-assemblers.
5335echo $ac_n "checking whether compiling a cross-assembler""... $ac_c" 1>&6
b96d3a20 5336echo "configure:5337: checking whether compiling a cross-assembler" >&5
252b5132
RH
5337if test "${host}" = "${target}"; then
5338 cross_gas=no
5339else
5340 cross_gas=yes
5341 cat >> confdefs.h <<\EOF
5342#define CROSS_COMPILE 1
5343EOF
5344
5345fi
5346echo "$ac_t""$cross_gas" 1>&6
5347
5348# The Ultrix 4.2 mips builtin alloca declared by alloca.h only works
5349# for constant arguments. Useless!
5350echo $ac_n "checking for working alloca.h""... $ac_c" 1>&6
b96d3a20 5351echo "configure:5352: checking for working alloca.h" >&5
a2d91340 5352if eval "test \"`echo '$''{'ac_cv_header_alloca_h'+set}'`\" = set"; then
252b5132
RH
5353 echo $ac_n "(cached) $ac_c" 1>&6
5354else
5355 cat > conftest.$ac_ext <<EOF
b96d3a20 5356#line 5357 "configure"
252b5132
RH
5357#include "confdefs.h"
5358#include <alloca.h>
5359int main() {
5360char *p = alloca(2 * sizeof(int));
5361; return 0; }
5362EOF
b96d3a20 5363if { (eval echo configure:5364: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
252b5132
RH
5364 rm -rf conftest*
5365 ac_cv_header_alloca_h=yes
5366else
5367 echo "configure: failed program was:" >&5
5368 cat conftest.$ac_ext >&5
5369 rm -rf conftest*
5370 ac_cv_header_alloca_h=no
5371fi
5372rm -f conftest*
5373fi
5374
5375echo "$ac_t""$ac_cv_header_alloca_h" 1>&6
5376if test $ac_cv_header_alloca_h = yes; then
5377 cat >> confdefs.h <<\EOF
5378#define HAVE_ALLOCA_H 1
5379EOF
5380
5381fi
5382
5383echo $ac_n "checking for alloca""... $ac_c" 1>&6
b96d3a20 5384echo "configure:5385: checking for alloca" >&5
a2d91340 5385if eval "test \"`echo '$''{'ac_cv_func_alloca_works'+set}'`\" = set"; then
252b5132
RH
5386 echo $ac_n "(cached) $ac_c" 1>&6
5387else
5388 cat > conftest.$ac_ext <<EOF
b96d3a20 5389#line 5390 "configure"
252b5132
RH
5390#include "confdefs.h"
5391
5392#ifdef __GNUC__
5393# define alloca __builtin_alloca
5394#else
5395# ifdef _MSC_VER
5396# include <malloc.h>
5397# define alloca _alloca
5398# else
5399# if HAVE_ALLOCA_H
5400# include <alloca.h>
5401# else
5402# ifdef _AIX
5403 #pragma alloca
5404# else
5405# ifndef alloca /* predefined by HP cc +Olibcalls */
5406char *alloca ();
5407# endif
5408# endif
5409# endif
5410# endif
5411#endif
5412
5413int main() {
5414char *p = (char *) alloca(1);
5415; return 0; }
5416EOF
b96d3a20 5417if { (eval echo configure:5418: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
252b5132
RH
5418 rm -rf conftest*
5419 ac_cv_func_alloca_works=yes
5420else
5421 echo "configure: failed program was:" >&5
5422 cat conftest.$ac_ext >&5
5423 rm -rf conftest*
5424 ac_cv_func_alloca_works=no
5425fi
5426rm -f conftest*
5427fi
5428
5429echo "$ac_t""$ac_cv_func_alloca_works" 1>&6
5430if test $ac_cv_func_alloca_works = yes; then
5431 cat >> confdefs.h <<\EOF
5432#define HAVE_ALLOCA 1
5433EOF
5434
5435fi
5436
5437if test $ac_cv_func_alloca_works = no; then
5438 # The SVR3 libPW and SVR4 libucb both contain incompatible functions
5439 # that cause trouble. Some versions do not even contain alloca or
5440 # contain a buggy version. If you still want to use their alloca,
5441 # use ar to extract alloca.o from them instead of compiling alloca.c.
5442 ALLOCA=alloca.${ac_objext}
5443 cat >> confdefs.h <<\EOF
5444#define C_ALLOCA 1
5445EOF
5446
5447
5448echo $ac_n "checking whether alloca needs Cray hooks""... $ac_c" 1>&6
b96d3a20 5449echo "configure:5450: checking whether alloca needs Cray hooks" >&5
a2d91340 5450if eval "test \"`echo '$''{'ac_cv_os_cray'+set}'`\" = set"; then
252b5132
RH
5451 echo $ac_n "(cached) $ac_c" 1>&6
5452else
5453 cat > conftest.$ac_ext <<EOF
b96d3a20 5454#line 5455 "configure"
252b5132
RH
5455#include "confdefs.h"
5456#if defined(CRAY) && ! defined(CRAY2)
5457webecray
5458#else
5459wenotbecray
5460#endif
5461
5462EOF
5463if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
5464 egrep "webecray" >/dev/null 2>&1; then
5465 rm -rf conftest*
5466 ac_cv_os_cray=yes
5467else
5468 rm -rf conftest*
5469 ac_cv_os_cray=no
5470fi
5471rm -f conftest*
5472
5473fi
5474
5475echo "$ac_t""$ac_cv_os_cray" 1>&6
5476if test $ac_cv_os_cray = yes; then
5477for ac_func in _getb67 GETB67 getb67; do
5478 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
b96d3a20 5479echo "configure:5480: checking for $ac_func" >&5
a2d91340 5480if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
252b5132
RH
5481 echo $ac_n "(cached) $ac_c" 1>&6
5482else
5483 cat > conftest.$ac_ext <<EOF
b96d3a20 5484#line 5485 "configure"
252b5132
RH
5485#include "confdefs.h"
5486/* System header to define __stub macros and hopefully few prototypes,
5487 which can conflict with char $ac_func(); below. */
5488#include <assert.h>
5489/* Override any gcc2 internal prototype to avoid an error. */
5490/* We use char because int might match the return type of a gcc2
5491 builtin and then its argument prototype would still apply. */
5492char $ac_func();
5493
5494int main() {
5495
5496/* The GNU C library defines this for functions which it implements
5497 to always fail with ENOSYS. Some functions are actually named
5498 something starting with __ and the normal name is an alias. */
5499#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
5500choke me
5501#else
a2d91340 5502$ac_func();
252b5132
RH
5503#endif
5504
5505; return 0; }
5506EOF
b96d3a20 5507if { (eval echo configure:5508: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
252b5132
RH
5508 rm -rf conftest*
5509 eval "ac_cv_func_$ac_func=yes"
5510else
5511 echo "configure: failed program was:" >&5
5512 cat conftest.$ac_ext >&5
5513 rm -rf conftest*
5514 eval "ac_cv_func_$ac_func=no"
5515fi
5516rm -f conftest*
5517fi
5518
5519if eval "test \"`echo '$ac_cv_func_'$ac_func`\" = yes"; then
5520 echo "$ac_t""yes" 1>&6
5521 cat >> confdefs.h <<EOF
5522#define CRAY_STACKSEG_END $ac_func
5523EOF
5524
5525 break
5526else
5527 echo "$ac_t""no" 1>&6
5528fi
5529
5530done
5531fi
5532
5533echo $ac_n "checking stack direction for C alloca""... $ac_c" 1>&6
b96d3a20 5534echo "configure:5535: checking stack direction for C alloca" >&5
a2d91340 5535if eval "test \"`echo '$''{'ac_cv_c_stack_direction'+set}'`\" = set"; then
252b5132
RH
5536 echo $ac_n "(cached) $ac_c" 1>&6
5537else
5538 if test "$cross_compiling" = yes; then
5539 ac_cv_c_stack_direction=0
5540else
5541 cat > conftest.$ac_ext <<EOF
b96d3a20 5542#line 5543 "configure"
252b5132
RH
5543#include "confdefs.h"
5544find_stack_direction ()
5545{
5546 static char *addr = 0;
5547 auto char dummy;
5548 if (addr == 0)
5549 {
5550 addr = &dummy;
5551 return find_stack_direction ();
5552 }
5553 else
5554 return (&dummy > addr) ? 1 : -1;
5555}
5556main ()
5557{
5558 exit (find_stack_direction() < 0);
5559}
5560EOF
b96d3a20 5561if { (eval echo configure:5562: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
252b5132
RH
5562then
5563 ac_cv_c_stack_direction=1
5564else
5565 echo "configure: failed program was:" >&5
5566 cat conftest.$ac_ext >&5
5567 rm -fr conftest*
5568 ac_cv_c_stack_direction=-1
5569fi
5570rm -fr conftest*
5571fi
5572
5573fi
5574
5575echo "$ac_t""$ac_cv_c_stack_direction" 1>&6
5576cat >> confdefs.h <<EOF
5577#define STACK_DIRECTION $ac_cv_c_stack_direction
5578EOF
5579
5580fi
5581
5582echo $ac_n "checking for inline""... $ac_c" 1>&6
b96d3a20 5583echo "configure:5584: checking for inline" >&5
a2d91340 5584if eval "test \"`echo '$''{'ac_cv_c_inline'+set}'`\" = set"; then
252b5132
RH
5585 echo $ac_n "(cached) $ac_c" 1>&6
5586else
5587 ac_cv_c_inline=no
5588for ac_kw in inline __inline__ __inline; do
5589 cat > conftest.$ac_ext <<EOF
b96d3a20 5590#line 5591 "configure"
252b5132
RH
5591#include "confdefs.h"
5592
5593int main() {
a2d91340 5594} $ac_kw foo() {
252b5132
RH
5595; return 0; }
5596EOF
b96d3a20 5597if { (eval echo configure:5598: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
252b5132
RH
5598 rm -rf conftest*
5599 ac_cv_c_inline=$ac_kw; break
5600else
5601 echo "configure: failed program was:" >&5
5602 cat conftest.$ac_ext >&5
5603fi
5604rm -f conftest*
5605done
5606
5607fi
5608
5609echo "$ac_t""$ac_cv_c_inline" 1>&6
5610case "$ac_cv_c_inline" in
5611 inline | yes) ;;
5612 no) cat >> confdefs.h <<\EOF
5613#define inline
5614EOF
5615 ;;
5616 *) cat >> confdefs.h <<EOF
5617#define inline $ac_cv_c_inline
5618EOF
5619 ;;
5620esac
5621
5622
5623# VMS doesn't have unlink.
5624for ac_func in unlink remove
5625do
5626echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
b96d3a20 5627echo "configure:5628: checking for $ac_func" >&5
a2d91340 5628if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
252b5132
RH
5629 echo $ac_n "(cached) $ac_c" 1>&6
5630else
5631 cat > conftest.$ac_ext <<EOF
b96d3a20 5632#line 5633 "configure"
252b5132
RH
5633#include "confdefs.h"
5634/* System header to define __stub macros and hopefully few prototypes,
5635 which can conflict with char $ac_func(); below. */
5636#include <assert.h>
5637/* Override any gcc2 internal prototype to avoid an error. */
5638/* We use char because int might match the return type of a gcc2
5639 builtin and then its argument prototype would still apply. */
5640char $ac_func();
5641
5642int main() {
5643
5644/* The GNU C library defines this for functions which it implements
5645 to always fail with ENOSYS. Some functions are actually named
5646 something starting with __ and the normal name is an alias. */
5647#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
5648choke me
5649#else
a2d91340 5650$ac_func();
252b5132
RH
5651#endif
5652
5653; return 0; }
5654EOF
b96d3a20 5655if { (eval echo configure:5656: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
252b5132
RH
5656 rm -rf conftest*
5657 eval "ac_cv_func_$ac_func=yes"
5658else
5659 echo "configure: failed program was:" >&5
5660 cat conftest.$ac_ext >&5
5661 rm -rf conftest*
5662 eval "ac_cv_func_$ac_func=no"
5663fi
5664rm -f conftest*
5665fi
5666
5667if eval "test \"`echo '$ac_cv_func_'$ac_func`\" = yes"; then
5668 echo "$ac_t""yes" 1>&6
5669 ac_tr_func=HAVE_`echo $ac_func | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`
5670 cat >> confdefs.h <<EOF
5671#define $ac_tr_func 1
5672EOF
5673 break
5674else
5675 echo "$ac_t""no" 1>&6
5676fi
5677done
5678
5679
5680# Some systems don't have sbrk().
5681for ac_func in sbrk
5682do
5683echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
b96d3a20 5684echo "configure:5685: checking for $ac_func" >&5
a2d91340 5685if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
252b5132
RH
5686 echo $ac_n "(cached) $ac_c" 1>&6
5687else
5688 cat > conftest.$ac_ext <<EOF
b96d3a20 5689#line 5690 "configure"
252b5132
RH
5690#include "confdefs.h"
5691/* System header to define __stub macros and hopefully few prototypes,
5692 which can conflict with char $ac_func(); below. */
5693#include <assert.h>
5694/* Override any gcc2 internal prototype to avoid an error. */
5695/* We use char because int might match the return type of a gcc2
5696 builtin and then its argument prototype would still apply. */
5697char $ac_func();
5698
5699int main() {
5700
5701/* The GNU C library defines this for functions which it implements
5702 to always fail with ENOSYS. Some functions are actually named
5703 something starting with __ and the normal name is an alias. */
5704#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
5705choke me
5706#else
a2d91340 5707$ac_func();
252b5132
RH
5708#endif
5709
5710; return 0; }
5711EOF
b96d3a20 5712if { (eval echo configure:5713: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
252b5132
RH
5713 rm -rf conftest*
5714 eval "ac_cv_func_$ac_func=yes"
5715else
5716 echo "configure: failed program was:" >&5
5717 cat conftest.$ac_ext >&5
5718 rm -rf conftest*
5719 eval "ac_cv_func_$ac_func=no"
5720fi
5721rm -f conftest*
5722fi
5723
5724if eval "test \"`echo '$ac_cv_func_'$ac_func`\" = yes"; then
5725 echo "$ac_t""yes" 1>&6
5726 ac_tr_func=HAVE_`echo $ac_func | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`
5727 cat >> confdefs.h <<EOF
5728#define $ac_tr_func 1
5729EOF
5730
5731else
5732 echo "$ac_t""no" 1>&6
5733fi
5734done
5735
5736
39bec121
TW
5737# do we need the math library?
5738case "${need_libm}" in
5739yes)
5740 LIBM=
28e7409f 5741case "$host" in
d64552c5 5742*-*-beos* | *-*-cygwin* | *-*-pw32*)
39bec121
TW
5743 # These system don't have libm
5744 ;;
5745*-ncr-sysv4.3*)
5746 echo $ac_n "checking for _mwvalidcheckl in -lmw""... $ac_c" 1>&6
b96d3a20 5747echo "configure:5748: checking for _mwvalidcheckl in -lmw" >&5
39bec121
TW
5748ac_lib_var=`echo mw'_'_mwvalidcheckl | sed 'y%./+-%__p_%'`
5749if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
5750 echo $ac_n "(cached) $ac_c" 1>&6
5751else
5752 ac_save_LIBS="$LIBS"
5753LIBS="-lmw $LIBS"
5754cat > conftest.$ac_ext <<EOF
b96d3a20 5755#line 5756 "configure"
39bec121
TW
5756#include "confdefs.h"
5757/* Override any gcc2 internal prototype to avoid an error. */
5758/* We use char because int might match the return type of a gcc2
5759 builtin and then its argument prototype would still apply. */
5760char _mwvalidcheckl();
5761
5762int main() {
5763_mwvalidcheckl()
5764; return 0; }
5765EOF
b96d3a20 5766if { (eval echo configure:5767: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
39bec121
TW
5767 rm -rf conftest*
5768 eval "ac_cv_lib_$ac_lib_var=yes"
5769else
5770 echo "configure: failed program was:" >&5
5771 cat conftest.$ac_ext >&5
5772 rm -rf conftest*
5773 eval "ac_cv_lib_$ac_lib_var=no"
5774fi
5775rm -f conftest*
5776LIBS="$ac_save_LIBS"
5777
5778fi
5779if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
5780 echo "$ac_t""yes" 1>&6
5781 LIBM="-lmw"
5782else
5783 echo "$ac_t""no" 1>&6
5784fi
5785
5786 echo $ac_n "checking for main in -lm""... $ac_c" 1>&6
b96d3a20 5787echo "configure:5788: checking for main in -lm" >&5
39bec121
TW
5788ac_lib_var=`echo m'_'main | sed 'y%./+-%__p_%'`
5789if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
5790 echo $ac_n "(cached) $ac_c" 1>&6
5791else
5792 ac_save_LIBS="$LIBS"
5793LIBS="-lm $LIBS"
5794cat > conftest.$ac_ext <<EOF
b96d3a20 5795#line 5796 "configure"
39bec121
TW
5796#include "confdefs.h"
5797
5798int main() {
5799main()
5800; return 0; }
5801EOF
b96d3a20 5802if { (eval echo configure:5803: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
39bec121
TW
5803 rm -rf conftest*
5804 eval "ac_cv_lib_$ac_lib_var=yes"
5805else
5806 echo "configure: failed program was:" >&5
5807 cat conftest.$ac_ext >&5
5808 rm -rf conftest*
5809 eval "ac_cv_lib_$ac_lib_var=no"
5810fi
5811rm -f conftest*
5812LIBS="$ac_save_LIBS"
5813
5814fi
5815if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
5816 echo "$ac_t""yes" 1>&6
5817 LIBM="$LIBM -lm"
5818else
5819 echo "$ac_t""no" 1>&6
5820fi
5821
5822 ;;
5823*)
5824 echo $ac_n "checking for main in -lm""... $ac_c" 1>&6
b96d3a20 5825echo "configure:5826: checking for main in -lm" >&5
39bec121
TW
5826ac_lib_var=`echo m'_'main | sed 'y%./+-%__p_%'`
5827if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
5828 echo $ac_n "(cached) $ac_c" 1>&6
5829else
5830 ac_save_LIBS="$LIBS"
5831LIBS="-lm $LIBS"
5832cat > conftest.$ac_ext <<EOF
b96d3a20 5833#line 5834 "configure"
39bec121
TW
5834#include "confdefs.h"
5835
5836int main() {
5837main()
5838; return 0; }
5839EOF
b96d3a20 5840if { (eval echo configure:5841: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
39bec121
TW
5841 rm -rf conftest*
5842 eval "ac_cv_lib_$ac_lib_var=yes"
5843else
5844 echo "configure: failed program was:" >&5
5845 cat conftest.$ac_ext >&5
5846 rm -rf conftest*
5847 eval "ac_cv_lib_$ac_lib_var=no"
5848fi
5849rm -f conftest*
5850LIBS="$ac_save_LIBS"
5851
5852fi
5853if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
5854 echo "$ac_t""yes" 1>&6
5855 LIBM="-lm"
5856else
5857 echo "$ac_t""no" 1>&6
5858fi
5859
5860 ;;
5861esac
5862
5863
5864 ;;
5865esac
5866
252b5132
RH
5867# Some non-ANSI preprocessors botch requoting inside strings. That's bad
5868# enough, but on some of those systems, the assert macro relies on requoting
5869# working properly!
5870echo $ac_n "checking for working assert macro""... $ac_c" 1>&6
b96d3a20 5871echo "configure:5872: checking for working assert macro" >&5
a2d91340 5872if eval "test \"`echo '$''{'gas_cv_assert_ok'+set}'`\" = set"; then
252b5132
RH
5873 echo $ac_n "(cached) $ac_c" 1>&6
5874else
5875 cat > conftest.$ac_ext <<EOF
b96d3a20 5876#line 5877 "configure"
252b5132
RH
5877#include "confdefs.h"
5878#include <assert.h>
5879#include <stdio.h>
5880int main() {
5881
5882/* check for requoting problems */
5883static int a, b, c, d;
5884static char *s;
5885assert (!strcmp(s, "foo bar baz quux"));
5886/* check for newline handling */
5887assert (a == b
5888 || c == d);
5889
5890; return 0; }
5891EOF
b96d3a20 5892if { (eval echo configure:5893: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
252b5132
RH
5893 rm -rf conftest*
5894 gas_cv_assert_ok=yes
5895else
5896 echo "configure: failed program was:" >&5
5897 cat conftest.$ac_ext >&5
5898 rm -rf conftest*
5899 gas_cv_assert_ok=no
5900fi
5901rm -f conftest*
5902fi
5903echo "$ac_t""$gas_cv_assert_ok" 1>&6
5904test $gas_cv_assert_ok = yes || cat >> confdefs.h <<\EOF
5905#define BROKEN_ASSERT 1
5906EOF
5907
5908
5909
5910# On some systems, the system header files may not declare malloc, realloc,
5911# and free. There are places where gas needs these functions to have been
5912# declared -- such as when taking their addresses.
5913gas_test_headers="
5914#ifdef HAVE_MEMORY_H
5915#include <memory.h>
5916#endif
5917#ifdef HAVE_STRING_H
5918#include <string.h>
5919#else
5920#ifdef HAVE_STRINGS_H
5921#include <strings.h>
5922#endif
5923#endif
5924#ifdef HAVE_STDLIB_H
5925#include <stdlib.h>
5926#endif
5927#ifdef HAVE_UNISTD_H
5928#include <unistd.h>
5929#endif
5930"
5931
5932echo $ac_n "checking whether declaration is required for strstr""... $ac_c" 1>&6
b96d3a20 5933echo "configure:5934: checking whether declaration is required for strstr" >&5
a2d91340 5934if eval "test \"`echo '$''{'gas_cv_decl_needed_strstr'+set}'`\" = set"; then
252b5132
RH
5935 echo $ac_n "(cached) $ac_c" 1>&6
5936else
5937 cat > conftest.$ac_ext <<EOF
b96d3a20 5938#line 5939 "configure"
252b5132
RH
5939#include "confdefs.h"
5940$gas_test_headers
5941int main() {
5942
5943typedef char *(*f)();
5944f x;
5945x = (f) strstr;
5946
5947; return 0; }
5948EOF
b96d3a20 5949if { (eval echo configure:5950: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
252b5132
RH
5950 rm -rf conftest*
5951 gas_cv_decl_needed_strstr=no
5952else
5953 echo "configure: failed program was:" >&5
5954 cat conftest.$ac_ext >&5
5955 rm -rf conftest*
5956 gas_cv_decl_needed_strstr=yes
5957fi
5958rm -f conftest*
5959fi
5960echo "$ac_t""$gas_cv_decl_needed_strstr" 1>&6
5961if test $gas_cv_decl_needed_strstr = yes; then
5962 cat >> confdefs.h <<\EOF
5963#define NEED_DECLARATION_STRSTR 1
5964EOF
5965
5966fi
5967
5968
5969echo $ac_n "checking whether declaration is required for malloc""... $ac_c" 1>&6
b96d3a20 5970echo "configure:5971: checking whether declaration is required for malloc" >&5
a2d91340 5971if eval "test \"`echo '$''{'gas_cv_decl_needed_malloc'+set}'`\" = set"; then
252b5132
RH
5972 echo $ac_n "(cached) $ac_c" 1>&6
5973else
5974 cat > conftest.$ac_ext <<EOF
b96d3a20 5975#line 5976 "configure"
252b5132
RH
5976#include "confdefs.h"
5977$gas_test_headers
5978int main() {
5979
5980typedef char *(*f)();
5981f x;
5982x = (f) malloc;
5983
5984; return 0; }
5985EOF
b96d3a20 5986if { (eval echo configure:5987: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
252b5132
RH
5987 rm -rf conftest*
5988 gas_cv_decl_needed_malloc=no
5989else
5990 echo "configure: failed program was:" >&5
5991 cat conftest.$ac_ext >&5
5992 rm -rf conftest*
5993 gas_cv_decl_needed_malloc=yes
5994fi
5995rm -f conftest*
5996fi
5997echo "$ac_t""$gas_cv_decl_needed_malloc" 1>&6
5998if test $gas_cv_decl_needed_malloc = yes; then
5999 cat >> confdefs.h <<\EOF
6000#define NEED_DECLARATION_MALLOC 1
6001EOF
6002
6003fi
6004
6005
6006echo $ac_n "checking whether declaration is required for free""... $ac_c" 1>&6
b96d3a20 6007echo "configure:6008: checking whether declaration is required for free" >&5
a2d91340 6008if eval "test \"`echo '$''{'gas_cv_decl_needed_free'+set}'`\" = set"; then
252b5132
RH
6009 echo $ac_n "(cached) $ac_c" 1>&6
6010else
6011 cat > conftest.$ac_ext <<EOF
b96d3a20 6012#line 6013 "configure"
252b5132
RH
6013#include "confdefs.h"
6014$gas_test_headers
6015int main() {
6016
6017typedef void (*f)();
6018f x;
6019x = (f) free;
6020
6021; return 0; }
6022EOF
b96d3a20 6023if { (eval echo configure:6024: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
252b5132
RH
6024 rm -rf conftest*
6025 gas_cv_decl_needed_free=no
6026else
6027 echo "configure: failed program was:" >&5
6028 cat conftest.$ac_ext >&5
6029 rm -rf conftest*
6030 gas_cv_decl_needed_free=yes
6031fi
6032rm -f conftest*
6033fi
6034echo "$ac_t""$gas_cv_decl_needed_free" 1>&6
6035if test $gas_cv_decl_needed_free = yes; then
6036 cat >> confdefs.h <<\EOF
6037#define NEED_DECLARATION_FREE 1
6038EOF
6039
6040fi
6041
6042
6043echo $ac_n "checking whether declaration is required for sbrk""... $ac_c" 1>&6
b96d3a20 6044echo "configure:6045: checking whether declaration is required for sbrk" >&5
a2d91340 6045if eval "test \"`echo '$''{'gas_cv_decl_needed_sbrk'+set}'`\" = set"; then
252b5132
RH
6046 echo $ac_n "(cached) $ac_c" 1>&6
6047else
6048 cat > conftest.$ac_ext <<EOF
b96d3a20 6049#line 6050 "configure"
252b5132
RH
6050#include "confdefs.h"
6051$gas_test_headers
6052int main() {
6053
6054typedef char *(*f)();
6055f x;
6056x = (f) sbrk;
6057
6058; return 0; }
6059EOF
b96d3a20 6060if { (eval echo configure:6061: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
252b5132
RH
6061 rm -rf conftest*
6062 gas_cv_decl_needed_sbrk=no
6063else
6064 echo "configure: failed program was:" >&5
6065 cat conftest.$ac_ext >&5
6066 rm -rf conftest*
6067 gas_cv_decl_needed_sbrk=yes
6068fi
6069rm -f conftest*
6070fi
6071echo "$ac_t""$gas_cv_decl_needed_sbrk" 1>&6
6072if test $gas_cv_decl_needed_sbrk = yes; then
6073 cat >> confdefs.h <<\EOF
6074#define NEED_DECLARATION_SBRK 1
6075EOF
6076
6077fi
6078
6079
6080echo $ac_n "checking whether declaration is required for environ""... $ac_c" 1>&6
b96d3a20 6081echo "configure:6082: checking whether declaration is required for environ" >&5
a2d91340 6082if eval "test \"`echo '$''{'gas_cv_decl_needed_environ'+set}'`\" = set"; then
252b5132
RH
6083 echo $ac_n "(cached) $ac_c" 1>&6
6084else
6085 cat > conftest.$ac_ext <<EOF
b96d3a20 6086#line 6087 "configure"
252b5132
RH
6087#include "confdefs.h"
6088$gas_test_headers
6089int main() {
6090
6091typedef char **f;
6092f x;
6093x = (f) environ;
6094
6095; return 0; }
6096EOF
b96d3a20 6097if { (eval echo configure:6098: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
252b5132
RH
6098 rm -rf conftest*
6099 gas_cv_decl_needed_environ=no
6100else
6101 echo "configure: failed program was:" >&5
6102 cat conftest.$ac_ext >&5
6103 rm -rf conftest*
6104 gas_cv_decl_needed_environ=yes
6105fi
6106rm -f conftest*
6107fi
6108echo "$ac_t""$gas_cv_decl_needed_environ" 1>&6
6109if test $gas_cv_decl_needed_environ = yes; then
6110 cat >> confdefs.h <<\EOF
6111#define NEED_DECLARATION_ENVIRON 1
6112EOF
6113
6114fi
6115
6116
6117# Does errno.h declare errno, or do we have to add a separate declaration
6118# for it?
6119
6120echo $ac_n "checking whether declaration is required for errno""... $ac_c" 1>&6
b96d3a20 6121echo "configure:6122: checking whether declaration is required for errno" >&5
a2d91340 6122if eval "test \"`echo '$''{'gas_cv_decl_needed_errno'+set}'`\" = set"; then
252b5132
RH
6123 echo $ac_n "(cached) $ac_c" 1>&6
6124else
6125 cat > conftest.$ac_ext <<EOF
b96d3a20 6126#line 6127 "configure"
252b5132
RH
6127#include "confdefs.h"
6128
6129#ifdef HAVE_ERRNO_H
6130#include <errno.h>
6131#endif
6132
6133int main() {
6134
6135typedef int f;
6136f x;
6137x = (f) errno;
6138
6139; return 0; }
6140EOF
b96d3a20 6141if { (eval echo configure:6142: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
252b5132
RH
6142 rm -rf conftest*
6143 gas_cv_decl_needed_errno=no
6144else
6145 echo "configure: failed program was:" >&5
6146 cat conftest.$ac_ext >&5
6147 rm -rf conftest*
6148 gas_cv_decl_needed_errno=yes
6149fi
6150rm -f conftest*
6151fi
6152echo "$ac_t""$gas_cv_decl_needed_errno" 1>&6
6153if test $gas_cv_decl_needed_errno = yes; then
6154 cat >> confdefs.h <<\EOF
6155#define NEED_DECLARATION_ERRNO 1
6156EOF
6157
6158fi
6159
6160
6161
6162
6163trap '' 1 2 15
6164cat > confcache <<\EOF
6165# This file is a shell script that caches the results of configure
6166# tests run on this system so they can be shared between configure
6167# scripts and configure runs. It is not useful on other systems.
6168# If it contains results you don't want to keep, you may remove or edit it.
6169#
6170# By default, configure uses ./config.cache as the cache file,
6171# creating it if it does not exist already. You can give configure
6172# the --cache-file=FILE option to use a different cache file; that is
6173# what configure does when it calls configure scripts in
6174# subdirectories, so they share the cache.
6175# Giving --cache-file=/dev/null disables caching, for debugging configure.
6176# config.status only pays attention to the cache file if you give it the
6177# --recheck option to rerun configure.
6178#
6179EOF
6180# The following way of writing the cache mishandles newlines in values,
6181# but we know of no workaround that is simple, portable, and efficient.
6182# So, don't put newlines in cache variables' values.
6183# Ultrix sh set writes to stderr and can't be redirected directly,
6184# and sets the high bit in the cache file unless we assign to the vars.
6185(set) 2>&1 |
6186 case `(ac_space=' '; set | grep ac_space) 2>&1` in
6187 *ac_space=\ *)
6188 # `set' does not quote correctly, so add quotes (double-quote substitution
6189 # turns \\\\ into \\, and sed turns \\ into \).
6190 sed -n \
6191 -e "s/'/'\\\\''/g" \
6192 -e "s/^\\([a-zA-Z0-9_]*_cv_[a-zA-Z0-9_]*\\)=\\(.*\\)/\\1=\${\\1='\\2'}/p"
6193 ;;
6194 *)
6195 # `set' quotes correctly as required by POSIX, so do not add quotes.
6196 sed -n -e 's/^\([a-zA-Z0-9_]*_cv_[a-zA-Z0-9_]*\)=\(.*\)/\1=${\1=\2}/p'
6197 ;;
6198 esac >> confcache
6199if cmp -s $cache_file confcache; then
6200 :
6201else
6202 if test -w $cache_file; then
6203 echo "updating cache $cache_file"
6204 cat confcache > $cache_file
6205 else
6206 echo "not updating unwritable cache $cache_file"
6207 fi
6208fi
6209rm -f confcache
6210
6211trap 'rm -fr conftest* confdefs* core core.* *.core $ac_clean_files; exit 1' 1 2 15
6212
6213test "x$prefix" = xNONE && prefix=$ac_default_prefix
6214# Let make expand exec_prefix.
6215test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
6216
6217# Any assignment to VPATH causes Sun make to only execute
6218# the first set of double-colon rules, so remove it if not needed.
6219# If there is a colon in the path, we need to keep it.
6220if test "x$srcdir" = x.; then
6221 ac_vpsub='/^[ ]*VPATH[ ]*=[^:]*$/d'
6222fi
6223
6224trap 'rm -f $CONFIG_STATUS conftest*; exit 1' 1 2 15
6225
6226DEFS=-DHAVE_CONFIG_H
6227
6228# Without the "./", some shells look in PATH for config.status.
6229: ${CONFIG_STATUS=./config.status}
6230
6231echo creating $CONFIG_STATUS
6232rm -f $CONFIG_STATUS
6233cat > $CONFIG_STATUS <<EOF
6234#! /bin/sh
6235# Generated automatically by configure.
6236# Run this file to recreate the current configuration.
6237# This directory was configured as follows,
6238# on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
6239#
6240# $0 $ac_configure_args
6241#
6242# Compiler output produced by configure, useful for debugging
6243# configure, is in ./config.log if it exists.
6244
6245ac_cs_usage="Usage: $CONFIG_STATUS [--recheck] [--version] [--help]"
6246for ac_option
6247do
6248 case "\$ac_option" in
6249 -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
6250 echo "running \${CONFIG_SHELL-/bin/sh} $0 $ac_configure_args --no-create --no-recursion"
6251 exec \${CONFIG_SHELL-/bin/sh} $0 $ac_configure_args --no-create --no-recursion ;;
6252 -version | --version | --versio | --versi | --vers | --ver | --ve | --v)
a2d91340 6253 echo "$CONFIG_STATUS generated by autoconf version 2.13"
252b5132
RH
6254 exit 0 ;;
6255 -help | --help | --hel | --he | --h)
6256 echo "\$ac_cs_usage"; exit 0 ;;
6257 *) echo "\$ac_cs_usage"; exit 1 ;;
6258 esac
6259done
6260
6261ac_given_srcdir=$srcdir
6262ac_given_INSTALL="$INSTALL"
6263
76a27922 6264trap 'rm -fr `echo "Makefile doc/Makefile ${GDBINIT}:gdbinit.in po/Makefile.in:po/Make-in config.h:config.in" | sed "s/:[^ ]*//g"` conftest*; exit 1' 1 2 15
252b5132
RH
6265EOF
6266cat >> $CONFIG_STATUS <<EOF
6267
6268# Protect against being on the right side of a sed subst in config.status.
6269sed 's/%@/@@/; s/@%/@@/; s/%g\$/@g/; /@g\$/s/[\\\\&%]/\\\\&/g;
6270 s/@@/%@/; s/@@/@%/; s/@g\$/%g/' > conftest.subs <<\\CEOF
6271$ac_vpsub
6272$extrasub
6273s%@SHELL@%$SHELL%g
6274s%@CFLAGS@%$CFLAGS%g
6275s%@CPPFLAGS@%$CPPFLAGS%g
6276s%@CXXFLAGS@%$CXXFLAGS%g
6277s%@FFLAGS@%$FFLAGS%g
6278s%@DEFS@%$DEFS%g
6279s%@LDFLAGS@%$LDFLAGS%g
6280s%@LIBS@%$LIBS%g
6281s%@exec_prefix@%$exec_prefix%g
6282s%@prefix@%$prefix%g
6283s%@program_transform_name@%$program_transform_name%g
6284s%@bindir@%$bindir%g
6285s%@sbindir@%$sbindir%g
6286s%@libexecdir@%$libexecdir%g
6287s%@datadir@%$datadir%g
6288s%@sysconfdir@%$sysconfdir%g
6289s%@sharedstatedir@%$sharedstatedir%g
6290s%@localstatedir@%$localstatedir%g
6291s%@libdir@%$libdir%g
6292s%@includedir@%$includedir%g
6293s%@oldincludedir@%$oldincludedir%g
6294s%@infodir@%$infodir%g
6295s%@mandir@%$mandir%g
6296s%@host@%$host%g
6297s%@host_alias@%$host_alias%g
6298s%@host_cpu@%$host_cpu%g
6299s%@host_vendor@%$host_vendor%g
6300s%@host_os@%$host_os%g
6301s%@target@%$target%g
6302s%@target_alias@%$target_alias%g
6303s%@target_cpu@%$target_cpu%g
6304s%@target_vendor@%$target_vendor%g
6305s%@target_os@%$target_os%g
6306s%@build@%$build%g
6307s%@build_alias@%$build_alias%g
6308s%@build_cpu@%$build_cpu%g
6309s%@build_vendor@%$build_vendor%g
6310s%@build_os@%$build_os%g
6311s%@INSTALL_PROGRAM@%$INSTALL_PROGRAM%g
6312s%@INSTALL_SCRIPT@%$INSTALL_SCRIPT%g
6313s%@INSTALL_DATA@%$INSTALL_DATA%g
6314s%@PACKAGE@%$PACKAGE%g
6315s%@VERSION@%$VERSION%g
6316s%@ACLOCAL@%$ACLOCAL%g
6317s%@AUTOCONF@%$AUTOCONF%g
6318s%@AUTOMAKE@%$AUTOMAKE%g
6319s%@AUTOHEADER@%$AUTOHEADER%g
6320s%@MAKEINFO@%$MAKEINFO%g
6321s%@SET_MAKE@%$SET_MAKE%g
5f68c319 6322s%@CC@%$CC%g
252b5132 6323s%@LN_S@%$LN_S%g
ac48eca1
AO
6324s%@OBJEXT@%$OBJEXT%g
6325s%@EXEEXT@%$EXEEXT%g
6326s%@RANLIB@%$RANLIB%g
6327s%@STRIP@%$STRIP%g
bedf545c 6328s%@LIBTOOL@%$LIBTOOL%g
a2d91340 6329s%@WARN_CFLAGS@%$WARN_CFLAGS%g
76a27922 6330s%@GDBINIT@%$GDBINIT%g
252b5132
RH
6331s%@cgen_cpu_prefix@%$cgen_cpu_prefix%g
6332s%@extra_objects@%$extra_objects%g
6333s%@target_cpu_type@%$target_cpu_type%g
6334s%@obj_format@%$obj_format%g
6335s%@te_file@%$te_file%g
6336s%@install_tooldir@%$install_tooldir%g
6337s%@atof@%$atof%g
6338s%@BFDLIB@%$BFDLIB%g
6339s%@OPCODES_LIB@%$OPCODES_LIB%g
6340s%@ALL_OBJ_DEPS@%$ALL_OBJ_DEPS%g
6341s%@YACC@%$YACC%g
6342s%@LEX@%$LEX%g
6343s%@LEXLIB@%$LEXLIB%g
6344s%@CPP@%$CPP%g
6345s%@LEX_OUTPUT_ROOT@%$LEX_OUTPUT_ROOT%g
6346s%@ALLOCA@%$ALLOCA%g
6347s%@USE_NLS@%$USE_NLS%g
6348s%@MSGFMT@%$MSGFMT%g
6349s%@GMSGFMT@%$GMSGFMT%g
6350s%@XGETTEXT@%$XGETTEXT%g
6351s%@USE_INCLUDED_LIBINTL@%$USE_INCLUDED_LIBINTL%g
6352s%@CATALOGS@%$CATALOGS%g
6353s%@CATOBJEXT@%$CATOBJEXT%g
6354s%@DATADIRNAME@%$DATADIRNAME%g
6355s%@GMOFILES@%$GMOFILES%g
6356s%@INSTOBJEXT@%$INSTOBJEXT%g
6357s%@INTLDEPS@%$INTLDEPS%g
6358s%@INTLLIBS@%$INTLLIBS%g
6359s%@INTLOBJS@%$INTLOBJS%g
6360s%@POFILES@%$POFILES%g
6361s%@POSUB@%$POSUB%g
6362s%@INCLUDE_LOCALE_H@%$INCLUDE_LOCALE_H%g
6363s%@GT_NO@%$GT_NO%g
6364s%@GT_YES@%$GT_YES%g
6365s%@MKINSTALLDIRS@%$MKINSTALLDIRS%g
6366s%@l@%$l%g
6367s%@MAINTAINER_MODE_TRUE@%$MAINTAINER_MODE_TRUE%g
6368s%@MAINTAINER_MODE_FALSE@%$MAINTAINER_MODE_FALSE%g
6369s%@MAINT@%$MAINT%g
39bec121 6370s%@LIBM@%$LIBM%g
252b5132
RH
6371
6372CEOF
6373EOF
6374
6375cat >> $CONFIG_STATUS <<\EOF
6376
6377# Split the substitutions into bite-sized pieces for seds with
6378# small command number limits, like on Digital OSF/1 and HP-UX.
6379ac_max_sed_cmds=90 # Maximum number of lines to put in a sed script.
6380ac_file=1 # Number of current file.
6381ac_beg=1 # First line for current file.
6382ac_end=$ac_max_sed_cmds # Line after last line for current file.
6383ac_more_lines=:
6384ac_sed_cmds=""
6385while $ac_more_lines; do
6386 if test $ac_beg -gt 1; then
6387 sed "1,${ac_beg}d; ${ac_end}q" conftest.subs > conftest.s$ac_file
6388 else
6389 sed "${ac_end}q" conftest.subs > conftest.s$ac_file
6390 fi
6391 if test ! -s conftest.s$ac_file; then
6392 ac_more_lines=false
6393 rm -f conftest.s$ac_file
6394 else
6395 if test -z "$ac_sed_cmds"; then
6396 ac_sed_cmds="sed -f conftest.s$ac_file"
6397 else
6398 ac_sed_cmds="$ac_sed_cmds | sed -f conftest.s$ac_file"
6399 fi
6400 ac_file=`expr $ac_file + 1`
6401 ac_beg=$ac_end
6402 ac_end=`expr $ac_end + $ac_max_sed_cmds`
6403 fi
6404done
6405if test -z "$ac_sed_cmds"; then
6406 ac_sed_cmds=cat
6407fi
6408EOF
6409
6410cat >> $CONFIG_STATUS <<EOF
6411
76a27922 6412CONFIG_FILES=\${CONFIG_FILES-"Makefile doc/Makefile ${GDBINIT}:gdbinit.in po/Makefile.in:po/Make-in"}
252b5132
RH
6413EOF
6414cat >> $CONFIG_STATUS <<\EOF
6415for ac_file in .. $CONFIG_FILES; do if test "x$ac_file" != x..; then
6416 # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in".
6417 case "$ac_file" in
6418 *:*) ac_file_in=`echo "$ac_file"|sed 's%[^:]*:%%'`
6419 ac_file=`echo "$ac_file"|sed 's%:.*%%'` ;;
6420 *) ac_file_in="${ac_file}.in" ;;
6421 esac
6422
6423 # Adjust a relative srcdir, top_srcdir, and INSTALL for subdirectories.
6424
6425 # Remove last slash and all that follows it. Not all systems have dirname.
6426 ac_dir=`echo $ac_file|sed 's%/[^/][^/]*$%%'`
6427 if test "$ac_dir" != "$ac_file" && test "$ac_dir" != .; then
6428 # The file is in a subdirectory.
6429 test ! -d "$ac_dir" && mkdir "$ac_dir"
6430 ac_dir_suffix="/`echo $ac_dir|sed 's%^\./%%'`"
6431 # A "../" for each directory in $ac_dir_suffix.
6432 ac_dots=`echo $ac_dir_suffix|sed 's%/[^/]*%../%g'`
6433 else
6434 ac_dir_suffix= ac_dots=
6435 fi
6436
6437 case "$ac_given_srcdir" in
6438 .) srcdir=.
6439 if test -z "$ac_dots"; then top_srcdir=.
6440 else top_srcdir=`echo $ac_dots|sed 's%/$%%'`; fi ;;
6441 /*) srcdir="$ac_given_srcdir$ac_dir_suffix"; top_srcdir="$ac_given_srcdir" ;;
6442 *) # Relative path.
6443 srcdir="$ac_dots$ac_given_srcdir$ac_dir_suffix"
6444 top_srcdir="$ac_dots$ac_given_srcdir" ;;
6445 esac
6446
6447 case "$ac_given_INSTALL" in
6448 [/$]*) INSTALL="$ac_given_INSTALL" ;;
6449 *) INSTALL="$ac_dots$ac_given_INSTALL" ;;
6450 esac
6451
6452 echo creating "$ac_file"
6453 rm -f "$ac_file"
6454 configure_input="Generated automatically from `echo $ac_file_in|sed 's%.*/%%'` by configure."
6455 case "$ac_file" in
6456 *Makefile*) ac_comsub="1i\\
6457# $configure_input" ;;
6458 *) ac_comsub= ;;
6459 esac
6460
6461 ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s%:% $ac_given_srcdir/%g"`
6462 sed -e "$ac_comsub
6463s%@configure_input@%$configure_input%g
6464s%@srcdir@%$srcdir%g
6465s%@top_srcdir@%$top_srcdir%g
6466s%@INSTALL@%$INSTALL%g
6467" $ac_file_inputs | (eval "$ac_sed_cmds") > $ac_file
6468fi; done
6469rm -f conftest.s*
6470
6471# These sed commands are passed to sed as "A NAME B NAME C VALUE D", where
6472# NAME is the cpp macro being defined and VALUE is the value it is being given.
6473#
6474# ac_d sets the value in "#define NAME VALUE" lines.
6475ac_dA='s%^\([ ]*\)#\([ ]*define[ ][ ]*\)'
6476ac_dB='\([ ][ ]*\)[^ ]*%\1#\2'
6477ac_dC='\3'
6478ac_dD='%g'
6479# ac_u turns "#undef NAME" with trailing blanks into "#define NAME VALUE".
6480ac_uA='s%^\([ ]*\)#\([ ]*\)undef\([ ][ ]*\)'
6481ac_uB='\([ ]\)%\1#\2define\3'
6482ac_uC=' '
6483ac_uD='\4%g'
6484# ac_e turns "#undef NAME" without trailing blanks into "#define NAME VALUE".
6485ac_eA='s%^\([ ]*\)#\([ ]*\)undef\([ ][ ]*\)'
6486ac_eB='$%\1#\2define\3'
6487ac_eC=' '
6488ac_eD='%g'
6489
6490if test "${CONFIG_HEADERS+set}" != set; then
6491EOF
6492cat >> $CONFIG_STATUS <<EOF
6493 CONFIG_HEADERS="config.h:config.in"
6494EOF
6495cat >> $CONFIG_STATUS <<\EOF
6496fi
6497for ac_file in .. $CONFIG_HEADERS; do if test "x$ac_file" != x..; then
6498 # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in".
6499 case "$ac_file" in
6500 *:*) ac_file_in=`echo "$ac_file"|sed 's%[^:]*:%%'`
6501 ac_file=`echo "$ac_file"|sed 's%:.*%%'` ;;
6502 *) ac_file_in="${ac_file}.in" ;;
6503 esac
6504
6505 echo creating $ac_file
6506
6507 rm -f conftest.frag conftest.in conftest.out
6508 ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s%:% $ac_given_srcdir/%g"`
6509 cat $ac_file_inputs > conftest.in
6510
6511EOF
6512
6513# Transform confdefs.h into a sed script conftest.vals that substitutes
6514# the proper values into config.h.in to produce config.h. And first:
6515# Protect against being on the right side of a sed subst in config.status.
6516# Protect against being in an unquoted here document in config.status.
6517rm -f conftest.vals
6518cat > conftest.hdr <<\EOF
6519s/[\\&%]/\\&/g
6520s%[\\$`]%\\&%g
6521s%#define \([A-Za-z_][A-Za-z0-9_]*\) *\(.*\)%${ac_dA}\1${ac_dB}\1${ac_dC}\2${ac_dD}%gp
6522s%ac_d%ac_u%gp
6523s%ac_u%ac_e%gp
6524EOF
6525sed -n -f conftest.hdr confdefs.h > conftest.vals
6526rm -f conftest.hdr
6527
6528# This sed command replaces #undef with comments. This is necessary, for
6529# example, in the case of _POSIX_SOURCE, which is predefined and required
6530# on some systems where configure will not decide to define it.
6531cat >> conftest.vals <<\EOF
6532s%^[ ]*#[ ]*undef[ ][ ]*[a-zA-Z_][a-zA-Z_0-9]*%/* & */%
6533EOF
6534
6535# Break up conftest.vals because some shells have a limit on
6536# the size of here documents, and old seds have small limits too.
6537
6538rm -f conftest.tail
6539while :
6540do
6541 ac_lines=`grep -c . conftest.vals`
6542 # grep -c gives empty output for an empty file on some AIX systems.
6543 if test -z "$ac_lines" || test "$ac_lines" -eq 0; then break; fi
6544 # Write a limited-size here document to conftest.frag.
6545 echo ' cat > conftest.frag <<CEOF' >> $CONFIG_STATUS
6546 sed ${ac_max_here_lines}q conftest.vals >> $CONFIG_STATUS
6547 echo 'CEOF
6548 sed -f conftest.frag conftest.in > conftest.out
6549 rm -f conftest.in
6550 mv conftest.out conftest.in
6551' >> $CONFIG_STATUS
6552 sed 1,${ac_max_here_lines}d conftest.vals > conftest.tail
6553 rm -f conftest.vals
6554 mv conftest.tail conftest.vals
6555done
6556rm -f conftest.vals
6557
6558cat >> $CONFIG_STATUS <<\EOF
6559 rm -f conftest.frag conftest.h
6560 echo "/* $ac_file. Generated automatically by configure. */" > conftest.h
6561 cat conftest.in >> conftest.h
6562 rm -f conftest.in
6563 if cmp -s $ac_file conftest.h 2>/dev/null; then
6564 echo "$ac_file is unchanged"
6565 rm -f conftest.h
6566 else
6567 # Remove last slash and all that follows it. Not all systems have dirname.
6568 ac_dir=`echo $ac_file|sed 's%/[^/][^/]*$%%'`
6569 if test "$ac_dir" != "$ac_file" && test "$ac_dir" != .; then
6570 # The file is in a subdirectory.
6571 test ! -d "$ac_dir" && mkdir "$ac_dir"
6572 fi
6573 rm -f $ac_file
6574 mv conftest.h $ac_file
6575 fi
6576fi; done
6577
6578EOF
6579cat >> $CONFIG_STATUS <<EOF
6580
6581target_cpu_type=${target_cpu_type}
6582 cgen_cpu_prefix=${cgen_cpu_prefix}
6583 obj_format=${obj_format}
6584 te_file=${te_file}
6585EOF
6586cat >> $CONFIG_STATUS <<\EOF
6587test -z "$CONFIG_HEADERS" || echo timestamp > stamp-h
6588rm -f targ-cpu.c targ-cpu.h obj-format.h obj-format.c targ-env.h atof-targ.c itbl-cpu.h
6589 echo '#include "tc-'"${target_cpu_type}"'.h"' > targ-cpu.h
6590 echo '#include "obj-'"${obj_format}"'.h"' > obj-format.h
6591 echo '#include "te-'"${te_file}"'.h"' > targ-env.h
6592 echo '#include "itbl-'"${target_cpu_type}"'.h"' > itbl-cpu.h
6593 if test "x$cgen_cpu_prefix" != x ; then
6594 echo '#include "opcodes/'"${cgen_cpu_prefix}"'-desc.h"' > cgen-desc.h
6595 fi
6596
6597 sed -e '/POTFILES =/r po/POTFILES' po/Makefile.in > po/Makefile
6598exit 0
6599EOF
6600chmod +x $CONFIG_STATUS
6601rm -fr confdefs* $ac_clean_files
a2d91340 6602test "$no_create" = yes || ${CONFIG_SHELL-/bin/sh} $CONFIG_STATUS || exit 1
252b5132 6603
This page took 0.409831 seconds and 4 git commands to generate.