]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - configure.in
This commit was generated by cvs2svn to track changes on a CVS vendor
[thirdparty/binutils-gdb.git] / configure.in
1 #! /bin/bash
2 ##############################################################################
3
4 ## This file is a shell script fragment that supplies the information
5 ## necessary to tailor a template configure script into the configure
6 ## script appropriate for this directory. For more information, check
7 ## any existing configure script.
8
9 ## Be warned, there are two types of configure.in files. There are those
10 ## used by Autoconf, which are macros which are expanded into a configure
11 ## script by autoconf. The other sort, of which this is one, is executed
12 ## by Cygnus configure.
13
14 ## For more information on these two systems, check out the documentation
15 ## for 'Autoconf' (autoconf.texi) and 'Configure' (configure.texi).
16
17 # Copyright (C) 1992, 93, 94, 95, 96, 97, 1998, 1999 Free Software Foundation, Inc.
18 #
19 # This file is free software; you can redistribute it and/or modify it
20 # under the terms of the GNU General Public License as published by
21 # the Free Software Foundation; either version 2 of the License, or
22 # (at your option) any later version.
23 #
24 # This program is distributed in the hope that it will be useful, but
25 # WITHOUT ANY WARRANTY; without even the implied warranty of
26 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
27 # General Public License for more details.
28 #
29 # You should have received a copy of the GNU General Public License
30 # along with this program; if not, write to the Free Software
31 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
32
33 ##############################################################################
34
35 ### To add a new directory to the tree, first choose whether it is a target
36 ### or a host dependent tool. Then put it into the appropriate list
37 ### (library or tools, host or target), doing a dependency sort. For
38 ### example, gdb requires that byacc (or bison) be built first, so it is in
39 ### the ${host_tools} list after byacc and bison.
40
41
42 # these libraries are used by various programs built for the host environment
43 #
44 host_libs="intl mmalloc libiberty opcodes bfd readline gash db tcl tk tcl8.1 tk8.1 tclX itcl tix libgui"
45
46 if [ "${enable_gdbgui}" = "yes" ] ; then
47 host_libs="${host_libs} libgui"
48 fi
49
50 # these tools are built for the host environment
51 # Note, the powerpc-eabi build depends on sim occurring before gdb in order to
52 # know that we are building the simulator.
53 host_tools="texinfo byacc flex bison binutils ld gas gcc sim gdb make patch prms send-pr gprof gdbtest tgas etc expect dejagnu ash bash bzip2 m4 autoconf automake libtool ispell grep diff rcs cvssrc fileutils shellutils time textutils wdiff find emacs emacs19 uudecode hello tar gzip indent recode release sed utils guile perl apache inet gawk findutils snavigator libtool gettext zip"
54
55 # these libraries are built for the target environment, and are built after
56 # the host libraries and the host tools (which may be a cross compiler)
57 #
58 target_libs="target-libiberty \
59 target-libgloss \
60 target-newlib \
61 target-libio \
62 target-librx \
63 target-libstdc++ \
64 target-libg++"
65
66 # these tools are built using the target libs, and are intended to run only
67 # in the target environment
68 #
69 # note: any program that *uses* libraries that are in the "target_libs"
70 # list belongs in this list. those programs are also very likely
71 # candidates for the "native_only" list which follows
72 #
73 target_tools="target-examples target-groff target-gperf"
74
75 ################################################################################
76
77 ## These two lists are of directories that are to be removed from the
78 ## ${configdirs} list for either cross-compilations or for native-
79 ## compilations. For example, it doesn't make that much sense to
80 ## cross-compile Emacs, nor is it terribly useful to compile target-libiberty in
81 ## a native environment.
82
83 # directories to be built in the native environment only
84 #
85 # This must be a single line because of the way it is searched by grep in
86 # the code below.
87 native_only="autoconf automake libtool cvssrc emacs emacs19 fileutils find gawk gettext grep gzip hello indent ispell m4 rcs recode sed shellutils tar textutils gash uudecode wdiff gprof target-groff guile perl apache inet time ash bash bzip2 prms snavigator gnuserv target-gperf"
88
89 # directories to be built in a cross environment only
90 #
91 cross_only="target-libgloss target-newlib target-cygmon target-opcodes target-libstub"
92
93 ## All tools belong in one of the four categories, and are assigned above
94 ## We assign ${configdirs} this way to remove all embedded newlines. This
95 ## is important because configure will choke if they ever get through.
96 ## ${configdirs} is directories we build using the host tools.
97 ## ${target_configdirs} is directories we build using the target tools.
98 #
99 configdirs=`echo ${host_libs} ${host_tools}`
100 target_configdirs=`echo ${target_libs} ${target_tools}`
101
102 ################################################################################
103
104 srctrigger=move-if-change
105 srcname="gnu development package"
106
107 # This gets set non-empty for some net releases of packages.
108 appdirs=""
109
110 # per-host:
111
112 # Work in distributions that contain no compiler tools, like Autoconf.
113 if [ -d ${srcdir}/config ]; then
114 case "${host}" in
115 m68k-hp-hpux*)
116 host_makefile_frag="${host_makefile_frag} config/mh-hp300"
117 ;;
118 m68k-apollo-sysv*)
119 host_makefile_frag="${host_makefile_frag} config/mh-apollo68"
120 ;;
121 m68k-apollo-bsd*)
122 host_makefile_frag="${host_makefile_frag} config/mh-a68bsd"
123 ;;
124 m88k-dg-dgux*)
125 host_makefile_frag="${host_makefile_frag} config/mh-dgux"
126 ;;
127 m88k-harris-cxux*)
128 host_makefile_frag="${host_makefile_frag} config/mh-cxux"
129 ;;
130 m88k-motorola-sysv*)
131 host_makefile_frag="${host_makefile_frag} config/mh-delta88"
132 ;;
133 mips*-dec-ultrix*)
134 host_makefile_frag="${host_makefile_frag} config/mh-decstation"
135 ;;
136 mips*-nec-sysv4*)
137 host_makefile_frag="${host_makefile_frag} config/mh-necv4"
138 ;;
139 mips*-sgi-irix6*)
140 host_makefile_frag="${host_makefile_frag} config/mh-irix6"
141 ;;
142 mips*-sgi-irix5*)
143 host_makefile_frag="${host_makefile_frag} config/mh-irix5"
144 ;;
145 mips*-sgi-irix4*)
146 host_makefile_frag="${host_makefile_frag} config/mh-irix4"
147 ;;
148 mips*-sgi-irix3*)
149 host_makefile_frag="${host_makefile_frag} config/mh-sysv"
150 ;;
151 mips*-*-sysv4*)
152 host_makefile_frag="${host_makefile_frag} config/mh-sysv4"
153 ;;
154 mips*-*-sysv*)
155 host_makefile_frag="${host_makefile_frag} config/mh-riscos"
156 ;;
157 i[3456]86-*-sysv5*)
158 host_makefile_frag="${host_makefile_frag} config/mh-sysv5"
159 ;;
160 i[3456]86-*-dgux*)
161 host_makefile_frag="${host_makefile_frag} config/mh-dgux386"
162 ;;
163 i[3456]86-ncr-sysv4.3*)
164 host_makefile_frag="${host_makefile_frag} config/mh-ncrsvr43"
165 ;;
166 i[3456]86-ncr-sysv4*)
167 host_makefile_frag="${host_makefile_frag} config/mh-ncr3000"
168 ;;
169 i[3456]86-*-sco3.2v5*)
170 host_makefile_frag="${host_makefile_frag} config/mh-sysv"
171 ;;
172 i[3456]86-*-sco*)
173 host_makefile_frag="${host_makefile_frag} config/mh-sco"
174 ;;
175 i[3456]86-*-udk*)
176 host_makefile_frag="${host_makefile_frag} config/mh-sysv5"
177 ;;
178 i[3456]86-*-isc*)
179 host_makefile_frag="${host_makefile_frag} config/mh-sysv"
180 ;;
181 i[3456]86-*-solaris2*)
182 host_makefile_frag="${host_makefile_frag} config/mh-sysv4"
183 ;;
184 i[3456]86-*-aix*)
185 host_makefile_frag="${host_makefile_frag} config/mh-aix386"
186 ;;
187 i[3456]86-*-msdosdjgpp*)
188 host_makefile_frag="${host_makefile_frag} config/mh-djgpp"
189 ;;
190 *-cygwin*)
191 host_makefile_frag="${host_makefile_frag} config/mh-cygwin"
192 ;;
193 *-mingw32*)
194 host_makefile_frag="${host_makefile_frag} config/mh-mingw32"
195 ;;
196 *-interix*)
197 host_makefile_frag="${host_makefile_frag} config/mh-interix"
198 ;;
199 *-windows*)
200 host_makefile_frag="${host_makefile_frag} config/mh-windows"
201 ;;
202 vax-*-ultrix2*)
203 host_makefile_frag="${host_makefile_frag} config/mh-vaxult2"
204 ;;
205 *-*-solaris2*)
206 host_makefile_frag="${host_makefile_frag} config/mh-solaris"
207 ;;
208 m68k-sun-sunos*)
209 host_makefile_frag="${host_makefile_frag} config/mh-sun3"
210 ;;
211 *-hp-hpux[78]*)
212 host_makefile_frag="${host_makefile_frag} config/mh-hpux8"
213 ;;
214 *-hp-hpux*)
215 host_makefile_frag="${host_makefile_frag} config/mh-hpux"
216 ;;
217 *-*-hiux*)
218 host_makefile_frag="${host_makefile_frag} config/mh-hpux"
219 ;;
220 rs6000-*-lynxos*)
221 host_makefile_frag="${host_makefile_frag} config/mh-lynxrs6k"
222 ;;
223 *-*-lynxos*)
224 host_makefile_frag="${host_makefile_frag} config/mh-lynxos"
225 ;;
226 *-*-aix4.[3456789]* | *-*-aix[56789].*)
227 host_makefile_frag="${host_makefile_frag} config/mh-aix43"
228 ;;
229 *-*-sysv4*)
230 host_makefile_frag="${host_makefile_frag} config/mh-sysv4"
231 ;;
232 *-*-sysv*)
233 host_makefile_frag="${host_makefile_frag} config/mh-sysv"
234 ;;
235 esac
236 fi
237
238 # If we aren't going to be using gcc, see if we can extract a definition
239 # of CC from the fragment.
240 if [ -z "${CC}" ] && [ "${build}" = "${host}" ]; then
241 IFS="${IFS= }"; save_ifs="$IFS"; IFS="${IFS}:"
242 found=
243 for dir in $PATH; do
244 test -z "$dir" && dir=.
245 if test -f $dir/gcc; then
246 found=yes
247 break
248 fi
249 done
250 IFS="$save_ifs"
251 if [ -z "${found}" ] && [ -n "${host_makefile_frag}" ] && [ -f "${srcdir}/${host_makefile_frag}" ]; then
252 xx=`sed -n -e 's/^[ ]*CC[ ]*=[ ]*\(.*\)$/\1/p' < ${srcdir}/${host_makefile_frag}`
253 if [ -n "${xx}" ] ; then
254 CC=$xx
255 fi
256 fi
257 fi
258
259 # We default to --with-shared on platforms where -fpic is meaningless.
260 # Well, we don't yet, but we will.
261 if false && [ "${host}" = "${target}" ] && [ x${enable_shared} = x ]; then
262 case "${target}" in
263 alpha*-dec-osf*) enable_shared=yes ;;
264 alpha*-*-linux*) enable_shared=yes ;;
265 mips-sgi-irix5*) enable_shared=yes ;;
266 *) enable_shared=no ;;
267 esac
268 fi
269
270 case "${enable_shared}" in
271 yes) shared=yes ;;
272 no) shared=no ;;
273 "") shared=no ;;
274 *) shared=yes ;;
275 esac
276
277 if [ x${shared} = xyes ]; then
278 case "${host}" in
279 alpha*-*-linux*)
280 host_makefile_frag="${host_makefile_frag} config/mh-elfalphapic"
281 ;;
282 arm*-*-*)
283 host_makefile_frag="${host_makefile_frag} config/mh-armpic"
284 ;;
285 hppa*-*-*)
286 host_makefile_frag="${host_makefile_frag} config/mh-papic"
287 ;;
288 i[3456]86-*-cygwin*)
289 # We don't want -fPIC on Cygwin.
290 ;;
291 i[3456]86-*-*)
292 host_makefile_frag="${host_makefile_frag} config/mh-x86pic"
293 ;;
294 sparc64-*-*)
295 host_makefile_frag="${host_makefile_frag} config/mh-sparcpic"
296 ;;
297 powerpc*-*-aix*)
298 # We don't want -fPIC on AIX.
299 ;;
300 powerpc*-*-*)
301 host_makefile_frag="${host_makefile_frag} config/mh-ppcpic"
302 ;;
303 *-*-*)
304 if test -f ${srcdir}/config/mh-${host_cpu}pic; then
305 host_makefile_frag="${host_makefile_frag} config/mh-${host_cpu}pic"
306 fi
307 ;;
308 esac
309 fi
310
311 rm -f mh-frag
312 if [ -n "${host_makefile_frag}" ] ; then
313 for f in ${host_makefile_frag}
314 do
315 cat ${srcdir}/$f >> mh-frag
316 done
317 host_makefile_frag=mh-frag
318 fi
319
320 # per-target:
321
322 case "${target}" in
323 v810*)
324 target_makefile_frag="${target_makefile_frag} config/mt-v810"
325 ;;
326 i[3456]86-*-netware*)
327 target_makefile_frag="${target_makefile_frag} config/mt-netware"
328 ;;
329 powerpc-*-netware*)
330 target_makefile_frag="${target_makefile_frag} config/mt-netware"
331 ;;
332 *-*-linux-gnu)
333 target_makefile_frag="${target_makefile_frag} config/mt-linux"
334 ;;
335 esac
336
337 # If --enable-target-optspace always use -Os instead of -O2 to build
338 # the target libraries, similarly if it is not specified, use -Os
339 # on selected platforms.
340 case "${enable_target_optspace}:${target}" in
341 yes:*)
342 target_makefile_frag="${target_makefile_frag} config/mt-ospace"
343 ;;
344 # CYGNUS LOCAL d10v, d30v, fr30
345 :d30v-*)
346 target_makefile_frag="${target_makefile_frag} config/mt-d30v"
347 ;;
348 :m32r-* | :d10v-* | :fr30-*)
349 target_makefile_frag="${target_makefile_frag} config/mt-ospace"
350 ;;
351 no:* | :*)
352 ;;
353 *)
354 echo "*** bad value \"${enable_target_optspace}\" for --enable-target-optspace flag; ignored" 1>&2
355 ;;
356 esac
357
358 skipdirs=
359 gasdir=gas
360 use_gnu_ld=
361 use_gnu_as=
362
363 # some tools are so dependent upon X11 that if we're not building with X,
364 # it's not even worth trying to configure, much less build, that tool.
365
366 case ${with_x} in
367 yes | "") # the default value for this tree is that X11 is available
368 ;;
369 no)
370 skipdirs="${skipdirs} tk libgui gash"
371 ;;
372 *)
373 echo "*** bad value \"${with_x}\" for -with-x flag; ignored" 1>&2
374 ;;
375 esac
376
377 # Some tools are only suitable for building in a "native" situation.
378 # Those are added when we have a host==target configuration. For cross
379 # toolchains, we add some directories that should only be useful in a
380 # cross-compiler.
381
382 is_cross_compiler=
383
384 if [ x"${host}" = x"${target}" ] ; then
385 # when doing a native toolchain, don't build the targets
386 # that are in the 'cross only' list
387 skipdirs="${skipdirs} ${cross_only}"
388 is_cross_compiler=no
389 else
390 # similarly, don't build the targets in the 'native only'
391 # list when building a cross compiler
392 skipdirs="${skipdirs} ${native_only}"
393 is_cross_compiler=yes
394 fi
395
396 # We always want to use the same name for this directory, so that dejagnu
397 # can reliably find it.
398 target_subdir=${target_alias}
399
400 if [ ! -d ${target_subdir} ] ; then
401 if mkdir ${target_subdir} ; then true
402 else
403 echo "'*** could not make ${PWD=`pwd`}/${target_subdir}" 1>&2
404 exit 1
405 fi
406 fi
407
408 copy_dirs=
409
410 # Handle --with-headers=XXX. The contents of the named directory are
411 # copied to $(tooldir)/sys-include.
412 if [ x"${with_headers}" != x ]; then
413 if [ x${is_cross_compiler} = xno ]; then
414 echo 1>&2 '***' --with-headers is only supported when cross compiling
415 exit 1
416 fi
417 case "${exec_prefixoption}" in
418 "") x=${prefix} ;;
419 *) x=${exec_prefix} ;;
420 esac
421 copy_dirs="${copy_dirs} ${with_headers} $x/${target_alias}/sys-include"
422 fi
423
424 # Handle --with-libs=XXX. Multiple directories are permitted. The
425 # contents are copied to $(tooldir)/lib.
426 if [ x"${with_libs}" != x ]; then
427 if [ x${is_cross_compiler} = xno ]; then
428 echo 1>&2 '***' --with-libs is only supported when cross compiling
429 exit 1
430 fi
431 # Copy the libraries in reverse order, so that files in the first named
432 # library override files in subsequent libraries.
433 case "${exec_prefixoption}" in
434 "") x=${prefix} ;;
435 *) x=${exec_prefix} ;;
436 esac
437 for l in ${with_libs}; do
438 copy_dirs="$l $x/${target_alias}/lib ${copy_dirs}"
439 done
440 fi
441
442 # If both --with-headers and --with-libs are specified, default to
443 # --without-newlib.
444 if [ x"${with_headers}" != x ] && [ x"${with_libs}" != x ]; then
445 if [ x"${with_newlib}" = x ]; then
446 with_newlib=no
447 fi
448 fi
449
450 # Recognize --with-newlib/--without-newlib.
451 if [ x${with_newlib} = xno ]; then
452 skipdirs="${skipdirs} target-newlib"
453 elif [ x${with_newlib} = xyes ]; then
454 skipdirs=`echo " ${skipdirs} " | sed -e 's/ target-newlib / /'`
455 fi
456
457 # Default to using --with-stabs for certain targets.
458 if [ x${with_stabs} = x ]; then
459 case "${target}" in
460 mips*-*-irix6*)
461 ;;
462 mips*-*-* | alpha*-*-osf*)
463 with_stabs=yes;
464 withoptions="${withoptions} --with-stabs"
465 ;;
466 esac
467 fi
468
469 # Handle ${copy_dirs}
470 set fnord ${copy_dirs}
471 shift
472 while [ $# != 0 ]; do
473 if [ -f $2/COPIED ] && [ x"`cat $2/COPIED`" = x"$1" ]; then
474 :
475 else
476 echo Copying $1 to $2
477
478 # Use the install script to create the directory and all required
479 # parent directories.
480 if [ -d $2 ]; then
481 :
482 else
483 echo >config.temp
484 ${srcdir}/install-sh -c -m 644 config.temp $2/COPIED
485 fi
486
487 # Copy the directory, assuming we have tar.
488 # FIXME: Should we use B in the second tar? Not all systems support it.
489 (cd $1; tar -cf - .) | (cd $2; tar -xpf -)
490
491 # It is the responsibility of the user to correctly adjust all
492 # symlinks. If somebody can figure out how to handle them correctly
493 # here, feel free to add the code.
494
495 echo $1 > $2/COPIED
496 fi
497 shift; shift
498 done
499
500 # Configure extra directories which are host specific
501
502 case "${host}" in
503 i[3456]86-*-go32*)
504 configdirs="$configdirs dosrel" ;;
505 i[3456]86-*-mingw32*)
506 configdirs="$configdirs dosrel" ;;
507 *-cygwin*)
508 configdirs="$configdirs libtermcap dosrel" ;;
509 esac
510
511 # Remove more programs from consideration, based on the host or
512 # target this usually means that a port of the program doesn't
513 # exist yet.
514
515 noconfigdirs=""
516
517 case "${host}" in
518 i[3456]86-*-vsta)
519 noconfigdirs="tcl expect dejagnu make texinfo bison patch flex byacc send-pr gprof uudecode dejagnu diff guile perl apache inet itcl tix db snavigator gnuserv gettext"
520 ;;
521 i[3456]86-*-go32* | i[3456]86-*-msdosdjgpp*)
522 noconfigdirs="tcl tk expect dejagnu make texinfo bison patch flex byacc send-pr uudecode dejagnu diff guile perl apache inet itcl tix db snavigator gnuserv gettext"
523 ;;
524 i[3456]86-*-mingw32*)
525 # noconfigdirs="tcl tk expect dejagnu make texinfo bison patch flex byacc send-pr uudecode dejagnu diff guile perl apache inet itcl tix db snavigator gnuserv"
526 noconfigdirs="expect dejagnu cvs autoconf automake send-pr gprof rcs guile perl texinfo apache inet libtool"
527 ;;
528 i[3456]86-*-beos*)
529 noconfigdirs="$noconfigdirs tk itcl tix libgui gdb"
530 ;;
531 *-*-cygwin*)
532 noconfigdirs="autoconf automake send-pr gprof rcs guile perl texinfo apache inet"
533 ;;
534 *-*-netbsd*)
535 noconfigdirs="rcs"
536 ;;
537 ppc*-*-pe)
538 noconfigdirs="patch diff make tk tcl expect dejagnu cvssrc autoconf automake texinfo bison send-pr gprof rcs guile perl apache inet itcl tix db snavigator gnuserv"
539 ;;
540 esac
541
542
543 case "${target}" in
544 *-*-netware)
545 noconfigdirs="$noconfigdirs target-libg++ target-libstdc++ target-librx target-newlib target-libiberty target-libgloss"
546 ;;
547 *-*-rtems*)
548 noconfigdirs="$noconfigdirs target-libgloss"
549 ;;
550 *-*-vxworks*)
551 noconfigdirs="$noconfigdirs target-newlib target-libgloss"
552 ;;
553 alpha*-dec-osf*)
554 # ld works, but does not support shared libraries. emacs doesn't
555 # work. newlib is not 64 bit ready. I'm not sure about fileutils.
556 # gas doesn't generate exception information.
557 noconfigdirs="$noconfigdirs gas ld emacs fileutils target-newlib target-libgloss"
558 ;;
559 alpha*-*-*vms*)
560 noconfigdirs="$noconfigdirs gdb ld target-newlib target-libgloss"
561 ;;
562 alpha*-*-linux*)
563 # newlib is not 64 bit ready
564 noconfigdirs="$noconfigdirs target-newlib target-libgloss"
565 # linux has rx in libc
566 skipdirs="$skipdirs target-librx"
567 ;;
568 alpha*-*-*)
569 # newlib is not 64 bit ready
570 noconfigdirs="$noconfigdirs target-newlib target-libgloss"
571 ;;
572 arc-*-*)
573 noconfigdirs="$noconfigdirs target-libgloss"
574 ;;
575 arm-*-pe*)
576 noconfigdirs="$noconfigdirs target-libgloss"
577 ;;
578 arm-*-coff*)
579 noconfigdirs="$noconfigdirs target-libgloss"
580 if [ x${is_cross_compiler} != xno ] ; then
581 target_configdirs="${target_configdirs} target-bsp target-cygmon"
582 fi
583 ;;
584 arm-*-elf*)
585 noconfigdirs="$noconfigdirs target-libgloss"
586 if [ x${is_cross_compiler} != xno ] ; then
587 target_configdirs="${target_configdirs} target-bsp target-cygmon"
588 fi
589 ;;
590 arm-*-oabi*)
591 noconfigdirs="$noconfigdirs target-libgloss"
592 ;;
593 c4x-*-*)
594 noconfigdirs="$noconfigdirs target-libg++ target-libstdc++ target-libio target-librx target-libgloss"
595 ;;
596 thumb-*-coff)
597 noconfigdirs="$noconfigdirs target-libgloss"
598 ;;
599 # CYGNUS LOCAL clm/arm-elf
600 thumb-*-elf)
601 noconfigdirs="$noconfigdirs target-libgloss"
602 ;;
603 thumb-*-oabi)
604 noconfigdirs="$noconfigdirs target-libgloss"
605 ;;
606 # END CYGNUS LOCAL
607 # CYGNUS LOCAL nickc/strongarm
608 strongarm-*-elf)
609 noconfigdirs="$noconfigdirs target-libgloss"
610 if [ x${is_cross_compiler} != xno ] ; then
611 target_configdirs="${target_configdirs} target-bsp target-cygmon"
612 fi
613 ;;
614 strongarm-*-coff)
615 noconfigdirs="$noconfigdirs target-libgloss"
616 if [ x${is_cross_compiler} != xno ] ; then
617 target_configdirs="${target_configdirs} target-bsp target-cygmon"
618 fi
619 ;;
620 # END CYGNUS LOCAL
621 thumb-*-pe) # CYGNUS LOCAL nickc/thumb
622 noconfigdirs="$noconfigdirs target-libgloss"
623 ;;
624 arm-*-riscix*)
625 noconfigdirs="$noconfigdirs ld target-libgloss"
626 ;;
627 d10v-*-*)
628 noconfigdirs="$noconfigdirs target-librx target-libg++ target-libstdc++ target-libio"
629 ;;
630 # CYGNUS LOCAL d30v
631 d30v-*-*)
632 ;;
633 # END CYGNUS LOCAL
634 # CYGNUS LOCAL fr30
635 fr30-*-elf*)
636 if [ x${is_cross_compiler} != xno ] ; then
637 target_configdirs="${target_configdirs} target-bsp target-libstub target-cygmon"
638 fi
639 ;;
640 # END CYGNUS LOCAL
641 h8300*-*-* | \
642 h8500-*-*)
643 noconfigdirs="$noconfigdirs target-libg++ target-libstdc++ target-libio target-librx target-libgloss"
644 ;;
645 hppa*-*-*elf* | \
646 hppa*-*-linux-gnu* | \
647 hppa*-*-lites*)
648 # Do configure ld/binutils/gas for the above cases.
649 ;;
650 hppa*-*-*)
651 # HP's C compiler doesn't handle Emacs correctly (but on BSD and Mach
652 # cc is gcc, and on any system a user should be able to link cc to
653 # whatever they want. FIXME, emacs emacs19).
654 case "${CC}" in
655 "" | cc*) noconfigdirs="$noconfigdirs emacs emacs19" ;;
656 *) ;;
657 esac
658 noconfigdirs="$noconfigdirs ld shellutils"
659 ;;
660 i[3456]86-*-coff | i[3456]86-*-elf)
661 if [ x${is_cross_compiler} != xno ] ; then
662 target_configdirs="${target_configdirs} target-libstub target-cygmon"
663 fi
664 ;;
665 i[3456]86-*-go32* | i[3456]-*-msdosdjgpp*)
666 # but don't build gdb
667 noconfigdirs="$noconfigdirs gdb target-libg++ target-libstdc++ target-libio target-librx"
668 ;;
669 *-*-linux*)
670 # linux has rx in libc
671 skipdirs="$skipdirs target-librx"
672 ;;
673 i[3456]86-*-mingw32*)
674 target_configdirs="$target_configdirs target-mingw"
675 noconfigdirs="$noconfigdirs expect target-libgloss"
676
677 # Can't build gdb for mingw32 if not native.
678 case "${host}" in
679 i[3456]86-*-mingw32) ;; # keep gdb tcl tk expect etc.
680 *) noconfigdirs="$noconfigdirs gdb tcl tk expect itcl tix db snavigator gnuserv"
681 ;;
682 esac
683 ;;
684 *-*-cygwin*)
685 target_configdirs="$target_configdirs target-libtermcap target-winsup"
686 noconfigdirs="$noconfigdirs target-libgloss"
687 # always build newlib.
688 skipdirs=`echo " ${skipdirs} " | sed -e 's/ target-newlib / /'`
689
690 # Can't build gdb for Cygwin if not native.
691 case "${host}" in
692 *-*-cygwin*) ;; # keep gdb tcl tk expect etc.
693 *) noconfigdirs="$noconfigdirs gdb tcl tk expect itcl tix libgui db snavigator gnuserv"
694 ;;
695 esac
696 ;;
697 i[3456]86-*-pe)
698 noconfigdirs="$noconfigdirs target-libg++ target-libstdc++ target-libio target-librx target-libgloss"
699 ;;
700 i[3456]86-*-sco3.2v5*)
701 # The linker does not yet know about weak symbols in COFF,
702 # and is not configured to handle mixed ELF and COFF.
703 noconfigdirs="$noconfigdirs ld target-libgloss"
704 ;;
705 i[3456]86-*-sco*)
706 noconfigdirs="$noconfigdirs gprof target-libgloss"
707 ;;
708 i[3456]86-*-solaris2*)
709 noconfigdirs="$noconfigdirs target-libgloss"
710 ;;
711 i[3456]86-*-sysv4*)
712 # The SYSV4 C compiler doesn't handle Emacs correctly
713 case "${CC}" in
714 "" | cc*) noconfigdirs="$noconfigdirs emacs emacs19" ;;
715 *) ;;
716 esac
717 # but that's okay since emacs doesn't work anyway
718 noconfigdirs="$noconfigdirs emacs emacs19 target-libgloss"
719 ;;
720 i[3456]86-*-beos*)
721 noconfigdirs="$noconfigdirs gdb target-newlib target-libgloss"
722 ;;
723 m68k-*-elf*)
724 if [ x${is_cross_compiler} != xno ] ; then
725 target_configdirs="${target_configdirs} target-bsp target-cygmon"
726 fi
727 ;;
728 m68k-*-coff*)
729 if [ x${is_cross_compiler} != xno ] ; then
730 target_configdirs="${target_configdirs} target-bsp target-cygmon"
731 fi
732 ;;
733 mn10200-*-*)
734 noconfigdirs="$noconfigdirs"
735 if [ x${is_cross_compiler} != xno ] ; then
736 target_configdirs="${target_configdirs} target-libstub target-cygmon"
737 fi
738 ;;
739 mn10300-*-*)
740 noconfigdirs="$noconfigdirs"
741 if [ x${is_cross_compiler} != xno ] ; then
742 target_configdirs="${target_configdirs} target-bsp target-libstub target-cygmon"
743 fi
744 ;;
745 powerpc-*-aix*)
746 # copied from rs6000-*-* entry
747 noconfigdirs="$noconfigdirs gprof cvssrc target-libgloss"
748 # This is needed until gcc and ld are fixed to work together.
749 use_gnu_ld=no
750 ;;
751 powerpc*-*-winnt* | powerpc*-*-pe* | ppc*-*-pe)
752 target_configdirs="$target_configdirs target-winsup"
753 noconfigdirs="$noconfigdirs gdb tcl tk make expect target-libgloss itcl tix db snavigator gnuserv"
754 # always build newlib.
755 skipdirs=`echo " ${skipdirs} " | sed -e 's/ target-newlib / /'`
756 ;;
757 # This is temporary until we can link against shared libraries
758 powerpcle-*-solaris*)
759 noconfigdirs="$noconfigdirs gdb sim make tcl tk expect itcl tix db snavigator gnuserv"
760 ;;
761 powerpc-*-eabi)
762 if [ x${is_cross_compiler} != xno ] ; then
763 target_configdirs="${target_configdirs} target-bsp target-libstub target-cygmon"
764 fi
765 ;;
766 rs6000-*-lynxos*)
767 # The CVS server code doesn't work on the RS/6000
768 # Newlib makes problems for libg++ in crosses.
769 noconfigdirs="$noconfigdirs target-newlib gprof cvssrc"
770 ;;
771 rs6000-*-aix*)
772 noconfigdirs="$noconfigdirs gprof"
773 # This is needed until gcc and ld are fixed to work together.
774 use_gnu_ld=no
775 ;;
776 rs6000-*-*)
777 noconfigdirs="$noconfigdirs gprof"
778 ;;
779 m68k-apollo-*)
780 noconfigdirs="$noconfigdirs ld binutils gprof target-libgloss"
781 ;;
782 mips*-*-irix5*)
783 # The GNU linker does not support shared libraries.
784 # emacs is emacs 18, which does not work on Irix 5 (emacs19 does work)
785 noconfigdirs="$noconfigdirs ld gprof emacs target-libgloss"
786 ;;
787 mips*-*-irix6*)
788 # The GNU assembler does not support IRIX 6.
789 # emacs is emacs 18, which does not work on Irix 5 (emacs19 does work)
790 noconfigdirs="$noconfigdirs gas gprof emacs target-libgloss"
791 ;;
792 mips*-dec-bsd*)
793 noconfigdirs="$noconfigdirs gprof target-libgloss"
794 ;;
795 mips*-*-bsd*)
796 noconfigdirs="$noconfigdirs gprof target-libgloss"
797 ;;
798 mipstx39-*-*)
799 noconfigdirs="$noconfigdirs gprof" # same as generic mips
800 target_configdirs="${target_configdirs} target-bsp target-libstub target-cygmon"
801 ;;
802 mips*-*-*)
803 noconfigdirs="$noconfigdirs gprof"
804 ;;
805 romp-*-*)
806 noconfigdirs="$noconfigdirs bfd binutils ld gas opcodes target-libgloss"
807 ;;
808 sh-*-*)
809 case "${host}" in
810 i[3456]86-*-vsta) ;; # don't add gprof back in
811 i[3456]86-*-go32*) ;; # don't add gprof back in
812 i[3456]86-*-msdosdjgpp*) ;; # don't add gprof back in
813 *) skipdirs=`echo " ${skipdirs} " | sed -e 's/ gprof / /'` ;;
814 esac
815 noconfigdirs="$noconfigdirs target-libgloss"
816 ;;
817 sparc-*-elf*)
818 if [ x${is_cross_compiler} != xno ] ; then
819 target_configdirs="${target_configdirs} target-libstub target-cygmon"
820 fi
821 ;;
822 sparc64-*-elf*)
823 if [ x${is_cross_compiler} != xno ] ; then
824 target_configdirs="${target_configdirs} target-libstub target-cygmon"
825 fi
826 ;;
827 sparclite-*-*)
828 if [ x${is_cross_compiler} != xno ] ; then
829 target_configdirs="${target_configdirs} target-bsp target-libstub target-cygmon"
830 fi
831 ;;
832 sparc-*-sunos4*)
833 if [ x${is_cross_compiler} != xno ] ; then
834 noconfigdirs="$noconfigdirs gdb gdbtest target-newlib target-libgloss"
835 else
836 use_gnu_ld=no
837 fi
838 ;;
839 v810-*-*)
840 noconfigdirs="$noconfigdirs bfd binutils gas gcc gdb ld target-libio target-libg++ target-libstdc++ opcodes target-libgloss"
841 ;;
842 v850-*-*)
843 noconfigdirs="$noconfigdirs target-libgloss"
844 ;;
845 v850e-*-*) # CYGNUS LOCAL v850e
846 noconfigdirs="$noconfigdirs target-libgloss"
847 ;;
848 v850ea-*-*)
849 noconfigdirs="$noconfigdirs target-libgloss"
850 ;; # END CYGNUS LOCAL
851 vax-*-vms)
852 noconfigdirs="$noconfigdirs bfd binutils gdb ld target-newlib opcodes target-libgloss"
853 ;;
854 vax-*-*)
855 noconfigdirs="$noconfigdirs target-newlib target-libgloss"
856 ;;
857 *-*-lynxos*)
858 # Newlib makes problems for libg++ in crosses.
859 noconfigdirs="$noconfigdirs target-newlib target-libgloss"
860 ;;
861 *-*-macos* | \
862 *-*-mpw*)
863 # Macs want a resource compiler.
864 configdirs="$configdirs grez"
865 ;;
866 esac
867
868 # If we aren't building newlib, then don't build libgloss, since libgloss
869 # depends upon some newlib header files.
870 case "${noconfigdirs}" in
871 *target-libgloss*) ;;
872 *target-newlib*) noconfigdirs="$noconfigdirs target-libgloss" ;;
873 esac
874
875 # Make sure we don't let GNU ld be added if we didn't want it.
876 if [ x$with_gnu_ld = xno ]; then
877 use_gnu_ld=no
878 noconfigdirs="$noconfigdirs ld"
879 fi
880
881 # Make sure we don't let GNU as be added if we didn't want it.
882 if [ x$with_gnu_as = xno ]; then
883 use_gnu_as=no
884 noconfigdirs="$noconfigdirs gas"
885 fi
886
887 # Remove the entries in $skipdirs and $noconfigdirs from $configdirs and
888 # $target_configdirs.
889 # If we have the source for $noconfigdirs entries, add them to $notsupp.
890
891 notsupp=""
892 for dir in . $skipdirs $noconfigdirs ; do
893 dirname=`echo $dir | sed -e s/target-//g`
894 if [ $dir != . ] && echo " ${configdirs} " | grep " ${dir} " >/dev/null 2>&1; then
895 configdirs=`echo " ${configdirs} " | sed -e "s/ ${dir} / /"`
896 if [ -r $srcdir/$dirname/configure ] \
897 || [ -r $srcdir/$dirname/configure.in ]; then
898 if echo " ${skipdirs} " | grep " ${dir} " >/dev/null 2>&1; then
899 true
900 else
901 notsupp="$notsupp $dir"
902 fi
903 fi
904 fi
905 if [ $dir != . ] && echo " ${target_configdirs} " | grep " ${dir} " >/dev/null 2>&1; then
906 target_configdirs=`echo " ${target_configdirs} " | sed -e "s/ ${dir} / /"`
907 if [ -r $srcdir/$dirname/configure ] \
908 || [ -r $srcdir/$dirname/configure.in ]; then
909 if echo " ${skipdirs} " | grep " ${dir} " >/dev/null 2>&1; then
910 true
911 else
912 notsupp="$notsupp $dir"
913 fi
914 fi
915 fi
916 done
917
918 # Sometimes the tools are distributed with libiberty but with no other
919 # libraries. In that case, we don't want to build target-libiberty.
920 if [ -n "${target_configdirs}" ]; then
921 others=
922 for i in `echo ${target_configdirs} | sed -e s/target-//g` ; do
923 if [ "$i" != "libiberty" ]; then
924 if [ -r $srcdir/$i/configure ] || [ -r $srcdir/$i/configure.in ]; then
925 others=yes;
926 break;
927 fi
928 fi
929 done
930 if [ -z "${others}" ]; then
931 target_configdirs=
932 fi
933 fi
934
935 # Deconfigure all subdirectories, in case we are changing the
936 # configuration from one where a subdirectory is supported to one where it
937 # is not.
938 if [ -z "${norecursion}" ] && [ -n "${configdirs}" ]; then
939 for i in `echo ${configdirs} | sed -e s/target-//g` ; do
940 rm -f $i/Makefile
941 done
942 fi
943 if [ -z "${norecursion}" ] && [ -n "${target_configdirs}" ]; then
944 for i in `echo ${target_configdirs} | sed -e s/target-//g` ; do
945 rm -f ${target_subdir}/$i/Makefile
946 done
947 fi
948
949 # Produce a warning message for the subdirs we can't configure.
950 # This isn't especially interesting in the Cygnus tree, but in the individual
951 # FSF releases, it's important to let people know when their machine isn't
952 # supported by the one or two programs in a package.
953
954 if [ -n "${notsupp}" ] && [ -z "${norecursion}" ]; then
955 # If $appdirs is non-empty, at least one of those directories must still
956 # be configured, or we error out. (E.g., if the gas release supports a
957 # specified target in some subdirs but not the gas subdir, we shouldn't
958 # pretend that all is well.)
959 if [ -n "$appdirs" ]; then
960 for dir in $appdirs ; do
961 if [ -r $dir/Makefile.in ]; then
962 if echo " ${configdirs} " | grep " ${dir} " >/dev/null 2>&1; then
963 appdirs=""
964 break
965 fi
966 if echo " ${target_configdirs} " | grep " ${dir} " >/dev/null 2>&1; then
967 appdirs=""
968 break
969 fi
970 fi
971 done
972 if [ -n "$appdirs" ]; then
973 echo "*** This configuration is not supported by this package." 1>&2
974 exit 1
975 fi
976 fi
977 # Okay, some application will build, or we don't care to check. Still
978 # notify of subdirs not getting built.
979 echo "*** This configuration is not supported in the following subdirectories:" 1>&2
980 echo " ${notsupp}" 1>&2
981 echo " (Any other directories should still work fine.)" 1>&2
982 fi
983
984 # Set with_gnu_as and with_gnu_ld as appropriate.
985 #
986 # This is done by determining whether or not the appropriate directory
987 # is available, and by checking whether or not specific configurations
988 # have requested that this magic not happen.
989 #
990 # The command line options always override the explicit settings in
991 # configure.in, and the settings in configure.in override this magic.
992 #
993 # If the default for a toolchain is to use GNU as and ld, and you don't
994 # want to do that, then you should use the --without-gnu-as and
995 # --without-gnu-ld options for the configure script.
996
997 if [ x${use_gnu_as} = x ] ; then
998 if [ x${with_gnu_as} != xno ] && echo " ${configdirs} " | grep " ${gasdir} " > /dev/null 2>&1 && [ -d ${srcdir}/${gasdir} ] ; then
999 with_gnu_as=yes
1000 withoptions="$withoptions --with-gnu-as"
1001 fi
1002 fi
1003
1004 if [ x${use_gnu_ld} = x ] ; then
1005 if [ x${with_gnu_ld} != xno ] && echo " ${configdirs} " | grep " ld " > /dev/null 2>&1 && [ -d ${srcdir}/ld ] ; then
1006 with_gnu_ld=yes
1007 withoptions="$withoptions --with-gnu-ld"
1008 fi
1009 fi
1010
1011 # If using newlib, add --with-newlib to the withoptions so that gcc/configure
1012 # can detect this case.
1013
1014 if [ x${with_newlib} != xno ] && echo " ${target_configdirs} " | grep " target-newlib " > /dev/null 2>&1 && [ -d ${srcdir}/newlib ] ; then
1015 with_newlib=yes
1016 withoptions="$withoptions --with-newlib"
1017 fi
1018
1019 if [ x${shared} = xyes ]; then
1020 case "${target}" in
1021 hppa*)
1022 target_makefile_frag="${target_makefile_frag} config/mt-papic"
1023 ;;
1024 i[3456]86-*)
1025 target_makefile_frag="${target_makefile_frag} config/mt-x86pic"
1026 ;;
1027 powerpc*-*)
1028 target_makefile_frag="${target_makefile_frag} config/mt-ppcpic"
1029 ;;
1030 alpha*-*-linux*)
1031 target_makefile_frag="${target_makefile_frag} config/mt-elfalphapic"
1032 ;;
1033 *)
1034 if test -f ${srcdir}/config/mt-${target_cpu}pic; then
1035 target_makefile_frag="${target_makefile_frag} config/mt-${target_cpu}pic"
1036 fi
1037 ;;
1038 esac
1039 fi
1040
1041 rm -f mt-frag
1042 if [ -n "${target_makefile_frag}" ] ; then
1043 for f in ${target_makefile_frag}
1044 do
1045 cat ${srcdir}/$f >> mt-frag
1046 done
1047 target_makefile_frag=mt-frag
1048 fi
1049
1050 # post-target:
1051
1052 # Make sure that the compiler is able to generate an executable. If it
1053 # can't, we are probably in trouble. We don't care whether we can run the
1054 # executable--we might be using a cross compiler--we only care whether it
1055 # can be created. At this point the main configure script has set CC.
1056 echo "int main () { return 0; }" > conftest.c
1057 ${CC} -o conftest ${CFLAGS} ${CPPFLAGS} ${LDFLAGS} conftest.c
1058 if [ $? = 0 ] && [ -s conftest -o -s conftest.exe ]; then
1059 :
1060 else
1061 echo 1>&2 "*** The command '${CC} -o conftest ${CFLAGS} ${CPPFLAGS} ${LDFLAGS} conftest.c' failed."
1062 echo 1>&2 "*** You must set the environment variable CC to a working compiler."
1063 rm -f conftest*
1064 exit 1
1065 fi
1066 rm -f conftest*
1067
1068 # The Solaris /usr/ucb/cc compiler does not appear to work.
1069 case "${host}" in
1070 sparc-sun-solaris2*)
1071 CCBASE="`echo ${CC-cc} | sed 's/ .*$//'`"
1072 if [ "`/usr/bin/which $CCBASE`" = "/usr/ucb/cc" ] ; then
1073 could_use=
1074 [ -d /opt/SUNWspro/bin ] && could_use="/opt/SUNWspro/bin"
1075 if [ -d /opt/cygnus/bin ] ; then
1076 if [ "$could_use" = "" ] ; then
1077 could_use="/opt/cygnus/bin"
1078 else
1079 could_use="$could_use or /opt/cygnus/bin"
1080 fi
1081 fi
1082 if [ "$could_use" = "" ] ; then
1083 echo "Warning: compilation may fail because you're using"
1084 echo "/usr/ucb/cc. You should change your PATH or CC "
1085 echo "variable and rerun configure."
1086 else
1087 echo "Warning: compilation may fail because you're using"
1088 echo "/usr/ucb/cc, when you should use the C compiler from"
1089 echo "$could_use. You should change your"
1090 echo "PATH or CC variable and rerun configure."
1091 fi
1092 fi
1093 ;;
1094 esac
1095
1096 # If --enable-shared was set, we must set LD_LIBRARY_PATH so that the
1097 # binutils tools will find libbfd.so.
1098 if [ "${shared}" = "yes" ]; then
1099 sed -e 's/^SET_LIB_PATH[ ]*=.*$/SET_LIB_PATH = $(REALLY_SET_LIB_PATH)/' \
1100 Makefile > Makefile.tem
1101 rm -f Makefile
1102 mv -f Makefile.tem Makefile
1103
1104 case "${host}" in
1105 *-*-hpux*)
1106 sed -e 's/^RPATH_ENVVAR[ ]*=.*$/RPATH_ENVVAR = SHLIB_PATH/' \
1107 Makefile > Makefile.tem
1108 rm -f Makefile
1109 mv -f Makefile.tem Makefile
1110 ;;
1111 esac
1112 fi
1113
1114 # Record target_configdirs and the configure arguments in Makefile.
1115 target_configdirs=`echo "${target_configdirs}" | sed -e 's/target-//g'`
1116 targargs=`echo "${arguments}" | \
1117 sed -e 's/--no[^ ]*//' \
1118 -e 's/--cache[a-z-]*=[^ ]*//' \
1119 -e 's/--ho[a-z-]*=[^ ]*//' \
1120 -e 's/--bu[a-z-]*=[^ ]*//' \
1121 -e 's/--ta[a-z-]*=[^ ]*//'`
1122
1123 # Passing a --with-cross-host argument lets the target libraries know
1124 # whether they are being built with a cross-compiler or being built
1125 # native. However, it would be better to use other mechanisms to make the
1126 # sorts of decisions they want to make on this basis. Please consider
1127 # this option to be deprecated. FIXME.
1128 if [ x${is_cross_compiler} = xyes ]; then
1129 targargs="--with-cross-host=${host_alias} ${targargs}"
1130 fi
1131
1132 # Default to --enable-multilib.
1133 if [ x${enable_multilib} = x ]; then
1134 targargs="--enable-multilib ${targargs}"
1135 fi
1136
1137 # Pass --with-newlib if appropriate. Note that target_configdirs has
1138 # changed from the earlier setting of with_newlib.
1139 if [ x${with_newlib} != xno ] && echo " ${target_configdirs} " | grep " newlib " > /dev/null 2>&1 && [ -d ${srcdir}/newlib ] ; then
1140 targargs="--with-newlib ${targargs}"
1141 fi
1142
1143 # provide a proper gxx_include_dir.
1144 # Note, if you change the default, make sure to fix both here and in
1145 # the gcc, libio, libstdc++ and libg++ subdirectories.
1146 # Check whether --with-gxx-include-dir or --without-gxx-include-dir was given.
1147 gxx_include_dir=
1148 if test -n "${with_gxx_include_dir}"; then
1149 case "${with_gxx_include_dir}" in
1150 yes )
1151 echo "configure.in: error: bad value ${withval} given for g++ include directory" 1>&2
1152 exit 1
1153 ;;
1154 no )
1155 ;;
1156 * )
1157 gxx_include_dir=${with_gxx_include_dir}
1158 ;;
1159 esac
1160 fi
1161 if test x${gxx_include_dir} = x; then
1162 if test x${enable_version_specific_runtime_libs} = xyes; then
1163 gxx_include_dir='${libsubdir}/include/g++'
1164 else
1165 . ${topsrcdir}/config.if
1166 gxx_include_dir='${prefix}/include/g++'-${libstdcxx_interface}
1167 fi
1168 else
1169 gxx_include_dir=${gxx_include_dir}
1170 fi
1171
1172 targargs="--host=${target_alias} --build=${build_alias} ${targargs}"
1173 sed -e "s:^TARGET_CONFIGDIRS[ ]*=.*$:TARGET_CONFIGDIRS = ${target_configdirs}:" \
1174 -e "s%^CONFIG_ARGUMENTS[ ]*=.*$%CONFIG_ARGUMENTS = ${targargs}%" \
1175 -e "s%^TARGET_SUBDIR[ ]*=.*$%TARGET_SUBDIR = ${target_subdir}%" \
1176 -e "s%^gxx_include_dir[ ]*=.*$%gxx_include_dir=${gxx_include_dir}%" \
1177 Makefile > Makefile.tem
1178 rm -f Makefile
1179 mv -f Makefile.tem Makefile
1180
1181 #
1182 # Local Variables:
1183 # fill-column: 131
1184 # End:
1185 #