Automatic date update in version.in
[binutils-gdb.git] / ChangeLog
blob18e8b6835da5486eab58b08a62cb5666cb412b3e
1 2022-01-22  Nick Clifton  <nickc@redhat.com>
3         * 2.38 release branch created.
5 2022-01-17  Nick Clifton  <nickc@redhat.com>
7         Update config.[guess|sub] from upstream:
9         2022-01-09  Idan Horowitz  <idan.horowitz@gmail.com>
11         config.guess: recognize SerenityOS
12         * config.guess (*:SerenityOS:*:*): Recognize.
13         (timestamp): Update.
15         2022-01-03  Bernhard Voelker  <mail@bernhard-voelker.de>
17         Fix GPLv3 license headers to use a comma instead of semicolon
18         See: https://www.gnu.org/licenses/gpl-3.0.html#howto
20         Update license headers automatically using the following script:
22           $ git grep -l 'Foundation; either version 3' \
23             | xargs sed -i '/Foundation; either version 3/ s/n; e/n, e/'
25         * config.guess: Adjust via the above command.
26         (timestamp): Update.
27         * config.sub: Likewise.
28         * doc/config.guess.1: Regenerate.
29         * doc/config.sub.1: Likewise.
31         2022-01-01  Dmitry V. Levin  <ldv@altlinux.org>
33         Update copyright years
34         * config.guess: Update copyright years.
35         * config.sub: Likewise.
37         2021-12-25  Dmitry V. Levin  <ldv@altlinux.org>
39         config.sub: alias armh to armv7l
40         ALT uses armh as an alias for armv7l-alt-linux-gnueabihf since 2012.
42         * config.sub (armh-unknown|armh-alt): Set cpu, vendor, and basic_os.
43         (timestamp): Update.
45         2021-12-24  Dmitry V. Levin  <ldv@altlinux.org>
47         config.sub: alias aarch64le to aarch64
48         Apparently, QNX reports aarch64 as aarch64le on little-endian machines.
50         * config.sub (aarch64le-*): Set cpu to aarch64.
51         (timestamp): Update.
53         2021-12-13  Dmitry V. Levin  <ldv@altlinux.org>
55         config.sub: fix typo in timestamp
56         * config.sub: Fix timestamp.
58         2021-11-30  Andreas F. Borchert  <github@andreas-borchert.de>
60         config.guess: x86_64-pc-solaris2.11 is not properly recognized
61         config.guess guesses Solaris 11 to run on a 32-bit platform
62         despite Solaris 11 no longer supporting any 32-bit platform.
64         See the following code at lines 434 to 445:
66         | SUN_ARCH=i386
67         | # If there is a compiler, see if it is configured for 64-bit objects.
68         | # Note that the Sun cc does not turn __LP64__ into 1 like gcc does.
69         | # This test works for both compilers.
70         | if test "$CC_FOR_BUILD" != no_compiler_found; then
71         |     if (echo '#ifdef __amd64'; echo IS_64BIT_ARCH; echo '#endif') | \
72         |         (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \
73         |         grep IS_64BIT_ARCH >/dev/null
74         |     then
75         |         SUN_ARCH=x86_64
76         |     fi
77         | fi
79         If "cc" is installed, i.e. the Oracle Studio compiler, this one is
80         chosen for $CC_FOR_BUILD.  This compiler, the gcc provided by Oracle
81         and also gcc bootstrapped from sources on that platform with a default
82         configuration will by default generate 32-bit binaries -- even on
83         a 64-bit platform.  And __amd64 will not be defined for compilations
84         targeting a 32-bit platform.  This is different from the corresponding
85         behaviour on GNU/Linux systems where the local platform is targeted by
86         default.
88         Thus, as long as you do not add "-m64" or if you have a custom-built
89         gcc which defaults to 64 bit, you will get 32-bit binaries on Solaris
90         despite living on a 64-bit platform.
92         * config.guess (i86pc:SunOS:5.*:* || i86xen:SunOS:5.*:*): Adapt the
93         test by adding the "-m64" flag.  This will work properly for Solaris
94         10 as well (the last Solaris release that supported x86 32-bit
95         platforms).
97         2021-10-27  Jordi Sanfeliu  <jordi@fibranet.cat>
99         Recognize Fiwix
100         $ make check
101         cd testsuite && bash config-guess.sh && rm uname
102         PASS: config.guess checks (137 tests)
103         cd testsuite && bash config-sub.sh
104         PASS: config.sub checks (882 tests)
105         PASS: config.sub idempotency checks (819 tests)
106         PASS: config.sub canonicalise each config.guess testcase (137 tests)
108         * config.guess (i*86:Fiwix:*:*): Recognize.
109         * config.sub (fiwix*): Likewise.
111         2021-10-18  Kinshuk Dua  <kinshukdua@gmail.com>
113         config.sub: Fix typo in comment
114         Fixes: 5e531d391852a54e7fab2d8ff55625fca514b305
116         2021-08-14  Nick Bowler  <nbowler@draconx.ca>
118         config.sub: work around command assignment bug in some shells
119         When combining variable assignments with a shell command, some older
120         shells (notably heirloom-sh and presumably also Solaris 10 /bin/sh)
121         have a bug which causes the assignment to alter the current execution
122         environment whenever the command is a shell built-in.  For example:
124           % dash -c 'x=good; x=bad echo >/dev/null; echo $x'
125           good
127           % jsh -c 'x=good; x=bad echo >/dev/null; echo $x'
128           bad
130         The config.sub script contains a few commands of the form:
132           IFS=- read ...
134         which triggers this bug, causing the IFS assignment to persist for the
135         remainder of the script.  This can cause misbehaviour in certain cases,
136         for example:
138           % jsh config.sub i386-linux-gnu
139           config.sub: test: unknown operator gnu
141           % jsh config.sub i386-gnu/linux
142           sed: can't read s|gnu/linux|gnu|: No such file or directory
143           Invalid configuration `i386-gnu/linux': OS `' not recognized
145         * config.sub: Save and restore IFS explicitly to avoid shell bugs.
146         * doc/config.sub.1: Regenerate.
148         2021-08-04  Jeremy Soller  <jackpot51@gmail.com>
150         config.sub: add Linux Relibc Target
151         $ make check
152         cd testsuite && bash config-guess.sh && rm uname
153         PASS: config.guess checks (136 tests)
154         cd testsuite && bash config-sub.sh
155         PASS: config.sub checks (881 tests)
156         PASS: config.sub idempotency checks (818 tests)
157         PASS: config.sub canonicalise each config.guess testcase (136 tests)
159         * config.sub (relibc*): Recognize.
160         * doc/config.sub.1: Regenerate.
161         * testsuite/config-sub.data (x86_64-linux-relibc): New test.
163         2021-07-06  Stephanos Ioannidis  <root@stephanos.io>
165         config.sub: add Zephyr RTOS support
166         This adds the Zephyr RTOS targets in preparation for implementing the
167         Zephyr RTOS-specific toolchain support.
169         $ make check
170         cd testsuite && bash config-guess.sh && rm uname
171         PASS: config.guess checks (136 tests)
172         cd testsuite && bash config-sub.sh
173         PASS: config.sub checks (880 tests)
174         PASS: config.sub idempotency checks (817 tests)
175         PASS: config.sub canonicalise each config.guess testcase (136 tests)
177         * config.sub (zephyr*): Recognize.
178         * doc/config.sub.1: Regenerate.
179         * testsuite/config-sub.data: Add testcases for *-zephyr.
181         2021-07-03  Ozkan Sezer  <sezero@users.sourceforge.net>
183         config.sub: disable shellcheck SC2006 / SC2268 warnings
184         This is in line with the recent config.guess change in commit
185         12fcf67c9108f4c4b581eaa302088782f0ee40ea
187         * config.sub (shellcheck disable): Add SC2006,SC2268.
189         Suggested-by: Jacob Bachmeyer <jcb@gnu.org>
191         2021-07-03  Ozkan Sezer  <sezero@users.sourceforge.net>
193         config.sub: normalize the quoting in the `echo FOO | sed ...`
194         Some cases quote the argument to echo and some do not.  At runtime
195         it probably does not matter because the substituted values will never
196         contain whitespace, but quoting them all would make shellcheck more
197         useful.
199         * config.sub: Consistently quote the argument of echo.
200         * doc/config.sub.1: Regenerate.
202         Suggested-by: Jacob Bachmeyer <jcb@gnu.org>
204         2021-07-02  Ozkan Sezer  <sezero@users.sourceforge.net>
206         config.sub: replace POSIX $( ) with classic ` ` throughout
207         This is in line with the recent config.guess change in commit
208         d70c4fa934de164178054c3a60aaa0024ed07c91.
210         The patch was generated using patch-6.gawk script introduced in that
211         commit.
213         * config.sub: Revert POSIX command substitutions to classic form.
215         2021-06-04  Vineet Gupta  <Vineet.Gupta1@synopsys.com>
217         Recognize arc32
218         This is the 32-bit variant of ARCv3 ISA (which is not compatible with the
219         32-bit ARCv2 ISA)
221         | make check
222         | cd testsuite && bash config-guess.sh && rm uname
223         | PASS: config.guess checks (136 tests)
224         | cd testsuite && bash config-sub.sh
225         | PASS: config.sub checks (864 tests)
226         | PASS: config.sub idempotency checks (801 tests)
227         | PASS: config.sub canonicalise each config.guess testcase (136 tests)
229         * config.guess (arc32:Linux:*:*): Recognize.
230         * config.sub (arc32): Likewise.
232         2021-05-27  Jacob Bachmeyer  <jcb@gnu.org>
234         Remove automatic patch generators
235         These tools have served their purposes and need not be kept outside of
236         the repository history any longer.  This patch as a diff also collects
237         the contents of the various tools in one convenient place.
239         * patch-1.gawk: Remove.
240         * patch-3.gawk: Likewise.
241         * patch-6.gawk: Likewise.
243         2021-05-26  Jacob Bachmeyer  <jcb@gnu.org>
245         config.guess: manual fixups after previous automatic patch
246         The tool could not handle command substitutions that span lines, but
247         fortunately there were only two such substitutions in the script.
249         The test for which universe is active on Pyramid is rewritten into a
250         case block because it was the only use of a command substitution as an
251         argument to the test command, which would require quoting.
253         * config.guess: Rewrite "if" for Pyramid systems to "case".
255         2021-05-26  Jacob Bachmeyer  <jcb@gnu.org>
257         config.guess: replace POSIX $( ) with classic ` ` throughout
258         The previous replacement of backticks with POSIX command substitutions
259         was ill-considered and illogical: this script recognizes many archaic
260         machine types that probably never had POSIX shells, therefore it needs
261         to be able to run successfully under pre-POSIX shells.
263         This patch was generated using the included GNU Awk program.
265         * config.guess: Revert POSIX command substitutions to classic form.
266         * patch-6.gawk: Store the tool that produced the automated patch.
268         2021-05-26  Jacob Bachmeyer  <jcb@gnu.org>
270         config.guess: manual fixup after previous automated patches
271         This patch provides the special handling for the GNU system.  As these
272         were two small and unique edits, they were not included in the scripts.
274         This patch also cleans up other minor issues that must be addressed
275         before reverting to classic command substitutions and updates
276         "shellcheck" directives to account for changes in this script and the
277         change in "shellcheck" towards reporting individual portability issues.
279         2021-05-26  Jacob Bachmeyer  <jcb@gnu.org>
281         config.guess: automatic fixups after previous automated patch
282         This patch was generated using the following command:
284           sed -i config.guess \
285               -e '/="[^"]\+"\(-\|$\)/s/="\([^"([:space:])]\+\)"/=\1/' \
286               -e '/="[^"]\+"[[:alnum:]]/s/="\$\([^([:space:])]\+\)"/=${\1}/' \
287               -e \
288         '/\$(echo[^|]\+|/s/\([^[:space:]]\)[[:space:]]*|[[:space:]]*sed/\1 | sed/g'
290         * config.guess: Remove unneeded quotes in other variable assignments,
291         standardize spacing for "echo ... | sed" substitutions.
293         2021-05-26  Jacob Bachmeyer  <jcb@gnu.org>
295         config.guess: remove unneeded quotes and factor command substitutions
296         This is further cleanup and simplifies some constructs that can confuse
297         Emacs' syntax highlighting while generally reducing required quoting.
299         This patch was generated using the included GNU Awk program.
301         * config.guess: Remove unneeded variable quotes and factor out command
302         substitutions when setting GUESS.
303         * patch-3.gawk: Store the tool that produced the automated patch.
305         2021-05-25  Jacob Bachmeyer  <jcb@gnu.org>
307         config.guess: manual fixups after previous automatic patch
308         * config.guess: Adjust a few "leftover" cases that the tool could not
309         easily recognize and fixes comment indentation in a few other special
310         cases.
312         2021-05-25  Jacob Bachmeyer  <jcb@gnu.org>
314         config.guess: use intermediate variable with uname results
315         This will allow quoting to be significantly simplified in another
316         pass through the file.
318         This patch was generated using the included GNU Awk program.
320         * config.guess: Use GUESS variable to hold results of uname analysis.
321         * patch-1.gawk: Store the tool that produced the automated patch.
323         2021-05-25  Jacob Bachmeyer  <jcb@gnu.org>
325         config.guess: introduce intermediate variable with uname results
326         This will allow quoting to be significantly simplified in another
327         pass through the file.
329         * config.guess: Introduce GUESS variable to hold results of uname analysis.
331         2021-05-24  Dmitry V. Levin  <ldv@altlinux.org>
333         config.guess: fix shellcheck warning SC2154
334         While, according to Plan 9 documentation, the environment variable
335         $cputype is set to the name of the kernel's CPU's architecture,
336         shellcheck warns that cputype is referenced but not assigned.
337         Be on the safe side and do not use cputype if it is not defined
338         or empty.
340         * config.guess (*:Plan9:*:*): Fix shellcheck warning SC2154.
342         2021-05-24  Dmitry V. Levin  <ldv@altlinux.org>
344         config.guess: remove redundant quotes in case commands
345         According to the GNU Autoconf Portable Shell Programming manual,
346         the Bourne shell does not systematically split variables and back-quoted
347         expressions, in particular on the right-hand side of assignments and in
348         the argument of 'case'.
350         The change is made automatically using the following command:
351         $ sed -E -i 's/(\<case )"(\$[^"]+)"( in\>)/\1\2\3/' config.guess
353         * config.guess: Simplify case commands by removing quotes around the
354         argument.
356         Suggested-by: Jacob Bachmeyer <jcb@gnu.org>
358         2021-05-24  Dmitry V. Levin  <ldv@altlinux.org>
360         config.guess: simplify exit status workaround on alphaev67-dec-osf5.1
361         Commit 29865ea8a5622cdd80b7a69a0afa78004b4cd311 introduced an exit trap
362         reset before exiting to avoid a spurious non-zero exit status on
363         alphaev67-dec-osf5.1.  Simplify that code a bit by moving the exit trap
364         reset around.
366         * config.guess (alpha:OSF1:*:*): Reset exit trap earlier.
367         * doc/config.guess.1: Regenerate.
369 2021-10-29  Eli Zaretskii  <eliz@gnu.org>
371         * gdb/doc/gdb.texinfo (Command Options): (Data): Document
372         '-memory-tag-violations'.  Update the example.
374 2021-09-28  Andrew Burgess  <andrew.burgess@embecosm.com>
376         * src-release.sh (GDB_SUPPPORT_DIRS): Add libbacktrace.
378 2021-09-27  Nick Alcock  <nick.alcock@oracle.com>
380         PR libctf/27967
381         * libtool.m4 (LT_PATH_NM): Try BSDization flags with a user-provided
382         NM, if there is one.  Run nm on itself, not on /dev/null, to avoid
383         errors from nms that refuse to work on non-regular files.  Remove
384         other workarounds for this problem.  Strip out blank lines from the
385         nm output.
387 2021-09-27  Nick Alcock  <nick.alcock@oracle.com>
389         PR libctf/27967
390         * libtool.m4 (lt_cv_sys_global_symbol_pipe): Augment symcode for
391         Solaris 11.
393 2021-07-03  Nick Clifton  <nickc@redhat.com>
395         * 2.37 release branch created.
397 2021-07-03  Nick Clifton  <nickc@redhat.com>
399         * libiberty: Sync with gcc.  Bring in:
400         2021-06-30  Gerald Pfeifer  <gerald@pfeifer.com>
402         * make-temp-file.c (usrtmp): Remove.
403         (choose_tmpdir): Remove use of usrtmp.
405         2021-06-28  Indu Bhagat  <indu.bhagat@oracle.com>
407         * simple-object.c (handle_lto_debug_sections): Copy over .BTF section.
409         2021-06-28  Indu Bhagat  <indu.bhagat@oracle.com>
410             David Faust  <david.faust@oracle.com>
411             Jose E. Marchesi  <jose.marchesi@oracle.com>
412             Weimin Pan  <weimin.pan@oracle.com>
414         * simple-object.c (handle_lto_debug_sections): Copy over .ctf
415         sections.
417         2021-06-05  John David Anglin  <danglin@gcc.gnu.org>
419         PR target/100734
420         * configure.ac: Use libiberty snprintf and vsnprintf on
421         hppa*-*-hpux*.
422         * configure: Regenerate.
424         2021-05-06  Tom Tromey  <tom@tromey.com>
426         * hashtab.c (htab_eq_string): New function.
428         2021-05-04  Eric Botcazou  <ebotcazou@adacore.com>
430         * configure.ac: Make test for variables more robust.
431         * configure: Regenerate.
433         2021-05-03  H.J. Lu  <hjl.tools@gmail.com>
435         PR bootstrap/99703
436         * configure: Regenerated.
438         2021-04-21  Andreas Schwab  <schwab@linux-m68k.org>
440         PR demangler/100177
441         * rust-demangle.c (demangle_const_char): Properly print the
442         character value.
444         2021-03-31  Patrick Palka  <ppalka@redhat.com>
446         PR c++/88115
447         * cp-demangle.c (d_dump, d_make_comp, d_expression_1)
448         (d_count_templates_scopes): Handle DEMANGLE_COMPONENT_VENDOR_EXPR.
449         (d_print_comp_inner): Likewise.
450         <case DEMANGLE_COMPONENT_EXTENDED_OPERATOR>: Revert r11-4926
451         change.
452         <case DEMANGLE_COMPONENT_UNARY>: Likewise.
453         * testsuite/demangle-expected: Adjust __alignof__ tests.
455         2021-03-16  Nick Clifton  <nickc@redhat.com>
457         * sha1.c (sha1_process_bytes): Use memmove in place of memcpy.
459         2021-02-20  Mike Frysinger  <vapier@gentoo.org>
461         * Makefile.in (ACLOCAL, ACLOCAL_AMFLAGS, $(srcdir)/aclocal.m4): Define.
462         (configure_deps): Rename to ...
463         (aclocal_deps): ... this.  Replace aclocal.m4 with acinclude.m4.
464         ($(srcdir)/configure): Replace $(configure_deps) with
465         $(srcdir)/aclocal.m4.
466         * aclocal.m4: Move libiberty macros to acinclude.m4, then regenerate.
467         * acinclude.m4: New file.
468         * configure: Regenerate.
470         2021-02-19  Ayush Mittal  <ayush.m@samsung.com>
472         * argv.c (expandargv): free allocated buffer if read fails.
474         2021-02-01  Martin Sebor  <msebor@redhat.com>
476         * dyn-string.c (dyn_string_insert_cstr): Use memcpy instead of strncpy
477         to avoid -Wstringop-truncation.
479 2021-05-29  Mike Frysinger  <vapier@gentoo.org>
481         * configure.ac: Add gnulib to configdirs for sim.
482         * configure: Regenerate.
484 2021-05-24  Maciej W. Rozycki  <macro@orcam.me.uk>
486         * MAINTAINERS: Update path to readline config.{sub,guess} files.
488 2021-05-24  Maciej W. Rozycki  <macro@orcam.me.uk>
490         * config.guess: Import from upstream.
491         * config.sub: Likewise.
493 2021-05-18  Mike Frysinger  <vapier@gentoo.org>
495         * Makefile.def: Add configure-sim dependency on all-gnulib.
496         * Makefile.in: Regenerated.
498 2021-05-04  Nick Clifton  <nickc@redhat.com>
500         * configure.ac (AC_PROG_CC): Replace with AC_PROG_CC_C99.
501         * configure: Regenerate.
503 2021-03-18  Nick Alcock  <nick.alcock@oracle.com>
505         PR libctf/27482
506         * Makefile.def: Add install-bfd dependencies for install-libctf and
507         install-ld, and install-strip-bfd dependencies for
508         install-strip-libctf and install-strip-ld; move the install-ld
509         dependency on install-libctf to join it.
510         * Makefile.in: Regenerated.
512 2021-03-12  Mike Frysinger  <vapier@gentoo.org>
514         * Makefile.def: Remove all-sim dependency on configure-gdb.
515         * Makefile.in: Regenerated.
517 2021-02-28  H.J. Lu  <hongjiu.lu@intel.com>
519         PR binutils/26766
520         * Makefile.tpl (PGO_BUILD_TRAINING_FLAGS_TO_PASS): Add
521         PGO_BUILD_TRAINING=yes.
522         (PGO_BUILD_TRAINING_MFLAGS): New.
523         (all): Pass $(PGO_BUILD_TRAINING_MFLAGS) to the PGO build.
525 2021-02-09  Alan Modra  <amodra@gmail.com>
527         * configure.ac: Delete arm*-*-symbianelf* entry.
528         * configure: Regenerate.
530 2021-01-26  Nick Alcock  <nick.alcock@oracle.com>
532         * Makefile.def: Add install-libctf dependency to install-ld.
533         * Makefile.in: Regenerated.
535 2021-01-12  Mike Frysinger  <vapier@gentoo.org>
537         * src-release.sh (do_proto_toplev): Rewrite indentation.
539 2021-01-11  H.J. Lu  <hongjiu.lu@intel.com>
541         PR binutils/26766
542         * configure.ac:
543         * configure: Regenerated.
545 2021-01-11  H.J. Lu  <hongjiu.lu@intel.com>
547         PR ld/27173
548         * configure: Regenerated.
549         * libtool.m4 (_LT_CMD_OLD_ARCHIVE): Check if AR works with
550         --plugin and rc before enabling --plugin.
552 2021-01-09  H.J. Lu  <hongjiu.lu@intel.com>
554         PR binutils/26766
555         * Makefile.tpl (BUILD_CFLAGS): New.
556         (CFLAGS): Append $(BUILD_CFLAGS).
557         (CXXFLAGS): Likewise.
558         (PGO_BUILD_GEN_FLAGS_TO_PASS): New.
559         (PGO_BUILD_TRAINING_CFLAGS): Likewise.
560         (PGO_BUILD_TRAINING_CXXFLAGS): Likewise.
561         (PGO_BUILD_TRAINING_FLAGS_TO_PASS): Likewise.
562         (PGO_BUILD_TRAINING_MFLAGS): Likewise.
563         (PGO_BUILD_USE_FLAGS_TO_PASS): Likewise.
564         (PGO-TRAINING-TARGETS): Likewise.
565         (PGO_BUILD_TRAINING): Likewise.
566         (all): Add '+' to the command line for recursive make.  Support
567         the PGO build.
568         * configure.ac: Add --enable-pgo-build[=lto].
569         AC_SUBST PGO_BUILD_GEN_CFLAGS, PGO_BUILD_USE_CFLAGS and
570         PGO_BUILD_LTO_CFLAGS.  Enable the PGO build in Makefile.
571         * Makefile.in: Regenerated.
572         * configure: Likewise.
574 2021-01-09  H.J. Lu  <hongjiu.lu@intel.com>
576         * Makefile.tpl (AR): Add @AR_PLUGIN_OPTION@
577         (RANLIB): Add @RANLIB_PLUGIN_OPTION@.
578         * configure.ac: Include config/gcc-plugin.m4.
579         AC_SUBST AR_PLUGIN_OPTION and RANLIB_PLUGIN_OPTION.
580         * libtool.m4 (_LT_CMD_OLD_ARCHIVE): Pass --plugin to AR and
581         RANLIB if possible.
582         * Makefile.in: Regenerated.
583         * configure: Likewise.
585 2021-01-09  Nick Clifton  <nickc@redhat.com>
587         * 2.36 release branch crated.
589 2021-01-07  Samuel Thibault  <samuel.thibault@gnu.org>
591         * libtool.m4: Match gnu* along with other GNU systems.
593 2021-01-07  Alan Modra  <amodra@gmail.com>
595         * config.sub: Accept OS of eabi* and gnueabi*.
597 2021-01-05  Nick Alcock  <nick.alcock@oracle.com>
599         * Makefile.def (libctf): No longer no_check.  Checking depends on
600         all-ld.
601         * Makefile.in: Regenerated.
603 2021-01-05  Nick Clifton  <nickc@redhat.com>
605         * libiberty: Sync with gcc.  Bring in:
606         2021-01-04  Martin Liska  <mliska@suse.cz>
608         * strverscmp.c: Convert to utf8 from iso8859.
610         2020-12-22  Jason Merrill  <jason@redhat.com>
612         PR c++/67343
613         * cp-demangle.h (struct d_info): Add unresolved_name_state.
614         * cp-demangle.c (d_prefix): Add subst parm.
615         (d_nested_name): Pass it.
616         (d_unresolved_name): Split out from...
617         (d_expression_1): ...here.
618         (d_demangle_callback): Maybe retry with old sr mangling.
619         * testsuite/demangle-expected: Add test.
621         2020-12-21  Jason Merrill  <jason@redhat.com>
623         * cp-demangle.c (d_expression_1): Recognize qualified-id
624         on RHS of dt/pt.
625         * testsuite/demangle-expected: Add test.
627         2020-12-21  Jason Merrill  <jason@redhat.com>
629         * cp-demangle.c (d_unqualified_name): Clear is_expression.
630         * testsuite/demangle-expected: Add tests.
632         2020-11-25  Matthew Malcomson  <matthew.malcomson@arm.com>
634         * configure: Regenerate.
635         * configure.ac: Avoid using sanitizer.
637         2020-11-13  Eduard-Mihai Burtescu  <eddyb@lyken.rs>
639         * rust-demangle.c (struct rust_demangler): Add
640         skipping_printing and bound_lifetime_depth fields.
641         (eat): Add (v0-only).
642         (parse_integer_62): Add (v0-only).
643         (parse_opt_integer_62): Add (v0-only).
644         (parse_disambiguator): Add (v0-only).
645         (struct rust_mangled_ident): Add punycode{,_len} fields.
646         (parse_ident): Support v0 identifiers.
647         (print_str): Respect skipping_printing.
648         (print_uint64): Add (v0-only).
649         (print_uint64_hex): Add (v0-only).
650         (print_ident): Respect skipping_printing,
651         Support v0 identifiers.
652         (print_lifetime_from_index): Add (v0-only).
653         (demangle_binder): Add (v0-only).
654         (demangle_path): Add (v0-only).
655         (demangle_generic_arg): Add (v0-only).
656         (demangle_type): Add (v0-only).
657         (demangle_path_maybe_open_generics): Add (v0-only).
658         (demangle_dyn_trait): Add (v0-only).
659         (demangle_const): Add (v0-only).
660         (demangle_const_uint): Add (v0-only).
661         (basic_type): Add (v0-only).
662         (rust_demangle_callback): Support v0 symbols.
663         * testsuite/rust-demangle-expected: Add v0 testcases.
665         2020-11-13  Seija Kijin  <doremylover456@gmail.com>
667         * strstr.c (strstr): Make implementation ANSI/POSIX compliant.
669         2020-11-11  Patrick Palka  <ppalka@redhat.com>
671         PR c++/88115
672         * cp-demangle.c (d_print_comp_inner)
673         <case DEMANGLE_COMPONENT_EXTENDED_OPERATOR>: Don't print the
674         "operator " prefix for __alignof__.
675         <case DEMANGLE_COMPONENT_UNARY>: Always print parens around the
676         operand of __alignof__.
677         * testsuite/demangle-expected: Test demangling for __alignof__.
679         2020-11-09  Christophe Lyon  <christophe.lyon@linaro.org>
681         * pex-win32.c (pex_win32_exec_child): Initialize orig_err.
683         2020-10-06  Martin Liska  <mliska@suse.cz>
685         PR lto/97290
686         * simple-object-elf.c (simple_object_elf_copy_lto_debug_sections):
687         Use sh_link of a .symtab_shndx section.
689 2021-01-05  Alan Modra  <amodra@gmail.com>
691         * config.guess: Import from upstream.
692         * config.sub: Likewise.
694 2020-12-16  Martin Liska  <mliska@suse.cz>
695             Tom de Vries  <tdevries@suse.de>
697         * gdb/debuginfod-support.c (struct user_data): Remove has_printed
698         field.  Add meter field.
699         (progressfn): Print progress using meter.
701 2020-12-02  Enze Li  <lienze2010@hotmail.com>
703         * .gitignore: Add gnu global outputs.
705 2020-12-02  Simon Marchi  <simon.marchi@polymtl.ca>
707         * .gitignore: Sync with gcc.
709 2020-10-26  Andreas Rammhold <andreas@rammhold.de>
711         * src-release.sh: Use sha256sum instead of md5sum.
713 2020-10-14  Andrew Burgess  <andrew.burgess@embecosm.com>
715         * Makefile.in: Rebuild.
716         * Makefile.def: Make distclean-gnulib depend on distclean-gdb and
717         distclean-gdbserver.
719 2020-07-24  Aaron Merey  <amerey@redhat.com>
721         * configure: Rebuild.
722         * configure.ac: Remove AC_DEBUGINFOD.
724 2020-07-04  Nick Clifton  <nickc@redhat.com>
726         Binutils 2.35 branch created.
728 2020-04-21  Stephen Casner  <casner@acm.org>
730         PR 25830
731         * configure.ac (noconfigdirs): Exclude gdb & gprof for pdp11.
732         * configure: Rebuild.
734 2020-03-12  Tom Tromey  <tom@tromey.com>
736         * Makefile.in: Rebuild.
737         * Makefile.def (gdbserver): Depend on gdbsupport.
739 2020-03-12  Tom Tromey  <tom@tromey.com>
741         * Makefile.in: Rebuild.
742         * Makefile.def (gdbsupport): Don't depend on bfd.
744 2020-03-12  Tom Tromey  <tom@tromey.com>
746         * Makefile.in: Rebuild.
747         * Makefile.def (gdbsupport): Depend on intl.
749 2020-02-17  Tom Tromey  <tom@tromey.com>
751         * configure: Rebuild.
752         * configure.ac (configdirs): Add gnulib and gdbsupport when building
753         gdbserver.
755 2020-02-14  Tom Tromey  <tom@tromey.com>
757         * Makefile.in: Rebuild.
758         * Makefile.def: Make gdbserver require gnulib and libiberty.
760 2020-02-07  Tom Tromey  <tom@tromey.com>
761             Pedro Alves  <palves@redhat.com>
763         * src-release.sh (GDB_SUPPORT_DIRS): Add gdbserver.
764         * gdbserver: New directory, moved from gdb/gdbserver.
765         * configure.ac (host_tools): Add gdbserver.
766         Only build gdbserver on certain systems.
767         * Makefile.in, configure: Rebuild.
768         * Makefile.def (host_modules, dependencies): Add gdbserver.
769         * MAINTAINERS: Add gdbserver.
771 2020-01-28  Sergio Durigan Junior  <sergiodj@redhat.com>
773         * src-release.sh (getver): Look for gdbsupport's
774         create-version.sh script at the current directory if tool is
775         "gdb".
777 2020-01-19  Simon Marchi  <simon.marchi@polymtl.ca>
779         * remote-sim.c (gdbsim_target::wait): Return
780         sim_data->remote_sim_ptid instead of inferior_ptid.
782 2020-01-18  Nick Clifton  <nickc@redhat.com>
784         Binutils 2.34 branch created.
786 2020-01-18  Nick Clifton  <nickc@redhat.com>
788         Synchronize top level configure files with master version:
790         2020-01-01  Ben Elliston  <bje@gnu.org>
792         * config.guess: Update copyright years.
793         * config.sub: Likewise.
795         2019-12-21  Ben Elliston  <bje@gnu.org>
797         * config.guess (set_cc_for_build): Prevent multiple calls by
798         checking if $tmp is already set. We can't check CC_FOR_BUILD as
799         the user may set it externally. Thanks to Torbjörn Granlund for
800         the bug report.
802         2019-12-21  Torbjörn Granlund  <tg@gmplib.org>
804         * config.guess (alpha:Linux:*:*): Guard against missing
805         /proc/cpuinfo by redirecting standard error to /dev/null.
807         2019-09-12  Daniel Bittman  <danielbittman1@gmail.com>
809         * config.guess (*:Twizzler:*:*): New.
810         * config.sub (-twizzler*): New.
812         2019-07-24  Ben Elliston  <bje@gnu.org>
814         * config.guess (mips:OSF1:*.*): Whitespace cleanup.
816         2019-06-30  Ben Elliston  <bje@gnu.org>
818         * config.sub (case $os): Match nsk* and powerunix. Don't later
819         match nsk* and set os=nsk which removes the OS version number.
821         2019-06-30  Ben Elliston  <bje@gnu.org>
823         * config.sub: Recognise os108*.
825         2019-06-26  Ben Elliston  <bje@gnu.org>
827         * config.sub (hp300): Set $os to hpux.
829         2019-06-26  Ben Elliston  <bje@gnu.org>
831         * config.sub (vsta): Move into alphabetical order.
833         2019-06-10  Ben Elliston  <bje@gnu.org>
835         * config.guess (*:OS108:*:*): Recognise new OS.
837         2019-05-28  Ben Elliston  <bje@gnu.org>
839         * config.guess (*:Darwin:*:*): Run xcode-select to determine if a
840         system compiler is installed. If not, do not run set_cc_for_build,
841         as the default cc will open a dialog box asking to install
842         Xcode. If no C compiler is available, guess based on uname -p and
843         uname -m.
845         2019-05-28  Ben Elliston  <bje@gnu.org>
847         * config.guess (*:Darwin:*:*): Simplify UNAME_PROCESSOR.
849 2020-01-17  Simon Marchi  <simon.marchi@efficios.com>
851         * Makefile.def: Add dependencies of all-gdbsupport on all-bfd.
852         * Makefile.in: Re-generate.
854 2020-01-14  Tom Tromey  <tom@tromey.com>
856         * src-release.sh (GDB_SUPPORT_DIRS): Add gdbsupport.
857         * MAINTAINERS: Add gdbsupport.
858         * configure: Rebuild.
859         * configure.ac (configdirs): Add gdbsupport.
860         * gdbsupport: New directory, move from gdb/gdbsupport.
861         * Makefile.def (host_modules, dependencies): Add gnulib.
862         * Makefile.in: Rebuild.
864 2020-01-09  Aaron Merey  <amerey@redhat.com>
866         * config/debuginfod.m4: New file. Add macro AC_DEBUGINFOD. Adds
867         new configure option --with-debuginfod.
868         * configure: Regenerate.
869         * configure.ac: Call AC_DEBUGINFOD.
871 2019-12-26  Christian Biesinger  <cbiesinger@google.com>
873         * .gitignore: Add perf.data and perf.data.old.
875 2019-10-17  Sergio Durigan Junior  <sergiodj@redhat.com>
877         * src-release.sh (GDB_SUPPORT_DIRS): Add libctf.
879 2019-10-17  Alan Modra  <amodra@gmail.com>
881         PR 29
882         * src-release.sh (getver): Replace "head -1" with "head -n 1".
884 2019-07-30  Nick Alcock  <nick.alcock@oracle.com>
886         * Makefile.def (host_modules): libctf is no longer no_install.
887         * Makefile.in: Regenerated.
889 2019-07-13  Nick Alcock  <nick.alcock@oracle.com>
891         * Makefile.def (dependencies): all-ld depends on all-libctf.
892         * Makefile.in: Regenerated.
894 2019-09-09  Phil Blundell  <pb@pbcl.net>
896         binutils 2.33 branch created
898 2019-08-19  Tom Tromey  <tom@tromey.com>
900         * configure: Rebuild.
901         * configure.ac: Add --with-static-standard-libraries.
903 2019-08-09  Nick Clifton  <nickc@redhat.com>
905         * libiberty: Sync with gcc.  Bring in:
906         2019-08-08  Martin Liska  <mliska@suse.cz>
908         PR bootstrap/91352
909         * lrealpath.c (is_valid_fd): New function.
911         2019-07-24  Martin Liska  <mliska@suse.cz>
913         PR lto/91228
914         * simple-object-elf.c (simple_object_elf_copy_lto_debug_sections):
915         Find first '\0' starting from gnu_lto + 1.
917         2019-07-12  Ren Kimura  <rkx1209dev@gmail.com>
919         * simple-object-elf.c (simple_object_elf_match): Check zero value shstrndx.
920         This fixes a Bug 90924.
922         2019-07-22  Martin Liska  <mliska@suse.cz>
924         * simple-object-elf.c (simple_object_elf_copy_lto_debug_sections):
925         Do not search for gnu_lto_v1, but search for first '\0'.
927         2019-07-18  Eduard-Mihai Burtescu  <eddyb@lyken.rs>
929         * cplus-dem.c: Include rust-demangle.h.
930         * rust-demangle.c: Include rust-demangle.h.
931         * rust-demangle.h: New file.
933         2019-05-31  Michael Forney  <mforney@mforney.org>
935         * cp-demangle.c: Don't define CP_DYNAMIC_ARRAYS if __STDC_NO_VLA__
936         is non-zero.
938         2019-04-30  Ben L  <bobsayshilol@live.co.uk>
940         * d-demangle.c (dlang_parse_assocarray): Correctly handle error result.
941         * testsuite/d-demangle-expected: Add testcase.
943         * d-demangle.c (dlang_parse_tuple): Correctly handle error result.
944         * testsuite/d-demangle-expected: Add testcase.
946         * d-demangle.c (dlang_parse_structlit): Correctly handle error result.
947         * testsuite/d-demangle-expected: Add testcase.
949         * d-demangle.c (dlang_parse_arrayliteral): Correctly handle error result.
950         * testsuite/d-demangle-expected: Add testcase.
952         * d-demangle.c (dlang_parse_integer): Fix stack underflow.
953         * testsuite/d-demangle-expected: Add testcase.
955         * cp-demangle (d_print_comp_inner): Guard against a NULL 'typed_name'.
956         * testsuite/demangle-expected: Add testcase.
958         * cp-demangle.c (d_encoding): Guard against NULL return values from
959         d_right (dc).
960         * testsuite/demangle-expected: Add testcase.
962         2019-04-29  Ben L  <bobsayshilol@live.co.uk>
964         * cp-demangle.c (d_expression_1): Don't peek ahead unless the current
965         char is valid.
966         * testsuite/demangle-expected: Add testcase.
968         2019-04-10  Nick Clifton  <nickc@redhat.com>
970         PR 89394
971         * cp-demangle.c (cplus_demangle_fill_name): Reject negative
972         lengths.
973         (d_count_templates_scopes): Replace num_templates and num_scopes
974         parameters with a struct d_print_info pointer parameter.  Adjust
975         body of the function accordingly.  Add recursion counter and check
976         that the recursion limit is not reached.
977         (d_print_init): Pass dpi parameter to d_count_templates_scopes.
978         Reset recursion counter afterwards, unless the recursion limit was
979         reached.
981 2019-07-13  Joel Brobecker  <brobecker@adacore.com>
983         * src-release (getver): If $tool/gdbsupport/create-version.sh
984         exists, use that to determine the version number.
986 2019-06-21  Andreas Schwab  <schwab@linux-m68k.org>
988         * src-release.sh (GDB_SUPPORT_DIRS): Add gnulib.
990 2019-06-14  Tom Tromey  <tom@tromey.com>
992         * MAINTAINERS: Add gnulib.
993         * gnulib: New directory, move from gdb/gnulib.
994         * configure.ac (host_libs): Add gnulib.
995         * configure: Rebuild.
996         * Makefile.def (host_modules, dependencies): Add gnulib.
997         * Makefile.in: Rebuild.
999 2019-06-03  Nick Clifton  <nickc@redhat.com>
1001         Revert:
1002         2019-05-29  Nick Clifton  <nickc@redhat.com>
1004         * configure.ac (noconfigdirs): Add libctf if the target does not use
1005         the ELF file format.
1006         * configure: Regenerate.
1008 2019-05-29  Nick Clifton  <nickc@redhat.com>
1010         * src-release.sh (do_proto_toplev): Add libctf to list of
1011         directories that can be disabled.
1013 2019-05-29  Nick Clifton  <nickc@redhat.com>
1015         * configure.ac (noconfigdirs): Add libctf if the target does not use
1016         the ELF file format.
1017         * configure: Regenerate.
1019 2019-05-28  Nick Alcock  <nick.alcock@oracle.com>
1021         * Makefile.def (dependencies): configure-libctf depends on all-bfd
1022         and all its deps.
1023         * Makefile.in: Regenerated.
1025 2019-05-28  Nick Alcock  <nick.alcock@oracle.com>
1027         * MAINTAINERS: Add libctf.
1029 2019-05-28  Nick Alcock  <nick.alcock@oracle.com>
1031         * Makefile.def (host_modules): Add libctf.
1032         * Makefile.def (dependencies): Likewise.
1033         libctf depends on zlib, libiberty, and bfd.
1034         * Makefile.in: Regenerated.
1035         * configure.ac (host_libs): Add libctf.
1036         * configure: Regenerated.
1038 2019-05-23  Jose E. Marchesi  <jose.marchesi@oracle.com>
1040         * config.guess: Synchronize with config project master sources.
1041         * config.sub: Likewise.
1042         * readline/support/config.guess: Likewise.
1043         * readline/support/config.sub: Likewise.
1045 2019-04-10  Nick Clifton  <nickc@redhat.com>
1047         * libiberty: Sync with gcc.  Bring in:
1048         2019-04-10  Nick Clifton  <nickc@redhat.com>
1050         PR 89394
1051         * cp-demangle.c (cplus_demangle_fill_name): Reject negative
1052         lengths.
1053         (d_count_templates_scopes): Replace num_templates and num_scopes
1054         parameters with a struct d_print_info pointer parameter.  Adjust
1055         body of the function accordingly.  Add recursion counter and check
1056         that the recursion limit is not reached.
1057         (d_print_init): Pass dpi parameter to d_count_templates_scopes.
1058         Reset recursion counter afterwards, unless the recursion limit was
1059         reached.
1061 2018-06-24  Nick Clifton  <nickc@redhat.com>
1063         2.32 branch created.
1065 2019-01-14  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
1067         Merge from GCC:
1068         PR target/88535
1069         * config.guess: Import upstream version 2019-01-03.
1070         * config.sub: Import upstream version 2019-01-01.
1072 2019-01-10  Nick Clifton  <nickc@redhat.com>
1074         * libiberty: Sync with gcc.  Bring in:
1075         2019-01-09  Sandra Loosemore  <sandra@codesourcery.com>
1077         PR other/16615
1079         * cp-demangle.c: Mechanically replace "can not" with "cannot".
1080         * floatformat.c: Likewise.
1081         * strerror.c: Likewise.
1083         2018-12-22  Jason Merrill  <jason@redhat.com>
1085         Remove support for demangling GCC 2.x era mangling schemes.
1086         * cplus-dem.c: Remove cplus_mangle_opname, cplus_demangle_opname,
1087         internal_cplus_demangle, and all subroutines.
1088         (libiberty_demanglers): Remove entries for ancient GNU (pre-3.0),
1089         Lucid, ARM, HP, and EDG demangling styles.
1090         (cplus_demangle): Remove 'work' variable.  Don't call
1091         internal_cplus_demangle.
1093 2019-01-03  Дилян Палаузов  <dilyan.palauzov@aegee.org>
1095         * configure.ac: Don't configure readline if --with-system-readline is
1096         used.
1097         * configure: Re-generate.
1099 2018-10-31  Joseph Myers  <joseph@codesourcery.com>
1101         Merge from GCC:
1102         PR bootstrap/82856
1103         * multilib.am: New file.  From automake.
1105 2018-09-12  Sergio Durigan Junior  <sergiodj@redhat.com>
1107         * src-release.sh (GDB_SUPPORT_DIRS): Add "contrib".
1109 2018-07-16  Nick Clifton  <nickc@redhat.com>
1111         * src-release.sh (DEVO_SUPPORT): Add test-driver and ar-lib.
1113 2018-07-06  Sebastian Huber  <sebastian.huber@embedded-brains.de>
1115         * config.sub: Sync with upstream version 2018-07-03.
1117 2018-07-05  Sebastian Huber  <sebastian.huber@embedded-brains.de>
1119         * config.guess: Sync with upstream version 2018-06-26.
1120         * config.sub: Sync with upstream version 2018-07-02.
1122 2018-06-29  Alexandre Oliva <oliva@adacore.com>
1124         * configure.ac: Introduce support for @unless/@endunless.
1125         * Makefile.tpl (dep-kind): Rewrite with cond; return
1126         postbootstrap in some cases.
1127         (make-postboot-dep, postboot-targets): New.
1128         (dependencies): Do not output postbootstrap dependencies at
1129         first.  Output non-target ones changed for configure to depend
1130         on stage_last @if gcc-bootstrap, and the original deps @unless
1131         gcc-bootstrap.
1132         * configure.in, Makefile.in: Rebuilt.
1134 2018-06-24  Nick Clifton  <nickc@redhat.com>
1136         * configure: Regenerate.
1138 2018-06-19  Simon Marchi  <simon.marchi@ericsson.com>
1140         * libtool.m4: Use AC_LANG_SOURCE.
1141         * configure.ac: Remove AC_PREREQ, use AC_LANG_SOURCE.
1142         * README-maintainer-mode: Update version requirements.
1143         * ar-lib: New file.
1144         * test-driver: New file.
1145         * configure: Re-generate.
1147 2018-06-18  Eric Botcazou  <ebotcazou@adacore.com>
1149         * Makefile.def (fortran): Add check-target-libgomp-fortran.
1150         * Makefile.tpl (check-target-libgomp-fortran): New phony target.
1151         * Makefile.in: Regenerate.
1153         * configure: Regenerate.
1155 2018-06-18  Simon Marchi  <simon.marchi@ericsson.com>
1157         * configure.ac: Sync with GCC, remove MPX-related things.
1159 2018-05-01  Nick Clifton  <nickc@redhat.com>
1161         * config.guess: Synchronize with config project master sources.
1162         * config.sub: Likewise.
1164 2018-05-01  Francois H. Theron  <francois.theron@netronome.com>
1166         * configure.ac: Added "nfp" target.
1167         * configure: Regenerate.
1169 2018-02-13  Maciej W. Rozycki  <macro@mips.com>
1171         * configure.ac <wasm32-*-*> (noconfigdirs): Add `ld'.
1172         * configure: Regenerate.
1174 2018-01-30  Nick Clifton  <nickc@redhat.com>
1176         * src-release.sh (do_proto_toplev): Add patterns for more junk files
1177         to delete before creating the tarball.
1179 2018-01-29  Nick Clifton  <nickc@redhat.com>
1181         * src-release.sh (do_proto_toplev): Strip patch remnant files from
1182         the sources before creating the tarball.
1184 2018-01-13  Nick Clifton  <nickc@redhat.com>
1186         * src-release.sh: Update copyright notice.  Change reference to devo
1187         to be a reference to root.
1189 2018-01-10  Nick Clifton  <nickc@redhat.com>
1191         * config-ml.in: Sync with gcc sources.
1192         * config.guess: Likewise.
1193         * config.sub: Likewise.
1194         * configure.ac: Likewise.
1195         * configure: Regenerate.
1197 2017-12-14  Nick Clifton  <nickc@redhat.com>
1199         * COPYING.LIBGLOSS: Update address of FSF in copyright notice.
1201 2017-12-12  Stafford Horne  <shorne@gmail.com>
1203         * configure.ac: Remove logic adding gdb to noconfigsdirs for or1k.
1204         * configure: Regenerate.
1206 2017-09-15  Nick Clifton  <nickc@redhat.com>
1208         * src-release.sh (LZIPPROG): New define.  Provides the name of the
1209         lzip program.
1210         (do_lz): New function.  Compresses a tarball using the lzip
1211         program.
1212         (do_compress): Add support for lzip compression.
1213         (usage): Mention -l option.
1214         (build_release): Support -l option to invoke lzip compression.
1216 2017-09-15  Alan Modra  <amodra@gmail.com>
1218         * src-release.sh (do_proto_toplev): Revert last patch.  Enable or
1219         disable binutils, gas, gdb, gold, gprof, ld, libdecnumber, readline,
1220         and sim depending on $tool and $support_files.  Echo configure line.
1222 2017-09-14  Matt Rice <ratmice@gmail.com>
1224         * src-release.sh (do_proto_toplev): Enable gold during release process.
1226 2017-04-13  Andrew Jenner  <andrew@codesourcery.com>
1228         * config.sub: Sync with master version in config project.
1230 2017-04-03  Andrew Jenner  <andrew@codesourcery.com>
1232         * config.sub: Handle ia16 in $basic_machine.
1234         bfd/
1235         * config.bfd: Handle ia16.
1237         gas/
1238         * configure.tgt: Handle ia16.
1240         ld/
1241         * configure.tgt: Handle ia16.
1243 2017-03-22  Nick Clifton  <nickc@redhat.com>
1245         * config.sub: Sync with master version in config project.
1246         * config.guess: Likewise.
1248 2017-01-23  Nick Clifton  <nickc@redhat.com>
1250         * configure.ac: Update year in copyright notice.
1251         Sync from FSF GCC mainline, bringing in the following patches.
1252         * Makefile.def: Likewise.
1253         * Makefile.tpl: Likewise.
1254         * configure: Regenerate.
1255         * Makefile.in: Regenerate.
1257         2016-12-21  Jakub Jelinek  <jakub@redhat.com>
1259         * configure.ac: Don't bootstrap libmpx unless --with-build-config
1260         includes bootstrap-mpx.
1262         2016-12-01  Matthias Klose  <doko@ubuntu.com>
1264         * configure.ac: Don't use pkg-config to check for bdw-gc.
1266         2016-11-30  Matthias Klose  <doko@ubuntu.com>
1268         * Makefile.def: Remove reference to boehm-gc target module.
1269         * configure.ac: Include pkg.m4, check for --with-target-bdw-gc
1270         options and for the bdw-gc pkg-config module.
1272         2016-11-15  Matthias Klose  <doko@ubuntu.com>
1274         * config-ml.in: Remove references to GCJ.
1275         * configure.ac: Likewise.
1277         2016-09-30  Jakub Jelinek  <jakub@redhat.com>
1279         * configure.ac: Add target-libffi to target_libraries.
1280         Readd libgcj target disablings, modified to only target-libffi.
1281         Readd target addition of go to unsupported languages.
1283         2016-09-30  Andrew Haley  <aph@redhat.com>
1285         * Makefile.def: Remove libjava.
1286         * Makefile.tpl: Likewise.
1287         * configure.ac: Likewise.
1289         2016-09-26  Anton Kolesov  <Anton.Kolesov@synopsys.com>
1291         * configure.ac: Disable "sim" directory for arc*-*-*.
1293         2016-09-12  Maciej W. Rozycki  <macro@imgtec.com>
1295         * configure.ac: Check for the minimum in-tree MPFR version
1296         handled.
1298 2016-12-31  Alan Modra  <amodra@gmail.com>
1300         * config.sub: Import from upstream.
1302 2016-12-08  Alan Modra  <amodra@gmail.com>
1304         * configure: Regenerate.
1306 2016-12-02  Josh Conner  <joshconner@google.com>
1308         * configure.ac: Add fuchsia to targets that use ELF.
1309         * configure: Regenerated.
1311 2016-11-07  Doug Evans  <dje@google.com>
1313         * config.sub: Sync with upstream version 2016-11-03.
1314         git://git.sv.gnu.org/config.git
1315         * config.guess: Sync with upstream version 2016-10-02.
1317 2016-09-27  Simon Marchi  <simon.marchi@polymtl.ca>
1319         * .gitignore: Add archives and make stamps.
1321 2016-07-20  Yan-Ting Lin  <currygt52@gmail.com>
1323         * configure.ac (nds32*-*-*): Remove entry to enable gdb.
1324         * configure: Regenerated.
1326 2016-06-28  Walter Lee  <walt@tilera.com>
1328         * configure.ac (tilepro-*-*): Add gdb to noconfigdirs.
1329         * configure: Regenerate.
1331 2016-05-28  Alan Modra  <amodra@gmail.com>
1333         * Makefile.tpl (configure): Depend on m4 files included.
1334         * Makefile.in: Regenerate.
1336 2016-05-27  Nick Clifton  <nickc@redhat.com>
1338         * config.guess (Alpha OSF1): Fix typo introduced during the most
1339         recent synchronization update.
1341 2016-05-23  Nick Clifton  <nickc@redhat.com>
1343         * Import these patches from the gcc mainline:
1345         2016-05-16  Jakub Sejdak  <jakub.sejdak@phoesys.com>
1347         * config.guess: Import version 2016-04-02 (newest).
1348         * config.sub: Import version 2016-05-10 (newest).
1350 2016-04-19  Nick Clifton  <nickc@redhat.com>
1352         * Import this patch from the GCC mainline:
1354         2016-04-13  Segher Boessenkool  <segher@kernel.crashing.org>
1356         PR bootstrap/70173
1357         * Makefile.tpl (local-distclean): Delete the libcc1, gnattools,
1358         and gotools directories.  Delete the stage_final file.
1359         * Makefile.in: Regenerate.
1361 2016-03-17  Cary Coutant  <ccoutant@gmail.com>
1363         * configure.ac: Add mips and s390 to the gold target check.
1364         * configure: Regenerate.
1366 2016-02-10  Nick Clifton  <nickc@redhat.com>
1368         Import these patches from the GCC mainline:
1370         2016-01-12  Andris Pavenis  <andris.pavenis@iki.fi>
1372         * configure.ac: Enable LTO for DJGPP
1373         * configure: Regenerate
1375         2016-01-24  Mikhail Maltsev  <maltsevm@gmail.com>
1377         PR bootstrap/69329
1378         * Makefile.tpl (BASE_FLAGS_TO_PASS): Add LSAN_OPTIONS.
1379         * Makefile.in: Regenerate.
1381         2016-01-25  Aditya Kumar  <aditya.k7@samsung.com>
1382                     Sebastian Pop  <s.pop@samsung.com>
1384         * Makefile.in: Regenerate.
1385         * Makefile.tpl: Export ISLVER.
1386         * configure: Regenerate.
1387         * config/isl.m4: Detect isl-0.15.
1389         2016-01-29  Sebastian Pop  <s.pop@samsung.com>
1391         * config/isl.m4: Add comments about isl-0.16.
1392         * configure: Regenerate.
1394 2016-01-12  H.J. Lu  <hongjiu.lu@intel.com>
1396         Sync with GCC
1397         2015-11-26  David Edelsohn  <dje.gcc@gmail.com>
1399         * m4/libtool.m4 (export_symbols_cmds) [AIX]: Add global TLS "L"
1400         symbols.
1402         2016-01-12  Bernd Edlinger  <bernd.edlinger@hotmail.de>
1404         PR bootstrap/69134
1405         * Makefile.def (mpfr): Disable assembler.
1406         * Makefile.in: Regenerate.
1408 2016-01-11  Nick Clifton  <nickc@redhat.com>
1410         Import the following changes from the GCC mainline:
1412         2015-11-13  Tsvetkova Alexandra  <aleksandra.tsvetkova@intel.com>
1414         * configure.ac: Enable libmpx by default.
1415         * configure: Regenerated.
1417         2015-11-19  Martin Liska  <mliska@suse.cz>
1419         * .gitignore: Add .clang-format to ignored files.
1420         * Makefile.tpl: Add clang-format.
1421         * Makefile.in: Regenerate.
1423         2015-12-01  Andreas Tobler  <andreast@gcc.gnu.org>
1425         PR libffi/65726
1426         * Makefile.def (lang_env_dependencies): Make libffi depend
1427         on cxx.
1428         * Makefile.in: Regenerate.
1430         2015-12-02  Ian Lance Taylor  <iant@google.com>
1432         PR go/66147
1433         * Makefile.tpl (HOST_EXPORTS): Add XGCC_FLAGS_FOR_TARGET.
1434         * Makefile.in: Regenerate.
1436         2015-12-17  Nathan Sidwell  <nathan@acm.org>
1438         * config/isl.m4 (ISL_CHECK_VERSION): Add gmp libs.
1439         * configure: Regenerate.
1441         2015-12-17  Sebastian Pop  <s.pop@samsung.com>
1443         * Makefile.in: Replace ISL with isl.
1444         * Makefile.tpl: Same.
1445         * config/isl.m4: Same.
1446         * configure.ac: Same.
1447         * contrib/download_prerequisites: Same.
1448         * configure: Regenerate.
1450         2016-01-01  Ben Elliston  <bje@gnu.org>
1452         * config.guess: Import version 2016-01-01.
1453         * config.sub: Likewise.
1455 2015-11-20  Tristan Gingold  <gingold@adacore.com>
1457         * configure.ac: Add aarch64-*-darwin* and arm-*-darwin*.
1458         * configure: Regenerate.
1460 2015-10-21  Nick Clifton  <nickc@redhat.com>
1462         PR gas/19109
1463         * configure.ac: Note the 'none' is an acceptable argument to
1464         --enable-compressed-debug-sections.
1465         * configure: Regenerate.
1467 2015-10-20  H.J. Lu  <hongjiu.lu@intel.com>
1469         PR gas/19109
1470         * configure.ac: Add
1471         --enable-compressed-debug-sections={all,gas,gold,ld}.
1472         * configure: Regenerated.
1474 2015-09-30  Nick Clifton  <nickc@redhat.com>
1476         Import the following patches from the GCC mainline:
1478         2015-08-23  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
1480         PR libfortran/54572
1481         * Makefile.def: Make libgfortran depend on libbacktrace.
1482         * Makefile.in: Regenerate.
1484         2015-08-12  Tom de Vries  <tom@codesourcery.com>
1486         PR other/67092
1487         PR other/67098
1488         * configure.ac: Remove --with_host_libstdcxx support.
1489         * configure: Regenerate.
1491         2015-08-10  Thomas Schwinge  <thomas@codesourcery.com>
1492             Jakub Jelinek  <jakub@redhat.com>
1494         * configure.ac (noconfigdirs): Don't add "target-libgomp" for target
1495         nvptx*-*-*.
1496         * configure: Regenerate.
1498 2015-08-07  H.J. Lu  <hongjiu.lu@intel.com>
1500         Sync with GCC
1501         2015-07-28  Ben Elliston  <bje@gnu.org>
1503         * config.sub, config.guess: Import from upstream.
1505 2015-08-06  Yaakov Selkowitz  <yselkowi@redhat.com>
1507         * Makefile.def (libiconv): Define bootstrap=true.
1508         Mark pdf/html/info as missing.
1509         (configure-gcc): Depend on all-libiconv.
1510         (all-gcc): Ditto.
1511         (configure-libcpp): Ditto.
1512         (all-libcpp): Ditto.
1513         (configure-intl): Ditto.
1514         (all-intl): Ditto.
1515         * Makefile.in: Regenerate.
1517 2015-07-27  H.J. Lu  <hongjiu.lu@intel.com>
1519         Sync with GCC
1520         2015-07-24  Michael Darling  <darlingm@gmail.com>
1522         PR other/66259
1523         * config-ml.in: Reflects renaming of configure.in to configure.ac
1524         * configure: Likewise
1525         * configure.ac: Likewise
1527 2015-07-14  H.J. Lu  <hongjiu.lu@intel.com>
1529         * Makefile.in: Regenerated.
1531         Sync with GCC
1532         2015-05-21  Jason Merrill  <jason@redhat.com>
1534         * Makefile.tpl: Update comments.
1536         2015-04-22  Bernhard Reutner-Fischer  <aldot@gcc.gnu.org>
1538         * Makefile.tpl: Remove surplus whitespace throughout.
1540         2015-03-25  Martin Liska  <mliska@suse.cz>
1541                     Yury Gribov  <y.gribov@samsung.com>
1543         * Makefile.tpl: Fix ln source location for vimrc file.
1545 2015-07-14  H.J. Lu  <hongjiu.lu@intel.com>
1547         Sync with GCC
1548         2015-05-16  James Bowman  <james.bowman@ftdichip.com>
1550         * configure.ac: FT32 target added.
1551         * configure: Regenerate.
1553 2015-07-14  H.J. Lu  <hongjiu.lu@intel.com>
1555         Sync with GCC
1556         2015-06-02  Jason Merrill  <jason@redhat.com>
1558         PR bootstrap/66319
1559         * configure.ac: Use -std=gnu++98.
1561         2015-05-28  Mike Frysinger  <vapier@gentoo.org>
1563         * configure.ac (--vtable-verify): Use AS_HELP_STRING for help.
1564         * configure: Regenerate.
1566         2015-05-11  Paulo Matos  <paulo@matos-sorge.com>
1568         * configure.ac: Fix typo.
1569         * configure: Regenerate.
1571         2015-05-03  Matthias Klose  <doko@ubuntu.com>
1573         * configure.ac: Match $host configured with triplets.
1574         * configure: Regenerate.
1576         2015-04-17  Jakub Jelinek  <jakub@redhat.com>
1578         PR bootstrap/62077
1579         * configure.ac (--enable-stage1-checking): Default to
1580         release,misc,gimple,rtlflag,tree,types if --disable-checking
1581         or --enable-checking is not specified and DEV-PHASE is not
1582         experimental.
1583         * configure: Regenerated.
1585         2015-03-27  Uros Bizjak  <ubizjak@gmail.com>
1587         Install back PR target/47230 fix (Revert the revert).
1589 2015-06-30  H.J. Lu  <hongjiu.lu@intel.com>
1591         * configure.ac (ospace_frag): Enable for i?86*-*-elfiamcu
1592         target.
1593         * configure: Regenerate.
1595 2015-05-13  John David Anglin  <dave.anglin@bell.net>
1597         * configure.ac: Disable configuration of GDB for HPUX targets.
1598         * configure: Regenerate.
1600 2015-05-01  H.J. Lu  <hongjiu.lu@intel.com>
1602         PR ld/18355
1603         * Makefile.def: Add extra_configure_flags to host zlib.
1604         * configure.ac (extra_host_zlib_configure_flags): New.  Set
1605         to --enable-host-shared When bfd is to be built as shared
1606         library.  AC_SUBST.
1607         * Makefile.in: Regenerated.
1609 2015-04-15  Mike Frysinger  <vapier@gentoo.org>
1610             Hans-Peter Nilsson  <hp@axis.com>
1612         Adjust src-release.sh for sim using the gdb create-version.sh.
1613         * src-release.sh (tar_compress): If there's a fifth parameter,
1614         use that in the getver call instead of $tool.
1615         (sim_release): Pass gdb as fifth parameter to tar_compress.
1616         (SIM_SUPPORT_DIRS): Add gdb/common/create-version.sh.
1618 2015-04-14  Max Ostapenko  <m.ostapenko@partner.samsung.com>
1620         * Makefile.tpl (EXTRA_HOST_EXPORTS): New variables.
1621         (EXTRA_BOOTSTRAP_FLAGS): Likewise.
1622         (check-[+module+]): Add EXTRA_HOST_EXPORTS and EXTRA_BOOTSTRAP_FLAGS.
1623         * Makefile.in: Regenerate.
1625 2015-04-01  H.J. Lu  <hongjiu.lu@intel.com>
1627         * configure.ac: Add --with-system-zlib.
1628         * configure: Regenerated.
1630 2015-03-31  H.J. Lu  <hongjiu.lu@intel.com>
1632         * src-release.sh: Don't configure with  --with-target-subdir=.
1633         --disable-multilib.
1635 2015-03-31  H.J. Lu  <hongjiu.lu@intel.com>
1637         * src-release.sh (DEVO_SUPPORT): Replace src-release with
1638         src-release.sh.
1640 2015-03-30  Ed Schouten  <ed@nuxi.nl>
1642         * config.sub: Update from upstream, to 2015-03-04 version.
1643         * config.guess: Likewise.
1645 2015-03-30  H.J. Lu  <hongjiu.lu@intel.com>
1647         * Makefile.def (dependencies): Add all-zlib to all-bfd.
1648         * Makefile.in: Regenerated.
1650 2015-03-28  H.J. Lu  <hongjiu.lu@intel.com>
1652         * src-release.sh (do_proto_toplev): Configure with --target
1653         --with-target-subdir and --disable-multilib.
1654         (BINUTILS_SUPPORT_DIRS): Add zlib.
1655         (GAS_SUPPORT_DIRS): Likewise.
1656         (GDB_SUPPORT_DIRS): Likewise.
1657         (SIM_SUPPORT_DIRS): Likewise.
1659 2015-03-17  H.J. Lu  <hongjiu.lu@intel.com>
1661         * configure.ac (target_configdirs): Exclude target-zlib if
1662         target-libjava isn't built.
1663         * configure: Regenerated.
1665 2015-03-17  H.J. Lu  <hongjiu.lu@intel.com>
1667         Sync with GCC
1668         2014-06-13  Thomas Schwinge  <thomas@codesourcery.com>
1670         * config-ml.in: Robustify ac_configure_args parsing.
1672 2015-03-16  H.J. Lu  <hongjiu.lu@intel.com>
1674         * Makefile.def: Updated from GCC trunk.
1675         * Makefile.tpl: Likewise.
1676         * configure.ac: Likewise.
1677         * Makefile.in: Regenerated.
1678         * configure: Likewise.
1680 2015-01-28  James Bowman  <james.bowman@ftdichip.com>
1682         * configure.ac: Add FT32 support.
1683         * configure: Regenerate.
1685 2015-01-12  Anthony Green  <green@moxielogic.com>
1687         * configure.ac: Don't disable gprof for moxie.
1688         * configure: Rebuild.
1690 2015-01-03  Andrew Pinski  <apinski@cavium.com>
1692         * Makefile.def (flags_to_pass): Pass OBJCOPY_FOR_TARGET also.
1693         * Makefile.tpl (HOST_EXPORTS): Add OBJCOPY_FOR_TARGET.
1694         (BASE_TARGET_EXPORTS): Add OBJCOPY.
1695         (OBJCOPY_FOR_TARGET): New variable.
1696         (EXTRA_TARGET_FLAGS): Add OBJCOPY.
1697         * Makefile.in: Regenerate.
1698         * configure.ac: Check for already installed target objcopy.
1699         Also GCC_TARGET_TOOL on objcopy.
1700         * configure: Regenerate.
1702 2015-01-02  Hans-Peter Nilsson  <hp@bitrange.com>
1704         * config.sub: Update from upstream, to 2015-01-01 version.
1705         * config.guess: Ditto.
1707 2014-12-06  Eric Botcazou  <ebotcazou@adacore.com>
1709         * config.sub: Update from upstream config repo.
1711 2014-11-24  H.J. Lu  <hongjiu.lu@intel.com>
1713         * libtool.m4: Updated from GCC trunk.
1715 2014-11-16  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
1717         * config.guess: Update from upstream config repo.
1718         * config.sub: Ditto.
1720 2014-11-16  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
1722         * move-if-change: Update from upstream gnulib.
1724 2014-11-16  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
1726         * compile: Sync with upstream Automake.
1727         * depcomp: Ditto.
1728         * install-sh: Ditto.
1729         * missing: Ditto.
1730         * mkinstalldirs: Ditto.
1731         * ylwrap: Ditto.
1733 2014-10-15  Tristan Gingold  <gingold@adacore.com>
1735         * src-release.sh (do_proto_toplev): Configure with --target.
1737 2014-10-03  Jing Yu  <jingyu@google.com>
1739         * configure.ac: Add aarch64 to list of targets that support gold.
1740         * configure: Regenerate.
1742 2014-09-12  Andrew Bennett  <andrew.bennett@imgtec.com>
1744         * configure.ac: Add mips*-img-elf* target triple.
1745         * configure: Regenerate.
1747 2014-09-06  Kuan-Lin Chen  <kuanlinchentw@gmail.com>
1748         * configure: Disable gdb for nds32*-*-* until supported.
1749         * configure.ac: Disable gdb for nds32*-*-* until supported.
1751 2014-09-05  Joel Brobecker  <brobecker@adacore.com>
1753         * configure: Regenerate.
1755 2014-08-27  Will Newton  <will.newton@linaro.org>
1757         * src-release.sh: New file.
1758         * src-release: Remove file.
1760 2014-07-27  Joel Sherrill <joel.sherrill@oarcorp.com>
1762         GDB not supported for or1k*-*-rtems*
1763         * configure.ac (or1k*-*-rtems*): gdb not supported.  The ordering
1764         of the stanzas results in this not being caught by or1k*-*-* later.
1765         * configure. Regenerated.
1767 2014-07-25  Samuel Bronson  <naesten@gmail.com>
1769         * .gitattributes: New file for use with git-merge-changelog.
1771 2014-07-21  Joel Sherrill  <joel.sherrill@oarcorp.com>
1773         Disable gdb for or1k*-*-* until supported
1774         * configure.ac (or1k*-*-*): Disable gdb.
1775         * configure: Regenerated.
1777 2014-05-14  Sandra Loosemore  <sandra@codesourcery.com>
1779         * configure.ac (target_makefile_frag): Set for nios2-*-elf*.
1780         * configure: Regenerated.
1782 2014-03-26  Jakub Jelinek  <jakub@redhat.com>
1784         PR sanitizer/56781
1785         * Makefile.def: Set bootstrap=true; for host fixincludes.
1786         * configure.ac: Don't bootstrap host fixincludes unless
1787         --with-build-config=bootstrap-{a,ub}san.
1788         * Makefile.in: Regenerated.
1789         * configure: Regenerated.
1791 2014-03-21  Jakub Jelinek  <jakub@redhat.com>
1793         * configure.ac: Move BUILD_CONFIG set up earlier.  Add
1794         --enable-vtable-verify option parsing.  Don't add
1795         target-libsanitizer to bootstrap_target_libs unless
1796         --with-build-config=bootstrap-asan or
1797         --with-build-config=bootstrap-ubsan.  Don't add target-libvtv
1798         to bootstrap_target_libs unless --enable-vtable-verify.
1799         * configure: Regenerated.
1801 2014-03-07  Jakub Jelinek  <jakub@redhat.com>
1803         PR bootstrap/58572
1804         * Makefile.tpl (POSTSTAGE1_CXX_EXPORT): Use -isystem instead of
1805         -I for libstdc++-v3 includes if $(LEAN).
1806         * Makefile.in: Regenerated.
1808 2014-02-24  Walter Lee  <walt@tilera.com>
1810         * configure.ac (tilepro-*-*) Change to tilepro*-*-*.
1811         (tilegx-*-*): Change to tilegx*-*-*.
1812         * configure: Regenerate.
1814 2014-05-01  Richard Sandiford  <rdsandiford@googlemail.com>
1816         * config.sub, config.guess: Import from upstream.
1818 2014-04-04  Eric Botcazou  <ebotcazou@adacore.com>
1820         PR bootstrap/60620
1821         * Makefile.def (dependencies): Make gnattools depend on libstdc++-v3.
1822         * Makefile.in: Regenerate.
1824 2014-03-28  Yaakov Selkowitz  <yselkowitz@users.sourceforge.net>
1826         * Makefile.def (dependencies): Make all-ld depend on all-binutils
1827         for WINDRES_FOR_TARGET in default-manifest.o rule.
1828         * Makefile.in: Regenerate.
1830 2014-02-04  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
1832         PR target/59788
1833         * ltmain.sh (opt_duplicate_compiler_generated_deps): Enable on
1834         *solaris2*.
1836 2013-12-19  Keven Boell  <keven.boell@intel.com>
1838         * cp-namespace.c (cp_lookup_nested_symbol): Enable
1839         nested lookups for fortran modules.
1840         * dwarf2read.c (read_module): Add fortran module to
1841         the symbol table.
1842         (add_partial_symbol, add_partial_module): Add fortran
1843         module to the partial symbol table.
1844         (new_symbol_full): Create full symbol for fortran module.
1845         * f-exp.y (yylex): Add new module domain to be parsed.
1846         * symtab.h: New domain for fortran modules.
1848 2013-12-19  Keven Boell  <keven.boell@intel.com>
1850         * f-exp.y (yylex): Add domain array to enable lookup
1851         in multiple domains. Loop over lookup domains and try
1852         to find requested symbol. Add STRUCT_DOMAIN to lookup
1853         domains to be able to query for user defined types.
1855 2013-12-13  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
1857         * configure.ac: Add user-friendly check for native x86_64-linux
1858         multilibs.
1859         * configure: Regenerate.
1861 2013-11-23  Alan Modra  <amodra@gmail.com>
1863         * config.sub, config.guess: Import from upstream.
1865 2013-11-07  Thomas Schwinge  <thomas@codesourcery.com>
1867         * Makefile.in: Regenerate.
1869         * Makefile.tpl: Fix typo.
1870         * Makefile.in: Regenerate partially.
1872 2013-11-04  Balaji V. Iyer  <balaji.v.iyer@intel.com>
1874         * configure.ac: Added libcilkrts to noconfig list when C++ is not
1875         supported.
1876         * configure: Regenerated.
1878 2013-10-30  Jason Merrill  <jason@redhat.com>
1880         * Makefile.tpl (STAGE1_CONFIGURE_FLAGS): Pass
1881         --disable-build-format-warnings.
1883 2013-10-29  Balaji V. Iyer  <balaji.v.iyer@intel.com>
1885         * Makefile.def: Add libcilkrts to target_modules.  Make libcilkrts
1886         depend on libstdc++ and libgcc.
1887         * configure: Regenerate.
1888         * configure.ac: Added libcilkrts to target binaries.  Also, restrict
1889         libcilkrts for POSIX and i*86, and x86_64 architectures.
1890         * Makefile.in: Added libcilkrts related fields to support building it.
1892 2013-10-26  Jeff Law  <law@redhat.com>
1894         * Makefile.def (target_modules): Remove libmudflap
1895         (languages): Remove check-target-libmudflap).
1896         * Makefile.in: Rebuilt.
1897         * Makefile.tpl (check-target-libmudflap-c++): Remove.
1898         * configure.ac (target_libraries): Remove target-libmudflap.
1899         Remove checks which disabled libmudflap on some systems.
1900         * configure: Rebuilt.
1901         * libmudflap: Directory removed.
1903 2013-10-16  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
1905         * configure.ac: Update from GCC.
1906         * configure: Regenerate.
1908 2013-10-15  Hans-Peter Nilsson  <hp@axis.com>
1910         * src-release (do-proto-toplevel): Support subdir-path-prefixed
1911         files in SUPPORT_FILES.
1912         (SIM_SUPPORT_DIRS): New variable.
1913         (sim.tar.bz2): New rule.
1915 2013-10-08  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
1917         * configure.ac: Update from GCC.
1918         * configure: Regenerate.
1920 2013-10-01  Jeff Johnston  <jjohnstn@redhat.com>
1922         * COPYING.NEWLIB: Update with new copyright.
1924 2013-09-21  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
1926         * configure.ac: Update from GCC.
1927         * configure: Regenerate.
1929 2013-09-20  Alan Modra  <amodra@gmail.com>
1931         * libtool.m4 (_LT_ENABLE_LOCK <ld -m flags>): Remove non-canonical
1932         ppc host match.  Support little-endian powerpc linux hosts.
1934 2013-08-16  Joel Brobecker  <brobecker@adacore.com>
1936         * src-release (VER): When using $(TOOL)/common/create-version.sh,
1937         strip the "-cvs" suffix from the version number if present.
1939 2013-08-12  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
1941         * configure.ac: Sync with GCC repo.
1942         * Makefile.def: Ditto.
1943         * configure: Regenerate.
1944         * Makefile.in: Ditto.
1946 2013-07-22  Joel Brobecker  <brobecker@adacore.com>
1948         * src-release (VER): Use $(TOOL)/common/create-version.sh
1949         if it exists.
1951 2013-06-22  Richard Sandiford  <rdsandiford@googlemail.com>
1953         * configure.ac (mips*-*-bsd*, mips*-*-ultrix*, mips*-*-osf*)
1954         (mips*-*-ecoff*, mips*-*-pe*, mips*-*-irix* [v4 and earlier])
1955         (mips*-*-lnews*, mips*-*-riscos*): Add gas and ld to noconfigdirs.
1956         * configure: Regenerate.
1958 2013-06-01  George Thomas <george.thomas@atmel.com>
1960         * include/opcode/avr.h: Rename AVR_ISA_XCH to AVR_ISA_RMW. Remove
1961         from AVR_ISA_XMEGA and add new AVR_ISA_XMEGAU
1963 2013-05-06  Sandra Loosemore  <sandra@codesourcery.com>
1965         * COPYING.NEWLIB: Add Altera Corporation copyright.
1967 2013-04-29  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
1969         * config.guess: Update from config repo.
1970         * config.sub: Ditto.
1972 2013-04-22  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
1974         * Makefile.def: Sync with GCC.
1975         * Makefile.in: Regenerate.
1977 2013-04-22  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
1979         * configure.ac: Sync with GCC.
1980         * configure: Regenerate.
1982 2013-03-22  Mike Frysinger  <vapier@gentoo.org>
1984         * src-release (VER): Change bfd/configure.in sed to use the new
1985         `bfd/configure --version` output.
1987 2013-02-15  Yufeng Zhang  <yufeng.zhang@arm.com>
1989         * configure.ac: Sync with GCC repo.
1990         * configure: Ditto.
1992 2013-02-05  Ian Lance Taylor  <iant@google.com>
1994         PR go/55969
1995         * configure.ac: Disable libgo on some systems where it does not
1996         work.
1997         * configure: Rebuild.
1999 2013-02-05  Alan Modra  <amodra@gmail.com>
2001         * configure: Regenerate after syncing config/.
2003 2013-01-15  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
2005         * configure.ac: Sync with GCC repo.
2006         * configure: Ditto.
2007         * Makefile.def: Ditto.
2008         * Makefile.in: Ditto.
2010 2013-01-11  Joel Brobecker  <brobecker@adacore.com>
2012         Sync with GCC, merge:
2014         2013-01-09  Jason Merrill  <jason@redhat.com>
2016         * .gitignore: Import from gdb repository.
2018 2013-01-11  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
2020         * config.sub: Update from config repo.
2022 2013-01-11  Eric Botcazou  <ebotcazou@adacore.com>
2024         * Makefile.tpl (BOOT_ADAFLAGS): Remove -gnata.
2025         * Makefile.in: Regenerate.
2027 2013-01-09  H.J. Lu  <hongjiu.lu@intel.com>
2029         * Makefile.def (configure-gcc): Depend on all-gmp.
2030         (all-gcc): Remove dependency on all-gmp.
2031         * Makefile.in: Regenerated.
2033 2013-01-08  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
2035         * config.guess: Update from config repo.
2036         * config.sub: Ditto.
2038 2013-01-07  Jeff Johnston  <jjohnstn@redhat.com>
2040         * COPYING.LIBGLOSS: Remove license for mips/lsi33k-stub.h which no longer
2041         exists and replace the new bfin license in its location.
2043 2013-01-07  H.J. Lu  <hongjiu.lu@intel.com>
2045         PR gas/14899
2046         * Makefile.def (dependencies): Make all-binutils, all-gprof,
2047         all-ld and all-gold depend on all-gas.
2048         * Makefile.in: Regenerated.
2050 2012-12-29  Ben Elliston  <bje@gnu.org>
2052         * config.guess: Update to 2012-12-29 version.
2053         * config.sub: Likewise.
2055 2012-12-20  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
2057         * Makefile.def (install-target-libgo): Depend on
2058         install-target-libatomic. Merged from GCC repo.
2059         * Makefile.in: Regenerate.
2061 2012-12-17  Jeff Johnston  <jjohnstn@redhat.com>
2063         * COPYING.LIBGLOSS: Add license for bfin libgloss.
2065 2012-12-16  Thomas Schwinge  <thomas@codesourcery.com>
2067         * configure.ac (ENABLE_GOLD): Consider *-*-gnu* targets ELF.
2068         * configure: Regenerate.
2070 2012-12-11  H.J. Lu  <hongjiu.lu@intel.com>
2072         * Makefile.def (target_modules): Add bootstrap=true and
2073         raw_cxx=true to libsanitizer.
2074         * configure.ac (bootstrap_target_libs): Add libsanitizer.
2075         * Makefile.in: Regenerated.
2076         * configure: Likewise.
2078 2012-12-08  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
2080         * config.sub: Merge from config repo.
2082 2012-11-30  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
2084         * configure.ac: Merge from GCC.
2085         * Makefile.tpl: Ditto.
2086         * Makefile.in: Ditto.
2087         * configure: Ditto.
2089 2012-11-28  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
2091         * configure.ac (noconfigdirs): Merge from GCC.
2092         * configure: Regenerate.
2094 2012-11-19  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
2096         * config.sub (arm): Merge from upstream: Handle armv[6-8] targets.
2098 2012-11-14  Roland McGrath  <mcgrathr@google.com>
2100         * configure.ac (ENABLE_GOLD): Consider *-*-nacl* targets ELF.
2101         * configure: Regenerate.
2103 2012-11-13  Richard Henderson  <rth@redhat.com>
2105         * configure.ac: Move libsanitizer logic to subdirectory.
2106         * configure: Regenerate.
2108 2012-11-13  Dodji Seketeli  <dodji@redhat.com>
2110         * configure.ac: Enable libsanitizer just on x86 linux for now.
2111         * configure: Re-generate.
2113 2012-11-13  David Edelsohn  <dje.gcc@gmail.com>
2115         * configure.ac: Merge libquadmath sections.
2116         * configure: Regenerate.
2118 2012-11-12  Wei Mi <wmi@google.com>
2120         * configure.ac: Add libsanitizer to target_libraries.
2121         * Makefile.def: Ditto.
2122         * configure: Regenerate.
2123         * Makefile.in: Regenerate.
2125 2012-11-03  H.J. Lu  <hongjiu.lu@intel.com>
2127         * configure: Regenerated.
2129 2012-11-03  Robert Mason  <rbmj@verizon.net>
2131         * configure.ac: add --disable-libstdcxx configure option
2132         and handle defaulted state only for VxWorks, ARM-wince-pe and AVR.
2134 2012-10-24  Corinna Vinschen  <corinna@vinschen.de>
2136         * configure.ac (FLAGS_FOR_TARGET,target=cygwin): Fix for building
2137         against Mingw64 w32api.
2138         * configure: Regenerate.
2140 2012-10-23  Eric Botcazou  <ebotcazou@adacore.com>
2142         PR bootstrap/54820
2143         * configure.ac (have_static_libs): Force 'no' for GCC version < 4.5.
2144         * configure: Regenerate.
2146 2012-10-22  Eric Botcazou  <ebotcazou@adacore.com>
2148         PR bootstrap/54820
2149         * Makefile.tpl (STAGE1_FLAGS_TO_PASS): New variable.
2150         (all-[+prefix+][+module+]): Pass stage1_args to sub-makes.
2151         (all-stage[+id+]-[+prefix+][+module+]): Likewise, if prev is false.
2152         (clean-stage[+id+]-[+prefix+][+module+]): Likewise, if prev is false.
2153         (host_modules): Set stage1_args to STAGE1_FLAGS_TO_PASS.
2154         * Makefile.in: Regenerate.
2155         * configure.ac (have_static_libs): New variable and associated check.
2156         (stage1-ldflags): Move to after stage1_libs and set to -static-libstdc++
2157         -static-libgcc if stage1_libs is empty and have_static_libs is yes.
2158         * configure: Regenerate.
2160 2012-10-10  David Holsgrove  <david.holsgrove@xilinx.com>
2162         * config.guess, config.sub: Include updated version from
2163         config-patches.  Adds microblaze little endian support.
2165 2012-09-28  Ian Lance Taylor  <iant@google.com>
2167         * Makefile.def: Make all-target-libgo depend on
2168         all-target-libbacktrace.
2169         * Makefile.in: Rebuild.
2171 2012-09-26  Ian Lance Taylor  <iant@google.com>
2173         * Makefile.def: Make all-gcc depend on all-libbacktrace.
2174         * Makefile.in: Rebuild.
2176 2012-09-06  Diego Novillo  <dnovillo@google.com>
2178         * configure.ac: Bump minimum GMP version to 4.2.3.
2179         * configure: Re-generate.
2181 2012-09-05  Georg-Johann Lay  <avr@gjlay.de>
2183         PR target/54461
2184         * configure.ac (noconfigdirs,target=avr-*-*): Add target-newlib,
2185         target-libgloss if not configured --with-avrlibc=no.
2186         * configure: Regenerate.
2188 2012-09-04  Jason Merrill  <jason@redhat.com>
2190         * configure.ac: Fix --enable-languages=all.
2192 2012-09-03  Richard Guenther  <rguenther@suse.de>
2194         PR bootstrap/54138
2195         * configure.ac: Re-organize ISL / CLOOG checks to allow
2196         disabling with either --without-isl or --without-cloog.
2197         * configure: Regenerated.
2199 2012-09-03  Georg-Johann Lay  <avr@gjlay.de>
2201         * configure.ac (noconfigdirs,target=avr): Add target-libquadmath.
2202         * configure: Regenerate.
2204 2012-09-21  Steve Ellcey  <sellcey@mips.com>
2206         * configure.ac: Add mips*-mti-elf* target.
2207         * configure: Regenerate.
2209 2012-09-19  Ian Lance Taylor  <iant@google.com>
2211         * configure.ac (host_libs): Add libbacktrace.
2212         (target_libraries): Add libbacktrace.
2213         * Makefile.def (host_modules): Add libbacktrace.
2214         (target_modules): Likewise.
2215         * configure, Makefile.in: Rebuild.
2217 2012-09-15  Jiong Wang  <jiwang@tilera.com>
2219         * configure.ac (ENABLE_GOLD): support tilegx*
2220         * configure: rebuild
2222 2012-09-14  David Edelsohn  <dje.gcc@gmail.com>
2224         PR target/38607
2225         Merge upstream change.
2226         * libtool.m4 (_LT_COMPILER_PIC): Add -fPIC to GCC and GXX for AIX.
2228         * configure.ac: Add target-libquadmath to noconfigdirs for AIX.
2229         Add libgomp*.o to compare_exclusions for AIX.
2230         * configure: Regenerate.
2232 2012-08-26  H.J. Lu  <hongjiu.lu@intel.com>
2234         PR binutils/4970
2235         * Makefile.def (host_modules): Rmove lib_path=.libs from bfd
2236         and opcodes.
2237         * Makefile.in: Regenerated.
2239 2012-08-14   Diego Novillo  <dnovillo@google.com>
2241         Merge from cxx-conversion branch.
2243         * Makefile.tpl (STAGE[+id+]_CXXFLAGS): Remove
2244         POSTSTAGE1_CONFIGURE_FLAGS.
2245         * Makefile.in: Regenerate.
2246         * configure.ac (ENABLE_BUILD_WITH_CXX): Remove.  Update all users.
2247         Force C++ when bootstrapping.
2248         * configure: Regenerate.
2250 2012-07-06  Richard Guenther  <rguenther@suse.de>
2252         * Makefile.def (cloog): Pass $(HOST_GMPINC) and $(HOST_ISLINC)
2253         as CPPFLAGS, pass path to built gmp as LDFLAGS, always use
2254         --with-gmp=system.
2255         * Makefile.in: Regenerated.
2256         * configure: Likewise.
2258 2012-07-06  Richard Guenther  <rguenther@suse.de>
2260         * configure.ac (extra_isl_gmp_configure_flags): Initialize and subst.
2261         * Makefile.def (isl): Use extra_isl_gmp_configure_flags and
2262         supply V=1 as extra_make_flags.
2263         * configure: Regenerated.
2264         * Makefile.in: Likewise.
2266 2012-07-03  Richard Guenther  <rguenther@suse.de>
2268         * Makfile.def (isl): Remove not necessary extra_exports and
2269         extra_make_flags.
2270         (cloog): Use $$CPPFLAGS instead of ${CPPFLAGS}.
2271         * Makefile.in: Regenerated.
2273 2012-07-03  Richard Guenther  <rguenther@suse.de>
2275         * Makefile.def (cloog): Add V=1 to extra_make_flags.
2276         * configure.ac: If either the ISL or the CLooG check failed
2277         do not try to build in-tree versions.
2278         * Makefile.in: Regenerated.
2279         * configure: Regenerated.
2281 2012-07-02  Richard Guenther  <rguenther@suse.de>
2282         Michael Matz  <matz@suse.de>
2283         Tobias Grosser <tobias@grosser.es>
2284         Sebastian Pop <sebpop@gmail.com>
2286         * Makefile.def: Add ISL host module, remove PPL host module.
2287         Adjust ClooG host module to use the proper ISL.
2288         * Makefile.tpl: Pass ISL include flags instead of PPL ones.
2289         * configure.ac: Include config/isl.m4.  Add ISL host library,
2290         remove PPL.  Remove PPL configury, add ISL configury, adjust
2291         ClooG configury.
2292         * Makefile.in: Regenerated.
2293         * configure: Likewise.
2295 2012-07-02  Richard Guenther  <rguenther@suse.de>
2297         Merge from graphite branch
2298         2011-07-21  Tobias Grosser  <tobias@grosser.es>
2300         * configure: Regenerated.
2301         * config/cloog.m4: Remove support for CLooG-ppl and CLooG-parma,
2302         both cloog.org and legacy versions. The only supported version will
2303         be CLooG with the isl backend.
2305         2011-07-21  Tobias Grosser  <tobias@grosser.es>
2307         * configure: Regenerated.
2308         * configure.ac: Require cloog isl 0.17.0
2310         2011-07-21  Tobias Grosser  <tobias@grosser.es>
2312         * configure: Regenerated.
2313         * config/cloog.m4: Do not define CLOOG_ORG
2315 2012-06-29  Steven Bosscher  <steven@gcc.gnu.org>
2317         * configure.ac: Skip C if explicitly selected.
2318         * configure: Regenerate.
2320 2012-06-28  Christophe Lyon <christophe.lyon@st.com>
2322         * configure.ac (CFLAGS_FOR_TARGET, CXXFLAGS_FOR_TARGET): Make sure
2323         they contain -O2.
2324         * configure: Regenerate.
2326 2012-06-20  Jason Merrill  <jason@redhat.com>
2328         * Makefile.tpl (check-target-libgomp-c++): New.
2329         (check-target-libitm-c++): New.
2330         * Makefile.def (c++): Add them.
2331         * Makefile.in: Regenerate.
2333 2012-05-16  Olivier Hainque  <hainque@adacore.com>
2335         * Makefile.tpl (gcc-no-fixedincludes): Rename into ...
2336         (gcc-install-no-fixedincludes): Now forwarder to local target in gcc/
2337         (install-no-fixedincludes): Adjust accordingly.
2338         * Makefile.in: Regenerate.
2340 2012-05-09  Nick Clifton  <nickc@redhat.com>
2341             Paul Smith  <psmith@gnu.org>
2343         PR bootstrap/50461
2344         * configure.ac (mpfr-dir): When using in-tree MPFR sources
2345         allow for the fact that from release v3.1.0 of MPFR the source
2346         files were moved into a src sub-directory.
2347         * configure: Regenerate.
2349 2012-05-07  Janne Blomqvist  <jb@gcc.gnu.org>
2351         * configure.ac: Bump minimum MPFR version to 2.4.0.
2352         * configure: Regenerated.
2354 2012-05-01  Richard Henderson  <rth@redhat.com>
2356         * Makefile.def (libatomic): New target_module.
2357         * configure.ac (target_libraries): Add libatomic.
2358         (noconfigdirs): Check if libatomic is supported.
2359         * Makefile.in, configure: Rebuild.
2361 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
2363         Merge upstream change
2364         * libtool.m4 (_LT_ENABLE_LOCK): Support x32.
2366 2011-11-21  Andreas Tobler  <andreast@fgznet.ch>
2368         * libtool.m4: Additional FreeBSD 10 fixes.
2370 2012-06-28  Christophe Lyon <christophe.lyon@st.com>
2372         * configure.ac (CFLAGS_FOR_TARGET, CXXFLAGS_FOR_TARGET): Make sure
2373         they contain -O2.
2374         * configure: Regenerate.
2376 2012-05-14  Catherine Moore  <clm@codesourcery.com>
2378         * NEWS:  Mention PowerPC VLE port.
2380 2012-05-11  Mike Frysinger  <vapier@gentoo.org>
2382         * MAINTAINERS (config/): Move to intl/ section.
2383         (compile; depcomp; install-sh; missing; ylwrap): Likewise.
2385 2012-05-09  Nick Clifton  <nickc@redhat.com>
2386             Paul Smith  <psmith@gnu.org>
2388         PR bootstrap/50461
2389         * configure.ac (mpfr-dir): When using in-tree MPFR sources
2390         allow for the fact that from release v3.1.0 of MPFR the source
2391         files were moved into a src sub-directory.
2392         * configure: Regenerate.
2394 2012-05-02  Roland McGrath  <mcgrathr@google.com>
2396         * configure.ac (ENABLE_GOLD): Consider *-*-nacl* targets ELF.
2397         * configure: Regenerate.
2399 2012-04-25  Joel Brobecker  <brobecker@adacore.com>
2401         * config.sub: Update to 2012-04-18 version from official repo.
2403 2012-03-19  Tristan Gingold  <gingold@adacore.com>
2405         * configure.ac (ia64*-*-*vms*): Add support for ld.
2406         * configure: Regenerate.
2408 2012-03-14  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
2410         * configure.ac (enable_libgomp): Remove *-*-irix6*.
2411         (unsupported_languages): Remove mips-sgi-irix6.*.
2412         (noconfigdirs): Don't add ${libgcj} for mips*-*-irix6*.
2413         (with_stabs): Remove.
2414         * configure: Regenerate.
2416 2012-03-12  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
2418         * configure.ac (enable_libgomp): Remove *-*-osf*.
2419         (with_stabs): Remove alpha*-*-osf*.
2420         * configure: Regenerate.
2422 2012-03-09  Jeff Johnston  <jjohnstn@redhat.com>
2424         * COPYING.NEWLIB: Modify DJ Delorie license to include
2425         modification rights in clause as permitted by DJ Delorie.
2426         * COPYING.LIBGLOSS: Ditto.
2428 2012-03-09  Jeff Johnston  <jjohnstn@redhat.com>
2430         * COPYING.NEWLIB: Remove two unused licenses.
2432 2012-03-05  Tristan Gingold  <gingold@adacore.com>
2434         * configure.ac: Enable gdb and readline for ia64*-*-*vms*.
2435         * configure: Regenerate.
2437 2012-02-21  Joern Rennecke  <joern.rennecke@embecosm.com>
2439         * COPYING.NEWLIB: Add Adapteva notice.
2440         * COPYING.LIBGLOSS: Add Adapteva notice.
2442 2011-12-18  Eric Botcazou  <ebotcazou@adacore.com>
2444         * configure: Regenerate.
2446 2011-12-15  Jeff Johnston  <jjohnstn@redhat.com>
2448         * COPYING.LIBGLOSS: Add GPL with exception license.
2450 2011-11-09  Roland McGrath  <mcgrathr@google.com>
2452         * configure.ac: Add tool checks for READELF and READELF_FOR_TARGET.
2453         * configure: Rebuild.
2454         * Makefile.def (flags_to_pass): Add READELF_FOR_TARGET.
2455         * Makefile.tpl (READELF, READELF_FOR_TARGET): New variables.
2456         (HOST_EXPORTS): Add READELF, READELF_FOR_TARGET.
2457         (BASE_FLAGS_TO_PASS): Add READELF_FOR_TARGET.
2458         (BASE_TARGET_EXPORTS, EXTRA_HOST_FLAGS, EXTRA_TARGET_FLAGS):
2459         Add READELF.
2460         * Makefile.in: Rebuild.
2462 2011-11-08  Richard Henderson  <rth@redhat.com>
2464         * configure.ac: Test for libitm directory present first.
2466         * configure.ac: Adjust srcdir for running libitm/configure.tgt.
2468         * configure.ac: Test libitm/configure.tgt to disable libitm.
2469         * configure: Rebuild.
2471 2011-11-02  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
2473         * Makefile.tpl (EXTRA_GCC_FLAGS): Remove LIBGCC2_CFLAGS,
2474         LIBGCC2_DEBUG_CFLAGS, LIBGCC2_INCLUDES.
2475         * Makefile.in: Regenerate.
2477 2011-11-01  DJ Delorie  <dj@redhat.com>
2479         * configure.ac (rl78-*-*) New case.
2480         * configure: Regenerate.
2482 2011-11-01  DJ Delorie  <dj@redhat.com>
2484         * config.sub: Update to version 2011-10-29 (added rl78)
2486 2011-10-27  Nick Clifton  <nickc@redhat.com>
2488         * config.sub: Import these changes from the config project:
2490         2011-10-08  Joern Rennecke  <joern.rennecke@embecosm.com>
2491             Ben Elliston  <bje@gnu.org>
2493         * config.sub (epiphany): New.
2495         2011-09-09  Linas Vepstas  <linasvepstas@gmail.com>
2496             Ben Elliston  <bje@gnu.org>
2498         * config.sub (hexagon, hexagon-*): New.
2500         2011-08-23  Roland McGrath  <mcgrathr@google.com>
2502         * config.sub: Rename 32eb to be32, 32el to le32, 64el to le64, and
2503         64eb to be64.
2505         2011-08-16  Roland McGrath  <mcgrathr@google.com>
2507         * config.sub (32eb, 32el, 64eb, 64el): New (pseudo-)CPUs.
2508         (nacl): Grok as alias for 32el-unknown-nacl.
2510 2011-08-19  Joel Brobecker  <brobecker@adacore.com>
2512         * src-release (GDB_SUPPORT_DIRS): Add 'cpu'.
2514 2011-08-14  Yao Qi  <yao@codesourcery.com>
2516         Merge from gcc:
2518         2011-08-14  Yao Qi  <yao@codesourcery.com>
2519         * configure.ac (tic6x-*-*): Remove gdb from noconfigdirs.
2520         * configure: Regenerate.
2522 2011-07-26  Ian Lance Taylor  <iant@google.com>
2524         Merge from gcc:
2526         2011-07-26  Ian Lance Taylor  <iant@google.com>
2527         * configure.ac: Set have_compiler based on whether gcc directory
2528         exists, rather than on whether gcc is in configdirs.
2529         * configure: Rebuild.
2531         2011-07-20  David Edelsohn  <dje.gcc@gmail.com>
2532         * Makefile.tpl (POSTSTAGE1_CONFIGURE_FLAGS): Add libsupc++ to
2533         link directories.
2534         * Makefile.in: Rebuild.
2536         2011-07-20  Ian Lance Taylor  <iant@google.com>
2537         PR bootstrap/49787
2538         * configure.ac: Move --enable-bootstrap handling earlier in file.
2539         If --enable-bootstrap and either --enable-build-with-cxx or
2540         --enable-build-poststage1-with-cxx, enable C++ automatically.
2541         * configure: Rebuild.
2543         2011-07-19  Ian Lance Taylor  <iant@google.com>
2544         * configure.ac: Add --enable-build-poststage1-with-cxx.  If set,
2545         make C++ a boot_language.  Set and substitute
2546         POSTSTAGE1_CONFIGURE_FLAGS.
2547         * Makefile.tpl (POSTSTAGE1_CONFIGURE_FLAGS): New variable.
2548         (STAGE[+id+]_CONFIGURE_FLAGS): Add $(POSTSTAGE1_CONFIGURE_FLAGS).
2549         * configure, Makefile.in: Rebuild.
2551         2011-07-16  Jason Merrill  <jason@redhat.com>
2552         * Makefile.def (language=c++): Add check-c++0x and
2553         check-target-libmudflap-c++.
2554         * Makefile.tpl (check-target-libmudflap-c++): New.
2555         * Makefile.in: Regenerate.
2557         2011-07-16  Matthias Klose  <doko@ubuntu.com>
2558         * Makefile.tpl (EXTRA_CONFIGARGS_LIBJAVA): Define.
2559         * Makefile.def (target_modules/libjava): Pass
2560         $(EXTRA_CONFIGARGS_LIBJAVA).
2561         * configure.ac: Pass --disable-static in EXTRA_CONFIGARGS_LIBJAVA,
2562         if not configured with --enable-static-libjava.
2563         * Makefile.in: Regenerate.
2564         * configure: Likewise.
2566         2011-06-22  Hans-Peter Nilsson  <hp@axis.com>
2567         PR regression/47836
2568         PR bootstrap/23656
2569         PR other/47733
2570         PR bootstrap/49247
2571         PR c/48825
2572         * configure.ac (target_libraries): Remove target-libiberty.
2573         Remove case-statement setting skipdirs=target-libiberty for
2574         multiple targets.  Remove checking target_configdirs and
2575         removing target-libiberty but keeping target-libgcc if
2576         otherwise empty.
2577         * Makefile.def (target_modules): Don't add libiberty.
2578         (dependencies): Remove all traces of target-libiberty.
2579         * configure, Makefile.in: Regenerate.
2581 2011-07-22  Jason Merrill  <jason@redhat.com>
2583         * Makefile.def (language=c++): Add check-c++0x and
2584         check-target-libmudflap-c++.
2585         * Makefile.tpl (check-target-libmudflap-c++): New.
2586         * Makefile.in: Regenerate.
2588 2011-07-18  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
2590         * configure: Regenerate.
2592 2011-07-07  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
2594         PR target/39150
2595         * configure.ac (i[3456789]86-*-solaris2*): Also accept
2596         x86_64-*-solaris2.1[0-9]*.
2597         * configure: Regenerate.
2599 2011-06-13  Walter Lee <walt@tilera.com>
2601         * configure.ac (tilepro-*-*) New case.
2602         (tilegx-*-*): Likewise.
2603         * configure: Regenerate.
2605 2011-06-06  Nick Clifton  <nickc@redhat.com>
2607         * config.sub: Sync from upstream.
2609 2011-05-08  Doug Kwan  <dougkwan@google.com>
2611         Merge from gcc:
2613         2011-05-08  Doug Kwan  <dougkwan@google.com>
2615                 * configure.ac: Propagate LDFLAGS_FOR_TARGET.
2616                 * configure: Regenerated.
2617                 * Makefile.tpl (LDFLAGS_FOR_TARGET): Use LDFLAGS_FOR_TARGET
2618                 value from configure.
2619                 * Makefile.in: Regenerated.
2621 2011-05-05  Joseph Myers  <joseph@codesourcery.com>
2623         * configure.ac (alpha*-dec-osf*, i[[3456789]]86-*-rdos*,
2624         sh*-*-pe|mips*-*-pe|arm-wince-pe, sparc-*-sunos4*, *-*-aix*,
2625         *-*-beos*, *-*-chorusos, *-*-dragonfly*, *-*-freebsd*, *-*-linux*
2626         | *-*-gnu* | *-*-k*bsd*-gnu | *-*-kopensolaris*-gnu, *-*-lynxos*,
2627         *-*-mingw*, *-*-netbsd*, *-*-netware*, *-*-tpf*, *-*-uclinux*,
2628         *-*-vxworks*): Disable newlib and libgloss in separate case
2629         statement.
2630         (i[[3456789]]86-*-linux*): Move logic allowing newlib to be built
2631         to separate case statement.
2632         (*-*-chorusos, *-*-dragonfly*, *-*-freebsd*, *-*-netbsd*,
2633         *-*-netware*, *-*-tpf*, *-*-uclinux*, *-*-vxworks*,
2634         alpha*-dec-osf*, alpha*-*-linux*, am33_2.0-*-linux*, sh-*-linux*,
2635         sh*-*-pe|mips*-*-pe|*arm-wince-pe, arm-*-coff, arm-*-elf* |
2636         arm*-*-eabi*, arm*-*-linux-gnueabi, arm*-*-symbianelf*, avr-*-*,
2637         bfin-*-*, cris-*-* | crisv32-*-*, frv-*-*, i[[3456789]]86-*-coff |
2638         i[[3456789]]86-*-elf, i[[3456789]]86-w64-mingw*,
2639         i[[3456789]]86-*-mingw*, x86_64-*-mingw*,
2640         i[[3456789]]86-*-interix*, i[[3456789]]86-*-beos*,
2641         i[[3456789]]86-*-rdos*, m32r-*-*,
2642         m68hc11-*-*|m6811-*-*|m68hc12-*-*|m6812-*-*, m68k-*-elf*, m68*-*-*
2643         | fido-*-*, powerpc-*-aix*, powerpc-*-beos*, powerpc-*-eabi,
2644         powerpc-*-eabi* | powerpcle-*-eabi* | powerpc-*-rtems*,
2645         rs6000-*-lynxos*, rs6000-*-aix*, mips*-*-linux*, sparclet-*-aout*
2646         | sparc86x-*-*, sparc-*-elf*, sparc64-*-elf*, sparclite-*-*,
2647         sparc-*-sunos4*, sparc-*-solaris* | sparc64-*-solaris* |
2648         sparcv9-*-solaris*, *-*-linux* | *-*-gnu* | *-*-k*bsd*-gnu |
2649         *-*-kopensolaris*-gnu, *-*-lynxos*, *-*-*): Don't disable newlib
2650         and libgloss in main case over targets.  Remove most empty cases
2651         in main case over targets.
2652         * configure: Regenerate.
2654 2011-05-04  Joseph Myers  <joseph@codesourcery.com>
2656         * configure.ac: Remove code setting special library locations for
2657         hppa*64*-*-hpux11*.  Remove code setting compiler for
2658         sparc-sun-solaris2*.
2659         * configure: Regenerate.
2661 2011-05-04  Joseph Myers  <joseph@codesourcery.com>
2663         * configure.ac: Separate libgloss_dir settings from general case
2664         over targets.
2665         * configure: Regenerate.
2667 2011-04-28  Joseph Myers  <joseph@codesourcery.com>
2669         * configure.ac (*-*-dragonfly*, *-*-freebsd*, *-*-netbsd*,
2670         alpha*-dec-osf*, alpha*-*-linux*, alpha*-*-*, sh-*-linux*,
2671         arm-*-elf* | arm*-*-eabi*, arm*-*-linux-gnueabi, frv-*-*): Remove
2672         cases in libgcj-disabling case statement.
2673         (hppa*64*-*-linux*): Set unsupported_languages instead of
2674         disabling target-zlib.
2675         (hppa*64*-*-*): Restrict case in libgcj-disabling case statement
2676         to hppa*64*-*-hpux*.
2677         (hppa*-*-*): Restrict case in libgcj-disabling case statement to
2678         hppa*-*-hpux*.
2679         (ia64*-*-elf*, ia64*-**-hpux*, i[[3456789]]86-*-elf,
2680         i[[3456789]]86-*-linux*, *-*-cygwin*, i[[3456789]]86-*-interix*,
2681         i[[3456789]]86-*-solaris2*, m32r-*-*, m68k-*-elf*, m68*-*-* |
2682         fido-*-*, powerpc-*-eabi, powerpc-*-eabi* | powerpcle-*-eabi* |
2683         powerpc-*-rtems*, mips*-*-linux*, mips*-*-*, sh-*-* | sh64-*-*,
2684         sparc-*-elf*, sparc64-*-elf*, sparc-*-solaris* |
2685         sparc64-*-solaris* | sparcv9-*-solaris*, *-*-linux* | *-*-gnu* |
2686         *-*-k*bsd*-gnu | *-*-kopensolaris*-gnu, *-*-*): Remove cases in
2687         libgcj-disabling case statement.
2688         * configure: Regenerate.
2690 2011-04-28  Joseph Myers  <joseph@codesourcery.com>
2692         * configure.ac: Disable Java for targets not supporting libffi.
2693         (*-*-chorusos, *-*-kaos*, am33_2.0-*-linux*, sh*-*-pe|mips*-*-pe):
2694         Remove cases in Java-disabling statement.
2695         (*arm-wince-pe): Change to arm-wince-pe.
2696         (arc-*-*, arm-*-coff, arm-*-pe*, arm-*-riscix*, avr-*-*): Remove
2697         cases in Java-disabling statement.
2698         (bfin-*-*): Don't disable Java again.
2699         (c4x-*-* | tic4x-*-*, tic54x-*-*, cr16-*-*, d10v-*-*, d30v-*-*,
2700         fr30-*-elf*, moxie-*-*, h8300*-*-*, h8500-*-*, hppa1.1-*-osf* |
2701         hppa1.1-*-bsd*, hppa*-*-*elf* | hppa*-*-lites* | hppa*-*-openbsd*,
2702         hppa*-*-pro*, i960-*-*, i[[3456789]]86-*-coff,
2703         i[[3456789]]86-*-pe, i[[3456789]]86-*-sco3.2v5*,
2704         i[[3456789]]86-*-sco*, i[[3456789]]86-*-sysv4*,
2705         i[[3456789]]86-*-beos*, i[[3456789]]86-*-rdos*,
2706         m68hc11-*-*|m6811-*-*|m68hc12-*-*|m6812-*-*): Remove cases in
2707         Java-disabling statement.
2708         (mmix-*-*): Don't disable Java again.
2709         (mt-*-*, powerpc*-*-winnt* | powerpc*-*-pe*, powerpcle-*-solaris*,
2710         powerpc-*-beos*, rs6000-*-lynxos*, rs6000-*-*, m68k-apollo-*,
2711         microblaze*, mips*-sde-elf*, mips*-*-irix5*, mips*-*-bsd*,
2712         sparclet-*-aout* | sparc86x-*-*, sparclite-*-*, sparc-*-sunos4*,
2713         tic6x-*-*, v810-*-*, vax-*-*): Remove cases in Java-disabling
2714         statement.
2715         * configure: Regenerate.
2717 2011-04-28  Joseph Myers  <joseph@codesourcery.com>
2719         Merge from GCC:
2721         2011-04-18  Jack Howarth  <howarth@bromo.med.uc.edu>
2723         PR lto/48086
2724         * configure.ac: Re-enable LTO on *-apple-darwin9*.
2725         * configure: Regenerate.
2727 2011-04-28  Joseph Myers  <joseph@codesourcery.com>
2729         * configure.ac: Separate cases disabling Java and Java libraries
2730         from general case over targets.
2731         * configure: Regenerate.
2733 2011-04-06  Joseph Myers  <joseph@codesourcery.com>
2735         * configure.ac (build_tools): Remove build-byacc.
2736         (host_libs): Remove mmalloc.
2737         (host_tools): Remove byacc make patch prms send-pr ash bash bzip2
2738         autoconf automake libtool diff rcs fileutils shellutils time
2739         textutils wdiff find uudecode hello tar gzip indent recode release
2740         sed perl gawk findutils gettext zip.
2741         (libgcj): Remove target-qthreads.
2742         (target_tools): Remove target-examples target-gperf.
2743         (YACC): Don't handle building byacc.
2744         * configure: Regenerate.
2745         * Makefile.def (ash, autoconf, automake, bash, byacc, bzip2, diff,
2746         dosutils, examples, fileutils, find, findutils, gawk, gettext,
2747         gnuserv, gperf, gzip, hello, indent, libtool, make, mmalloc,
2748         patch, perl, prms, qthreads, rcs, recode, release, sed, send-pr,
2749         shellutils, tar, textutils, time, uudecode, wdiff, zip): Don't
2750         handle building components.
2751         * Makefile.in: Regenerate.
2753 2011-04-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2755         * config.sub: Sync from upstream.
2757 2011-04-01  Joseph Myers  <joseph@codesourcery.com>
2759         * configure.ac (avr-*-*): Add comment about why libssp is disabled.
2760         (microblaze*): Don't disable libssp.
2761         * configure: Regenerate.
2763 2011-04-01  Joseph Myers  <joseph@codesourcery.com>
2765         * configure.ac: Remove code setting CONFIG_SHELL, config_shell and
2766         moveifchange.
2767         * configure: Regenerate.
2768         * Makefile.tpl: Use @SHELL@ not @config_shell@.
2769         * Makefile.in: Regenerate.
2771 2011-04-01  Joseph Myers  <joseph@codesourcery.com>
2773         * configure.ac (*-*-sysv4*): Don't enable libgomp.
2774         (alpha*-*-*vms*, i[[34567]]86-*-sco3.2v5*, mn10300-*-*,
2775         powerpc-*-chorusos*, powerpc*-*-eabi*, powerpc*-*-sysv*,
2776         powerpc*-*-kaos*, s390x-ibm-tpf*, sparc64-*-elf*, v850*-*-*,
2777         xtensa*-*-elf*, *-*-beos*, *-*-elf*, *-*-netware*, *-*-rtems*,
2778         *-*-sysv[[45]]*, *-*-vxworks*, *-wrs-windiss): Remove
2779         md_exec_prefix cases.
2780         * configure: Regenerate.
2782 2011-04-01  Joseph Myers  <joseph@codesourcery.com>
2784         * configure.ac: Separate cases disabling target-libssp,
2785         target-libiberty, target-libstdc++-v3 and Fortran from general
2786         case over targets.
2787         * configure: Regenerate.
2789 2011-04-01  Joseph Myers  <joseph@codesourcery.com>
2791         * configure.ac (*-*-chorusos): Don't disable libgcj.
2792         (*-*-freebsd[[12]] | *-*-freebsd[[12]].* | *-*-freebsd*aout*):
2793         Remove case.
2794         (*-*-kaos*): Don't disable GCC libraries, zlib or fastjar.
2795         (arm-*-coff): Don't disable libgcj.
2796         (arm*-*-linux-gnueabi): Remove useless assignment.
2797         (arm-*-riscix*): Don't disable libgcj.
2798         (bfin-*-*): Don't enable target-bsp and target-cygmon depending on
2799         configuration.
2800         (c4x-*-* | tic4x-*-*): Don't disable GCC libraries.
2801         (c54x*-*-*): Remove case.
2802         (tic54x-*-*): Don't disable GCC or GCC libraries.
2803         (cris-*-* | crisv32-*-*): Don't handle *-*-aout.  Change *-*-elf
2804         to *.
2805         (d10v-*-*): Don't disable GCC libraries.
2806         (d30v-*-*): Don't disable libgcj.
2807         (h8500-*-*): Don't disable GCC libraries.
2808         (i960-*-*): Don't disable libgcj.
2809         (i[[3456789]]86-*-linux*): Don't handle *-*-*libc1*.
2810         (i[[3456789]]86-*-sco3.2v5*, i[[3456789]]86-*-sco*,
2811         i[[3456789]]86-*-sysv4*, i[[3456789]]86-*-beos*): Don't disable
2812         libgcj.
2813         (m68k-*-coff*): Remove case.
2814         (mmix-*-*): Don't disable libgloss on host.
2815         (mn10200-*-*, mn10300-*-*): Remove cases.
2816         (powerpc*-*-winnt* | powerpc*-*-pe*, powerpcle-*-solaris*,
2817         powerpc-*-beos*, m68k-apollo-*, mips*-*-irix5*, mips*-*-bsd*):
2818         Don't disable libgcj.
2819         (romp-*-*): Remove case.
2820         (sparclite-*-*, sparc-*-sunos4*): Don't disable libgcj.
2821         (sparc-*-solaris2.[[0-6]] | sparc-*-solaris2.[[0-6]].*): Remove
2822         case.
2823         (v810-*-*): Don't disable GCC libraries.
2824         (v850*-*-*, vax-*-vms, xtensa*-*-*): Remove cases.
2825         (ip2k-*-*): Don't disable GCC libraries.
2826         * configure: Regenerate.
2828 2011-03-28  Joseph Myers  <joseph@codesourcery.com>
2830         * configure.ac (i[[3456789]]86-*-msdosdjgpp*): Don't disable
2831         libffi on host.
2832         (x86_64-*-mingw*, i[[3456789]]86-*-mingw32*): Don't disable newlib
2833         on host.
2834         (c54x*-*-* | tic54x-*-*): Don't disable newlib on host.
2835         * configure: Regenerate.
2837 2011-03-26  John Marino  <binutils@marino.st>
2839         * configure.ac: Add support for *-*-dragonfly*
2840         * configure: Regenerate.
2842 2011-03-25  Joseph Myers  <joseph@codesourcery.com>
2844         * configure.ac (native_only): Remove.
2845         (i[[3456789]]86-*-msdosdjgpp*): Don't disable expect dejagnu
2846         send-pr uudecode guile gnuserv on host.
2847         (x86_64-*-mingw*): Don't disable expect dejagnu autoconf automake
2848         send-pr rcs guile perl texinfo libtool on host.
2849         (i[[3456789]]86-*-mingw32*): Don't disable expect dejagnu autoconf
2850         automake send-pr rcs guile perl texinfo libtool on host.
2851         (*-*-cygwin*, *-*-netbsd*): Remove host cases.
2852         (*-*-kaos*): Don't disable target-examples target-gperf on target.
2853         (alpha*-dec-osf*): Don't disable fileutils on target.
2854         (sh*-*-pe|mips*-*-pe|*arm-wince-pe): Don't disable target-examples
2855         texinfo send-pr expect dejagnu on target.
2856         (arm-*-elf* | arm*-*-eabi*, arm*-*-linux-gnueabi): Don't disable
2857         target-qthreads on target.
2858         (hppa*-hp-hpux11*, hppa*-*-*): Don't disable shellutils on target.
2859         (ia64*-*-elf*, ia64*-*-*vms*): Don't disable mmalloc on target.
2860         (i[[3456789]]86-w64-mingw*, i[[3456789]]86-*-mingw*,
2861         x86_64-*-mingw*): Don't disable expect on target.
2862         (*-*-cygwin*): Don't disable target-gperf on target.
2863         (powerpc*-*-winnt* | powerpc*-*-pe*): Don't disable make expect
2864         gnuserv on target.
2865         (powerpcle-*-solaris*): Don't disable make expect gnuserv on
2866         target.
2867         * configure: Regenerate.
2869 2011-03-25  Joseph Myers  <joseph@codesourcery.com>
2871         * configure.ac (target_tools): Remove target-groff.
2872         (native_only): Remove target-groff.
2873         (hppa*64*-*-*): Don't disable byacc.
2874         (i[[3456789]]86-*-mingw32*): Remove commented-out noconfigdirs
2875         setting.
2876         (*-*-kaos*): Don't skip target-librx and target-groff.
2877         (*-*-netware*): Don't skip target-libmudflap.
2878         (*-*-tpf*): Don't skip target-libmudflap.
2879         (sh*-*-pe|mips*-*-pe|*arm-wince-pe): Don't condition configured
2880         directories on the host.
2881         (ia64*-*-*vms*): Don't skip tix.
2882         (sh-*-* | sh64-*-*): Don't condition skipped directories on the
2883         host.
2884         * configure: Regenerate.
2886 2011-03-24  Paolo Bonzini  <pbonzini@redhat.com>
2888         * configure.ac: Remove references to mt-mep, mt-netware,
2889         mt-wince.
2890         * Makefile.def: Add all-utils soft dependencies.
2891         * Makefile.tpl: Remove GDB_NLM_DEPS.
2892         * configure: Regenerate.
2893         * Makefile.in: Regenerate.
2895 2011-03-24  Paolo Bonzini  <bonzini@gnu.org>
2897         Sync from GCC:
2899         2011-03-24  Paolo Bonzini  <bonzini@gnu.org>
2901         * configure.ac: Do not include mh-x86omitfp.
2902         * configure: Regenerate.
2904         2011-03-24  Paolo Bonzini  <bonzini@gnu.org>
2906         * configure.ac: Remove empty cases.
2907         * configure: Regenerate.
2909         2011-03-24  Paolo Bonzini  <bonzini@gnu.org>
2911         * Makefile.def: Add dependency from termcap to gdb.
2912         * Makefile.in: Regenerate.
2914         2011-03-24  Paolo Bonzini  <bonzini@gnu.org>
2916         * configure.ac: Remove all mentions of mh-sysv4 and mh-solaris.
2917         * configure: Regenerate.
2918         * Makefile.def: Remove all mentions of X11_FLAGS_TO_PASS.
2919         * Makefile.tpl: Likewise.
2920         * Makefile.in: Regenerate.
2922         2011-03-24  Paolo Bonzini  <bonzini@gnu.org>
2924         * configure.ac: Remove all mentions of tentative_cc.
2925         * configure: Regenerate.
2927         2011-03-16  Jack Howarth  <howarth@bromo.med.uc.edu>
2929         PR lto/48086
2930         * configure.ac: Re-enable LTO on *-apple-darwin9.
2931         * configure: Regenerate.
2933 2011-03-24  Joseph Myers  <joseph@codesourcery.com>
2935         * configure.ac (i[[3456789]]86-*-vsta, i[[3456789]]86-*-go32*,
2936         i[[3456789]]86-*-beos*, powerpc-*-beos*, m68k-hp-hpux*,
2937         m68k-apollo-sysv*, m68k-apollo-bsd*, m88k-dg-dgux*,
2938         m88k-harris-cxux*, m88k-motorola-sysv*, mips*-dec-ultrix*,
2939         mips*-nec-sysv4*, mips*-sgi-irix4*, mips*-*-sysv4*, mips*-*-sysv*,
2940         i370-ibm-opened*, i[[3456789]]86-*-sysv5*, i[[3456789]]86-*-dgux*,
2941         i[[3456789]]86-ncr-sysv4.3*, i[[3456789]]86-ncr-sysv4*,
2942         i[[3456789]]86-*-sco3.2v5*, i[[3456789]]86-*-sco*,
2943         i[[3456789]]86-*-udk*, vax-*-ultrix2*, m68k-sun-sunos*,
2944         hppa*-*-hiux*, *-*-hiux*, rs6000-*-lynxos*, *-*-sysv4*,
2945         *-*-rhapsody*): Remove host cases.
2946         * configure: Regenerate.
2948 2011-03-24  Joseph Myers  <joseph@codesourcery.com>
2950         * configure.ac (ppc*-*-pe): Remove host case.
2951         (strongarm-*-coff | xscale-*-coff, strongarm-*-elf* |
2952         xscale-*-elf*, thumb-*-coff, thumb-*-elf, thumb-*-pe, ep9312-*-elf
2953         | ep9312-*-coff, parisc*64*-*-linux*, ppc*-*-pe): Remove target
2954         cases.
2955         * configure: Regenerate.
2957 2011-03-24  Joseph Myers  <joseph@codesourcery.com>
2959         * config.sub: Update to version 2011-03-23.
2961 2011-03-22  Joseph Myers  <joseph@codesourcery.com>
2963         * configure.ac (arm-semi-aof, crx-*-*, parisc*-*-linux*,
2964         i370-*-opened*, i[[3456789]]86-moss-msdos | i[[3456789]]86-*-moss*
2965         | i[[3456789]]86-*-uwin*, mcore-*-pe*): Remove empty cases.
2966         * configure: Regenerate.
2968 2011-03-22  Joseph Myers  <joseph@codesourcery.com>
2970         * config-ml.in: Don't handle arc-*-elf*.
2971         * configure.ac (arc-*-*, crx-*-*, i[[3456789]]86-*-pe,
2972         m68hc11-*-*|m6811-*-*|m68hc12-*-*|m6812-*-*, mcore-*-pe*): Don't
2973         handle GCC libraries.
2974         * configure: Regenerate.
2976 2011-03-21  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
2978         PR bootstrap/48120:
2979         * configure.ac (pwllib): Use LIBS instead of LDFLAGS.
2980         Add -lstdc++ -lm to LIBS.
2981         * configure: Regenerate.
2983 2011-03-18  David Edelsohn  <dje.gcc@gmail.com>
2985         * config.guess: Update to version 2011-02-02
2986         * config.sub: Update to version 2011-02-24
2988 2011-03-03  Sebastian Pop  <sebastian.pop@amd.com>
2990         * configure.ac: Adjust test of with_ppl.
2991         * configure: Regenerated.
2993 2011-03-02  Sebastian Pop  <sebastian.pop@amd.com>
2995         * configure.ac: Add -lpwl to ppllibs.
2996         * config/cloog.m4: Add -lisl to clooglibs.
2997         * configure: Regenerated.
2999 2011-02-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3001         Import from Libtool and gnulib:
3003         2011-01-27  Gerald Pfeifer  <gerald@pfeifer.com>
3005         Prepare for supporting FreeBSD 10.
3006         * config.rpath: Remove handling of freebsd1* which soon would
3007         match FreeBSD 10.0.
3009         2011-01-20  Gerald Pfeifer  <gerald@pfeifer.com>  (tiny change)
3011         Remove support for FreeBSD 1.x.
3012         * libtool.m4 (_LT_LINKER_SHLIBS)
3013         (_LT_SYS_DYNAMIC_LINKER): Remove handling of freebsd1* which
3014         soon would incorrectly match FreeBSD 10.0.
3016 2011-02-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3018         PR binutils/12283
3019         * MAINTAINERS (mkinstalldirs): Comes from Automake.
3020         (move-if-change): Comes from gnulib.
3021         * move-if-change: Import version from gnulib.
3023 2011-02-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3025         Sync from GCC:
3027         2011-02-12  Alexandre Oliva  <aoliva@redhat.com>
3029         PR lto/47225
3030         * Makefile.def (lto-plugin): Double dash for enable-shared.
3031         (configure-gcc): Depend on all-lto-plugin.
3032         * Makefile.in: Rebuilt.
3034         2011-02-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3036         * configure.ac: Remove extra bracket.
3037         * configure: Regenerate.
3039         2011-02-06  Kai Tietz  <kai.tietz@onevision.com>
3041         PR lto/47225
3042         * Makefile.def: Add dependency for install-gcc
3043         on install-lto-plugin.
3044         * Makfile.in: Regenerated
3046         2011-01-25  Jakub Jelinek  <jakub@redhat.com>
3048         * configure.ac: If with_ppl is no, move setting with_cloog=no
3049         after CLOOG_REQUESTED check.
3050         * configure: Regenerated.
3052         2011-01-25  Sebastian Pop  <sebastian.pop@amd.com>
3054         * configure.ac: Call AC_MSG_ERROR when PPL 0.11 is not present and
3055         CLooG has been requested.
3056         * configure: Regenerated.
3058         2011-01-25  Sebastian Pop  <sebastian.pop@amd.com>
3060         * configure: Regenerated.
3061         * configure.ac: Check for version 0.11 (or later revision) of PPL.
3063         2011-01-25  Tobias Grosser  <grosser@fim.uni-passau.de>
3065         * configure: Regenerated.
3066         * configure.ac: Use CLOOG_CHECK_VERSION(0,16,1).
3068         2011-01-07  Jan Hubicka  <jh@suse.cz>
3070         PR lto/47225
3071         * Makefile.in: Regenerate.
3072         * Makefile.def (lto-plugin): Always pass enable-shared to the plugin
3073         configure.
3075 2011-01-31  Alexandre Oliva  <aoliva@redhat.com>
3077         PR libgcj/44341
3078         * configure.ac: Discard --with-* flags for host when configuring
3079         target libraries for cross build.
3080         * configure: Rebuilt.
3082 2011-01-21  Andreas Schwab  <schwab@redhat.com>
3084         Sync from GCC:
3086         2011-01-21  Andreas Schwab  <schwab@redhat.com>
3088         * configure.ac: Use AS_HELP_STRING throughout.
3089         * configure: Regenerate.
3091         2011-01-18  Jie Zhang  <jie.zhang@analog.com>
3093         * configure.ac (bfin-*-*): Remove gdb from noconfigdirs.
3094         * configure: Regenerate.
3096 2010-12-10  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
3098         * ltmain.sh (relink): Use absolute path when hardcoding with -L.
3100 2011-01-13  Joel Brobecker  <brobecker@adacore.com>
3102         * configure.ac: Remove readline, mmalloc, and gdb from noconfigdirs
3103         for ia64-hpux.
3104         * configure: Regenerate.
3106 2011-01-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3108         Sync from GCC:
3109         2010-12-22  Hariharan Sandanagobalane  <hariharan@picochip.com>
3111         * configure.ac: (picochip): Disable libiberty.
3112         * configure: Regenerate.
3114 2010-12-18  Jeff Johnston  <jjohnstn@redhat.com>
3116         * COPYING.LIBGLOSS: Remove the GPL for fr30 target.
3118 2010-12-10  Ian Lance Taylor  <iant@google.com>
3120         PR bootstrap/46819
3121         * configure.ac: For --disable-libgcj clear libgcj_saved.
3122         * configure: Rebuild.
3124 2010-12-10  Tobias Burnus  <burnus@net-b.de>
3126         PR fortran/46540
3127         * configure.ac: Add --disable-libquadmath and
3128         --disable-libquadmath-support.
3129         * configure: Regenerate.
3131 2010-12-10  Tristan Gingold  <gingold@adacore.com>
3133         * src-release (ETC_SUPPORT): add gnu-oids.texi
3135 2010-12-03  Hans-Peter Nilsson  <hp@axis.com>
3137         PR libffi/46792
3138         * configure.ac (cris-*-elf, crisv32-*-elf): Disable target-libffi.
3139         * configure: Regenerate.
3141 2010-12-02  Ian Lance Taylor  <iant@google.com>
3143         * configure.ac: Always set default for poststage1_ldflags to
3144         -static-libstdc++ -static-libgcc.
3146 2010-12-02  Jeff Johnston  <jjohnstn@redhat.com>
3148         * COPYING.NEWLIB: Add National Semiconductor notice.
3150 2010-11-29  Andreas Schwab  <schwab@redhat.com>
3152         * configure.ac: Move comment to remove extra space in last argument
3153         of GCC_TARGET_TOOL.
3155 2010-11-26  Alexandre Oliva  <aoliva@redhat.com>
3157         PR other/46026
3158         * configure.ac (CXX_FOR_TARGET): Add -funconfigured-libstdc++-v3.
3159         * Makefile.def (CXX_FOR_TARGET): Removed from flags_to_pass.
3160         * Makefile.tpl (CXX_FOR_TARGET_FLAG_TO_PASS): New.
3161         (BASE_FLAGS_TO_PASS): Use it.
3162         * configure: Rebuilt.
3163         * Makefile.in: Rebuilt.
3165 2010-11-23  H.J. Lu  <hongjiu.lu@intel.com>
3167         PR binutils/12258
3168         * configure.ac: Correct comments for --enable-gold/--enable-ld.
3169         Properly check default linker.
3170         * configure: Regnerated.
3172 2010-11-23  Matthias Klose  <doko@ubuntu.com>
3174         * configure.ac: For --enable-gold, handle value `default' instead of
3175         `both*'.   New configure option --{en,dis}able-ld.
3176         * configure: Regenerate.
3178 2010-11-20  Ian Lance Taylor  <iant@google.com>
3180         * configure.ac: Only disable a language library if no language needs
3181         it.  Don't let --disable-libgcj uncondtionally disable libffi.
3182         * configure: Rebuild.
3184 2010-11-20  Paolo Bonzini  <bonzini@gnu.org>
3186         * configure: Regenerate.
3188 2010-11-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3190         PR other/46202
3191         * configure.ac: Fix just-built in-tree STRIP name to be
3192         binutils/strip-new.
3193         * configure: Regenerate.
3194         * Makefile.def (install-strip-gcc, install-strip-binutils)
3195         (install-strip-opcodes, install-strip-ld, install-strip-itcl)
3196         (install-strip-sid): Mirror dependencies on non-strip variants
3197         of these targets on the respective -strip prerequisites.
3198         * Makefile.tpl (install-strip, install-strip-host)
3199         (install-strip-target): New targets.
3200         (install-strip-[+module+], install-strip-target-[+module+]):
3201         New targets.
3202         * Makefile.in: Regenerate.
3204 2010-11-19  Ian Lance Taylor  <iant@google.com>
3205             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3207         * configure.ac: Add target-libgo to target_libraries.  Set
3208         and substitute GOC_FOR_BUILD and GOC_FOR_TARGET.
3209         * Makefile.tpl (BUILD_EXPORTS): Add GOC and GOCFLAGS.
3210         (HOST_EXPORTS): Add GOC.
3211         (BASE_TARGET_EXPORTS): Add GOC.
3212         (GOC_FOR_BUILD, GOCFLAGS, GOC_FOR_TARGET): New variables.
3213         (GOCFLAGS_FOR_TARGET): New variable.
3214         (EXTRA_HOST_FLAGS): Add GOC.
3215         (EXTRA_TARGET_FLAGS): Add GOC and GOCFLAGS.
3216         * Makefile.def (target_modules): Add libgo.
3217         (flags_to_pass): Add GOC_FOR_TARGET and GOCFLAGS_FOR_TARGET.
3218         (dependencies): Add dependency from configure-target-libgo to
3219         configure-target-libffi and all-target-libstdc++-v3.  Add
3220         dependencies from all-target-libgo to all-target-libffi.
3221         (languages): Add go.
3222         * configure: Rebuild.
3223         * Makefile.in: Rebuild.
3225 2010-11-19  Ian Lance Taylor  <iant@google.com>
3227         * config-ml.in: Add Go support: treat GOC and GOCFLAGS like other
3228         compiler/flag environment variables.
3230 2010-11-18  Ian Lance Taylor  <iant@google.com>
3232         * configure.ac: Check for lang_requires_boot_languages in
3233         config-lang.in files.
3234         * configure: Rebuild.
3236 2010-11-17  Mike Frysinger  <vapier@gentoo.org>
3238         * .gitignore: New file.
3240 2010-11-16  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
3241             Tobias Burnus  <burnus@net-b.de>
3243         PR fortran/32049
3244         * Makefile.def: Add libquadmath; build it with language=fortran.
3245         * configure.ac: Add libquadmath.
3246         * Makefile.tpl: Handle multiple libs in check-[+language+].
3247         * Makefile.in: Regenerate.
3248         * configure: Regenerate.
3250 2010-11-15  Andreas Schwab  <schwab@redhat.com>
3252         * configure.ac: Fix spelling in option names.
3253         * configure: Regenerated.
3255 2010-11-13  Georg-Johann Lay  <georgjohann@web.de>
3257         PR bootstrap/39622
3258         * configure.ac (FLAGS_FOR_TARGET): Add include-fixed path.
3259         * configure: Regenerated.
3261 2010-11-12  Tobias Grosser  <grosser@fim.uni-passau.de>
3263         * config/cloog.m4: Add -enable-cloog-backend=(isl|ppl|ppl-legacy) to
3264         define the cloog backend to use. Furthermore, only pass the ppllibs to
3265         the configure checks, if necessary.
3266         * configure: Regenerate.
3268 2010-11-12  Tobias Grosser  <grosser@fim.uni-passau.de>
3270         * config/cloog.m4: Use CLooG predefined macro to check for CLooG PPL.
3271         * configure: regenerate
3273 2010-11-12  Tobias Grosser  <grosser@fim.uni-passau.de>
3275         * config/cloog.m4: Fix typo.  verison -> version.
3276         * configure: Regenerate.
3278 2010-11-12  Tobias Grosser  <grosser@fim.uni-passau.de>
3280         * config/cloog.m4: Pass ppl libraries to the CLooG version check.
3281         * configure: Regenerate.
3283 2010-11-11  Andreas Simbuerger  <simbuerg@fim.uni-passau.de>
3285         * configure.ac: Support official CLooG.org versions.
3286         * configure: Regenerate.
3287         * config/cloog.m4: New.
3289 2010-11-05  Michael Eager  <eager@eagercon.com>
3291         * COPYING.LIBGLOSS: Correct typo in microblaze.
3292         * COPYING.NEWLIB: Same.
3294 2010-11-04  Iain Sandoe  <iains@gcc.gnu.org>
3296         * configure.ac (*-*-darwin*): Use mh-darwin for all Darwin variants.
3297         * configure: Regenerate.
3299 2010-11-03  Ian Lance Taylor  <iant@google.com>
3300             Dave Korn  <dave.korn.cygwin@gmail.com>
3302         PR lto/46273
3303         * configure.ac: Remove libelf tests.  Build lto-plugin on ELF always
3304         and on other supported platforms whenever LTO is enabled.
3305         * configure: Rebuild.
3307 2010-11-02  Alan Modra  <amodra@gmail.com>
3309         PR binutils/12110
3310         * configure.ac: Error when source path contains spaces.
3311         * configure: Regenerate.
3313 2010-10-20  Ian Lance Taylor  <iant@google.com>
3315         * Makefile.def (target_modules): Set lib_path to src/.libs for
3316         libstdc++-v3 module.
3317         * Makefile.tpl: Fix typo in TARGET_LIB_PATH comment.
3318         * Makefile.in: Rebuild.
3320 2010-10-08  Bernd Schmidt  <bernds@codesourcery.com>
3321             Joseph Myers  <joseph@codesourcery.com>
3323         * COPYING.LIBGLOSS: Add National Semiconductor and CodeSourcery
3324         notices.
3325         * COPYING.NEWLIB: Add Texas Instruments notice.
3327 2010-10-07  Dave Korn  <dave.korn.cygwin@gmail.com>
3329         * configure.ac (build_lto_plugin): New shell variable.
3330         (--enable-lto): Turn on by default for all non-ELF platforms that
3331         have had LTO support added so far.  Set build_lto_plugin appropriately
3332         for both ELF and non-ELF.
3333         (configdirs): Add lto-plugin or not based on build_lto_plugin.
3334         * configure: Regenerate.
3336 2010-10-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3338         PR bootstrap/45326
3339         PR bootstrap/45174
3340         * configure.ac: Honor initial values of $build_configargs,
3341         $host_configargs, $target_configargs.  Mark the precious, so
3342         environment settings get recorded.
3343         * configure: Regenerate.
3345 2010-10-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3347         Sync from GCC:
3349         2010-09-30  Michael Eager  <eager@eagercon.com>
3351         * configure.ac (microblaze): Add target-libssp to noconfigdirs.
3352         * configure: Regenerate.
3354         2010-09-21  Iain Sandoe  <iains@gcc.gnu.org>
3356         * configure.ac (enable-lto): Add Darwin to the list of supported lto
3357         targets and amend comment.
3358         * configure: Regenerate.
3360         2010-09-03  Jack Howarth <howarth@bromo.med.uc.edu>
3362         * configure.ac: Enable LTO by default on Darwin.
3363         * configure: Regenerate.
3365         2010-07-23  Marc Glisse <marc.glisse@normalesup.org>
3367         PR bootstrap/44455
3368         * configure.ac (extra_mpfr_configure_flags): Copy from
3369         extra_mpc_gmp_configure_flags.
3370         * configure: Re-generated.
3372 2010-09-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3374         Sync from GCC:
3376         PR bootstrap/45796
3377         * Makefile.def (info-gcc, dvi-gcc, pdf-gcc, html-gcc):
3378         Depend on all-build-libiberty.
3379         * Makefile.in: Regenerate.
3381 2010-09-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3383         Sync from GCC:
3385         PR bootstrap/44621
3386         * configure.ac: Fix unportable shell quoting.
3387         * configure: Regenerate.
3389 2010-07-26  Naveen.H.S  <naveen.S@kpitcummins.com>
3391         * configure.ac: Support all v850 targets.
3392         * configure: Regenerate.
3394 2010-07-17  Jack Howarth  <howarth@bromo.med.uc.edu>
3396         PR target/44862
3397         * Makefile.tpl (POSTSTAGE1_CXX_EXPORT):
3398         Provide -B option to allow for link spec %s substitutions for
3399         libstdc++.a on darwin.
3400         * Makefile.in: Regenerate.
3402 2010-06-10  Alexandre Oliva  <aoliva@redhat.com>
3404         * Makefile.def (configure-gcc): Depend on all-libelf.
3405         * Makefile.in: Rebuild.
3407 2010-06-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3409         * config.sub, config.guess: Update from upstream sources.
3411 2010-06-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3413         Sync from GCC:
3415         2010-05-05  Sebastian Pop  <sebastian.pop@amd.com>
3416         * configure.ac: Allow all the versions greater than 0.10 of PPL.
3417         * configure: Regenerated.
3419         2010-04-20  Eric Botcazou  <ebotcazou@adacore.com>
3420         * configure.ac (BUILD_CONFIG): Redirect output to /dev/null.
3421         * configure: Regenerate.
3423         2010-04-17  Ralf Cors<E9>pius  <ralf.corsepius@rtems.org>
3424         * configure.ac (*-*-rtems*): Add target-libiberty to $skipdirs.
3425         * configure: Regenerate.
3427         2010-04-16  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
3428         * configure.ac: Check for elf_getshdrstrndx or elf_getshstrndx
3429         separately.
3430         * configure: Regenerate.
3432         2010-04-13  Steve Ellcey  <sje@cup.hp.com>
3433         * configure: Regenerate after change to elf.m4.
3435         2010-04-02  Sebastian Pop  <sebastian.pop@amd.com>
3436         * configure.ac: Add brackets around AC_TRY_COMPILE alternative.
3437         * configure: Regenerated.
3439         2010-04-02  Sebastian Pop  <sebastian.pop@amd.com>
3440         * configure.ac: Print "buggy but acceptable" when CLooG
3441         revision is less than 9.
3442         * configure: Regenerated.
3444 2010-05-26  Dave Korn  <dave.korn.cygwin@gmail.com>
3446         Merge from gcc:
3448         2010-05-18  Steven Bosscher  <steven@gcc.gnu.org>
3449         * configure.ac (--enable-lto): All *-apple-darwin* now support LTO.
3450         * configure: Regenerate.
3452         2010-05-07  Steven Bosscher  <steven@gcc.gnu.org>
3453         * configure.ac (--enable-lto): Add x86_64-apple-darwin* as
3454         a platform that supports LTO.
3455         * configure: Regenerate.
3457         2010-04-27  Dave Korn  <dave.korn.cygwin@gmail.com>
3458         PR lto/42776
3459         * configure.ac (--enable-lto): Refactor handling so libelf tests
3460         are only performed inside then-clause of ACX_ELF_TARGET_IFELSE,
3461         and allow LTO to be explicitly enabled on non-ELF platforms that
3462         are known to support it inside else-clause.
3463         * configure: Regenerate.
3465 2010-04-27  Roland McGrath  <roland@redhat.com>
3466             H.J. Lu  <hongjiu.lu@intel.com>
3468         * configure.ac (--enable-gold): Support both, both/gold and
3469         both/bfd to add gold to configdirs without removing ld.
3470         * configure: Regenerated.
3472         * Makefile.def: Add install-gold dependency to install-ld.
3473         * Makefile.in: Regenerated.
3475 2010-04-14  Tristan Gingold  <gingold@adacore.com>
3477         * configure.ac (alpha*-*-*vms*): Remove ld from noconfigdirs.
3478         * configure: Regenerate.
3480 2010-04-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3482         Merge from gcc:
3483         PR bootstrap/43615
3484         PR bootstrap/43328
3485         Revert:
3486         2010-03-31  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3487         * configure.ac: Do not pass --enable-multilib nor
3488         --disable-multilib in baseargs.  Accept explicitly passed
3489         --enable_multilib.
3490         * configure: Regenerate.
3492 2010-03-31  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3494         PR bootstrap/43328
3495         * configure.ac: Do not pass --enable-multilib nor
3496         --disable-multilib in baseargs.  Accept explicitly passed
3497         --enable_multilib.
3498         * configure: Regenerate.
3500 2010-03-23  Joseph Myers  <joseph@codesourcery.com>
3502         * configure.ac (tic6x-*-*): New case.
3503         * configure: Regenerate.
3505 2010-03-23  Joseph Myers  <joseph@codesourcery.com>
3507         Merge from gcc:
3508         2010-03-19  Jack Howarth <howarth@bromo.med.uc.edu>
3509         PR ada/42554
3510         * configure.ac: Only pass -c to ranlib for darwin9 and earlier.
3511         * configure: Regenerate.
3513 2010-03-23  Joseph Myers  <joseph@codesourcery.com>
3515         * config.sub: Update to version 2010-03-22.
3516         * config.guess: Update to version 2009-12-30.
3518 2010-03-14  Joseph Myers  <joseph@codesourcery.com>
3520         Merge from gcc:
3521         2010-01-11  Richard Guenther  <rguenther@suse.de>
3522         PR lto/41569
3523         * Makefile.def (all-lto-plugin): Depend on all-gcc.
3524         * Makefile.in: Regenerated.
3526 2010-03-01  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
3528         PR libstdc++/32499
3529         * configure.ac (RANLIB): Default to true.
3530         (STRIP): Likewise.
3531         (RANLIB_FOR_TARGET): Remove superfluous : argument.
3532         * configure: Regenerate.
3534 2010-02-17  Nick Clifton  <nickc@redhat.com>
3536         PR 11238
3537         * Makefile.tpl (local-distclean): Also remove config.cache files in
3538         sub-directories as there may not be Makefiles present in the
3539         sub-directories.
3540         * Makefile.tpl: Use "-exec rm {}" rather than "-delete" to delete
3541         the config.cache files found by the find command.
3543         * Makefile.in: Regenerate.
3544         * configure.ac: Revert previous delta.
3545         * configure: Regenerate.
3547 2010-02-15  Nick Clifton  <nickc@redhat.com>
3549         PR 11238
3550         * configure.ac: Delete config.cache files in sub-directories when
3551         deleting Makefiles.
3552         * configure: Regenerate.
3554 2010-02-15  Nick Clifton  <nickc@redhat.com>
3556         * configure.ac: Sync from gcc.
3557         * configure: Regenerate.
3559 2010-01-31  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3561         Sync from gcc:
3562         * configure.ac: Add "recommended" version checks for GMP/MPC.
3563         Update recommended GMP/MPFR/MPC versions.
3564         * configure: Regenerate.
3566 2010-01-25  Joern Rennecke  <amylaar@spamcop.net>
3568         gcc PR libstdc++/36101, gcc PR libstdc++/42813
3569         * configure.ac (bootstrap_target_libs): Make inclusion of
3570         target-libgomp conditional on libgomb being in target_configdirs.
3571         * configure: Regenerate.
3573 2010-01-23  Joern Rennecke  <amylaar@spamcop.net>
3575         gcc PR libstdc++/36101, gcc PR libstdc++/42813
3576         * configure.ac (bootstrap_target_libs): Include target-libgomp.
3577         * configure: Regenerate.
3579 2010-01-22  Joern Rennecke  <amylaar@spamcop.net>
3581         gcc PR libstdc++/36101, gcc PR libstdc++/42813
3582         * configure.ac (target_configdirs): Substitute.
3583         * Makefile.def: Bootstrap target module libgomp.
3584         Add dependency of all-target-libstdc++-v3 on configure-target-libgomp.
3585         * Makefile.tpl (TARGET_CONFIGDIRS): New makefile variable.
3586         (BASE_TARGET_EXPORTS): Export TARGET_CONFIGDIRS.
3587         * configure, Makefile.in: Regenerate.
3589 2009-12-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3591         * libtool.m4: Sync from git Libtool.
3592         * ltmain.sh: Likewise.
3593         * ltoptions.m4: Likewise.
3594         * ltversion.m4: Likewise.
3595         * lt~obsolete.m4: Likewise.
3597 2010-01-07  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3598             Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
3600         PR bootstrap/42424
3601         * configure.ac: Include libtool m4 files.
3602         (_LT_CHECK_OBJDIR): Call it.
3603         (extra_mpc_mpfr_configure_flags, extra_mpc_gmp_configure_flags,
3604         gmplibs, ppllibs, clooglibs): Use $lt_cv_objdir.
3606         * configure: Regenerate.
3608 2010-01-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3610         PR bootstrap/41818
3611         * Makefile.tpl (BASE_TARGET_EXPORTS): Only add TARGET_LIB_PATH
3612         to $(RPATH_ENVVAR) if bootstrapping.  Fix typo in comment.
3613         * Makefile.in: Regenerate.
3615 2009-12-18  Ben Elliston  <bje@au.ibm.com>
3617         * config.sub, config.guess: Update from upstream sources.
3619 2009-12-17  Jeff Johnston  <jjohnstn@redhat.com>
3621         * COPYING.NEWLIB: Update copyright date.
3622         * COPYING.LIBGLOSS: Ditto.
3624 2009-12-07  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3626         PR middle-end/30447
3627         PR middle-end/30789
3628         PR other/40302
3630         * configure.ac: Require MPC.
3631         * configure: Regenerate.
3633         * configure.ac: Update minimum MPC version to 0.8.
3634         * configure: Regenerate.
3636 2009-11-20  Paolo Bonzini  <bonzini@gnu.org>
3638         * config.guess: Sync with upstream and gcc.
3639         * config.sub: Sync with upstream and gcc.
3641 2009-11-16  Alexandre Oliva  <aoliva@redhat.com>
3643         * Makefile.def: Restore host and target settings for gmp.
3644         * Makefile.in: Rebuild.
3646 2009-11-16  Alexandre Oliva  <aoliva@redhat.com>
3648         * configure.ac: Add libelf to host_libs.  Enable in-tree configury
3649         of ppl and cloog.  Fix in-tree configury of libelf, skip tests.
3650         Fix portability of test of C++ as bootstrap language.  Add
3651         ppl/src/ppl-config.o to the bootstrap compare exclusion list.
3652         * configure: Rebuild.
3653         * Makefile.def: Drop host and target settings from gmp, mpfr, ppl,
3654         and cloog.  Fix in-tree ppl configuration.  Introduce libelf
3655         in-tree building.
3656         * Makefile.tpl (POSTSTAGE1_CXX_EXPORT): New.
3657         (POSTSTAGE1_HOST_EXPORTS): Use it.
3658         (STAGE[+id+]_CXXFLAGS): New.
3659         (BASE_FLAGS_TO_PASS): Pass it down.
3660         (configure-stage[+id+]-[+prefix+][+module+]): Use it.  Add
3661         extra_exports.
3662         (all-stage[+id+]-[+prefix+][+module+]): Likewise.
3663         (configure-[+prefix+][+module+], all-[+prefix+][+module+]): Add
3664         extra_exports.
3665         * Makefile.in: Rebuild.
3667 2009-11-06  Ozkan Sezer  <sezeroz@gmail.com>
3669         * configure.ac (FLAGS_FOR_TARGET):  Add -L and -isystem
3670         paths for *-w64-mingw* and x86_64-*mingw*.
3671         * configure: Regenerated.
3673 2009-10-30  Kai Tietz  <kai.tietz@onevision.com>
3675         * configure.ac: Disable target-winsup & co for
3676         x86_64-*-mingw* and *-w64-mingw* targets.
3677         * configure: Regenerated.
3679 2009-10-23  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
3681         * configure.ac (CLooG test): Use = with test.
3682         * configure: Regenerate.
3684 2009-10-22  Richard Guenther  <rguenther@suse.de>
3686         * configure.ac: Do not set LIBS for ppl/cloog checks.  Disable
3687         cloog if the ppl version check failed.  Move flags saving
3688         before setting in libelf check.
3689         * configure: Regenerate.
3691 2009-10-21  Richard Guenther  <rguenther@suse.de>
3693         * configure.ac: Adjust the ppl and cloog configure to work as
3694         documented.  Disable cloog if ppl was disabled.  Omit the version
3695         checks if they were disabled.
3696         * configure: Re-generate.
3698 2009-10-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3700         * configure.ac: Add 'lto' to enable_languages, not
3701         new_enable_languages, and only if not already present.
3702         * configure: Regenerate.
3704 2009-10-06  Ian Lance Taylor  <iant@google.com>
3706         * Makefile.def: check-gold depends upon all-gas.
3707         * Makefile.in: Rebuild.
3709 2009-10-03  2009-02-05  Rafael Avila de Espindola  <espindola@google.com>
3711         * Makefile.def: all-lto-plugin depends on all-libiberty.
3712         set bootstrap=true for lto-plugin.
3713         Add lto-plugin.
3714         * Makefile.in: Regenerate.
3715         * configure.ac (host_libs): Add lto-plugin.
3716         * configure: Regenerate.
3718 2009-10-03  Diego Novillo  <dnovillo@google.com>
3720         * Makefile.tpl (HOST_EXPORTS): Add LIBELFLIBS and LIBELFINC.
3721         (HOST_LIBELFLIBS): Define.
3722         (HOST_LIBELFINC): Define.
3723         * Makefile.in: Regenerate.
3724         * configure.ac: Add --enable-lto.
3725         Add --with-libelf, --with-libelf-include and --with-libelf-lib.
3726         If --enable-lto is used, add 'lto' to new_enable_languages.
3727         If --enable-lto is used and gold is enabled, add
3728         lto-plugin to configdirs.
3729         * configure: Regenerate.
3731 2009-10-03  Simon Baldwin  <simonb@google.com>
3733         * configure.ac: If --with-system-zlib, suppress local zlib and
3734         pass --with-system-zlib to subdir configure scripts.
3735         * configure: Regenerate.
3737 2009-10-01  Loren J. Rittle <ljrittle@acm.org>
3738             Paolo Bonzini  <bonzini@gnu.org>
3740         * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Use $$s rather than
3741         $(srcdir).
3742         * Makefile.in: Rebuilt.
3744 2009-09-29  Paolo Bonzini  <bonzini@gnu.org>
3746         Sync from gcc:
3747         2009-09-26  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3749         * configure.ac: Update minimum MPC version to 0.7.
3750         * configure: Regenerate.
3752 2009-09-25  Nick Clifton  <nickc@redhat.com>
3754         * configure.ac: Pass any --cache-file=/dev/null option on to
3755         subconfigures.
3756         * configure: Regenerate.
3758 2009-09-23  Nick Clifton  <nickc@redhat.com>
3760         * config.sub, config.guess: Update from upstream sources.
3762 2009-09-22  Loren J. Rittle <ljrittle@acm.org>
3764         * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Remove stray $$r/.
3765         * Makefile.in: Rebuilt.
3767 2009-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3769         PR bootstrap/32272
3770         * configure.ac: Error out if $srcdir isn't '.' but contains
3771         host-${host_noncanonical}.
3772         * configure: Regenerate.
3774 2009-09-21  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3776         * configure.ac: If bootstrapping a combined tree with
3777         --enable-gold, require c++ in stage1_languages.
3778         * configure: Regenerate.
3780         * configure.ac: Also add target_libs of stage1_languages to
3781         bootstrap_target_libs.
3782         * configure: Regenerate.
3784         * configure.ac: Diagnose --enable-build-with-cxx bootstrap
3785         with --enable-languages not containing c++.
3786         * configure: Regenerate.
3788 2009-09-16  Jie Zhang  <jie.zhang@analog.com>
3790         * configure.ac: Disable java and boehm-gc for bfin-*-*.
3791         * configure: Regenerate.
3793 2009-09-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3795         * configure.ac: Do not use $extrasub for replacing @if/@endif
3796         parts in Makefile; instead, use additional arguments to
3797         AC_CONFIG_COMMANDS to do the replacement manually, with several
3798         sed invocations, to avoid HP-UX sed command limits.
3799         * configure: Regenerate.
3801 2009-09-04  Alexandre Oliva  <aoliva@redhat.com>
3803         * configure.ac (with-build-config): Document.  Handle without.
3804         Handle missing argument.
3805         * configure: Rebuilt.
3807 2009-09-03  Alexandre Oliva  <aoliva@redhat.com>
3809         * configure.ac (--with-build-config): New.  Set BUILD_CONFIG.
3810         Default to bootstrap-debug only if compare-debug works.
3811         * configure: Rebuilt.
3812         * Makefile.tpl: Make BUILD_CONFIG configure-configurable.
3813         * Makefile.in: Rebuilt.
3815 2009-09-01  Alexandre Oliva  <aoliva@redhat.com>
3817         * Makefile.tpl (BUILD_CONFIG): Default to bootstrap-debug.
3818         * Makefile.in: Rebuilt.
3820 2009-09-02  Paolo Bonzini  <bonzini@gnu.org>
3822         * Makefile.tpl (AWK): Fix typo.
3823         * Makefile.in: Regenerate.
3825 2009-09-02  Paolo Bonzini  <bonzini@gnu.org>
3827         * configure.ac: Detect awk and sed.
3828         * Makefile.def (flags_to_pass): Add AWK and SED.
3829         * Makefile.tpl (AWK, SED): New.
3830         (BASE_FLAGS_TO_PASS): Add AWK and SED.
3831         * configure: Regenerate.
3832         * Makefile.in: Regenerate.
3834 2009-09-01  Tristan Gingold  <gingold@adacore.com>
3836         * setup.com: Ported to Itanium VMS.  Can also build using DCL scripts.
3837         Remove logical names.
3839 2009-08-31  Dave Korn  <dave.korn.cygwin@gmail.com>
3841         * ltmain.sh (func_normal_abspath): New function.
3842         (func_relative_path): Likewise.
3843         (func_mode_help): Document new -bindir option for link mode.
3844         (func_mode_link): Add new -bindir option, and use it to place
3845         output DLL if specified.
3847 2009-08-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3849         * configure.ac (AC_PREREQ): Bump to 2.64.
3851 2009-08-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3853         * README-maintainer-mode: Point directly to upstream locations
3854         for autoconf, automake, libtool, gettext, instead of copies on
3855         sources.redhat.com.  Document required versions.
3856         * configure.ac: Do not substitute datarootdir, htmldir,
3857         pdfdir, docdir.  Do not process --with-datarootdir,
3858         --with-htmldir, --with-pdfdir, --with-docdir.
3859         * configure: Regenerate.
3861         * configure: Regenerate.
3863         * compile: Sync from Automake 1.11.
3864         * depcomp: Likewise.
3865         * install-sh: Likewise.
3866         * missing: Likewise.
3867         * mkinstalldirs: Likewise.
3868         * ylwrap: Likewise.
3870 2009-08-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3872         * configure.ac: Call AC_DISABLE_OPTION_CHECKING.
3873         (baseargs): Add --disable-option-checking.
3874         * configure: Regenerate.
3876         * Makefile.def (configure-target-libiberty): Depend on
3877         all-binutils and all-ld.
3878         (configure-target-newlib): Likewise.
3879         * Makefile.in: Regenerate.
3881 2009-08-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3883         Sync with GCC, merge:
3885         2009-07-31  Christian Bruel  <christian.bruel@st.com>
3887         * configure.ac (sh*-*-elf): Don't add target-libgloss to noconfigdirs.
3888         * configure: Regenerate.
3890         2009-07-06  Ian Lance Taylor  <iant@google.com>
3892         * configure.ac: Add missing comma in AC_ARG_WITH(boot-libs).
3893         * configure: Rebuild.
3895         2009-06-26  Steve Ellcey  <sje@cup.hp.com>
3897         PR bootstrap/40338
3898         * configure.ac (comparestring): Create new variable.
3899         * Makefile.tpl (comparestring): Use to skip some comparisions.
3900         * configure: Regenerate.
3901         * Makefile.in: Regenerate.
3903         2009-06-23  Ian Lance Taylor  <iant@google.com>
3905         * configure.ac: Add --enable-build-with-cxx.  When set, add c++ to
3906         boot_languages.  Only bootstrap target libraries listed in
3907         target_libs for some boot language.  Add --with-stage1-ldflags,
3908         --with-stage1-libs, --with-boot-ldflags, --with-boot-libs.  Remove
3909         with_host_libstdcxx from ppllibs.  Only add -fkeep-inline-functions
3910         if not building with C++.
3911         * Makefile.def: For target_module libstdc++-v3, set bootstrap=true.
3912         * Makefile.tpl (STAGE1_LDFLAGS, STAGE1_LIBS): New variables.
3913         (POSTSTAGE1_LDFLAGS, POSTSTAGE1_LIBS): New variables.
3914         (HOST_EXPORTS): Add STAGE1_LDFLAGS to LDFLAGS.  Export HOST_LIBS.
3915         (POSTSTAGE1_HOST_EXPORTS): Set CXX and CXX_FOR_BUILD.  Add
3916         POSTSTAGE1_LDFLAGS to LDFLAGS.  Export HOST_LIBS.
3917         (POSTSTAGE1_FLAGS_TO_PASS): Likewise.
3918         * configure, Makefile.in: Rebuild.
3920         2009-06-08  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3922         * configure.ac: Detect MPC in default directory.
3923         * configure: Regenerate.
3925         2009-06-02  Richard Sandiford  <r.sandiford@uk.ibm.com>
3927         * configure.ac (powerpc-*-aix*, rs6000-*-aix*): Add target-newlib
3928         to noconfdirs.
3929         * configure: Regenerate.
3931         2009-05-29  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3933         * Makefile.def: Add MPC support and dependencies.
3934         * configure.ac: Likewise.  Reorganize GMP/MPFR checks.
3936         * Makefile.in, configure: Regenerate.
3938         2009-05-24  Nicolas Roche  <roche@adacore.com>
3940         * Makefile.tpl (compare-target): Skip ./ada/*tools directories.
3941         * Makefile.in: Regenerate.
3943         2009-05-21  Dave Korn  <dave.korn.cygwin@gmail.com>
3945         * configure.ac (cygwin noconfigdirs):  Remove libgcj.
3946         * configure:  Regenerate.
3948         2009-05-07  Dave Korn  <dave.korn.cygwin@gmail.com>
3950         * configure.ac ($with_ppl):  Default to no if not supplied.
3951         ($with_cloog):  Likewise.
3952         configure:  Regenerate.
3954         2009-04-24  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3956         PR bootstrap/39739
3957         * configure.ac (extra_mpfr_configure_flags): Set and AC_SUBST.
3958         * Makefile.def (module=mpfr): Use extra_mpfr_configure_flags.
3960         * configure, Makefile.in: Regenerate.
3962         2009-04-14  Jakub Jelinek  <jakub@redhat.com>
3964         * configure.ac: Change copyright header to refer to version
3965         3 of the GNU General Public License and to point readers at the
3966         COPYING3 file and the FSF's license web page.
3967         * Makefile.def: Likewise.
3968         * Makefile.tpl: Likewise.
3969         * Makefile.in: Regenerate.
3971         2009-04-09  Jack Howarth  <howarth@bromo.med.uc.edu>
3973         * configure.ac: Restore match for darwin9 or later. Use double
3974         brackets since regeneration eats one pair.
3975         * configure: Regenerate.
3977 2009-08-18  Christopher Faylor  <me+cygwin@cgf.cx>
3979         * MAINTAINERS: Perform some obvious fixups.
3981 2009-08-17  Ben Elliston  <bje@au.ibm.com>
3983         * config.sub, config.guess: Update from upstream sources.
3985 2009-08-06  Michael Eager <eager@eagercon.com>
3987         * configure.ac: Add Microblaze target.
3988         * configure: Regenerate.
3990 2009-07-02  Tristan Gingold  <gingold@adacore.com>
3992         * configure.ac: Do not exclude gas for i386-*-darwin.
3993         Add a case for x86_64-*-darwin.
3994         * configure: Regenerate.
3996 2009-06-26  Doug Evans  <dje@sebabeach.org>
3998         * Makefile.def (host_modules): Add cgen.
3999         * Makefile.in: Regenerate.
4000         * configure.ac (host_tools): Add cgen.
4001         * configure: Regenerate.
4003 2009-06-17  Michael Eager <eager@eagercon.com>
4005         * COPYING.LIBGLOSS: Add Xilinx license.
4007 2009-06-15  Ryan Mansfield  <rmansfield@qnx.com>
4009         * configure.ac: Define is_elf for QNX Neutrino targets.
4010         * configure: Regenerate.
4012 2009-06-03  Jerome Guitton  <guitton@adacore.com>
4013             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4015         * Makefile.tpl (all): Avoid a trailing backslash.
4016         * Makefile.in: Regenerate.
4018 2009-06-03  Ben Elliston  <bje@au.ibm.com>
4020         * config.sub, config.guess: Update from upstream sources.
4022 2009-06-02  Alexandre Oliva  <aoliva@redhat.com>
4024         * Makefile.tpl ([+compare-target+]): Compare all stage
4025         directories, rather than just gcc.
4026         * Makefile.in: Rebuilt.
4028 2009-05-28  Doug Kwan  <dougkwan@google.com>
4030         * configure.ac: Support gold for target arm*-*-*.
4031         * configure: Regenerate.
4033 2009-05-27  Alexandre Oliva  <aoliva@redhat.com>
4035         * Makefile.tpl (all): Avoid harmless warning in make all when
4036         gcc-bootstrap is enabled but stage_last does not exist.
4037         * Makefile.in: Rebuilt.
4039 2009-05-25  Tristan Gingold  <gingold@adacore.com>
4041         * setup.com: Complete the file with configuration and build.
4043 2009-05-18  Alexandre Oliva  <aoliva@redhat.com>
4045         PR other/40159
4046         * Makefile.tpl (all): Don't assume gcc-bootstrap and
4047         gcc-no-bootstrap are mutually exclusive.
4048         * Makefile.in: Rebuilt.
4050 2009-05-18  Alexandre Oliva  <aoliva@redhat.com>
4052         PR other/40159
4053         * Makefile.tpl (all): Don't end with unconditional success.
4054         * Makefile.in: Rebuilt.
4056 2009-05-12  Alexandre Oliva  <aoliva@redhat.com>
4058         PR target/37137
4059         * Makefile.def (flags_to_pass): Remove redundant and incomplete
4060         STAGE1_CFLAGS, STAGE2_CFLAGS, STAGE3_CFLAGS, and STAGE4_CFLAGS.
4061         Add FLAGS_FOR_TARGET and BUILD_CONFIG.
4062         (bootstrap_stage): Remove bootstrap-debug custom stages.  Turn
4063         stage_configureflags, stage_cflags and stage_libcflags into
4064         explicit Makefile macros.
4065         * Makefile.tpl (HOST_EXPORTS, EXTRA_HOST_FLAGS): Pass GCJ and
4066         GFORTRAN.
4067         (POSTSTAGE1_HOST_EXPORTS): Add XGCC_FLAGS_FOR_TARGET and TFLAGS to
4068         CC.  Set CC_FOR_BUILD from CC.
4069         (BASE_TARGET_EXPORTS, RAW_CXX_TARGET_EXPORTS,
4070         NORMAL_TARGET_EXPORTS): Move SYSROOT_CFLAGS_FOR_TARGET and
4071         DEBUG_PREFIX_CFLAGS_FOR_TARGET from CFLAGS and CXXFLAGS to
4072         XGCC_FLAGS_FOR_TARGET.  Add it along with TFLAGS to CC, CXX, GCJ,
4073         and GFORTRAN.
4074         (TFLAGS, STAGE_CFLAGS, STAGE_TFLAGS, STAGE_CONFIGURE_FLAGS): New.
4075         (_LIBCFLAGS): Renamed to _TFLAGS.
4076         (do-compare-debug, do-compare3-debug): Drop.
4077         (CC, GCC_FOR_TARGET, CXX_FOR_TARGET, RAW_CXX_FOR_TARGET,
4078         GCJ_FOR_TARGET, GFORTRAN_FOR_TARGET): Remove FLAGS_FOR_TARGET.
4079         (FLAGS_FOR_TARGET, SYSROOT_CFLAGS_FOR_TARGET,
4080         DEBUG_PREFIX_CFLAGS_FOR_TARGET): Move down.
4081         (XGCC_FLAGS_FOR_TARGET): New.
4082         (BASE_FLAGS_TO_PASS): Pass STAGEid_CFLAGS, STAGEid_TFLAGS and TFLAGS.
4083         (EXTRA_HOST_FLAGS): Pass GCJ and GFORTRAN.
4084         (POSTSTAGE1_FLAGS_TO_PASS): Move SYSROOT_CFLAGS_FOR_TARGET and
4085         DEBUG_PREFIX_CFLAGS_FOR_TARGET from CFLAGS, CXXFLAGS, LIBCFLAGS,
4086         LIBCXXFLAGS to XGCC_FLAGS_FOR_TARGET.    Add it along with TFLAGS
4087         to CC, CXX, GCJ, and GFORTRAN.  Pass XGCC_FLAGS_FOR_TARGET and
4088         TFLAGS.
4089         (BUILD_CONFIG): Include if requested.
4090         (all): Set TFLAGS on bootstrap.
4091         (configure-stageid-prefixmodule): Pass TFLAGS, adjust FLAGS.
4092         (all-stageid-prefixmodule): Likewise.
4093         (do-clean, distclean-stageid): Set TFLAGS.
4094         (restrap): Fix whitespace.
4095         * Makefile.in: Rebuilt.
4097 2009-04-25  Eric Botcazou  <ebotcazou@adacore.com>
4099         * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Add GNATBIND.
4100         (POSTSTAGE1_FLAGS_TO_PASS): Pick up exported value for GNATBIND.
4101         * Makefile.in: Regenerate.
4103 2009-04-24  Eli Zaretskii  <eliz@gnu.org>
4105         * config.guess (pc:*:*:*): Return i586-pc-msdosdjgpp, for
4106         consistency with config.sub.  (Update from upstream sources.)
4108 2009-04-21  Joseph Myers  <joseph@codesourcery.com>
4110         * texinfo/texinfo.tex: Update to version 2009-03-28.05.
4112 2009-04-17  Ben Elliston  <bje@au.ibm.com>
4114         * config.sub, config.guess: Update from upstream sources.
4116 2009-04-15  Anthony Green  <green@moxielogic.com>
4118         * configure.ac: Add moxie support.
4119         * configure: Rebuilt.
4121 2009-04-09  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4123         * configure.ac: Bump minimum GMP/MPFR versions to 4.2 and 2.3.1.
4124         * configure: Regenerate.
4126 2009-04-09  H.J. Lu  <hongjiu.lu@intel.com>
4128         PR gas/10039
4129         * configure.ac: Require texinfo 4.7.
4130         * configure: Regenerated.
4132 2009-04-09  Steve Ellcey  <sje@cup.hp.com>
4134         * Makefil.def (languages): New entries.
4135         * Makefile.tpl (check-gcc-*): New generic target.
4136         * Makefile.in: Regenerate.
4138 2009-03-27  Eli Zaretskii  <eliz@gnu.org>
4140         * djunpack.bat: Use ".." quoting in Sed command, for the sake of
4141         Windows builds of Sed.
4143 2009-03-18  Tom Tromey  <tromey@redhat.com>
4145         * configure: Rebuild.
4146         * configure.ac (host_libs): Add libiconv.
4147         * Makefile.in: Rebuild.
4148         * Makefile.def (host_modules): Add libiconv.
4149         (configure-gdb, all-gdb): Depend on libiconv.
4151 2009-03-16  Tristan Gingold  <gingold@adacore.com>
4153         * configure.ac: Treat gdb as supported on x86_64-darwin.
4154         * configure: Regenerate.
4156 2009-03-16  Joseph Myers  <joseph@codesourcery.com>
4158         Merge from GCC:
4160         2009-03-16  Joseph Myers  <joseph@codesourcery.com>
4162         * configure.ac (--with-host-libstdcxx): New option.
4163         * configure: Regenerate.
4165         2009-01-29  Robert Millan  <rmh@aybabtu.com>
4167         * configure.ac: Recognize GNU/kOpenSolaris (*-*-kopensolaris*-gnu).
4168         * configure: Regenerate.
4170         2009-01-12  Sebastian Pop <sebastian.pop@amd.com>
4172         PR tree-optimization/38515
4173         * configure.ac (cloog-polylib): Removed.
4174         (with_ppl, with_cloog): Test for "no".
4175         * configure: Regenerated.
4177 2009-03-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4179         Backport from git Libtool:
4181         2009-01-19  Robert Millan  <rmh@aybabtu.com>
4182         Support GNU/kOpenSolaris.
4183         * libltdl/m4/libtool.m4 (_LT_SYS_DYNAMIC_LINKER)
4184         (_LT_CHECK_MAGIC_METHOD, _LT_COMPILER_PIC, _LT_LINKER_SHLIBS)
4185         (_LT_LANG_CXX_CONFIG) [kopensolaris*-gnu]: Recognize
4186         GNU/kOpenSolaris.
4188 2009-02-05  Andreas Schwab  <schwab@suse.de>
4190         * Makefile.tpl (stage_last): Define $r and $s before using
4191         $(RECURSE_FLAGS_TO_PASS).
4192         * Makefile.in: Regenerate
4194 2009-01-21  Jeff Johnston  <jjohnstn@redhat.com>
4196         * COPYING.NEWLIB: Add ARM license.
4198 2009-01-16  Alan Modra  <amodra@bigpond.net.au>
4200         * Makefile.def (configure-opcodes): Depend on configure-libiberty.
4201         (all-opcodes): Depend on all-libiberty.
4202         * Makefile.in: Regenerate.
4204 2009-01-15  Douglas B Rupp  <rupp@gnat.com>
4206         * configure.ac (ia64*-*-*vms*): Add case with no gdb or ld support.
4207         * configure: Regenerate.
4209 2008-12-18  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4211         Backport link test fix from upstream Libtool:
4213         * libltdl.m4 (_LT_SYS_DYNAMIC_LINKER, _LT_LINKER_SHLIBS):
4214         Add cache variables to tests that require the linker to work.
4215         For shlibpath_overrides_runpath, this also changes the semantics
4216         to let the result from the C compiler take precedence.
4217         compiler take precedence.
4219 2008-12-02  Ben Elliston  <bje@au.ibm.com>
4221         * config.sub, config.guess: Update from upstream sources.
4223 2008-12-17  Jeff Johnston  <jjohnstn@redhat.com>
4225         * COPYING.NEWLIB: Updated.
4226         * COPYING.LIBGLOSS: Ditto.
4228 2008-12-16  Paolo Bonzini  <bonzini@gnu.org>
4230         Sync with GCC:
4232         2008-12-12  Sebastian Pop  <sebastian.pop@amd.com>
4234         * configure.ac (ppllibs): Add by default the lib flags.
4235         * configure: Regenerate.
4237         2008-12-04  Jack Howarth  <howarth@bromo.med.uc.edu>
4239         * configure.ac: Add double brackets on darwin[912].
4240         * configure: Regenerate.
4242         2008-12-02  Jack Howarth  <howarth@bromo.med.uc.edu>
4244         * configure.ac: Expand to darwin10 and later.
4245         * configure: Regenerate.
4247 2008-12-02  Andreas Schwab  <schwab@suse.de>
4249         * Makefile.def: configure-target-boehm-gc depends on
4250         all-target-libstdc++-v3.
4251         * Makefile.in: Regenerate.
4253 2008-12-02  Ben Elliston  <bje@au.ibm.com>
4255         * config.sub, config.guess: Update from upstream sources.
4257 2008-11-27  Joseph Myers  <joseph@codesourcery.com>
4259         Merge from GCC:
4261         2007-12-02  Matthias Klose  <doko@ubuntu.com>
4263         * config-ml.in: Remove 64bit configure tests.
4265         2008-05-14  Rafael Espindola  <espindola@google.com>
4267         * config-ml.in: don't handle --enable-shared and --enable-static.
4269         2008-09-02  Sebastian Pop  <sebastian.pop@amd.com>
4270             Tobias Grosser  <grosser@fim.uni-passau.de>
4271             Jan Sjodin  <jan.sjodin@amd.com>
4272             Harsha Jagasia  <harsha.jagasia@amd.com>
4273             Dwarakanath Rajagopal  <dwarak.rajagopal@amd.com>
4274             Konrad Trifunovic  <konrad.trifunovic@inria.fr>
4275             Adrien Eliche  <aeliche@isty.uvsq.fr>
4277         Merge from graphite branch.
4278         * configure: Regenerate.
4279         * Makefile.in: Regenerate.
4280         * configure.ac (host_libs): Add ppl and cloog.
4281         Add checks for PPL and CLooG.
4282         * Makefile.def (ppl, cloog): Added modules and dependences.
4283         * Makefile.tpl (PPLLIBS, PPLINC, CLOOGLIBS, CLOOGINC): New.
4284         (HOST_PPLLIBS, HOST_PPLINC, HOST_CLOOGLIBS, HOST_CLOOGINC): New.
4286         2008-09-03  Richard Guenther  <rguenther@suse.de>
4288         * configure.ac: Always pass -DCLOOG_PPL_BACKEND to the
4289         cloog test.
4290         * configure: Re-generate.
4292         2008-09-03  Sebastian Pop  <sebastian.pop@amd.com>
4294         * configure.ac (--with-cloog-polylib): New.
4295         (--disable-cloog-version-check): New.
4296         (--disable-ppl-version-check): New.
4297         * configure: Re-generate.
4299         2008-09-05  Richard Guenther  <rguenther@suse.de>
4301         * configure.ac: Initialize clooglibs to -lcloog.
4302         * configure: Re-generate.
4304         2008-10-13  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4306         * configure.ac (MPFR check): Bump minimum version to 2.3.0 and
4307         recommended version to 2.3.2.
4309         * configure: Regenerate.
4311         2008-10-31  Ben Elliston  <bje@au.ibm.com>
4313         * configure.ac (spu-*-*): Remove special case.
4314         * configure: Regenerate.
4316         Complete comment text from GCC version of:
4318         2008-08-31  Aaron W. LaFramboise  <aaronavay62@aaronwl.com>
4320         * configure.ac (RPATH_ENVVAR): Use PATH on Windows.
4321         (GCC_SHLIB_SUBDIR): New.
4322         * Makefile.tpl (HOST_LIB_PATH_gcc): Use GCC_SHLIB_SUBDIR.
4323         * configure: Regenerate.
4324         * Makefile.in: Regenerate.
4326 2008-11-27  Tristan Gingold  <gingold@adacore.com>
4328         * configure.ac: Build gdb for i?86-*-darwin*
4329         * configure: Regenerated.
4331 2008-11-14  Daniel Jacobowitz  <dan@codesourcery.com>
4333         PR bootstrap/38014
4334         PR bootstrap/37923
4336         Revert:
4338         2008-10-24  Daniel Jacobowitz  <dan@codesourcery.com>
4340         * Makefile.tpl (HOST_EXPORTS): Correct CPPFLAGS typo.
4341         * Makefile.in: Regenerated.
4343         2008-10-22  Daniel Jacobowitz  <dan@codesourcery.com>
4345         PR gdb/921
4346         PR gdb/1646
4347         PR gdb/2175
4348         PR gdb/2176
4350         * Makefile.def (flags_to_pass): Add CPPFLAGS_FOR_BUILD and CPPFLAGS.
4351         * Makefile.tpl (BUILD_EXPORTS): Set CPPFLAGS.
4352         (EXTRA_BUILD_FLAGS): Correct typo.  Pass CPPFLAGS.
4353         (HOST_EXPORTS): Pass CPPFLAGS.
4354         (CPPFLAGS_FOR_BUILD, CPPFLAGS, CPPFLAGS_FOR_TARGET): Define.
4355         (LDFLAGS_FOR_TARGET): Initialize from configure script.
4356         (EXTRA_TARGET_FLAGS): Set CPPFLAGS.
4357         * Makefile.in, configure: Regenerated.
4358         * configure.ac: Set CPPFLAGS_FOR_TARGET, LDFLAGS_FOR_TARGET,
4359         and CPPFLAGS_FOR_BUILD.
4361 2008-10-29  Stefan Schulze Frielinghaus  <xxschulz@de.ibm.com>
4363         * configure.ac [spu-*-*]: Do not set skipdirs.
4364         * configure: Re-generate.
4366 2008-10-24  Daniel Jacobowitz  <dan@codesourcery.com>
4368         * Makefile.tpl (HOST_EXPORTS): Correct CPPFLAGS typo.
4369         * Makefile.in: Regenerated.
4371 2008-10-22  Daniel Jacobowitz  <dan@codesourcery.com>
4373         PR gdb/921
4374         PR gdb/1646
4375         PR gdb/2175
4376         PR gdb/2176
4378         * Makefile.def (flags_to_pass): Add CPPFLAGS_FOR_BUILD and CPPFLAGS.
4379         * Makefile.tpl (BUILD_EXPORTS): Set CPPFLAGS.
4380         (EXTRA_BUILD_FLAGS): Correct typo.  Pass CPPFLAGS.
4381         (HOST_EXPORTS): Pass CPPFLAGS.
4382         (CPPFLAGS_FOR_BUILD, CPPFLAGS, CPPFLAGS_FOR_TARGET): Define.
4383         (LDFLAGS_FOR_TARGET): Initialize from configure script.
4384         (EXTRA_TARGET_FLAGS): Set CPPFLAGS.
4385         * Makefile.in, configure: Regenerated.
4386         * configure.ac: Set CPPFLAGS_FOR_TARGET, LDFLAGS_FOR_TARGET,
4387         and CPPFLAGS_FOR_BUILD.
4389 2008-09-29  Peter O'Gorman  <pogma@thewrittenword.com>
4391         * libtool.m4: Update to libtool 2.2.6.
4392         * lt~obsolete.m4: Update to libtool 2.2.6.
4393         * ltmain.sh: Update to libtool 2.2.6.
4394         * ltsugar.m4: Update to libtool 2.2.6.
4395         * ltversion.m4: Update to libtool 2.2.6.
4396         * ltoptions.m4: Update to libtool 2.2.6.
4397         * ltgcc.m4: Update to match changes from libtool 2.2.6.
4399 2008-08-31  Aaron W. LaFramboise  <aaronavay62@aaronwl.com>
4401         * configure.ac (RPATH_ENVVAR): Use PATH on Windows.
4402         (GCC_SHLIB_SUBDIR): New.
4403         * Makefile.tpl (HOST_LIB_PATH_gcc): Use GCC_SHLIB_SUBDIR.
4404         * configure: Regenerate.
4405         * Makefile.in: Regenerate.
4407 2008-08-28  Tristan Gingold  <gingold@adacore.com>
4409         * configure.ac (powerpc-*-darwin*, i?86-*-darwin*,x86_64-*-darwin9):
4410         Enable bfd, binutils and opcodes.
4411         * configure: Regenerate.
4413 2008-08-16  Nicolas Roche  <roche@adacore.com>
4415         * Makefile.tpl: Add BOOT_ADAFLAGS.
4416         * Makefile.in: Regenerate.
4418 2008-08-16  Richard Sandiford  <rdsandiford@googlemail.com>
4420         * configure.ac (mips*-*-*linux*, mips*-*-gnu*): Use mt-mips-gnu.
4421         * configure: Regenerate.
4423 2008-07-30 Paolo Bonzini  <bonzini@gnu.org>
4425         Sync with gcc:
4426         2008-07-30 Paolo Bonzini  <bonzini@gnu.org>
4428         * configure.ac: Add makefile fragments for hpux.
4429         * Makefile.def (flags_to_pass): Add ADA_CFLAGS.
4430         * Makefile.tpl (HOST_EXPORTS): Pass ADA_CFLAGS.
4431         * configure: Regenerate.
4432         * Makefile.in: Regenerate.
4434         2008-06-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4436         * Makefile.tpl ($(srcdir)/configure): Update dependencies.
4437         * Makefile.in: Regenerate.
4438         * configure: Regenerate.
4440 2008-06-18  Ian Lance Taylor  <iant@google.com>
4442         * src-release (BINUTILS_SUPPORT_DIRS): Remove mkdep and depcomp.
4444         * src-release (BINUTILS_SUPPORT_DIRS): Add depcomp.
4446 2008-06-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4448         * configure: Regenerate.
4450 2008-06-16  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4452         * configure.ac: Set TOPLEVEL_CONFIGURE_ARGUMENTS early, when
4453         "$@" is still intact with both Autoconf 2.59 and 2.62.
4454         * configure: Regenerate.
4456 2008-06-16  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4458         * Makefile.tpl: Fix comment errors.
4459         * Makefile.in: Regenerate.
4461 2008-06-13  Julian Brown  <julian@codesourcery.com>
4463         * configure.ac (arm*-*-linux-gnueabi): Don't disable building
4464         of libobjc for ARM EABI Linux.
4465         * configure: Regenerate.
4467 2008-06-12  David S. Miller  <davem@davemloft.net>
4468             David Edelsohn  <edelsohn@gnu.org>
4470         * configure.ac: Add powerpc*-*-* to gold supported targets.
4471         * configure: Regenerate.
4473 2008-06-08  Joseph Myers  <joseph@codesourcery.com>
4475         PR tree-optimization/36218
4476         * Makefile.def (flags_to_pass): Add LDFLAGS_FOR_BUILD.
4477         * Makefile.tpl (EXTRA_BUILD_FLAGS): Define.
4478         (all prefix="build-"): Pass them to build-system sub-makes.
4479         * Makefile.in: Regenerate.
4481 2008-05-16  Daniel Jacobowitz  <dan@codesourcery.com>
4483         * src-release (DEVO_SUPPORT): Add ChangeLog, MAINTAINERS,
4484         README-maintainer-mode, lt~obsolete.m4, ltgcc.m4, depcomp,
4485         mkdep, and compile.  Update comments.
4486         (ETC_SUPPORT): Add ChangeLog and update comments.
4488 2008-05-11  Ian Lance Taylor  <iant@google.com>
4490         * src-release (BINUTILS_SUPPORT_DIRS): Add elfcpp and gold.
4492 2008-04-18  Paolo Bonzini  <bonzini@gnu.org>
4494         Sync with gcc:
4495         2008-04-18  Paolo Bonzini  <bonzini@gnu.org>
4497         PR bootstrap/35457
4498         * configure.ac: Include override.m4.
4499         * configure: Regenerate.
4501         2008-04-18  Paolo Bonzini  <bonzini@gnu.org>
4503         * Makefile.tpl (restrap): Call `make all' using double-colon rules.
4504         * Makefile.in: Regenerate.
4506         2008-04-11  Eric B. Weddington  <eweddington@cso.atmel.com>
4508         * configure.ac: Do not build libssp for the AVR.
4509         * configure: Regenerate.
4511 2008-04-18  Nick Clifton  <nickc@redhat.com>
4513         * MAINTAINERS: Replace reference to configure.in with reference to
4514         configure.ac.
4516 2008-04-18  M R Swami Reddy <MR.Swami.Reddy@nsc.com>
4518         * configure.ac (cr16-*-*): Add case for cr16 target and include gdb
4519         as nonconfigurable directories list.
4520         * configure: Regenerate.
4522 2008-04-14  David S. Miller  <davem@davemloft.net>
4524         * configure.ac: Add sparc*-*-* to gold supported targets.
4525         * configure: Regenerate.
4527 2008-04-14  Ben Elliston  <bje@au.ibm.com>
4529         * config.sub, config.guess: Update from upstream sources.
4531 2008-04-12  Hans-Peter Nilsson  <hp@axis.com>
4533         * Makefile.tpl <gcc>: Error early unless at least GNU make 3.80.
4534         * Makefile.in: Regenerate.
4536 2008-04-07  Ian Lance Taylor  <iant@google.com>
4538         * Makefile.def: check-gold depends upon all-binutils.
4539         * Makefile.in: Regenerate.
4541 2008-04-04  Nick Clifton  <nickc@redhat.com>
4543         PR binutils/4334
4544         * configure.ac: Run ACX_CHECK_CYGWIN_CAT_WORKS for cygwin hosted
4545         builds.
4546         * configure: Regenerate.
4548 2008-04-04  NightStrike  <NightStrike@gmail.com>
4550         PR other/35151
4551         * configure.ac: Combine rules for mingw32 and mingw64.
4552         * configure: Regenerate.
4554 2008-03-27  Paolo Bonzini  <bonzini@gnu.org>
4556         * Makefile.tpl (PICFLAG, PICFLAG_FOR_TARGET): Remove.
4557         * Makefile.in: Regenerate.
4559 2008-03-20  Ian Lance Taylor  <iant@google.com>
4561         * configure.ac: Add support for --enable-gold.
4562         * Makefile.def: Add gold as a directory like ld.
4563         * configure, Makefile.in: Regenerate.
4565 2008-03-19  Andreas Krebbel  <krebbel1@de.ibm.com>
4567         * opcodes/s390-mkopc.c (s390_opcode_cpu_val): S390_OPCODE_Z10 added.
4568         (s390_cond_extensions): Reduced extensions to the compare related.
4569         (main): z10 cpu type option added.
4570         (expandConditionalJump): Renamed to ...
4571         (insertExpandedMnemonic): ... this.
4573         * opcodes/s390-opc.c: Re-group the operand format makros.
4574         (INSTR_RIE_RRPU, INSTR_RIE_RRP0, INSTR_RIE_RUPI,
4575         INSTR_RIE_R0PI, INSTR_RIE_RUPU, INSTR_RIE_R0PU, INSTR_RIE_R0IU,
4576         INSTR_RIE_R0I0, INSTR_RIE_R0UU, INSTR_RIE_R0U0,
4577         INSTR_RIE_RRUUU, INSTR_RIS_RURDI, INSTR_RIS_R0RDI, INSTR_RIS_RURDU,
4578         INSTR_RIS_R0RDU, INSTR_RRF_U0RR, INSTR_RRF_00RR, INSTR_RRS_RRRDU,
4579         INSTR_RRS_RRRD0, INSTR_RXY_URRD, INSTR_SIY_IRD, INSTR_SIL_RDI,
4580         INSTR_SIL_RDU): New instruction formats added.
4581         (MASK_RIE_RRPU, MASK_RIE_RRP0, MASK_RIE_RUPI, MASK_RIE_R0PI,
4582         MASK_RIE_RUPU, MASK_RIE_R0PU, MASK_RIE_R0IU, MASK_RIE_R0I0,
4583         MASK_RIE_R0UU, MASK_RIE_R0U0, MASK_RIE_RRUUU, MASK_RIS_RURDI,
4584         MASK_RIS_R0RDI, MASK_RIS_RURDU, MASK_RIS_R0RDU, MASK_RRF_U0RR,
4585         MASK_RRF_00RR, MASK_RRS_RRRDU, MASK_RRS_RRRD0, MASK_RXY_URRD,
4586         MASK_SIY_IRD, MASK_SIL_RDI, MASK_SIL_RDU): New instruction format
4587         masks added.
4588         (s390_opformats): New formats added "ris", "rrs", "sil".
4589         * opcodes/s390-opc.txt: Add the conditional jumps with the
4590         extensions removed from automatic expansion in s390-mkopc.c manually.
4591         (asi - trtre): Add new System z10 EC instructions.
4592         * include/opcode/s390.h (s390_opcode_cpu_val): S390_OPCODE_Z10 added.
4594 2008-03-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4596         * configure.ac: m4_include config/proginstall.m4.
4597         * configure: Regenerate.
4599 2008-03-16  Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4601         Backport from upstream Libtool:
4603         2007-10-12  Eric Blake  <ebb9@byu.net>
4605         Deal with Autoconf 2.62's semantic change in m4_append.
4606         * ltsugar.m4 (lt_append): Replace broken versions of
4607         m4_append.
4608         (lt_if_append_uniq): Don't require separator to be overquoted,
4609         and avoid broken m4_append.
4610         (lt_dict_add): Fix typo.
4611         * libtool.m4 (_LT_DECL): Don't overquote separator.
4613 2008-03-13  David Edelsohn  <edelsohn@gnu.org>
4615         * config.rpath: Add AIX 6 support.
4617 2008-03-13  Paolo Bonzini  <bonzini@gnu.org>
4619         * Makefile.def (stageprofile).  Remove -fprofile-generate
4620         from stage_libcflags.
4621         * Makefile.in: Regenerate.
4623 2008-03-13  Ben Elliston  <bje@au.ibm.com>
4625         * config.sub, config.guess: Update from upstream sources.
4627 2008-03-06  Florian Krohm  <fkrohm@us.ibm.com>
4629         * s390-opc.c (INSTR_RSL_R0RD): Fix operands.
4630         * s390-opc.txt (cmpsc): Duplicate entry removed.
4631         (dxr, sqdr, sqer, cxfbr, cdfbr, cefbr, lzer, lzdr, lzxr,
4632         cegbr, cdgbr, cxgbr, cegr, cdgr, cxgr, cxfr, cdfr, cefr, fixr, fidr,
4633         fier, cu42, cu41): Fix operand format.
4635 2008-02-20  Paolo Bonzini  <bonzini@gnu.org>
4637         PR bootstrap/32009
4638         PR bootstrap/32161
4640         * configure.ac (CFLAGS_FOR_TARGET, CXXFLAGS_FOR_TARGET): Compute here.
4641         * configure: Regenerate.
4643         * Makefile.def: Define stage_libcflags for all bootstrap stages.
4644         * Makefile.tpl (BOOT_LIBCFLAGS, STAGE2_LIBCFLAGS, STAGE3_LIBCFLAGS,
4645         STAGE4_LIBCFLAGS): New.
4646         (CFLAGS_FOR_TARGET, CXXFLAGS_FOR_TARGET): Subst from autoconf, without
4647         $(SYSROOT_CFLAGS_FOR_TARGET) and $(DEBUG_PREFIX_CFLAGS_FOR_TARGET).
4648         (BASE_TARGET_EXPORTS): Append them here to C{,XX}FLAGS.
4649         (EXTRA_TARGET_FLAGS): Append them here to {LIB,}C{,XX}FLAGS.
4650         (configure-stage[+id+]-[+prefix+][+module+]): Pass stage_libcflags
4651         for target modules.  Don't export LIBCFLAGS.
4652         (all-stage[+id+]-[+prefix+][+module+]): Pass stage_libcflags; pass
4653         $(BASE_FLAGS_TO_PASS) where [+args+] was passed, and [+args+] after
4654         the overridden CFLAGS_FOR_TARGET and CXXFLAGS_FOR_TARGET.
4655         (invocations of `all'): Replace $(TARGET_FLAGS_TO_PASS) with
4656         $(EXTRA_TARGET_FLAGS), $(FLAGS_TO_PASS) with $(EXTRA_HOST_FLAGS).
4657         * Makefile.in: Regenerate.
4659 2008-02-16  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4661         PR libgcj/33085
4662         * libtool.m4 (_LT_COMPILER_PIC) [ mingw, cygwin ] <GCJ>:
4663         Do not use -DDLL_EXPORT.  Backport from upstream.
4665 2008-02-14  Nick Clifton  <nickc@redhat.com>
4667         Import this patch from gcc:
4668         2008-01-24  David Edelsohn  <edelsohn@gnu.org>
4670         * libtool.m4: Backport AIX 6 support from ToT Libtool.
4672 2008-02-02  Hans-Peter Nilsson  <hp@axis.com>
4674         * configure.ac: Enable fortran for cris-*-elf and crisv32-*-elf.
4675         * configure: Regenerate.
4677 2008-01-31  Marc Gauthier  <marc@tensilica.com>
4679         * configure.ac (xtensa*-*-*): Recognize processor variants.
4680         * configure: Regenerate.
4682 2008-01-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4684         PR bootstrap/34922
4685         * configure.ac (PARSE_ARGS): Push suitable setting of
4686         ac_subdirs_all, for `./configure --help=recursive'.
4687         Handle `+' in generic toplevel directory disabling.
4688         * configure: Regenerate.
4690 2008-01-23  Ben Elliston  <bje@au.ibm.com>
4692         * config.sub, config.guess: Update from upstream sources.
4694 2008-01-08  Ben Elliston  <bje@au.ibm.com>
4696         * config.sub, config.guess: Update from upstream sources.
4698 2007-12-19  Jeff Johnston  <jjohnstn@redhat.com>
4700         * COPYING.LIBGLOSS: Update default copyright.
4702 2007-12-19  Jeff Johnston  <jjohnstn@redhat.com>
4704         * COPYING.NEWLIB: Update default copyright.
4706 2007-12-17  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4708         * configure.ac: Change required MPFR from 2.2.0 -> 2.2.1.
4709         Change recommended MPFR from 2.2.1 > 2.3.0.
4710         * configure: Regenerate.
4712 2007-12-13  Richard Sandiford  <rsandifo@nildram.co.uk>
4714         * Makefile.tpl (CFLAGS_FOR_TARGET): Add -g.
4715         (CXXFLAGS_FOR_TARGET): Add -O2 -g.
4716         * Makefile.in: Regenerate.
4718 2007-12-10  Andreas Tobler  <a.tobler@schweiz.org>
4720         * configure.ac: Enable libjava for x86_64-*-darwin9.
4721         * configure: Regenerate.
4723 2007-12-05  Ben Elliston  <bje@au.ibm.com>
4725         * config.sub, config.guess: Update from upstream sources.
4727 2007-11-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4729         * config-ml.in: Robustify against white space in absolute file
4730         names.
4732         * config-ml.in (multi-clean): Substitute ${Makefile}.
4733         Remove superfluous ${Makefile} in list.
4735 2007-10-23  Daniel Jacobowitz  <dan@codesourcery.com>
4737         * Makefile.def (dependencies): Make configure-gdb depend on
4738         all-intl.
4739         * Makefile.in: Regenerated.
4741 2007-10-15  Patrick Mansfield <patmans@us.ibm.com>
4743         * Makefile.def: To avoid problems running with parallel makes,
4744         build newlib before libgloss so that target specific header
4745         files are availble.
4746         * Makefile.in: Regenerate.
4748 2007-10-11  Daniel Jacobowitz  <dan@codesourcery.com>
4750         * Makefile.def (dependencies): Add all-gdb -> all-libdecnumber.
4751         * Makefile.in: Regenerate.
4753 2007-10-11  Daniel Jacobowitz  <dan@codesourcery.com>
4755         * src-release (GDB_SUPPORT_DIRS): Add libdecnumber.
4756         * libdecnumber: New directory, imported from GCC.
4758 2007-10-08  Mike Frysinger  <vapier@gentoo.org>
4760         * configure.ac (CFLAGS_FOR_BUILD, CXXFLAGS_FOR_BUILD,
4761         LDFLAGS_FOR_BUILD): Default them to host flags only for $host = $build.
4762         Set default CXXFLAGS_FOR_BUILD to CXXFLAGS, not CFLAGS.  Set default
4763         LDFLAGS_FOR_BUILD to LDFLAGS, not CFLAGS.
4764         * configure: Regenerate.
4766 2007-10-01  Paolo Bonzini  <bonzini@gnu.org>
4768         * Makefile.tpl (AR_FOR_BUILD, AS_FOR_BUILD, CXX_FOR_BUILD,
4769         DLLTOOL_FOR_BUILD, GCJ_FOR_BUILD, GFORTRAN_FOR_BUILD,
4770         LDFLAGS_FOR_BUILD, LD_FOR_BUILD, NM_FOR_BUILD, RANLIB_FOR_BUILD,
4771         WINDMC_FOR_BUILD, WINDRES_FOR_BUILD): Use autoconf substitutions.
4772         * configure.ac: Default them to host tools for $host = $build.
4773         Subst them.
4775         * configure: Regenerate.
4776         * Makefile.in: Regenerate.
4778 2007-09-20  Richard Sandiford  <rsandifo@nildram.co.uk>
4780         * configure.ac (mipsisa*-*-elfoabi*): New stanza.
4781         * configure: Regenerate.
4783 2007-09-19  Benjamin Kosnik  <bkoz@redhat.com>
4785         * configure.ac (TOPLEVEL_CONFIGURE_ARGUMENTS): Move libgomp before
4786         libstdc++.
4787         * Makefile.def: Add libgomp config as a maybe dependency for libstdc++.
4788         * configure: Regenerate.
4789         * Makefile.in: Regenerate.
4791 2007-09-17  Andreas Schwab  <schwab@suse.de>
4793         * configure.ac: Raise minimum makeinfo version to 4.6.
4794         * configure: Regenerate.
4796 2007-09-15  Alan Modra  <amodra@bigpond.net.au>
4798         * configure.ac: Correct makeinfo version check.
4799         * configure: Regenerate.
4801 2007-09-14  Richard Sandiford  <richard@codesourcery.com>
4803         * configure.ac (mips*-sde-elf*): New stanza.  Add target-libiberty
4804         to $skipdirs and only disable gprof for newlib.  Use the normal
4805         mips*-elf* handling in other respects.
4806         * configure: Regnerate.
4808 2007-09-12  David Daney  <ddaney@avtrex.com>
4810         * configure.ac: Remove mips64*-*-linux* noconfigdirs section, thus
4811         enabling libgcj.
4812         * configure: Regenerate.
4814 2007-09-12  Richard Guenther  <rguenther@suse.de>
4816         * configure.ac (--enable-stage1-checking): If neither --enable-checking
4817         nor --disable-checking is provided also turn on yes and types
4818         checking for stage1.
4819         * configure: Re-generate.
4821 2007-09-11  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
4823         PR target/33281
4824         * configure.ac: Use config/mh-mingw on mingw.
4825         * configure: Regenerate.
4827 2007-09-10  Rask Ingemann Lambertsen  <rask@sygehus.dk>
4829         PR other/32154
4830         * configure.ac: For libgloss targets, point the linker to the linker
4831         script, startup code and simulator library.
4832         * configure: Regenerate.
4834 2007-09-09  Andrew Haley  <aph@redhat.com>
4836         * configure.ac (noconfigdirs): Remove target-libffi and
4837         target-libjava.
4839 2007-08-29  Nick Clifton  <nickc@redhat.com>
4841         * config.sub, config.guess: Update from upstream sources.
4843 2007-08-21  Richard Guenther  <rguenther@suse.de>
4845         * configure.ac: Add types checking to stage1 checking flags.
4846         * configure: Regenerate.
4848 2007-08-18  Paul Brook  <paul@codesourcery.com>
4849             Joseph Myers  <joseph@codesourcery.com>
4851         * Makefile.tpl (DEBUG_PREFIX_CFLAGS_FOR_TARGET): New.
4852         (CFLAGS_FOR_TARGET, CXXFLAGS_FOR_TARGET): Include it.
4853         * Makefile.in: Regenerate.
4854         * configure.ac (--with-debug-prefix-map): New.
4855         * configure: Regenerate.
4857 2007-08-17  Richard Sandiford  <richard@codesourcery.com>
4858             Nigel Stephens  <nigel@mips.com>
4860         * configure.ac (mips*-sde-elf*): New stanza.  Use config/mt-sde
4861         as target_makefile_frag.
4862         * configure: Regenerate.
4864 2007-08-16  Alexandre Oliva  <aoliva@redhat.com>
4866         * Makefile.def (STAGE2_CFLAGS, STAGE3_CFLAGS, STAGE4_CFLAGS):
4867         Add to flags_to_pass.  Adjust uses of BOOT_CFLAGS.
4868         (bootstrap2-debug, bootstrap-debug): New bootstrap stages.
4869         * Makefile.tpl (STAGE2_CFLAGS, STAGE3_CFLAGS, STAGE4_CFLAGS): New.
4870         (do-compare, do-compare3, do-compare-debug): New.
4871         ([+compare-target+]): Use them.
4873 2007-08-16  Alexandre Oliva  <aoliva@redhat.com>
4875         * Makefile.def (STAGE2_CFLAGS, STAGE3_CFLAGS, STAGE4_CFLAGS):
4876         Add to flags_to_pass.  Adjust uses of BOOT_CFLAGS.
4877         (bootstrap2-debug, bootstrap-debug): New bootstrap stages.
4878         * Makefile.tpl (STAGE2_CFLAGS, STAGE3_CFLAGS, STAGE4_CFLAGS): New.
4879         (do-compare, do-compare3, do-compare-debug): New.
4880         ([+compare-target+]): Use them.
4882 2007-08-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4883             Ben Elliston  <bje@au.ibm.com>
4885         * configure.ac (TOPLEVEL_CONFIGURE_ARGUMENTS, baseargs): Pass
4886         --silent if $silent.
4887         * configure: Regenerate.
4889 2007-08-12  Daniel Jacobowitz  <dan@codesourcery.com>
4891         * src-release (DEVO_SUPPORT): Add COPYING3 and COPYING3.LIB.
4893 2007-07-17  Nick Clifton  <nickc@redhat.com>
4895         * COPYING3: New file.  Contains version 3 of the GNU General
4896         Public License.
4897         * COPYING3.LIB: New file.  Contains version 3 of the GNU
4898         Lesser General Public License.
4900 2007-07-11  Bernd Schmidt  <bernd.schmidt@analog.com>
4902         * configure.ac: Fix my previous change to really match GCC.
4903         * configure: Regenerate.
4905 2007-07-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4907         * configure.ac: Rewrite 'configure --help' strings to look nicer.
4908         * configure: Regenerate.
4910 2007-07-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4912         * configure.ac: Add some missing m4 quotation.
4913         * configure: Regenerate.
4915 2007-07-09  Kai Tietz   <kai.tietz@onevision.com>
4917         * Makefile.def: Add windmc tool to build.
4918         * Makefile.tpl: Likewise.
4919         * configure.ac: Likewise.
4920         * Makefile.in: Regenerate.
4921         * configure: Regenerate.
4923 2007-07-05  H.J. Lu  <hongjiu.lu@intel.com>
4925         * lt~obsolete.m4: New. Import from 20070318 libtool.
4927 2007-06-29  Bernd Schmidt  <bernd.schmidt@analog.com>
4929         * configure.ac: Don't add target-libmudflap to noconfigdirs for
4930         uclinux and linux-uclibc targets.
4931         * configure: Regenerate.
4933 2007-06-28  DJ Delorie  <dj@redhat.com>
4935         * configure.ac (arm*-*-linux-gnueabi): Don't build libgloss if we're
4936         not building newlib.
4937         * configure: Regenerated.
4939 2007-06-22  Daniel Jacobowitz  <dan@codesourcery.com>
4941         * src-release (DEVO_SUPPORT): Correct typos.
4943 2007-06-18  Daniel Jacobowitz  <dan@codesourcery.com>
4945         * Makefile.def: Add dependency from configure-gdb to all-bfd.
4946         * Makefile.in: Regenerated.
4948 2007-06-14  Paolo Bonzini  <bonzini@gnu.org>
4950         * Makefile.tpl (cleanstrap): Don't delete the toplevel Makefile.
4951         (distclean-stage[+id+]): Possibly delete stage_last.
4952         * Makefile.in: Regenerate.
4954 2007-06-07  Ben Elliston  <bje@au.ibm.com>
4956         * config.sub, config.guess: Update from upstream sources.
4958 2007-06-07  Ben Elliston  <bje@au.ibm.com>
4960         * Makefile.tpl: Fix spelling error.
4961         * Makefile.in: Regenerate.
4963 2007-06-04  Paolo Bonzini  <bonzini@gnu.org>
4965         Sync with gcc:
4966         2007-05-30  Jakub Jelinek  <jakub@redhat.com>
4968         PR bootstrap/29382
4969         * configure.ac: Don't use -fkeep-inline-functions for GCC < 3.3.1.
4970         * configure: Rebuilt.
4972 2007-06-01  Steve Ellcey  <sje@cup.hp.com>
4974         * libtool.m4 (LT_CMD_MAX_LEN): Try using getconf to set
4975         lt_cv_sys_max_cmd_len.
4977 2007-05-31  Paolo Bonzini  <bonzini@gnu.org>
4979         * ltgcc.m4: Update from GCC.
4981 2007-05-25  Andreas Tobler  <a.tobler@schweiz.org>
4983         * ltmain.sh: Fix Darwin verstring, remove ${wl}.
4985 2007-05-24  Steve Ellcey  <sje@cup.hp.com>
4987         * ltmain.sh: Update from GCC.
4988         * libtool.m4: Update from GCC.
4989         * ltsugar.m4: New. Update from GCC.
4990         * ltversion.m4: New. Update from GCC.
4991         * ltoptions.m4: New. Update from GCC.
4992         * ltconfig: Remove.
4993         * ltcf-c.sh: Remove.
4994         * ltcf-cxx.sh: Remove.
4995         * ltcf-gcj.sh: Remove.
4996         * src-release: Update with new libtool file list.
4998 2007-05-16  Paolo Bonzini  <bonzini@gnu.org>
5000         * Makefile.def (bootstrap_stage): Replace stage_make_flags with
5001         stage_cflags.
5002         * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS, POSTSTAGE1_FLAGS_TO_PASS):
5003         Remove CFLAGS/LIBCFLAGS.
5004         (configure-stage[+id+]-[+prefix+][+module+],
5005         all-stage[+id+]-[+prefix+][+module+]): Pass it from [+stage_cflags+].
5006         * Makefile.in: Regenerate.
5008 2007-04-14  Steve Ellcey  <sje@cup.hp.com>
5010         * config-ml.in: Update from GCC.
5012 2007-04-09  Daniel Jacobowitz  <dan@codesourcery.com>
5014         * src-release (do-proto-toplev): Process the support directories before
5015         the tool directory.
5017 2007-03-21  Richard Sandiford  <richard@codesourcery.com>
5019         * configure.ac (TOPLEVEL_CONFIGURE_ARGUMENTS): Fix m4 quoting
5020         of glob.  Quote arguments with single quotes too.
5021         * configure: Regenerate.
5023 2007-03-12  Brooks Moses  <brooks.moses@codesourcery.com>
5025         * Makefile.def (fixincludes): Remove unneeded "missing" lines.
5026         * Makefile.in: Regenerate
5028 2007-03-07  Andreas Schwab  <schwab@suse.de>
5030         * configure: Regenerate.
5032 2007-03-01  Brooks Moses  <brooks.moses@codesourcery.com>
5034         * configure.ac: Add "--with-pdfdir" configure option,
5035         which defines pdfdir variable.
5036         * Makefile.def (target=fixincludes): Add install-pdf to
5037         missing targets.
5038         (recursive_targets): Add install-pdf target.
5039         (flags_to_pass): Add pdfdir.
5040         * Makefile.tpl: Add pdfdir handling, add do-install-pdf
5041         target.
5042         * configure: Regenerate
5043         * Makefile.in: Regenerate
5045 2007-02-28  Eric Christopher  <echristo@apple.com>
5047         Revert:
5048         2006-12-07  Mike Stump  <mrs@apple.com>
5050         * Makefile.def (dependencies): Add dependency for
5051         install-target-libssp and install-target-libgomp on
5052         install-gcc.
5053         * Makefile.in: Regenerate.
5055 2007-02-27  Matt Kraai  <kraai@ftbfs.org>
5057         * configure: Regenerate.
5058         * configure.ac: Move statements after variable declarations.
5060 2007-02-19  Joseph Myers  <joseph@codesourcery.com>
5062         * configure.ac: Adjust for loop syntax.
5063         * configure: Regenerate.
5065 2007-02-18  Alexandre Oliva  <aoliva@redhat.com>
5067         * configure: Rebuilt.
5069 2007-02-18  Alexandre Oliva  <aoliva@redhat.com>
5071         * configure.ac: Drop multiple occurrences of --enable-languages,
5072         and fix its quoting.
5073         * configure: Rebuilt.
5075 2007-02-17  Mark Mitchell  <mark@codesourcery.com>
5076             Nathan Sidwell  <nathan@codesourcery.com>
5077             Vladimir Prus  <vladimir@codesourcery.com
5078             Joseph Myers  <joseph@codesourcery.com>
5080         * configure.ac (TOPLEVEL_CONFIGURE_ARGUMENTS): Fix quoting.
5081         * configure: Regenerate.
5083 2007-02-13  Daniel Jacobowitz  <dan@codesourcery.com>
5085         * configure.ac (target_libraries): Move libgcc before libiberty.
5086         * configure: Regenerated.
5088 2007-02-13  Paolo Bonzini  <bonzini@gnu.org>
5090         * configure: Regenerate again?
5092 2007-02-13  Paolo Bonzini  <bonzini@gnu.org>
5094         * configure: Reapply PR30748 fix which was lost in the previous commit.
5096 2007-02-13  Daniel Jacobowitz  <dan@codesourcery.com>
5097             Paolo Bonzini  <bonzini@gnu.org>
5099         PR bootstrap/30753
5100         * configure.ac: Remove obsolete build / host tests.  Use AC_PROG_CC
5101         unconditionally.  Use AC_PROG_CXX.  Use ACX_TOOL_DIRS to find $prefix.
5102         * configure: Regenerated.
5104 2007-02-10  Paolo Bonzini  <bonzini@gnu.org>
5106         * configure: Regenerate.
5108 2007-02-09  Daniel Jacobowitz  <dan@codesourcery.com>
5110         PR bootstrap/30748
5111         * configure.ac: Correct syntax for Solaris ksh.
5112         * configure: Regenerated.
5114 2007-02-09  Paolo Bonzini  <bonzini@gnu.org>
5116         * Makefile.def: Sync with GCC.
5117         * Makefile.tpl: Sync with GCC.
5118         * Makefile.in: Regenerate.
5119         * configure: Regenerate.
5121 2007-02-09  Daniel Jacobowitz  <dan@codesourcery.com>
5123         * Makefile.tpl (build_alias, host_alias, target_alias): Use
5124         noncanonical equivalents.
5125         * configure.in: Rename to...
5126         * configure.ac: ...this.  Update AC_PREREQ.  Prevent error for
5127         AS_FOR_TARGET.  Set build_noncanonical, host_noncanonical, and
5128         target_noncanonical.  Use them.  Rewrite removal of configure
5129         arguments for autoconf 2.59.  Discard variable settings.  Force
5130         program_transform_name for native tools.
5132         * Makefile.in: Regenerated.
5133         * configure: Regenerated with autoconf 2.59.
5135         * src-release (DEVO_SUPPORT, do-proto-toplev): Expect configure.ac.
5137 2007-02-08  Jeff Johnston  <jjohnstn@redhat.com>
5139         * COPYING.LIBGLOSS: Reformat default Red Hat
5140         license to fit within 80 columns.
5141         * COPYING.NEWLIB: Ditto.
5143 2007-02-05  Dave Brolley  <brolley@redhat.com>
5145         * Contribute the following changes:
5146         2006-11-28  DJ Delorie  <dj@redhat.com>
5148         * configure.in: Fix typo for mep's target_makefile_frag.
5149         * configure: Regenerated.
5151         2005-04-22  Richard Sandiford  <rsandifo@redhat.com>
5153         * configure.in (mep*): Add -mlibrary to FLAGS_FOR_TARGET.
5154         * configure: Regenerate.
5156         2001-09-19  DJ Delorie  <dj@redhat.com>
5158         * configure.in (target_makefile_frag): use mt-mep
5160         2001-06-12  Don Howard  <dhoward@redhat.com>
5162         * configure.in: Remove gdb from MeP skip list.
5164         2001-04-05  DJ Delorie  <dj@redhat.com>
5166         * configure.in (noconfigdirs): Remove gcc from MeP skip list.
5168         2001-03-20  Ben Elliston  <bje@redhat.com>
5170         * configure.in (noconfigdirs): Add gcc and gdb for MeP.
5172         2001-03-19  Ben Elliston  <bje@redhat.com>
5174         * config.sub (mep, mep-*): Add.
5176 2007-01-31  Andreas Schwab  <schwab@suse.de>
5178         * Makefile.tpl (LDFLAGS): Substitute it.
5179         * Makefile.in: Regenerate.
5181 2007-01-11  Paolo Bonzini  <bonzini@gnu.org>
5183         * configure.in: Change == to = in test command.
5184         * configure: Regenerate.
5186 2007-01-11  Paolo Bonzini  <bonzini@gnu.org>
5187             Nick Clifton  <nickc@redhat.com>
5188             Kaveh R. Ghazi  <ghazi@caip.rutgets.edu>
5190         * configure.in (build_configargs, host_configargs, target_configargs):
5191         Remove build/host/target parameters.
5192         (host_libs): Add gmp and mpfr.
5193         (GMP tests): Reorganize to allow in-tree GMP/MPFR.
5194         * Makefile.def (gmp, mpfr): New.
5195         (gcc): Remove target.
5196         * Makefile.tpl (build_os, build_vendor, host_os, host_vendor,
5197         target_os, target_vendor): New.
5198         (configure): Add host_alias/target_alias arguments.  Adjust invocations.
5199         * configure: Regenerate.
5200         * Makefile.in: Regenerate.
5202 2007-01-11  Matt Fago  <fago@earthlink.net>
5204         * configure.in: Try to link to functions only in mpfr 2.2.x
5205         to improve robustness of configure tests.
5206         * configure: Regenerate.
5208 2007-01-08  Kai Tietz   <kai.tietz@onevision.com>
5210         * configure.in: Add support for an x86_64-mingw* target.
5211         * configure: Regenerate.
5213 2007-01-05  Daniel Jacobowitz  <dan@codesourcery.com>
5215         * Makefile.tpl (all-target): Correct @if conditional for target
5216         modules.
5217         * configure.in: Omit libiberty if building only target libgcc.
5218         * configure, Makefile.in: Regenerated.
5220 2007-01-04  Paolo Bonzini  <bonzini@gnu.org>
5222         * configure.in: Use DEV-PHASE to detect the default for --enable-werror.
5223         * configure: Regenerate.
5225 2007-01-03  Daniel Jacobowitz  <dan@codesourcery.com>
5227         * Makefile.def (target_modules): Add libgcc.
5228         (lang_env_dependencies): Remove default items.  Use no_c and no_gcc.
5229         * Makefile.tpl (clean-target-libgcc): Delete.
5230         (configure-target-[+module+]): Emit --disable-bootstrap dependencies
5231         on gcc even for bootstrapped modules.  Rewrite handling of
5232         lang_env_dependencies to loop over target_modules.
5233         * configure.in (target_libraries): Add target-libgcc.
5234         * Makefile.in, configure: Regenerated.
5236 2006-12-29  Paolo Bonzini  <bonzini@gnu.org>
5238         Sync with gcc:
5239         2006-12-29  Paolo Bonzini  <bonzini@gnu.org>
5241         * configure.in: Reorganize recognition of languages.  Add
5242         --enable-stage1-languages.  Show supported languages for the chosen
5243         target rather than all recognized languages.
5244         * configure: Regenerate.
5246         2006-12-29  Paolo Bonzini  <bonzini@gnu.org>
5248         * Makefile.tpl (GCC_STRAP_TARGETS, all-prebootstrap): Remove.
5249         * Makefile.in: Regenerate.
5251         2006-12-29  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
5253         * configure.in: Warn that MPFR 2.2.0 is buggy.
5254         * configure: Regenerate.
5256 2006-12-27  Ian Lance Taylor  <iant@google.com>
5258         * configure.in: When removing Makefiles to force a reconfigure, also
5259         remove prev-DIR*/Makefile.
5260         * configure: Regenerate.
5262 2006-12-23  Kazu Hirata  <kazu@codesourcery.com>
5264         * config.bfd: Recognize fido.
5266 2006-12-19  Paolo Bonzini  <bonzini@gnu.org>
5268         Sync with gcc:
5270         2006-12-19  Paolo Bonzini  <bonzini@gnu.org>
5272         * configure.in: Remove "$build" case for powerpc-*-darwin* since
5273         it only affects bootstrap and could be tested on "$host" as well.
5274         * configure: Regenerate.
5275         * config/mh-ppc-darwin: Add to the stage1 cflags here.
5277         2006-12-19  Paolo Bonzini  <bonzini@gnu.org>
5279         PR bootstrap/29544
5280         * Makefile.def (flags_to_pass): Add STAGE1_CHECKING.
5281         (bootstrap_stage): Add STAGE1_CHECKING to stage1 configure flags,
5282         move here comment from Makefile.tpl.
5283         * Makefile.tpl: Move some definitions higher in the file.
5284         (STAGE1_CHECKING): New.
5285         * configure.in: Add --enable-stage1-checking.
5286         * configure: Regenerate.
5287         * Makefile.in: Regenerate.
5289         2006-12-03  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
5291         * configure.in: Update error message for missing GMP/MPFR.
5293         * configure: Regenerate.
5295         2006-12-02  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
5297         * configure.in: Update MPFR version in error message.
5299         * configure: Regenerate.
5301         2006-11-26  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
5303         * configure.in (--with-mpfr-dir, --with-gmp-dir): Remove flags.
5304         (--with-mpfr-include, --with-mpfr-lib, --with-gmp-include,
5305         --with-gmp-lib): New flags.
5307         * configure: Regenerate.
5309 2006-12-12  Andreas Tobler  <a.tobler@schweiz.org>
5311         PR bootstrap/30134
5312         * configure.in: Correct x86 darwin support for libjava to powerpc
5313         and i?86 only.
5314         * configure: Regenerate.
5316 2006-12-11  Alan Modra  <amodra@bigpond.net.au>
5318         * configure.in:  Handle spu makefile frag.
5319         * Makefile.tpl (MAINT): Define
5320         (MAINTAINER_MODE_FALSE, MAINTAINER_MODE_TRUE): Define.
5321         * configure: Regenerate.
5322         * Makefile.in: Regenerate.
5324 2006-12-11  Ben Elliston  <bje@au.ibm.com>
5326         * config.sub, config.guess: Update from upstream sources.
5328 2006-12-11  Ben Elliston  <bje@au.ibm.com>
5330         * configure.in: Sync with GCC (spu-*-*).
5331         * configure: Sync with GCC.
5333 2006-12-07  Mike Stump  <mrs@apple.com>
5335         * Makefile.def (dependencies): Add dependency for
5336         install-target-libssp and install-target-libgomp on
5337         install-gcc.
5338         * Makefile.in: Regenerate.
5340 2006-11-16  Paolo Bonzini  <bonzini@gnu.org>
5342         * Makefile.tpl (clean-target-libgcc): Test for gcc Makefile presence.
5343         (unstage): Test for stage_last presence.
5345         PR bootstrap/29802
5346         * Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Add HOST_SUBDIR in STAGE_PREFIX.
5347         * Makefile.in: Regenerate.
5349 2006-11-14  DJ Delorie  <dj@redhat.com>
5351         * Makefile.tpl (clean-stage*): Sync with GCC (clean).
5352         * Makefile.in: Sync with GCC.
5353         * configure.in: Sync with GCC (mpfr, gmp).
5354         * configure: Sync with GCC.
5356 2006-11-08  Jie Zhang  <jie.zhang@analog.com>
5358         * configure.in: Remove target-libgloss from noconfigdirs for
5359         bfin-*-*.
5360         * configure: Regenerated.
5362 2006-10-27  Jeff Johnston  <jjohnstn@redhat.com>
5364         * COPYING.NEWLIB: Add spu license.
5365         * COPYING.LIBGLOSS: Ditto.
5367 2006-10-17  Brooks Moses  <bmoses@stanford.edu>
5369         * Makefile.def: Added pdf target handling.
5370         * Makefile.tpl: Added pdf target handling.
5371         * Makefile.in: Regenerated.
5373 2006-10-11  Jeff Johnston  <jjohnstn@redhat.com>
5375         * COPYING.NEWLIB: Updated.
5376         * COPYING.LIBGLOSS: Ditto.
5378 2006-09-27  Dave Brolley  <brolley@redhat.com>
5380         * configure.in (RUNTEST): Look for 'runtest' in the source tree by using
5381         $s instead of $r.
5382         * configure: Regenerated.
5384 2006-09-26  Ben Elliston  <bje@au.ibm.com>
5386         * config.sub, config.guess: Update from upstream sources.
5388 2006-09-20  Thiemo Seufer  <ths@mips.com>
5390         * configure.in: Remove redundant handling of mips*-dec-bsd*. Likewise
5391         for mipstx39-*-*. Disable libgloss for mips64*-*-linux*.
5392         * configure: Regenerate.
5394 2006-08-30  Corinna Vinschen  <corinna@vinschen.de>
5396         * configure.in: Never build newlib for a Mingw host.
5397         Never build newlib as Mingw target library.
5398         Test the existence of winsup/cygwin for building a Cygwin newlib,
5399         rather than just winsup.
5400         Add winsup/mingw and winsup/w32api paths to FLAGS_FOR_TARGET if
5401         building a Mingw target.
5402         * configure: Regenerate.
5404 2006-08-15  Thiemo Seufer  <ths@mips.com>
5405             Nigel Stephens  <nigel@mips.com>
5406             David Ung  <davidu@mips.com>
5408         * config.sub: Add support for sde as alias of mipsisa32-sde-elf.
5410 2006-07-25  Paolo Bonzini  <bonzini@gnu.org>
5412         Sync from GCC:
5413         2006-07-04  Eric Botcazou  <ebotcazou@libertysurf.fr>
5415         PR bootstrap/18058
5416         * configure.in: Add -fkeep-inline-functions to CFLAGS for stage 1
5417         if the bootstrap compiler is a GCC version that supports it.
5418         * configure: Regenerate.
5420 2006-07-22  Daniel Jacobowitz  <dan@codesourcery.com>
5422         * configure.in: Allow mingw32 and cygwin targets to build cross-gdb.
5423         * configure: Regenerated.
5425 2006-07-18  Paolo Bonzini  <bonzini@gnu.org>
5427         * Makefile.tpl (configure-stageN-MODULE): Pass --with-build-libsubdir
5428         for stages after the first.
5430 2006-07-17  Jakub Jelinek  <jakub@redhat.com>
5432         * Makefile.def: Add dependencies for configure-opcodes
5433         on configure-intl and all-opcodes on all-intl.
5434         * Makefile.in: Regenerated.
5436 2006-07-04  Peter O'Gorman  <peter@pogma.com>
5438         * ltconfig: chmod 644 before ranlib during install.
5440 2006-07-03  Paolo Bonzini  <bonzini@gnu.org>
5442         * configure.in: Fix thinkos in previous check-in.
5443         * configure: Regenerate.
5445 2006-07-03  Paolo Bonzini  <bonzini@gnu.org>
5447         Sync from gcc:
5449         2007-07-03  Paolo Bonzini  <bonzini@gnu.org>
5451         PR other/27063
5452         * configure.in: Test subdir_requires and give an appropriate
5453         error message.
5454         * configure: Regenerate.
5456         2006-06-16  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
5458         PR target/27540
5459         * configure.in: Only enable libgomp on IRIX 6.
5460         * configure: Regenerate.
5462 2006-06-20  David Ayers  <d.ayers@inode.at>
5464         PR bootstrap/28072
5465         * configure.in: Add target-boehm-gc to noconfigdirs depending on
5466         whether target-libjava is being configured instead of whether the
5467         java front end is enabled.
5468         * configure: Regenerate.
5470 2006-06-15  Mark Shinwell  <shinwell@codesourcery.com>
5472         * include/elf/arm.h: Correct names of R_ARM_LDC_G{0,1,2}
5473         to R_ARM_LDC_SB_G{0,1,2} respectively.
5475 2006-06-15  Paolo Bonzini  <bonzini@gnu.org>
5477         * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Export CFLAGS and LDFLAGS
5478         too.
5479         * Makefile.in: Regenerate.
5481 2006-06-13  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
5483         Sync from gcc:
5485         2006-06-12  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
5486         * configure.in: Don't enable libgomp on hpux10.
5487         * configure: Rebuilt.
5489 2006-06-13  David Ayers  <d.ayers@inode.at>
5491         Sync from gcc:
5493         2006-06-12  David Ayers  <d.ayers@inode.at>
5495         PR bootstrap/27963
5496         PR target/19970
5497         * configure.in: Remove target-boehm-gc from noconfigdirs where
5498         ${libgcj} is specified.
5499         * configure: Regenerate.
5501 2006-06-08  Jeff Johnston  <jjohnstn@redhat.com>
5503         Sync from gcc:
5505         2005-01-12  David Edelsohn  <edelsohn@gnu.org>
5506                     Andreas Schwab  <schwab@suse.de>
5508         PR bootstrap/18033
5509         * config-ml.in: Eval option if surrounded by single quotes.
5511 2006-06-07  Carlos O'Donell  <carlos@codesourcery.com>
5513         Sync from gcc:
5515         2006-06-06  David Ayers  <d.ayers@inode.at>
5517         PR libobjc/13946
5518         * Makefile.def: Add dependencies for libobjc which boehm-gc.
5519         * Makefile.in: Regenerate.
5520         * configure.in: Add --enable-objc-gc at toplevel and have it
5521         enable boehm-gc for Objective-C.
5522         Remove target-boehm-gc from libgcj.
5523         Add target-boehm-gc to target_libraries.
5524         Add target-boehm-gc to noconfigdirs where ${libgcj}
5525         is specified.
5526         Assert that boehm-gc is supported when requested for Objective-C.
5527         Only build boehm-gc if needed either for Java or Objective-C.
5528         * configure: Regenerate.
5530         2006-06-05  Paolo Bonzini  <bonzini@gnu.org>
5532         PR 27674
5533         * Makefile.tpl (configure-[+prefix+][+module+],
5534         all-[+prefix+][+module+]): Depend on stage_current if bootstrapping.
5535         Remove rule to unstage bootstrapped modules.
5536         (stage_current): New.
5537         * Makefile.in: Regenerate.
5539         2006-05-20  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
5540         Andreas Tobler  <a.tobler@schweiz.ch>
5542         * configure.in:  Enable libgcj for hppa*-hp-hpux11*.
5543         * configure: Rebuilt.
5545         Revert
5546         2006-01-31  Richard Guenther  <rguenther@suse.de>
5547         Paolo Bonzini  <bonzini@gnu.org>
5549         * Makefile.def (target_modules): Add libgcc-math target module.
5550         * configure.in (target_libraries): Add libgcc-math target library.
5551         (--enable-libgcc-math): New configure switch.
5552         * Makefile.in: Re-generate.
5553         * configure: Re-generate.
5555 2006-06-05  Jeff Johnston  <jjohnstn@redhat.com>
5557         * config-ml.in: Alter CCASFLAGS to include special
5558         multilib options the same as is done for CFLAGS.
5560 2006-05-31  Daniel Jacobowitz  <dan@codesourcery.com>
5562         * Makefile.def: Added dependencies from sim and gdb on intl, and
5563         added configure dependencies to everything with an all dependency
5564         on intl.
5565         * gettext.m4: Removed.
5566         * src-release (DEVO_SUPPORT): Don't mention gettext.m4.
5567         (GDB_SUPPORT_DIRS): Add intl.
5568         * Makefile.in: Regenerated.
5570 2006-05-25  Daniel Jacobowitz  <dan@codesourcery.com>
5572         * src-release (DEVO_SUPPORT): Add config.rpath.
5574 2006-05-25  Paolo Bonzini  <bonzini@gnu.org>
5576         * Makefile.def (bfd, opcodes): Fix lib_path.
5577         * Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Replace ADAC with ADAFLAGS.
5578         (restrap): Move under "@if gcc-bootstrap".  Fix typo.
5579         * Makefile.in: Regenerate.
5581 2006-05-24  Mark Shinwell  <shinwell@codesourcery.com>
5583         * configure.in: Enable gprof for cross builds.
5584         * configure: Regenerate.
5586 2006-05-17  Daniel Jacobowitz  <dan@codesourcery.com>
5588         * src-release (MAKEINFOFLAGS): Define.
5589         (do-proto-toplev): Pass MAKEINFOFLAGS to submakes.
5591 2006-05-14  Ben Elliston  <bje@au.ibm.com>
5593         * config.sub, config.guess: Update from upstream sources.
5595 2006-05-12  Ben Elliston  <bje@au.ibm.com>
5597         * config.sub, config.guess: Update from upstream sources.
5599 2006-05-04  Steve Ellcey  <sje@cup.hp.com>
5601         * blt, iwidgets, mmalloc: Remove directories.
5603 2006-05-01  DJ Delorie  <dj@redhat.com>
5605         * configure.in: Restore CFLAGS if GMP isn't present.
5606         * configure: Regenerate.
5608 2006-04-18  DJ Delorie  <dj@redhat.com>
5610         * configure.in (m32c): Build libstdc++-v3.  Pass flags to
5611         reference libgloss so that libssp can be built in a combined
5612         tree.
5613         * configure: Regenerate.
5615 2006-04-10  Ben Elliston  <bje@au.ibm.com>
5617         * contrib: Remove directory.
5619 2006-04-06  Carlos O'Donell <carlos@codesourcery.com>
5621         * Makefile.tpl: Add install-html target.
5622         * Makefile.def: Add install-html target.
5623         * Makefile.in: Regenerate.
5624         * configure.in: Add --with-datarootdir, --with-docdir,
5625         and --with-htmldir options.
5626         * configure: Regenerate.
5628 2006-03-31  Ben Elliston  <bje@au.ibm.com>
5630         PR binutils/1860
5631         * configure.in: Require makeinfo 4.4 or higher.
5632         * configure: Regenerate.
5634 2006-03-14  Paolo Bonzini  <bonzini@gnu.org>
5636         * Makefile.in: Regenerate.
5638 2006-03-14  Paolo Bonzini  <bonzini@gnu.org>
5640         Sync with gcc:
5641         2006-03-10  Aldy Hernandez  <aldyh@redhat.com>
5643         * configure.in: Handle --disable-<component> generically.
5644         * configure: Regenerate.
5646         2006-02-21 Rafael Avila de Espindola <rafael.espindola@gmail.com>
5648         * Makefile.tpl  (BUILD_CONFIGDIRS): Remove.
5649         (TARGET_CONFIGDIRS): Remove.
5650         * configure.in: Remove AC_SUBST(target_configdirs).
5651         * Makefile.in, configure: Regenerated.
5654 2006-03-01  H.J. Lu  <hongjiu.lu@intel.com>
5656         PR libgcj/17311
5657         * ltmain.sh: Don't use "$finalize_rpath" for compile.
5659 2006-02-20  Paolo Bonzini  <bonzini@gnu.org>
5661         PR bootstrap/25670
5663         * Makefile.tpl ([+compare-target+]): Print explanation messages.
5665         * Makefile.def (ADAFLAGS, BOOT_ADAFLAGS, LANGUAGES): New flags_to_pass.
5666         * Makefile.tpl (BASE_FLAGS_TO_PASS): Support optional flags_to_pass.
5667         (EXTRA_GCC_FLAGS): Remove ADAFLAGS, BOOT_ADAFLAGS, LANGUAGES,
5668         BUILD_PREFIX, BUILD_PREFIX_1.
5669         * configure.in: (BUILD_PREFIX, BUILD_PREFIX_1): Don't substitute.
5671         * Makefile.def (bootstrap stage 1): Pass LIBCFLAGS too.
5672         * Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Override LIBCFLAGS too.
5674         * Makefile.tpl (configure-stage[+id+]-[+prefix+][+module+],
5675         all-stage[+id+]-[+prefix+][+module+], : Use $(current_stage) instead
5676         of `cat stage_current`.  Always provide the `r' and `s' variables.
5677         (clean-stage[+id+]-[+prefix+][+module+]): Likewise, and make it into
5678         a single shell execution.
5679         (configure-[+prefix+][+module+], all-[+prefix+][+module+]): For
5680         bootstrapped modules, make the stage1 module if the build was not
5681         started yet, else build the current stage.
5682         (all-host, all-target): Omit bootstrapped modules (if bootstrapping).
5683         (all-build, all-host, all-target, [+make_target+]-host,
5684         [+make_target+]-target): Do not use \-continued lines.
5685         (target modules): Depend on stage_last, not all-gcc, if bootstrapping.
5686         (current_stage, restrap, stage_last): New.
5688         * Makefile.in: Regenerate.
5689         * configure: Regenerate.
5691 2006-02-14  Paolo Bonzini  <bonzini@gnu.org>
5693         Sync from gcc:
5695         2006-01-31  Richard Guenther  <rguenther@suse.de>
5696                     Paolo Bonzini  <bonzini@gnu.org>
5698         * Makefile.def (target_modules): Add libgcc-math target module.
5699         * configure.in (target_libraries): Add libgcc-math target library.
5700         (--enable-libgcc-math): New configure switch.
5701         * Makefile.in: Re-generate.
5702         * configure: Re-generate.
5703         * libgcc-math: New toplevel directory.
5705         2006-01-18  Richard Henderson  <rth@redhat.com>
5706                     Jakub Jelinek  <jakub@redhat.com>
5707                     Diego Novillo  <dnovillo@redhat.com>
5709         * libgomp: New directory.
5710         * Makefile.def: Add target_module libgomp.
5711         * Makefile.in: Regenerate.
5712         * configure.in (target_libraries): Add target-libgomp.
5713         * configure: Regenerate.
5715 2006-02-14  Paolo Bonzini  <bonzini@gnu.org>
5716             Andreas Schwab  <schwab@suse.de>
5718         * configure: Regenerate.
5720 2006-01-16  Paolo Bonzini  <bonzini@gnu.org>
5722         * configure.in: Set with_gnu_as, with_gnu_ld, with_newlib earlier.
5723         Set md_exec_prefix.  Use ACX_CHECK_INSTALLED_TARGET_TOOL to find
5724         the assembler, linker and binutils.
5725         * configure: Regenerate.
5727 2006-01-16  Nick Clifton  <nickc@redhat.com>
5729         * config.sub, config.guess: Sync from config repository.
5731 2006-01-05  Alexandre Oliva  <aoliva@redhat.com>
5733         * Makefile.tpl (clean-stage[+id+]-[+prefix+][+module+]): Remove
5734         @ from continuation.
5735         * Makefile.in: Rebuilt.
5737 2006-01-04  Paolo Bonzini  <bonzini@gnu.org>
5739         Sync from gcc:
5741         2006-01-04  Paolo Bonzini  <bonzini@gnu.org>
5743         PR bootstrap/24252
5745         * Makefile.def (flags_to_pass): Add STAGE1_CFLAGS and STAGE1_LANGUAGES.
5746         * Makefile.tpl (OBJDUMP): New.
5747         (EXTRA_HOST_FLAGS): Add it.
5748         (EXTRA_GCC_FLAGS): Remove flags already specified in flags_to_pass.
5750         * Makefile.tpl (stage[+id+]-start, stage[+id+]-end): Do not try
5751         to use symbolic links between directories.  Avoid race conditions
5752         or make them harmless.
5753         * configure.in: Do not try to use symbolic links between directories.
5755         * Makefile.def (LEAN): Pass.
5756         * Makefile.tpl (LEAN): Define.
5757         (stage[+id+]-start): Accept that the previous directory does not
5758         exist, if the bootstrap is lean.
5759         (stage[+id+]-bubble): Invoke lean bootstrap commands after
5760         stage[+id+]-start.  Use a makefile variable and an `if' instead of a
5761         configure substitution.
5762         ([+compare-target+]): Likewise.
5763         ([+bootstrap-target+]-lean): New.
5764         * configure.in: Remove lean bootstrap support from here.
5766         * Makefile.in: Regenerate.
5767         * configure: Regenerate.
5769         2006-01-02  Andreas Schwab  <schwab@suse.de>
5771         * configure.in: When reconfiguring remove Makefile in
5772         all stage directories.
5773         * configure: Regenerate.
5775 2005-12-27  Leif Ekblad  <leif@rdos.net>
5777         * configure.in: Add support for RDOS target.
5778         * configure: Regenerate.
5780 2005-12-27  Nick Clifton  <nickc@redhat.com>
5782         PR binutils/1990
5783         * libtool.m4: Synchronize with version in GCC sources.
5785 2005-12-20  Paolo Bonzini  <bonzini@gnu.org>
5787         Revert Ada-related part of the previous change.
5789         * Makefile.def (ADAFLAGS, BOOT_ADAFLAGS, ADAFLAGS_FOR_TARGET):
5790         Do not pass.
5791         * Makefile.tpl (BOOT_ADAFLAGS): Do not define.
5792         * Makefile.in: Regenerate.
5793         * configure.in: Do not include mt-ppc-aix target fragment.
5794         * configure: Regenerate.
5796 2005-12-19  Paolo Bonzini  <bonzini@gnu.org>
5798         * configure.in: Select appropriate fragments for PowerPC/AIX.
5799         * configure: Regenerate.
5801         * Makefile.def (flags_to_pass): Add ADAFLAGS, BOOT_ADAFLAGS,
5802         BOOT_CFLAGS, BOOT_LDFLAGS.
5803         * Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Handle BOOT_ADAFLAGS,
5804         BOOT_CFLAGS, BOOT_LDFLAGS.
5805         (TARGET_FLAGS_TO_PASS): Handle ADAFLAGS_FOR_TARGET.
5806         (stage[+id+]-bubble): Pass flags recursively to the comparison target.
5807         (stage): Fail if we cannot complete the work.
5808         * Makefile.in: Regenerate.
5810 2005-12-16  Jeff Johnston  <jjohnstn@redhat.com>
5812         * COPYING.NEWLIB: Update copyright year for default
5813         copyright.
5815 2005-12-15  Paolo Bonzini  <bonzini@gnu.org>
5817         * Makefile.tpl (all, do-[+make_target+], do-check, install,
5818         install-host-nogcc): Don't invoke $(stage) at the end.
5819         * Makefile.in: Regenerate.
5821 2005-12-14  Paolo Bonzini  <bonzini@gnu.org>
5823         * configure.in: Flip the top-level bootstrap switch.
5824         * configure: Regenerate.
5826         Merge from gcc:
5828         2005-12-14  Daniel Jacobowitz  <dan@codesourcery.com>
5830         * Makefile.tpl: Throughout the file, use : $(MAKE) along with
5831         $(stage) and $(unstage).
5832         (EXTRA_TARGET_FLAGS): Correct double-quoting.
5833         (all): Remove stray semicolon.
5834         (local-distclean): Don't handle multilib.tmp and multilib.out.
5835         (install.all): Set $s for consistency.
5836         (configure-[+prefix+][+module+]): Instead of [+deps+], handle
5837         check_multilibs setting.  Always make the install directory.
5838         (configure-stage[+id+]-[+prefix+][+module+]): Likewise.
5839         Correct @if/@endif.
5840         (all-stage[+id+]-[+prefix+][+module+]): Correct @if/@endif.
5841         ($(TARGET_SUBDIR)/[+module+]/multilib.out): Remove.
5842         (stage[+id+]-start, stage[+id+]-end): Stage $(TARGET_SUBDIR).
5843         (multilib.out): Remove.
5844         * Makefile.in: Regenerated.
5846 2005-12-12  Nathan Sidwell  <nathan@codesourcery.com>
5848         * config.sub: Replace ms1 arch with mt.  Allow ms1 as alias.
5849         * configure.in: Replace ms1 arch with mt.
5850         * configure: Rebuilt.
5852 2005-12-05  Paolo Bonzini  <bonzini@gnu.org>
5854         Sync with gcc:
5856 2005-12-12  Nathan Sidwell  <nathan@codesourcery.com>
5858         * config.sub: Replace ms1 arch with mt.  Allow ms1 as alias.
5859         * configure.in: Replace ms1 arch with mt.
5860         * configure: Rebuilt.
5862 2005-12-05  Paolo Bonzini  <bonzini@gnu.org>
5864         Sync with gcc:
5866         2005-12-05  Paolo Bonzini  <bonzini@gnu.org>
5868         * configure.in (CONFIGURED_BISON, CONFIGURED_YACC, CONFIGURED_M4,
5869         CONFIGURED_FLEX, CONFIGURED_LEX, CONFIGURED_MAKEINFO): Remove
5870         "CONFIGURED_" from the AC_CHECK_PROGS invocation.  Move below.
5871         Find in-tree tools if available.
5872         (EXPECT, RUNTEST, LIPO, STRIP): Find them and substitute them.
5873         (CONFIGURED_*_FOR_TARGET): Don't set nor substitute.
5874         (*_FOR_TARGET): Set them with GCC_TARGET_TOOL.
5875         (COMPILER_*_FOR_TARGET): New.
5876         * Makefile.tpl (HOST_EXPORTS): Add *_FOR_TARGET symbols that gcc needs.
5877         (BASE_TARGET_EXPORTS): Use COMPILER_*_FOR_TARGET symbols.
5878         (CONFIGURED_*, USUAL_*): Remove.
5879         (BISON, YACC, FLEX, LEX, M4, MAKEINFO, EXPECT, RUNTEST, LIPO,
5880         STRIP): Use autoconf substitutions.
5881         (COMPILER_AS_FOR_TARGET, COMPILER_LD_FOR_TARGET,
5882         COMPILER_NM_FOR_TARGET): New.
5883         (EXTRA_HOST_FLAGS): Pass LIPO and STRIP.
5885         (all): Make all-host and all-target in parallel.
5886         (do-[+make_target+], do-check, install, [+compare-target+]): Ensure
5887         that $$r and $$s are set before invoking a recursive make.
5888         (stage[+id+]-bubble): Likewise, and invoke the comparison at the end.
5889         ([+bootstrap-target+]): Inline most of the `all' target.
5891         2005-11-29  Ben Elliston  <bje@au.ibm.com>
5893         * Makefile.tpl (clean-target-libgcc): Invoke clean-target-libgcc
5894         from the gcc build directory.
5895         * Makefile.in: Regenerate.
5897         2005-11-29  Ben Elliston  <bje@au.ibm.com>
5899         * Makefile.def: Add new libdecnumber host_module.  Make all-gcc
5900         depend on all-libdecnumber.
5901         * configure.in (host_libs): Include libdecnumber.
5902         * Makefile.in: Regenerate.
5903         * configure: Likewise.
5905         2005-11-21  Kean Johnston  <jkj@sco.com>
5907         * config.sub, config.guess: Sync from upstream sources.
5909 2005-11-11  Daniel Jacobowitz  <dan@codesourcery.com>
5911         * Makefile.def: Remove gdb dependencies for gdbtk.
5912         * Makefile.tpl (CONFIGURE_GDB_TK, INSTALL_GDB_TK): New variables.
5913         (configure-gdb, install-gdb): New rules.
5914         * configure.in: Set CONFIGURE_GDB_TK and INSTALL_GDB_TK.
5915         * Makefile.in, configure: Regenerated.
5917 2005-10-22  Paolo Bonzini  <bonzini@gnu.org>
5919         PR bootstrap/24297
5920         * Makefile.tpl (do-[+make-target+], do-check, install,
5921         stage[+id+]-bubble, [+compare-target+]): Ensure $$r and $$s
5922         are set before recursing.
5923         * Makefile.in: Regenerate.
5925 2005-10-20  Eric Botcazou  <ebotcazou@adacore.com>
5927         PR bootstrap/18939
5928         * Makefile.def (gcc) <target>: Fix thinko.
5929         * Makefile.in: Regenerate.
5931 2005-10-17  Bernd Schmidt  <bernd.schmidt@analog.com>
5933         * configure.in (bfin-*-*): Use test, not brackets, in if statement.
5934         * configure: Regenerate.
5936 2005-10-09  Kazu Hirata  <kazu@codesourcery.com>
5938         * configure.in (arm-*-linux-gnueabi): Add to noconfigdirs
5939         target-libffi, target-qthreads, target-libjava, and
5940         targetlibobjc.
5941         * configure: Regenerate.
5943 2005-10-06  Daniel Jacobowitz  <dan@codesourcery.com>
5945         * Makefile.def (flags_to_pass): Add OBJDUMP_FOR_TARGET.
5946         * Makefile.tpl (BASE_TARGET_EXPORTS): Add OBJDUMP.
5947         (OBJDUMP_FOR_TARGET, CONFIGURED_OBJDUMP_FOR_TARGET)
5948         (USUAL_OBJDUMP_FOR_TARGET): New.
5949         (EXTRA_TARGET_FLAGS): Add OBJDUMP.
5950         * configure.in: Check for $OBJDUMP_FOR_TARGET.
5951         * configure, Makefile.in: Regenerated.
5953 2005-10-05  Paolo Bonzini  <bonzini@gnu.org>
5955         * Makefile.tpl (all) [gcc-no-bootstrap]: Make prebootstrap packages
5956         before other host packages.
5958 2005-10-05  Paolo Bonzini  <bonzini@gnu.org>
5960         PR bootstrap/22340
5962         * configure.in (default_target): Remove.
5963         * Makefile.tpl (all): Do not use prerequisites as subroutines
5964         (all) [gcc-bootstrap]: Bootstrap gcc first if it was not done yet.
5965         (do-[+make_target+], check, install, [+bootstrap_target+]): Do not
5966         use prerequisites as subroutines.
5967         (check-host, check-target): New.
5968         (bootstrap configure & all targets): Do not use stage*-start
5969         if the directory layout is already ok.
5970         (non-bootstrap configure & all targets): Prepend a $(unstage).
5971         (stage[+id+]-bubble): Do that here.  Do not use NOTPARALLEL.
5972         (NOTPARALLEL): Remove.
5973         (unstage, stage variables): New variables.
5974         (unstage, stage targets): Simply expand to those variables.
5976         * configure: Regenerate.
5977         * Makefile.in: Regenerate.
5979 2005-10-04  James E Wilson  <wilson@specifix.com>
5981         * Makefile.def (lang_env_dependencies): Add libmudflap.
5982         * Makefile.in: Regenerate.
5984 2005-10-03  Catherine Moore  <clm@cm00re.com>
5986         * configure.in (bfin-*-*): Support bfin.
5987         * configure: Regenerated.
5989 2005-09-30  H.J. Lu  <hongjiu.lu@intel.com>
5991         * configure.in (*-*-darwin*): Build bfd, binutils and opcodes.
5992         * configure: Regenerated.
5994 2005-09-28  Geoffrey Keating  <geoffk@apple.com>
5996         * Makefile.tpl (BASE_TARGET_EXPORTS): Add LIPO, STRIP.
5997         (LIPO_FOR_TARGET): New.
5998         (CONFIGURED_LIPO_FOR_TARGET): New.
5999         (USUAL_LIPO_FOR_TARGET): New.
6000         (STRIP_FOR_TARGET): New.
6001         (CONFIGURED_STRIP_FOR_TARGET): New.
6002         (USUAL_STRIP_FOR_TARGET): New.
6003         * Makefile.def (flags_to_pass): Add LIPO_FOR_TARGET and
6004         STRIP_FOR_TARGET.
6005         * configure.in: Set LIPO_FOR_TARGET, STRIP_FOR_TARGET,
6006         CONFIGURED_LIPO_FOR_TARGET, CONFIGURED_STRIP_FOR_TARGET.
6007         * Makefile.in: Regenerate.
6008         * configure: Regenerate.
6010 2005-09-19  David Edelsohn  <edelsohn@gnu.org>
6012         * configure.in (powerpc-*-aix*): Add target-libssp to noconfigdirs.
6013         (rs6000-*-aix*): Same.
6014         * configure: Regenerate.
6016 2005-09-14  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
6018         * configure.in: Recognize f95 in the --enable-languages option,
6019         and substitute it for fortran, issuing a warning.
6020         * configure: Regenerate.
6022 2005-09-07  Ben Elliston  <bje@au.ibm.com>
6024         Import from Autoconf sources:
6026         2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
6027         * move-if-change: Don't output "$2 is unchanged"; suggested by Ben
6028         Elliston.  Handle weird characters correctly.
6030 2005-08-30  Phil Edwards  <phil@codesourcery.com>
6032         * configure.in (*-*-vxworks*):  Add target-libstdc++-v3 to noconfigdirs.
6033         * configure:  Regenerated.
6035 2005-08-20  Richard Earnshaw  <richard.earnshaw@arm.com>
6037         * Makefile.def (libssp): Add to lang_env_dependencies.
6038         * Makefile.in: Regenerate.
6040 2005-08-17  Christian Groessler  <chris@groessler.org>
6042         * Makefile.tpl: (USUAL_CC_FOR_TARGET): Add missing trailing slash.
6043         * Makefile.in: Regenerate.
6045 2005-08-12  Paolo Bonzini  <bonzini@gnu.org>
6047         * configure.in: Replace NCN_STRICT_CHECK_TOOL with
6048         NCN_STRICT_CHECK_TOOLS, and likewise for NCN_STRICT_CHECK_TARGET_TOOLS.
6049         Look for alternate names of the target cc and c++
6050         * configure: Regenerate.
6052 2005-08-08  Paolo Bonzini  <bonzini@gnu.org>
6054         * configure.in (CC_FOR_TARGET, CXX_FOR_TARGET, GCJ_FOR_TARGET,
6055         GCC_FOR_TARGET, RAW_CXX_FOR_TARGET, GFORTRAN_FOR_TARGET): Find
6056         them with NCN_STRICT_CHECK_TARGET_TOOL, like the other target
6057         tools; remove code to manually set them.
6058         (Target tools): Look in the environment for them.
6059         * Makefile.tpl (CC_FOR_TARGET, CXX_FOR_TARGET, GCJ_FOR_TARGET,
6060         GCC_FOR_TARGET, RAW_CXX_FOR_TARGET, GFORTRAN_FOR_TARGET): Redefine.
6061         (AS_FOR_TARGET, LD_FOR_TARGET, NM_FOR_TARGET): Look into gcc
6062         build directory.
6063         (CONFIGURED_CC_FOR_TARGET, CONFIGURED_CXX_FOR_TARGET,
6064         CONFIGURED_GCJ_FOR_TARGET, CONFIGURED_GCC_FOR_TARGET,
6065         CONFIGURED_GFORTRAN_FOR_TARGET, USUAL_CC_FOR_TARGET,
6066         USUAL_CXX_FOR_TARGET, USUAL_GCJ_FOR_TARGET, USUAL_GCC_FOR_TARGET,
6067         USUAL_RAW_CXX_FOR_TARGET, USUAL_GFORTRAN_FOR_TARGET): New.
6068         (CXX_FOR_TARGET_FOR_RECURSIVE_MAKE,
6069         RAW_CXX_FOR_TARGET_FOR_RECURSIVE_MAKE, RECURSE_FLAGS): Delete.
6070         * configure: Regenerate.
6071         * Makefile.in: Regenerate.
6073 2005-07-27  Mark Mitchell  <mark@codesourcery.com>
6075         * Makefile.tpl (EXTRA_TARGET_FLAGS): Set LDFLAGS=LDFLAGS_FOR_TARGET.
6076         * Makefile.def (flags_to_pass): Add LDFLAGS_FOR_TARGET.
6077         * Makefile.in: Regenerated.
6079 2005-07-26  Mark Mitchell  <mark@codesourcery.com>
6081         * Makefile.tpl (SYSROOT_CFLAGS_FOR_TARGET): New variable.
6082         (CFLAGS_FOR_TARGET): Use it.
6083         (CXXFLAGS_FOR_TARGET): Likewise.
6084         * Makefile.in: Regenerated.
6085         * configure.in (--with-build-sysroot): New option.
6086         * configure: Regenerated.
6088 2005-07-24  Paolo Bonzini  <bonzini@gnu.org>
6090         * Makefile.tpl: Wrap install between unstage and stage
6091         * Makefile.in: Regenerate.
6093 2005-07-16  Kelley Cook  <kcook@gcc.gnu.org>
6095         * all files: Update FSF address.
6097 2005-07-14  Jim Blandy  <jimb@redhat.com>
6099         * configure.in: Add cases for Renesas m32c.
6100         * configure: Regenerated.
6102 2005-07-14  Kelley Cook  <kcook@gcc.gnu.org>
6104         * COPYING, compile, config-ml.in, config.guess,
6105         config.sub, install-sh, missing, mkinstalldirs,
6106         symlink-tree, ylwrap: Sync from upstream sources.
6108 2005-07-13  Eric Christopher  <echristo@redhat.com>
6110         * configure.in: Add toplevel noconfigdir support for tpf.
6111         * configure: Regenerate.
6113 2005-07-11  Jakub Jelinek  <jakub@redhat.com>
6115         * Makefile.def (target_modules): Add libssp.
6116         * configure.in (target_libraries): Add target-libssp.
6117         * configure: Rebuilt.
6118         * Makefile.in: Rebuilt.
6120 2005-07-11  Paolo Bonzini  <bonzini@gnu.org>
6122         PR ada/22340
6124         * Makefile.def: Sync with gcc.
6125         * Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Fix pasto.
6126         * Makefile.in: Regenerate.
6128 2005-07-07  Andreas Schwab  <schwab@suse.de>
6130         * Makefile.def (flags_to_pass): Add CFLAGS_FOR_BUILD.
6131         * Makefile.tpl (EXTRA_GCC_FLAGS): Don't pass CFLAGS_FOR_BUILD here.
6132         * Makefile.in: Regenerated.
6134 2005-07-07  Kazu Hirata  <kazu@codesourcery.com>
6136         * configure.in: Add --enable-libssp and --disable-libssp.
6137         * configure: Regenerate with autoconf-2.13.
6139 2005-07-06  Geoffrey Keating  <geoffk@apple.com>
6141         * configure.in: Don't build sim or rda when targetting darwin.
6142         * configure: Regenerate.
6144 2005-07-04  Ben Elliston  <bje@gnu.org>
6146         * src-release (do-proto-toplev): Remove dejagnu bits.
6147         (DEJAGNU_SUPPORT_DIRS): Remove.
6148         (dejagnu.tar.bz2, dejagnu.tar): Likewise.
6149         (GDBD_SUPPORT_DIRS): Likewise.
6150         (gdb+dejagnu.tar.bz2, gdb+dejagnu.tar): Likewise.
6151         (INSIGHTD_SUPPORT_DIRS): Likewise.
6152         (insight+dejagnu.tar.bz2, insight+dejagnu.tar): Likewise.
6154 2005-06-30  Ben Elliston  <bje@gnu.org>
6156         * setup.com (mpw): Remove unused directive.
6158 2005-06-22  Paolo Bonzini  <bonzini@gnu.org>
6160         * Makefile.def (stagefeedback): Come after profile.
6161         Define profiledbootstrap target.
6162         * Makefile.tpl (profiledbootstrap): Remove.
6163         (stageprofile-end): Zap stagefeedback.
6164         (stagefeedback-start): Copy all .gcda files, not only GCC's.
6165         * Makefile.in: Regenerate.
6167 2005-06-13  Zack Weinberg  <zack@codesourcery.com>
6169         * depcomp: Update from automake CVS.  Add 'ia64hp' stanza.
6170         In 'cpp' stanza, support '#line' as well as '# '.
6172 2005-06-07  Hans-Peter Nilsson  <hp@axis.com>
6174         * configure.in (unsupported_languages): New macro.
6175         <mmix-knuth-mmixware>: Set unsupported_languages.  Name explicit
6176         non-ported target libraries in noconfigdirs.
6177         <cris-*, crisv32-*> Ditto, except for non-aout, non-elf,
6178         non-linux-gnu.  Remove libgcj_ex_libffi.
6179         <lang_frag loop>: Set add_this_lang=no if the language is in
6180         unsupported_languages.
6181         * configure: Regenerate.
6183 2005-06-04  Tobias Schl"uter  <tobias.schlueter@physik.uni-muenchen.de>
6185         * configure.in: Fix typo in handling of --with-mpfr-dir.
6186         * configure: Regenerate.
6188 2005-06-02  Jim Blandy  <jimb@redhat.com>
6190         * config.sub: Add cases for the Renesas m32c.  (This patch has been
6191         accepted into the master sources.)
6193 2005-06-02  Aldy Hernandez  <aldyh@redhat.com>
6194             Michael Snyder  <msnyder@redhat.com>
6195             Stan Cox  <scox@redhat.com>
6197         * configure.in: Set noconfigdirs for ms1.
6199         * configure: Regenerate.
6201 2005-05-25  Paolo Bonzini  <bonzini@gnu.org>
6203         * Makefile.tpl (stage[+id+]-start): Iterate over target module as well.
6204         (Dependencies): Consider target modules for bootstrap dependencies.
6205         Make target bootstrap modules depend on each stage's gcc.
6206         * Makefile.in: Regenerate.
6208 2005-05-20  Paolo Bonzini  <bonzini@gnu.org>
6210         * Makefile.def (configure-gcc): Depend on binutils having been built.
6211         (all-gcc): No need to do it here.
6212         * Makefile.in: Regenerate.
6214 2005-05-19  Paul Brook  <paul@codesourcery.com>
6216         * configure.in: Rewrite misleading error message when requested
6217         language cannot be built.
6218         * configure: Regenerate.
6220 2005-05-15  Daniel Jacobowitz  <dan@codesourcery.com>
6222         * ylwrap: Import from Automake 1.9.5.
6224 2005-05-04  Mike Stump  <mrs@apple.com>
6226         * configure.in: Always pass --target to target configures as
6227         otherwise rebuilds that do --recheck will fail.
6228         * configure: Rebuilt.
6230 2005-05-04  Paolo Bonzini  <bonzini@gnu.org>
6232         * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Rename from
6233         STAGE_HOST_EXPORTS.
6234         (configure, all): Add bootstrap support.
6235         (Host modules, target modules): Pass post-stage1 flags and exports.
6236         (Top-level bootstrap): Remove bootstrap rules, expanded elsewhere.
6237         * Makefile.in: Regenerate.
6239 2005-04-29  Paolo Bonzini  <bonzini@gnu.org>
6241         Sync from gcc:
6243         2005-04-22  Bernd Schmidt  <bernd.schmidt@analog.com>
6245         * config.sub: Update from master copy.
6247         2005-04-19  Hans-Peter Nilsson  <hp@axis.com>
6249         * configure.in <crisv32-*-*, cris-*-*>: New local variable
6250         libgcj_ex_libffi.  Have specific match for *-*-linux*.  Separate
6251         matches for "*-*-aout" and "*-*-elf".  Don't disable libffi for
6252         "*-*-elf" and "*-*-linux*".
6253         * configure: Regenerate.
6255 2005-04-06  Paolo Bonzini  <bonzini@gnu.org>
6257         * Makefile.tpl (BUILD_CONFIGARGS): Include --with-build-subdir.
6258         (TARGET_CONFIGARGS): Include --with-target-subdir.
6259         (configure, all): New macros.  Use them throughout.
6261 2005-04-05  Paolo Bonzini  <bonzini@gnu.org>
6263         * Makefile.tpl: Sync with gcc.
6264         * Makefile.in: Regenerate.
6266 2005-03-30  J"orn Rennecke <joern.rennecke@st.com>
6268         * config/mh-mingw32: Delete.
6269         * configure.in: Don't use it.
6270         * configure: Regenerate.
6272 2005-03-31  Paolo Bonzini  <bonzini@gnu.org>
6274         * Makefile.def (bfd, opcodes, libstdc++-v3, libmudflap): Set lib_path.
6275         * Makefile.tpl (SET_LIB_PATH, REALLY_SET_LIB_PATH): Remove.
6276         (HOST_EXPORTS, STAGE_HOST_EXPORTS, TARGET_EXPORTS): Set $(RPATH_ENVVAR).
6277         (HOST_LIB_PATH): Generate from Makefile.def.
6278         (TARGET_LIB_PATH): Likewise.
6279         (Old bootstrap targets): Include TARGET_LIB_PATH into RPATH_ENVVAR.
6280         * Makefile.in: Regenerate.
6281         * configure.in (set_lib_path, SET_LIB_PATH, SET_GCC_LIB_PATH): Remove.
6282         (RPATH_ENVVAR): Include Darwin case.
6283         * configure: Regenerate.
6285 2005-03-25  Paolo Bonzini  <bonzini@gnu.org>
6287         * configure.in (RPATH_ENVVAR): Set to DYLD_LIBRARY_PATH on Darwin.
6288         * configure: Regenerate.
6290 2005-03-21  Zack Weinberg  <zack@codesourcery.com>
6292         * Makefile.def: Remove libstdcxx_incdir, libsubdir, gxx_include_dir,
6293         gcc_version, and gcc_version_trigger from set of flags to pass.
6294         * Makefile.tpl: Remove definitions of above variables.
6295         (config.status): Remove dependency on $(gcc_version_trigger).
6296         * Makefile.in: Regenerate.
6297         * configure.in: Do not reference config/gcc-version.m4 nor
6298         config/gxx-include-dir.m4.  Do not invoke TL_AC_GCC_VERSION nor
6299         TL_AC_GXX_INCLUDE_DIR.  Do not set gcc_version_trigger.
6300         * configure: Regenerate.
6302 2005-03-16  Manfred Hollstein  <manfred.h@gmx.net>
6303             Andrew Pinski <pinskia@physics.uc.edu>
6305         * Makefile.tpl (check-[+module+]): Fix shell statement inside if ... fi.
6306         * Makefile.in: Regenerate.
6308 2005-03-01  Alexandre Oliva  <aoliva@redhat.com>
6310         PR libgcj/20160
6311         * ltmain.sh: Avoid creating archives with components that have
6312         duplicate basenames.
6314 2005-02-28  Andrew Pinski  <pinskia@physics.uc.edu>
6316         PR bootstrap/20250
6317         * Makefile.tpl (HOST target installs): Fix copy and pasto, use install
6318         instead of check.
6319         * Makefile.in: Regenerate.
6321 2005-02-28  Paolo Bonzini  <bonzini@gnu.org>
6323         Sync from gcc.
6325         2005-02-28  Paolo Bonzini  <bonzini@gnu.org>
6327         PR bootstrap/17383
6328         * Makefile.def (target_modules): Remove "stage", now unnecessary.
6329         * Makefile.tpl (HOST_SUBDIR): New substitution.
6330         (STAGE_HOST_EXPORTS, EXPECT, HOST_LIB_PATH, USUAL_AR_FOR_TARGET,
6331         USUAL_AS_FOR_TARGET, USUAL_DLLTOOL_FOR_TARGET, USUAL_GCC_FOR_TARGET,
6332         USUAL_LD_FOR_TARGET, USUAL_NM_FOR_TARGET, USUAL_OBJDUMP_FOR_TARGET,
6333         USUAL_RANLIB_FOR_TARGET, USUAL_WINDRES_FOR_TARGET): Use it.
6334         (Host modules, Bootstrapped modules): Use it.
6335         (Build modules, Target modules): Do not create symlink trees,
6336         always configure out-of-srcdir.
6337         (distclean): Try removing $(host_subdir) with rm before using rm -rf.
6338         * configure.in (FLAGS_FOR_TARGET, CC_FOR_TARGET, GCJ_FOR_TARGET,
6339         GFORTRAN_FOR_TARGET, CXX_FOR_TARGET, RAW_CXX_FOR_TARGET): Use
6340         $(HOST_SUBDIR).  Create a symlink for host_subdir.
6342         * Makefile.in: Regenerate.
6343         * configure: Regenerate.
6345         Merged from libada-gnattools-branch:
6346         2004-11-28  Nathanael Nerode  <neroden@gcc.gnu.org>
6348         * Makefile.def: Add gnattools as a module, depending on target-libada.
6349         * Makefile.in: Regenerate.
6350         * configure.in: Include gnattools in host_tools; disable it if ada
6351         is disabled.
6352         * configure: Regenerate.
6354 2005-02-23  Nick Clifton  <nickc@redhat.com>
6356         * configure: Regenerate.
6358 2005-02-22  Paul Schlie  <schlie@comcast.net>
6360         * configure.in: Allow darwin targeted ports to build tk, itcl and
6361         libgui.
6363 2005-02-21  Eric Botcazou  <ebotcazou@libertysurf.fr>
6365         PR libgcj/10353
6366         * configure.in (noconfigdirs) <sparc-*-solaris2.[0-6]>: Add libgcj.
6367         * configure: Regenerate.
6369 2005-02-08  Andrew Cagney  <cagney@gnu.org>
6371         * MAINTAINERS: Delete reference to dejagnu/ and mmalloc/ from the
6372         gdb/ section.  Update GDB's URL.
6374 2005-01-31  Andrew Cagney  <cagney@gnu.org>
6376         * gettext.m4: Only set ENABLE_NLS when gettext is present.
6378 2005-01-29  Hans-Peter Nilsson  <hp@axis.com>
6380         * configure.in (noconfigdirs) <crisv32-*-*>: Match like cris-*-*.
6381         <crisv32-*-*, cris-*-*>: Only disable target-newlib and
6382         target-libgloss when not *-*-elf and *-*-aout.
6383         * configure: Regenerate.
6385 2005-01-27  Andrew Cagney  <cagney@gnu.org>
6387         * gettext.m4: Don't use NONE as a default for CATOBJEXT.
6389 2005-01-24  Andrew Cagney  <cagney@gnu.org>
6391         * gettext.m4: Only fall back to ../intl/ when it's present.
6393 2005-01-17  Kelley Cook  <kcook@gcc.gnu.org>
6395         * install-sh, config.sub: Import from upstream.
6397 2005-01-17  Kelley Cook  <kcook@gcc.gnu.org>
6399         PR bootstrap/18222
6400         * Makefile.def: Pass CPPFLAGS_FOR_TARGET.
6401         * Makefile.tpl: Define target CPPFLAGS on CPPFLAGS_FOR_TARGET.
6402         * Makefile.in: Regenerate.
6404 2005-01-03  Paolo Bonzini  <bonzini@gnu.org>
6406         Revert 2004-12-28 Makefile changes, a better fix will be
6407         applied to mainline and src after GCC 4.0 branches.
6409 2004-12-28  Paolo Bonzini  <bonzini@gnu.org>
6411         PR bootstrap/17383
6413         * Makefile.def (target_modules): Remove stage parameter,
6414         it is always true now.
6415         * Makefile.tpl (configure-build-[+module+],
6416         configure-target-[+module+]): Always build symlink tree
6417         for the directory and for include.  BUILD_SUBDIR and
6418         TARGET_SUBDIR cannot be . anymore.
6419         * Makefile.in: Regenerate.
6421 2004-12-25  David Edelsohn  <edelsohn@gnu.org>
6423         Revert 2004-12-08 Makefile changes.
6425 2004-12-16  Andrew Stubbs  <andrew.stubbs@st.com>
6427         * configure.in (sh64-*-*): Reenable gprof.
6428         * configure: Regenerate.
6430 2004-12-09  Jim Blandy  <jimb@redhat.com>
6432         * MAINTAINERS: List 'depcomp' as part of automake.
6434 2004-12-08  David Edelsohn  <edelsohn@gnu.org>
6436         * Makefile.def (flags_to_pass): Add PICFLAG_FOR_TARGET.
6437         * Makefile.tpl (EXTRA_HOST_FLAGS): Add PICFLAG.
6438         (EXTRA_TARGET_FLAGS): Add PICFLAG.
6439         * Makefile.in: Regenerate.
6441 2004-12-07  Matt Kraai  <kraai@ftbfs.org>
6443         * Makefile.tpl: Generate normal dependencies if the LHS module is
6444         not bootstrapped.
6445         * Makefile.in: Regenerate.
6447 2004-12-03  Richard Sandiford  <rsandifo@redhat.com>
6449         * configure.in: Include config/gxx-include-dir.m4.  Use
6450         TL_AC_GXX_INCLUDE_DIR.  Remove some now-redundant AC_SUBSTs.
6451         * configure: Regenerate.
6453 2004-12-03  Richard Sandiford  <rsandifo@redhat.com>
6455         * config.if: Delete.
6456         * configure.in: Set libstdcxx_incdir directly.
6457         * configure: Regenerate.
6458         * MAINTAINERS: Remove mention of config.if.
6459         * src-release (DEVO_SUPPORT): Remove config.if.
6461 2004-12-02  Eric Christopher  <echristo@redhat.com>
6463         * Makefile.tpl (clean-target-libgcc): Add stmp-dirs to list
6464         of things to remove.
6465         * Makefile.in: Regenerate.
6467 2004-12-02  Richard Sandiford  <rsandifo@redhat.com>
6469         * configure.in: Clear gcc_version_trigger if the file doesn't exist.
6470         * configure: Regenerate.
6472 2004-12-02  Richard Sandiford  <rsandifo@redhat.com>
6474         * configure.in: Include config/gcc-version.m4.  Use TL_AC_GCC_VERSION
6475         to set gcc_version_trigger.  Remove some now-redundant AC_SUBSTs.
6476         * configure: Regenerate.
6478 2004-11-26  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
6480         * configure.in (hppa*-*-linux*): Don't add libgcj to noconfigdirs.
6481         (hppa*64*-*-*): Delete incorrect comment.
6482         * configure: Rebuilt.
6484 2004-11-15  Kelley Cook  <kcook@gcc.gnu.org>
6486         * install-sh, compile: Import from automake.
6488 2004-11-15  Kelley Cook  <kcook@gcc.gnu.org>
6490         * config.guess, config.sub:  Import from savannnah.
6492 2004-11-12  Mike Stump  <mrs@apple.com>
6494         * Makefile.def: Add html support.
6495         * Makefile.tpl: Likewise.
6496         * Makefile.in: Regenerate.
6498 2004-11-11  Geoffrey Keating  <geoffk@apple.com>
6500         PR 18423
6501         * configure.in: Remove all instances of build-fixincludes from
6502         noconfigdirs.
6503         (build_configargs): Supply --target to subdirectories.
6504         * configure: Regenerate.
6506         * Makefile.def: Make gcc install depend on fixincludes install.
6507         * Makefile.in: Regenerate.
6509 2004-11-08  Hans-Peter Nilsson  <hp@bitrange.com>
6511         * configure.in (noconfigdirs) [mmix-*-*]: Disable
6512         target-libgfortran.
6513         * configure: Regenerate.
6515 2004-11-07  David Edelsohn  <edelsohn@gnu.org>
6517         * config-ml.in: Pass FCFLAGS for multilibs, handle GFORTRAN
6518         like CC.
6520 2004-11-05  Paolo Bonzini  <bonzini@gnu.org>
6522         * Makefile.def (host fixincludes): Specify missing targets.
6523         * Makefile.in: Regenerate.
6525 2004-11-04  H.J. Lu  <hongjiu.lu@intel.com>
6527         PR other/17783
6528         * configure.in: Set up LD_LIBRARY_PATH by default for gcc.
6529         * configure: Regenerated.
6531 2004-11-04  Daniel Jacobowitz  <dan@debian.org>
6533         * configure.in (arm-*-oabi*, thumb-*-oabi*): Remove.
6534         * configure: Regenerated.
6536 2004-10-28  Eric B. Weddington  <ericw@evcohs.com>
6538         PR target/18151
6539         * configure.in (case ${target}): Do not build fixincludes for avr.
6540         * configure: Regenerated.
6542 2004-10-26  Paolo Bonzini  <bonzini@gnu.org>
6544         * configure.in (case ${target}): Do not build fixincludes
6545         on platforms where it is not used.
6546         * configure: Regenerated.
6548 2004-10-23  Daniel Jacobowitz  <dan@debian.org>
6550         * configure.in: Use an absolute path to install-sh.
6551         * configure: Regenerated.
6553 2004-10-19  Andrew Cagney  <cagney@gnu.org>
6555         * src-release (do-djunpack, do-md5sum): Install the generated file
6556         directly into the proto-toplev/ directory.
6558 2004-10-19  Andrew Cagney  <cagney@gnu.org>
6560         * src-release (GDB_SUPPORT_DIRS): Remove utils and intl.
6562 2004-10-12  Kelley Cook  <kcook@gcc.gnu.org>
6564         * configure.in (*-*-cygwin*): Supress warning if newlib not present.
6565         * configure: Regenerate.
6567 2004-10-06  Paolo Bonzini  <bonzini@gnu.org>
6569         Fix wrong conflict resolution in:
6571         2004-08-16  Paolo Bonzini  <bonzini@gnu.org>
6573         * Makefile.in: Regenerate.
6574         * Makefile.tpl (Autogenerated `all-*' targets): Invoke $(TARGET-*)
6575         in the recursive `make', instead of hardwiring `all'.
6576         (Autogenerated TARGET-* variables): New.
6578 2004-10-05  Ulrich Weigand  <uweigand@de.ibm.com>
6580         Merged from GCC / libtool upstream:
6581         2004-10-02  P.J. Darcy  <darcypj@us.ibm.com>
6582         * ltcf-c.sh (tpf*): Add ld_shlibs=yes.
6583         * ltcf-cxx.sh (tpf*): Likewise.
6584         * ltconfig (tpf*): Add TPF OS configuration support.
6586 2004-09-30  Tomer Levi  <Tomer.Levi@nsc.com>
6588         * configure.in: Enable target-libgloss for crx-*-*.
6589         * configure: Regenerate.
6591 2004-09-24  Michael Roth  <mroth@nessie.de>
6593         * configure.in (--without-headers): Add missing double quotes.
6594         * configure: Regenerate.
6596 2004-09-24  Kelley Cook <kcook@gcc.gnu.org>
6598         * ylwrap: Revert to previous version.
6600 2004-09-23  H.J. Lu  <hongjiu.lu@intel.com>
6602         PR bootstrap/17369
6603         * Makefile.tpl (REALLY_SET_LIB_PATH): Add @SET_GCC_LIB_PATH@.
6604         (HOST_EXPORTS]): Add @SET_GCC_LIB_PATH@. Set and export
6605         SET_GCC_LIB_PATH_CMD.
6606         (BASE_TARGET_EXPORTS): Likewise.
6607         * Makefile.in: Regenerated.
6609         * configure.in (SET_GCC_LIB_PATH): Set and substitute.
6610         * configure: Regenerated.
6612 2004-09-23  Kelley Cook  <kcook@gcc.gnu.org>
6614         * config.guess: New upstream version
6615         * compile, depcomp, install-sh, ylwrap: Likewise.
6617 2004-09-19  Roger Sayle  <roger@eyesopen.com>
6619         * config/mh-x86omitfp: New host makefile fragment.  Add
6620         -fomit-frame-pointer to the default BOOT_CFLAGS.
6621         * configure.in: Use it to speed up bootstrap on some IA-32 hosts.
6622         * configure: Regenerate.
6624 2004-09-15  Andrew Pinski  <pinskia@physics.uc.edu>
6626         PR target/11572
6627         * configure.in (*-*-darwin*): Renable libobjc.
6628         * configure: Regenerate.
6630 2004-09-09  Daniel Berlin  <dberlin@dberlin.org>
6632         * Makefile.def: Remove libbanshee.
6633         * Makefile.tpl: Ditto.
6634         * configure.in: Ditto.
6635         * Makefile.in: Regen.
6636         * configure: Ditto.
6638 2004-09-07  Paolo Bonzini  <bonzini@gnu.org>
6640         * missing: Import latest version from master repository.
6642 2004-09-04  Nick Clifton  <nickc@redhat.com>
6644         * config.sub: Import latest version from master repository.
6645         * config.guess: Likewise.
6646         This includes these changes:
6648         2004-08-27  Hans-Peter Nilsson  <hp@axis.com>
6650         * config.sub: Handle crisv32, alias etraxfs.
6651         * config.guess (crisv32:Linux:*:*): Handle.
6653         2004-08-13  Brad Smith  <brad@comstyle.com>
6655         * config.guess (*:OpenBSD:*:*): Remove defunct MIPS machines.
6656         (sgi:OpenBSD:*:*): Emit mips64, not mipseb.
6658         2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
6660         * config.guess (*:Darwin:*:*): If uname -p reports "unknown",
6661         assume the processor is a powerpc.  This is because coreutils
6662         uname (at least versions 4.5.7 through 5.2.1) outputs "unknown"
6663         in this case, due to a MacOS X bug that causes
6664         sysctl ((int[]) {CTL_HW, HW_MACHINE_ARCH}, 2, buffer, &bufsize, 0, 0)
6665         to return a negative number.
6666         Problem reported by Petter Reinholdtsen in:
6667         http://lists.gnu.org/archive/html/bug-gnu-utils/2003-02/msg00201.html
6669         2004-07-19  Ben Elliston  <bje@gnu.org>
6671         * config.guess (S7501:*:4.0:3.0): Handle NCR System V UNIX machine.
6673         2004-06-24  Ben Elliston  <bje@gnu.org>
6675         * config.guess: Update copyright years.
6676         * config.sub: Likewise.
6678         2004-06-22  Robert Millan  <robertmh@gnu.org>
6680         * config.guess (*:FreeBSD:*:*): Remove check for glibc (unneeded
6681         since GNU/kFreeBSD systems match *:GNU/*:*:* instead).
6683         2004-06-22  Stanley F. Quayle <stan@stanq.com>
6685         * config.guess (*:*VMS:*:*): New entry. Replaces
6686         Alpha:OpenVMS:*. Recognize and advertise all VMS flavors as dec
6687         manufacturer.
6689         2004-06-22  Ben Elliston  <bje@gnu.org>
6691         * config.guess: Cray fixes from Wendy Palm <wendyp@cray.com>.
6692         * config.sub: Likewise.
6694         2004-06-22  Ben Elliston  <bje@gnu.org>
6696         Reported by Hans-Peter Nilsson <hp@bitrange.com>:
6697         * config.sub: Correctly handle mmix-knuth and mmix-knuth-mmixware.
6699         2004-06-11  Ben Elliston  <bje@gnu.org>
6701         * config.guess (pegasos:OpenBSD:*:*): Remove.
6703         2004-06-11  Ben Elliston  <bje@gnu.org>
6705         From Wouter Verhelst <wouter@grep.be>:
6706         * config.guess (M68*:*:R3V[5678]:*): Detect R3V8.
6708         2004-06-11  Ben Elliston  <bje@gnu.org>
6710         * config.guess (luna88k:OpenBSD:*:*): New.
6712         2004-03-12  Kazuhiro Inaoka  <inaoka.kazuhiro@renesas.com>
6714         * config.guess (m32r*:Linux:*:*): New case.
6715         * config.sub: Handle m32rle.
6717         2004-03-12  Ben Elliston  <bje@wasabisystems.com>
6719         From Jens Petersen  <petersen@redhat.com>:
6720         * config.sub: Handle sparcv8.
6722         2004-03-03  Ben Elliston  <bje@wasabisystems.com>
6724         From Tom Smith <smith@cag.lkg.hp.com>:
6725         * config.guess: Version suffixes are equally significant on Tru64
6726         V4.* and V5.*, so do not ignore them on V5.*.  Handle a version
6727         prefix of "P" (patched kernel).
6729         2004-02-23  Tal Agmon  <Tal.Agmon@nsc.com>
6731         * config.sub: Add support for National Semiconductor CRX target.
6733 2004-09-03  Jan Beulich  <jbeulich@novell.com>
6735         * configure.in: Remove target-libstdc++-v3 from noconfigdirs for
6736         *-*-netware, but add target-libmudflap.
6737         Consolidate *-*-netware targets (of which really only i?86 exists)
6738         into a single entry.
6739         * configure: Likewise.
6741 2004-09-01  Paolo Bonzini  <bonzini@gnu.org>
6743         * Makefile.tpl (sorry): Remove.
6744         (clean-stage[+id+], clean-stage[+id+]-module): New targets.
6745         (cleanstrap targets): Depend on distclean, not distclean-stage1.
6746         (do-clean): Clean per-stage directories too.
6747         (do-distclean): Run distclean-stage1 too.
6748         (.NOTPARALLEL): Enable during toplevel bootstrap.
6749         (stage[+id+]-bubble): Enable parallel execution during
6750         the recursive invocation.
6751         * Makefile.in: Regenerate.
6753         Sync from gcc (moving the Makefile.in change to Makefile.tpl):
6755         2004-08-31  Robert Bowdidge <bowdidge@apple.com>
6757         * Makefile.in: Move BOOT_CFLAGS above host makefile fragment include.
6758         * configure.in: add test for powerpc-*-darwin* to specify makefile frag
6759         * configure: regenerate
6760         * config/mh-ppc-darwin: create file, override BOOT_CFLAGS for
6761         -mdynamic-no-pic
6763 2004-08-31  Paolo Bonzini  <bonzini@gnu.org>
6765         * Makefile.tpl: Move BOOT_CFLAGS above host makefile fragment
6766         include.
6767         * configure.in: Fix indentation.
6768         * configure: Regenerate.
6770 2004-08-31  Paolo Bonzini  <bonzini@gnu.org>
6772         * Makefile.def (build_modules): Add fixincludes.
6773         (dependencies): Make gcc depend on fixincludes.
6774         * configure.in (build_tools): Add fixincludes.
6775         (build_configdirs): Always include build_libs.
6776         * Makefile.in: Regenerate.
6777         * configure: Regenerate.
6779 2004-08-30  Paolo Bonzini  <bonzini@gnu.org>
6781         * Makefile.def (bootstrap stages): Add 'lean' parameter.
6782         * Makefile.tpl (configure-stageN-*, all-stageN-*): Turned into
6783         phony targets; do not generate timestamp files.
6784         (distclean-stageN): Remove references to their timestamp files.
6785         (restageN, touch-stageN): Remove.
6786         (stageN-bubble): Rewritten.
6787         (compare): Support lean bootstraps.
6788         * Makefile.in: Regenerate.
6790         * configure.in: Only warn when bootstrapping but
6791         build != host or build != target.  Support lean bootstraps.
6792         * configure: Regenerate.
6794         Sync from gcc:
6795         2004-08-26  Phil Edwards  <phil@codesourcery.com>
6797         * configure.in:  Give a better error message if GMP/MPFR are missing
6798         and a language needing them has been requested.
6799         * configure:  Regenerated.
6801         2004-08-25  Phil Edwards  <phil@codesourcery.com>
6803         * configure.in:  Print a list of available language front-ends if
6804         a requested one is missing.  Tidy stray tab characters.
6805         * configure:  Regenerated.
6807 2004-08-17  Paolo Bonzini  <bonzini@gnu.org>
6809         * Makefile.in: Regenerate.
6810         * configure: Regenerate.
6812         * Makefile.def (bootstrap-stage): Rename extra_*_flags to
6813         stage_*_flags.
6814         * Makefile.tpl (configure-[+module+], all-[+module+]): Exit
6815         for bootstrapped modules if toplevel bootstrap is going.
6816         (GCC bootstrap): Generate per-stage targets for all bootstrapped
6817         modules.  Adjust for changes in Makefile.def.  Enable several
6818         rules even in non-bootstrap mode, just to avoid peppering the
6819         template with unnecessary "@if/@endif gcc-bootstrap" pairs.
6820         (stage-[+prev+]-bubble): Remove.
6822         * Makefile.def (Dependencies): Depend on all-build-bison,
6823         all-build-flex, all-build-byacc, all-build-texinfo, rather
6824         than the host variations.
6825         * Makefile.tpl (BUILD_DIR_PREFIX): Remove.  Replace throughout
6826         with BUILD_SUBDIR.
6827         (BISON): Update for recent Bisons.
6828         (YACC): Fix typo.
6829         (cross): Depend on all-build.
6830         (all): Do not depend on all-build.
6831         (prebootstrap): Remove.
6832         (dep-kind): Accept separate prefixes for MODULE and ON variables.
6833         (Prebootstrap dependencies): Add them to the per-stage targets
6834         and to all-prebootstrap.
6835         * configure.in (build_configdirs): Always enable build_tools.
6836         (BUILD_DIR_PREFIX): Remove.
6838         * Makefile.def (gcc): Add target variable.
6839         (gdb, expect, guile, tk, tix): Replace with_x with extra_make_flags.
6840         * Makefile.tpl (Autogenerated `all-*' targets): Invoke $(TARGET-*)
6841         in the recursive `make', instead of hardwiring `all'.
6842         (Autogenerated TARGET-* variables): New.
6844 2004-08-17  Robert Millan  <robertmh@gnu.org>
6846         * configure.in: In noconfigdirs check, match GNU/k*BSD with GNU/Linux
6847         (instead of FreeBSD).
6848         * configure: Regenerate.
6850 2004-08-12  Nathanael Nerode  <neroden@gcc.gnu.org>
6852         * Makefile.def, configure.in, src-release: Remove useless, bogus
6853         references to tix.
6854         * Makefile.in, configure: Regenerate.
6856         * src-release: Stop distributing mmalloc with gdb (which doesn't
6857         use it).
6858         * Makefile.def: GDB doesn't depend on mmalloc anymore.
6859         * Makefile.in: Regenerate.
6861 2004-08-09  Mark Mitchell  <mark@codesourcery.com>
6863         * configure.in (arm*-*-eabi*): New target.
6864         * configure: Regenerate.
6866 2004-08-01  Robert Millan  <robertmh@gnu.org>
6868         * configure.in: Turn mt-linux into mt-gnu. Use mt-gnu and enable
6869         libmudflap for all GNU-based systems (with Glibc).
6870         * configure: Regenerate.
6872 2004-08-06  Paolo Bonzini  <bonzini@gnu.org>
6874         * Makefile.def (bfd, opcodes, gcc, zlib): Mark as bootstrap module.
6875         (bison, byacc, flex, texinfo): Do not mark as bootstrap module.
6876         (Dependencies): New section.
6877         * Makefile.tpl (Dependencies): Generate from Makefile.def.
6878         (configure-target-[+module+]): Depend on maybe-all-gcc
6879         (all-prebootstrap): New name of all-bootstrap.  Changed throughout.
6880         (toplevel profiledbootstrap): Fix dependencies.
6881         * Makefile.in: Regenerate.
6883 2004-08-03  Mark Mitchell  <mark@codesourcery.com>
6885         * configure.in (arm*-*-symbianelf*): Add ${libgcj} and
6886         target-libiberty to noconfigdirs.
6888 2004-08-03  Paul Brook  <paul@codesourcery.com>
6890         * configure.in: Check for MPFR as well as GMP.
6891         * configure: Regenerate.
6893 2004-08-03 Paolo Bonzini <bonzini@gnu.org>
6895         * Makefile.def (host-modules): Add gcc.
6896         * Makefile.in: Regenerate.
6897         * Makefile.tpl (sorry): New rule.
6898         (configure-host, all-host, [+make_target+]-host, do-check,
6899         install-host): Do not add gcc as a special case.
6900         (host modules): Add a small special-casing for gcc.  Export
6901         extra_make_flags through the environment.
6902         (maybe-configure-gcc, configure-gcc, maybe-all-gcc, all-gcc,
6903         maybe-check-gcc, check-gcc, maybe-install-gcc, install-gcc,
6904         other recursive targets for gcc): Remove.
6906         (all, do-[+make_target+], do-check): Wrap between unstage and stage.
6907         (stage, unstage): New rules.
6908         (stage[+id+]-start, stage[+id+]-end, [+compare-target+],
6909         distclean-stage[+id+]): Use stage_current.
6910         ([+bootstrap-target+], profiledbootstrap): Do not invoke manually
6911         the stage*-start rules.
6913 2004-07-19  Robert Millan  <robertmh@gnu.org>
6915         Synced from gcc:
6917         2004-04-26  Robert Millan  <robertmh@gnu.org>
6919         Add patches from libtool CVS.
6920         * libtool.m4: Add kfreebsd*-gnu and knetbsd*-gnu.
6921         * ltconfig: Likewise.
6922         * ltcf-c.sh: Likewise.
6923         * ltcf-cxx.sh: Likewise.
6924         * ltcf-gcj.sh: Likewise.
6926 2004-07-12  Paolo Bonzini  <bonzini@gnu.org>
6928         * configure.in: Add noconfigdirs for crx-*-*.
6929         * configure: Regenerate.
6931 2004-07-12  Paolo Bonzini  <bonzini@gnu.org>
6933         Synced from gcc:
6935         2004-07-09  Loren J. Rittle <ljrittle@acm.org>
6937         * configure.in: Build libmudflap by default on FreeBSD.
6938         * configure: Regenerated.
6940         2004-07-09  Mark Mitchell  <mark@codesourcery.com>
6942         * configure.in: Do not build libmudflap by default on non-GNU/Linux
6943         systems.
6944         * configure: Regenerated.
6946         2004-07-08 John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
6948         PR target/16344
6949         * Makefile.tpl (profiledbootstrap): Build runtime libraries with
6950         feedback based compiler.
6951         * Makefile.in: Rebuilt.
6953         2004-07-05  Phil Edwards  <phil@codesourcery.com>
6955         * configure.in:  Do not prepend $srcdir to /dev/null in
6956         makefile fragments.
6957         * configure:  Regenerate.
6959 2004-07-08  Alexandre Oliva  <aoliva@redhat.com>
6961         * Makefile.def (host_modules): Set bootstrap=true for flex.
6962         * Makefile.tpl (all-gcc): Depend on texinfo and flex.
6963         * Makefile.in: Rebuilt.
6965 2004-07-01  Paolo Bonzini  <bonzini@gnu.org>
6967         * Makefile.def (build_modules): Add bison, byacc, flex,
6968         m4, texinfo.
6969         (flags_to_pass): Add FLEX.
6970         * Makefile.tpl (BUILD_DIR_PREFIX, BASE_EXPORTS): New.
6971         (BUILD_EXPORTS, HOST_EXPORTS, BASE_TARGET_EXPORTS): Include it.
6972         (DEFAULT_YACC, USUAL_YACC, DEFAULT_LEX, USUAL_LEX, DEFAULT_M4,
6973         DEFAULT_MAKEINFO): Remove.
6974         (CONFIGURED_YACC, CONFIGURED_FLEX, CONFIGURED_BISON,
6975         CONFIGURED_LEX, CONFIGURED_M4, CONFIGURED_MAKEINFO): Substitute.
6976         (YACC, FLEX, BISON, LEX, M4, MAKEINFO): Define to look into
6977         objdir or else use configured tool.
6978         (all-build): New.
6979         (all): Depend on it.
6980         (Build module dependencies): Add.
6981         * Makefile.in: Regenerate.
6982         * configure.in: Better support for multiple build modules,
6983         matching what is done for host/target modules.  Do not look
6984         for "plausible" locations of build tools if Canadian cross.
6985         Use autoconf's AC_PROG_CC to find a C compiler.  Define
6986         BUILD_DIR_PREFIX.  Look for flex, makeinfo and m4.
6987         * configure: Regenerate.
6989 2004-06-22  Paolo Bonzini  <bonzini@gnu.org>
6991         * Makefile.tpl (HOST_EXPORTS): Fix pasto.
6992         * Makefile.in: Regenerate.
6994 2004-06-22  Paolo Bonzini  <bonzini@gnu.org>
6996         * Makefile.tpl (configure-build-[+module+],
6997         configure-[+module+], configure-target-[+module+]): Pass
6998         [+extra_configure_args+].
6999         (all-build-[+module+], all-[+module+], check-[+module+],
7000         install-[+module+], [+make_target+]-[+module+],
7001         all-target-[+module+], check-target-[+module+],
7002         install-target-[+module+], [+make_target+]-target-[+module+]):
7003         Pass [+extra_make_args+].
7004         (HOST_EXPORTS): Include the former GCC_HOST_EXPORTS.
7005         (GCC_HOST_EXPORTS): Remove.
7006         (configure-gcc, all-gcc, GCC_STRAP_TARGETS, profiledbootstrap,
7007         cross, check-gcc, check-gcc-c++, install-gcc,
7008         gcc-no-fixedincludes, [+make_target+]-gcc, stage[+id+]-bubble):
7009         Replace GCC_HOST_EXPORTS with HOST_EXPORTS.
7010         * Makefile.in: Regenerate.
7012 2004-06-21  Christopher Faylor  <cgf@alum.bu.edu>
7014         * configure.in: Check for srcdir/winsup rather than build directory
7015         winsup.
7016         * configure: Regenerate.
7018 2004-06-17  Corinna Vinschen  <vinschen@redhat.com>
7020         * configure.in: Don't build Cygwin native newlib if winsup
7021         directory is missing.  Emit warning instead.
7022         * configure: Regenerate.
7024 2004-06-09  Paolo Bonzini  <bonzini@gnu.org>
7026         * Makefile.tpl (touch-stage[+id+]): New.
7027         (restage[+prev+]): Depend on touch-stage[+id+].
7029         * Makefile.tpl (RECURSE_FLAGS_TO_PASS): New.
7030         Use it throughout.
7032         * Makefile.def: Add profile and feedback bootstrap stages.
7033         Remove next field from bootstrap stages.
7034         * Makefile.tpl (LN, LN_S): Substitute.
7035         (stageN-start, stageN-end): Use double-colon rules, to
7036         provide a hook for additional setup commands.
7037         (distclean-stageN-gcc, restageN): Create dependencies from
7038         [+prev+], not from [+next+].
7039         (stageN-bubble): Add commands for successive stages from
7040         [+prev+], using double-colon rules.
7041         (all-stageN-gcc): Fix typo.
7042         (stagefeedback-start, profiledbootstrap): New.
7043         * Makefile.in: Regenerate.
7044         * configure.in: Call ACX_PROG_LN.
7045         * configure: Regenerate.
7047 2004-06-03  Paolo Bonzini  <bonzini@gnu.org>
7049         * configure.in: Fix --enable-bootstrap breakage introduced in trees
7050         without gcc.
7051         * configure: Regenerate.
7053 2004-06-01  Paolo Bonzini  <bonzini@gnu.org>
7055         * Makefile.tpl: Fix typo.
7056         * Makefile.in: Regenerate.
7058 2004-06-01  Paolo Bonzini <bonzini@gnu.org>
7060         * configure.in: Remove new- prefix from toplevel
7061         bootstrap targets.
7062         * configure: Regenerate.
7064 2004-06-01  Paolo Bonzini <bonzini@gnu.org>
7066         Merge this patch from the gcc tree:
7068         2004-05-30  Andreas Jaeger  <aj@suse.de>
7069                     Jim Wilson <wilson@specifixinc.com>
7071         * config-ml.in: Pass FFLAGS and ADAFLAGS for multilibs, handle F77
7072         like CC.
7074 2004-06-01  Paolo Bonzini  <bonzini@gnu.org>
7076         * Makefile.tpl (all.normal): Rename to all.
7077         (all): Replace with a rule to pick the default
7078         target from configure.
7079         (all-gcc, configure-gcc): Use conditionals to
7080         do nothing when toplevel bootstrap is going on.
7081         (GCC directory bootstrap) [gcc-bootstrap]: Disable.
7082         (Toplevel bootstrap) [gcc-no-bootstrap]: Disable.
7083         * configure.in: Support --enable-bootstrap.
7085         * Makefile.def: Remove new- prefix from toplevel
7086         bootstrap targets.
7087         * Makefile.tpl: Likewise.
7089         * Makefile.def: Add bootstrap_stage 4.  Add bootstrap2
7090         target.
7092         * Makefile.tpl (Toplevel bootstrap): Pass $(BASE_FLAGS_TO_PASS)
7093         $(RECURSE_FLAGS) to recursive invocation of make.
7095         * Makefile.in: Regenerate.
7096         * configure: Regenerate.
7098 2004-05-27  Daniel Jacobowitz  <dan@debian.org>
7100         * configure.in: Fix sed invocation for GFORTRAN_FOR_TARGET.
7101         * configure: Regenerate.
7103 2004-05-25  Daniel Jacobowitz  <drow@false.org>
7105         * Makefile.tpl (BUILD_EXPORTS, HOST_EXPORTS, GCC_HOST_EXPORTS)
7106         (STAGE_HOST_EXPORTS, BASE_TARGET_EXPORTS, RAW_CXX_TARGET_EXPORTS)
7107         (NORMAL_TARGET_EXPORTS): New macros.  Use them in all the recursive
7108         targets.
7109         * Makefile.in: Regenerate.
7111 2005-05-24  Paolo Bonzini <bonzini@gnu.org>
7113         * configure.in: Test the ability to symlink directories.
7114         * configure: Regenerate.
7116         * Makefile.def (bootstrap-stage): New definitions.
7117         * Makefile.tpl (configure-stage1-gcc,
7118         configure-stage2-gcc, configure-stage3-gcc,
7119         all-stage1-gcc, all-stage2-gcc, all-stage3-gcc,
7120         new-bootstrap, new-cleanstrap, new-restage1, new-restage2,
7121         new-restage3, compare): Autogenerate, see Makefile.in
7122         entry for behavioral changes.
7123         (distclean-stage1, new-stage1-start, new-stage1-end,
7124         new-stage1-bubble, distclean-stage2, new-stage2-start,
7125         new-stage2-end, new-stage2-bubble, distclean-stage3,
7126         new-stage3-start, new-stage3-end): New autogenerated targets.
7127         (objext, prebootstrap, BOOT_CFLAGS,
7128         POSTSTAGE1_FLAGS_TO_PASS): Move above the autogenerated
7129         targets.
7131         * Makefile.in: Regenerate.
7132         (distclean-stage1, new-stage1-start, new-stage1-end,
7133         new-stage1-bubble, distclean-stage2, new-stage2-start,
7134         new-stage2-end, new-stage2-bubble, distclean-stage3,
7135         new-stage3-start, new-stage3-end): New targets.
7136         (all-stage1-gcc): Move prebootstrap dependency from here...
7137         (configure-stage1-gcc): ...to here.
7138         (new-bootstrap): Use bubble targets.
7139         (new-cleanstrap, new-restage1, new-restage2, new-restage3):
7140         Use per-stage distclean targets.
7141         (configure-stage1-gcc, configure-stage2-gcc,
7142         configure-stage3-gcc, all-stage1-gcc,
7143         all-stage2-gcc, all-stage3-gcc, new-bootstrap):
7144         Use new-stageN-start to prepare the tree.
7146 2004-05-23  Paolo Bonzini  <bonzini@gnu.org>
7148         * Makefile.def (host_modules): add libcpp.
7149         * Makefile.tpl: Add dependencies on and for libcpp.
7150         * Makefile.in: Regenerate.
7151         * configure.in: Add libcpp host module.
7152         * configure: Regenerate.
7154 2004-05-17  Zack Weinberg  <zack@codesourcery.com>
7156         * Makefile.def, Makefile.tpl, configure.in: Remove all mention
7157         of libf2c.
7158         * configure, Makefile.in: Regenerate.
7160 2004-05-13  Diego Novillo  <dnovillo@redhat.com>
7162         Merge from tree-ssa-20020619-branch.
7164         * Makefile.def: Add libbanshee, libmudflap and libgfortran.
7165         * Makefile.tpl (BUILD_CONFIGDIRS): Add libbanshee.
7166         (HOST_GMPLIBS): Define.
7167         (HOST_GMPINC): Define.
7168         (TARGET_LIB_PATH): Add libmudflap.
7169         (GFORTRAN_FOR_TARGET): Define.
7170         (configure-build*): Export GFORTRAN.
7171         (configure-gcc): Export GMPLIBS and GMPINC.
7172         (all-gcc): Add maybe-all-libbanshee.
7173         (configure-target-libgfortran): Define.
7174         * Makefile.in: Regenerate.
7175         * configure.in (host_libs): Add libbanshee.
7176         (target_libraries): Add target-libmudflap and target-libgfortran.
7177         Add --with-libbanshee.
7178         Handle --disable-libmudflap.
7179         (*-*-freebsd*): Use with_gmp.
7180         Add $(libgcj) to noconfigdirs.
7181         * configure: Regenerate.
7182         * depcomp: New file.
7183         * MAINTAINERS: Add tree-ssa maintainers.
7185 2004-04-28  Paolo Bonzini  <bonzini@gnu.org>
7187         * config/acx.m4: Fix fastcompare support for new-bootstrap.
7188         * configure: Regenerate.
7190 2004-04-27  Paolo Bonzini  <bonzini@gnu.org>
7192         Revert:
7193         2004-04-26  Paolo Bonzini  <bonzini@gnu.org>
7195         * Makefile.def (flags_to_pass): Remove *dir variables that
7196         are passed to the modules via TOPLEVEL_CONFIGURE_ARGUMENTS,
7197         as well as prefix and exec_prefix.
7198         * Makefile.in: Regenerate.
7200 2004-04-26  Paolo Bonzini  <bonzini@gnu.org>
7202         * Makefile.def (host_modules): Mark with the bootstrap
7203         flag packages on which gcc depends.
7204         * Makefile.tpl (all-bootstrap): Use it.
7205         * Makefile.in: Regenerate.
7207 2004-04-26  Paolo Bonzini  <bonzini@gnu.org>
7209         * Makefile.def (flags_to_pass): Remove *dir variables that
7210         are passed to the modules via TOPLEVEL_CONFIGURE_ARGUMENTS,
7211         as well as prefix and exec_prefix.
7212         * Makefile.in: Regenerate.
7214 2004-04-26  Paolo Bonzini  <bonzini@gnu.org>
7216         * configure.in: Invoke ACX_PROG_CMP_IGNORE_INITIAL.
7217         * configure: Regenerate.
7218         * config/acx.m4: Mutuate ACX_PROG_CMP_IGNORE_INITIAL from gcc.
7219         * gcc/Makefile.tpl (compare): Use the result of the test.
7220         * gcc/Makefile.in: Regenerate.
7222 2004-04-23  Paolo Bonzini  <bonzini@gnu.org>
7224         * Makefile.tpl (all-stage1-gcc, all-stage2-gcc, all-stage3-gcc):
7225         Always relocate gcc and prev-gcc to the original names, even
7226         if the build fails.
7227         (new-cleanstrap, new-restage1, new-restage2, new-restage3):
7228         New targets.
7230 2004-04-19  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
7232         * configure.in (mips*-*-irix5*): Enable ld.
7233         * configure: Regenerate.
7235 2004-04-15  James E Wilson  <wilson@specifixinc.com>
7237         * Makefile.tpl (configure-[+module+], configure-gcc,
7238         configure-stage1-gcc, configure-stage2-gcc, configure-stage3-gcc):
7239         Set and export LDFLAGS.
7240         * Makefile.in: Regenerate.
7242 2004-04-09  Nathanael Nerode  <neroden@gcc.gnu.org>
7244         PR bootstrap/14871
7245         * Makefile.tpl: If we don't have built-in-tree target tools,
7246         use the ones found by configure rather than hacking around with
7247         program_transform_name.
7248         * configure.in: Give Makefile.tpl the information necessary
7249         to do that.
7250         * Makefile.in: Regenerate.
7251         * configure: Regenerate.
7253 2004-04-06  Nathanael Nerode  <neroden@gcc.gnu.org>
7255         PR bootstrap/14760
7256         * configure.in: When computing baseargs, strip *all* copies of
7257         offending options.  Also, don't match/substitute the trailing space,
7258         so that this actually works when two similar options are separated by
7259         only one space.
7260         * configure: Regenerate.
7262 2004-04-06  David Edelsohn  <edelsohn@gnu.org>
7264         * configure.in (powerpc-*-aix*): Remove target-libada from noconfigdirs.
7265         (rs6000-*-aix*): Same.
7266         * configure: Regenerate.
7268 2004-03-25  Stan Shebs  <shebs@apple.com>
7270         Remove MPW support, no longer used.
7271         * mpw-README, mpw-build.in, mpw-config.in, mpw-configure,
7272         mpw-install: Remove files.
7273         * src-release (DEVO_SUPPORT): Remove names of removed files.
7274         * MAINTAINERS: Likewise.
7276 2004-03-24  Nathanael Nerode  <neroden@gcc.gnu.org>
7278         * Makefile.tpl (top level bootstrap support): Remove now-unneeded
7279         STRICT_WARN, WARN_CFLAGS flags passed down to make.
7280         * Makefile.in: Regenerate.
7282         * configure.in (top level bootstrap support): Rework --enable-werror
7283         to set @stage2_werror_flag@.
7284         * configure: Regenerate.
7285         * Makefile.tpl (top level bootstrap support): Pass
7286         @stage2_werror_flag@ down to configure in stages 2 and 3.
7287         * Makefile.in: Regenerate.
7289 2004-03-23  Nathanael Nerode  <neroden@gcc.gnu.org>
7291         * Makefile.tpl (new-bootstrap): Set CC and CC_FOR_BUILD in configure
7292         for stages 2 and 3 as well as in make.  As a consequence, remove
7293         OUTPUT_OPTION (now detected by configure) from the flags passed down
7294         to make.
7295         * Makefile.in: Regenerate.
7297         * Makefile.tpl (new-bootstrap): Fix typo.
7298         * Makefile.in: Regenerate.
7300 2004-03-22  Nathanael Nerode  <neroden@gcc.gnu.org>
7302         * Makefile.tpl: Rearrange by moving recursive_targets rules
7303         into their proper sections.
7304         * Makefile.tpl (top level bootstrap support): Move disabling
7305         of coverage flags from 'make' to 'configure'; improve comments.
7306         * Makefile.in: Regenerate.
7308         * Makefile.tpl (experimental top level bootstrap) Move stage1
7309         language setting from all- target to configure- target; disable
7310         intermodule optimization in stage 1; prevent gratuitous rebuilds
7311         of stage 1.
7312         * Makefile.in: Regenerate.
7313         * configure.in: Comma-separate stage 1 language list for top
7314         level bootstrap.
7315         * configure: Regenerate.
7317         * Makefile.tpl: Clean up experimental top level bootstrap support:
7318         note known problems; set CONFIG_SHELL; don't set BUILD_CC; relocate
7319         prev-gcc in configure- targets as well as all- targets.
7320         * Makefile.in: Regenerate.
7322 2004-03-17  Paolo Bonzini  <bonzini@gnu.org>
7324         * configure.in: Remove symbolic link section.
7325         * configure: Regenerate.
7326         * Makefile.tpl (links): Remove.
7327         * Makefile.in: Regenerate.
7329 2004-03-15  Paolo Bonzini  <bonzini@gnu.org>
7330             Nathanael Nerode  <neroden@gcc.gnu.org>
7332         * configure.in (DEFAULT_YACC, DEFAULT_M4, DEFAULT_LEX):
7333         Set with AC_CHECK_PROGS.
7334         * configure.in: Fix comment typo from last patch.
7335         * configure: Regenerate.
7337 2004-03-15  Nathanael Nerode  <neroden@gcc.gnu.org>
7339         * Makefile.tpl: Introduce experimental top level bootstrap support.
7340         * Makefile.in: Regenerate.
7341         * configure.in: Introduce support for top level bootstrap.
7342         * configure: Regenerate.
7344 2004-03-12  Eric Botcazou  <ebotcazou@gcc.gnu.org>
7345             Paolo Bonzini  <bonzini@gnu.org>
7347         PR bootstrap/14522
7348         * configure.in: Cope with shells that do not support unquoted ^
7349         * configure: Regenerate.
7351 2004-03-11  Eric Botcazou  <ebotcazou@gcc.gnu.org>
7352             Paolo Bonzini  <bonzini@gnu.org>
7354         PR bootstrap/14522
7355         * configure.in: Cope with shell that do not support nesting
7356         quotes inside quoted backquote substitutions.
7357         * configure: Regenerate.
7359 2004-03-10  Andrew Pinski  <pinskia@physics.uc.edu>
7361         PR bootstrap/14522
7362         * configure.in: Fix escaping of $.
7363         * configure: Regenerate.
7365 2004-03-11  Nathanael Nerode  <neroden@gcc.gnu.org>
7367         * configure: Regenerate.
7369 2004-03-08  Paolo Bonzini  <bonzini@gnu.org>
7371         PR ada/14131
7372         Move language detection to the top level.
7373         * configure.in: Find default values for the tools as
7374         soon as possible.  Disable ada if GNAT is not found.
7375         Emit error message about missing languages.  Expand
7376         --enable-languages=all for the gcc subdirectory.
7378 2004-03-01  Richard Sandiford  <rsandifo@redhat.com>
7380         * configure.in (mips64*-*-linux*): Override mips*-*-linux* case
7381         and disable libgcj.
7382         * configure: Regenerated.
7384 2004-02-28  Nathanael Nerode  <neroden@gcc.gnu.org>
7386         PR bootstrap/7087
7387         * Makefile.tpl: Guard XFOO sed statements better.
7388         * Makefile.tpl: Add dependency for configure-target-libada.
7389         * Makefile.in: Regenerate (incidentally fixes broken
7390         commit when libada-branch was merged).
7392 2004-02-28  Andrew Cagney  <cagney@redhat.com>
7394         * src-release (CVS_NAMES): Define.
7395         (do-tar, do-tar): Prune $(CVS_NAMES).
7397 2004-02-23  Andrew Cagney  <cagney@redhat.com>
7399         * texinfo/texinfo.tex: Update from version 2003-02-03.16 to
7400         2004-02-19.09.
7402 2004-02-19  Nathanael Nerode  <neroden@gcc.gnu.org>
7404         PR bootstrap/11932
7405         * mkinstalldirs, install-sh: Import from automake CVS HEAD.
7407 2004-02-19  Andrew Cagney  <cagney@redhat.com>
7409         * config.guess: Update from version 2003-06-12 to 2004-02-16.
7410         * config.sub: Update from version 2003-06-13 to 2004-02-16.
7412 2004-02-11  David Edelsohn  <edelsohn@gnu.org>
7414         * configure.in (powerpc-*-aix*): Add target-libada to noconfigdirs.
7415         (rs6000-*-aix*): Same.
7416         * configure: Regenerate.
7418 2004-02-11  Kelley Cook  <kcook@gcc.gnu.org>
7420         * configure.in (host): Add in missing $noconfigdirs to defines.
7421         * configure: Regenerate.
7423 2004-02-10  Arnaud Charlet  <charlet@act-europe.fr>,
7424             Nathanael Nerode  <neroden@gcc.gnu.org>
7426         PR ada/6637, PR ada/5911
7427         Merge with libada-branch:
7428         * configure.in, Makefile.tpl, Makefile.def: Add target-libada,
7429         with appropriate dependencies. Add --enable-libada configure switch.
7430         * configure, Makefile.in: Regenerate.
7432 2004-02-05  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
7434         * configure.in: Don't pass --with-stabs on IRIX 5 either.
7435         * configure: Regenerate.
7437 2004-02-02  Jeff Johnston  <jjohnstn@redhat.com>
7439         * COPYING.NEWLIB: Update Red Hat license to 2004.
7441 2004-01-23  DJ Delorie  <dj@redhat.com>
7443         * Makefile.def (target_modules) [libiberty]: Don't stage.
7444         * Makefile.in: Rebuilt.
7446 2004-01-23  Jeff Johnston  <jjohnstn@redhat.com>
7448         * COPYING.NEWLIB: Update to include copyrights for new
7449         iconv code.
7451 2004-01-15  Andrew Cagney  <cagney@redhat.com>
7453         * src-release: Update copyright year.
7454         (do-proto-toplev): Configure using i686-pc-linux-gnu.
7455         (NEWLIB_SUPPORT_DIRS): Delete macro.
7456         (newlib.tar.bz2): Delete rule.
7458 2004-01-14  Loren J. Rittle <ljrittle@acm.org>
7460         * Makefile.def (target_modules) [libtermcap, libiberty, zlib]: Stage.
7461         * Makefile.tpl (configure-target-[+module+]): Support stage.
7462         * Makefile.in: Rebuilt.
7464 2003-01-14  Maciej W. Rozycki  <macro@ds2.pg.gda.pl>
7466         * gettext.m4: Quote names of macros to be defined by AC_DEFUN
7467         throughout.
7469 2004-01-04  Nathanael Nerode  <neroden@gcc.gnu.org>
7471         * configure.in: Use ./config.cache, not config.cache.
7472         * configure: Regenerate.
7473         * Makefile.tpl: Special-casing not needed for GCC any more.
7474         * Makefile.in: Regenerate.
7476         * configure.in: Don't share a cache file for host dirs.
7477         * configure: Regenerate.
7479         * config-ml.in: Don't mess with the cache file.
7481 2004-01-03  Nathanael Nerode  <neroden@gcc.gnu.org>
7483         * Makefile.tpl: Make GCC use a separate config.cache.
7484         * Makefile.in: Regenerate.
7486         PR bootstrap/11932, PR bootstrap/11933
7487         (I don't know if it will fix either of them, but it relates
7488         to them.)
7489         * configure.in: Don't use shared config.cache for target
7490         directories.
7491         * configure: Regenerate.
7493 2003-12-31  Roger Sayle  <roger@eyesopen.com>
7495         * configure.in (ia64*-*-hpux*): Disable building java libraries.
7496         * configure: Regenerated.
7498 2003-12-21  Bernardo Innocenti  <bernie@develer.com>
7500         * configure.in (*-*-uclinux): Exclude newlib, libgloss and rda.
7501         * configure: Regenerated.
7503 2003-12-19  Nathanael Nerode  <neroden@gcc.gnu.org>
7505         Port change over from GCC:
7506         2003-11-20  Kelley Cook  <kcook@gcc.gnu.org>
7507         * Makefile.tpl (BASE_FLAGS_TO_PASS): Pass along CONFIG_SHELL.
7508         (configure-build-[+module+], configure-[+module+]): Likewise.
7509         (configure-target-[+module+], configure-gcc, config.status): Likewise.
7510         * Makefile.in: Regenerate.
7512 2003-12-08  Thomas Fitzsimmons  <fitzsim@redhat.com>
7514         * configure.in (raw_libstdcxx_flags): Remove the leading space.
7515         * configure: Regenerate.
7517 2003-11-27  Jeff Johnston  <jjohnstn@redhat.com>
7519         * COPYING.NEWLIB: Add license info for long long routines added to
7520         stdlib.
7522 2003-11-14  Arnaud Charlet  <charlet@act-europe.fr>
7524         * Makefile.tpl (EXTRA_GCC_FLAGS): Pass BOOT_ADAFLAGS.
7525         * Makefile.in: Regenerate.
7527 2003-10-20  Phil Edwards  <phil@codesourcery.com>
7529         * configure.in (*-*-vxworks):  Add target-libiberty to noconfdirs.
7530         * configure:  Regenerate.
7532 2003-10-13  Nathanael Nerode  <neroden@gcc.gnu.org>
7534         * Makefile.tpl: Make GCC_FLAGS_TO_PASS a superset of
7535         HOST_FLAGS_TO_PASS.
7536         * Makefile.in: Regenerate.
7538 2003-10-05  Mohan Embar  <gnustuff@thisiscool.com>
7540         * configure.in: Allow explicit specification of CFLAGS_FOR_BUILD.
7541         * configure: Rebuilt
7542         * Makefile.tpl: Use CFLAGS_FOR_BUILD computed by configure
7543         * Makefile.in: Rebuilt
7545 2003-10-03  H.J. Lu  <hongjiu.lu@intel.com>
7547         * ltconfig (sys_lib_search_path_spec): Fix a typo for HPUX.
7549 2003-10-01  Phil Edwards  <pme@gcc.gnu.org>
7551         * config-ml.in:  Use ac_configure_args directly instead of
7552         ml_arguments.  Only set ml_norecursion if --no[-]recursion is
7553         actually seen.
7555 2003-10-01  Eric Botcazou  <ebotcazou@libertysurf.fr>
7557         * config-ml.in: Propagate INSTALL variables.
7559 2003-09-21  Daniel Jacobowitz  <drow@mvista.com>
7561         * configure.in: Pass a computed --program-transform-name
7562         to subconfigures.
7563         * configure: Regenerated.
7565 2003-09-20  Nathanael Nerode  <neroden@gcc.gnu.org>
7567         * Makefile.tpl: Don't pass down obsolete ENQUIRE variable.
7568         * Makefile.in: Regenerate.
7570         * Makefile.tpl: Don't pass (unused) DLLTOOL or WINDRES to gcc.
7571         * Makefile.in: Regenerate.
7573 2003-09-17  Daniel Jacobowitz  <drow@mvista.com>
7575         * configure.in (TOPLEVEL_CONFIGURE_ARGUMENTS, baseargs): Fix
7576         quoting.
7577         * configure: Regenerated.
7579 2003-09-12  Michael Chastain  <mec@shout.net>
7581         Fix PR gdb/857.
7582         * src-release (do-proto-topleve): Remove junk files
7583         intl/config.cache, intl/config.status,
7584         intl/config.h, intl/stamp-h.
7586 2003-09-14  Andrew Cagney  <cagney@redhat.com>
7588         * src-release (dejagnu.tar): New target.
7589         (dejagnu.tar.bz2): Recursively call "gdb-taz" rule.
7590         (do-djunpack): Use $(PACKAGE) for the package name.
7592 2003-09-04  DJ Delorie  <dj@redhat.com>
7594         * configure: Regenerate.
7596 2003-09-04  Robert Millan  <robertmh@gnu.org>
7598         * configure.in: Match GNU/KFreeBSD with new kfreebsd*-gnu triplet.
7600 2003-09-02  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
7602         * configure.in: Ensure arguments to sed are properly spaced.
7603         * configure: Regenerate.
7605 2003-08-28  Daniel Jacobowitz  <drow@mvista.com>
7607         Merge from gcc:
7608         2003-07-20  Phil Edwards  <pme@gcc.gnu.org>
7609         * install-sh:  Update to newer upstream versions (associated with
7610         aclocal 1.7).
7611         * missing:  Likewise, plus $1Help2man -> $1 typo fix.
7613 2003-08-27  Daniel Jacobowitz  <drow@mvista.com>
7615         * configure.in: Set RAW_CXX_FOR_TARGET if unset.
7616         * configure: Regenerated.
7618 2003-08-23  Phil Edwards  <pme@gcc.gnu.org>
7620         * configure.in:  Use newline instead of semicolon when assuming
7621         shell arguments in a for loop.
7622         * configure:  Regenerated.
7624 2003-08-20  Geoffrey Keating  <geoffk@apple.com>
7626         PR 8180
7627         * configure.in: When testing with_libs and with_headers, treat
7628         'no' as unset.  Based on a patch by Dan Kegel <dank@kegel.com>.
7629         * configure: Regenerate.
7631         * configure.in (TOPLEVEL_CONFIGURE_ARGUMENTS): Quote properly for
7632         make, shell, etc.
7633         (baseargs): Likewise.
7634         * configure: Regenerate.
7636 2003-08-19  Geoffrey Keating  <geoffk@apple.com>
7638         * configure.in: Disable libgcj for darwin not on powerpc.
7639         * configure: Rebuild.
7641 2003-08-15  Michael Chastain  <mec@shout.net>
7643         * src-release (do-proto-toplev): Remove junk files
7644         dejagnu/example/calc/config.status,
7645         dejagnu/example/calc/config.log.
7647 2003-08-14  Alexandre Duret-Lutz  <adl@gnu.org>
7649         * config-ml.in, symlink-tree: Add license.
7651 2003-08-01  Nathanael Nerode  <neroden@gcc.gnu.org>
7653         Merge from gcc:
7655         2003-08-01  Matt Kraai  <kraai@alumni.cmu.edu>
7656         * Makefile.tpl (check, check-c++): Express dependencies using
7657         dependencies rather than commands.
7658         * Makefile.in: Regenerate.
7660         2003-07-31  Geoffrey Keating  <geoffk@apple.com>
7661         * Makefile.tpl (libsubdir): Use gcc instead of gcc-lib.
7662         * Makefile.in: Update.
7664 2003-08-01  Andrew Cagney  <cagney@redhat.com>
7666         * configure.in (noconfigdirs): Do not add GDB when m32r-*-*.
7667         * configure: Ditto.
7669 2003-07-30  Andreas Tobler  <a.tobler@schweiz.ch>
7671         * configure.in: Enable libgcj for darwin.
7672         * configure: Rebuild.
7674 2003-07-29  Nathanael Nerode  <neroden@gcc.gnu.org>
7676         * mkinstalldirs: Import autoconf 2.57 / automake 1.7 version.
7678 2003-07-27  Nathanael Nerode  <neroden@gcc.gnu.org>
7680         * Makefile.tpl: Use 'mkinstalldirs' rather than 'mkdir' when
7681         creating target and build subdirs to build all parent dirs as needed.
7682         * Makefile.in: Rebuild.
7683         * configure.in: Don't build dirs explicitly here.
7684         * configure: Rebuild.
7686 2003-07-22  Alexandre Oliva  <aoliva@redhat.com>
7688         * Makefile.tpl (all-make): Depend on intl.
7689         * Makefile.in: Rebuilt.
7691 2003-07-16  Nathanael Nerode  <neroden@gcc.gnu.org>
7693         * config.if: Remove unused libc_interface determination.
7695 2003-07-14  Nathanael Nerode  <neroden@gcc.gnu.org>
7697         * Makefile.in: Regenerate, correctly this time.
7699 2003-07-13  Nathanael Nerode  <neroden@gcc.gnu.org>
7701         * Makefile.tpl: Set INSTALL and friends using autoconf.  Remove
7702         unused INSTALL_PROGRAM_ARGS.
7703         * configure.in: Use AC_PROG_INSTALL.
7704         * Makefile.in: Regenerate.
7705         * configure: Regenerate.
7707 2003-07-10  Alexandre Oliva  <aoliva@redhat.com>
7709         * configure: Rebuilt.
7710         2001-09-26  Alexandre Oliva  <aoliva@redhat.com>
7711         * configure.in (noconfigdirs) [am33_2.0-*-linux*]: Don't build
7712         newlib nor libgloss.
7713         Wed May  9 10:07:19 2001  Alexandre Oliva  <aoliva@redhat.com>
7714         * configure.in (am33_2.0-*-linux*): Added.
7716 2003-07-09  Bob Wilson  <bob.wilson@acm.org>
7718         * configure.in: Add ${libgcj} to noconfigdirs for xtensa-*-* targets.
7719         * configure: Regenerate.
7721 2003-07-06  H.J. Lu <hongjiu.lu@intel.com>
7723         * config-ml.in: Replace PWD with PWD_COMMAND.
7724         * Makefile.tpl: Likewise.
7725         * Makefile.in: Regenerated.
7727 2003-06-27  Nathanael Nerode  <neroden@gcc.gnu.org>
7729         * configure.in: Clean up config-lang.in handling.  Delete
7730         useless assignment to "subdirs".
7731         * configure: Regenerate.
7733 2003-06-26  Nathanael Nerode  <neroden@gcc.gnu.org>
7735         * configure.in: Rename 'target_libs' to 'target_libraries'.
7736         Remove useless reference to 'target_libs'.
7737         * configure: Regenerate.
7739 2003-06-23  Keith Seitz  <kseitz@sources.redhat.com>
7741         * Makefile.tpl: Add maybe-configure-itcl to configure-gdb.
7742         * Makefile.in: Regenerate.
7744 2003-06-23  Nathanael Nerode  <neroden@gcc.gnu.org>
7746         * Makefile.def: Introduce flags_to_pass.
7747         * Makefile.tpl: Generate BASE_FLAGS_TO_PASS using it.
7748         * Makefile.in: Regenerate.
7750 2003-06-23  Hans-Peter Nilsson  <hp@bitrange.com>
7752         * configure.in (noconfigdirs) <cris-*-*>: Disable target-newlib
7753         and target-libgloss.
7754         <d30v-*-*, fr30-*-*, i960-*-*, m32r-*-*>: Disable gdb.
7755         <h8300*-*-*>: Disable libf2c and ${libgcj}.
7756         * configure: Regenerate.
7758 2003-06-17  Benjamin Kosnik  <bkoz@redhat.com>
7760         * configure.in: Update testsuite_flags to new location.
7761         * configure. Regenerate.
7763 2003-06-18  Nathanael Nerode  <neroden@gcc.gnu.org>
7765         * Makefile.tpl: Remove BUILD_CC stuff.
7766         * Makefile.in: Regenerate.
7768 2003-06-14  H.J. Lu <hongjiu.lu@intel.com>
7770         * config.guess: Update to 2003-06-12 version.
7771         * config.sub: Update to 2003-06-13 version.
7773 2003-06-12  Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
7775         * MAINTAINERS: Add myself as MIPS co-maintainer.
7777 2003-06-12  H.J. Lu <hongjiu.lu@intel.com>
7779         * config.guess: Update to 2003-06-06 version.
7780         * config.sub: Update to 2003-06-06 version.
7782 2003-06-11  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
7784         * configure.in: Don't pass --with-stabs for mips*-sgi-irix6*o32.
7785         * configure. Regenerate.
7787 2003-06-10  Nathanael Nerode  <neroden@gcc.gnu.org>
7789         * configure.in: Disable serial configure by default.
7790         * configure: Regenerate.
7791         * Makefile.tpl: Abolish .NOTPARALLEL.
7792         * Makefile.in: Regenerate.
7794         * Makefile.tpl: Replace {build,host,target}_canonical by
7795         {build,host,target}.
7796         * Makefile.in: Regenerate.
7798         * Makefile.tpl: Fix stupid pasto.
7799         * Makefile.in: Regenerate.
7801 2003-06-09  Nathanael Nerode  <neroden@gcc.gnu.org>
7803         * Makefile.tpl: Remove bogus conditional.
7804         * Makefile.in: Regenerate.
7806 2003-06-03  Nathanael Nerode  <neroden@gcc.gnu.org>
7808         * Makefile.tpl: Make 'recursive targets' using autogen rather
7809         than shell loop.  Remove duplicate 'clean' targets and false
7810         comments.
7811         * Makefile.def: Add systematic dependencies to 'recursive' targets.
7812         Add systematic method of specifying missing targets in subdirs.
7813         Add copyright boilerplate.
7814         * Makefile.in: Regenerate.
7815         * configure.in: Add 'recursive targets' to maybe list.
7816         * configure: Regenerate.
7818         * Makefile.tpl: Rename [+target+] to [+make_target+].
7819         * Makefile.def: Rename 'target' to 'make_target'.
7821 2003-05-30  Nick Clifton  <nickc@redhat.com>
7823         * README-maintainer-mode: Update URL for locating blessed config
7824         tools.
7826 2003-05-29  Robert Millan  <rmh@debian.org>
7828         * ltconfig: Import this patch and modify for use with current
7829         version of ltconfig:
7831         2003-05-21  Bruno Haible  <bruno@clisp.org>
7833         * libtool.m4 (AC_LIBTOOL_SYS_DYNAMIC_LINKER): Add support for
7834         GNU/FreeBSD.
7836 2003-05-28  DJ Delorie  <dj@redhat.com>
7838         * Makefile.tpl: Make maybe-check-gcc .PHONY.
7839         * Makefile.in: Regenerate.
7841 2003-05-28  Jeff Johnston  <jjohnstn@redhat.com>
7843         * COPYING.NEWLIB: Add license info for newlib/libc/sys/linux/stdlib.
7845 2003-05-21  DJ Delorie  <dj@redhat.com>
7847         * Makefile.tpl (configure-target-libiberty): Depend only on gcc, not
7848         newlib or libgloss.
7849         * Makefile.in: Regenerate.
7851 2003-05-21  DJ Delorie  <dj@redhat.com>
7853         * Makefile.tpl: Add missing empty maybe-check-gcc target.
7854         * Makefile.in: Regenerate.
7856 2003-05-20  Maciej W. Rozycki  <macro@ds2.pg.gda.pl>
7858         * configure.in: Use curly braces in the definition of tooldir.
7859         * configure: Regenerate.
7861 2003-05-19  Nathanael Nerode  <neroden@gcc.gnu.org>
7863         * configure.in: Switch more things to use maybe dependencies.
7864         * Makefile.tpl: Switch more things to use maybe dependencies.
7865         Factor out common code from autogen IF statements.
7866         * configure: Regenerate.
7867         * Makefile.in: Regenerate.
7869 2003-05-14  Kelley Cook  <kelleycook@wideopenwest.com>
7871         * configure.in: Accept i[3456789]86 for machine type.
7872         * configure: Regenerate.
7874 2003-05-18  Nathanael Nerode  <neroden@gcc.gnu.org>
7876         * configure.in: Switch more things to use maybe dependencies.
7877         Rearrange a little.  Use GCC_TOPLEV_SUBDIRS.
7878         * configure: Regenerate.
7879         * Makefile.tpl: Switch more things to use maybe dependencies.
7880         * Makefile.in: Regenerate.
7882 2003-05-16  Andreas Schwab  <schwab@suse.de>
7884         * Makefile.tpl (install-opcodes): Define.
7885         * Makefile.in: Rebuild.
7887 2003-05-13  Andreas Jaeger  <aj@suse.de>
7889         * config.guess: Update to 2003-05-09 version.
7890         * config.sub: Update to 2003-05-09 version.
7892 2003-05-13  Michael Eager <eager@mvista.com>
7894         * configure.in: Correct sed script so that options in quotes are not
7895         deleted.
7896         * configure: Rebuild.
7898 2003-05-12  Corinna Vinschen  <corinna@vinschen.de>
7900         * configure.in (FLAGS_FOR_TARGET): Remove $$s/newlib/libc/sys/cygwin
7901         and $$s/newlib/libc/sys/cygwin32 include paths.
7902         * configure: Ditto.
7904 2003-05-05  H.J. Lu <hjl@gnu.org>
7906         * config-ml.in: Restored from gcc repository.
7908 2003-05-02  Chris Demetriou  <cgd@broadcom.com>
7910         * Makefile.tpl: Require "makeinfo" from texinfo 4.2 or later.
7911         * Makefile.in: Regenerate.
7913 2003-04-27  Daniel Jacobowitz  <drow@mvista.com>
7915         * src-release (DEVO_SUPPORT): Add src-release, Makefile.tpl,
7916         and Makefile.def.
7918 2003-04-27  Daniel Jacobowitz  <drow@mvista.com>
7920         * Makefile.tpl: Clean $(BUILD_SUBDIR).
7921         * Makefile.in: Regenerated.
7923 2003-04-18  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
7925         * Makefile.tpl (MAKEINFOFLAGS): Default to --split-size=5000000.
7926         * Makefile.in: Regenerate.
7928 2003-04-18  Jakub Jelinek  <jakub@redhat.com>
7930         * configure.in (powerpc64*-*-linux*): Remove.
7931         * configure: Rebuilt.
7933 2003-04-17  Phil Edwards  <pme@gcc.gnu.org>
7935         * Makefile.tpl (GCC_STRAP_TARGETS):  New variable containing all the
7936         previous bootstrap targets, plus bubblestrap, quickstrap, cleanstrap,
7937         and restrap.
7938         * Makefile.in:  Regenerate.
7940 2003-04-16  Richard Earnshaw  <rearnsha@arm.com>
7942         * configure.in (arm-*-netbsdelf*): Enable building java libraries.
7943         * configure: Regenerated.
7945 2003-04-11  Alexandre Oliva  <aoliva@redhat.com>
7947         * libtool.m4 (lt_cv_deplibs_check_method): Use pass_all on mips*.
7948         * */configure: Rebuilt.
7950 2003-03-14  Nathanael Nerode  <neroden@gcc.gnu.org>
7952         * Makefile.tpl: Move .NOEXPORT, MAKEOVERRIDES back down.
7953         * Makefile.in: Regenerate.
7955 2003-03-14  Michael Chastain  <mec@shout.net>
7957         * Makefile.in: Regenerate with correct Makefile.def.
7959 2003-03-12  Nathanael Nerode  <neroden@gcc.gnu.org>
7961         * Makefile.tpl: Move .NOEXPORT, MAKEOVERRIDES up.  Delete unused
7962         Make macro.
7963         * Makefile.in: Regenerate.
7964         * configure.in: Clean up gxx_include_dir logic.
7965         * configure: Regenerate.
7967 2003-03-09  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>
7969         * configure.in (gxx_include_dir): Fix typo.
7970         * configure: Regenerated.
7972 2003-03-06  Andrew Cagney  <cagney@redhat.com>
7974         * texinfo/texinfo.tex: Import version 2003-02-03.16.
7976 2003-03-04  Daniel Jacobowitz  <drow@mvista.com>
7978         * configure.in: Include $(build_tooldir)/sys-include in
7979         FLAGS_FOR_TARGET.
7980         * configure: Regenerated.
7982 2003-03-04  Nathanael Nerode  <neroden@gcc.gnu.org>
7984         * Makefile.tpl: Reindent.
7985         * Makefile.in: Regenerate.
7986         * configure.in: Reindent.  Don't set unused variables.
7987         * configure: Regenerate.
7989         * Makefile.tpl: Always pass down RANLIB.
7990         * Makefile.in: Regenerate.
7992         * Makefile.tpl: Don't set unused enable_shared, enable_threads macros.
7993         * Makefile.in: Regenerate.
7994         * configure.in: Remove unused logic relating to --enable-shared
7995         and --enable-threads.  Remove bogus comments.  Remove redundant
7996         noconfigdirs.
7997         * configure: Regenerate.
7999         * configure.in: Replace ${libstdcxx_version} by its value.
8000         Remove reference to mh-dgux.
8001         * configure: Regenerate.
8003 2003-02-28  Nathanael Nerode  <neroden@gcc.gnu.org>
8005         * Makefile.tpl: Rearrange.
8006         * Makefile.in: Regenerate.
8008 2003-02-25  Nick Clifton  <nickc@redhat.com>
8010         * configure: Remove site-file supprot - it is obsolete.
8012 2003-02-24  Uwe Stieber <uwe@wwws.de>
8014         * configure.in: Add support for kaOS as cross build target system.
8015         * configure: Regenerated.
8017 2003-02-20  Sean McNeil  <sean@blue.mcneil.com>
8019         * Makefile.tpl: Add definition of CPPFLAGS to pass into
8020         configure-target-* as some target builds may require additional
8021         flags for preprocessor tests.
8022         * Makefile.in: Regenerated.
8024 2003-02-19  Alexandre Oliva  <aoliva@redhat.com>
8026         * libtool.m4 (LD): Append -melf* option to LD on IRIX with GNU ld.
8027         * ltconfig: Handle it.
8028         * ltcf-cxx.sh: Use with_gnu_ld passed as a shell variable instead of
8029         auto-detecting it.
8031 2003-02-19  Alexandre Oliva  <aoliva@redhat.com>
8033         * ltcf-cxx.sh: Replace $linker_flags with $compiler_flags wherever
8034         it is used as argument to $CC.
8035         * ltcf-gcj.sh: Likewise.
8037 2003-02-19  Alexandre Oliva  <aoliva@redhat.com>
8039         * configure.in: Introduce --enable-maintainer-mode.
8040         * configure: Rebuilt.
8041         * Makefile.tpl (Makefile.in, configure): Enable dependencies only
8042         for maintainer mode.
8043         * Makefile.in: Rebuilt.
8045 2003-02-19  Andrew Cagney <ac131313@redhat.com>
8047         * configure: Regenerate using autoconf 2.13.
8049 2003-02-19  Alan Modra  <amodra@bigpond.net.au>
8051         * config.guess: Import latest version.
8052         * config.sub: Import latest version.
8054 2003-02-18  Jason Merrill  <jason@redhat.com>
8056         * Makefile.tpl (check-c++): Allow parallelism.
8058 2003-02-17  Andrew Cagney  <ac131313@redhat.com>
8060         * configure: Regenerate using autoconf 000227.
8062 2003-02-15  Geoffrey Keating  <geoffk@apple.com>
8064         * configure.in (*-*-darwin*): Rename from powerpc*-*-darwin*,
8065         don't configure target-libobjc.
8066         * configure: Regenerate.
8068 2003-02-14  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
8070         * Makefile.tpl (RANLIB): Define.
8071         * Makefile.in: Regenerate.
8073 2003-02-06  Keith R Seitz  <keiths@redhat.com>
8075         * Makefile.def: Remove "snavigator", "grep", and "db" modules.
8076         * Makefile.tpl: Remove "all-snavigator" and "all-grep".
8077         * Makefile.in: Regenerated.
8078         * configure.in: Remove all traces of snavigator, db, and grep.
8079         * configure: Regenerated.
8081 2003-01-31  Frank Ch. Eigler  <fche@redhat.com>
8083         * Makefile.tpl (all-sid): Add libiberty/bfd/opcodes dependencies.
8084         * Makefile.in: Regenerated.
8086 2003-01-30  Alexandre Oliva  <aoliva@redhat.com>
8088         * config.if: Copy from GCC.
8090 2003-01-27  Phil Edwards  <pme@gcc.gnu.org>
8092         * configure.in:  Revert 24Jan change.
8093         * configure:  Regenerate.
8095 2003-01-23  Nathanael Nerode  <neroden@gcc.gnu.org>
8097         * configure.in: Revert previous change.
8098         * configure: Regenerate.
8100 2003-01-23  Nathanael Nerode  <neroden@gcc.gnu.org>
8102         * configure.in: Make rda native-only.
8103         * configure: Regenerate.
8105 2003-01-19  Nathanael Nerode  <neroden@gcc.gnu.org>
8107         * configure.in: Add missing \.
8108         * configure: Rebuilt.
8110 2003-01-17  Jakub Jelinek  <jakub@redhat.com>
8112         * configure.in (baseargs): Avoid using \| in sed regular
8113         expressions.
8114         * configure: Rebuilt.
8116 2003-01-16  Jakub Jelinek  <jakub@redhat.com>
8118         * configure.in (baseargs): Remove all supported forms of
8119         --cache-file, --srcdir, --host, --build and --target options
8120         from argument lists.
8121         * configure: Rebuilt.
8123 2003-01-15  Alexandre Oliva  <aoliva@redhat.com>
8125         * configure.in (noconfigdirs): Don't skip gas on IRIX 6.
8126         * configure: Rebuilt.
8128 2003-01-09  Nathanael Nerode  <neroden@gcc.gnu.org>
8130         * configure.in: Substitute TOPLEVEL_CONFIGURE_ARGUMENTS.
8131         * Makefile.tpl: Pass TOPLEVEL_CONFIGURE_ARGUMENTS to gcc.
8132         * Makefile.in: Regenerate.
8133         * configure: Regenerate.
8135 2003-01-09  Christian Cornelssen  <ccorn@cs.tu-berlin.de>
8137         * Makefile.tpl (BASE_FLAGS_TO_PASS): Also pass DESTDIR.
8138         (install-info, dir.info): Prepend $(DESTDIR) to $(infodir).
8139         * Makefile.in: Regenerate.
8141 2003-01-09  Alexandre Oliva  <aoliva@redhat.com>
8143         * configure.in: Remove Makefile in build, host and target modules
8144         unless configure was run with --no-recursion.
8145         * configure: Rebuilt.
8147 2003-01-08  Chris Demetriou  <cgd@broadcom.com>
8149         * config.guess: Update to 2003-01-03 version.
8150         * config.sub: Update to 2003-01-03 version.
8152 2003-01-07  Christopher Faylor  <cgf@redhat.com>
8154         * configure: Regenerate with proper autoconf 2.13.
8156 2003-01-07  Christopher Faylor  <cgf@redhat.com>
8158         * configure.in: Add AC_PREREQ for consistency.
8159         * configure: Regenerate.
8161 2003-01-06  Andrew Cagney  <ac131313@redhat.com>
8163         * configure.in (GDB_TK): Add tcl directories conditional on
8164         gdb/gdbtk directory being present.
8165         * configure: Regenerate.
8167 2003-01-04 John David Anglin  <dave.anglin@nrc.ca>
8169         * configure.in (LD): Improve test for gcc.  Try to set LD to the ld used
8170         by gcc if LD is not defined and we are not doing a Canadian Cross.
8171         * configure: Rebuilt.
8173 2003-01-01  Daniel Jacobowitz  <drow@mvista.com>
8175         * src-release (ETC_SUPPORT): Add fdl.texi and texi2pod.pl.
8177 2002-12-31  Tom Tromey  <tromey@redhat.com>
8179         * Makefile.in: Rebuilt.
8180         * Makefile.def (target_modules) [libffi]: Allow installation.
8182 2002-12-31  Andreas Schwab  <schwab@suse.de>
8184         * configure.in: Fix use of $program_transform_name.
8185         * configure: Regenerated.
8187 2002-12-30  Daniel Jacobowitz  <drow@mvista.com>
8189         * configure.in (baseargs): Don't remove first configure argument.
8190         * configure: Regenerated.
8192 2002-12-29  Alexandre Oliva  <aoliva@redhat.com>
8194         * Makefile.tpl (local-distclean): Don't remove...
8195         (multilib.ts): ... this.  Moved into...
8196         (multilib.out): ... this.  Don't use sub-make.
8197         ($(BUILD_SUBDIR)/[+module+]/Makefile, [+module+]/Makefile,
8198         $(TARGET_SUBDIR)/[+module+]/Makefile, gcc/Makefile): Moved into...
8199         (configure-build-[+module+], configure-[+module+],
8200         configure-target-[+module+], configure-gcc): ... these.  Test
8201         for Makefile existence.  Drop config.status from dependencies.
8202         * Makefile.in: Rebuilt.
8203         * configure.in: Move gcc-version-trigger to the end of
8204         ac_configure_args.  Add comments to maybedep.tmp and
8205         serdep.tmp.  Introduce --disable-serial-configure.  Remove
8206         nonopt from baseargs, matching and removing corresponding
8207         whitespace while at it.
8208         * configure: Rebuilt.
8210 2002-12-28  Alexandre Oliva  <aoliva@redhat.com>
8212         * configure.in (host_configargs): Replace reference to
8213         no-longer-defined buildopts with --build=${build_alias}.
8214         * configure: Rebuilt.
8216 2002-12-28  Alexandre Oliva  <aoliva@redhat.com>
8218         * Makefile.tpl ($(NOTPARALLEL)): Move to the end.  Bring uses of
8219         program_transform_name to standard idiom.
8220         (AUTOGEN, AUTOCONF): Define.
8221         (Makefile.in): Use $(AUTOGEN).
8222         (Makefile): Depend on config.status, and use autoconf-style rule to
8223         build it.  Move original commands to...
8224         (config.status): ... this new target.
8225         (configure): Add $(srcdir).  Depend on config/acx.m4.  Use
8226         $(AUTOCONF).
8227         * Makefile.in: Rebuilt.
8229 2002-12-28  Nathanael Nerode  <neroden@gcc.gnu.org>
8231         * Makefile.tpl: Fix dramatic bustage due to change in
8232         program_transform_name.
8233         * Makefile.in: Regenerate.
8235         * configure.in: Remove unnecessary PATH setting.
8236         * configure: Regnerate.
8238         * configure.in: Don't default to unprefixed tools unless
8239         the native tools will work.
8240         * configure: Regenerate.
8242         * configure.in: Convert to autoconf script.  Blow away lots
8243         of now-redundant Makefile fragments.
8244         * configure: Generate using Autoconf.
8245         * Makefile.tpl: Rewrite to reflect autoconfiscation.
8246         * Makefile.in: Regenerate.
8248 2002-12-27  Nathanael Nerode  <neroden@gcc.gnu.org>
8250         * configure: Remove unneeded 'export's.  Make CC_FOR_TARGET,
8251         CXX_FOR_TARGET, GCJ_FOR_TARGET substituted in configure.in only.
8253         * ChangeLog: Move a couple of entries from here to winsup/cygwin,
8254         where they belong.
8256 2002-12-24  Andreas Schwab  <schwab@suse.de>
8258         * Makefile.tpl (multilib.out): Fix missing space.
8259         * Makefile.in: Regenerate.
8261 2002-12-23  Nathanael Nerode  <neroden@gcc.gnu.org>
8263         * Makefile.tpl: Use shared multilib.out.  Use move-if-change for it.
8264         Convert (cd foo; make) to (cd foo && make).  Clean up multilib.out.
8265         * Makefile.in: Regenerate.
8266         * configure.in: Remove unnecessary leftovers.
8268 2002-12-21  Geoffrey Keating  <geoffk@apple.com>
8270         * configure.in (extra_ranlibflags_for_target): New variable.
8271         (*-*-darwin): Add -c to ranlib commands.
8272         * configure (tooldir): Handle extra_ranlibflags_for_target.
8274 2002-12-20  Jeff Johnston  <jjohnstn@redhat.com>
8276         * COPYING.NEWLIB: Updated.
8277         * COPYING.LIBGLOSS: Ditto.
8279 2002-12-19  Nathanael Nerode  <neroden@gcc.gnu.org>
8281         * Makefile.tpl: Revert HJL's change.
8282         * Makefile.in: Regenerated.
8283         * configure.in: Put build_prefix before $(BUILD_SUBDIR) here, and
8284         always.
8286 2002-12-19  Andreas Schwab  <schwab@suse.de>
8288         * Makefile.tpl, configure.in: Substitute libstdcxx_incdir.
8289         * Makefile.in: Regenerate.
8291 2002-12-18  H.J. Lu <hjl@gnu.org>
8293         * Makefile.tpl: Add @build_prefix@ before $(BUILD_SUBDIR).
8294         * Makefile.in: Regenerated.
8296         * configure.in (build_prefix): New. Substitute.
8298 2002-12-18  Nathanael Nerode  <neroden@gcc.gnu.org>
8300         * Makefile.tpl: Don't let real targets depend on phony targets.
8301         * Makefile.in: Regenerate.
8303         * Makefile.tpl (do-info): Depend on maybe-all-texinfo, not all-texinfo.
8304         * Makefile.in: Regenerate.
8306 2002-12-16  Jason Merrill  <jason@redhat.com>
8308         * Makefile.tpl (all-gcc): Use 'make quickstrap' if there was a
8309         previous 'make bootstrap'.
8310         * Makefile.in: Regenerate.
8312 2002-12-17  Hans-Peter Nilsson  <hp@bitrange.com>
8314         * configure.in (noconfigdirs) [mmix-*-*]: Disable libgloss and gdb.
8316 2002-12-13  Jason Merrill  <jason@redhat.com>
8318         * Makefile.tpl (check-gcc-c++): Renamed from check-c++.  Don't run
8319         library tests.
8320         (check-c++): Just depend on it and check-target-libstdc++-v3.
8321         * Makefile.in: Regenerate.
8323 2002-12-13  Nathanael Nerode  <neroden@gcc.gnu.org>
8325         * configure.in, Makefile.tpl, Makefile.def: Remove tclX.
8326         * Makefile.in: Regenerate.
8328 2002-12-12  Jeff Johnston  <jjohnstn@redhat.com>
8330         * COPYING.NEWLIB: Update list of alternate Regent of California
8331         licenses and discuss official revoking of advertising clause.
8332         * COPYING.LIBGLOSS: Ditto.
8334 2002-12-12  Alexandre Oliva  <aoliva@redhat.com>
8336         * Makefile.tpl (configure-target-rda): Depend on $(ALL_GCC_C).
8337         * Makefile.in: Rebuilt.
8339 2002-12-10  Nathanael Nerode  <neroden@gcc.gnu.org>
8341         * configure: Fix bug put in by gremlins.
8343         * Makefile.tpl: Substitute more autoconfily.
8344         * configure: Substitute more autoconfily.
8345         * Makefile.in: Regenerate.
8347 2002-12-08  Andrew Cagney  <ac131313@redhat.com>
8349         * Makefile.tpl (all-sim): Depend on maybe-configure-gdb.
8350         * Makefile.in (all-sim): Ditto.
8352 2002-12-06  DJ Delorie  <dj@redhat.com>
8354         * Makefile.tpl: Change configure dependencies to not have real
8355         targets depend on phony targets.
8357 2002-12-05  Nathanael Nerode  <neroden@gcc.gnu.org>
8359         * configure.in: Revert unintentional change.
8361         * src-release: Configure host subdirs.
8363         * Makefile.tpl: Change dependency for */multilib.out so that
8364         it works when gcc isn't in the tree.
8366         * configure.in: Substitute more.
8367         * configure: Run subconfigures from the Makefile.
8368         * Makefile.tpl: Run subconfigures from the Makefile; add a few
8369         convenience targets.  Make sure gcc isn't rebuilt after bootstrap.
8371 2002-12-03  Nathanael Nerode  <neroden@gcc.gnu.org>
8373         * Makefile.tpl: Add targets for configuring host subdirs in Makefile,
8374         and corresponding dependencies.
8375         * Makefile.in: Regenerate.
8377         * configure.in (host_tools): Order binutils, gas and ld for
8378         convenience in running the testsuites.
8380         * Makefile.tpl: Introduce rules to serialize subconfigure runs.
8381         * Makefile.in: Regenerate.
8382         * configure.in: Introduce rules to serialize subconfigure runs.
8384         * configure.in: Introduce BASE_CC_FOR_TARGET.
8385         * Makefile.tpl: Reorganize and comment.  Introduce HOST_CONFIGARGS.
8386         Realize configure-build-* targets.  Realize configure-target-* targets.
8387         * Makefile.in: Regenerate.
8389 2002-12-02  Nathanael Nerode  <neroden@gcc.gnu.org>
8391         * configure: Move gcc_version_trigger stuff from here...
8392         * configure.in: ...to here.
8394         * configure.in: Separate subconfigure options added by this file from
8395         options given by the user.  Add machinery to put args for host
8396         subconfigures into the Makefile.
8398         * Makefile.tpl: Remove 'vault' targets.
8399         * Makefile.tpl: Reorder and comment dependencies.
8400         * Makefile.in: Regenerate.
8402 2002-11-28  Geoffrey Keating  <geoffk@apple.com>
8404         * configure.in: Move host-specific darwin noconfigdirs into
8405         the host-specific section.
8407 2002-12-02  Nathanael Nerode  <neroden@gcc.gnu.org>
8409         * Makefile.tpl: Restore bkorb's style patch, accidentally lost
8410         during replay.
8411         * Makefile.in: Regenerate.
8413         (finishing slow-motion replay)
8414         * configure: Remove skip-this-dir support.
8415         * Makefile.tpl: Remove skip-this-dir support.
8417         * Makefile.tpl: Remove leftover support for non-autoconfiscated
8418         subdirectories.
8419         * Makefile.in: Regenerate.
8421         * Makefile.tpl: Strip out useless setting of 'dir'.
8422         * Makefile.in: Regenerate.
8424 2002-12-02  Nathanael Nerode  <neroden@gcc.gnu.org>
8426         (finishing slow-motion replay)
8427         * configure.in: Fix deeply stupid bug.
8429         * configure.in: Introduce RAW_CXX_FOR_TARGET and simplify embedded
8430         shell code in CXX_FOR_TARGET
8431         * Makefile.def: Introduce raw_cxx.
8432         * Makefile.tpl: Use raw_cxx to select between CXX_FOR_TARGET and
8433         RAW_CXX_FOR_TARGET.
8434         * Makefile.in: Regenerate.
8436 2002-12-02  Nathanael Nerode  <neroden@gcc.gnu.org>
8438         (finishing slow-motion replay)
8439         * Makefile.tpl: Remove unnecessary ifs.
8440         * Makefile.in: Regenerate.
8442         * Makefile.tpl: Implement soft dependency machinery.  Maybe-ize
8443         dependencies.  Maybe-ize build-libiberty.  Create dummy install
8444         targets for 'no_install' modules.
8445         * configure: Move GDB_TK substitution to configure.in.  Move
8446         build_modules stuff to configure.in.
8447         * configure.in: Implement soft dependency machinery.  Maybe-ize
8448         GDB_TK, rearrange slightly.  Move build_modules stuff from configure.
8449         * Makefile.in: Regenerate.
8451 2002-12-01  Nathanael Nerode  <neroden@gcc.gnu.org>
8453         (continuing slow-motion replay)
8454         * Makefile.tpl: Make all-target, install-target behave similarly
8455         to all, install (only hitting configured targets).  Eliminate
8456         unused macro defintions.
8458         * Makefile.tpl: Add all-gcc: all-build-libiberty dependency when
8459         build != host.
8461         * Makefile.tpl: Add all-gcc: all-libiberty dependency.
8463         * ltcf-c.sh, ltcf-gcj.sh, Makefile.tpl: Correct BUILD/HOST confusion.
8465         * configure.in: Produce lists of subdir targets we're actually
8466         configuring.  Remove references to "dosrel".
8467         * Makefile.tpl: Let configure set which subdir targets are hit.
8468         Remove install-cross; clean up install; remove ALL.  Remove
8469         references to "dosrel".  Remove "EXTRA_TARGET_HOST" hackery.
8470         Autogenerate host module targets.  Remove empty dependency lines
8471         and redundant dependency; rearrange slightly.
8472         * Makefile.def: Add host-side libtermcap, utils.
8474         * Makefile.in: Regenerate.
8476 2002-12-01  Nathanael Nerode  <neroden@gcc.gnu.org>
8478         (Continuing slow-motion replay)
8479         * Makefile.def: Add list of recursive targets to autogenerate.
8480         Add build_modules.
8481         * Makefile.tpl: Autogenerate do-* targets.  Autogenerate *-target-*
8482         targets.  Autogenerate *-build-* targets.
8483         * Makefile.in: Regenerate.
8485 2002-11-30  Nathanael Nerode  <neroden@gcc.gnu.org>
8487         (Continuing slow-motion replay)
8488         * configure: More autoconf-style substitutions.
8489         * Makefile.tpl: More autoconf-style substitutions.
8490         * Makefile.in: Regenerate.
8492 2002-11-30  Nathanael Nerode  <neroden@gcc.gnu.org>
8494         (Continuing slow-motion replay)
8495         * configure: Substitute more variables in a more autoconf-friendly
8496         way.  Simplify slightly.
8497         * Makefile.tpl: Make more variables substitutable in an
8498         autoconf-friendly way.
8499         * Makefile.in: Regenerate.
8501 2002-11-29  Nathanael Nerode  <neroden@gcc.gnu.org>
8503         (Continuing slow-motion replay)
8504         * configure.in (v810*): Remove special setting of tools.
8506         * configure: Add support for extra required flags for ar or nm.
8507         * configure.in (aix4.3+): Use above support for target-specific
8508         issues, rather than using config/mt-aix43.
8510 2002-11-29  Nathanael Nerode  <neroden@gcc.gnu.org>
8512         (Starting slow-motion replay merge from gcc 3.4 b-i-b branch)
8513         * configure: Remove 'removing', which doesn't work.  Replace $subdir
8514         with . everywhere.  Replace $subdirs with ''.  Replace $makesrcdir
8515         with $srcdir.  Reformat indentation.  Substitute some variables
8516         formerly hard-coded in the Makefile for build=host.
8517         * Makefile.tpl: Autogenerate more; make more autoconf-friendly.
8518         * Makefile.def: Autogenerate more.
8519         * Makefile.in: Regenerate.
8521 2002-11-13  Bruce Korb  <bkorb@gnu.org>
8523         * Makefile.tpl: syntactic cleanup
8525 2002-11-04  Kevin Buettner  <kevinb@redhat.com>
8527         * Makefile.def (host_modules): Add rda.
8528         * Makefile.in: Regenerate.
8529         * configure.in (target_tool): Add target-rda to list.
8531 2002-10-25  Phil Edwards  <pme@gcc.gnu.org>
8533         * Makefile.tpl (bootstrap):  Add bubblestrap, quickstrap, cleanstrap,
8534         and restrap targets to this rule.
8535         * Makefile.in:  Regenerate.
8537 2002-10-24  Hans-Peter Nilsson  <hp@bitrange.com>
8539         * configure.in (i[3456]86-*-linux*): Add check to disable
8540         ${libgcj} for glibc1.
8542 2002-10-07  Svein E. Seldal  <Svein.Seldal@solidas.com>
8544         * configure.in: Add tic4x target.
8546 2002-10-03  Nathanael Nerode  <neroden@gcc.gnu.org>
8548         * Makefile.tpl: Make SET_LIB_PATH substitution more autoconfy.
8549         * Makefile.tpl: Make RPATH_ENVVAR substitution more autoconfy.
8550         * configure.in: Make SET_LIB_PATH substitution more autoconfy.
8551         * configure.in: Make RPATH_ENVVAR substitution more autoconfy.
8552         * Makefile.in: Regenerate.
8554 2002-10-02  Nathanael Nerode  <neroden@gcc.gnu.org>
8556         * Makefile.tpl: Eliminate reference to all-gui, all-libproc.
8557         * Makefile.in: Regenerate.
8559         * Makefile.def: Remove order dependency comments.
8560         * Makefile.tpl: Add explicit install-install dependencies.
8561         * Makefile.in: Regenerate.
8563         * Makefile.tpl: Remove material now in src-release.  (Finally!)
8564         * Makefile.in: Regenerate.
8566         * configure: Restore my original patch by syncing with gcc version.
8568         * Bring following over from gcc:
8570 2002-09-30  Ulrich Weigand  <uweigand@de.ibm.com>
8572         * configure.in (s390*-*-linux*): Enable libgcj.
8574 2002-10-02  Nathanael Nerode  <neroden@gcc.gnu.org>
8576         * Makefile.in: Regenerate.  This really ought to fix things. :sigh:
8578 2002-10-02  Alan Modra  <amodra@bigpond.net.au>
8580         * configure: Move stray lines back to where they belong.
8582 2002-10-01  Nathanael Nerode  <neroden@gcc.gnu.org>
8584         * Makefile.tpl: Insert configure-target target, for src-release.
8586         * configure: Finish reverting change which Andrew Cagney started
8587         reverting.  Should fix bustage.
8589         * src-release (BINUTILS_SUPPORT_DIRS): Add cpu directory.
8590         * src-release: New file.  Contains material for making net
8591         releases for gdb, binutils, et al., formerly in Makefile.in.
8593 2002-09-30  Nick Clifton  <nickc@redhat.com>
8595         * cpu: New top level directory.  Intended to hold input files for
8596         CGEN which have FSF copyright assignment.
8597         * Makefile.in (BINUTILS_SUPPORT_DIRS): Add cpu directory.
8599 2002-09-29  Andrew Cagney  <ac131313@redhat.com>
8601         Revert below (note that src does not contain Makefile.tpl):
8602         * Makefile.tpl: Make subsituted variables more autoconfy.
8603         * Makefile.in: Regenerate.
8605 2002-09-29  Nathanael Nerode  <neroden@gcc.gnu.org>
8607         * configure: Revert accidentally applied changes.
8609         * Makefile.tpl: Make more autoconf-friendly.
8610         * Makefile.in: Regenerate.
8611         * configure: Make substitution more autoconf-like.
8613 2002-09-28  Richard Earnshaw  <rearnsha@arm.com>
8615         * configure.in (arm-*-coff, strongarm-*-coff, xscale-*-coff): Use a
8616         single entry to handle all these.
8617         (arm-*-elf, strongarm-*-elf, xscale-*-elf): Likewise.  Also enable
8618         libjava on arm-*-elf.
8620 2002-09-27  Geoffrey Keating  <geoffk@apple.com>
8622         * configure.in (powerpc-*-darwin*): Don't configure BFD, TK, or the
8623         things that depend on them.
8625 2002-09-25  Nathanael Nerode  <neroden@gcc.gnu.org>
8627         * Makefile.tpl: Make subsituted variables more autoconfy.
8628         * Makefile.in: Regenerate.
8629         * configure: Make seds more autoconfy.
8631 2002-09-25  Nathanael Nerode  <neroden@gcc.gnu.org>
8633         * Makefile.tpl: Rewrite substituted lines to look autoconfy.
8634         * Makefile.in: Regenerate.
8635         * configure.in: Rewrite sed statements to look autoconfy.
8637         * Makefile.tpl: Autogenerate *-target-* lists, dependencies of
8638         all-target-foo on configure-target-foo.
8639         * Makefile.def: Ditto.
8640         * Makefile.in: Rebuild.
8642 2002-09-22  Nathanael Nerode  <neroden@gcc.gnu.org>
8644         * Makefile.def: New file.
8645         * Makefile.tpl: New file.
8646         * Makefile.in: Generate from Makefile.tpl with 'autogen Makefile.def'.
8648         * configure.in: Minor rearrangement.  Simplify tests.
8650 2002-09-23  Jason Thorpe  <thorpej@wasabisystems.com>
8652         * configure.in (with_headers): Skip copy if value is "yes".
8653         (with_libs): Likewise.
8655 2002-09-20  Nathanael Nerode  <neroden@gcc.gnu.org>
8657         * configure.in (*-*-netbsd*): Use noconfigdirs, not skipdirs.
8658         * configure.in (sh*-*-pe*): Ditto.
8659         * configure.in (mips*-*-pe*): Ditto.
8660         * configure.in (*arm-wince-pe): Ditto.
8662         * configure.in: Rearrange.
8664 2002-09-12  Nick Clifton  <nickc@redhat.com>
8666         * Import these changes from the config master repository:
8668         2002-09-05  Svein E. Seldal  <Svein.Seldal@solidas.com>
8670                 * config.sub: Add tic4x target.
8672         2002-09-03  Ben Elliston  <bje@redhat.com>
8674                 * config.guess: Detect NSR-D machines for nsr-tandem-nsk.
8675                 Reported by <Duncan_Stodart@insession.com>.
8677 2002-09-10  Jeff Johnston  <jjohnstn@redhat.com>
8679         * COPYING.NEWLIB: More updates.
8681 2002-09-09  Jeff Johnston  <jjohnstn@redhat.com>
8683         * COPYING.NEWLIB: Update.
8685 2002-08-23  Andrew Cagney  <ac131313@redhat.com>
8687         * texinfo/texinfo.tex: Import version 2002-06-04.06.
8689         * config.guess: Import version 2002-08-23.
8690         * config.sub: Import version 2002-08-22.
8692 2002-08-20  Alexandre Oliva  <aoliva@redhat.com>
8694         * Makefile.in (GCC_FOR_TARGET): Prepend STAGE_CC_WRAPPER.
8695         * configure.in (CC_FOR_TARGET, GCJ_FOR_TARGET, CXX_FOR_TARGET,
8696         CXX_FOR_TARGET_FOR_RECURSIVE_MAKE): Likewise.
8698 2002-08-06  Federico G. Schwindt <fgsch@olimpo.com.br>
8700         * configure.in (hppa*-*-openbsd*): Treat like hppa*-*-*elf*.
8702 2002-08-04  H.J. Lu  (hjl@gnu.org)
8704         * configure.in (mips*-*-linux*): Don't skip target-libffi.
8706 2002-07-31  Alan Modra  <amodra@bigpond.net.au>
8708         * configure.in: Move generic linux case to end.  Copy generic
8709         linux noconfigdirs to mips*-*-linux* entry and new
8710         powerpc64*-*-linux* entry.  Add target-libffi for the latter.
8712 2002-07-19  Chris Demetriou  <cgd@broadcom.com>
8714         * MAINTAINERS: Clarify on config.guess and config.sub, and add
8715         one instance of them which was missed to the list to update.
8717 2002-07-16  Chris Demetriou  <cgd@broadcom.com>
8719         * config.guess: Update to 2002-07-09 version.
8720         * config.sub: Update to 2002-07-03 version.
8722 2002-07-11  Nathanael Nerode  <neroden@gcc.gnu.org>
8724         * configure.in: Remove two redundant tests.
8726 2002-07-11  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
8728         * configure.in (mips*-*-irix6*o32): Enable stabs.
8730 2002-07-08  Nathanael Nerode  <neroden@gcc.gnu.org>
8732         * configure.in: Don't build grez.
8733         * Makefile.in: Ditto.
8735         * Makefile.in: Remove references to bsp, cygmon, libstub.
8736         * configure.in: Ditto.
8738         * configure.in: Remove leftover reference to gdbtest.
8740 2002-07-08  Phil Edwards  <pme@gcc.gnu.org>
8742         * configure.in (gxx_include_dir):  Change to match versioned
8743         C++ headers if --enable-version-specific-runtime-libs is used.
8745 2002-07-04  Steve Ellcey  <sje@cup.hp.com>
8747         * ltcf-cxx.sh (hpux*): Modify to support ia64-*-hpux*.
8749 2002-07-03  Nathanael Nerode  <neroden@gcc.gnu.org>
8751         * configure.in: Make --without-x work.
8753 2002-07-03  Nick Clifton  <nickc@cambridge.redhat.com>
8755         * contrib: New directory.  Created to contain a copy of the
8756         texi2pod.pl script so that it is in the same place as the version in
8757         the FSF GCC sources.
8759 2002-07-02  Nathanael Nerode  <neroden@gcc.gnu.org>
8761         * configure.in: Rearrange target Makefile fragment collection.
8763         * Makefile.in: Don't try to build gdbtest, tgas, ispell, inet, or
8764         cvs[src].
8765         * configure.in: Ditto.
8767 2002-07-01  Nathanael Nerode <neroden@gcc.gnu.org>
8769         * Makefile.in: Eliminate 'apache' targets.
8770         * configure.in: Eliminate 'apache' targets.
8772         * configure.in: Eliminate redundant tests.  Reorganize.
8774         * Makefile.in: Eliminate last reference to LIBGCC1_TEST.
8776         * config-ml.in: Eliminate references to Cygnus configure.
8778         * Makefile.in: Eliminate references to building emacs.
8780 2002-07-01  Denis Chertykov  <denisc@overta.ru>
8782         * configure.in: Add support for ip2k.
8784 2002-06-24  Ben Elliston  <bje@redhat.com>
8786         * configure.in (host_tools): Remove cgen.
8788         * Makefile.in (all-cgen): Remove; runs from its source directory.
8789         (check-cgen, install-cgen, clean-cgen): Likewise.
8790         (all-opcodes): No not depend on all-cgen.
8791         (all-sim): Likewise.
8793 2002-06-22  Nathanael Nerode  <neroden@twcny.rr.com>
8795         * configure.in: Fix AIX configury bug.
8797 2002-06-19  Nathanael Nerode  <neroden@twcny.rr.com>
8799         * configure.in: Replace ${topsrcdir} with ${srcdir}.
8801         * configure.in: Move definition of libstdcxx_flags right above
8802         usage, rather than way earlier.
8804         * configure.in: Pull definition of is_cross_compiler earlier.
8806         * configure.in: Rearrange a little.
8808         * configure.in: Remove references to librx.
8809         * Makefile.in: Remove references to librx.
8811 2002-06-19  Nathanael Nerode  <neroden@twcny.rr.com>
8813         * configure.in: Eliminate ${gasdir} variable.
8815 2002-06-18  Dave Brolley  <brolley@redhat.com>
8817         * configure.in: Add support for frv.
8818         * config.sub: Add support for frv.
8820 2002-06-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
8822         * Makefile.in (CFLAGS_FOR_TARGET): Add -O2.
8824 2002-06-08  Jason Thorpe  <thorpej@wasabisystems.com>
8826         * configure.in (vax-*-netbsd*): Re-enable gas.
8828 2002-05-31  Nathanael Nerode  <neroden@twcny.rr.com>
8830         * Makefile.in: Replace HOST_PREFIX, HOST_PREFIX_1 with BUILD_PREFIX,
8831         BUILD_PREFIX_1, to correct nomenclature.
8832         * configure: Likewise.
8834         * Makefile.in: Eliminate version-specific references to tcl8.1, tk8.1.
8835         * configure.in: Eliminate version-specific references to tcl8.1, tk8.1.
8837 2002-05-31  Olaf Hering  <olh@suse.de>
8839         * config-ml.in: Propogate DESTDIR also.
8841 2002-05-29  Jason Thorpe  <thorpej@wasabisystems.com>
8843         * configure.in (vax-*-netbsd*): Don't build gas for this
8844         platform.
8846 2002-05-28  Marek Michalkiewicz  <marekm@amelek.gda.pl>
8848         * configure.in (noconfigdirs): Don't compile libiberty, libstdcxx
8849         and libgcj for AVR.
8851 2002-05-28  Nick Clifton  <nickc@cambridge.redhat.com>
8853         * config.sub: Add DLX target.
8855 2002-05-22  Jason Thorpe  <thorpej@wasabisystems.com>
8857         * config.guess: Update to 2002-05-22 version.
8858         * config.sub: Likewise.
8860 2002-05-16  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
8862         * Makefile.in: Allow for PWDCMD to override hardcoded pwd.
8863         * config-ml.in: Likewise.
8864         * configure: Likewise.
8865         * configure.in: Likewise.
8867 2002-05-13  Nathanael Nerode  <neroden@twcny.rr.com>
8869         * configure.in: Simplify makefile fragment collection.
8871         * configure.in: Remove code to build emacs.
8873         * configure.in : Remove --srcdir argument from targargs and buildargs
8874         (it's always overridden in the Makefile anyway).  Rearrange a bit.
8876         * configure: Move some logic to configure.in.
8877         * configure.in: Move some logic from configure.
8879 2002-05-07  Jeff Johnston  <jjohnstn@redhat.com>
8881         * COPYING.LIBGLOSS: New file.
8883 2002-05-07  Federico G. Schwindt <fgsch@olimpo.com.br>
8885         * Makefile.in: Honour DESTDIR.
8887 2002-05-05  Alexandre Oliva  <aoliva@redhat.com>
8889         * configure.in (noconfigdirs): Don't disable libgcj on
8890         sparc64-*-solaris* and sparcv9-*-solaris*.
8892 2002-05-03  Alexandre Oliva  <aoliva@redhat.com>
8894         * configure.in: Revert 2002-04-18's patch; fixed in libjava.
8896 2002-05-03  Thomas Fitzsimmons  <fitzsim@redhat.com>
8898         * configure.in (FLAGS_FOR_TARGET): Do not add
8899         -B$$r/$(TARGET_SUBDIR)/newlib/ when compiling newlib natively
8900         on i[3456]86-*-linux*.
8902 2002-05-01  Thomas Fitzsimmons  <fitzsim@redhat.com>
8904         * configure.in (noconfigdirs): Replace [ ] with test.
8906         * configure.in (noconfigdirs): Do not add target-newlib if
8907         target == i[3456]86-*-linux*, and host == target.
8909 2002-04-29  Mark Mitchell  <mark@codesourcery.com>
8911         * config.guess: Updated to 2002-04-26's version.
8912         * config.sub: Updated to 2002-04-26's version.
8914 2002-04-29  Nathanael Nerode  <neroden@doctormoo.dyndns.org>
8916         * configure.in: delete reference to absent file
8918         * configure.in: replace '[' with 'test'
8920         * configure.in: Eliminate references to gash.
8921         * Makefile.in: Eliminate references to gash.
8923         * configure.in: remove useless references to 'pic' makefile fragments.
8925         * configure.in: (*-*-windows*) Finish removing.
8927         * configure.in: Eliminate redundant test for libgui.
8929 2002-04-26  Joel Sherrill  <joel@OARcorp.com>
8931         * configure.in (h8300*-*-rtems*): Disable libf2c and libgcj.
8932         (sparc-*-elf*, sparc64-*-elf*): Disable libgcj.
8934 2002-04-19  Nathanael Nerode  <neroden@twcny.rr.com>
8936         * configure.in: remove references to dead files
8938 2002-04-18  Tom Tromey  <tromey@redhat.com>
8940         * configure.in: Disallow configuring libgcj when it is already
8941         installed and we're using Solaris 2.8 linker.  Do enable libgcj on
8942         Solaris 2.8 by default.  For PR libgcj/6158.
8944 2002-04-17  Nathanael Nerode  <neroden@twcny.rr.com>
8946         * configure.in:  Move default CC setting out of config/mh-* fragments
8947         directly into here.
8949 2002-04-17  Nathanael Nerode  <neroden@twcny.rr.com>
8951         * configure.in: don't even try to configure or make a subdirectory
8952         if there's no configure script for it.
8954 2002-04-15  Mark Mitchell  <mark@codesourcery.com>
8956         * MAINTAINERS: Remove chill maintainers.
8957         * Makefile.in (CHILLFLAGS): Remove.
8958         (CHILL_LIB): Remove.
8959         (TARGET_CONFIGDIRS): Remove libchill.
8960         (CHILL_FOR_TARGET): Remove.
8961         (BASE_FLAGS_TO_PASS): Don't pass CHILLFLAGS, CHILL_FOR_TARGET, or
8962         CHILL_LIB.
8963         (CONFIGURE_TARGET_MODULES): Remove configure-target-libchill.
8964         (CHECK_TARGET_MODULES): Likewise.
8965         (INSTALL_TARGET_MODULES): Likewise.
8966         (CLEAN_TARGET_MODULES): Likewise.
8967         (configure-target-libchill): Remove.
8968         (all-target-libchill): Remove.
8969         * configure.in (target_libs): Remove target-libchill.
8970         Do not compute CHILL_FOR_TARGET.
8971         * libchill: Remove directory.
8973 2002-04-15  DJ Delorie  <dj@redhat.com>
8975         * Makefile.in, configure.in, configure: Sync with gcc, entries
8976         follow...
8978 2002-04-08  Tom Tromey  <tromey@redhat.com>
8980         * configure.in: Add FLAGS_FOR_TARGET to GCJ_FOR_TARGET.
8981         Fixes PR libgcj/6068.
8983 2002-03-30  Krister Walfridsson  <cato@df.lth.se>
8985         * configure.in (i*86-*-netbsdelf*): Don't disable libgcj.
8987 2002-03-27  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
8989         * configure.in (alpha*-dec-osf*): Enable libgcj.
8991 2002-03-24  Nick Clifton  <nickc@cambridge.redhat.com>
8993         Fix for: PR bootstrap/3591, target/5676
8994         * configure.in (mcore-pe): Disable the configuration of
8995         libstdc++-v3 since exceptions are not supported.
8997 2002-03-20  Anthony Green  <green@redhat.com>
8999         * configure.in: Enable libgcj for xscale-elf target.
9001 2002-02-28  Alexandre Oliva  <aoliva@redhat.com>
9003         * configure.in (libstdcxx_flags): Don't add libstdc++-v3 flags for
9004         libjava.
9005         (CXX_FOR_TARGET): Explain why -shared-libgcc here.
9007 2002-02-22  Alexandre Oliva  <aoliva@redhat.com>
9009         * configure.in (CXX_FOR_TARGET): Add -shared-libgcc for
9010         libstdc++-v3 and libjava.
9012 2002-02-11  Adam Megacz <adam@xwt.org>
9014         * gcc/Makefile.in: Removed libstdc++-v3 dependancy for libjava and
9015         boehm-gc
9017 2002-02-09  Alexandre Oliva  <aoliva@redhat.com>
9019         * config.guess: Updated to 2002-01-30's version.
9020         * config.sub: Updated to 2002-02-01's version.
9021         Contribute sh64-elf.
9022         2000-12-01  Alexandre Oliva  <aoliva@redhat.com>
9023         * configure.in: Added sh64-*-*.
9025 2002-01-17  H.J. Lu <hjl@gnu.org>
9027         * Makefile.in (all-fastjar): Also depend on all-libiberty.
9028         (all-target-fastjar): Also depend on all-target-libiberty.
9030 Wed Dec  5 07:33:45 2001  Douglas B. Rupp  <rupp@gnat.com>
9032         * configure, configure.in: Use temp file for long sed commands.
9034 2001-11-14  Hans-Peter Nilsson  <hp@bitrange.com>
9036         * configure.in (noconfigdirs) [h8300*-*-*, h8500-*-*]: Disable
9037         libf2c.
9039 2001-11-03  Hans-Peter Nilsson  <hp@bitrange.com>
9041         * configure.in (noconfigdirs) [mmix-*-*]: Disable libgcj.
9043 2001-10-11  Hans-Peter Nilsson  <hp@axis.com>
9045         * configure.in (noconfigdirs) [cris-*-*]: Disable libgcj.
9047 2001-10-02  Joseph S. Myers  <jsm28@cam.ac.uk>
9049         * configure: Handle temporary files securely using mkdir.
9051 2001-09-26  Will Cohen <wcohen@redhat.com>
9053         * configure.in (*-*-linux*): Disable configuration of target-newlib
9054         and target-libgloss.
9056 2001-09-26  Alexandre Oliva  <aoliva@redhat.com>
9058         * Makefile.in (EXTRA_TARGET_FLAGS): Pass RANLIB_FOR_TARGET for
9059         RANLIB.
9061 2001-08-11  Graham Stott  <grahams@redhat.com>
9063         * Makefile.in (check-c++): Add missing semicolon.
9065 2001-07-25  Andrew Haley  <aph@cambridge.redhat.com>
9067         * configure.in (sh-*-linux*): New.
9069 2001-07-12  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
9071         * configure.in (noconfigdirs): Don't compile libiberty, libstdcxx
9072         and libgcj on m68hc11/m68hc12.
9074 2001-06-27  H.J. Lu  (hjl@gnu.org)
9076         * Makefile (CFLAGS_FOR_BUILD): New.
9077         (EXTRA_GCC_FLAGS): Add CFLAGS_FOR_BUILD.
9079 2001-06-01  Hans-Peter Nilsson  <hp@axis.com>
9081         * configure.in (libstdcxx_flags): Do not try to execute
9082         libstdc++-v3/testsuite_flags until it exists.
9084 2001-05-18  Benjamin Kosnik  <bkoz@redhat.com>
9086         * configure.in (libstdcxx_flags): Remove reference to libstdc++.INC.
9088 2001-05-09  Jeffrey Oldham  <oldham@codesourcery.com>
9090         * ltcf-cxx.sh: Add -nostdlib to IRIX 6 archive_cmds.
9092 Mon Apr 23 09:15:03 2001  Anthony Green  <green@redhat.com>
9094         * configure.in: Move *-chorusos target case to the proper switch.
9095         Disable libgcj.
9097 2001-04-13  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>
9099         * Makefile.in (STAGE1_CFLAGS): Pass down.
9101 2001-04-13  Alan Modra  <amodra@one.net.au>
9103         * config.guess: Add hppa64-linux support.  Note for next import that
9104         this is already in the master file.
9105         * configure.in: Likewise.  Accept `parisc' alias for `hppa'.
9107 2001-03-22  Colin Howell  <chowell@redhat.com>
9109         * Makefile.in (DO_X): Do not backslash single-quotes in
9110         backquotes (two places).
9112 2001-03-18  Laurynas Biveinis  <lauras@softhome.net>
9114         * Makefile.in (DO_X): Quote nested quotes.
9116 2001-03-15  Laurynas Biveinis  <lauras@softhome.net>
9118         * Makefile.in (DO_X): Use double quotes for quoting
9119         "RANLIB=$${RANLIB}".
9121 2001-03-09  Nicola Pero <n.pero@mi.flashnet.it>
9123         * configure.in: Only use `lang_requires' for languages athat are
9124         actually enabled.
9126 2001-03-07  Tom Tromey  <tromey@redhat.com>
9128         * configure.in: Allow config-lang.in to set `lang_requires' to list
9129         of other required languages.
9131 2001-03-06  Laurynas Biveinis  <lauras@softhome.net>
9133         * Makefile.in: Remove RANLIB definition. Use RANLIB
9134         in RANLIB_FOR_TARGET, EXTRA_HOST_FLAGS, EXTRA_TARGET_FLAGS,
9135         EXTRA_GCC_FLAGS, $(DO_X) targets only when the RANLIB is set.
9137 2001-02-28  Benjamin Kosnik  <bkoz@redhat.com>
9138             Alexandre Oliva  <aoliva@redhat.com>
9140         * Makefile.in (check-c++): Use tabs, not spaces.
9142 2001-02-19  Benjamin Kosnik  <bkoz@redhat.com>
9144         * Makefile.in (check-c++): New rule.
9146         * configure.in (target_libs): Remove libg++.
9147         (noconfigdirs): Remove libg++.
9148         (noconfigdirs): Same.
9149         (noconfigdirs): Same.
9150         (noconfigdirs): Same.
9152         * config-ml.in: Remove libg++ references.
9154         * Makefile.in (TARGET_CONFIGDIRS): Remove libio, libstdc++, libg++.
9155         (ALL_TARGET_MODULES): Same.
9156         (configure-target-libg++): Remove.
9157         (all-target-libg++): Remove.
9158         (configure-target-libio): Remove.
9159         (all-target-libio): Remove.
9160         (check-target-libio): Remove.
9161         (.PHONY): Remove.
9162         (libg++.tar.bz2): Remove.
9163         (all-target-cygmon): Remove libio.
9164         (all-target-libstdc++): Remove.
9165         (configure-target-libstdc++): Remove.
9166         (TARGET_LIB_PATH): Remove libstdc++.
9167         (ALL_GCC_CXX): Remove libstdc++.
9168         (all-target-gperf): Correct.
9170 2001-02-15  Anthony Green  <green@redhat.com>
9172         * configure: Introduce GCJ_FOR_TARGET.
9173         * configure.in: Ditto.
9174         * Makefile.in: Ditto.
9176 2001-02-08  Chandrakala Chavva <cchavva@redhat.com>
9178         * configure.in: for *-chorusos, don't config target-newlib and
9179         target-libgloss.
9181 2001-02-04  Mark Mitchell  <mark@codesourcery.com>
9183         Remove V2 C++ library.
9184         * configure.in: Remove --enable-libstdcxx_v3 support.
9186 2001-01-27  Richard Henderson  <rth@redhat.com>
9188         * configure.in (target_makefile_frag) [alpha*-*]: Use mt-alphaieee.
9190 2001-01-26  Tom Tromey  <tromey@redhat.com>
9192         * configure.in: Allow libgcj to be built on Sparc Solaris.
9194 2001-01-23  Bryce McKinlay  <bryce@albatross.co.nz>
9196         * configure.in: Enable libgcj on several additional platforms.
9198 2001-01-22  Bryce McKinlay  <bryce@albatross.co.nz>
9200         * configure.in: Enable libgcj for linux targets.
9202 2001-01-09  Mike Stump  <mrs@wrs.com>
9204         * Makefile.in (CONFIGURE_TARGET_MODULES): Pass back configuration
9205         failures of subdirectories.
9207 2001-01-02  Laurynas Biveinis  <lauras@softhome.net>
9209         * configure: handle DOS-style absolute paths.
9211 2001-01-02  Laurynas Biveinis  <lauras@softhome.net>
9213         * configure.in: remove supported directories from $noconfigdirs for DJGPP.
9215 2000-12-18  Benjamin Kosnik  <bkoz@redhat.com>
9217         * Makefile.in (BASE_FLAGS_TO_PASS): Alphabetize.
9218         (libstdcxx_incdir): Pass down.
9219         * config.if: Remove expired bits for cxx_interface, add stub.
9220         (libstdcxx_incdir): Add variable for g++ include directory.
9221         * configure.in (gxx_include_dir): Use it.
9223 2000-12-15  Andreas Jaeger  <aj@suse.de>
9225         * configure.in: Handle lang_dirs.
9227 2000-12-13  Anthony Green  <green@redhat.com>
9229         * configure.in: Disable libgcj for any target not specifically
9230         listed.  Disable libgcj for x86 and Alpha Linux until compatible
9231         with g++ abi.
9233 2000-12-13  Mike Stump  <mrs@wrs.com>
9235         * Makefile.in (local-distclean): Also remove fastjar.
9237 2000-12-10  Anthony Green  <green@redhat.com>
9239         * configure.in: Define libgcj.  Disable libgcj target libraries for
9240         most targets.
9242 2000-12-09  Alexandre Petit-Bianco  <apbianco@cygnus.com>
9244         * configure.in (target_libs): Revert 2000-12-08 patch.
9245         (noconfigdirs): Added target-libjava.
9247 2000-12-09  Laurynas Biveinis  <lauras@softhome.net>
9249         * Makefile.in: handle DOS-style absolute paths.
9251 2000-12-08  Alexandre Petit-Bianco  <apbianco@cygnus.com>
9253         * Makefile.in (TARGET_CONFIGDIRS): Wrong place. Removed note about
9254         libjava.
9255         * configure.in (target_libs): Removed `target-libjava'.
9257 2000-12-08  Alexandre Petit-Bianco  <apbianco@cygnus.com>
9259         * Makefile.in (TARGET_CONFIGDIRS): Added note about libjava.
9260         (ALL_MODULES): Added fastjar.
9261         (NATIVE_CHECK_MODULES, INSTALL_MODULES, CLEAN_MODULES): Likewise.
9262         (all-target-libjava): all-fastjar replaces all-zip.
9263         (all-fastjar): Added.
9264         (configure-target-fastjar, all-target-fastjar): Likewise.
9265         * configure.in (host_tools): Added fastjar.
9267 2000-12-07  Mike Stump  <mrs@wrs.com>
9269         * Makefile.in (local-distclean): Remove leftover built files.
9271 2000-11-16  Fred Fish  <fnf@be.com>
9273         * configure.in (enable_libstdcxx_v3): Fix typo,
9274         libstd++ -> libstdc++.
9276 2000-11-13  Joseph S. Myers  <jsm28@cam.ac.uk>
9278         * configure: Provide the original toplevel configure arguments
9279         (including $0) to subprocesses in the environment rather than
9280         through gcc/configargs.h.
9282 2000-11-12  Mark Mitchell  <mark@codesourcery.com>
9284         * configure: Turn on libstdc++ V3 by default.
9286 2000-10-16  Michael Meissner  <meissner@redhat.com>
9288         * configure (gcc/configargs.h): Only create if there is a build GCC
9289         directory created.
9291 2000-10-05  Phil Edwards  <pme@gcc.gnu.org>
9293         * configure: Save configure arguments to gcc/configargs.h.
9295 2000-10-04  Andris Pavenis  <pavenis@latnet.lv>
9297         * Makefile.in (bootstrap): avoid recursion if subdir missing
9298         (cross): ditto
9299         (do-proto-toplev): ditto
9301 Wed Sep 13 11:11:29 2000  Jeffrey A Law  (law@cygnus.com)
9303         * configure.in: Do not build byacc for hppa64.  Provide paths to the
9304         X11 libraries for hppa64.
9306 2000-09-02  Anthony Green  <green@cygnus.com>
9308         * Makefile.in (all-gcc): Depend on all-zlib.
9309         (CLEAN_MODULES): Add clean-zlib.
9310         (ALL_MODULES): Add all-zlib.
9311         * configure.in (host_libs): Add zlib.
9313 2000-08-25  Alexandre Oliva  <aoliva@redhat.com>
9315         * configure.in (FLAGS_FOR_TARGET): Use $target_configdirs and
9316         $targargs to tell whether newlib is going to be built.
9318         * configure.in [disable-libstdcxx-v3] (libstdcxx_flags): Search
9319         $$r/TARGET_SUBDIR/libio for _G_config.h.
9321 2000-08-14  Zack Weinberg  <zack@wolery.cumb.org>
9323         * configure.in (libstdcxx_flags): Remove -isystem $$s/libio/stdio.
9325         * configure: Make enable_threads and enable_shared defaults
9326         explicit.  Substitute enable_threads into generated Makefiles.
9327         * configure.in: Accept *-*-linux* not just *-*-linux-gnu*.
9328         * libtool.m4: Accept *-*-linux* not just *-*-linux-gnu*.
9330 2000-08-02  Manfred Hollstein  <manfredh@redhat.com>
9332         * configure.in: Re-enable all references to libg++ and librx.
9334 2002-04-09  Loren James Rittle  <rittle@labs.mot.com>
9336         * configure.in: Add *-*-freebsd* configurations.
9338 2002-04-07  Andrew Cagney  <ac131313@redhat.com>
9340         * Makefile.in (do-tar-bz2): Delete rule.  Replace with ...
9341         (do-tar, do-bz2): New rules.
9342         (taz): Update.  Replace do-tar-bz2 with do-tar and do-bz2.
9343         (gdb-tar): New rule.
9344         (gdb-taz): Rewrite.  Use gdb-tar and do-bz2.
9345         (insight_dejagnu.tar): New rule.
9346         (insight.tar): New rule.
9347         (gdb+dejagnu.tar): New rule.
9348         (gdb.tar): New rule.
9350 2002-04-07  Andrew Cagney  <ac131313@redhat.com>
9352         * MAINTAINERS: Update dejagnu/
9354 2002-03-16  Alexandre Oliva  <aoliva@redhat.com>
9356         * ltmain.sh (relink_command): Fix typo in previous change.
9358 2002-03-15  Alexandre Oliva  <aoliva@redhat.com>
9360         * ltmain.sh (taglist): Initialized.  Don't let `CC' tag out of it.
9361         (relink_command): Added --tag flags.
9362         (mode=install): If relinking fails; error out.
9364 2002-03-12  Richard Henderson  <rth@redhat.com>
9366         * Makefile.in (NOTPARALLEL): New.  Use it instead of explicit
9367         .NOTPARALLEL tag.
9368         (do-check): Rename from check.
9369         (check): Allow parallel check.
9371 2002-03-11  Richard Henderson  <rth@redhat.com>
9373         * Makefile.in (.NOTPARALLEL): Add fake tag.
9375 2002-03-07  H.J. Lu  (hjl@gnu.org)
9377         * configure.in: Enable gprof for mips*-*-linux*.
9379 2002-02-28  Alexandre Oliva  <aoliva@redhat.com>
9381         * configure.in (libstdcxx_flags): Don't add libstdc++-v3 flags for
9382         libjava.
9383         (CXX_FOR_TARGET): Add -shared-libgcc for libstdc++-v3 and libjava.
9385 2002-02-24  Andrew Cagney  <ac131313@redhat.com>
9387         * texinfo/texinfo.tex: Update to version 2002-02-14.08.
9389 2002-02-23  Daniel Jacobowitz  <drow@mvista.com>
9391         * config.guess: Import from master sources, rev 1.232.
9392         * config.sub: Import from master sources, rev 1.246.
9394 2002-02-23  Alexandre Oliva  <aoliva@redhat.com>
9396         * Makefile.in (MAKEINFO): Don't assume makeinfo will be built just
9397         because its Makefile is there; test for the executable instead.
9399 2002-02-09  Alexandre Oliva  <aoliva@redhat.com>
9401         Contribute sh64-elf.
9402         2000-12-01  Alexandre Oliva  <aoliva@redhat.com>
9403         * configure.in: Added sh64-*-*.
9405 2002-02-04  Jeff Johnston  <jjohnstn@redhat.com>
9407         * COPYING.NEWLIB: Remove advertising clause from
9408         Berkeley and Red Hat licenses.
9410 2002-02-01  Mo DeJong  <supermo@bayarea.net>
9412         * Makefile.in: Add all-tix to deps for all-snavigator
9413         so that tix is built when building snavigator.
9415 2002-02-01  Ben Elliston  <bje@redhat.com>
9417         * config.guess: Import from master sources, rev 1.229.
9418         * config.sub: Import from master sources, rev 1.240.
9420 2002-01-27  Daniel Jacobowitz  <drow@mvista.com>
9422         From Steve Ellcey <sje@cup.hp.com>:
9423         * libtool.m4 (HPUX_IA64_MODE): Set to 32 or 64 based on ABI.
9424         (lt_cv_deplibs_check_method, lt_cv_file_magic_cmd,
9425         lt_cv_file_magic_test_file): Set to appropriate values for HP-UX
9426         IA64.
9427         * ltcf-c.sh (archive_cmds, hardcode_*): Ditto.
9428         * ltconfig (shlibpath_*, dynamic_linker, library_names_spec,
9429         soname_spec, sys_lib_search_path_spec): Ditto.
9431 2002-01-26  Jason Thorpe  <thorpej@wasabisystems.com>
9433         * configure.in (*-*-netbsd*): New.  Skip target-newlib,
9434         target-libiberty, and target-libgloss.  Skip Java-related
9435         libraries if not supported for NetBSD on target CPU.
9437 2002-01-23  Nick Clifton  <nickc@cambridge.redhat.com>
9439         * configure.in: Import StrongARM and XScale target_configdirs from
9440         FSF GCC version.
9442 2002-01-16  H.J. Lu  (hjl@gnu.org)
9444         * config.guess: Import from master sources, rev 1.225.
9445         * config.sub: Import from master sources, rev 1.238.
9447         * MAINTAINERS: Updated notes on config.guess and config.sub.
9449 2002-01-11  Steve Ellcey  <sje@cup.hp.com>
9451         * configure.in (ia64*-*-hpux*): New target for IA64 HP-UX,
9452         ld and gdb are not supported.
9454 2002-01-07  Jeff Johnston  <jjohnstn@redhat.com>
9456         * Change reference to Cygnus Solutions to be Red Hat.
9458 2002-01-07  Jeff Johnston  <jjohnstn@redhat.com>
9460         * COPYING.NEWLIB: Update generic copyright date.
9462 2002-01-07  Mark Salter  <msalter@redhat.com>
9464         * configure.in: Remove target-bsp and target-cygmon from arm builds.
9465           Allow target-libgloss to be built for arm, strongarm, and xscale.
9467 2002-01-03  Ben Elliston  <bje@redhat.com>
9469         * MAINTAINERS: Update URL for config.* scripts.
9471 2001-12-18  Alan Modra  <amodra@bigpond.net.au>
9473         * config.sub: Import latest version.
9474         * config.guess: Likewise.
9476 2001-12-13  Thomas Fitzsimmons  <fitzsim@redhat.com>
9478         * configure.in (FLAGS_FOR_TARGET): Remove -nostdinc and -isystem
9479         options for i[3456]86-pc-linux* native builds.
9481 2001-12-05  Laurent Guerby  <guerby@acm.org>
9483         * MAINTAINERS: gcc adopts symlink-tree, refer more to
9484         libiberty.
9486         Import this patch from gcc:
9488         2000-12-09  Laurynas Biveinis  <lauras@softhome.net>
9490             * symlink-tree: handle DOS-style absolute paths.
9492 2001-11-28  DJ Delorie <dj@redhat.com>
9493             Zack Weinberg  <zack@codesourcery.com>
9495         When build != host, create libiberty for the build machine.
9497         * Makefile.in (TARGET_CONFIGARGS, BUILD_CONFIGARGS): Replace
9498         CONFIG_ARGUMENTS.
9499         (ALL_BUILD_MODULES_LIST, BUILD_CONFIGDIRS, BUILD_SUBDIR):
9500         New variables.
9501         (ALL_BUILD_MODULES, CONFIGURE_BUILD_MODULES): New variables
9502         and rules.
9503         (all.normal): Depend on ALL_BUILD_MODULES.
9504         (CONFIGURE_TARGET_MODULES rule): Use TARGET_CONFIGARGS.
9505         (all-build-libiberty): Depend on configure-build-libiberty.
9507         * configure: Calculate and substitute proper value for
9508         ALL_BUILD_MODULES.
9509         * configure.in: Create the build subdirectory.
9510         Calculate and substitute TARGET_CONFIGARGS (formerly
9511         CONFIG_ARGUMENTS); also BUILD_SUBDIR and BUILD_CONFIGARGS (new).
9513 2001-11-26  Geoffrey Keating  <geoffk@redhat.com>
9515         * config.sub: Update to version 1.232 on subversion.
9517 2001-11-20  Nick Clifton  <nickc@cambridge.redhat.com>
9519         * Makefile.in (do-proto-toplev): Use msgfmt to generate .gmo
9520         files from .po files for a distribution.
9522 2001-11-19  Hans-Peter Nilsson  <hp@bitrange.com>
9524         * COPYING.NEWLIB: Mention preserved notice in specific parts.
9526 2001-11-13  Jeff Holcomb  <jeffh@redhat.com>
9528         Merged from net gcc:
9529         2001-07-30  Jeff Sturm  <jsturm@one-pont.com>
9530         * ltcf-c.sh: Use $objext, not $ac_objext.
9531         2001-07-27  Mark Kettenis  <kettenis@gnu.org>
9532         * ltcf-cxx.sh: Add support for GNU.
9533         2001-07-22  Timothy Wall  <twall@redhat.com>
9534         * ltcf-c.sh: Don't disable shared libraries for AIX5/IA64.  Preserve
9535         default settings if using GNU tools with that configuration.
9536         * ltcf-cxx.sh: Ditto.
9537         * ltcf-gcj.sh: Ditto.
9538         2001-07-21  Michael Chastain  <chastain@redhat.com>
9539         * ltconfig: Set max_cmd_len to a maximum of 512Kb, as it seems some
9540         HPUX 11.0 systems have trouble with 1MB.  Mark as gcc-local.
9541         * ltmain.sh: Mark as gcc-local.
9543 2001-11-13  Jeff Holcomb  <jeffh@redhat.com>
9545         * Makefile.in (all-bison): Revert 2001-10-24.
9546         Don't depend on texinfo.
9548 2001-11-12  Hans-Peter Nilsson  <hp@bitrange.com>
9550         * COPYING.NEWLIB: Add BSD-style license/copyright blurb for my work.
9552 2001-11-08  Phil Edwards  <pedwards@disaster.jaj.com>
9554         * configure.in (--enable-languages): Be more permissive about
9555         syntax.  Check for empty lists better.  Warn about $LANGUAGES.
9557 2001-11-06  Hans-Peter Nilsson  <hp@bitrange.com>
9559         * Makefile.in (MAKEINFO): Use "missing" for makeinfo older than 4.0.
9561 2001-10-24  Jeff Holcomb  <jeffh@redhat.com>
9563         Makefile.in (all-bison): Don't depend on texinfo.
9565 2001-10-03  Alan Modra  <amodra@bigpond.net.au>
9567         * gettext.m4: Test po/POTFILES.in exists before trying to read.
9569 2001-09-29  Alexandre Oliva  <aoliva@redhat.com>
9571         * Makefile.in (configure-target-gperf): Depend on $(ALL_GCC_CXX).
9573 2001-09-28  Hans-Peter Nilsson  <hp@axis.com>
9575         * config.sub, config.guess: Import latest from subversions.
9577 2001-09-21  Alexandre Oliva  <aoliva@redhat.com>
9579         * Makefile.in (AS_FOR_TARGET, LD_FOR_TARGET,
9580         DLLTOOL_FOR_TARGET, WINDRES_FOR_TARGET, AR_FOR_TARGET,
9581         RANLIB_FOR_TARGET, NM_FOR_TARGET): Don't use double quotes to
9582         avoid quotes nesting problems.
9583         (NATIVE_CHECK_MODULES): Ditto, just for consistency.
9584         (DO_X): Export only variables that are set.
9586 2001-09-19  Ben Elliston  <bje@redhat.com>
9588         * configure.in (sparc-sun-solaris2*): Don't use /usr/bin/which on
9589         Solaris when testing for the /usr/ucb/cc compiler; it has incorrect
9590         semantics.  Use the shell built-in "type" command instead.
9592 2001-09-15  Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
9594         * config.sub: Reverted the earlier change, this version is not the
9595         master file.
9597 2001-09-14  Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
9599         * config.sub: Change machine triplets from mipsel*-* to mips*el-*.
9600         Add support for mips64.
9602 2001-09-03  Jeff Holcomb  <jeffh@redhat.com>
9604         * configure.in: Enable libstdc++-v3 for h8300 targets.
9606 2001-08-30  Eric Christopher  <echristo@redhat.com>
9607             Jason Eckhardt  <jle@redhat.com>
9609         * config.sub: Add support for mipsisa32.
9611 2001-08-30  Eric Christopher  <echristo@redhat.com>
9613         * config.sub, config.guess: Import latest from subversions.
9615 2001-08-20  Alan Modra  <amodra@bigpond.net.au>
9617         * config.sub, config.guess: Import latest from subversions.
9619 2001-07-26  DJ Delorie  <dj@redhat.com>
9621         * MAINTAINERS: Clarify libiberty merge rules and procedures.
9623 2001-06-19  Alan Modra  <amodra@bigpond.net.au>
9625         * Makefile.in: Revert 2001-06-17.
9626         (VER): If AM_INIT_AUTOMAKE uses BFD_VERSION, get version from bfd/.
9628 2001-06-17  H.J. Lu <hjl@gnu.org>
9630         * Makefile.in (gas.tar.bz2): Pass TOOL=bfd PACKAGE=gas to make.
9631         (gas+binutils.tar.bz2): Likewise.
9632         (binutils.tar.bz2): Pass TOOL=bfd PACKAGE=binutils to make.
9634 Fri Jun  8 11:14:02 2001  Andrew Cagney  <cagney@b1.cygnus.com>
9636         * Makefile.in (VER): When present, extract the version number from
9637         the file version.in.
9639 2001-06-08  Alexandre Oliva  <aoliva@redhat.com>, Jeff Sturm  <jsturm@one-point.com>
9641         * Makefile.in (AS_FOR_TARGET, LD_FOR_TARGET, NM_FOR_TARGET): If
9642         gcc/xgcc is built, use -print-prog-name to find out the program
9643         name to use.
9645 2001-06-04  Mark Mitchell  <mark@codesourcery.com>
9647         * ltcf-c.sh (archive_cmds, archive_expsym_cmds) [solaris,
9648         with_gcc]: Use `gcc -shared' to build a shared library.
9650 2001-06-04  John David Anglin  <dave@hiauly1.hia.nrc.ca>
9652         * ltcf-c.sh (archive_cmd) [hpux, with_gcc]: Use gcc to link shared
9653         archives.
9655 2001-05-28  Simon Patarin <simon.patarin@inria.fr>
9657         * ltcf-cxx.sh (osf3/osf4/osf5): Support creation of C++  shared
9658         libraries when using g++ with native linker.
9660 2001-05-28  Alexandre Oliva  <aoliva@redhat.com>
9662         * ltconfig, ltmain.sh: Upgrade to libtool 1.4a 1.641.2.256.
9664 2001-05-24  Tom Rix <trix@redhat.com>
9666         * configure.in : enable ld for aix
9668 2001-05-22  Alexandre Oliva  <aoliva@redhat.com>
9670         * ltcf-cxx.sh (allow_undefined_flag, no_undefined_flag)
9671         [aix4*|aix5*]: Prepend blank.
9673 2001-05-20  Alexandre Oliva  <aoliva@redhat.com>
9675         * ltconfig, ltmain.sh, libtool.m4, ltcf-c.sh, ltcf-cxx.sh,
9676         ltcf-gcj.sh: Upgraded to libtool 1.4a 1.641.2.254.  Rebuilt a number
9677         of subdir/configure scripts to use the new libtool.m4.
9679 2001-05-14  H.J. Lu <hjl@gnu.org>
9681         * config.if (libc_interface): Set to -libc6.2- for cross
9682         compiling to Linux/glibc 2.2.
9684 2001-05-03  Alexandre Oliva  <aoliva@redhat.com>
9686         * configure.in (noconfigdirs) [*-cygwin*, *-mingw*, *-beos]: Disable
9687         libgcj.
9689 2001-04-26  Alexandre Oliva  <aoliva@redhat.com>
9691         * configure.in (noconfigdirs): Don't reset it from scratch in the
9692         target case; only append to it.
9694 2001-04-26  Alexandre Oliva  <aoliva@redhat.com>
9696         * configure.in (noconfigdirs) [hppa*-*-*, mips*-*-irix6*,
9697         sparc-*-solaris2.8]: Disable ${libgcj}.
9699 2001-04-25  Alexandre Oliva  <aoliva@redhat.com>
9701         * configure.in (libgcj_saved): Copy from $libgcj.
9702         (libgcj): Zero out if --enable-libgcj; add to noconfigdirs is
9703         --disable-libgcj.
9705 2001-04-20  Alexandre Oliva  <aoliva@redhat.com>
9707         * ltconfig, ltmain.sh, ltcf-cxx.sh: Upgraded to libtool 1.4a
9708         1.641.2.228.
9710 2001-04-12  Alexandre Oliva  <aoliva@redhat.com>
9712         * ltconfig, ltmain.sh, libtool.m4, ltcf-c.sh, ltcf-cxx.sh,
9713         ltcf-gcj.sh: Upgraded to libtool 1.4a 1.641.2.226.
9715 2001-04-01  Alexandre Oliva  <aoliva@redhat.com>
9717         * Makefile.in (CXX_FOR_TARGET_FOR_RECURSIVE_MAKE, RECURSE_FLAGS):
9718         New macros.
9719         (bootstrap, cross): Use RECURSE_FLAGS.
9720         * configure.in: Subst CXX_FOR_TARGET_FOR_RECURSIVE_MAKE.
9722 2001-03-27  Alexandre Oliva  <aoliva@redhat.com>
9724         * configure.in (CXX_FOR_TARGET): Use xgcc for libstdc++-v3.
9726 2001-03-23  Nick Clifton  <nickc@redhat.com>
9728         * README-maintainer-mode: Add note about inability to use "make
9729         distclean" in maintainer mode.
9731 2001-03-22  Alexandre Oliva  <aoliva@redhat.com>
9733         Re-installed:
9734         2001-01-02  Laurynas Biveinis  <lauras@softhome.net>
9735         * ltcf-c.sh: Clear ac_cv_prog_cc_pic for DJGPP.  Do not add
9736         '-DPIC' to ac_cv_prog_cc_pic for DJGPP.
9737         * ltcf-cxx.sh: Likewise.
9738         * ltcf-gcj.sh: Likewise.
9740 2001-03-22  Philip Blundell  <philb@gnu.org>
9742         * config.sub, config.guess: Import latest from subversions.
9744 2001-03-22  Alexandre Oliva  <aoliva@redhat.com>
9746         * ltconfig, ltmain.sh, libtool.m4, ltcf-c.sh, ltcf-cxx.sh,
9747         ltcf-gcj.sh: Upgraded to libtool 1.4a 1.641.2.198.
9749 2001-03-20  Michael Chastain  <chastain@redhat.com>
9751         * Makefile.in: all-m4 depends on all-texinfo.
9753 2001-03-08  Alexandre Oliva  <aoliva@redhat.com>
9755         * Makefile.in (ALL_GCC, ALL_GCC_C, ALL_GCC_CXX): Set before use.
9757 2001-02-22  Jeff Johnston <jjohnstn@redhat.com>
9759         * COPYING.NEWLIB: Remove DJ Delorie's address because it is no
9760         longer valid.
9762 2001-02-16  Nick Clifton  <nickc@redhat.com>
9764         * configure.in (noconfigdirs): Allow configuration of texinfo
9765         for Cygwin hosts.
9767 2001-02-09  Martin Schwidefsky  <schwidefsky@de.ibm.com>
9769         * config.guess: Add linux target for S/390.
9770         * config.sub: Likewise.
9771         * configure.in: Likewise.
9773 2001-02-06  Ben Elliston  <bje@redhat.com>
9775         * configure: Output host type to stdout, not stderr.
9777 2001-02-04  Michael Sokolov  <msokolov@ivan.Harhan.ORG>
9779         * config.guess: Import from subversions.gnu.org (revision 1.181).
9780         * config.sub: Import from subversions.gnu.org (revision 1.199).
9782 2001-01-30  Alan Modra  <alan@linuxcare.com.au>
9784         * config.guess: Handle hppa64-linux systems.
9786 2001-01-27  Michael Sokolov  <msokolov@ivan.Harhan.ORG>
9788         * ltcf-cxx.sh (ac_cv_prog_cc_pic_works, ac_cv_prog_cc_static_works):
9789         Don't unset, it's non-portable and no longer necessary, set to empty
9790         instead.
9792 2001-01-27  Michael Sokolov  <msokolov@ivan.Harhan.ORG>,  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>
9794         * ltconfig: Shell portability fix for the tagname validity check.
9796 2001-01-27  Michael Sokolov  <msokolov@ivan.Harhan.ORG>
9798         * ltcf-cxx.sh: Use parentheses around eval $ac_compile.
9800 2001-01-27  Alexandre Oliva  <aoliva@redhat.com>
9802         * ltcf-c.sh (ld_shlibs) [aix5*]: Disable on unknown CPU types.
9803         * ltcf-cxx.sh, ltcf-gcj.sh: Likewise.
9805 2001-01-24  Alexandre Oliva  <aoliva@redhat.com>
9807         * ltmain.sh (TAG disable-shared, TAG disable-static): Make sure we
9808         keep at least one of build_libtool_libs or build_old_libs set to
9809         yes.
9811 2001-01-24  Alexandre Oliva  <aoliva@redhat.com>
9813         * ltcf-gcj.sh (lt_simple_link_test_code): Remove stray `(0)'.
9814         * libtool.m4 (_AC_LIBTOOL_GCJ): Pass $CPPFLAGS on.
9816 2000-11-07  Philip Blundell  <pb@futuretv.com>
9818         * Makefile.in (ETC_SUPPORT): Also add configbuild.* and configdev.*.
9820 2000-11-03  Philip Blundell  <pb@futuretv.com>
9822         * Makefile.in (ETC_SUPPORT): Add configure.texi and associated info
9823         files.
9825 2001-01-15  Jeff Johnston  <jjohnstn@redhat.com>
9827         * COPYING.NEWLIB: Put into source repository.
9829 2001-01-15  Ben Elliston  <bje@redhat.com>
9831         * configure.in (host_tools): Add sid.
9832         Always configure cgen.
9833         * Makefile.in (all-sid): New target.
9834         (check-sid, clean-sid, install-sid): Likewise.
9836 2001-01-07  Andreas Jaeger  <aj@suse.de>
9838         * config.sub, config.guess: Update from subversions.
9840 2000-12-12  Alexandre Oliva  <aoliva@redhat.com>
9842         * configure.in: Disable language-specific target libraries for
9843         languages that aren't enabled.
9845 2000-11-24  Nick Clifton  <nickc@redhat.com>
9847         * configure.in (xscale-elf): Add target.
9848         (xscale-coff): Add target.
9849         (c4x, c5x, tic54x): Move after ARM targets.
9851 2000-11-23  Alexandre Oliva  <aoliva@redhat.com>
9853         * ltcf-gcj.sh: Added file, required by 2000-11-18 merge.
9855 2000-11-20  Ian Lance Taylor  <ian@zembu.com>
9857         * ltcf-cxx.sh: Added file, required by 2000-11-18 merge.
9859 2000-11-18  Alexandre Oliva  <aoliva@redhat.com>
9861         * Makefile.in: Merge with GCC and libgcj.
9862         (ALL_GCC_C, ALL_GCC_CXX): New macros.  Use them as dependencies of
9863         configure-target-<library> when their configure scripts need the C
9864         or C++ library to have already been built to work properly.
9865         (do_proto_toplev): Set them to an empty string.
9867 2000-11-18  Alexandre Oliva  <aoliva@redhat.com>
9869         * Makefile.in (HOST_LIB_PATH, TARGET_LIB_PATH): New macros.
9870         (REALLY_SET_LIB_PATH): Use them.
9872 2000-11-06  Christopher Faylor <cgf@cygnus.com>
9874         * config.sub: Add support for Sun Chorus
9876 2000-11-02  Per Lundberg  <plundis@chaosdev.org>
9878         * config.sub: Add support for the *-storm-chaos OS.
9880 2000-10-30  Stephane Carrez  <stcarrez@worldnet.fr>
9882         * configure.in (noconfigdirs): Don't compile some
9883         of the libraries for 68HC11 & 68hc12 targets.
9885 2000-09-30  Alexandre Oliva  <aoliva@redhat.com>
9887         * ltconfig, ltmain.sh, libtool.m4: Updated from libtool
9888         multi-language branch, to work around Solaris' /bin/sh bug.  Rebuilt
9889         all affected `configure' scripts.
9891 2000-09-25  Alexandre Oliva  <aoliva@redhat.com>
9893         * Makefile.in (DEVO_SUPPORT): Added gettext.m4, libtool.m4 and
9894         ltcf-c.sh.
9896 2000-09-12  Philip Blundell  <philb@gnu.org>
9898         * config.sub, config.guess: Update from subversions.
9900 2000-09-06  Alexandre Oliva  <aoliva@redhat.com>
9902         * Makefile.in (all-zlib): Added dummy target.
9904         * ltconfig, ltmain.sh, libtool.m4, ltcf-c.sh: Updated from libtool
9905         multi-language branch.
9907 2000-09-05  Alexandre Oliva  <aoliva@redhat.com>
9909         * Makefile.in (all-bootstrap): Added all-texinfo and all-zlib.
9910         (bootstrap*): Depend on all-bootstrap.
9912 2000-09-02  Alexandre Oliva  <aoliva@redhat.com>, DJ Delorie  <dj@redhat.com>
9914         * configure.in (FLAGS_FOR_TARGET): Use -nostdinc even for Canadian
9915         crosses, but add gcc/include to the header search path for them.
9917 2000-08-31  Alexandre Oliva  <aoliva@redhat.com>
9919         * ltconfig, ltmain.sh: Updated from libtool multi-language branch.
9920         * libtool.m4, ltcf-c.sh: Copied from libtool multi-language branch.
9921         * gettext.m4: New file, extracted from aclocal.m4.
9923 2000-08-22  Alexandre Oliva  <aoliva@redhat.com>
9925         * config-ml.in (CC, CXX): Avoid trailing whitespace.
9926         (LD_LIBRARY_PATH, SHLIB_PATH): Adjust for multilibs and export to
9927         sub-configures.
9929 2000-08-20  Doug Evans  <dje@casey.transmeta.com>
9931         * Makefile.in (ALL_MODULES): Add all-cgen.
9932         (CROSS_CHECK_MODULES,INSTALL_MODULES,CLEAN_MODULES): Similarily.
9933         (all-cgen): New target.
9934         (all-opcodes,all-sim): Depend on all-cgen.
9935         * configure.in (host_tools): Add cgen.
9936         Only configure cgen if --enable-cgen-maint.
9938 2000-08-17  Alexandre Oliva  <aoliva@redhat.com>
9940         * config-ml.in (CC, CXX): Don't introduce a leading space.
9942 2000-08-16  Alexandre Oliva  <aoliva@redhat.com>
9944         * configure.in (libstdcxx_flags): Use
9945         libstdc++-v3/src/libstdc++.INC.
9947 2000-08-15  Alexandre Oliva  <aoliva@redhat.com>
9949         * configure.in (libstdcxx_flags): Use libstdc++-v3/src/INCLUDES.
9951 2000-08-11  Jason Merrill  <jason@redhat.com>
9953         * configure.in (CC_FOR_TARGET, CHILL_FOR_TARGET,
9954         CXX_FOR_TARGET): Add -B$$r/gcc/ here.
9955         (FLAGS_FOR_TARGET): Not here.
9956         (CHILL_FOR_TARGET, CXX_FOR_TARGET): Don't check the list of languages.
9958 2000-08-07  DJ Delorie  <dj@redhat.com>
9960         * configure.in (FLAGS_FOR_TARGET): invert test for xgcc, should mean
9961         "if we're also building gcc, and it's a gcc that will run on the
9962         build machine, we want to use its includes instead of the system's
9963         default includes".
9965 2000-08-03  Alexandre Oliva  <aoliva@redhat.com>
9967         * configure.in (libstdcxx_flags): Don't use `"'.
9969         * config-ml.in: Adjust multilib search paths to the
9970         appropriate multilib tree.
9972 2000-08-02  Alexandre Oliva  <aoliva@redhat.com>
9974         * configure.in (CHILL_FOR_TARGET, CXX_FOR_TARGET): Convert blanks to
9975         commas in $LANGUAGES.
9977 2000-08-01  Alexandre Oliva  <aoliva@redhat.com>
9979         * configure.in (qCXX_FOR_TARGET): Use echo instead of expr.
9981 2000-07-31  Alexandre Oliva  <aoliva@redhat.com>
9983         * configure.in (qCXX_FOR_TARGET): Quote `&' characters in
9984         CXX_FOR_TARGET for sed.
9986 2000-07-30  Alexandre Oliva  <aoliva@redhat.com>
9988         * configure.in (CC_FOR_TARGET, CHILL_FOR_TARGET, CXX_FOR_TARGET):
9989         Do not override if already set in the environment or in configure.
9990         Don't duplicate $(FLAGS_FOR_TARGET) if it already appears in them.
9991         (FLAGS_FOR_TARGET): Don't use host directories on Canadian crosses.
9993 2000-07-27  Alexandre Oliva  <aoliva@redhat.com>
9995         * Makefile.in (FLAGS_FOR_TARGET): New macro.
9996         (GCC_FOR_TARGET): Use it.
9997         (CC_FOR_TARGET, CXX_FOR_TARGET, CHILL_FOR_TARGET): Now defined...
9998         * configure.in: ... here.
9999         (FLAGS_FOR_TARGET): Define.  Add ld build dir to -L path.
10000         (libstdcxx_flags): Define and append to CXX_FOR_TARGET.
10002 2000-07-24  Alexandre Oliva  <aoliva@redhat.com>
10004         * Makefile.in (configure-target-libf2c): Depend on $(ALL_GCC).
10005         (configure-target-libchill, configure-target-libobjc): Likewise.
10007         * configure.in: Use the same cache file for all target libs.
10008         * config-ml.in: But different cache files per multilib variant.
10010 2000-07-23  Michael Sokolov  <msokolov@ivan.Harhan.ORG>
10012         * configure (topsrcdir): Don't use dirname.
10014 2000-07-20  Jason Merrill  <jason@redhat.com>
10016         * configure.in: Remove all references to libg++ and librx.
10018         * configure, configure.in, Makefile.in: Unify gcc and binutils.
10020 2000-07-20  Hans-Peter Nilsson  <hp@axis.com>
10022         * config.sub: Update to subversions version 2000-07-06.
10024 2000-07-12  Andrew Haley  <aph@cygnus.com>
10026         * configure.in (host_makefile_frag): Use mh-ia64pic on IA-64 hosts.
10027         (target_makefile_frag): Use mt-ia64pic on IA-64 targets.
10029 2000-07-07  Phil Edwards  <pme@sourceware.cygnus.com>
10031         * symlink-tree:  Check number of arguments.
10033 2000-06-06  Andrew Cagney  <cagney@b1.cygnus.com>
10035         * texinfo/texinfo.tex: Update to version 2000-05-28.15.
10037 2000-07-05  Jim Wilson  <wilson@cygnus.com>
10039         * Makefile.in (CXX_FOR_TARGET): Add libstdc++ to the library
10040         search path for a g++ extracted from the build tree.  This
10041         will allow link tests run by configure scripts in
10042         subdirectories to succeed.
10044 2000-07-01  Koundinya K  <kk@ddeorg.soft.net>
10046         * ltconfig: Add support for mips-dde-sysv4.2MP
10048 2000-06-28  Corinna Vinschen  <vinschen@cygnus.com>
10050         * ltconfig: Check for host_os beeing one of `cygwin', `mingw' or
10051         `os2'. Force ac_cv_exeext to be ".exe" in that case.
10053 2000-06-19  Timothy Wall  <twall@cygnus.com>
10055         * configure.in (noconfigdirs): Set noconfigdirs for tic54x target.
10056         * config.sub: Add tic54x target.
10058 2000-06-07  Phillip Thomas  <pthomas@suse.de>
10060         * README-maintainer-mode: New file: Contains notes on using
10061         --enable-maintainer-mode with binutils.
10063 2000-05-29  Andrew Cagney  <cagney@b1.cygnus.com>
10065         * texinfo/texinfo.tex: Update. Version from makeinfo 4.0.
10067 2000-05-30  Andrew Cagney  <cagney@b1.cygnus.com>
10069         * config.sub: Import CVS version 1.167 Tue May 30 09:00:07 2000.
10070         * config.guess: Import CVS version 1.148 Tue May 30 09:00:06 2000
10072 20000-05-21  H.J. Lu  (hjl@gnu.org)
10074         * Makefile.in (CC_FOR_TARGET): Make sure as/ld in the gcc
10075         directory are used if they exist. Make sure
10076         $(build_tooldir)/include is searched for header files,
10077         $(build_tooldir)/lib/ for library files.
10078         (GCC_FOR_TARGET): Likewise.
10079         (CXX_FOR_TARGET): Likewise.
10081 2000-05-18  Jeffrey A Law  (law@cygnus.com)
10083         * configure.in (hppa*64*-*-*): Do build ld for this configuration.
10085 2000-05-17  Alexandre Oliva  <aoliva@cygnus.com>
10087         * Makefile.in (configure-target-libiberty): Depend on
10088         configure-target-newlib.
10090 2000-05-16  Alexandre Oliva  <aoliva@cygnus.com>
10092         * configure.in, Makefile.in: Merge all libffi-related
10093         configury stuff from the libgcj tree.
10095 2000-05-16  Andrew Cagney  <cagney@b1.cygnus.com>
10097         Thu Apr 27 11:01:48 2000 Andrew Cagney <cagney@b1.cygnus.com>:
10098         * Makefile.in (do-tar-bz2, do-md5sum): Skip CVS directories.
10100 2000-05-16  Andrew Cagney  <cagney@b1.cygnus.com>
10102         Wed Apr 26 17:03:53 2000 Andrew Cagney <cagney@b1.cygnus.com>:
10103         * Makefile.in (do-djunpack): New target. Update djunpack.bat with
10104         current version information.  Add to proto-toplev directory.
10105         (gdb-taz): Build do-djunpack.
10107 2000-05-15  David Edelsohn  <edelsohn@gnu.org>
10109         * configure.in: Special case powerpc*-*-aix* target_makefile_frag.
10111 2000-05-13 Alexandre Oliva  <oliva@lsd.ic.unicamp.br>
10113         * ltmain.sh: Preserve in relink_command any environment
10114         variables that may affect the linker behavior.
10116 2000-05-12  Jeffrey A Law  (law@cygnus.com)
10118         * config.sub (basic_machine): Recognize hppa64 as a valid cpu type.
10120 2000-05-10  Jim Wilson  <wilson@cygnus.com>
10122         * configure.in (ia64*-*-elf*): Add gdb and friends to noconfigdirs.
10124 2000-05-08  Eli Zaretskii  <eliz@is.elta.co.il>
10126         * djunpack.bat: Change the Sed script to replace @V@ in fnchange.lst
10127         with the version name.
10129 2000-05-01  Benjamin Kosnik  <bkoz@cygnus.com>
10131         * config.if: Tweak.
10133 2000-04-23  Eli Zaretskii  <eliz@is.elta.co.il>
10135         * djunpack.bat: New file.
10137 2000-04-19  Andrew Cagney  <cagney@b1.cygnus.com>
10139         * Makefile.in (taz, gdb-taz, gas.tar.bz2, binutils.tar.bz2,
10140         gas+binutils.tar.bz2, libg++.tar.bz2, gnats.tar.bz2, gdb.tar.bz2,
10141         dejagnu.tar.bz2, gdb+dejagnu.tar.bz2, insight.tar.bz2,
10142         insight+dejagnu.tar.bz2, newlib.tar.bz2): Pass MD5PROG to sub-make.
10144 2000-04-16  Dave Pitts  <dpitts@cozx.com>
10146         * config.sub (case $basic_machine): Change default for "ibm-*"
10147         to "openedition".
10149 2000-04-12  Andrew Cagney  <cagney@b1.cygnus.com>
10151         * Makefile.in (gdb-taz): New target.  GDB specific archive.
10152         (do-md5sum): New target.
10153         (MD5PROG): Define.
10154         (PACKAGE): Default to TOOL.
10155         (VER): Default to a shell script.
10156         (taz): Rewrite target.  Move real work to do-proto-toplev.  Include
10157         md5 checksum generation.
10158         (do-proto-toplev): New target. Create $(PACKAGE)-$(VER) link.
10159         (do-tar-bz2): Delete creation of $(PACKAGE)-$(VER) link.
10160         (gdb.tar.bz2, dejagnu.tar.bz2, gdb+dejagnu.tar.bz2,
10161         insight.tar.bz2): Use gdb-taz to create archive.
10163 2000-04-07  Andrew Cagney  <cagney@b1.cygnus.com>
10165         * configure (warn_cflags): Delete.
10167 2000-04-05  Benjamin Kosnik  <bkoz@cygnus.com>
10168             Martin v. Loewis  <martin@loewis.home.cs.tu-berlin.de>
10170         * configure.in (enable_libstdcxx_v3): Add.
10171         (target_libs): Add bits here to switch between libstdc++-v2 and
10172         libstdc++-v3.
10173         * config.if: And this file too.
10174         * Makefile.in: Add libstdc++-v3 targets.
10176 2000-04-05  Michael Meissner  <meissner@redhat.com>
10178         * config.sub (d30v): Add d30v as a basic machine type.
10180 2000-03-29  Jason Merrill  <jason@casey.cygnus.com>
10182         * configure.in: -linux-gnu*, not -linux-gnu.
10184 2000-03-03  Andrew Cagney  <cagney@b1.cygnus.com>
10186         * Makefile.in (taz): Set PACKAGE to TOOL when not defined.
10187         (do-tar-bz2): Replace TOOL with PACKAGE.
10188         (gdb.tar.bz2): Remove GDBTK from GDB package.
10189         (gdb+dejagnu.tar.bz2, insight.tar.bz2, insight+dejagnu.tar.bz2,
10190         dejagnu.tar.bz2): New packages.
10192 2000-02-27  Andreas Jaeger  <aj@suse.de>
10194         * configure.in: Add entry for mips*-*-linux*, move catch all
10195         *-*-*linux* entry below this one.
10197 2000-02-27  Ian Lance Taylor  <ian@zembu.com>
10199         * ltconfig, ltmain.sh: Update to libtool 1.3.4.
10201 2000-02-24  Nick Clifton  <nickc@cygnus.com>
10203         * config.sub: Support an OS of "wince".
10205 2000-02-24  Andrew Cagney  <cagney@b1.cygnus.com>
10207         * config.guess, config.sub: Updated to match config's 2000-02-15
10208         version.
10210 2000-02-23  Linas Vepstas <linas@linas.org>
10212         * config.sub: Add support for Linux/IBM 370.
10213         * configure.in: Likewise.
10215 2000-02-22  Nick Clifton  <nickc@cygnus.com>
10217         * configure.in: Add mips-pe, sh-pe and arm-wince-pe targets.
10219 2000-02-20  Christopher Faylor <cgf@cygnus.com>
10221         * config.guess: Guess "cygwin" rather than "cygwin32".
10223 2000-02-16  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
10225         * configure (gcc_version): When setting, narrow search to
10226         lines containing `version_string'.
10228 2000-02-15  Denis Chertykov  <denisc@overta.ru>
10230         * config.sub: Add support for avr target.
10232 2000-02-01  Hans-Peter Nilsson  <hp@bitrange.com>
10234         * config.sub: Add mmix-knuth-mmixware.
10236 2000-01-27  Christopher Faylor <cgf@redhat.com>
10238         * Makefile.in (CC_FOR_TARGET): Add new winsup directory
10239         structure stuff to -L library search.
10240         (CXX_FOR_TARGET): Ditto.
10241         (CROSS_CHECK_MODULES): Fix spelling mistake.
10243 2000-01-24  Mark Mitchell  <mark@codesourcery.com>
10245         * Makefile.in (CXX_FOR_TARGET): Use g++, not xgcc, to invoke
10246         the C++ compiler.
10248 2000-01-12  Richard Henderson  <rth@cygnus.com>
10250         * configure.in: Don't build some bits for beos.
10252 2000-01-12  Joel Sherrill (joel@OARcorp.com)
10254         * Makefile.in (CC_FOR_TARGET): Use newlib libraries as well
10255         as include files.
10257 2000-01-06  Geoff Keating  <geoffk@cygnus.com>
10259         * configure.in: Use mt-aix43 to handle *_TARGET defs,
10260         not mh-aix43.
10262 1999-12-14  Richard Henderson  <rth@cygnus.com>
10264         * config.guess (alpha-osf, alpha-linux): Detect ev67.
10265         * config.sub: Accept alphaev[78], alphaev8.
10267 1999-12-03  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>
10269         * config.guess, config.sub: Update from autoconf.
10271 Tue Nov 23 00:57:41 1999  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
10273         * config-ml.in (sparc*-*-*): Disable sparcv9 support if the
10274         necessary libraries are missing.
10276 1999-10-25  Andreas Schwab  <schwab@suse.de>
10278         * configure: Fix quoting inside arguments of eval.
10280 1999-10-21  Nick Clifton  <nickc@cygnus.com>
10282         * config-ml.in: Allow suppression of some ARM multilibs.
10284 Tue Sep  7 23:33:57 1999  Linas Vepstas  <linas@linas.org>
10286         * config.guess: Add OS/390 match pattern.
10287         * config.sub: Add mvs, openedition targets.
10288         * configure.in (i370-ibm-opened*): New.
10290 1999-09-04  Steve Chamberlain  <sac@pobox.com>
10292         * config.sub: Add support for configuring for pj.
10294 1999-08-31  Nick Clifton  <nickc@cygnus.com>
10296         * config.sub (maybe_os): Add support for configuring for fr30.
10298 1999-08-25  Nick Clifton  <nickc@cygnus.com>
10300         * configure.in: Do not configure or build ld for AIX
10301         platforms.  ld is known to be broken on these platforms.
10303 Wed Aug 25 01:12:25 1999  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
10305         * config-ml.in: Pass compiler flag corresponding to multidirs to
10306         subdir configures.
10308 1999-08-09  Ian Lance Taylor  <ian@zembu.com>
10310         * Makefile.in (LDFLAGS): Define.
10312 1999-08-08  Mumit Khan  <khan@xraylith.wisc.edu>
10314         * configure.in (i[3456]-*-mingw32*): Don't put gprof in
10315         noconfigdirs.
10316         (*-*-cygwin*): Likewise.
10318 1999-08-08  Ian Lance Taylor  <ian@zembu.com>
10320         * mkdep: New file.
10321         * Makefile.in (GAS_SUPPORT_DIRS): Add mkdep.
10322         (BINUTILS_SUPPORT_DIRS): Add mkdep.
10324         From Eli Zaretskii <eliz@is.elta.co.il>:
10325         * configure (tmpfile): Change cONf$$ to cNf$$ to avoid an overly
10326         long file name when using DJGPP on MS-DOS.
10328 Wed Aug  4 02:07:14 1999  Jeffrey A Law  (law@cygnus.com)
10330         * config.sub (vxworks case): Use os=-vxworks, not os=vxworks.
10332 1999-07-30  Alan Modra  <alan@spri.levels.unisa.edu.au>
10334         * Makefile.in (check-target-libio): Remove all-target-libstdc++
10335         dependency as this causes "make check" to globally "make all"
10337 Tue Jun 22 23:45:18 1999  Tom Tromey  <tromey@cygnus.com>
10339         * configure.in (target_libs): Added target-zlib.
10340         * Makefile.in (ALL_TARGET_MODULES): Added zlib.
10341         (CONFIGURE_TARGET_MODULES): Likewise.
10342         (CHECK_TARGET_MODULES): Likewise.
10343         (INSTALL_TARGET_MODULES): Likewise.
10344         (CLEAN_TARGET_MODULES): Likewise.
10345         (configure-target-zlib): New target.
10346         (all-target-zlib): Likewise.
10347         (all-target-libjava): Depend on all-target-zlib.
10348         (configure-target-libjava): Depend on configure-target-zlib.
10350         * Makefile.in (configure-target-libjava): Depend on
10351         configure-target-newlib.
10352         (configure-target-boehm-gc): New target.
10353         (configure-target-qthreads): New target.
10355         * configure.in (target_libs): Added target-qthreads.
10356         * Makefile.in (ALL_TARGET_MODULES): Added qthreads.
10357         (CONFIGURE_TARGET_MODULES): Likewise.
10358         (CHECK_TARGET_MODULES): Likewise.
10359         (INSTALL_TARGET_MODULES): Likewise.
10360         (CLEAN_TARGET_MODULES): Likewise.
10361         (all-target-qthreads): New target.
10362         (configure-target-libjava): Depend on configure-target-qthreads.
10363         (all-target-libjava): Depend on all-target-qthreads.
10365         * Makefile.in (ALL_TARGET_MODULES): Added libjava, boehm-gc.
10366         (CONFIGURE_TARGET_MODULES): Likewise.
10367         (CHECK_TARGET_MODULES): Likewise.
10368         (INSTALL_TARGET_MODULES): Likewise.
10369         (CLEAN_TARGET_MODULES): Likewise.
10370         (all-target-libjava): New target.
10371         (all-target-boehm-gc): Likewise.
10372         * configure.in (target_libs): Added libjava, boehm-gc.
10374 1999-07-22  Ian Lance Taylor  <ian@zembu.com>
10376         * Makefile.in (binutils.tar.bz2): Don't pass makeall.bat and
10377         configure.bat in SUPPORT_FILES.
10378         (gas+binutils.tar.bz2): Likewise.
10380         * makeall.bat: Remove; obsolete.
10382 1999-07-21  Ian Lance Taylor  <ian@zembu.com>
10384         From Mark Elbrecht:
10385         * configure.bat: Remove; obsolete.
10387 1999-07-11  Ian Lance Taylor  <ian@zembu.com>
10389         * configure: Add -W -Wall to the default CFLAGS when compiling with
10390         gcc.
10392 Thu Jul  8 12:32:23 1999  John David Anglin <dave@hiauly1.hia.nrc.ca>
10394         * configure.in: Build ld, binutils & gas for hppa*-*-linux-gnu*.
10396 1999-06-30  Mark Mitchell  <mark@codesourcery.com>
10398         * configure.in: Build ld on IRIX6.
10400 1999-06-12  Ian Lance Taylor  <ian@zembu.com>
10402         * Makefile.in: Change distribution targets to use bzip2 instead of
10403         gzip.
10404         (TEXINFO_SUPPORT): Set to just texinfo/texinfo.tex.
10405         (taz): Don't use texinfo/gpl.texinfo or texinfo/lgpl.texinfo.
10407 1999-06-04  Nick Clifton  <nickc@cygnus.com>
10409         * config.sub: Add mcore target.
10411 1999-05-30  Cort Dougan  <cort@cs.nmt.edu>
10413         * config.guess (ppc-*-linux-gnu): Also use ld emul elf32ppclinux.
10415 1999-05-25  H.J. Lu  (hjl@gnu.org)
10417         * config.guess (dummy): Changed to $dummy.
10419 1999-05-24  Nick Clifton  <nickc@cygnus.com>
10421         * config.sub: Tidied up case statements.
10423 1999-05-22  Ben Elliston  <bje@cygnus.com>
10425         * config.guess: Handle NEC UX/4800. Contributed by Jiro Takabatake
10426         <jiro@din.or.jp>.
10428         * config.guess: Merge with FSF version. Future changes will be
10429         more accurately recorded in this ChangeLog.
10430         * config.sub: Likewise.
10432 1999-05-20   Stephen L Moshier  <moshier@world.std.com>
10434          * Makefile.in (GCC_FOR_TARGET): Add -I$(build_tooldir)/include.
10436 1999-04-30  Tom Tromey  <tromey@cygnus.com>
10438         * ltmain.sh: [mode link] Always use CC given by ltconfig.
10440 1999-04-23  Tom Tromey  <tromey@cygnus.com>
10442         * ltconfig, ltmain.sh: Update to libtool 1.2f.
10444 1999-04-20  Drew Moseley  <dmoseley@cygnus.com>
10446         * configure.in (noconfigdirs): Don't build libstub for arm-elf targets.
10447         (noconfigdirs): Don't build any bsp stuff for for arm-oabi targets.
10448         Bad merge removed these two changes.
10450 Tue Apr 13 22:50:54 1999  Donn Terry (donn@interix.com)
10451                           Martin Heller (Ing.-Buero_Heller@t-online.de)
10453         * config.guess (interix Alpha): Add.
10455 1999-04-11  Richard Henderson  <rth@cygnus.com>
10457         * configure.in (i?86-*-beos*): Do config gperf; don't config
10458         gdb, newlib, or libgloss.
10460 1999-04-11  Alexandre Oliva  <oliva@dcc.unicamp.br>
10462         * config-ml.in: On mips*-*-*, if multidirs contains mabi=64, try to
10463         link a trivial program with -mabi=64.  If it fails, remove mabi=64
10464         from multidirs.
10466 1999-04-10  Philipp Thomas  (kthomas@gwdg.de)
10468         * config.sub: Set basic_machine to i586 when target_alias = k6-*.
10470 1999-04-08  Nick Clifton  <nickc@cygnus.com>
10472         * config.sub: Add support for mcore targets.
10474 1999-04-07  Michael Meissner  <meissner@cygnus.com>
10476         * configure.in (d30v-*): Use config/mt-d30v as makefile fragment,
10477         not mt-ospace, in order to shut up assembler warning about using
10478         symbols that are named the same as registers.
10480 1999-04-07  Drew Moseley  <dmoseley@cygnus.com>
10482         * Makefile.in (all-target-cygmon): Added all-target-bsp to the
10483         dependency list for all-target-cygmon.
10485 1999-04-05  Doug Evans  <devans@casey.cygnus.com>
10487         * config-ml.in: Check $host, not $target, for selective multilibs.
10488         (arm-*-*): Allow disabling of biendian, h/w fp, 26 bit apcs,
10489         thumb interworking, and underscore prefix multilibs.
10491 1999-04-04  Ian Lance Taylor  <ian@zembu.com>
10493         * missing: Update to version from current automake.
10495 Fri Apr  2 15:11:32 1999  H.J. Lu  (hjl@gnu.org)
10497         * configure (gxx_include_dir): Removed.
10499         * configure.in (gxx_include_dir): Handle it.
10500         * Makefile.in: Likewise.
10502 1999-03-29  Gavin Romig-Koch  <gavin@cygnus.com>
10504         * config.sub (mips64vr4111,mips64vr4111el) Add.
10506 1999-03-21  Ben Elliston  <bje@cygnus.com>
10508         * config.guess: Correct typo for detecting ELF on FreeBSD.
10510 Thu Mar 18 00:17:50 1999  Mark Elbrecht <snowball3@usa.net>
10512         * configure.in (pc-msdosdjgpp): Set host_makefile_frag to
10513         config/mh-djgpp.
10515 Thu Mar 11 18:37:23 1999  Drew Moseley  <dmoseley@cygnus.com>
10517         * Makefile.in (all-target-bsp): Added all-gcc all-binutils and
10518         all-target-newlib to dependency list for all-target-bsp.
10520 Thu Mar 11 01:19:31 1999  Mumit Khan  <khan@xraylith.wisc.edu>
10522         * config.sub: Add i386-uwin support.
10523         * config.guess: Likewise.
10525 Thu Mar 11 01:07:55 1999  Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
10527         * configure.in: cleanup, add mh-*pic handling for arm, special
10528         case powerpc*-*-aix*
10530 Wed Mar 10 18:35:07 1999  Jeff Johnston  <jjohnstn@cygnus.com>
10532         * configure.in (noconfigdirs): Removed target-libgloss so libnosys.a
10533         can be built.
10535 Wed Mar 10 17:39:09 1999  Drew Moseley  <dmoseley@cygnus.com>
10537         * configure.in: Added bsp support to arm-*-coff and arm-*-elf
10538         targets.
10540 1999-03-02  Nick Clifton  <nickc@cygnus.com>
10542         * config.sub: Rename CYGNUS LOCAL to EGCS LOCAL
10544 1999-02-28  Geoffrey Noer  <noer@cygnus.com>
10546         * config.sub: Check for "cygwin*" rather than "cygwin32*"
10548 1999-02-24  Nick Clifton  <nickc@cygnus.com>
10550         * config.sub: Fix typo in arm recognition.
10552 1999-02-24  Drew Moseley  <dmoseley@cygnus.com>
10554         * configure.in (noconfigdirs): Changed target_configdirs to
10555         include target-bsp only for m68k-*-elf* and m68k-*-coff*
10556         rather than m68k-*-* since it is not known to work on
10557         m68k-aout. Ditto for arm-*-*oabi.
10559 1999-02-24  Stan Shebs  <shebs@andros.cygnus.com>
10561         * configure.in (*-*-windows*): Remove, no longer used.
10563 1999-02-19  Ben Elliston <bje@cygnus.com>
10565         * config.guess: Automatically recognise ELF on FreeBSD. From Niall
10566         Smart and improved by Andrew Cagney.
10568 1999-02-18  Marc Espie <espie@cvs.openbsd.org>
10570         * config.guess: Recognize openbsd-*-hppa.
10572 1999-02-17  H.J. Lu  (hjl@gnu.org)
10574         * Makefile.in (REALLY_SET_LIB_PATH): Append $$$(RPATH_ENVVAR)
10575         only if it is not empty.
10577 1999-02-17  Nick Clifton  <nickc@cygnus.com>
10579         Patch from: Scott Bambrough <scottb@corelcomputer.com>
10581         * config.guess: Modified to recognize uname's armv* syntax.
10583         * config.sub: Modified to recognize uname's armv* syntax.
10585 1999-02-17  Mark Salter  <msalter@cygnus.com>
10587         * configure.in: Added target-bsp for sparclite.
10589 1999-02-08  Richard Henderson  <rth@cygnus.com>
10591         * config.sub: Recognize alphapca5[67] and up to alphaev8.
10593 1999-02-08  Nick Clifton  <nickc@cygnus.com>
10595         * configure.in: Add support for strongarm port.
10596         * config.sub: Add support for strongarm target.
10598 1999-02-07  Mumit Khan  <khan@xraylith.wisc.edu>
10600         * configure.in (*-*-cygwin32*): Use config/mh-cygwin instead of
10601         the old name config/mh-cygwin32.
10602         Enable texinfo.
10604 1999-02-04  Ian Lance Taylor  <ian@cygnus.com>
10606         * configure.in: Do build ld for ix86 Solaris.
10608 1999-02-02  Jim Wilson  <wilson@cygnus.com>
10610         * Makefile.in (EXTRA_GCC_FLAGS):  Set AR to $AR instead of
10611         $AR_FOR_TARGET.  Likewise for RANLIB.
10613 1999-02-02  Catherine Moore  <clm@cygnus.com>
10615         * config.sub (oabi):  Recognize.
10616         * configure.in (arm-*-oabi):  Handle.
10618 1999-01-30  Robert Lipe  (robertlipe@usa.net)
10620         * config.guess: Improve detection of i686 on UnixWare 7.
10622 1999-01-30  Mumit Khan  <khan@xraylith.wisc.edu>
10624         * config.guess: Add support for i386-pc-interix.
10625         * config.sub: Likewise.
10626         * configure.in: Likewise.
10628 1999-01-18  Christopher Faylor <cgf@cygnus.com>
10630         * Makefile.in: Remove unneeded all-target-libio from
10631         from all-target-winsup target since it is now unneeded.
10632         Add all-target-libtermcap in its place since it is now
10633         needed.
10635 1998-12-30  Christopher Faylor <cgf@cygnus.com>
10637         * configure.in: makefile stub for cygwin target is probably
10638         unnecessary.  Remove it for now.
10640 1998-12-30  Christopher Faylor <cgf@cygnus.com>
10642         * configure.in: libtermcap.a should be built when cygwin is the
10643         target as well as the host.
10644         * config.guess: Allow mixed case in cygwin uname output.
10645         * Makefile.in: Add libtermcap target.
10647 1998-12-23  Jeffrey A Law  (law@cygnus.com)
10649         * config.sub: Clean up handling of hppa2.0.
10651 1998-12-22  Rodney Brown  (rodneybrown@pmsc.com)
10653         * config.guess: Use C code to identify more HP machines.
10655 Thu Dec 17 01:22:30 1998  Jeffrey A Law  (law@cygnus.com)
10657         * config.sub: Handle hppa2.0.
10659 Tue Dec 15 17:02:58 1998  Bob Manson  <manson@charmed.cygnus.com>
10661         * configure.in: Add cygmon for x86-coff and x86-elf. Configure
10662         cygmon for all sparclite targets, regardless of object format.
10664 1998-12-15  Mark Salter  <msalter@cygnus.com>
10666         * configure.in: Added target-bsp for several target architectures.
10668         * Makefile.in: Added rules for bsp.
10670 Fri Dec  4 01:34:02 1998  Jeffrey A Law  (law@cygnus.com)
10672         * config.guess: Improve detection of hppa2.0 processors.
10674 Fri Dec  4 01:33:05 1998  Niall Smart <nialls@euristix.ie>
10676         * config.guess: Recognize FreeBSD using ELF automatically.
10678 1998-11-26  Manfred Hollstein  <manfred@s-direktnet.de>
10680         * configure (skip-this-dir): Add handling for new shell script, which
10681         might be created by a sub-directory's configure to indicate, this particular
10682         directory is "unwanted".
10683         * Makefile.in ($(CONFIGURE_TARGET_MODULES)): Likewise.
10685 Wed Nov 18 18:28:45 1998  Geoffrey Noer  <noer@cygnus.com>
10687         * ltconfig: import from libtool, after changing libtool to
10688         account for the cygwin name change.
10690 Wed Nov 18 18:09:14 1998  Geoffrey Noer  <noer@cygnus.com>
10692         * Makefile.in: CC_FOR_TARGET and CXX_FOR_TARGET should also
10693         include newlib/libc/sys/cygwin and newlib/libc/sys/cygwin32.
10695 Wed Nov 18 20:13:29 1998  Christopher Faylor <cgf@cygnus.com>
10697         * configure.in: Add libtermcap to list of cygwin dependencies.
10699 1998-11-17  Geoffrey Noer  <noer@cygnus.com>
10701         * Makefile.in: modify CC_FOR_TARGET and CXX_FOR_TARGET so that
10702         they include winsup/include when it's a cygwin target.
10704 1998-11-12  Tom Tromey  <tromey@cygnus.com>
10706         * configure.in (host_tools): Added zip.
10707         * Makefile.in (all-target-libjava): Depend on all-zip.
10708         (all-zip): New target.
10709         (ALL_MODULES): Added all-zip.
10710         (NATIVE_CHECK_MODULES): Added check-zip.
10711         (INSTALL_MODULES): Added install-zip.
10712         (CLEAN_MODULES): Added clean-zip.
10714 1998-11-12  Geoffrey Noer  <noer@cygnus.com>
10716         * Makefile.in: lose "32" from comment about cygwin.
10718 1998-11-05  Nick Clifton  <nickc@cygnus.com>
10720         * configure.in: Use -Os to build target libraries for the fr30.
10722 1998-11-04  Dave Brolley  <brolley@cygnus.com>
10724         * config.sub: Add fr30.
10726 1998-11-02  Geoffrey Noer  <noer@cygnus.com>
10728         * configure.in: drop "32" from config/mh-cygwin32.  Check
10729         cygwin* instead of cygwin32*.
10730         * config.sub: Check cygwin* instead of cygwin32*.
10732 1998-10-22  Robert Lipe  <robertl@dgii.com>
10734         * config.guess: Match any version of Unixware7.
10736 1998-10-20  Syd Polk  <spolk@cygnus.com>
10738         * Makefile.in configure.in: Add the ability to use tcl8.1 and tk8.1
10739         if desired.
10741 1998-10-18  Jeffrey A Law  (law@cygnus.com)
10743         * config.if (cxx_interface, libstdcxx_interface): Do not try to set
10744         these if the appropriate directories and files to not exist.
10746 1998-10-14  Jeffrey A Law  (law@cygnus.com)
10748         * Makefile.in (DEVO_SUPPORT): Add config.if.
10750 1998-10-13  Manfred Hollstein  <manfred@s-direktnet.de>
10752         * configure: Add pattern to replace "build_tooldir"'s
10753         definition in the generated Makefile with "tooldir"'s
10754         actual value.
10756 Tue Oct 13 09:17:06 1998  Jeffrey A Law  (law@cygnus.com)
10758         * config.sub: Bring back lost sparcv9.
10760         * Makefile.in (all-snvavigator): Remove all-flexlm dependency.
10762 Mon Oct 12 12:09:44 1998  Jeffrey A Law  (law@cygnus.com)
10764         * Makefile.in (CHILL_FOR_TARGET): Mirror recent changes to
10765         CC_FOR_TARGET and friends.
10767 Mon Oct 12 12:09:30 1998  Alexandre Oliva  <oliva@dcc.unicamp.br>
10769         * Makefile.in (build_tooldir): New variable, same as tooldir.
10770         (CC_FOR_TARGET, GCC_FOR_TARGET, CXX_FOR_TARGET): Add
10771         -B$(build_tooldir)/bin/.
10772         (BASE_FLAGS_TO_PASS): Pass build_tooldir down.
10774 Wed Sep 30 22:20:50 1998  Robert Lipe  <robertl@dgii.com>
10776         * config.sub: Add support for i[34567]86-pc-udk.
10777         * configure.in: Likewise.
10779 Wed Sep 30 19:23:48 1998  Geoffrey Noer  <noer@cygnus.com>
10781         * Makefile.in: add bzip2 package building bits for user
10782         tools module
10783         * configure.in: ditto
10785 Wed Sep 30 03:00:05 1998  Jeffrey A Law  (law@cygnus.com)
10787         * Makefile.in (TARGET_CONFIGDIRS): Add libobjc.
10788         (ALL_TARGET_MODULES): Add all-target-libobjc.
10789         (CONFIGURE_TARGET_MODULES, CHECK_TARGET_MODULES): Similarly.
10790         (INSTALL_TARGET_MODULES, CLEAN_TARGET_MODULES): Similarly.
10791         (all-target-libchill): Add dependencies.
10792         * configure.in (target_libs): Add libchill.
10794 1998-09-30  Manfred Hollstein  <manfred@s-direktnet.de>
10796         * configure.in (target_subdir): Remove duplicate line.
10798 Tue Sep 29 22:45:41 1998  Felix Lee  <flee@cygnus.com>
10800         * Makefile.in (all-automake): fix dependencies.
10802 Mon Sep 28 04:04:27 1998  Jeffrey A Law  (law@cygnus.com)
10804         * configure.in: Minor cleanups for building in the $(target_alias)
10805         subdir.
10807 1998-09-22  Jim Wilson  <wilson@cygnus.com>
10809         * Makefile.in (bootstrap): Set r and s before make all.  Use
10810         BASE_FLAGS_TO_PASS in make all.
10811         (cross): Likewise.
10813 1998-09-20  Mark Mitchell  <mark@markmitchell.com>
10815         * Makefile.in (bootstrap): Pass TARGET_FLAGS_TO_PASS to `make all'.
10817 Sun Sep 20 00:13:02 1998  Richard Henderson  <rth@cygnus.com>
10819         * config.sub: Fix typo in last change.
10821 1998-09-19  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
10823         * config.sub: Add support for C4x target.
10824         * configure.in: Likewise.
10826 1998-09-13  David S. Miller  <davem@pierdol.cobaltmicro.com>
10828         * config.sub: Recognize sparcv9 just like sparc64.
10830 Wed Sep  9 15:44:52 1998  Robert Lipe  <robertl@dgii.com>
10832         * config.guess: Match "Pent II" or "PentII" for OpenServer.
10834 Tue Sep  8 01:18:39 1998  Jeffrey A Law  (law@cygnus.com)
10836         * config.guess: Correctly identify Pentium II sco boxes.
10838         * config.guess: Fix "tr" code.  From Weiwen Liu.
10840 Sat Sep  5 13:56:52 1998  John Hughes  <john@Calva.COM>
10842         * configure.in: Do not assume x86-svr4 or x86-unixware can handle
10843         stabs.
10845 Sat Sep  5 02:12:02 1998  Jeffrey A Law  (law@cygnus.com)
10847         * Makefile.in (TARGET_CONFIGDIRS): Add libchill.
10848         (ALL_TARGET_MODULES): Add all-target-libchill.
10849         (CONFIGURE_TARGET_MODULES, CHECK_TARGET_MODULES): Similarly.
10850         (INSTALL_TARGET_MODULES, CLEAN_TARGET_MODULES): Similarly.
10851         (all-target-libchill): Add dependencies.
10852         * configure.in (target_libs): Add libchill.
10854 Sun Aug 30 22:27:02 1998  Lutz Wohlrab <lutz.wohlrab@informatik.tu-chemnitz.de>
10856         * config.guess: Avoid assumptions about "tr" behaves when
10857         LANG is set to something other than English.
10859 Sun Aug 30 22:14:44 1998  H.J. Lu  (hjl@gnu.org)
10861         * configure (gxx_include_dir): Changed to
10862         '${prefix}/include/g++'-${libstdcxx_interface}.
10864         * config.if: New to determine the interfaces.
10866 Sun Aug 30 21:15:19 1998  Mark Klein (mklein@dis.com)
10868         * config.guess: Detect and handle MPE/IX.
10869         * config.sub: Deal with MPE/IX.
10871 Sat Aug 29 14:32:55 1998  David Edelsohn  <edelsohn@mhpcc.edu>
10873         * configure.in: Use mh-aix43.
10875 1998-07-29  Manfred Hollstein  <manfred@s-direktnet.de>
10877         * configure: Fix --without/--disable cases for gxx-include-dir.
10879 Fri Aug 28 12:28:26 1998  Per Bothner  <bothner@cygnus.com>
10881         * mdata-sh:  Imported.  Needed for automake support.
10883 Thu Aug 13 12:49:29 1998  H.J. Lu  <hjl@gnu.org>
10885         * Makefile.in (taz): Try "chmod -R og=u ." before
10886         "chmod og=u `find . -print`".
10888 Fri Jul 31 09:38:33 1998  Catherine Moore  <clm@cygnus.com>
10890         * configure.in: Add arm-elf and thumb-elf support.
10892 Mon Jul 27 16:23:58 1998  Doug Evans  <devans@canuck.cygnus.com>
10894         * Makefile.in: Undo previous patch.
10896 Fri Jul 24 19:55:24 1998  Doug Evans  <devans@canuck.cygnus.com>
10898         * Makefile.in (INSTALL_TARGET): Move EXTRA_TARGET_HOST_INSTALL_MODULES
10899         to here ...
10900         (install-no-fixedincludes): and here
10901         (INSTALL_MODULES): ... from here.
10903 Fri Jul 24 17:01:42 1998  Ian Lance Taylor  <ian@cygnus.com>
10905         * config.sub: Merge with FSF.
10907         * config.guess: Merge with FSF.
10909 Fri Jul 24 08:43:36 1998  Doug Evans  <devans@canuck.cygnus.com>
10911         * configure (extraconfigdirs): New variable.
10912         (SUBDIRS): Add extraconfigdirs and recurse on them too.
10913         * Makefile.in (all): Move higher in file.
10914         (EXTRA_TARGET_HOST_ALL_MODULES): New variable.
10915         (EXTRA_TARGET_HOST_{INSTALL,CHECK}_MODULES): New variables.
10916         (ALL_MODULES): Add EXTRA_TARGET_HOST_ALL_MODULES.
10917         (CROSS_CHECK_MODULES): Add EXTRA_TARGET_HOST_CHECK_MODULES.
10918         (INSTALL_MODULES): Add EXTRA_TARGET_HOST_INSTALL_MODULES.
10920 1998-07-23  Brendan Kehoe  <brendan@cygnus.com>
10922         * Makefile.in (all-target-libjava): Depend on all-gcc and
10923         all-target-newlib.
10924         (configure-target-libjava): Depend on $(ALL_GCC).
10926 Sat Jul 18 14:32:43 CDT 1998  Robert Lipe  <robertl@dgii.com>
10928         * config.guess: (*-pc-sco3.2v5) Add detection for Pentium II.
10929         (*-pc-unixware7) Add detection for Pentium II, Pentium Pro.
10931 Fri Jul 17 13:30:18 1998  Ian Lance Taylor  <ian@cygnus.com>
10933         * ylwrap: Change absolute path checks to check for DOS style path
10934         names.
10936         * ylwrap: Don't use a full path name if the source file is in the
10937         same directory.  From hjl@lucon.org (H.J. Lu).
10939         * config-ml.in: Default to being verbose, to match Feb 18 change to
10940         configure.
10942 Thu Jul 16 12:29:51 1998  Ian Lance Taylor  <ian@cygnus.com>
10944         Brought over from egcs:
10946         Sat Jun 27 22:46:32 1998  Jeffrey A Law  (law@cygnus.com)
10948         * configure.in (target_subdir): Set to ${target_alias} instead
10949         of "libraries".
10951         Mon Sep  1 16:45:44 1997  Jim Wilson  <wilson@cygnus.com>
10953         * configure.in (target_subdir): Set to libraries if enable_multilib.
10955 Wed Jul 15 01:00:54 1998  Ian Lance Taylor  <ian@cygnus.com>
10957         * Makefile.in ($(CONFIGURE_TARGET_MODULES)): If there are any
10958         multilibs, force reconfiguration the first time we create
10959         multilib.out in a subdirectory, in case TARGET_SUBDIR is `.'.
10961 Tue Jul 14 23:41:03 1998  Ian Lance Taylor  <ian@cygnus.com>
10963         * configure.in: Strip any --no option from CONFIG_ARGUMENTS, to
10964         avoid confusion with --no-recursion.
10966 Tue Jul 14 15:37:41 1998  Geoffrey Noer  <noer@cygnus.com>
10968         * configure.in: Win32 hosts shouldn't use install -x
10969         * install-sh: remove -x option, and special .exe-handling
10970         hack.
10972 Tue Jul 14 15:28:41 1998  Richard Henderson  <rth@cygnus.com>
10974         * config.guess: Recognize i586-pc-beos.
10975         * configure.in: Don't build some bits for beos.
10977 Tue Jul 14 13:22:18 1998  Ian Lance Taylor  <ian@cygnus.com>
10979         * configure: If CC is set but CFLAGS is not, and CC is gcc, make
10980         CFLAGS default to -O2.
10982         * ltmain.sh: Add some hacks to make SunOS --enable-shared work
10983         when using GNU ld.
10985 Fri Jul 10 13:18:23 1998  Ian Lance Taylor  <ian@cygnus.com>
10987         * ltmain.sh: Correct install when using a different shell.
10989 Tue Jul  7 15:24:38 1998  Ian Lance Taylor  <ian@cygnus.com>
10991         * ltconfig, ltmain.sh: Update to libtool 1.2b.
10993 Thu Jul  2 13:57:36 1998  Klaus Kaempf  <kkaempf@rmi.de>
10995         * makefile.vms: Update to build binutils/makefile.vms.  Add install
10996         target.
10998 Wed Jul  1 16:45:21 1998  Ian Lance Taylor  <ian@cygnus.com>
11000         * ltconfig: Update to correct AIX handling.
11002 Sat Jun 27 22:46:32 1998  Jeffrey A Law  (law@cygnus.com)
11004         * Makefile.in (BASE_FLAGS_TO_PASS): Add TARGET_SUBDIR.
11006         * configure.in (target_subdir): Set to ${target_alias} instead
11007         of "libraries".
11009 1998-06-26  Manfred Hollstein  <manfred@s-direktnet.de>
11011         * Makefile.in (BASE_FLAGS_TO_PASS): Add gcc_version_trigger.
11012         (Makefile): Depend on $(gcc_version_trigger).
11014         * configure (gcc_version): Change default initializer to empty
11015         string.
11016         (gcc_version_trigger): New variable; pass this variable down
11017         to subdir configures to enable them checking gcc's version
11018         themselves. Emit make macros for both gcc_version vars.
11019         (topsrcdir): Initialize reliably.
11020         (recursion line): Remove --with-gcc-version=${gcc_version}.
11022 1998-06-24  Manfred Hollstein  <manfred@s-direktnet.de>
11024         * configure (enable_version_specific_runtime_libs): Implement new flag
11025         --enable-version-specific-runtime-libs which installs C++ runtime stuff
11026         in $(libsubdir); emit definition in each generated Makefile.
11027         (gxx_include_dir): Initialize depending on
11028         $enable_version_specific_runtime_libs.
11030 1998-06-24  Manfred Hollstein  <manfred@s-direktnet.de>
11032         * configure (gcc_version): Initialize properly depending on
11033         how and where configure is started.
11034         (recursion line): Pass a --with-gcc-version=${gcc_version}
11035         to configures in subdirs.
11037 Wed Jun 24 16:01:59 1998  John Metzler  <jmetzler@cygnus.com>
11039         * configure.in (noconfigdirs): Add configure pattern for mips tx39
11040         cygmon
11042 Tue Jun 23 22:42:32 1998  Mark Alexander  <marka@cygnus.com>
11044         * configure.in: Add cygmon and libstub support for mn10200.
11046 1998-06-19  Manfred Hollstein  <manfred@s-direktnet.de>
11048         * configure (gcc_version): Add new variable describing the
11049         particular gcc version we're building.
11050         * Makefile.in (libsubdir): Add new macro for the directory
11051         in which the compiler finds executables, libraries, etc.
11052         (BASE_FLAGS_TO_PASS): Pass down gcc_version, target_alias
11053         and libsubdir.
11055 Fri Jun 19 02:36:59 1998  Alexandre Oliva <oliva@dcc.unicamp.br>
11057         * Makefile.in (local-clean): Remove *.log.
11058         (warning.log): Built with warn_summary from build.log.
11059         (mail-report.log): Run test_summary.
11060         (mail-report-with-warnings.log): Run test_summary including
11061         warning.log in the report.
11063 Thu Jun 18 11:26:03 1998  Robert Lipe  <robertl@dgii.com>
11065         * config.guess: Detection of Pentium II for *-sco-3.2v5*.
11067 Mon Jun 15 14:53:54 1998  Andrew Cagney  <cagney@b1.cygnus.com>
11069         * Makefile.in (grep): Grep no longer depends on libiberty.
11071 Fri Jun 12 14:03:34 1998  Syd Polk  <spolk@cygnus.com>
11073         * Makefile.in: all-snavigator needs all-libgui.
11075 Thu Jun 11 19:43:47 1998  Mark Alexander  <marka@cygnus.com>
11077         * configure.in: Add cygmon and libstub support for mn10300.
11079 Wed Jun 10 11:19:47 1998  Ian Lance Taylor  <ian@cygnus.com>
11081         * missing: Update to version from automake 1.3.
11083         * ltmain.sh: On installation, don't get confused if the same name
11084         appears more than once in the list of library names.
11086 Wed Jun  3 14:51:42 1998  Ian Lance Taylor  <ian@cygnus.com>
11088         * config.sub: Accept m68060 and m5200 as CPU names.
11090 Mon Jun  1 17:25:16 1998  Ian Lance Taylor  <ian@cygnus.com>
11092         * configure: Use && rather than using -a in test, because odd
11093         strings can confuse test.
11094         * configure.in: Likewise.
11096 Thu May 28 19:31:13 1998  Ian Lance Taylor  <ian@cygnus.com>
11098         * ltconfig, ltmain.sh: Bring in Visual C++ support.
11100 Sat May 23 23:44:13 1998  Alexandre Oliva <oliva@dcc.unicamp.br>
11102         * Makefile.in (boostrap2-lean, bootstrap3-lean,
11103         bootstrap4-lean): New targets.
11105 Mon May 11 23:55:56 1998  Jeffrey A Law  (law@cygnus.com)
11107         * mpw-* Delete.  Not used.
11109 Mon May 11 23:11:34 1998  Jeffrey A Law  (law@cygnus.com)
11111         * COPYING.LIB: Update FSF address.
11113 Fri May  8 01:30:20 1998  Ian Lance Taylor  <ian@cygnus.com>
11115         * ltconfig, ltmain.sh: Update to libtool 1.2a.
11117         * Makefile.in (GASB_SUPPORT_DIRS): Remove intl; already included via
11118         GAS_SUPPORT_DIRS.
11120 Thu May  7 17:27:35 1998  Ian Lance Taylor  <ian@cygnus.com>
11122         * ltconfig, ltmain.sh: Avoid producing a version number if
11123         -version-info was not used.
11125 Tue May  5 18:02:24 1998  Ian Lance Taylor  <ian@cygnus.com>
11127         * configure.in: Add --with-newlib to CONFIG_ARGUMENTS if we are
11128         building with newlib.
11130 1998-04-30  Paul Eggert  <eggert@twinsun.com>
11132         * Makefile.in (EXTRA_GCC_FLAGS): Remove backslash at end;
11133         Solaris `make' causes it to continue to next definition.
11135 Tue Apr 28 16:24:24 1998  Jason Molenda  (crash@bugshack.cygnus.com)
11137         * Makefile.in (install-gdbtk): Call this 'install-gdb' so that
11138         the right GUI libraries and files are installed along with GDB.
11140 Tue Apr 28 18:11:24 1998  Ian Lance Taylor  <ian@cygnus.com>
11142         * configure.in: Change alpha to alpha* in several places.
11144 Tue Apr 28 07:42:00 1998  Mark Alexander  <marka@cygnus.com>
11146         * config.sub: Recognize sparc86x.
11148 Tue Apr 28 07:35:02 1998  Michael Meissner  <meissner@cygnus.com>
11150         * configure.in (--enable-target-optspace): Remove debug echo.
11152 Thu Apr 23 21:31:16 1998  Jim Wilson  <wilson@cygnus.com>
11154         * configure: Set CXXFLAGS from CXXFLAGS, not CFLAGS.
11156 Thu Apr 23 12:26:38 1998  Ian Lance Taylor  <ian@cygnus.com>
11158         * ltconfig: Update cygwin32 support.
11160         * Makefile.in (GAS_SUPPORT_DIRS): Add intl.
11161         (BINUTILS_SUPPORT_DIRS, GASB_SUPPORT_DIRS): Likewise.
11162         (GDB_SUPPORT_DIRS): Likewise.
11164 Wed Apr 22 12:30:10 1998  Michael Meissner  <meissner@cygnus.com>
11166         * configure.in (target_makefile_frag): If --enable-target-optspace,
11167         use -Os to compile target libraries rather than -O2.  Default to
11168         using -Os for d10v and m32r if --{enable,disable}-target-optspace is
11169         not used.
11170         * configure.in (target_cflags): Ditto for d30v.
11172 Tue Apr 21 23:06:54 1998  Tom Tromey  <tromey@cygnus.com>
11174         * Makefile.in (all-bfd): Depend on all-intl.
11175         (all-binutils): Likewise.
11176         (all-gas): Likewise.
11177         (all-gprof): Likewise.
11178         (all-ld): Likewise.
11180 1998-04-19  Brendan Kehoe  <brendan@cygnus.com>
11182         * configure.in (host_tools): Fix typo, lbtool -> libtool.
11184 Fri Apr 17 16:20:42 1998  Ian Lance Taylor  <ian@cygnus.com>
11186         * Makefile.in (all-bfd): Depend upon all-libiberty.
11188         * ltconfig, ltmain.sh: Bring in newer cygwin32 support.
11190 Fri Apr 17 12:22:22 1998  Bob Manson  <manson@charmed.cygnus.com>
11192         * Makefile.in: Add libstub.
11194         * configure.in: Ditto. Build libstub for targets that have cygmon
11195         support.
11197 Tue Apr 14 18:01:55 1998  Ian Lance Taylor  <ian@cygnus.com>
11199         * configure.in: Don't set PICFLAG on ix86-cygwin32.
11201 Tue Apr 14 12:24:45 1998  J. Kean Johnston  <jkj@sco.com>
11203         * configure.in: Recognise i[3456]96-*-sysv5* as a valid host, and
11204         use mh-sysv5 if specified.  Support gprof on SCO Open Server.
11206 Tue Apr 14 11:33:51 1998  Krister Walfridsson <cato@df.lth.se>
11208         * configure: Define DEFAULT_M4 by searching PATH.
11209         * Makfile.in: Use DEFAULT_M4.
11211 Mon Apr 13 15:37:24 1998  Ian Lance Taylor  <ian@cygnus.com>
11213         * ltconfig: Add cygwin32 support.
11215         * Makefile.in, configure.in: Add libtool as a native only directory
11216         to configure and build.
11218 Sun Apr 12 20:58:46 1998  Jeffrey A Law  (law@cygnus.com)
11220         * Makefile.in (INSTALL_MODULES): Remove texinfo.
11222 Wed Apr  8 13:18:56 1998  Philippe De Muyter  <phdm@macqel.be>
11224         * Makefile.in (EXTRA_GCC_FLAGS): XFOO lines shortened.
11226 Thu Apr  2 14:48:44 1998  Geoffrey Noer  <noer@cygnus.com>
11228         * Makefile.in: add ash make rules
11229         * configure.in: add ash to native_only and host_tools lists
11231 Thu Mar 26 12:53:20 1998  Tom Tromey  <tromey@cygnus.com>
11233         * Makefile.in (all-gettext, all-intl): New targets.
11234         (ALL_MODULES): Added all-gettext, all-intl.
11235         (CROSS_CHECK_MODULES): Added check-gettext, check-intl.
11236         (INSTALL_MODULES): Added install-gettext, install-intl.
11237         (CLEAN_MODULES): Added clean-gettext, clean-intl.
11239         * configure.in (host_tools): Added gettext.
11240         (native_only): Likewise.
11241         (noconfigdirs) [various cases]: Likewise.
11242         (host_libs): Added intl.
11244 Thu Mar 26 15:00:11 1998  Keith Seitz  <keiths@onions.cygnus.com>
11246         * configure: Do not disable building gdbtk for cygwin32 hosts.
11248 Wed Mar 25 10:04:18 1998  Nick Clifton  <nickc@cygnus.com>
11250         * configure.in: Add thumb-coff target.
11251         * config.sub: Add thumb-coff target.
11253 Wed Mar 25 11:49:12 1998  Jason Molenda  (crash@bugshack.cygnus.com)
11255         * Makefile.in: Revert yesterday's change.
11256         (all-target-winsup):  all-target-librx stays out of here.
11258 Tue Mar 24 16:58:29 1998  Jason Molenda  (crash@bugshack.cygnus.com)
11260         * Makefile.in (TARGET_CONFIGDIRS, ALL_TARGET_MODULES,
11261         CONFIGURE_TARGET_MODULES, CHECK_TARGET_MODULES,
11262         INSTALL_TARGET_MODULES, CLEAN_TARGET_MODULES, all-target-winsup):
11263         Remove references to librx and libg++.
11265 Tue Mar 24 18:28:12 1998  Eric Mumpower  <nocturne@cygnus.com>
11267         * Makefile.in (BASE_FLAGS_TO_PASS): Pass $(lispdir) down to
11268         recursive makes
11270 Tue Mar 24 11:37:45 1998  Ian Lance Taylor  <ian@cygnus.com>
11272         * Makefile.in (CC_FOR_TARGET): Use $(TARGET_SUBDIR) when passing -B
11273         for newlib directory.
11274         (CXX_FOR_TARGET): Likewise.
11276 Mon Mar 23 11:30:21 1998  Jeffrey A Law  (law@cygnus.com)
11278         * ltconfig: Update after libtool/ltconfig.in change for
11279         hpux11.
11281 Fri Mar 20 18:51:43 1998  Ian Lance Taylor  <ian@cygnus.com>
11283         * ltconfig, ltmain.sh: Update to libtool 1.2.
11285 Fri Mar 20 09:32:14 1998  Manfred Hollstein  <manfred@s-direktnet.de>
11287         * Makefile.in (install-gcc): Don't specify LANGUAGES here.
11288         (install-gcc-cross): Instead, override LANGUAGES here.
11290 1998-03-18  Dave Love  <d.love@dl.ac.uk>
11292         * Makefile.in ($(CONFIGURE_TARGET_MODULES)): Set CONFIG_SITE to a
11293         non-existent file since /dev/null loses with bash 2.0/autoconf 2.12.
11295 Wed Mar 18 09:24:59 1998  Nick Clifton  <nickc@cygnus.com>
11297         * configure.in: Add Thumb-pe target.
11299 Tue Mar 17 16:59:00 1998  Syd Polk <spolk@cygnus.com>
11301         * Makefile.in - changed sn targets to snavigator
11302         * configure.in - changed sn targets to snavigator
11304 Tue Mar 17 10:33:28 1998  Manfred Hollstein  <manfred@s-direktnet.de>
11306         * config-ml.in: After building symlink tree call make distclean
11307         if a Makefile got linked into ${ml_dir}/${ml_libdir}; this happens
11308         to be the case for libiberty.
11310 Tue Mar 17 10:22:37 1998  H.J. Lu  (hjl@gnu.ai.mit.edu)
11312         * configure: When making link, also check the current
11313         directory. The configure scripts may create one.
11315 Fri Mar  6 01:02:03 1998  Richard Henderson  <rth@cygnus.com>
11317         * config.sub: Accept alphapca56 and alphaev6 properly.
11319 Fri Mar  6 00:14:55 1998  Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
11321         * configure.in: Revert 3 Jan change for powerpc-linux-gnulibc1.
11323 Mon Feb 23 15:09:18 1998  Bruno Haible <bruno@linuix.mathematik.uni-karlsruhe.de
11325         * config.sub (sco5): Fix typo.
11327 Mon Feb 23 14:46:06 1998  Ian Lance Taylor  <ian@cygnus.com>
11329         * Makefile.in (INSTALL_MODULES): Move install-tcl before
11330         install-itcl.
11331         (install-itcl): Remove dependency on install-tcl.
11333 Mon Feb 23 09:53:28 1998  Mark Alexander  <marka@cygnus.com>
11335         * configure.in: Remove libgloss from noconfigdirs for MN10300.
11337 Thu Feb 19 13:40:41 1998  Ian Lance Taylor  <ian@cygnus.com>
11339         * configure.in: Don't build libgui for a cygwin32 target when not on
11340         a cygwin32 host.
11342 Wed Feb 18 12:29:00 1998  Jason Molenda  (crash@bugshack.cygnus.com)
11344         * configure (redirect): Set to null, so default behavior of
11345         configure is now --verbose.
11347 1998-02-16  Dave Love  <d.love@dl.ac.uk>
11349         * Makefile.in ($(CONFIGURE_TARGET_MODULES)): Run configure with
11350         CONFIG_SITE=/dev/null to forestall lossage with site configuration.
11352 Mon Feb 16 12:23:53 1998  Manfred Hollstein  <Manfred.Hollstein@ks.sel.alcatel.de>
11354         * Makefile.in (BASE_FLAGS_TO_PASS, EXTRA_TARGET_FLAGS): Really add
11355         this change to sync Makefile.in with its ChangeLog entries.
11357 Thu Feb 12 15:03:08 1998  H.J. Lu  <hjl@gnu.org>
11359         * ltmain.sh (mkdir): Check that the directory doesn't exist
11360         before we exit with error, so that we don't get races during
11361         parallel builds.
11363 Sat Feb  7 15:19:18 1998  Ian Lance Taylor  <ian@cygnus.com>
11365         * ltconfig, ltmain.sh: Update from libtool 1.0i.
11367 Fri Feb  6 01:33:52 1998  Manfred Hollstein  <manfred@s-direktnet.de>
11369         * Makefile.in (BASE_FLAGS_TO_PASS): Don't pass PICFLAG and
11370         PICFLAG_FOR_TARGET.
11371         (EXTRA_TARGET_FLAGS): Don't pass PICFLAG_FOR_TARGET.
11373         * configure: Emit a definition for the new macro enable_shared
11374         into each Makefile.
11376 Thu Feb  5 17:01:12 1998  Jason Molenda  (crash@bugshack.cygnus.com)
11378         * configure.in (host_tools, native_only): Add libtool.
11380 Wed Feb  4 16:53:58 1998  Geoffrey Noer  <noer@cygnus.com>
11382         * configure.in: add target-gperf to noconfigdirs for Cygwin32.
11383         Fix typo in ming config comment.
11385 Wed Feb  4 18:56:13 1998  Ian Lance Taylor  <ian@cygnus.com>
11387         * ltconfig, ltmain.sh: Update from libtool 1.0h.
11389 Mon Feb  2 19:38:19 1998  Ian Lance Taylor  <ian@cygnus.com>
11391         * config.sub: Add tic30 cases, and map c30 to tic30.
11393 Sun Feb  1 02:40:41 1998  Richard Henderson  <rth@cygnus.com>
11395         * Makefile.in (TARGET_CONFIGDIRS): Add libf2c.
11396         (ALL_TARGET_MODULES, CONFIGURE_TARGET_MODULES): Similarly
11397         (CHECK_TARGET_MODULES, INSTALL_TARGET_MODULES): Similarly
11398         (CLEAN_TARGET_MODULES): Similarly
11399         (all-target-libf2c): Add dependences.
11400         * configure.in (target_libs): Add libf2c.
11402 Fri Jan 30 17:18:32 1998  Geoffrey Noer  <noer@cygnus.com>
11404         * configure.in: Remove expect from noconfigdirs when target
11405         is cygwin32.  OK to build expect and dejagnu with Canadian
11406         Cross.
11408 Wed Jan 28 12:58:49 1998  Ian Lance Taylor  <ian@cygnus.com>
11410         * configure.in: Do build expect, dejagnu, and cvssrc for a cygwin32
11411         host.
11413         * config.guess: Use ${UNAME_MACHINE} rather than i386 for cygwin32
11414         and mingw32.
11416 Wed Jan 28 10:26:37 1998  Manfred Hollstein  <manfred@s-direktnet.de>
11418         * Makefile.in (BASE_FLAGS_TO_PASS): Remove passing $(local_prefix)
11419         here as it is not defined in the toplevel Makefile.
11421 Tue Jan 27 23:25:06 1998  Manfred Hollstein  <manfred@s-direktnet.de>
11423         * configure (package_makefile_rules_frag): New variable, which names
11424         a file with generic rules, ...
11425         Change comment to mention we now have FIVE parts.
11426         * configure: Undo last change.
11428 Tue Jan 27 23:15:55 1998  Lassi A. Tuura  <lat@iki.fi>
11430         * config.guess: More accurate determination of HP processor types.
11431         * config.sub: More accurate determination of HP processor types.
11433 Sat Jan 24 01:59:45 1998  Manfred Hollstein  <manfred@s-direktnet.de>
11435         * configure (package_makefile_frag): Move inserting the
11436         ${package_makefile_frag} to where it should be according
11437         to the comment.
11439 Fri Jan 23 00:29:28 1998  Philip Blundell  <pb@nexus.co.uk>
11441         * config.guess: Add support for Linux/ARM.
11443 Thu Jan 22 15:14:01 1998  Fred Fish  <fnf@cygnus.com>
11445         * .cvsignore: Remove *-info and *-install since they match
11446         release-info and mpw-install, which we don't want to just ignore.
11448 Thu Jan 22 01:38:33 1998  Richard Henderson  <rth@cygnus.com>
11450         * configure.in: Revert 3 Jan change for alpha-linux-gnulibc1.
11452 Sat Jan 17 21:28:08 1998  Pieter Nagel <pnagel@epiuse.co.za>
11454         * Makefile.in (FLAGS_TO_PASS): Pass down gcc_include_dir and
11455         local_prefix to sub-make invocations.
11457 Sat Jan 17 21:04:59 1998 H.J. Lu  (hjl@gnu.org)
11459         * configure.in: Check makefile fragments in the source
11460         directory.
11462 Fri Jan 16 00:41:37 1998  Alexandre Oliva <oliva@dcc.unicamp.br>
11464         * configure.in: Check whether host and target makefile
11465         fragments exist before adding them to *_makefile_frag.
11467 Wed Jan 14 23:39:10 1998  Bob Manson  <manson@charmed.cygnus.com>
11469         * configure.in (target_configdirs): Add cygmon for sparc64-elf.
11471 Wed Jan 14 12:48:07 1998  Keith Seitz  <keiths@pizza.cygnus.com>
11473         * configure.in: Make sure we only replace RPATH_ENVVAR on
11474         lines which begin with RPATH_ENVVAR, i.e. add "^" to the
11475         regexp to sed.
11477         * Makefile.in (BASE_FLAGS_TO_PASS): Pass RRPATH_ENVVAR down
11478         to sub-makes.
11480 1998-01-13  Lee Iverson   (leei@ai.sri.com)
11482         * config-ml.in (multi-do): LDFLAGS must include multilib
11483         designator.
11485 Tue Jan 13 01:13:24 1998   Robert Lipe (robertl@dgii.com)
11487         * config.guess: Recognize i[3456]-i586-UnixWare7-sysv5.
11489 Sun Jan  4 01:06:55 1998  Mumit Khan  <khan@xraylith.wisc.edu>
11491         * config.sub: Add mingw32 support.
11492         * configure.in: Likewise.
11494 Sat Jan  3 12:11:05 1998 Franz Sirl <franz.sirl-kernel@lauterbach.com>
11496         * configure.in: Finalize support for {alpha|powerpc}*-*-linux-gnulibc1
11498 Sun Dec 28 11:28:58 1997  Jeffrey A Law  (law@cygnus.com)
11500         * Makefile.in (INSTALL_TARGET): Do install-gcc first.
11501         * configure (gxx_include_dir): Provide a definition for subdirs
11502         which do not use autoconf.
11504 Wed Dec 24 22:46:55 1997  Jeffrey A Law  (law@cygnus.com)
11506         * config.guess: Sync with egcs.  Picks up new alpha support,
11507         BeOS & some additional linux support.
11509 Tue Dec 23 12:44:24 1997  Jeffrey A Law  (law@cygnus.com)
11511         * config.guess: HP 9000/803 is a PA1.1 machine.
11513 Mon Dec 22 02:39:24 1997  Richard Henderson  <rth@cygnus.com>
11515         * configure.in: It's alpha*-...
11517 Sun Dec 21 16:53:12 1997  H.J. Lu  (hjl@gnu.ai.mit.edu)
11519         * configure.in (host_makefile_frag, target_makefile_frag):
11520         Handle multiple config files.
11521         (alpha-*-linux*): Treat alpha-*-linux* as alpha-*-linux* and
11522         alpha-*-*.
11524 Thu Dec 18 13:13:03 1997  Doug Evans  <devans@canuck.cygnus.com>
11526         * mkdep: New file.
11528 Wed Dec 17 09:53:02 1997  Michael Meissner  <meissner@cygnus.com>
11530         * configure.in (d30v-*-*): Allow configuring of libide, vmake, etc.
11532 Tue Dec 16 17:36:05 1997  Ian Lance Taylor  <ian@cygnus.com>
11534         * Makefile.in: Add libgui directory.
11535         (GDB_TK): Add all-libgui.
11536         * configure.in: Add libgui directory.
11537         * configure: Add all-libgui to GDB_TK.
11539 Mon Dec 15 16:12:28 1997  Nick Clifton  <nickc@cygnus.com>
11541         * config-ml.in (multidirs): Add m32r to multilib list.
11543 Fri Dec 12 10:43:31 1997  Brendan Kehoe  <brendan@canuck.cygnus.com>
11545         * Makefile.in (all-target-gperf): Change dependency to
11546         all-target-libstdc++.
11548 Thu Dec 11 23:30:51 1997  Fred Fish  <fnf@ninemoons.com>
11550         * config.guess: Add BeOS support.
11552 Wed Dec 10 15:10:38 1997  Ian Lance Taylor  <ian@cygnus.com>
11554         Source directory cvs renamed to cvssrc:
11555         * configure.in (host_tools): Change cvs to cvssrc.
11556         (native_only): Likewise.
11557         (noconfigdirs) [various cases]: Likewise.
11558         * Makefile.in (ALL_MODULES): Change all-cvs to all-cvssrc.
11559         (CROSS_CHECK_MODULES): Change check-cvs to check-cvssrc.
11560         (INSTALL_MODULES): Change install-cvs to install-cvssrc.
11561         (CLEAN_MODULES): Change clean-cvs to clean-cvssrc.
11562         (all-cvssrc): Rename target from all-cvs.
11564 Wed Dec  3 07:55:59 1997  Jeffrey A Law  (law@cygnus.com)
11566         * configure (gxx_include_dir): Fix thinko.
11568 Tue Dec  2 10:55:34 1997  Jeffrey A Law  (law@cygnus.com)
11570         * Makefile.in (INSTALL_TARGET_CROSS): Define.
11571         (install-cross, install-gcc-cross): New targets.
11573 Tue Dec  2 10:08:31 1997  Nick Clifton  <nickc@cygnus.com>
11575         * configure.in (noconfigdirs): Add support for Thumb target.
11577         * config.sub (maybe_os): Add support for Thumb target.
11579 Sun Nov 30 16:12:27 1997  Bob Manson  <manson@charmed.cygnus.com>
11581         * Makefile.in: Add rules for cygmon.
11583         * configure.in: Build cygmon for sparc-elf and sparclite-aout.
11585 Thu Nov 27 01:31:30 1997  Jeffrey A Law  (law@cygnus.com)
11587         * Makefile.in (INSTALL_TARGET): Do install-gcc first.
11588         * configure (gxx_include_dir): Provide a definition for subdirs
11589         which do not use autoconf.
11591 Wed Nov 26 11:53:33 1997  Keith Seitz  <keiths@onions.cygnus.com>
11593         * Makefile.in, configure, configure.in, ChangeLog: merge with foundry's
11594         11/18/97 build
11596 Wed Nov 26 16:08:50 1997  Jeffrey A Law  (law@cygnus.com)
11598         * From Franz Sirl.
11599         * config.guess (powerpc*-*-linux): Handle glibc2 beta release
11600         found on RedHat Linux systems.
11602 Fri Nov 21 09:51:01 1997  Jeffrey A Law  (law@cygnus.com)
11604         * config.guess (alpha stuff): Merge with FSF to avoid incorrect
11605         guesses.
11607 Thu Nov 13 11:38:37 1997  Jeffrey A Law  (law@cygnus.com)
11609         * configure.in (i[3456]86-ncr-sysv4.3*): Tweak.
11611 Mon Nov 10 15:23:21 1997  H.J. Lu  <hjl@gnu.ai.mit.edu>
11613         * ltmain.sh: If mkdir fails, check whether the directory was created
11614         anyhow by some other process.
11616 Mon Nov 10 14:38:03 1997  Michael Meissner  <meissner@cygnus.com>
11618         * configure.in (d30v-*-*): Configure all directories.
11620 Sun Nov  9 17:36:20 1997  Michael Meissner  <meissner@cygnus.com>
11622         * configure.in (d30v-*-*): Configure newlib, libiberty directories
11623         for the D30V.
11625 Sat Nov  8 14:42:59 1997  Michael Meissner  <meissner@cygnus.com>
11627         * configure.in (d30v-*-*): Configure target-libgloss on the D30V.
11629 Fri Nov  7 10:34:09 1997  Rob Savoye  <rob@darkstar.cygnus.com>
11631         * include/libiberty.h: Add extern "C" { so it can be used with C++
11632         progrms.
11633         * include/remote-sim.h:  Add extern "C" { so it can be used with C++
11634         programs.
11636 Thu Oct 30 11:09:29 1997  Michael Meissner  <meissner@cygnus.com>
11638         * configure.in (d30v-*-*): Configure GCC now.
11640 Mon Oct 27 13:17:24 1997  Stan Shebs  <shebs@andros.cygnus.com>
11642         * configure.in: Remove a "second pass" of tweaking noconfigdirs,
11643         is no longer needed.
11645 Mon Oct 27 12:03:53 1997  Jason Merrill  <jason@yorick.cygnus.com>
11647         * Makefile.in: check-target-libio depends on all-target-libstdc++.
11649 Sun Oct 26 11:48:27 1997  Manfred Hollstein  (manfred@s-direktnet.de)
11651         * Makefile.in (bootstrap-lean): Combined with `normal' bootstrap
11652         targets using "$@" to provide support for similar but not identical
11653         targets without having to duplicate code.
11655 Mon Oct 20 15:28:49 1997  Klaus K"ampf  <kkaempf@progis.de>
11657         * makefile.vms: Fix to work with DEC C.
11659 Tue Oct  7 23:58:57 1997  Gavin Koch  <gavin@cygnus.com>
11661         * config.sub: Add mips-tx39-elf to marketing names.
11663 Tue Oct  7 14:24:41 1997  Ian Lance Taylor  <ian@cygnus.com>
11665         * ltmain.sh: Handle symlinks in generated script.
11667 Wed Oct  1 13:11:27 1997  Ian Lance Taylor  <ian@cygnus.com>
11669         * configure: Handle autoconf style directory options: --bindir,
11670         --datadir, --includedir, --infodir, --libdir, --libexecdir,
11671         --mandir, --oldincludedir, --sbindir, --sharedstatedir,
11672         --sysconfdir.
11673         * Makefile.in (sbindir, libexecdir, sysconfdir): New variables.
11674         (sharedstatedir, localstatedir, oldincludedir): New variables.
11675         (BASE_FLAGS_TO_PASS): Pass down bindir, datadir, includedir,
11676         infodir, libdir, libexecdir, localstatedir, mandir, oldincludedir,
11677         sbindir, sharedstatedir, and sysconfdir.
11679 Mon Sep 29 00:38:08 1997 Aaron Jackson <jackson@negril.msrce.howard.edu>
11681         * Makefile.in (bootstrap-lean): New target.
11683 Wed Sep 24 18:06:27 1997  Stu Grossman  <grossman@babylon-5.cygnus.com>
11685         * configure.in (d30v):  Remove tcl, tk, expect, gdb, itcl, tix, db,
11686         sn, and gnuserv from noconfigdirs.
11688 Wed Sep 24 15:18:32 1997  Ian Lance Taylor  <ian@cygnus.com>
11690         * ltmain.sh: Tweak shell pattern to avoid bug in NetBSD /bin/sh.
11692 Thu Sep 18 23:58:27 1997  Jeffrey A Law  (law@cygnus.com)
11694         * Makefile.in (cross): New target.
11696 Thu Sep 18 21:43:23 1997  Alexandre Oliva  <oliva@dcc.unicamp.br>
11697                           Jeff Law         <law@cygnus.com>
11699         * Makefile.in (bootstrap2, bootstrap3): New targets.
11700         (all-bootstrap): Remove outdated and confusing target.
11701         (bootstrap, bootstrap2, bootstrap3): Don't pass BOOT_CFLAGS down.
11703 Thu Sep 18 15:37:42 1997  Andrew Cagney  <cagney@b1.cygnus.com>
11705         * configure (tooldir): enable_gdbtk=YES for cygwin32, NO for
11706         windows.  Consistent with gdb/configure.
11708 1997-09-15 02:37  Ulrich Drepper  <drepper@cygnus.com>
11710         * configure.in: Name Linux target fragment.
11712         * configure: Rewrite so that project Makefile fragment is inserted
11713         first and appears last in the resulting Makefile.
11715 Tue Sep 16 09:55:07 1997  Andrew Cagney  <cagney@b1.cygnus.com>
11717         * Makefile.in (install-itcl): Install tcl first.
11719 Fri Sep 12 16:19:20 1997  Geoffrey Noer  <noer@cygnus.com>
11721         * configure.in: remove bison from noconfigdirs for Cygwin32 host
11723 Thu Sep 11 16:40:46 1997  H.J. Lu  (hjl@gnu.ai.mit.edu)
11725         * Makefile.in (local-distclean): Also remove mh-frag mt-frag.
11727         * configure.in (skipdirs): Add target-librx for Linux.
11728         (alpha-*-linux*): Use config/mh-elfalphapic and config/mt-elfalphapic.
11730 Wed Sep 10 21:29:54 1997  Jeffrey A Law  (law@cygnus.com)
11732         * Makefile.in (bootstrap): New target.
11734 Wed Sep 10 15:19:22 1997  Jeffrey A Law  (law@cygnus.com)
11736         * config.sub: Accept 'amigados' for backward compatability.
11738 Mon Sep  8 20:46:20 1997  Ian Lance Taylor  <ian@cygnus.com>
11740         * config.guess: Merge with FSF.
11742 Sun Sep  7 23:18:32 1997  Fred Fish  <fnf@ninemoons.com>
11744         * config.sub: Change 'amigados' to 'amigaos' to match current usage.
11746 Sun Sep  7 15:55:28 1997  Gavin Koch  <gavin@cygnus.com>
11748         * config.sub: Add "marketing-names" patch.
11750 Fri Sep  5 16:11:28 1997  Joel Sherrill  (joel@OARcorp.com)
11752         * configure.in (*-*-rtems*): Do not build libgloss for rtems.
11754 Fri Sep  5 12:27:17 1997  Jeffrey A Law  (law@cygnus.com)
11756         * config.sub: Handle v850-elf.
11758 Wed Sep  3 22:01:58 1997  Fred Fish  <fnf@ninemoons.com>
11760         * .cvsignore (*-install): Remove.
11762 Wed Sep  3 12:15:24 1997  Chris Provenzano  <proven@cygnus.com>
11764         * ltconfig: Set CONFIG_SHELL in libtool.
11765         * ltmain.sh: Use CONFIG_SHELL instead of /bin/sh
11767 Mon Sep  1 16:45:44 1997  Jim Wilson  <wilson@cygnus.com>
11769         * configure.in (target_subdir): Set to libraries if enable_multilib.
11771 Wed Aug 27 16:15:11 1997  Jim Wilson  <wilson@cygnus.com>
11773         * config.guess: Update from gcc directory.
11775 Tue Aug 26 16:46:46 1997  Andrew Cagney  <cagney@b1.cygnus.com>
11777         * Makefile.in (all-sim): Depends on all-readline.
11779 Wed Aug 20 19:57:37 1997  Jason Merrill  <jason@yorick.cygnus.com>
11781         * Makefile.in (BISON, YACC): Use $$s.
11782         (all-bison): Depend on all-texinfo.
11784 Tue Aug 19 01:41:32 1997  Jason Merrill  <jason@yorick.cygnus.com>
11786         * Makefile.in (BISON): Add -L flag.
11787         (YACC): Likewise.
11789 Mon Aug 18 11:30:50 1997  Nick Clifton  <nickc@cygnus.com>
11791         * configure.in (noconfigdirs): Add support for v850e target.
11793         * config.sub (maybe_os): Add support for v850e target.
11795 Mon Aug 18 11:30:50 1997  Nick Clifton  <nickc@cygnus.com>
11797         * configure.in (noconfigdirs): Add support for v850ea target.
11799         * config.sub (maybe_os): Add support for v850ea target.
11801 Mon Aug 18 09:24:06 1997  Gavin Koch  <gavin@cygnus.com>
11803         * config.sub: Add mipstx39.  Delete r3900.
11805 Mon Aug 18 17:20:10 1997  Jason Molenda  (crash@godzilla.cygnus.co.jp)
11807         * Makefile.in (all-autoconf): Depends on all-texinfo.
11809 Fri Aug 15 23:09:26 1997  Michael Meissner  <meissner@cygnus.com>
11811         * config-ml.in ({powerpc,rs6000}*-*-*): Update to current AIX and
11812         eabi targets.
11814 Thu Aug 14 14:42:17 1997  Ian Lance Taylor  <ian@cygnus.com>
11816         * configure: Get CFLAGS and CXXFLAGS from Makefile, if possible.
11818         * configure: When handling a Canadian Cross, handle YACC as well as
11819         BISON.  Just set BISON to bison.  When setting YACC, prefer bison.
11820         * Makefile.in (all-bison): Depend upon all-texinfo.
11822 Tue Aug 12 20:09:48 1997  Jason Merrill  <jason@yorick.cygnus.com>
11824         * Makefile.in (BISON): bison, not byacc or bison -y.
11825         (YACC): bison -y or byacc or yacc.
11826         (various): Add *-bison as appropriate.
11827         (taz): No need to mess with BISON anymore.
11829 Tue Aug 12 22:33:08 1997  Ian Lance Taylor  <ian@cygnus.com>
11831         * configure: If OSTYPE matches *win32*, try to find a good value for
11832         CONFIG_SHELL.
11834 Sun Aug 10 14:41:11 1997  Ian Lance Taylor  <ian@cygnus.com>
11836         * Makefile.in (taz): Get the version number from AM_INIT_AUTOMAKE in
11837         configure.in if it is present.
11839 Sat Aug  9 00:58:01 1997  Ian Lance Taylor  <ian@cygnus.com>
11841         * Makefile.in (LD_FOR_TARGET): Change ld.new to ld-new.
11843 Fri Aug  8 16:30:13 1997  Doug Evans  <dje@canuck.cygnus.com>
11845         * config.sub: Recognize `arc' cpu.
11846         * configure.in: Likewise.
11847         * config-ml.in: Likewise.
11849 Thu Aug  7 11:02:34 1997  Ian Lance Taylor  <ian@cygnus.com>
11851         * Makefile.in ($(INSTALL_X11_MODULES)): Depend upon installdirs.
11853 Wed Aug  6 16:27:29 1997  Chris Provenzano  <proven@cygnus.com>
11855         * configure: Changed sed delimiter from ':' to '|' when
11856         attempting to substitute ${config_shell} for SHELL. On
11857         NT ${config_shell} may contain a ':' in it.
11859 Wed Aug  6 12:29:05 1997  Jason Merrill  <jason@yorick.cygnus.com>
11861         * Makefile.in (EXTRA_GCC_FLAGS): Fix for non-bash shells.
11863 Wed Aug  6 00:42:35 1997  Ian Lance Taylor  <ian@cygnus.com>
11865         * Makefile.in (AS_FOR_TARGET): Change as.new to as-new.
11867 Tue Aug  5 14:08:51 1997  Ian Lance Taylor  <ian@cygnus.com>
11869         * Makefile.in (NM_FOR_TARGET): Change nm.new to nm-new.
11871         * ylwrap: If the program is a relative path, force it to be
11872         absolute.
11874 Tue Aug  5 12:12:44 1997  Andrew Cagney  <cagney@b1.cygnus.com>
11876         * configure (tooldir): Set BISON to `bison -y' and not just bison.
11878 Mon Aug  4 22:59:02 1997  Andrew Cagney  <cagney@b1.cygnus.com>
11880         * Makefile.in (CC_FOR_TARGET): When winsup/Makefile present,
11881         correctly specify the target build directory $(TARGET_SUBDIR)/winsup
11882         for libraries.
11884 Mon Aug  4 12:40:24 1997  Jason Merrill  <jason@yorick.cygnus.com>
11886         * Makefile.in (EXTRA_GCC_FLAGS): Fix handling of macros with values
11887         separated by spaces.
11889 Thu Jul 31 19:49:49 1997  Ian Lance Taylor  <ian@cygnus.com>
11891         * ylwrap: New file.
11892         * Makefile.in (DEVO_SUPPORT): Add ylwrap.
11894         * ltmain.sh: Handle /bin/sh at start of install program.
11896         * Makefile.in (DEVO_SUPPORT): Add ltconfig, ltmain.sh, and missing.
11898         * ltconfig, ltmain.sh: New files, from libtool 1.0.
11899         * missing: New file, from automake 1.2.
11901 Thu Jul 24 12:57:56 1997  Ian Lance Taylor  <ian@cygnus.com>
11903         * Makefile.in: Treat tix like tk, putting it in X11_MODULES.  Add
11904         check-tk to CHECK_X11_MODULES.
11906 Wed Jul 23 17:03:29 1997  Ian Lance Taylor  <ian@cygnus.com>
11908         * config.sub: Merge with FSF.
11910 Tue Jul 22 19:08:29 1997  Ian Lance Taylor  <ian@cygnus.com>
11912         * config.guess: Merge with FSF.
11914 Tue Jul 22 14:50:42 1997  Robert Hoehne <robert.hoehne@Mathematik.TU-Chemnitz.DE>
11916         * configure: Treat msdosdjgpp like go32.
11917         * configure.in: Likewise.  Don't remove gprof for go32.
11919         * configure: Change Makefile.tem2 to Makefile.tm2.
11921 Mon Jul 21 10:31:26 1997  Stephen Peters  <speters@cygnus.com>
11923         * configure.in (noconfigdirs): For alpha-dec-osf*, don't ignore grep.
11925 Tue Jul 15 14:33:03 1997  Brendan Kehoe  <brendan@lisa.cygnus.com>
11927         * install-sh (chmodcmd): Set to null if the DST directory already
11928         exists.  Same as Nov 11th change.
11930 Mon Jul 14 11:01:15 1997  Martin M. Hunt  <hunt@cygnus.com>
11932         * configure (GDB_TK): Needs itcl and tix.
11934 Mon Jul 14 00:32:10 1997  Jason Merrill  <jason@yorick.cygnus.com>
11936         * config.guess: Update from FSF.
11938 Fri Jul 11 11:57:11 1997  Martin M. Hunt  <hunt@cygnus.com>
11940         * Makefile.in (GDB_TK): Depend on itcl and tix.
11942 Fri Jul  4 13:25:31 1997  Ian Lance Taylor  <ian@cygnus.com>
11944         * Makefile.in (INSTALL_PROGRAM_ARGS): New variable.
11945         (INSTALL_PROGRAM): Use $(INSTALL_PROGRAM_ARGS).
11946         (INSTALL_SCRIPT): New variable.
11947         (BASE_FLAGS_TO_PASS): Pass down INSTALL_SCRIPT.
11948         * configure.in: If host is *-*-cygwin32*, set INSTALL_PROGRAM_ARGS
11949         to -x.
11950         * install-sh: Add support for -x option.
11952 Mon Jun 30 15:51:30 1997  Ian Lance Taylor  <ian@cygnus.com>
11954         * configure.in, Makefile.in: Treat tix like itcl.
11956 Thu Jun 26 13:59:19 1997  Ian Lance Taylor  <ian@cygnus.com>
11958         * Makefile.in (WINDRES): New variable.
11959         (WINDRES_FOR_TARGET): New variable.
11960         (BASE_FLAGS_TO_PASS): Add WINDRES_FOR_TARGET.
11961         (EXTRA_HOST_FLAGS): Add WINDRES.
11962         (EXTRA_TARGET_FLAGS): Add WINDRES.
11963         (EXTRA_GCC_FLAGS): Add WINDRES.
11964         ($(DO_X)): Pass down WINDRES.
11965         ($(CONFIGURE_TARGET_MODULES)): Set WINDRES when configuring.
11966         * configure: Treat WINDRES like DLLTOOL, and WINDRES_FOR_TARGET like
11967         DLLTOOL_FOR_TARGET.
11969 Wed Jun 25 15:01:26 1997  Felix Lee  <flee@cygnus.com>
11971         * configure.in: configure sim before gdb for win32-x-ppc
11973 Wed Jun 25 12:18:54 1997  Brendan Kehoe  <brendan@lisa.cygnus.com>
11975         Move gperf into the toplevel, from libg++.
11976         * configure.in (target_tools): Add target-gperf.
11977         (native_only): Add target-gperf.
11978         * Makefile.in (all-target-gperf): New target, depend on
11979         all-target-libg++.
11980         (configure-target-gperf): Empty rule.
11981         (ALL_TARGET_MODULES): Add all-target-gperf.
11982         (CONFIGURE_TARGET_MODULES): Add configure-target-gperf.
11983         (CHECK_TARGET_MODULES): Add check-target-gperf.
11984         (INSTALL_TARGET_MODULES): Add install-target-gperf.
11985         (CLEAN_TARGET_MODULES): Add clean-target-gperf.
11987 Mon Jun 23 10:51:53 1997  Jeffrey A Law  (law@cygnus.com)
11989         * config.sub (mn10200): Recognize new basic machine.
11991 Thu Jun 19 14:16:42 1997  Brendan Kehoe  <brendan@lisa.cygnus.com>
11993         * configure.in: Don't set ENABLE_MULTILIB, so we'll be passing
11994         --enable-multilib down to subdirs; setting TARGET_SUBDIR was enough.
11996 Tue Jun 17 15:31:20 1997  Brendan Kehoe  <brendan@lisa.cygnus.com>
11998         * configure.in: If we're building mips-sgi-irix6* native, turn on
11999         ENABLE_MULTILIB and set TARGET_SUBDIR.
12001 Tue Jun 17 12:20:59 1997  Tom Tromey  <tromey@cygnus.com>
12003         * Makefile.in (all-sn): Depend on all-grep.
12005 Mon Jun 16 11:11:10 1997  Ian Lance Taylor  <ian@cygnus.com>
12007         * configure.in: Use mh-ppcpic and mt-ppcpic for powerpc*-* targets.
12009         * configure: Set CFLAGS and CXXFLAGS, and substitute them into
12010         Makefile.  From Jeff Makey <jeff@cts.com>.
12011         * Makefile.in: Add comment for CFLAGS and CXXFLAGS.
12013         * Makefile.in (DISTBISONFILES): Remove.
12014         (taz): Don't futz with DISTBISONFILES.  Change BISON to use
12015         $(DEFAULT_YACC).
12017         * configure.in: Build itl, db, sn, etc., when building for native
12018         cygwin32.
12020         * Makefile.in (LD): New variable.
12021         (EXTRA_HOST_FLAGS): Pass down LD.
12022         ($(DO_X)): Likewise.
12024 Mon Jun 16 11:10:35 1997  Philip Blundell  <Philip.Blundell@pobox.com>
12026         * Makefile.in (INSTALL): Use $(SHELL) when executing install-sh.
12028 Fri Jun 13 10:22:56 1997  Bob Manson  <manson@charmed.cygnus.com>
12030         * configure.in (targargs): Strip out any supplied --build argument
12031         before adding our own. Always add --build.
12033 Thu Jun 12 21:12:28 1997  Bob Manson  <manson@charmed.cygnus.com>
12035         * configure.in (targargs): Pass --build if we're doing
12036         a cross-compile.
12038 Fri Jun  6 21:38:40 1997  Rob Savoye  <rob@chinadoll.cygnus.com>
12040         * configure: Use '|' instead of ":" as the separator in
12041         sed. Otherwise sed chokes on NT path names with drive
12042         designators. Also look for "?:*" as the leading characters in an
12043         absolute pathname.
12045 Mon Jun  2 13:05:20 1997  Gavin Koch  <gavin@cygnus.com>
12047         * config.sub: Support for r3900.
12049 Wed May 21 17:33:31 1997  Ian Lance Taylor  <ian@cygnus.com>
12051         * configure.in: Use install-sh, not install.sh.
12053 Wed May 14 16:06:51 1997  Ian Lance Taylor  <ian@cygnus.com>
12055         * Makefile.in (taz): Improve check for BISON so it doesn't try to
12056         apply it twice.
12058 Fri May  9 17:22:05 1997  Ian Lance Taylor  <ian@cygnus.com>
12060         * Makefile.in (INSTALL_MODULES): Put install-opcodes before
12061         install-binutils.
12063 Thu May  8 17:29:50 1997  Ian Lance Taylor  <ian@cygnus.com>
12065         * Makefile.in: Add automake targets.
12066         * configure.in (host_tools): Add automake.
12068 Tue May  6 15:49:52 1997  Ian Lance Taylor  <ian@cygnus.com>
12070         * configure: Default CXX to c++, not gcc.
12071         * Makefile.in (CXX): Set to c++, not gcc.
12072         (CXX_FOR_TARGET): When cross, transform c++, not gcc.
12074 Thu May  1 10:11:43 1997  Geoffrey Noer  <noer@cygnus.com>
12076         * install-sh: try appending a .exe if source file doesn't
12077         exist
12079 Wed Apr 30 12:05:36 1997  Jason Merrill  <jason@yorick.cygnus.com>
12081         * configure.in: Turn on multilib by default.
12082         (cross_only): Remove target-libiberty.
12084         * Makefile.in (all-gcc): Don't depend on libiberty.
12086 Mon Apr 28 18:39:45 1997  Michael Snyder  <msnyder@cleaver.cygnus.com>
12088         * config.guess: improve algorithm for recognizing Gnu Hurd x86.
12090 Thu Apr 24 19:30:07 1997  Ian Lance Taylor  <ian@cygnus.com>
12092         * Makefile.in (DEVO_SUPPORT): Add mpw-install.
12093         (DISTBISONFILES): Add ld/Makefile.in
12095 Tue Apr 22 17:17:28 1997  Geoffrey Noer  <noer@pizza.cygnus.com>
12097         * configure.in: if target is cygwin32 but host isn't cygwin32,
12098         don't configure gdb tcl tk expect, not just gdb.
12100 Mon Apr 21 13:33:39 1997  Tom Tromey  <tromey@cygnus.com>
12102         * configure.in: Added gnuserv everywhere sn appears.
12104         * Makefile.in (ALL_MODULES): Added all-gnuserv.
12105         (CROSS_CHECK_MODULES): Added check-gnuserv.
12106         (INSTALL_MODULES): Added install-gnuserv.
12107         (CLEAN_MODULES): Added clean-gnuserv.
12108         (all-gnuserv): New target.
12110 Thu Apr 17 13:57:06 1997  Per Fogelstrom  <pefo@openbsd.org>
12112         * config.guess: Fixes for MIPS OpenBSD systems.
12114 Tue Apr 15 12:21:07 1997  Ian Lance Taylor  <ian@cygnus.com>
12116         * Makefile.in (INSTALL_XFORM): Remove.
12117         (BASE_FLAGS_TO_PASS): Remove INSTALL_XFORM.
12119         * mkinstalldirs: New file, copied from automake.
12120         * Makefile.in (installdirs): Rename from install-dirs.  Use
12121         mkinstalldirs.  Change all users.
12122         (DEVO_SUPPORT): Add mkinstalldirs.
12124 Mon Apr 14 11:21:38 1997  Ian Lance Taylor  <ian@cygnus.com>
12126         * install-sh: Rename from install.sh.
12127         * Makefile.in (INSTALL): Change install.sh to install-sh.
12128         (DEVO_SUPPORT): Likewise.
12130         * configure: Use ${config_shell} with ${moveifchange}.  From Thomas
12131         Graichen <graichen@rzpd.de>.
12133 Fri Apr 11 16:37:10 1997  Niklas Hallqvist  <niklas@appli.se>
12135         * config.guess: Recognize OpenBSD systems correctly.
12137 Fri Apr 11 17:07:04 1997  Jason Molenda  (crash@godzilla.cygnus.co.jp)
12139         * README, Makefile.in (ETC_SUPPORT): Remove references to
12140         cfg-paper*, configure.{texi,man,info*}._
12142 Sun Apr  6 18:47:57 1997  Andrew Cagney  <cagney@kremvax.cygnus.com>
12144         * Makefile.in (all.normal): Ensure that gcc is built after all
12145         the x11 - ie gdb - targets.
12147 Tue Apr  1 16:28:50 1997  Klaus Kaempf  <kkaempf@progis.de>
12149         * makefile.vms: Don't run conf-a-gas.
12151 Mon Mar 31 16:26:55 1997  Joel Sherrill  <joel@oarcorp.com>
12153         * configure.in (hppa1.1-*-rtems*): New target, like hppa-*-*elf*.
12155 Sun Mar 30 12:38:27 1997  Fred Fish  <fnf@cygnus.com>
12157         * configure.in: Remove noconfigdirs case since gdb also
12158         configures and builds for tic80-coff.
12160 Fri Mar 28 18:28:52 1997  Ian Lance Taylor  <ian@cygnus.com>
12162         * configure: Set cache_file to config.cache.
12163         * Makefile.in (local-distclean): Remove config.cache.
12165 Wed Mar 26 18:49:39 1997  Ian Lance Taylor  <ian@cygnus.com>
12167         * COPYING: Update FSF address.
12169 Wed Mar 26 10:38:25 1997  Michael Meissner  <meissner@cygnus.com>
12171         * configure.in (tic80-*-*): Remove G++ libraries and libgloss from
12172         noconfigdirs.
12174 Mon Mar 24 15:02:39 1997  Ian Lance Taylor  <ian@cygnus.com>
12176         * Makefile.in (install-dirs): Don't crash if prefix, and hence
12177         MAKEDIRS, is empty.
12179 Mon Mar 24 12:40:55 1997  Doug Evans  <dje@canuck.cygnus.com>
12181         * config.sub: Tweak mn10300 entry.
12183 Fri Mar 21 15:35:27 1997  Michael Meissner  <meissner@cygnus.com>
12185         * configure.in (host_tools): Put sim before gdb, so gdb's
12186         configure.tgt can determine if the simulator was configured.
12188 Sun Mar 16 16:07:08 1997  Fred Fish  <fnf@cygnus.com>
12190         * config.sub: Move BeOS $os case to be with other Cygnus
12191         local cases.
12193 Sun Mar 16 01:34:55 1997  Martin Hunt <hunt@cygnus.com>
12195         * config.sub: Remove misplaced comment that broke Linux.
12197 Sat Mar 15 22:50:15 1997  Fred Fish  <fnf@cygnus.com>
12199         * config.sub: Add BeOS support.
12201 Mon Mar 10 13:30:11 1997  Tom Tromey  <tromey@cygnus.com>
12203         * Makefile.in (CHECK_X11_MODULES): Don't run check-tk.
12205 Wed Mar  5 12:09:29 1997  Martin  <hunt@cygnus.com>
12207         * configure.in (noconfigdirs): Remove tcl and tk from
12208         noconfigdirs for cygwin32 builds.
12210 Fri Feb 28 18:20:15 1997  Fred Fish  <fnf@cygnus.com>
12212         * configure.in (tic80-*-*): Remove ld from noconfigdirs.
12214 Thu Feb 27 14:57:26 1997  Ken Raeburn  <raeburn@cygnus.com>
12216         * Makefile.in (GAS_SUPPORT_DIRS, BINUTILS_SUPPORT_DIRS): Remove
12217         make-all.com, use makefile.vms instead.
12219 Tue Feb 25 18:46:14 1997  Stan Shebs  <shebs@andros.cygnus.com>
12221         * config.sub: Accept -lnews*.
12223 Tue Feb 25 13:19:14 1997  Andrew Cagney  <cagney@kremvax.tpgi.com.au>
12225         * configure.in (noconfigdirs): Disable target-newlib,
12226         target-examples and target-libiberty for d30v.
12228 Fri Feb 21 17:56:25 1997  Martin M. Hunt  <hunt@pizza.cygnus.com>
12230         * configure.in (noconfigdirs): Enable ld for d30v.
12232 Fri Feb 21 20:58:51 1997  Michael Meissner  <meissner@cygnus.com>
12234         * configure.in (tic80-*-*): Build compiler.
12236 Sun Feb 16 15:41:09 1997  Andrew Cagney  <cagney@critters.cygnus.com>
12238         * configure.in (d30v-*): Remove sim directory from list of
12239         unsupported d30v directories
12241 Tue Feb 18 17:32:42 1997  Martin M. Hunt  <hunt@pizza.cygnus.com>
12243         * config.sub, configure.in: Add d30v target cpu.
12245 Thu Feb 13 22:04:44 1997  Klaus Kaempf  <kkaempf@progis.de>
12247         * makefile.vms: New file.
12248         * make-all.com: Remove.
12250 Wed Feb 12 12:54:18 1997  Jim Wilson  <wilson@cygnus.com>
12252         * Makefile.in (EXTRA_GCC_FLAGS): Add LIBGCC2_DEBUG_CFLAGS.
12254 Sat Feb  8 20:36:49 1997  Michael Meissner  <meissner@cygnus.com>
12256         * Makefile.in (all-itcl): The rule is all-itcl, not all-tcl.
12258 Tue Feb  4 11:39:29 1997  Tom Tromey  <tromey@cygnus.com>
12260         * Makefile.in (ALL_MODULES): Added all-db.
12261         (CROSS_CHECK_MODULES): Addec check-db.
12262         (INSTALL_MODULES): Added install-db.
12263         (CLEAN_MODULES): Added clean-db.
12265 Mon Feb  3 13:29:36 1997  Ian Lance Taylor  <ian@cygnus.com>
12267         * config.guess: Merge with latest FSF sources.
12269 Tue Jan 28 09:20:37 1997  Tom Tromey  <tromey@cygnus.com>
12271         * Makefile.in (ALL_MODULES): Added all-itcl.
12272         (CROSS_CHECK_MODULES): Added check-itcl.
12273         (INSTALL_MODULES): Added install-itcl.
12274         (CLEAN_MODULES): Added clean-itcl.
12276 Thu Jan 23 01:44:27 1997  Geoffrey Noer  <noer@cygnus.com>
12278         * configure.in: build gdb for mn10200
12280 Fri Jan 17 15:32:15 1997  Doug Evans  <dje@canuck.cygnus.com>
12282         * Makefile.in (all-target-winsup): Depend on all-target-libio.
12284 Mon Jan 13 22:46:54 1997  Michael Meissner  <meissner@tiktok.cygnus.com>
12286         * configure.in (tic80-*-*): Turn off most targets right now.
12288 Fri Jan  3 16:04:03 1997  Ian Lance Taylor  <ian@cygnus.com>
12290         * Makefile.in (MAKEINFO): Check for the existence of the Makefile,
12291         rather than the makeinfo program.
12292         (do-info): Depend upon all-texinfo.
12294 Tue Dec 31 16:00:31 1996  Ian Lance Taylor  <ian@cygnus.com>
12296         * configure.in: Remove uses of config/mh-linux.
12298         * config.sub, config.guess: Merge with latest FSF sources.
12300 Fri Dec 27 23:04:33 1996  Fred Fish  <fnf@cygnus.com>
12302         * config.sub (case $basic_machine): Add tic80 entries.
12304 Fri Dec 27 12:07:59 1996  Ian Lance Taylor  <ian@cygnus.com>
12306         * config.sub, config.guess: Merge with latest FSF sources.
12308 Wed Dec 18 22:46:39 1996  Stan Shebs  <shebs@andros.cygnus.com>
12310         * mpw-build.in: Build ld before gcc, use NewFolderRecursive.
12311         * mpw-config.in: Test for NewFolderRecursive.
12312         * mpw-install: Use symbolic name for startup filename.
12313         * mpw-README: Add various additional details.
12315 Wed Dec 18 13:11:46 1996  Jim Wilson  <wilson@cygnus.com>
12317         * configure.in (mips*-sgi-irix6*): Remove binutils from noconfigdirs.
12319 Wed Dec 18 10:29:31 1996  Jeffrey A Law  (law@cygnus.com)
12321         * configure.in: Do build gcc and the target libraries for
12322         the mn10200.
12324 Wed Dec  4 16:53:05 1996  Geoffrey Noer  <noer@cygnus.com>
12326         * configure.in: don't avoid building gdb for mn10300 any more
12327         * Makefile.in: double-quote GCC_FOR_TARGET line in EXTRA_GCC_FLAGS
12328         instead of single-quoting it.
12330 Tue Dec  3 23:26:50 1996  Jason Merrill  <jason@yorick.cygnus.com>
12332         * configure.in: Don't use --with-stabs on IRIX 6.
12334 Tue Dec  3 09:05:25 1996  Doug Evans  <dje@canuck.cygnus.com>
12336         * configure.in (m32r): Build gdb, libg++ now.
12338 Sun Dec  1 00:18:59 1996  Peter Schauer  (pes@regent.e-technik.tu-muenchen.de)
12340         * configure.in (mips*-sgi-irix6*):  Remove gdb and related
12341         directories from noconfigdirs.
12343 Tue Nov 26 11:45:33 1996  Kim Knuttila  <krk@cygnus.com>
12345         * config.sub (basic_machine): added mips16 configuration
12347 Sat Nov 23 19:26:22 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12349         * config.sub: Handle d10v-unknown.
12351 Sat Nov 23 10:23:01 1996  Gavin Koch  <gavin@cygnus.com>
12353         * config.sub: Handle v850-unknown.
12355 Thu Nov 21 16:19:44 1996  Geoffrey Noer  <noer@cygnus.com>
12357         * Makefile.in: add findutils
12358         * configure.in: add findutils to list of host_tools
12360 Wed Nov 20 10:09:01 1996  Jeffrey A Law  (law@cygnus.com)
12362         * config.sub: Handle mn10200 and mn10300.
12364 Tue Nov 19 16:35:14 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12366         * configure.in (d10v-*): Do not build librx.
12368 Mon Nov 18 13:28:41 1996  Jeffrey A Law  (law@cygnus.com)
12370         * configure.in (mn10300): Build everything except gdb & libgloss.
12372 Wed Nov 13 14:59:46 1996  Per Bothner  <bothner@deneb.cygnus.com>
12374         * config.guess:  Patch for Dansk Data Elektronik servers,
12375         from Niels Skou Olsen <nso@dde.dk>.
12377         For ncr, use /bin/uname rather than uname, since GNU uname does not
12378         support -p.  Suggested by Mark Mitchell <mmitchell@usa.net>.
12380         Patch for MIPS R4000 running System V,
12381         from Eric S. Raymond <esr@snark.thyrsus.com>.
12383         Fix thinko for nextstep.
12385         Patch for OSF1 in i?86, from Dan Murphy <dlm@osf.org> via Harlan Stenn.
12387         Sat Jun 24 18:58:17 1995  Morten Welinder  <terra+@cs.cmu.edu>
12388         * config.guess: Guess mips-dec-mach_bsd4.3.
12390         Thu Oct 10 04:07:04 1996  Harlan Stenn <harlan@pfcs.com>
12391         * config.guess (i?86-ncr-sysv*):  Emit just enough of the minor
12392         release numbers.
12393         * config.guess (mips-mips-riscos*):  Emit just enough of the
12394         release number.
12396         Tue Oct  8 10:37:22 1996  Frank Vance <fvance@waii.com>
12397         * config.guess (sparc-auspex-sunos*):  Added.
12398         (f300-fujitsu-*): Added.
12400         Wed Sep 25 22:00:35 1996  Jeff Woolsey <woolsey@jlw.com>
12401         * config.guess:  Recognize a Tadpole as a sparc.
12403 Wed Nov 13 00:53:09 1996  David J. MacKenzie  <djm@churchy.gnu.ai.mit.edu>
12405         * config.guess: Don't assume that NextStep version is either 2 or
12406         3.  NextStep 4 (aka OpenStep 4) has come out now.
12408 Mon Nov 11 23:52:03 1996  David J. MacKenzie  <djm@churchy.gnu.ai.mit.edu>
12410         * config.guess: Support Cray T90 that reports itself as "CRAY TS".
12411         From Rik Faith <faith@cs.unc.edu>.
12413 Fri Nov  8 11:34:58 1996  David J. MacKenzie  <djm@geech.gnu.ai.mit.edu>
12415         * config.sub: Contributions from bug-gnu-utils to:
12416         Support plain "hppa" (no version given) architecture, reported by
12417         OpenStep.
12418         OpenBSD like NetBSD.
12419         LynxOs is not a hardware supplier.
12421         * config.guess: Contributions from bug-gnu-utils to add support for:
12422         OpenBSD like NetBSD.
12423         Stratus systems.
12424         More Pyramid systems.
12425         i[n>4]86 Intel chips.
12426         M680[n>4]0 Motorola chips.
12427         Use unknown instead of lynx for hardware manufacturer.
12429 Mon Nov 11 10:09:08 1996  Brendan Kehoe  <brendan@lisa.cygnus.com>
12431         * install.sh (chmodcmd): Set to null if the DST directory already
12432         exists.
12434 Mon Nov 11 10:43:41 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12436         * configure.in (powerpc*-{eabi,elf,linux,rtem,sysv,solaris}*): Do
12437         not use mt-ppc target Makefile fragment any more.
12439 Sun Nov  3 19:17:07 1996  Stu Grossman  (grossman@critters.cygnus.com)
12441         * configure.in (*-*-windows):  Exclude everything but those dirs
12442         needed to build windows.
12444 Tue Oct 29 16:41:31 1996  Doug Evans  <dje@canuck.cygnus.com>
12446         * Makefile.in (all-target-winsup): Depend on all-target-librx.
12448 Mon Oct 28 17:32:46 1996  Stu Grossman  (grossman@critters.cygnus.com)
12450         * configure.in:  Exclude mmalloc from i386-windows.
12452 Thu Oct 24 09:22:46 1996  Stu Grossman  (grossman@critters.cygnus.com)
12454         * Undo my previous change.
12456 Thu Oct 24 12:12:04 1996  Ian Lance Taylor  <ian@cygnus.com>
12458         * Makefile.in (EXTRA_GCC_FLAGS): Pass down GCC_FOR_TARGET
12459         unconditionally.
12460         (MAKEOVERRIDES): Define (revert this part of October 18 change).
12462 Thu Oct 24 09:02:07 1996  Stu Grossman  (grossman@critters.cygnus.com)
12464         * Makefile.in (FLAGS_TO_PASS):  Add $(HOST_FLAGS) to allow the
12465         host to add it's own flags.
12467 Tue Oct 22 15:20:26 1996  Ian Lance Taylor  <ian@cygnus.com>
12469         * configure: Handle GCC_FOR_TARGET like CC_FOR_TARGET.
12471 Fri Oct 18 13:37:13 1996  Ian Lance Taylor  <ian@cygnus.com>
12473         * Makefile.in (CC_FOR_TARGET): Check for xgcc, not Makefile.
12474         (CXX_FOR_TARGET): Likewise.
12475         (GCC_FOR_TARGET): Define.
12476         (BASE_FLAGS_TO_PASS): Remove GCC_FOR_TARGET.
12477         (EXTRA_GCC_FLAGS): Define GCC_FOR_TARGET based on whether
12478         CC_FOR_TARGET was specified on the command line.
12479         (MAKEOVERRIDES): Don't define.
12481 Thu Oct 17 10:27:56 1996  Doug Evans  <dje@canuck.cygnus.com>
12483         * configure.in (m32r): Fix spelling of libg++ libs.
12485 Thu Oct 10 10:37:17 1996  Stan Shebs  <shebs@andros.cygnus.com>
12487         * config.sub (-apple*): Remove, now redundant.
12489 Thu Oct 10 12:30:54 1996  Ian Lance Taylor  <ian@cygnus.com>
12491         * configure: Don't get confused by CPU-VENDOR-linux-gnu.
12493         * configure: Rework yesterday's sed script patch.
12495         * config.sub: Merge with FSF.
12497 Wed Oct  9 17:24:59 1996  Per Bothner  <bothner@deneb.cygnus.com>
12499         * config.guess:  Merge from FSF.
12501         1996-09-12  Richard Stallman  <rms@ethanol.gnu.ai.mit.edu>
12502         * config.guess: Use pc instead of unknown, for pc clone systems.
12503         Change linux to linux-gnu.
12505         Mon Jul 15 23:51:11 1996  Karl Heuer  <kwzh@gnu.ai.mit.edu>
12506         * config.guess: Avoid non-portable tr syntax.
12508 Wed Oct  9 06:06:46 1996  Jeffrey A Law  (law@cygnus.com)
12510         * test-build.mk (HOLES): Add "xargs" for gdb.
12512         * configure: Avoid hpux10.20 sed bug.
12514 Tue Oct  8 08:32:48 1996  Stu Grossman  (grossman@critters.cygnus.com)
12516         * configure.in:  Add support for windows host
12517         (that is a build done under the Microsoft build environment).
12519 Tue Oct  8 10:39:08 1996  Ian Lance Taylor  <ian@cygnus.com>
12521         * Makefile.in: Replace all uses of srcroot with s, to shrink
12522         command line lengths.
12524         Patches from Geoffrey Noer <noer@cygnus.com>:
12525         * configure.in: If configuring for newlib, pass --with-newlib to
12526         subdirectories.
12527         * Makefile.in (CC_FOR_TARGET): If winsup/Makefile exists, pass a
12528         -Bnewlib/ and -Lwinsup to gcc.
12529         (CXX_FOR_TARGET): Likewise.
12531 Mon Oct  7 10:59:35 1996  Ian Lance Taylor  <ian@cygnus.com>
12533         * Makefile.in (ETC_SUPPORT): Add configure.
12535 Fri Oct  4 12:22:58 1996  Angela Marie Thomas (angela@cygnus.com)
12537         * configure.in: Use config/mh-dgux386 for i[345]86-dg-dgux
12538         host configuration file.
12540 Thu Oct  3 09:28:25 1996  Jeffrey A Law  (law@cygnus.com)
12542         * configure.in: Break mn10x00 support into separate
12543         mn10200 and mn10300 configurations.
12544         * config.sub: Likewise.
12546 Wed Oct  2 22:27:52 1996  Jeffrey A Law  (law@cygnus.com)
12548         * configure.in: Add lots of stuff to noconfigdirs for
12549         the mn10x00 targets.
12551         * config.sub, configure.in: Add mn10x00 support.
12553 Wed Oct  2 15:52:36 1996  Klaus Kaempf  <kkaempf@progis.de>
12555         * make-all.com: Call conf-a-gas, not config-a-gas.
12557 Tue Oct  1 01:28:41 1996  James G. Smith  <jsmith@cygnus.co.uk>
12559         * configure.in (noconfigdirs): Don't build libgloss for arm-coff
12560         targets.
12562 Mon Sep 30 14:24:01 1996  Stan Shebs  <shebs@andros.cygnus.com>
12564         * mpw-README: Add much more detail for native PowerMac.
12565         * mpw-install: New file.
12566         * mpw-configure: Add --norecursion and --help options.
12567         * mpw-config.in: Translate readme and install files when
12568         copying to objdir.
12569         * mpw-build.in: Don't always depend on byacc and flex.
12570         (install-only-top): New action.
12572 Fri Sep 27 17:39:44 1996  Stu Grossman  (grossman@critters.cygnus.com)
12574         * configure.in:  You can now configure GDB for the v850.
12576 Tue Sep 24 19:05:12 1996  Stan Shebs  <shebs@andros.cygnus.com>
12578         * configure.in (noconfigdirs): Don't configure any C++ dirs
12579         if targeting D10V.
12581 Tue Sep 17 12:15:31 1996  Ian Lance Taylor  <ian@cygnus.com>
12583         * config.sub: Recognize mips64vr5000.
12585 Mon Sep 16 17:00:52 1996  Ian Lance Taylor  <ian@cygnus.com>
12587         * configure.in: Use a single line for host_tools and native_only.
12589 Mon Sep  9 12:21:30 1996  Doug Evans  <dje@canuck.cygnus.com>
12591         * config.sub, configure.in: Add entries for m32r.
12593 Thu Sep  5 13:52:47 1996  Tom Tromey  <tromey@creche.cygnus.com>
12595         * Makefile.in (inet-install): Don't run install-gzip.
12597 Wed Sep  4 17:26:13 1996  Stu Grossman  (grossman@critters.cygnus.com)
12599         * configure.in:  Don't config lots of things for *-*-windows*.
12601 Sat Aug 31 11:45:57 1996  Stan Shebs  <shebs@andros.cygnus.com>
12603         * mpw-config.in: Test for mpw-true, true, and null-command scripts.
12604         (host_libs, host_tools): Copy from configure.in.
12605         * mpw-configure: Don't complain about directories not found.
12607 Thu Aug 29 16:44:58 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12609         * configure.in (i[345]86): Recognize i686 for pentium pro.
12610         (i[3456]86-*-dgux*): Use config/mh-sysv for the host configuration
12611         file.
12613         * config.guess (i[345]86): Ditto.
12615 Mon Aug 26 18:34:42 1996  Martin M. Hunt  <hunt@pizza.cygnus.com>
12617         * configure.in (noconfigdirs): Removed gdb for D10V.
12619 Thu Aug 22 17:13:52 1996  Jeffrey A Law  (law@cygnus.com)
12621         * configure.in: Remove ld, target-libio, target-libg++, and
12622         target-libstdc++ from noconfigdirs.
12624 Wed Aug 21 18:56:38 1996  Fred Fish  <fnf@cygnus.com>
12626         * configure: Fix three locations where shell scripts were
12627         being run directly rather than with config_shell.
12629 Tue Aug 20 13:08:47 1996  J.T. Conklin  <jtc@hippo.cygnus.com>
12631         * configure.in (v850-*-*): Set up initial $noconfigdirs.
12632         * config.sub (basic_machine): Recognize v850.
12634 Thu Aug 15 12:19:33 1996  Stan Shebs  <shebs@andros.cygnus.com>
12636         * mpw-configure: Handle multiple enable/disable options and
12637         pass them down recursively, handle -c and -s flags appropriately
12638         depending on choice of compiler, add escape mechanism for
12639         quoted arguments to gC.
12641 Mon Aug 12 13:15:13 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12643         * configure.in (powerpc*-*-*): For eabi, system V.4, Linux, and
12644         solaris targets, use config/mt-ppc to set C{,XX}FLAGS_FOR_TARGETS
12645         so that -mrelocatable-lib and -mno-eabi are used.
12647         * Makefile.in (CONFIGURE_TARGET_MODULES): If target compiler does
12648         not support --print-multi-lib, don't abort.
12650 Thu Aug  8 12:18:59 1996  Klaus Kaempf  <kkaempf@progis.de>
12652         * make-all.com: Run config-a-gas.
12653         * setup.com: Don't copy subdirectory files around.
12655 Tue Jul 30 17:49:31 1996  Brendan Kehoe  <brendan@cygnus.com>
12657         * configure.in (*-*-ose): Remove exclusion of libgloss for this
12658         target, it now compiles correctly.
12660 Sat Jul 27 15:10:43 1996  Stan Shebs  <shebs@andros.cygnus.com>
12662         * mpw-config.in: Generate Mac include for elf/dwarf2.h.
12664 Tue Jul 23 10:47:04 1996  Martin M. Hunt  <hunt@pizza.cygnus.com>
12666         * configure.in (d10v-*-*): Remove ld from $noconfigdirs.
12668 Mon Jul 22 13:28:51 1996  Brendan Kehoe  <brendan@lisa.cygnus.com>
12670         * configure.in (native_only): Add prms.
12672 Mon Jul 22 12:27:58 1996  Ian Lance Taylor  <ian@cygnus.com>
12674         * Makefile.in (GAS_SUPPORT_DIRS): Add make-all.com and setup.com.
12675         (BINUTILS_SUPPORT_DIRS): Likewise.
12677 Thu Jul 18 12:55:40 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12679         * configure.in (d10v-*-*): Don't configure ld or gdb until the
12680         d10v support is added.
12682 Wed Jul 17 14:33:09 1996  Martin M. Hunt  <hunt@pizza.cygnus.com>
12684         * configure.in (d10v-*-*): New target.
12686 Mon Jul 15 11:53:00 1996  Jeffrey A Law  (law@cygnus.com)
12688         * config.guess (HP 9000/811): Recognize this as a PA1.1
12689         machine.
12691 Fri Jul 12 23:21:17 1996  Ken Raeburn  <raeburn@cygnus.com>
12693         * Makefile.in (do-tar-gz): New target, split out from tail end of
12694         taz target.  Run each command separately, don't use pipes.
12695         (taz): Use it.
12697 Fri Jul 12 12:08:04 1996  Stan Shebs  <shebs@andros.cygnus.com>
12699         * mpw-configure: Look for g-mpw-make.sed in config/mpw.
12700         * mpw-build.in: No builds should depend on building byacc or flex,
12701         they are assumed to be installed already.
12703 Fri Jul 12 09:52:52 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12705         * Makefile.in (CONFIGURE_TARGET_MODULES): Set r environment
12706         variable that CC_FOR_TARGET needs.
12708 Thu Jul 11 10:09:45 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12710         * Makefile.in (CONFIGURE_TARGET_MODULES): Determine if the multlib
12711         options have changed since the last time the subdirectory was
12712         configured, and if it has, reconfigure.
12713         (CLEAN_TARGET_MODULES): Delete multilib.out and tmpmulti.out, which
12714         CONFIGURE_TARGET_MODULES uses to remember the old multilib options.
12716 Wed Jul 10 18:56:59 1996  Doug Evans  <dje@canuck.cygnus.com>
12718         * Makefile.in (ALL_MODULES,CROSS_CHECK_MODULES,INSTALL_MODULES,
12719         CLEAN_MODULES): Add bash.
12720         (all-bash): New target.
12722 Mon Jul  8 17:33:14 1996  Jim Wilson  <wilson@cygnus.com>
12724         * configure.in (mips-sgi-irix6*): Use mh-irix6 instead of mh-irix5.
12726 Mon Jul  1 13:31:35 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12728         * config.sub (basic_machine): Recognize d10v as a valid processor.
12730 Fri Jun 28 12:14:35 1996  Stan Shebs  <shebs@andros.cygnus.com>
12732         * mpw-configure: Add support for --bindir.
12733         * mpw-build.in: Use a GCC-specific build script for GCC actions.
12735 Wed Jun 26 17:20:12 1996  Geoffrey Noer  <noer@cygnus.com>
12737         * configure.in: add bash, time, gawk to list of hosttools and things
12738         to only build for native toolchains
12740 Tue Jun 25 23:09:03 1996  Jason Molenda  (crash@godzilla.cygnus.co.jp)
12742         * Makefile.in (docdir): Remove.
12744 Tue Jun 25 19:00:08 1996  Jason Molenda  (crash@godzilla.cygnus.co.jp)
12746         * Makefile.in (datadir): Set to $(prefix)/share.
12748 Mon Jun 24 23:26:07 1996  Geoffrey Noer  <noer@cygnus.com>
12750         * configure.in: build diff and patch for cygwin32-hosted
12751         toolchains.
12753 Mon Jun 24 15:01:12 1996  Joel Sherrill  <joel@merlin.gcs.redstone.army.mil>
12755         * config.sub: Accept -rtems*.
12757 Sun Jun 23 22:41:54 1996  Geoffrey Noer  <noer@cygnus.com>
12759         * configure.in: enable dosrel for cygwin32-hosted builds,
12760                 remove diff from the list of things not buildable
12761                 via Canadian Cross
12763 Sat Jun 22 11:39:01 1996  Jason Merrill  <jason@yorick.cygnus.com>
12765         * Makefile.in (TARGET_SUBDIR): Move comment to previous line so we
12766         don't get ". ".
12768 Fri Jun 21 17:24:48 1996  Jim Wilson  <wilson@cygnus.com>
12770         * configure.in (mips*-sgi-irix6*): Set noconfigdirs appropriately.
12772 Thu Jun 20 16:57:40 1996  Ken Raeburn  <raeburn@cygnus.com>
12774         * Makefile.in (taz): Handle case where tex3patch didn't even get
12775         checked out.  Also, if it was found, put the symlink in a new util
12776         subdirectory.
12778 Thu Jun 20 12:20:33 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12780         * config.guess (*:Linux:*:*): Add support for PowerPC Linux.
12782 Tue Jun 18 14:24:12 1996  Klaus Kaempf  (kkaempf@progis.de)
12784         * config.sub: Recognize -openvms.
12785         * configure.in (alpha*-*-*vms*): Set noconfigdirs.
12786         * make-all.com, setup.com: New files.
12788 Mon Jun 17 16:34:46 1996  Jason Merrill  <jason@yorick.cygnus.com>
12790         * Makefile.in (taz): tex3patch moved to texinfo/util.
12792 Sat Jun 15 17:13:25 1996  Geoffrey Noer <noer@cygnus.com>
12794         * configure: enable_gdbtk=no for cygwin32-hosted toolchains
12795         * configure.in: remove make from disable-if-Can-Cross list
12796                 enable gdb if ${host} and ${target} are cygwin32
12798 Fri Jun  7 18:16:52 1996  Harlan Stenn <harlan@pfcs.com>
12800         * config.guess (i?86-ncr-sysv*):  Emit minor release numbers.
12801         Recognize the NCR 4850 machine and NCR Pentium-based platforms.
12803 Wed Jun  5 00:09:17 1996  Per Bothner  <bothner@wombat.gnu.ai.mit.edu>
12805         * config.guess:  Combine mips-mips-riscos cases, and use cpp to
12806         distinguish sysv/svr4/bsd variants.
12807         Based on a patch from Harlan Stenn <harlan@pfcs.com>.
12809 Fri Jun  7 14:24:49 1996  Tom Tromey  <tromey@creche.cygnus.com>
12811         * configure.in: Added copyright notice.
12812         * move-if-change: Added copyright notice.
12814 Thu Jun  6 16:27:05 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12816         * configure.in (powerpcle-*-solaris*): Until we get shared
12817         libraries working, don't build gdb, sim, make, tcl, tk, or
12818         expect.
12820 Tue Jun  4 20:41:45 1996  Per Bothner  <bothner@deneb.cygnus.com>
12822         * config.guess:  Merge with FSF:
12824         Mon Jun  3 08:49:14 1996  Karl Heuer  <kwzh@gnu.ai.mit.edu>
12825         * config.guess (*:Linux:*:*): Add guess for sparc-unknown-linux.
12827         Fri May 24 18:34:53 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
12828         * config.guess (AViiON:dgux:*:*): Fix typo in recognizing mc88110.
12830         Fri Apr 12 20:03:59 1996  Per Bothner  <bothner@spiff.gnu.ai.mit.edu>
12831         * config.guess:  Combine two OSF1 rules.
12832         Also recognize field test versions.  From mjr@zk3.dec.com.
12833         * config.guess (dgux):  Use /usr/bin/uname rather than uname,
12834         because GNU uname does not support -p.  From pmr@pajato.com.
12836 Tue Jun  4 11:07:25 1996  Tom Tromey  <tromey@csk3.cygnus.com>
12838         * Makefile.in (MAKEDIRS): Removed $(tooldir).
12840 Tue May 28 12:30:50 1996  Stan Shebs  <shebs@andros.cygnus.com>
12842         * mpw-README: Document GCCIncludes.
12844 Sun May 26 15:16:27 1996  Fred Fish  <fnf@cygnus.com>
12846         * configure.in (alpha-*-linux*): Set enable_shared to yes.
12848 Tue May 21 15:41:39 1996  Stan Shebs  <shebs@andros.cygnus.com>
12850         * mpw-configure: Handle --enable-FOO and --disable-FOO.
12852 Mon May 20 10:12:29 1996  Geoffrey Noer  <noer@cygnus.com>
12854         * configure.in (*-*-cygwin32): Configure make.
12856 Tue May  7 14:19:42 1996  Tom Tromey  <tromey@snuffle.cygnus.com>
12858         * Makefile.in (inet-install): Quote value of INSTALL_MODULES.
12860 Fri May  3 08:57:17 1996  Tom Tromey  <tromey@lisa.cygnus.com>
12862         * Makefile.in (all-inet): Depend on all-perl.
12864         * Makefile.in (inet-install): New target.
12866         * Makefile.in (all-inet): Depend on all-tcl.
12867         (all-inet): Depend on all-send-pr.
12869 Tue Apr 30 13:55:51 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12871         * configure.in (powerpcle-*-solaris*): Turn off tk and tcl
12872         temporarily.
12874 Thu Apr 25 11:48:20 1996  Ian Lance Taylor  <ian@cygnus.com>
12876         * configure.in: Don't configure --with-gnu-ld on AIX.
12878 Thu Apr 25 06:33:36 1996  Michael Meissner  <meissner@wogglebug.tiac.net>
12880         * configure.in (powerpcle-*-solaris*): Turn off gdb temporarily.
12882 Tue Apr 23 09:07:39 1996  Tom Tromey  <tromey@creche.cygnus.com>
12884         * Makefile.in (ALL_MODULES): Added all-inet.
12885         (CROSS_CHECK_MODULES): Added check-inet.
12886         (INSTALL_MODULES): Added install-inet.
12887         (CLEAN_MODULES): Added clean-inet.
12888         (all-indent): New target.
12890         * configure.in (host_tools): Added inet.
12891         (native_only): Added inet.
12892         (noconfigdirs): Added inet.
12894 Fri Apr 19 15:35:29 1996  Ian Lance Taylor  <ian@cygnus.com>
12896         * configure.in: Don't configure libgloss if we are not configuring
12897         newlib.
12899 Wed Apr 17 19:30:01 1996  Rob Savoye  <rob@chinadoll.cygnus.com>
12901         * configure.in: Don't configure libgloss for unsupported
12902         architectures.
12904 Tue Apr 16 11:17:05 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12906         * Makefile.in (CLEAN_MODULES): Add clean-apache.
12908 Mon Apr 15 15:09:05 1996  Tom Tromey  <tromey@creche.cygnus.com>
12910         * Makefile.in (ALL_MODULES): Include all-apache.
12911         (CROSS_CHECK_MODULES): Include check-apache.
12912         (INSTALL_MODULES): Include install-apache.
12913         (all-apache): New target.
12915         * configure.in: Added apache everywhere perl is seen.
12917 Mon Apr 15 14:59:13 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12919         * Makefile.in: Add support for clean-{module} and
12920         clean-target-{module} rules.
12922 Wed Apr 10 21:37:41 PDT 1996  Marilyn E. Sander <msander@cygnus.com>
12924         * configure.in (*-*-ose) do not build libgloss.
12926 Mon Apr  8 16:16:20 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12928         * config.guess (prep*:SunOS:5.*:*): Turn into
12929         powerpele-unknown-solaris2.
12931 Mon Apr  8 14:45:41 1996  Ian Lance Taylor  <ian@cygnus.com>
12933         * configure.in: Permit --enable-shared to specify a list of
12934         directories.
12936 Fri Apr  5 08:17:57 1996  Jason Molenda  (crash@phydeaux.cygnus.com)
12938         * configure.in (host==solaris): Pass only the first word of $CC
12939         to /usr/bin/which when checking if we're using /usr/ccs/bin/cc.
12941 Fri Apr  5 03:16:13 1996  Jason Molenda  (crash@phydeaux.cygnus.com)
12943         * Makefile.in (BASE_FLAGS_TO_PASS): pass down $(MAKE).
12945 Thu Mar 28 14:11:11 1996  Tom Tromey  <tromey@creche.cygnus.com>
12947         * Makefile.in (ALL_MODULES): Include all-perl.
12948         (CROSS_CHECK_MODULES): Include check-perl.
12949         (INSTALL_MODULES): Include install-perl.
12950         (ALL_X11_MODULES): Include all-guile.
12951         (CHECK_X11_MODULES): Include check-guile.
12952         (INSTALL_X11_MODULES): Include install-guile.
12953         (all-perl): New target.
12954         (all-guile): New target.
12956         * configure.in (host_tools): Include perl and guile.
12957         (native_only): Include perl and guile.
12958         (noconfigdirs): Don't build guile and perl; no ports have been
12959         done.
12961 Tue Mar 26 21:18:50 1996  Andrew Cagney  <cagney@kremvax.highland.com.au>
12963         * configure (--enable-*): Handle quoted option lists such as
12964         --enable-sim-cflags='-g0 -O' better.
12966 Thu Mar 21 11:53:08 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12968         * Makefile.in ({,inst}all-target): New rule so we can make and
12969         install all of the target directories easily.
12971 Wed Mar 20 18:10:57 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
12973         * configure.in: Add missing global flag in sed substitution when
12974         deleting `target-' from ${configdirs}.
12976 Thu Mar 14 19:15:06 1996  Ian Lance Taylor  <ian@cygnus.com>
12978         * Makefile.in (DO_X): Don't get confused if CC contains `=' in an
12979         option.
12981         * configure.in (mips*-nec-sysvr4*): Use a host_makefile_frag of
12982         config/mh-necv4.
12984         * install.sh: Correct misspelling of transformbasename.
12986         * config.guess: Recognize mips-*-sysv*.
12988 Mon Mar 11 15:36:42 1996  Dawn Perchik  <dawn@critters.cygnus.com>
12990         * config.sub: Recognize mon960.
12992 Sun Mar 10 13:18:38 1996  Ian Lance Taylor  <ian@cygnus.com>
12994         * configure: Restore Canadian Cross handling of BISON and LEX,
12995         removed in Feb 20 change.
12997 Fri Mar  8 20:07:09 1996  Per Bothner  <bothner@kalessin.cygnus.com>
12999         * README:  Suggestions from Torbjorn Granlund <tege@matematik.su.se>:
13000         Mention make install.  Remove the old copyright date as well the
13001         clumsy and rather pointless copyright on the README file.
13003 Fri Mar  8 17:51:35 1996  Ian Lance Taylor  <ian@cygnus.com>
13005         * Makefile.in ($(CONFIGURE_TARGET_MODULES)): If there is a
13006         Makefile after running symlink-tree, then run `make distclean' to
13007         avoid clobbering any generated files in srcdir.
13009 Tue Mar  5 08:21:44 1996  J.T. Conklin  <jtc@rtl.cygnus.com>
13011         * configure.in (m68k-*-netbsd*): Build everything now.
13013 Wed Feb 28 12:25:46 1996  Jason Merrill  <jason@yorick.cygnus.com>
13015         * Makefile.in (taz): Fix quoting.
13017 Tue Feb 27 11:33:57 1996  Doug Evans  <dje@charmed.cygnus.com>
13019         * configure.in (sparclet-*-*): Build everything now.
13021 Tue Feb 27 14:31:51 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
13023         * configure.in (m68k-*-linux*): New host.
13025 Mon Feb 26 14:32:44 1996  Ian Lance Taylor  <ian@cygnus.com>
13027         * configure: Check for bison before byacc.
13029 Tue Feb 20 23:12:35 1996  Stu Grossman  (grossman@critters.cygnus.com)
13031         * Makefile.in configure:  Change the way LEX and BISON/YACC are
13032         set.  configure now defines DEFAULT_LEX and DEFAULT_YACC by
13033         searching PATH.  These are used as fallbacks by Makefile.in if
13034         flex/bison/byacc aren't in objdir.
13036 Mon Feb 19 11:45:30 1996  Ian Lance Taylor  <ian@cygnus.com>
13038         * Makefile.in: Make everything which depends upon all-bfd also
13039         depend upon all-opcodes, in case --with-commonbfdlib is used.
13041 Thu Feb 15 19:50:50 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
13043         * configure.in (host *-*-cygwin32): Don't build gdb if we are
13044         building NT native compilers on Unix.
13046 Thu Feb 15 17:42:25 1996  Ian Lance Taylor  <ian@cygnus.com>
13048         * configure.in: Don't get CC from the host Makefile fragment if we
13049         can find gcc in PATH, or if this is a Canadian Cross.  Move the
13050         Solaris test for /usr/ucb/cc to the post target script, just after
13051         the compiler sanity test.
13053 Wed Feb 14 16:57:40 1996  Ian Lance Taylor  <ian@cygnus.com>
13055         * config.sub: Merge with FSF.
13057 Tue Feb 13 14:27:48 1996  Ian Lance Taylor  <ian@cygnus.com>
13059         * Makefile.in (RPATH_ENVVAR): New variable.
13060         (REALLY_SET_LIB_PATH): Use it.
13061         * configure.in: On HP/UX, set RPATH_ENVVAR to SHLIB_PATH.
13063 Mon Feb 12 15:28:49 1996  Doug Evans  <dje@charmed.cygnus.com>
13065         * config.sub, configure.in: Recognize sparclet cpu.
13067 Mon Feb 12 15:33:59 1996  Christian Bauernfeind <chrisbfd@theorie3.physik.uni-erlangen.de>
13069         * config.guess:  Support m68k-cbm-sysv4.
13071 Sat Feb 10 12:06:42 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
13073         * config.guess (*:Linux:*:*): Guess m68k-unknown-linux and
13074         m68k-unknown-linuxaout from linker help string.  Put quotes around
13075         $ld_help_string.
13077 Thu Dec  7 09:03:24 1995  Tom Horsley  <Tom.Horsley@mail.hcsc.com>
13079         * config.guess (powerpc-harris-powerunix): Add guess for port
13080         to new target.
13082 Thu Feb  8 15:37:52 1996  Brendan Kehoe  <brendan@lisa.cygnus.com>
13084         * config.guess (UNAME_VERSION): Recognize X4.x as an OSF version.
13086 Mon Feb  5 16:36:51 1996  Ian Lance Taylor  <ian@cygnus.com>
13088         * configure.in: If --enable-shared was used, set SET_LIB_PATH to
13089         $(REALLY_SET_LIB_PATH) in Makefile.
13090         * Makefile.in (SET_LIB_PATH): New variable.
13091         (REALLY_SET_LIB_PATH): New variable.
13092         ($(DO_X)): Use $(SET_LIB_PATH).
13093         (install.all, gcc-no-fixedincludes, $(ALL_MODULES)): Likewise.
13094         ($(NATIVE_CHECK_MODULES), $(CROSS_CHECK_MODULES)): Likewise.
13095         ($(INSTALL_MODULES), $(CONFIGURE_TARGET_MODULES)): Likewise.
13096         ($(ALL_TARGET_MODULES), $(CHECK_TARGET_MODULES)): Likewise.
13097         ($(INSTALL_TARGET_MODULES), $(ALL_X11_MODULES)): Likewise.
13098         ($(CHECK_X11_MODULES), $(INSTALL_X11_MODULES)): Likewise.
13099         (all-gcc, all-bootstrap, check-gcc, install-gcc): Likewise.
13100         (install-dosrel): Likewise.
13101         (all-opcodes): Depend upon all-libiberty.
13103 Sun Feb  4 16:51:11 1996  Steve Chamberlain  <sac@slash.cygnus.com>
13105         * config.guess (*:CYGWIN*): New
13107 Sat Feb  3 10:42:35 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
13109         * Makefile.in (all-target-winsup): All all-target-libiberty.
13111 Fri Feb  2 17:58:56 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
13113         * configure.in (noconfigdirs): Add missing # in front of comment.
13115 Thu Feb  1 14:38:13 1996  Geoffrey Noer  <noer@cygnus.com>
13117         * configure.in: add second pass to things added to noconfigdirs
13118         so *-gm-magic can exclude libgloss properly.
13120 Thu Feb  1 11:10:16 1996  Stan Shebs  <shebs@andros.cygnus.com>
13122         * mpw-configure (extralibs_name, rez_name): Set correctly
13123         for MWC68K compiler.
13125         * mpw-README: Add more info on the necessary build tools.
13127 Thu Feb  1 10:22:38 1996  Steve Chamberlain  <sac@slash.cygnus.com>
13129         * configure.in, config.sub: Recognize cygwin32.
13131 Wed Jan 31 14:17:10 1996  Richard Henderson  <rth@tamu.edu>
13133         * config.guess, config.sub: Recognize A/UX.
13135 Wed Jan 31 13:52:14 1996  Ian Lance Taylor  <ian@cygnus.com>
13137         * config.sub: Merge with gcc/config.sub.
13139 Thu Jan 25 11:01:10 1996  Raymond Jou  <rjou@mexican.cygnus.com>
13141         * mpw-build.in (do-binutils): Add build of stamps.
13143 Thu Jan 25 17:05:26 1996  James G. Smith  <jsmith@cygnus.co.uk>
13145         * config.sub: Add recognition for mips64vr4100*-* targets.
13147 Wed Jan 24 12:47:55 1996  Brendan Kehoe  <brendan@lisa.cygnus.com>
13149         * test-build.mk: Add checking of `hpux9' rather than just `hpux'.
13150         Add creation of gconfigargs with `--enable-shared' turned on.
13151         ($(host)-stamp-stage2-configured): Pass $(gconfigargs).
13152         ($(host)-stamp-stage3-configured): Likewise.
13153         (HOLES): Add chatr and ldd.
13154         (i386-ncr-sysv4.3*): Add use of /usr/ccs/bin in the PATH and HOLE_DIRS.
13156 Wed Jan 24 20:32:30 1996  Torbjorn Granlund  <tege@noisy.matematik.su.se>
13158         * configure: Pass --nfp to recursive configures.
13160 Mon Jan 22 10:41:56 1996  Steve Chamberlain  <sac@slash.cygnus.com>
13162         * Makefile.in (DLLTOOL): New.
13163         (DLLTOOL_FOR_TARGET): New.
13164         (EXTRA_HOST_FLAGS): Pass down DLLTOOL.
13165         (EXTRA_TARGET_FLAGS): Ditto.
13166         (EXTRA_GCC_FLAGS): Ditto.
13167         (CONFIGURE_TARGET_MODULES): Ditto.
13168         (DO_X): Ditto.
13169         * configure: Add DLLTOOL.
13171 Fri Jan 19 13:30:15 1996  Stan Shebs  <shebs@andros.cygnus.com>
13173         SCO OpenServer 5 changes from Robert Lipe <robertl@dgii.com>:
13174         * configure.in (i[345]86-*-sco3.2v5*): Use mh-sysv instead of
13175         mh-sco, since old workarounds no longer needed, and don't
13176         build ld, since libraries have weak symbols in COFF.
13178 Sun Jan 14 23:01:31 1996  Fred Fish  <fnf@cygnus.com>
13180         * Makefile.in (CONFIGURE_TARGET_MODULES): Add missing ';'.
13182 Fri Jan 12 15:25:35 1996  Ian Lance Taylor  <ian@cygnus.com>
13184         * configure.in: Make sure that ${CC} can be used to compile an
13185         executable.
13187 Sat Jan  6 07:23:33 1996  Michael Meissner  <meissner@wogglebug.tiac.net>
13189         * Makefile.in (all-gdb): Depend on $(GDB_TK).
13190         * configure (GDB_TK): Set GDB_TK to either "all-tcl all-tk" or
13191         nothing depending on whether gdbtk is being built.
13193 Wed Jan  3 17:54:41 1996  Doug Evans  <dje@canuck.cygnus.com>
13195         * Makefile.in (newlib.tar.gz): Delete building of newlib's info files.
13197 Mon Jan  1 19:09:14 1996  Brendan Kehoe  <brendan@rtl.cygnus.com>
13199         * configure.in (noconfigdirs): Put ld or gas in this early, if the
13200         user specifically used --with-gnu-ld=no or --with-gnu-as=no.
13202 Sat Dec 30 16:08:57 1995  Doug Evans  <dje@canuck.cygnus.com>
13204         * config-ml.in: Add support for
13205         --disable-{softfloat,m68881,m68000,m68020} on m68*-*-*.
13206         Simplify setting of multidirs from --disable-foo.
13208 Fri Dec 29 07:56:11 1995  Michael Meissner  <meissner@tiktok.cygnus.com>
13210         * Makefile.in (EXTRA_GCC_FLAGS): If any of the make variables
13211         LANGUAGES, BOOT_CFLAGS, STMP_FIXPROTO, LIMITS_H_TEST,
13212         LIBGCC1_TEST, LIBGCC2_CFLAGS, LIBGCC2_INCLUDES, and ENQUIRE are
13213         non-empty, pass them on to the  GCC make.
13214         (all-bootstrap): New rule that is like all-gcc, except it executes
13215         the GCC bootstrap rule instead of the GCC all rule.
13217 Wed Dec 27 15:51:48 1995  Doug Evans  <dje@canuck.cygnus.com>
13219         * config-ml.in (ml_realsrcdir): New, to account for ${subdir}.
13221 Tue Dec 26 11:45:31 1995  Michael Meissner  <meissner@tiktok.cygnus.com>
13223         * config.guess (AViiON:dgux:*:*): Update from FSF to add pentium
13224         DG/UX support.
13226 Fri Dec 15 10:01:27 1995  Stan Cox  <coxs@dg-rtp.dg.com>
13228         * config.sub (i*86*) Change [345] to [3456]
13230 Wed Dec 20 17:41:40 1995  Brendan Kehoe  <brendan@lisa.cygnus.com>
13232         * configure.in (noconfigdirs): Add gas or ld if --with-gnu-as=no or
13233         --with-gnu-ld=no.
13235 Wed Dec 20 15:15:35 1995  Michael Meissner  <meissner@tiktok.cygnus.com>
13237         * config-ml.in (rs6000*, powerpc*): Add switches to control which
13238         AIX multilibs get built.
13240 Mon Dec 18 17:55:46 1995  Jason Molenda  (crash@phydeaux.cygnus.com)
13242         * configure.in (i386-win32): Don't build expect if we're not
13243         building the tcl subdir.
13245 Mon Dec 18 11:47:19 1995  Stan Shebs  <shebs@andros.cygnus.com>
13247         * Makefile.in: (configure-target-examples, all-target-examples):
13248         New targets, configure and build example programs.
13250 Fri Dec 15 16:13:03 1995  Stan Shebs  <shebs@andros.cygnus.com>
13252         * mpw-configure: If an mpw-config.in generated a file mk.sed,
13253         use it as input to sedit the generated MPW makefile.
13254         * mpw-README: Add a suggestion about Gestalt.h.
13256 Wed Dec 13 16:43:51 1995  Ian Lance Taylor  <ian@cygnus.com>
13258         * config.sub: Accept *-*-ieee*.
13260 Tue Dec 12 11:52:57 1995  Ian Lance Taylor  <ian@cygnus.com>
13262         * Makefile.in (local-distclean): Remove $(TARGET_SUBDIR).  From
13263         Ronald F. Guilmette <rfg@monkeys.com>.
13265 Mon Dec 11 15:31:58 1995  Jason Molenda  (crash@phydeaux.cygnus.com)
13267         * configure.in (host==powerpc-pe): Add many directories to noconfigdirs
13268         for powerpc-pe native.
13269         (target==i386-win32): add tcl, make to noconfigdirs if canadian cross.
13270         (target==powerpc-pe): duplicate i386-win32 entry.
13272 Sat Dec  9 14:58:28 1995  Jim Wilson  <wilson@chestnut.cygnus.com>
13274         * configure.in (noconfigdirs): Exclude target-newlib for all versions
13275         of vxworks, not just vxworks5.1.
13277 Mon Dec  4 12:05:40 1995  Stan Shebs  <shebs@andros.cygnus.com>
13279         * mpw-configure: Add support for exec-prefix.
13281 Mon Dec  4 10:22:50 1995  Jeffrey A. Law  <law@rtl.cygnus.com>
13283         * config.guess: Recognize HP model 816 machines as having
13284         a PA1.1 processor.
13286 Mon Dec  4 12:38:15 1995  Ian Lance Taylor  <ian@cygnus.com>
13288         * configure: Ignore new autoconf configure options.
13290 Thu Nov 30 16:57:33 1995  Per Bothner  <bothner@wombat.gnu.ai.mit.edu>
13292         * config.guess:  Recognize Pentium under SCO.
13293         From Robert Lipe <robertl@arnet.com>.
13295 Wed Nov 29 13:49:08 1995  J.T. Conklin  <jtc@rtl.cygnus.com>
13297         * configure.in (noconfigdirs): Disable target-libio on v810-*-*.
13299 Wed Nov 29 12:12:01 1995  Ian Lance Taylor  <ian@cygnus.com>
13301         * configure.in: Don't configure gas for alpha-dec-osf*.
13303 Tue Nov 28 17:16:48 1995  Ian Lance Taylor  <ian@cygnus.com>
13305         * configure.in: Default to --with-stabs for some targets for which
13306         it makes sense: mips*-*-*, alpha*-*-osf*, i[345]86*-*-sysv4* and
13307         i[345]86*-*-unixware*.
13309 Mon Nov 27 13:44:15 1995  Ian Lance Taylor  <ian@cygnus.com>
13311         * config-ml.in: Get list of multidirs using gcc --print-multi-lib
13312         rather than basing it on the target.  Simplify handling of options
13313         controlling which directories to configure.  Remove extraneous
13314         slash in multi-clean target.
13316 Fri Nov 24 17:29:29 1995  Doug Evans  <dje@deneb.cygnus.com>
13318         * config-ml.in: Prefix more variables with ml_ so they don't collide
13319         with configure's.
13321 Wed Nov 22 11:27:02 1995  Ian Lance Taylor  <ian@cygnus.com>
13323         * configure: Don't turn -v into --v.
13325 Tue Nov 21 16:48:02 1995  Doug Evans  <dje@deneb.cygnus.com>
13327         * configure.in (targargs): Fix typo.
13329         * Makefile.in (DEVO_SUPPORT): Add symlink-tree.
13331 Tue Nov 21 14:08:28 1995  Ian Lance Taylor  <ian@cygnus.com>
13333         * configure.in: Strip --host and --target options from
13334         CONFIG_ARGUMENTS, and always configure for --host only.  Add
13335         --with-cross-host option when building with a cross-compiler.
13336         * configure: Canonicalize the arguments put into config.status by
13337         always using `=' for an option with an argument.  Pass a presumed
13338         --host or --target explicitly.
13340 Fri Nov 17 17:50:30 1995  Stan Shebs  <shebs@andros.cygnus.com>
13342         * config.sub: Merge -macos*, -magic*, -pe*, and -win32 cases
13343         into general OS recognition case.
13345 Fri Nov 17 17:42:25 1995  Jason Molenda  (crash@phydeaux.cygnus.com)
13347         * configure.in (target_configdirs): add target-winsup only
13348         for win32 target systems.
13350 Thu Nov 16 14:04:47 1995  Ian Lance Taylor  <ian@cygnus.com>
13352         * Makefile.in (all-target-libgloss): Depend upon
13353         configure-target-newlib, since when libgloss is built it looks to
13354         see if the newlib directory exists.
13356 Wed Nov 15 14:47:52 1995  Ken Raeburn  <raeburn@cygnus.com>
13358         * Makefile.in (DEVO_SUPPORT): Use config-ml.in instead of
13359         cfg-ml-*.in.
13361 Wed Nov 15 11:45:23 1995  Ian Lance Taylor  <ian@cygnus.com>
13363         * configure: Handle LD and LD_FOR_TARGET when configuring a
13364         Canadian Cross.
13366 Tue Nov 14 14:56:11 1995  Jason Molenda  (crash@phydeaux.cygnus.com)
13368         * configure.in (target_libs): add target-winsup.
13369         (target==i386-win32): add patch diff flex make to $noconfigdirs.
13370         (target==ppcle-pe): remove ld from $noconfigdirs.
13372 Tue Nov 14 01:25:50 1995  Doug Evans  <dje@canuck.cygnus.com>
13374         * Makefile.in (CONFIGURE_TARGET_MODULES): Pass --with-target-subdir.
13375         Preserve relative path names in $srcdir.  Build symlink tree if
13376         configuring cross target dir and srcdir=. (= no VPATH support).
13377         (configure-target-libg++): Depend on configure-target-librx.
13378         * cfg-ml-com.in, cfg-ml-pos.in: Deleted.
13379         * config-ml.in: New file.
13380         * symlink-tree: New file.
13381         * configure: Ensure srcdir="." if that's what it is.
13383 Mon Nov 13 12:34:20 1995  Stan Shebs  <shebs@andros.cygnus.com>
13385         * mpw-README: Clarify some phrasing, add notes about CodeWarrior
13386         includes and FLEX_SKELETON setting.
13387         * mpw-configure (--with-gnu-ld): New option, controls whether
13388         to use PPCLink or ld with PowerMac GCC.
13389         * mpw-build.in (all-grez, do-grez, install-grez): New targets.
13390         * mpw-config.in: Configure grez if targeting Mac.
13392         * config.sub: Accept pmac and pmac-mpw as names for PowerMacs,
13393         accept mpw and mac-mpw as names for m68k Macs, change macos7 to
13394         just macos.
13395         * configure.in: Configure grez resource compiler if targeting Mac.
13396         * Makefile.in (all-grez, install-grez): New targets.
13398 Wed Nov  8 17:33:51 1995  Jason Merrill  <jason@yorick.cygnus.com>
13400         * configure: CXX defaults to gcc, not g++.  If we find
13401         gcc in the path, set CC to gcc -O2.
13403 Tue Nov  7 15:45:17 1995  Ian Lance Taylor  <ian@cygnus.com>
13405         * configure: Default ${build} correctly.  Avoid picking up extra
13406         spaces when reading CC and CXX from Makefile.  When doing a
13407         Canadian Cross, use plausible default values for numerous
13408         variables.
13409         * configure.in: When doing a Canadian Cross, don't try to
13410         configure tools whose configure script can't handle it.
13412 Mon Nov  6 19:32:17 1995  Jim Wilson  <wilson@chestnut.cygnus.com>
13414         * cfg-ml-com.in (sh-*-*): Add m2 and ml/m2 to multidirs.
13416 Sun Nov  5 00:15:41 1995  Per Bothner  <bothner@kalessin.cygnus.com>
13418         * configure:  Remove dubious bug reporting address.
13420 Fri Nov  3 08:17:54 1995  Per Bothner  <bothner@kalessin.cygnus.com>
13422         * Makefile.in ($(CONFIGURE_TARGET_MODULES)):  If subdir has
13423         configure script, run that instead of this directory's configure.
13424         In either case, print a message that we're configuring the sub-dir.
13426 Thu Nov  2 23:23:36 1995  Per Bothner  <bothner@kalessin.cygnus.com>
13428         * configure.in: Before checking for the existence of various files,
13429         use sed to filter out "target-".
13431 Thu Nov  2 13:24:56 1995  Ian Lance Taylor  <ian@cygnus.com>
13433         * Makefile.in (DO_X): Split rule to decrease command line length
13434         for systems with small ARG_MAX values.  From phdm@info.ucl.ac.be
13435         (Philippe De Muyter).
13437 Wed Nov  1 15:18:35 1995  Jason Molenda  (crash@phydeaux.cygnus.com)
13439         * Makefile.in (all-patch): depend on all-libiberty.
13441 Wed Nov  1 12:23:20 1995  Ian Lance Taylor  <ian@cygnus.com>
13443         * configure.in: If the only directory in target_configdirs which
13444         actually exists is libiberty, then set target_configdirs to empty,
13445         to avoid trying to build a target libiberty in a gas or gdb
13446         distribution.
13448 Tue Oct 31 17:52:39 1995  J.T. Conklin  <jtc@slave.cygnus.com>
13450         * configure.in (host_makefile_frag): Use m68k-sun-sunos* instead
13451         of m68k-sun-* when selecting mh-sun3 to avoid matching NetBSD/sun3
13452         systems.
13454 Tue Oct 31 16:57:32 1995  Jim Wilson  <wilson@chestnut.cygnus.com>
13456         * configure.in (copy_dirs): Use sys-include instead of include
13457         for --with-headers option.
13459 Tue Oct 31 10:29:36 1995  steve chamberlain  <sac@slash.cygnus.com>
13461         * Makefile.in, configure.in: Make winsup builds work with
13462         new scheme.
13464 Mon Oct 30 18:57:09 1995  Ian Lance Taylor  <ian@cygnus.com>
13466         * configure.in: Build the linker on AIX.
13468 Mon Oct 30 12:27:16 1995  Per Bothner  <bothner@kalessin.cygnus.com>
13470         * Makefile.in (CC_FOR_TARGET, CXX_FOR_TARGET):  Add $(TARGET_SUBDIR)
13471         where needed.
13473 Mon Oct 30 12:45:25 1995  Doug Evans  <dje@cygnus.com>
13475         * Makefile.in (all-gcc): Fix typo.
13477 Sat Oct 28 10:27:59 1995  Per Bothner  <bothner@kalessin.cygnus.com>
13479         * Makefile.in ($(CHECK_TARGET_MODULES)):  Fix typo.
13481 Fri Oct 27 23:14:12 1995  Per Bothner  <bothner@kalessin.cygnus.com>
13483         * configure.in:  Rename libFOO to target-libFOO, and xiberty
13484         to target-xiberty, to provide more flexibility.
13485         (target_subdir):  Define.  Create if cross.
13486         Set TARGET_SUBDIR in Makefile to ${target_subdir}.
13487         * Makefile.in:  Rename all-libFOO -> all-target-libFOO, all-xiberty
13488         -> all-target-libiberty, configure-libFOO -> configure-target-libFOO,
13489         check-libFOO -> check-target-libFOO, etc.
13490         ($(DO_X)):  Iterate over TARGET_CONFIGDIRS after SUBDIRS.
13491         ($(CONFIGURE_TARGET_MODULES), $(CHECK_TARGET_MODULES),
13492         $(ALL_TARGET_MODULES), $(INSTALL_TARGET_MODULES)): Update accordingly.
13493         (configure-target-XXX):  Depend on $(ALL_GCC), not all-gcc, to
13494         allow ALL_GCC="" to only configure.
13495         (DEVO_SUPPORT):  Add cfg-ml-com.in and cfg-ml-pos.in.
13496         (ETC_SUPPORT, ETC_SUPPORT_PFX):  Merge;  update 'taz' accordingly.
13497         (LIBGXX_SUPPORT_DIRS):  Remove xiberty.
13499 Sat Oct 28 01:53:49 1995  Ken Raeburn  <raeburn@cygnus.com>
13501         * Makefile.in (taz): Build "info" in etc explicitly.
13503 Fri Oct 27 09:32:30 1995  Stu Grossman  (grossman@cygnus.com)
13505         * configure.in:  Make sure that CC is undefined (as opposed to
13506         null) if toplevel/config/mh-{host} doesn't define it.  Fixes a
13507         problem with autoconf trying to configure on a host without GCC.
13509 Thu Oct 26 22:35:01 1995  Stan Shebs  <shebs@andros.cygnus.com>
13511         * mpw-configure: Set host alias from choice of host compiler,
13512         only use generic MPW Makefile sed if present, edit a file
13513         named "hacked_Makefile.in" instead of "Makefile.in" if present.
13514         * mpw-README: Add problem notes about CW6 and CW7.
13516 Thu Oct 26 05:45:10 1995  Ken Raeburn  <raeburn@kr-pc.cygnus.com>
13518         * Makefile.in (taz): Use ";" instead of ";;".
13520 Wed Oct 25 15:18:24 1995  Per Bothner  <bothner@kalessin.cygnus.com>
13522         * Makefile.in (taz):  Grep for '^diststuff:' or '^info:' in
13523         sub-directory Makefiles, instead of using DISTSTUFFDIRS and
13524         DISTDOCDIRS.
13525         (DISTSTUFFDIRS, DISTDOCDIRS):  Removed - no longer used.
13526         (newlib.tar.gz):  Don't pass DISTDOCDIRS to recursive make.
13528 Wed Oct 25 14:43:55 1995  Per Bothner  <bothner@kalessin.cygnus.com>
13530         * Makefile.in (DISTDOCDIRS):  Remove ld gprof bnutils gas libg++ gdb
13531         and gnats, because they are now subsumed by DISTSTUFFDIRS.
13532         Move bfd to DISTSTUFFDIRS.
13534 Tue Oct 24 18:19:09 1995  Jason Molenda  (crash@phydeaux.cygnus.com)
13536         * Makefile.in (X11_LIB): Removed.
13537         (X11_FLAGS_TO_PASS): pass only X11_EXTRA_CFLAGS and X11_EXTRA_LIBS.
13539         * configure.in (host_makefile_frag): mh-aix & mh-sun removed.
13541 Sun Oct 22 13:04:42 1995  Michael Meissner  <meissner@tiktok.cygnus.com>
13543         * cfg-ml-com.in (powerpc*): Shorten some of the multilib directory
13544         names.
13546 Fri Oct 20 18:02:10 1995  Michael Meissner  <meissner@tiktok.cygnus.com>
13548         * cfg-ml-com.in (powerpc*-eabi*): Add mcall-aixdesc varients.
13550 Thu Oct 19 10:40:57 1995  steve chamberlain  <sac@slash.cygnus.com>
13552         * configure.in (i[345]86-*-win32): Always build newlib.
13553         Don't configure cvs, autoconf or texinfo.
13554         * Makefile.in (LD_FOR_TARGET): New.
13555         (BASE_FLAGS_TO_PASS, EXTRA_TARGET_FLAGS, CONFIGURE_TARGET_MODULES):
13556         Pass down LD_FOR_TARGET.
13558 Wed Oct 18 15:53:56 1995  steve chamberlain  <sac@slash.cygnus.com>
13560         * winsup: New directory.
13561         * Makefile.in: Build winsup.
13562         * configure.in: Winsup is configured when target is win32.
13563         Can only build win32 target GDB when native.
13565 Mon Oct 16 09:42:31 1995  Jeffrey A Law  (law@cygnus.com)
13567         * config.guess: Recognize HP model 819 machines as having
13568         a PA 1.1 processor.
13570 Mon Oct 16 10:49:43 1995  Ian Lance Taylor  <ian@cygnus.com>
13572         * configure: Fix sed loop which substitutes for CC and CXX to
13573         avoid bug found in various sed implementations.
13575 Wed Oct 11 16:16:20 1995  Michael Meissner  <meissner@tiktok.cygnus.com>
13577         * cfg-ml-com.in (powerpc-*-eabisim): Delete separate rule for
13578         simulator.  Use standard powerpc-*-eabi*.
13580 Mon Oct  9 17:21:56 1995  Ian Lance Taylor  <ian@cygnus.com>
13582         * configure.in: Stop putting gas and binutils in noconfigdirs for
13583         powerpc-*-aix* and rs6000-*-*.
13585 Mon Oct  9 12:38:40 1995  Michael Meissner  <meissner@cygnus.com>
13587         * cfg-ml-com.in (powerpc*-*-eabisim*): Add support for building
13588         -mcall-aixdesc libraries.
13590 Fri Oct  6 16:17:57 1995  Ken Raeburn  <raeburn@cygnus.com>
13592         Mon Sep 25 22:49:32 1995  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
13594         * config.sub (arm | armel | armeb): Fix shell syntax.
13596 Fri Oct  6 14:40:28 1995  Michael Meissner  <meissner@tiktok.cygnus.com>
13598         * cfg-ml-com.in ({powerpc,rs6000}-ibm-aix*): Add multilibs for
13599         -msoft-float and -mcpu=common support.
13600         (powerpc*-*-eabisim*): Add support for building -mcall-aix
13601         libraries.
13603 Thu Oct  5 13:26:37 1995  Brendan Kehoe  <brendan@lisa.cygnus.com>
13605         * configure.in: Allow configuration and build of emacs19 for the alpha.
13607 Wed Oct  4 22:05:36 1995  Jason Molenda  (crash@phydeaux.cygnus.com)
13609         * configure.in (CC): Get ^CC, not just any old CC, from
13610         ${host_makefile_frag}.
13612 Wed Oct  4 21:55:00 1995  Jason Molenda  (crash@phydeaux.cygnus.com)
13614         * configure.in (CC): Try to get CC from
13615         ${srcdir}/${host_makefile_frag}, not ${host_makefile_frag}.
13617 Wed Oct  4 21:44:12 1995  Jason Molenda  (crash@phydeaux.cygnus.com)
13619         * Makefile.in (TARGET_CONFIGDIRS): configure targetdirs
13620         only if it exists in $(srcdir).
13622 Wed Oct  4 11:52:31 1995  Ian Lance Taylor  <ian@cygnus.com>
13624         * configure: If CC and CXX are not set in the environment, set
13625         them, based on either an existing Makefile or on searching for gcc
13626         in PATH.  Substitute for CC and CXX in Makefile.
13627         * configure.in: Remove libm from target_libs.  Separate
13628         target_configdirs from configdirs.  If CC is not set in
13629         environment, try to get it from a host Makefile fragment.  Rewrite
13630         changes of configdirs to use skipdirs instead.  A few minor
13631         tweaks.  Take directories out of target_configdirs as they are
13632         taken out of configdirs.  Remove existing Makefile files from
13633         subdirectories.  Substitute for TARGET_CONFIGDIRS and
13634         CONFIG_ARGUMENTS in Makefile.
13635         * Makefile.in (TARGET_CONFIGDIRS): New variable, automatically set
13636         by configure.in.
13637         (CONFIG_ARGUMENTS): Likewise.
13638         (CONFIGURE_TARGET_MODULES): New variable.
13639         ($(DO_X)): Loop over TARGET_CONFIGDIRS as well as SUBDIRS.
13640         ($(CONFIGURE_TARGET_MODULES)): New target.
13641         (configure-libg++, configure-libio): New targets.
13642         (all-libg++): Depend upon configure-libg++.
13643         (all-libio): Depend upon configure-libio.
13644         (configure-libgloss, all-libgloss): New targets.
13645         (configure-libstdc++): New target.
13646         (all-libstdc++): Depend upon configure-libstdc++.
13647         (configure-librx, all-librx): New targets.
13648         (configure-newlib): New target.
13649         (all-newlib): Depend upon configure-newlib
13650         (configure-xiberty): New target.
13651         (all-xiberty): Depend upon configure-xiberty.
13653 Sat Sep 30 04:32:59 1995  Jason Molenda (crash@phydeaux.cygnus.com)
13655         * configure.in (host i[345]86-*-win32):  Expand the
13656         noconfigdirs again.
13658 Thu Sep 28 21:18:49 1995  Stan Shebs  <shebs@andros.cygnus.com>
13660         * mpw-configure: Fix sed command file name.
13662 Thu Sep 28 17:39:56 1995  steve chamberlain  <sac@slash.cygnus.com>
13664         * configure.in (host i[345]86-*-win32): Reduce the
13665         noconfigdirs again.
13667 Wed Sep 27 12:24:00 1995  Ian Lance Taylor  <ian@cygnus.com>
13669         * configure.in: Don't configure ld and gdb for powerpc*-*-winnt*
13670         or powerpc*-*-pe*, since they are not yet supported.
13672 Tue Sep 26 14:30:01 1995  Stan Shebs  <shebs@andros.cygnus.com>
13674         Add PowerMac support and many other enhancements.
13675         * mpw-configure: New option --cc to select compiler to use,
13676         paste options set according to --cc into the generated
13677         Makefile, generate the Makefile by sed'ing the Unix Makefile.in
13678         if mpw-make.sed is present.
13679         * mpw-config.in: Don't test for gC1, test for mpw-touch,
13680         add forward includes for PowerPC include files.
13681         * mpw-build.in: Build using Makefile.PPC if present.
13682         (do-byacc, etc): Remove separate version resource builds.
13683         (do-gas): Build "stamps" before "all".
13684         (do-gcc): Build "stamps-h" and "stamps-c" before "all".
13685         * mpw-README: Update to reflect --cc option, PowerMac support,
13686         and recently-reported compatibility problems.
13688 Fri Sep 22 12:15:42 1995  Doug Evans  <dje@deneb.cygnus.com>
13690         * cfg-ml-com.in (m68*-*-*): Only build multilibs for
13691         embedded m68k systems (-aout, -coff, -elf, -vxworks).
13692         (--with-multilib-top): Pass to recursive invocations.
13694 Tue Sep 19 13:51:05 1995  J.T. Conklin  <jtc@blues.cygnus.com>
13696         * configure.in (noconfigdirs): Disable libg++ and libstdc++ on
13697         v810-*-*.
13699 Mon Sep 18 23:08:26 1995  J.T. Conklin  <jtc@rtl.cygnus.com>
13701         * configure.in (noconfigdirs): Disable bfd, binutils, gas, gcc,
13702         gdb, ld and opcodes on v810-*-*.
13704 Tue Sep 12 18:03:31 1995  Ian Lance Taylor  <ian@cygnus.com>
13706         * Makefile.in (DO_X): Change do-realclean to do-maintainer-clean.
13707         (local-maintainer-clean): New target.
13708         (maintainer-clean): New target.
13709         (realclean): Just depend upon maintainer-clean.
13711 Fri Sep  8 17:11:14 1995  J.T. Conklin  <jtc@rtl.cygnus.com>
13713         * configure.in (noconfigdirs): Disable gdb on m68k-*-netbsd*.
13715 Fri Sep  8 16:46:29 1995  Ian Lance Taylor  <ian@cygnus.com>
13717         * configure.in: Build ld in mips*-*-bsd* case.
13719 Thu Sep  7 20:03:41 1995  Ken Raeburn  <raeburn@cygnus.com>
13721         * config.sub: Accept -lites* OS.  From Ian Dall.
13723 Fri Sep  1 08:06:58 1995  James G. Smith  <jsmith@beauty.cygnus.com>
13725         * config.sub: recognise mips64vr4300 and mips64vr4300el as valid
13726         targets.
13728 Wed Aug 30 21:06:50 1995  Jason Molenda  (crash@phydeaux.cygnus.com)
13730         * configure.in: treat i386-win32 canadian cross the same as
13731         i386-go32 canadian cross.
13733 Thu Aug 24 14:53:20 1995  Michael Meissner  <meissner@tiktok.cygnus.com>
13735         * cfg-ml-com.in (powerpc*-*-eabisim): Add support for PowerPC
13736         running under the simulator to build a reduced set of libraries.
13737         (powerpc-*-eabiaix): Add fine grained multilib support added to
13738         other powerpc targets yesterday.
13740 Wed Aug 23 09:41:56 1995  Michael Meissner  <meissner@tiktok.cygnus.com>
13742         * cfg-ml-com.in (powerpc*): Add support for -disable-biendian,
13743         -disable-softfloat, -disable-relocatable, -disable-aix, and
13744         -disable-sysv to control which multilib libraries get built.
13746 Thu Aug 17 16:03:41 1995  Ken Raeburn  <raeburn@kr-laptop.cygnus.com>
13748         * configure: Add Makefile.tem to list of files to remove in trap
13749         handler.
13751 Mon Aug 14 19:27:56 1995  Per Bothner  <bothner@kalessin.cygnus.com>
13753         * config.guess (*Linux*):  Add missing "exit"s.
13754         Also, need specific check for alpha-unknown-linux (uses COFF).
13756 Fri Aug 11 15:38:20 1995  Per Bothner  <bothner@kalessin.cygnus.com>
13758         * config.guess:  Merge with FSF:
13760         Wed Jun 28 17:57:27 1995  David Edelsohn  <edelsohn@mhpcc.edu>
13761         * config.guess (AIX4): More robust release numbering discovery.
13763         Thu Jun 22 19:01:24 1995  Kenneth Stailey  (kstailey@eagle.dol-esa.gov)
13764         * config.guess (i386-sequent-ptx): Properly get version number.
13766         Thu Jun 22 18:36:42 1995  Uwe Seimet  (seimet@iris1.chemie.uni-kl.de)
13767         * config.guess (mips:*:4*:UMIPS): New case.
13769 Mon Aug  7 09:21:35 1995  Doug Evans  <dje@canuck.cygnus.com>
13771         * configure.in (i386-go32 host): Fix typo (deja-gnu -> dejagnu).
13772         (i386-win32 host): Likewise.  Don't build readline.
13774 Sat Aug  5 09:51:49 1995  Fred Fish  <fnf@rtl.cygnus.com>
13776         * Makefile.in (GDBTK_SUPPORT_DIRS):  Define and pass as part of
13777         SUPPORT_FILES to submakes.
13779 Fri Aug  4 13:04:36 1995  Fred Fish  <fnf@cygnus.com>
13781         * Makefile.in (GDB_SUPPORT_DIRS): Add utils.
13782         (DEVO_SUPPORT): Add mpw-README, mpw-build.in, mpw-config.h and
13783         mpw-configure.
13785 Wed Aug  2 16:32:40 1995  Ken Raeburn  <raeburn@cygnus.com>
13787         * configure.in (appdirs): Use =, not ==, in test expression when
13788         trying to build the text to print in the warning message for
13789         Solaris users.
13791 Mon Jul 31 09:56:18 1995  steve chamberlain  <sac@slash.cygnus.com>
13793         * cfg-ml-com.in (z8k-*-coff): Add 'std' multilib build.
13795 Fri Jul 28 00:16:31 1995  Jeffrey A. Law  <law@rtl.cygnus.com>
13797         * config.guess: Recognize lynx-2.3.
13799 Thu Jul 27 15:47:59 1995  steve chamberlain  <sac@slash.cygnus.com>
13801         * config.sub (z8ksim): Deleted
13802         (z8k-*-coff): New, this is the one true name of the target.
13804 Thu Jul 27 14:33:33 1995  Doug Evans  <dje@canuck.cygnus.com>
13806         * cfg-ml-pos.in (dotdot): Work around SunOS sed bug.
13808 Thu Jul 27 13:31:05 1995  Fred Fish  (fnf@cygnus.com)
13810         * config.guess (*:Linux:*:*): First try asking the linker what the
13811         default object file format is (elf, aout, or coff).  Then if this
13812         fails, try previous methods.
13814 Thu Jul 27 11:28:17 1995  J.T. Conklin  <jtc@rtl.cygnus.com>
13816         * configure.in: Don't build newlib for *-*-vxworks5.1.
13818 Thu Jul 27 11:18:47 1995  Brendan Kehoe  <brendan@lisa.cygnus.com>
13820         * configure.in: Don't build newlib for a29k-*-vxworks5.1.
13821         * test-build.mk: Add setting of --with-headers for a29k-vxworks5.1.
13823 Tue Jul 25 21:25:39 1995  Doug Evans  <dje@canuck.cygnus.com>
13825         * cfg-ml-pos.in (MULTITOP): Trim excess trailing "/.".
13827 Fri Jul 21 10:41:12 1995  Doug Evans  <dje@canuck.cygnus.com>
13829         * cfg-ml-com.in: New file.
13830         * cfg-ml-pos.in: New file.
13832 Wed Jul 19 00:37:27 1995  Jeffrey A. Law  <law@rtl.cygnus.com>
13834         * COPYING.NEWLIB: Add HP free copyright to list.
13836 Tue Jul 18 10:58:51 1995  Michael Meissner  <meissner@tiktok.cygnus.com>
13838         * config.sub: Recognize -eabi* for the system, not just -eabi.
13840 Mon Jul  3 13:44:51 1995  Steve Chamberlain  <sac@slash.cygnus.com>
13842         * Makfile.in (DLLTOOL_FOR_TARGET): New name, pass it down.
13843         * config.sub, configure.in (win32): New target and host.
13845 Wed Jun 28 23:57:08 1995  Steve Chamberlain  <sac@slash.cygnus.com>
13847         * configure.in: Add i386-pe configuration.
13849 Fri Jun 23 14:28:44 1995  Stan Shebs  <shebs@andros.cygnus.com>
13851         * mpw-build.in (install): Install GDB after LD.
13853 Thu Jun 22 17:10:53 1995  Stan Shebs  <shebs@andros.cygnus.com>
13855         * mpw-config.in (elf/mips.h): Always forward-include, needed
13856         for GDB to build.
13858 Wed Jun 21 15:17:30 1995  Rob Savoye  <rob@darkstar.cygnus.com>
13860         * testsuite: New directory for customer acceptance and whole tool
13861         chain tests.
13863 Wed Jun 21 16:50:29 1995  Ken Raeburn  <raeburn@cujo.cygnus.com>
13865         * configure: If per-host line isn't found, but AC_OUTPUT is found
13866         and a configure script exists, run it instead.
13868 Thu Jun 15 21:09:24 1995  Per Bothner  <bothner@kalessin.cygnus.com>
13870         * config.guess:  Update from FSF, for alpha-dec-winnt3.5 and  Crays.
13872 Tue Jun 13 21:43:27 1995  Rob Savoye  <rob@darkstar.cygnus.com>
13874         * configure: Set build_{cpu,vendor,os,alias} to host values when
13875         --build isn't specified.
13877 Mon Jun  5 18:26:36 1995  Jason Merrill  <jason@phydeaux.cygnus.com>
13879         * Makefile.in (PICFLAG, PICFLAG_FOR_TARGET): New macros.
13880         (FLAGS_TO_PASS): Pass them.
13881         (EXTRA_TARGET_FLAGS): Ditto.
13883 Wed May 31 22:27:42 1995  Jim Wilson  <wilson@chestnut.cygnus.com>
13885         * Makefile.in (all-libg++): Depend on all-libstdc++.
13887 Thu May 25 22:40:59 1995  J.T. Conklin  <jtc@rtl.cygnus.com>
13889         * configure.in (noconfigdirs): Enable all packages for
13890           i386-unknown-netbsd.
13892 Sat May 20 13:22:31 1995  Angela Marie Thomas  <angela@cirdan.cygnus.com>
13894         * configure.in (noconfigdirs): Don't configure tk for i386-go32
13895         hosted builds (DOS builds)
13897 Thu May 18 18:08:49 1995  Ken Raeburn  <raeburn@kr-laptop.cygnus.com>
13899         Changes for ARM based on patches from Richard Earnshaw:
13900         * config.sub: Handle armeb and armel.
13901         * configure.in: Omit arm linker only for riscix.
13903 Thu May 11 17:23:26 1995  Per Bothner  <bothner@kalessin.cygnus.com>
13905         * config.guess:  Update from FSF.
13907 Tue May  9 15:52:05 1995  Michael Meissner  <meissner@cygnus.com>
13909         * config.sub: Recognize powerpcle as the little endian varient of
13910         the PowerPC.  Recgonize ppc as a PowerPC variant, and ppcle as a
13911         powerpcle variant.  Convert pentium into i586, not i486.  Add p5
13912         alias for i586.  Map new x86 variants p6, k5, nexgen into i586
13913         temporarily.
13915 Tue May  2 16:29:41 1995  Jeff Law  (law@snake.cs.utah.edu)
13917         * configure.in (hppa*-*-lites*): Treat like hppa*-*-*elf*.
13919 Sun Apr 30 21:38:09 1995  Jeff Law  (law@snake.cs.utah.edu)
13921         * config.sub: Accept -lites* as a basic system type.
13923 Thu Apr 27 11:33:29 1995  Michael Meissner  (meissner@cygnus.com)
13925         * config.guess (*:Linux:*:*): Check for whether the pre-BFD linker is
13926         installed, and if so return linuxoldld as the system name.
13928 Wed Apr 26 10:59:02 1995  Jeff Law  (law@snake.cs.utah.edu)
13930         * config.guess: Add hppa1.1-hp-lites support.
13932 Tue Apr 25 11:08:11 1995  Rob Savoye  <rob@darkstar.cygnus.com>
13934         * configure.in: Don't build newlib for m68k-vxworks5.1.
13936 Wed Apr 19 17:02:43 1995  Jim Wilson  <wilson@chestnut.cygnus.com>
13938         * configure.in (mips-sgi-irix6): Use mh-irix5.
13940 Fri Apr 14 15:21:17 1995  Doug Evans  <dje@chestnut.cygnus.com>
13942         * Makefile.in (all-gcc): Depend on all-ld (for libgcc1-test).
13944 Wed Apr 12 16:06:01 1995  Jason Merrill  <jason@phydeaux.cygnus.com>
13946         * test-build.mk: Enable building of shared libraries on IRIX 5 and
13947         OSF/1.  Fix compiler flags.
13948         * build-all.mk: Support Linux and OSF/1 3.0.  Fix compiler flags.
13950 Tue Apr 11 18:55:40 1995  Doug Evans  <dje@canuck.cygnus.com>
13952         * configure.in: Recognize --with-newlib.
13953         (sparc-*-sunos4*): Build sim, dejagnu, expect, tcl if cross target.
13955 Mon Apr 10 14:38:20 1995  Jason Molenda (crash@phydeaux.cygnus.com)
13957         * Makefile.in: move {all,check,install}-gdb from *_MODULES
13958         to *_X11_MODULES due to gdbtk needing X include files et al.
13960 Mon Apr 10 11:42:22 1995  Stan Shebs  <shebs@andros.cygnus.com>
13962         Merge in support for Mac MPW as a host.
13963         (Old change descriptions retained for informational value.)
13965         * mpw-config.in: Add generic include forwards for cpu-specific
13966         include files in aout and elf directories.
13968         * mpw-configure: Added copyright.
13969         * mpw-config.in: Check for presence of required build tools.
13970         (target_libs): Add newlib.
13971         (target_tools): Add examples.
13972         (Read Me): Generate as "Read Me for MPW" instead.
13973         * mpw-build.in: Base sub-builds on all-foo instead of do-foo.
13974         (all-byacc, do-byacc, all-flex, do-flex, do-newlib): New actions.
13975         (do-gas, do-gcc, do-gdb, do-ld): Build Version.r first.
13977         * mpw-configure: Remove subdir-specific makefile hackery,
13978         delete mk.tmp after using it.
13980         * mpw-build.in (all): Display start and end times.
13982         * mpw-configure (host_canonical): Set.
13983         (target_cpu): Always add to makefiles.
13984         (ARCHDEFS, EMUL): Add to makefile only if nonempty.
13985         (TM_FILE, XM_FILE, NM_FILE): No longer add to makefile.
13986         (mpw-mh-mpw): Look for in srcdir and srcroot.
13987         Use sed instead of mpw-edit-prefix to edit prefix definitions.
13989         * mpw-build.in: (install-only): New target.
13991         * mpw-configure (host_alias, target_alias): Rename from hostalias
13992         and targetalias, add into generated Makefile.
13993         (mk.tmp): If present, add into generated Makefile.
13994         * mpw-build.in (all-gas): Build config.h first before gas proper.
13996         * mpw-configure (config.status): Write only if changed.
13997         * mpw-config.in (readline): Configure it (not built, just used for
13998         definitions).
14000         * mpw-config.in (elf/mips.h): Add a forward include.
14002         * mpw-config.in: Forward-include most .h files in include into
14003         extra-include.
14004         (readline): Don't build.
14005         mpw-build.in (install): Install GDB.
14007         * mpw-configure (prefix, mpw_prefix): Handle it.
14008         * mpw-config.in (mmalloc, readline): Don't configure.
14009         * mpw-build.in (thisscript): Rename to ThisScript.
14010         Use mpw-build instead of BuildProgram everywhere.
14011         (mmalloc, readline): Don't build.
14012         * mpw-README: New file, basic documentation about the MPW port.
14014         * mpw-config.in: Use forward-include to create include files.
14016         * mpw-configure: Add more things to the top of each configured
14017         Makefile, including contents of config/mpw-mh-mpw.
14018         * mpw-config.in (extra-include): Create this directory and fill it
14019         with Posix-like include files when configuring.
14021         * config.sub (apple, mac, mpw): Add various aliases.
14023         * mpw-build.in: New file, top-level build script fragment for MPW.
14024         * mpw-configure: New file, configure script for MPW.
14025         * mpw-config.in: New file, config fragment for MPW.
14027 Fri Apr  7 19:33:16 1995  Jim Kingdon  (kingdon@lioth.cygnus.com)
14029         * configure.in (host_libs): Remove glob, since it is gone from the
14030         sources.
14032 Fri Mar 31 11:36:17 1995  Jason Molenda  (crash@phydeaux.cygnus.com)
14034         * Makefile.in: define empty GDB_NLM_DEPS var.
14036         * configure.in(target_makefile_frag): use config/mt-netware
14037         for netware targets.
14039 Thu Mar 30 13:51:43 1995  Ian Lance Taylor  <ian@cygnus.com>
14041         * config.sub: Merge in recent FSF changes.  Remove linux special
14042         cases.
14044 Tue Mar 28 14:47:34 1995  Jason Molenda (crash@phydeaux.cygnus.com)
14046         Revert this change:
14048         Tue Mar 30 10:03:09 1993  Ian Lance Taylor  (ian@cygnus.com)
14050                 * build-all.mk: Use CC=cc -Xs on Solaris.
14052 Tue Mar 21 10:43:32 1995  Jim Kingdon  (kingdon@lioth.cygnus.com)
14054         * glob/*: Removed.  Schauer's 24 Feb 1994 readline change made us
14055         stop using it.
14056         * Makefile.in: Nuke all references to glob subdirectory.
14058 Thu Mar 16 13:35:30 1995  Jason Merrill  <jason@phydeaux.cygnus.com>
14060         * configure.in: Fix --enable-shared logic in per-host.
14062 Mon Mar 13 12:33:15 1995  Ian Lance Taylor  <ian@cygnus.com>
14064         * configure.in (*-hp-hpux[78]*): Use mh-hpux8.
14066 Mon Mar  6 10:21:58 1995  Jim Kingdon  (kingdon@lioth.cygnus.com)
14068         * configure.in (noconfigdirs): Don't build gas on AIX, for
14069         powerpc*-*-aix* as well as for rs6000*-*-aix*.
14071 Wed Mar  1 12:51:53 1995  Ian Lance Taylor  <ian@cygnus.com>
14073         * configure: Fix --cache-file to work if the file argument is a
14074         relative path.
14076 Tue Feb 28 17:36:07 1995  Ian Lance Taylor  <ian@cygnus.com>
14078         * configure: If the --cache-file is used, pass it down to
14079         configure in subdirectories.
14081 Mon Feb 27 12:52:46 1995  Kung Hsu  <kung@mexican.cygnus.com>
14083         * config.sub: add vxworks29k configuration.
14085 Fri Feb 10 16:12:26 1995  Ken Raeburn  <raeburn@cujo.cygnus.com>
14087         * Makefile.in (taz): Do "diststuff" part quietly.
14089 Sun Feb  5 14:16:35 1995  Doug Evans  <dje@canuck.cygnus.com>
14091         * config.sub: Mini-merge with gcc/config.sub.
14093 Sat Feb  4 12:11:35 1995  Jim Wilson  <wilson@chestnut.cygnus.com>
14095         * config.guess (IRIX): Sed - to _.
14097 Fri Feb  3 11:54:42 1995  J.T. Conklin  <jtc@rtl.cygnus.com>
14099         * Makefile.in (source-vault, binary-vault): New targets.
14101 Thu Jan 26 13:00:11 1995  Michael Meissner  <meissner@cygnus.com>
14103         * config.sub: Recognize -eabi as a basic system type.
14105 Thu Jan 12 13:13:23 1995  Jason Merrill  <jason@phydeaux.cygnus.com>
14107         * configure.in (enable_shared stuff): Fix typo.
14109 Thu Jan 12 01:36:51 1995  deanm@medulla.LABS.TEK.COM (Dean Messing)
14111         * Makefile.in (BASE_FLAGS_TO_PASS): Fix typo in passing LIBCXXFLAGS*.
14113 Wed Jan 11 16:29:53 1995  Jason Merrill  <jason@phydeaux.cygnus.com>
14115         * Makefile.in (LIBCXXFLAGS_FOR_TARGET): Add -fno-implicit-templates.
14117 Mon Jan  9 12:48:01 1995  Jim Kingdon  <kingdon@lioth.cygnus.com>
14119         * configure.in (rs6000-*-*): Don't build gas.
14121 Wed Jan  4 23:53:49 1995  Ian Lance Taylor  <ian@tweedledumb.cygnus.com>
14123         * Makefile.in: Use /x/x/ instead of /brokensed/brokensed/, to
14124         reduce command line length.
14125         (AS_FOR_TARGET): Check for as.new, not Makefile.
14126         (NM_FOR_TARGET): Check for nm.new, not Makefile.
14128 Wed Jan  4 13:02:39 1995  Per Bothner  <bothner@kalessin.cygnus.com>
14130         * config.guess:  Merge from FSF.
14132 Thu Dec 15 17:11:37 1994  Ian Lance Taylor  <ian@sanguine.cygnus.com>
14134         * configure: Don't use $ when handling program_suffix.
14136 Mon Dec 12 12:09:37 1994  Stu Grossman  (grossman@cygnus.com)
14138         * configure.in:  Configure tk for hppa/hpux.
14140 Fri Dec  2 15:55:38 1994  Per Bothner  <bothner@kalessin.cygnus.com>
14142         * Makefile.in (LIBGXX_SUPPORT_DIRS):  Add libstdc++.
14144 Tue Nov 29 19:37:56 1994  Per Bothner  <bothner@kalessin.cygnus.com>
14146         * Makefile.in:  Move -fno-implicit-template from CXXFLAGS
14147         to LIBCXXFLAGS.  Tests are better run without it.
14149 Wed Nov 23 10:29:25 1994  Brendan Kehoe  (brendan@lisa.cygnus.com)
14151         * Makefile.in (all-ispell): Depend on all-emacs19 instead of all-emacs.
14153 Mon Nov 21 11:14:01 1994  J.T. Conklin  <jtc@rtl.cygnus.com>
14155         * configure.in (*-*-netware*): Don't configure xiberty.
14157 Mon Nov 14 08:49:15 1994  Stu Grossman  (grossman@cygnus.com)
14159         * configure.in:  Remove tk from native_only list.
14161 Fri Nov 11 15:31:26 1994  Bill Cox  (bill@rtl.cygnus.com)
14163         * build-all.mk: Add mips-ncd-elf target to sun4 targets
14164           for special NCD build.
14166 Mon Nov  7 20:58:17 1994  Ken Raeburn  <raeburn@cujo.cygnus.com>
14168         * Makefile.in (DEVO_SUPPORT): Remove configure.bat and
14169         makeall.bat, they're only useful for binutils snapshots.
14170         (binutils.tar.gz, gas+binutils.tar.gz): Add configure.bat and
14171         makeall.bat to specified SUPPORT_FILES.
14173 Mon Nov  7 17:25:18 1994  Bill Cox  (bill@cirdan.cygnus.com)
14175         * build-all.mk: Add Ericsson targets to sun4 and solaris
14176           hosts.  Add  BNR's sun4 target to solaris host, so their
14177           build-from-source will be tested in-house first.
14179 Sat Nov  5 18:43:30 1994  Jason Merrill  (jason@phydeaux.cygnus.com)
14181         * Makefile.in (LIBCFLAGS): New variable.
14182         (CFLAGS_FOR_TARGET): Ditto.
14183         (LIBCFLAGS_FOR_TARGET): Ditto.
14184         (LIBCXXFLAGS): Ditto.
14185         (CXXFLAGS_FOR_TARGET): Ditto.
14186         (LIBCXXFLAGS_FOR_TARGET): Ditto.
14187         (BASE_FLAGS_TO_PASS): Pass them.
14188         (EXTRA_TARGET_FLAGS): Ditto.
14190         * configure.in: Support --enable-shared.
14192 Sat Nov  5 15:44:00 1994  Per Bothner  <bothner@kalessin.cygnus.com>
14194         * configure.in (target_libs):  Include libstdc++ again.
14195         * config.guess:  Update from FSF (for FreeBSD).
14197 Thu Nov  3 16:32:30 1994  Ken Raeburn  <raeburn@cujo.cygnus.com>
14199         * Makefile.in (DEVO_SUPPORT): Include configure.bat and
14200         makeall.bat.
14201         (DISTDOCDIRS): Add `etc'.
14202         (ETC_SUPPORT_PFX): New variable.
14203         (taz): Include anything from etc starting with a word in
14204         ETC_SUPPORT_PFX.
14206 Wed Oct 26 16:19:35 1994  Ian Lance Taylor  <ian@sanguine.cygnus.com>
14208         * config.sub: Update for recent FSF changes.  Remove obsolete
14209         h8300hds entry.  Add -windows* and -osx as basic os.  Minor
14210         spacing changes.
14212 Thu Oct 20 18:41:56 1994  Per Bothner  <bothner@kalessin.cygnus.com>
14214         * configure.in (target_libs):  Remove libstdc++ for libg++-2.6.1.
14216         * config.guess:  Merge with FSF.
14217         * configure.in:  Match on i?86-ncr-sysv4.3, not i?86-ncr-sysv43.
14219 Thu Oct 20 19:26:56 1994  Ken Raeburn  <raeburn@cujo.cygnus.com>
14221         * configure: Since the "trap 0" handler will override the exit
14222         status on many systems, only use it for "exit 1", and make it set
14223         a non-zero exit status; reset it before "exit 0".  Also, check
14224         exit status of config.sub, and error out if it failed.
14226 Wed Oct 19 18:49:55 1994  Rob Savoye  (rob@cygnus.com)
14228         * Makefile.in: (ALL_TARGET_MODULES,INSTALL_TARGET_MODULES) Build
14229         and install libgloss.
14231 Tue Oct 18 15:25:24 1994  Ian Lance Taylor  <ian@sanguine.cygnus.com>
14233         * Makefile.in (all-binutils): Depend upon all-byacc.
14235         * configure.in: Don't build emacs on Irix 5.
14237 Mon Oct 17 16:22:12 1994  J.T. Conklin  (jtc@phishhead.cygnus.com)
14239         * configure.in (*-*-netware*): Add libio.
14241 Thu Oct 13 15:51:20 1994  Jason Merrill  (jason@phydeaux.cygnus.com)
14243         * Makefile.in (ALL_TARGET_MODULES): Add libstdc++.
14244         (CHECK_TARGET_MODULES): Ditto.
14245         (INSTALL_TARGET_MODULES): Ditto.
14246         (TARGET_LIBS): Ditto.
14247         (all-libstdc++): Note dependencies.
14249 Thu Oct 13 01:43:08 1994  Ken Raeburn  <raeburn@cujo.cygnus.com>
14251         * Makefile.in (BINUTILS_SUPPORT_DIRS): Add gas.
14253 Tue Oct 11 12:12:29 1994  Jason Merrill  (jason@phydeaux.cygnus.com)
14255         * Makefile.in (CXXFLAGS): Use -fno-implicit-templates instead of
14256         -fexternal-templates.
14258         * configure.in (target_libs): Add libstdc++.
14259         (noconfigdirs): Add libstdc++ as appropriate.
14261 Thu Oct  6 18:00:54 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14263         * config.guess:  Update from FSF.
14265 Tue Oct  4 12:05:42 1994  Ian Lance Taylor  <ian@sanguine.cygnus.com>
14267         * configure: Use ${config_shell} when running ${configsub}.
14269 Mon Oct  3 14:28:34 1994  Doug Evans  <dje@canuck.cygnus.com>
14271         * config.sub: No longer recognize h8300h.
14273 Mon Oct  3 12:40:54 1994  Ian Lance Taylor  <ian@sanguine.cygnus.com>
14275         * config.sub: Remove extraneous differences between config.sub and
14276         gcc/config.sub.
14278 Sat Oct  1 00:23:12 1994  Ken Raeburn  <raeburn@cujo.cygnus.com>
14280         * Makefile.in (DISTSTUFFDIRS): Add gas.
14282 Thu Sep 22 19:04:55 1994  Doug Evans  (dje@canuck.cygnus.com)
14284         * COPYING.NEWLIB: New file.
14286 Mon Sep 19 18:25:40 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14288         * config.guess (HP-UX):  Patch from Harlan Stenn
14289         <harlan@landmark.com> to also emit release level.
14291 Wed Sep  7 13:15:25 1994  Jim Wilson  (wilson@sphagnum.cygnus.com)
14293         * config.guess (sun4*:SunOS:*:*): Change '-JL' to '_JL'.
14295 Tue Sep  6 23:23:18 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14297         * config.sub:  Merge nextstep cleanup from FSF.
14299 Mon Sep  5 05:01:30 1994  Ken Raeburn  (raeburn@kr-pc.cygnus.com)
14301         * configure.in (arm-*-*): Don't configure ld for this target.
14303 Thu Sep  1 09:35:00 1994  J.T. Conklin  (jtc@phishhead.cygnus.com)
14305         * configure.in (*-*-netware): don't configure libg++, libio,
14306           librx, or newlib.
14308 Wed Aug 31 13:52:08 1994  Ian Lance Taylor  (ian@sanguine.cygnus.com)
14310         * configure.in (alpha-dec-osf*): Use osf*, not osf1*.  Don't
14311         configure ld--it works, but it doesn't support shared libraries.
14313 Sun Aug 28 18:13:45 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14315         * config.guess (*-unknown-freebsd*):  Get rid of possible
14316         trailing "(Release)" in version string.
14317         Patch from Paul Richards <paul@isl.cf.ac.uk>.
14319 Sat Aug 27 15:00:49 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14321         * config.guess:  Fix i486-ncr-sysv43 -> i486-ncr-sysv4.3.
14322         Fix type: *-next-neststep -> *-next-nextstep.
14324         * config.guess:  Merge from FSF:
14326         Fri Aug 26 18:45:25 1994  Philippe De Muyter (phdm@info.ucl.ac.be)
14328         * config.guess: Recognize powerpc-ibm-aix3.2.5.
14330         Wed Apr 20 06:36:32 1994  Philippe De Muyter  (phdm@info.ucl.ac.be)
14332         * config.guess: Recognize UnixWare 1.1 (UNAME_SYSTEM is SYSTEM_V
14333         instead of UNIX_SV for UnixWare 1.0).
14335 Sat Aug 27 01:56:30 1994  Stu Grossman  (grossman@cygnus.com)
14337         * Makefile.in (all-gdb):  Add dependencies on all-gcc and all-ld
14338         to make gdb/nlm/* build after the compiler and linker.
14340 Fri Aug 26 14:30:05 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14342         * config.guess (netbsd, freebsd, linux):  Accept any machine,
14343         not just i[34]86.
14344         (m68k-atari-sysv4):  Relocate to match FSF version.
14346         * config.guess:  More merges from the FSF:
14348         Add a space before function call or macro invocation.
14350         Tue May 10 16:53:55 1994  Roland McGrath (roland@churchy.gnu.ai.mit.edu)
14352         * config.guess: Add trap cmd to remove dummy.c and dummy when
14353         interrupted.
14355         Wed Apr 20 18:07:13 1994  Roland McGrath (roland@churchy.gnu.ai.mit.edu)
14357         * config.guess (dummy.c): Redirect stderr for `hostinfo' command.
14358         (dummy): Redirect stderr from compilation of dummy.c.
14360         Sat Apr  9 14:59:28 1994  Christian Kranz  (kranz@sent5.uni-duisburg.de)
14362         * config.guess: Distinguish between NeXTStep 2.1 and 3.x.
14364 Fri Aug 26 13:42:20 1994  Ken Raeburn  (raeburn@kr-laptop.cygnus.com)
14366         * configure: Accept and ignore --cache*, for compatibility with
14367         new autoconf.
14369 Fri Aug 26 13:05:27 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14371         * config.guess:  Merge from FSF:
14373         Thu Aug 25 20:28:51 1994  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
14375         * config.guess (Pyramid*:OSx*:*:*): New case.
14376         (PATH): Add /.attbin at end for finding uname.
14377         (dummy.c): Handle i860-alliant-bsd.  Follow whitespace conventions.
14379         Wed Aug 17 18:21:02 1994  Tor Egge  (tegge@pvv.unit.no)
14381         * config.guess (M88*:DolphinOS:*:*): New case.
14383         Thu Aug 11 17:00:13 1994  Stan Cox  (coxs@dg-rtp.dg.com)
14385         * config.guess (AViiON:dgux:*:*): Use TARGET_BINARY_INTERFACE
14386         to select whether to use ELF or COFF.
14388         Sun Jul 24 16:20:53 1994  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
14390         * config.guess: Recognize i860-stardent-sysv and i860-unknown-sysv.
14392         Sun May  1 10:23:10 1994  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
14394         * config.guess: Guess the OS version for HPUX.
14396         Tue Mar  1 21:53:03 1994  Karl Heuer  (kwzh@hal.gnu.ai.mit.edu)
14398         * config.guess (UNAME_VERSION): Recognize aix3.2.4 and aix3.2.5.
14400 Fri Aug 26 11:19:08 1994  Ian Lance Taylor  (ian@sanguine.cygnus.com)
14402         * configure.in: Recognize --with-headers, --with-libs, and
14403         --without-newlib.
14404         * Makefile.in (all-xiberty): Depend upon all-ld.
14406 Wed Aug 24 12:36:50 1994  Ian Lance Taylor  (ian@sanguine.cygnus.com)
14408         * configure.in: Change i[34]86 to i[345]86.
14410 Mon Aug 22 10:58:33 1994  Ian Lance Taylor  (ian@sanguine.cygnus.com)
14412         * configure (version): A few more tweaks to help message.
14414 Fri Aug 19 12:40:25 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14416         * Makefile.in:  Remove (for now) librx as a host library,
14417         now that we're building it for target.
14419 Fri Aug 19 10:49:17 1994  Ian Lance Taylor  (ian@sanguine.cygnus.com)
14421         * configure: Fix up help message; from karl@owl.hq.ileaf.com
14422         (Karl Berry).
14424 Tue Aug 16 16:11:08 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14426         * configure.in:  Also configure librx.
14428 Mon Aug 15 16:51:45 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14430         * Makefile.in:  Update various rules to reflect that librx
14431         is now needed for libg++.
14433 Fri Aug 12 18:07:21 1994  Ian Lance Taylor  (ian@sanguine.cygnus.com)
14435         * config.sub: Accept mips64orion and mips64orionel as a CPU name.
14437 Mon Aug  8 11:36:17 1994  Stan Shebs  (shebs@andros.cygnus.com)
14439         * configure.in: Configure the examples directory.
14441 Thu Aug  4 16:12:36 1994  Ian Lance Taylor  (ian@sanguine.cygnus.com)
14443         * configure: Simplify Jun 2 1994 change.
14445 Wed Aug  3 04:58:16 1994  D. V. Henkel-Wallace  (gumby@cygnus.com)
14447         * change CC to /usr/latest/bin/gcc for lynx host builds, since
14448         /bin/gcc isn't good enough to build gcc.
14450 Wed Jul 27 09:07:14 1994  Fred Fish  (fnf@cygnus.com)
14452         * Makefile.in (GDB_SUPPORT_FILES): Remove
14453         (setup-dirs-gdb, gdb.tar.gz, make-gdb.tar.gz):  Remove old rules.
14454         (gdb.tar.gz): Add new rule to use standard distribution building
14455         mechanism.
14457 Mon Jul 25 11:10:06 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
14459         * configure.in: Warn about use of /usr/ucb/cc on Solaris.  From
14460         Bill Cox <bill@cygnus.com>.
14462 Sat Jul 23 12:19:46 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14464         * config.guess:  Recognize ISC.  Patch from kwzh@gnu.ai.mit.edu.
14466 Fri Jul 22 17:53:59 1994  Stu Grossman  (grossman@cygnus.com)
14468         * configure:  Search current dir first in .gdbinit.
14470 Fri Jul 22 11:28:30 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14472         * config.sub:  Recognize freebsd (merged from gcc config.sub).
14474 Thu Jul 21 14:10:52 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14476         * config.sub:  Refer to NeXT's operating system as nextstep.
14478         * config.sub (case $basic_machine):  Re-order the cases, to match
14479         the order in the FSF version (which is mostly alphabethical).
14480         Merge in some additions and changes from the FSF.
14482 Sat Jul 16 12:03:08 1994  Stan Shebs  (shebs@andros.cygnus.com)
14484         * config.guess: Recognize m68k-atari-sysv4 and m88k-harris-csux7.
14485         * config.sub: Recognize cxux7.
14486         * configure.in: Use mh-cxux for m88k-harris-cxux*.
14488 Mon Jul 11 14:37:39 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14490         * config.sub:  Fix typo powerpc -> powerpc-*.
14492 Sat Jul  9 13:03:43 1994  Michael Tiemann  (tiemann@blues.cygnus.com)
14494         * Makefile.in: `all-emacs19' depends on `all-byacc'.
14496         * Makefile.in: Add all-emacs19 and install-emacs19 rules (in
14497         parallel with all-emacs and install-emacs).  Top-level command
14498         `make all-emacs19 CC=gcc' now behaves as `make all-emacs CC=gcc'.
14500 Thu Jun 30 16:53:42 1994  Ian Lance Taylor  (ian@sanguine.cygnus.com)
14502         * test-build.mk ($(host)-stamp-stage2-installed): Remove
14503         $(relbindir)/make before doing ``make install'', and use
14504         $(GNU_MAKE) while doing it.  Avoids problem on SunOS with
14505         installing over running make binary.
14506         ($(host)-stamp-stage3-installed): Likewise.
14508 Tue Jun 28 13:43:25 1994  Jim Kingdon  (kingdon@lioth.cygnus.com)
14510         * config.guess: Recognize Mach.
14512 Mon Jun 27 16:41:14 1994  Ian Lance Taylor  (ian@sanguine.cygnus.com)
14514         * configure: Check ${exec_prefixoption}, not ${exec_prefix}, to
14515         see whether --exec-prefix was used.
14517 Sun Jun 26 21:15:54 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14519         * README:  Explicitly mention libg++/README.  (Zoo's idea.)
14521 Tue Jun 21 12:45:55 1994  Jim Kingdon  (kingdon@lioth.cygnus.com)
14523         * Makefile.in: Add all-librx target similar to all-libproc.
14525 Wed Jun  8 23:11:55 1994  Stu Grossman  (grossman@cygnus.com)
14527         * config.guess:  Rearrange tests for Alpha-OSF1 to properly deal
14528         with post 1.2 uname bogosity.
14530 Thu Jun  9 00:27:59 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
14532         * configure: Remove temporary files on receipt of a signal.
14534 Tue Jun  7 12:06:24 1994  Ian Lance Taylor  (ian@cygnus.com)
14536         * configure: If there is a package_makefile_frag, remove
14537         ${subdir}/Makefile.tem after copying it in.
14539 Mon Jun  6 21:35:02 1994  D. V. Henkel-Wallace  (gumby@cygnus.com)
14541         * build_all.mk: support rs6000 lynx identifies itself as
14542         rs6000-lynx-lynxos2.2.2.  Also, use /usr/cygnus/progressive/bin/gcc
14543         since /bin/gcc is too feeble to compile a modern gcc.
14545 Mon Jun  6 16:06:34 1994  Karen Christiansen (karen@cirdan.cygnus.com)
14547         * brought devo/test-build.mk update-to-date with progressive/
14548           test-build.mk. Add lynx targets and hppa flag info.
14550 Sat Jun  4 17:23:54 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14552         * configure.in:  Use mh-ncrsvr43.  Patch from
14553         Tom McConnell <tmcconne@sedona.intel.com>.
14555 Fri Jun  3 17:47:24 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14557         * config.guess (i386-unknown-bsdi):  No longer need to
14558         check #if defined(__bsdi__) && defined(__i386__).
14560 Thu Jun  2 18:56:46 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
14562         * configure: Set program_transform_nameoption correctly.
14564 Thu Jun  2 10:57:06 1994  Karen Christiansen (karen@cirdan.cygnus.com)
14566         * brought build-all.mk update-to-date with progressive build-all.mk,
14567           added new targets and hppa info.
14569 Thu Jun  2 00:12:44 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
14571         * configure: If config.guess result is a prefix of the user
14572         specified target, assume a native build and use the user specified
14573         target as the host alias.  Remove SunOS patch suffix removal hack.
14574         * configure.in: Remove SunOS patch suffix removal hack.
14576         * Makefile.in (CROSS_CHECK_MODULES): Remove check-flex, since it's
14577         in NATIVE_CHECK_MODULES.
14579 Wed Jun  1 10:49:41 1994  Bill Cox  (bill@rtl.cygnus.com)
14581         * Makefile.in: Rename HOST_ONLY to NATIVE.
14582         * configure: Delete SunOs patch suffix from host_canonical
14583           and build_canonical variables that are prepended to Makefiles.
14584         * configure.in: Add comments for easier maintenance.
14586 Tue May 31 19:39:47 1994  Jim Kingdon  (kingdon@lioth.cygnus.com)
14588         * Makefile.in: Add all-libproc target similar to all-gui.
14590 Tue May 31 17:16:33 1994  Tom Lord  (lord@cygnus.com)
14592         * Makefile.in (CHECK_MODULES): split into
14593         HOST_ONLY_CHECK_MODULES and CROSS_CHECK_MODULES.
14595 Tue May 31 16:36:36 1994  Paul Eggert  (eggert@twinsun.com)
14597         * config.guess (i386-unknown-bsdi): New system to guess.
14599 Wed May 25 16:47:10 1994  Jim Kingdon  (kingdon@lioth.cygnus.com)
14601         * Makefile.in: Add all-gui target (but not yet build by "all").
14603 Thu May 26 08:53:19 1994  Bill Cox  (bill@rtl.cygnus.com)
14605         * config.sub: Move deletion of patch suffix from here...
14606         * configure.in: To here, at Ian's suggestion.  The top-
14607           level scripts might need to know of a patch level.
14609 Wed May 25 09:15:54 1994  Bill Cox  (bill@rtl.cygnus.com)
14611         * config.sub: Strip off patch suffix so rtl is recognized
14612           as a sunos4.1.3 machine, even though it's been patched.
14614 Fri May 20 08:25:49 1994  Steve Chamberlain  (sac@deneb.cygnus.com)
14616         * Makefile.in (INSTALL_LAST): Delete.
14617         (INSTALL_DOSREL): New.
14619 Thu May 19 17:12:12 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
14621         * configure.in: Use ld for i[34]86-*-sysv4* and sparc-*-solaris2*.
14622         Don't set use_gnu_ld to no for *-*-sysv4; that only controls
14623         whether we pass down --with-gnu-ld anyhow.
14625 Thu May 19 09:29:12 1994  Steve Chamberlain  (sac@cygnus.com)
14627         * Makefile.in (INSTALL_LAST): Change operation so it works
14628         on more flavors of make.
14629         * configure.in (go32): Don't build libg++ or libio.
14631 Fri May 13 13:28:34 1994  Steve Chamberlain  (sac@cygnus.com)
14633         * Makefile.in (Move HOST_PREFIX_1 and friends up so
14634         they can be overriden by templates.
14636 Sat May  7 16:46:44 1994  Steve Chamberlain  (sac@cygnus.com)
14638         * configure.in (target==go32): Don't build gdb.
14639         * dosrel: New directory.
14641 Fri May  6 14:19:25 1994  Steve Chamberlain  (sac@cygnus.com)
14643         * configure.in (host==go32): Configure dosrel too.
14644         * Makefile.in (INTALL_TARGET): Call INSTALL_LAST last.
14645         (HOST_CC, HOST_PREFIX, HOST_PREFIX_1): Undefine, they should
14646         be set by incoming names or templates.
14647         (INSTALL_LAST): New rule.
14649 Thu May  5 17:35:05 1994  Stan Shebs  (shebs@andros.cygnus.com)
14651         * config.sub (sparclitefrw, sparclitefrwcompat): Don't set the os.
14653 Thu May  5 20:06:45 1994  Ken Raeburn  (raeburn@cujo.cygnus.com)
14655         * configure.in (appdirs): New variable.  Currently empty, but will
14656         be used in gas distribution.  If nonempty, lists a set of
14657         directories at least one of which must get configured, or top
14658         level configuration is considered to have failed.
14659         (rs6000-*-lynxos*): Use new file name.
14661 Thu May  5 13:38:36 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
14663         Eliminate XTRAFLAGS.
14664         * Makefile.in (CC_FOR_TARGET): If newlib exists, refer to the
14665         newlib include files using -idirafter, and also use -nostdinc.
14666         (CXX_FOR_TARGET): Likewise.
14667         (XTRAFLAGS): Removed.
14668         (BASE_FLAGS_TO_PASS): Remove XTRAFLAGS_FOR_TARGET.
14669         (EXTRA_HOST_FLAGS): Remove XTRAFLAGS.
14670         (EXTRA_TARGET_FLAGS, EXTRA_GCC_FLAGS): Likewise.
14671         ($(DO_X)): Don't pass down XTRAFLAGS.
14673 Thu May  5 00:16:36 1994  Ken Raeburn  (raeburn@kr-pc.cygnus.com)
14675         * configure.in (mips*-dec-bsd*): New target; do build linker.
14676         (mips*-*-bsd*): New target; don't build linker.
14678 Wed May  4 20:10:10 1994  D. V. Henkel-Wallace  (gumby@cygnus.com)
14680         * configure.in: support rs6000-*-lynxos* configuration.
14681         support sunos4 as a cross target.
14683         * config.sub: look for lynx*, not lynx since the OS version may
14684         legitimately be part of the name.
14686 Tue May  3 21:48:11 1994  Ken Raeburn  (raeburn@cujo.cygnus.com)
14688         * configure.in (i[34]86-*-sco*): Move to be with other i386
14689         targets.
14690         (romp-*-*): New target.  Skip various binary utilities.
14691         (vax-*-*): New target.  Don't build newlib.
14692         (vax-*-vms): Renamed from *-*-vms.  Don't build opcodes or newlib.
14694 Thu Apr 28 15:03:05 1994  David J. Mackenzie  (djm@rtl.cygnus.com)
14696         * configure.in: Only set host_makefile_frag if config
14697         directory exists.
14699 Wed Apr 27 12:14:30 1994  David J. Mackenzie  (djm@rtl.cygnus.com)
14701         * install.sh: If $dstdir exists, don't check whether each
14702         component does.
14704 Tue Apr 26 18:11:33 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
14706         * test-build.mk (HOLES): Add sleep; used by rcs/src/conf.sh.
14708 Mon Apr 25 15:06:34 1994  Stan Shebs  (shebs@andros.cygnus.com)
14710         * configure.in (*-*-lynxos*): Don't configure newlib for either
14711         native or cross Lynx.
14713 Sat Apr 16 11:58:16 1994  Doug Evans  (dje@canuck.cygnus.com)
14715         * config.sub (sparc64-elf): Fix os.
14716         (z8k): Remove duplicate.
14718 Thu Apr 14 23:33:17 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
14720         * Makefile.in (gcc-no-fixedincludes): Touch gcc/include/fixed, not
14721         gcc/stmp-fixproto, to try to prevent fixproto from being run.
14723 Wed Apr 13 15:14:52 1994  Bill Cox  (bill@cygnus.com)
14725         * configure: Make file links cleanly even if Lynx fails on
14726           an NFS symlink (at least fail cleanly).
14728 Mon Apr 11 10:58:56 1994  Jim Wilson  (wilson@sphagnum.cygnus.com)
14730         * test-build.mk (CC): For mips-sgi-irix4, change -XNh1500 to
14731         -XNh2000.
14733 Sat Apr  9 15:10:45 1994  David J. Mackenzie  (djm@rtl.cygnus.com)
14735         * configure: Unknown options are fatal again.
14737 Fri Apr  8 12:01:41 1994  David J. Mackenzie  (djm@cygnus.com)
14739         * configure: Ignore --x-includes and --x-libraries, for Autoconf
14740         compatibility.
14742 Thu Apr  7 17:31:43 1994  Doug Evans  (dje@canuck.cygnus.com)
14744         * build-all.mk: Add `clean' target.
14746 Wed Apr  6 20:44:56 1994  Peter Schauer  (pes@regent.e-technik.tu-muenchen.de)
14748         * config.guess:  Add SINIX support.
14749         * configure.in:  Add mips-*-sysv4* support.
14751 Mon Apr  4 17:41:44 1994  Doug Evans  (dje@canuck.cygnus.com)
14753         * build-all.mk: Document all useful targets.
14754         If canonhost is sparc-sun-solaris2.3, change it to sparc-sun-solaris2.
14755         If canonhost is mips-sgi-irix4.0.5H, change it to mips-sgi-irix4.
14757 Thu Mar 31 04:55:57 1994  David J. Mackenzie  (djm@rtl.cygnus.com)
14759         * configure: Support --silent, --quiet.
14761 Wed Mar 30 21:37:38 1994  David J. Mackenzie  (djm@rtl.cygnus.com)
14763         * configure: Support --disable-FEATURE.
14765 Tue Mar 29 19:15:05 1994  Jim Kingdon  (kingdon@lioth.cygnus.com)
14767         * config.guess: Recognize NCR running SVR4.3.
14769 Mon Mar 28 14:55:15 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14771         * config.guess:  Make BSDI generate i386-unknown-bsd386.
14772         Patch from Paul Eggert <eggert@twinsun.com>.
14774 Mon Mar 28 12:54:52 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
14776         * configure.in (powerpc-*-aix*): Treat like rs6000-*-*.
14778 Sat Mar 26 11:25:48 1994  David J. Mackenzie  (djm@rtl.cygnus.com)
14780         * configure: Make unrecognized options give nonfatal warnings
14781         instead of fatal errors, and pass them to any subdirectory
14782         configures in case they recognize them.
14783         Make --x equivalent to --with-x.
14785 Fri Mar 25 21:52:10 1994  David J. Mackenzie  (djm@rtl.cygnus.com)
14787         * configure: Add --enable-* options.  Clean up usage message and
14788         some comments.
14790 Thu Mar 24 09:12:53 1994  Doug Evans  (dje@canuck.cygnus.com)
14792         * Makefile.in (NM_FOR_TARGET): Build tree version is now nm.new.
14794 Sun Mar 20 11:28:22 1994  Jeffrey A. Law  (law@snake.cs.utah.edu)
14796         * configure.in (hppa*-*-*): Enable binutils.
14798 Sat Mar 19 11:50:16 1994  Jim Kingdon  (kingdon@lioth.cygnus.com)
14800         * config.sub: Recognize cisco.
14802 Fri Mar 18 16:42:32 1994  Jason Merrill  (jason@deneb.cygnus.com)
14804         * Makefile.in (CXXFLAGS): Add -fexternal-templates.
14806 Tue Mar 15 11:25:55 1994  Jim Kingdon  (kingdon@lioth.cygnus.com)
14808         * config.guess: about target *-hitachi-hiuxwe2, don't print more
14809         than one configuration name.  Add comment.
14811 Sun Mar  6 23:13:38 1994  Hisashi MINAMINO  (minamino@sra.co.jp)
14813         * config.guess: about target *-hitachi-hiuxwe2, fixed
14814         machine guessing order.  [Hitachi's CPU_IS_HP_MC68K
14815         macro is incorrect.]
14817 Sun Mar 13 09:10:08 1994  Jim Kingdon  (kingdon@lioth.cygnus.com)
14819         * Makefile.in (TAGS): Just build TAGS in each subdirectory, rather
14820         than the "make ls" stuff which used to be here.
14822 Fri Mar 11 12:52:39 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14824         * config.guess:  Recognize i[34]86-unknown-freebsd.
14825         From Shawn M Carey <smcarey@rodan.syr.edu>.
14827 Thu Mar  3 14:24:21 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14829         * configure.in (noconfigdirs for alpha): Remove libg++ and libio.
14831 Wed Mar  2 13:28:48 1994  Jim Kingdon  (kingdon@deneb.cygnus.com)
14833         * config.guess: Check for ptx.
14835 Mon Feb 28 16:46:50 1994  Kung Hsu  (kung@mexican.cygnus.com)
14837         * config.sub: Add os9k checking.
14839 Thu Feb 24 07:09:04 1994  Jeffrey A. Law  (law@snake.cs.utah.edu)
14841         * config.guess: Handle OSF1 running on HPPA processors
14843 Fri Feb 18 14:14:00 1994  Ken Raeburn  (raeburn@rtl.cygnus.com)
14845         * configure: If subdir configure fails, print out a message with
14846         subdirectory name, in case subdir's configure code didn't identify
14847         itself.
14849 Fri Feb 18 12:50:15 1994  Doug Evans  (dje@cygnus.com)
14851         * configure.in: Remove embedded newlines from configdirs.
14852         Avoid mismatches of substrings.  Fix matching strings at end
14853         of configdirs.
14855 Fri Feb 11 15:33:33 1994  Stu Grossman  (grossman at cygnus.com)
14857         * config.guess:  Add Lynx/rs6000 config support.
14859 Tue Feb  8 13:41:09 1994  Ken Raeburn  (raeburn@rtl.cygnus.com)
14861         * configure.in (alpha-dec-osf1*, alpha*-*-*): Build gas.
14863 Mon Feb  7 15:42:36 1994  Jeffrey A. Law  (law@cygnus.com)
14865         * configure.in (hppa*-*-osf*): Treat this just like most other
14866         PA configurations (eg no binutils or ld).
14867         (hppa*-*-*elf*): These configurations have binutils and ld.
14869 Sun Feb  6 16:35:07 1994  Jeffrey A. Law  (law@snake.cs.utah.edu)
14871         * config.sub (hiux): Fix typo.  From m-kasahr@sramhc.sra.co.JP.
14873 Sat Feb  5 01:00:33 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
14875         * configure.in (rs6000-*-*): Build gas.
14877 Wed Feb  2 13:57:57 1994  Jeffrey A. Law  (law@snake.cs.utah.edu)
14879         * Makefile.in:  Avoid bug in losing hpux sed.
14881 Wed Feb  2 14:53:05 1994  Jim Kingdon  (kingdon@lioth.cygnus.com)
14883         * Makefile.in, test-build.mk: Remove MUNCH_NM; it was only needed
14884         for GDB and GDB has been fixed to not need it.
14886 Sun Jan 30 17:58:06 1994  Ken Raeburn  (raeburn@cujo.cygnus.com)
14888         * config.guess: Recognize vax hosts.
14890 Fri Jan 28 15:29:38 1994  Ken Raeburn  (raeburn@cujo.cygnus.com)
14892         * configure (while loop): Don't use "break 2" inside case
14893         statement -- the case statement isn't an enclosing loop.
14895 Mon Jan 24 18:40:06 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14897         * config.guess:  Clean up NeXT support, to allow nextstep
14898         on Intel machines.  Make OS be nextstep.
14900 Sun Jan 23 18:47:22 1994  Richard Kenner  (kenner@vlsi1.ultra.nyu.edu)
14902         * config.guess: Add alternate forms for Convex.
14904 Thu Jan 20 16:13:41 1994  Stu Grossman  (grossman at cygnus.com)
14906         * configure:  Completely rewrite option processing.  Take
14907         advantage of pattern-matching to avoid invoking test frequently.
14908         Also clean up host and target defaulting logic.
14910 Mon Jan 17 15:06:56 1994  Ken Raeburn  (raeburn@cujo.cygnus.com)
14912         * Makefile.in: Replace all occurrances of "rootme" with "r" and
14913         "$${rootme}" with "$$r", to increase the likelihood that the do-*
14914         commands (plus user environment) will fit SCO limits.
14916 Thu Jan  6 11:20:57 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
14918         * configure.in: Don't issue warnings about directories which are
14919         not being configured if -norecursion is set.  Correct test for
14920         --with-gnu-as and --with-gnu-ld to not get confused by substring
14921         matches.
14923         * configure.in: Don't build gas for alpha-dec-osf1*.
14925 Tue Jan  4 17:10:19 1994  Stu Grossman  (grossman at cygnus.com)
14927         * configure:  Back out Per's change of 12/19/1993.  It changes the
14928         behavior of configure in unexpected and confusing ways.
14930         Also, use different delim char when calculating
14931         program_transform_name so that the name can contain slashes.
14933 Sat Jan  1 13:45:31 1994  Rob Savoye  (rob@darkstar.cygnus.com)
14935         * configure.in, config.sub: Add support for VSTa micro-kernel.
14937 Sat Dec 25 20:00:47 1993  Jeffrey A. Law  (law@snake.cs.utah.edu)
14939         * configure.in: Nuke hacks which were used to get a special
14940         version of GAS for HPPA configurations.
14942 Sun Dec 19 20:40:44 1993  Per Bothner  (bothner@kalessin.cygnus.com)
14944         * configure:  If only ${target_alias} is given, use that
14945         as the default for ${host_alias}.
14946         * configure:  Add missing back-slashes before nested quotes.
14948 Wed Dec 15 18:07:18 1993  david d `zoo' zuhn  (zoo@andros.cygnus.com)
14950         * Makefile.in (BASE_FLAGS_TO_PASS): add YACC=$(BISON)
14952 Tue Dec 14 21:25:33 1993  Per Bothner  (bothner@cygnus.com)
14954         * config.guess:  Recognize some Tektronix configurations.
14955         From Kaveh R. Ghazi <ghazi@noc.rutgers.edu>.
14957 Sat Dec 11 11:18:00 1993  Steve Chamberlain  (sac@thepub.cygnus.com)
14959         * config.sub: Match any flavor of SH.
14961 Thu Dec  2 17:16:58 1993  Ken Raeburn  (raeburn@cujo.cygnus.com)
14963         * configure.in: Don't try to configure newlib for Alpha.
14965 Thu Dec  2 14:35:54 1993  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
14967         * configure.in: Don't build ld for Irix 5.  Don't build gas,
14968         libg++ or libio for any Alpha target.
14970         * configure.in (mips*-sgi-irix5*): New target; use mh-irix5.
14972 Wed Dec  1 17:00:33 1993  Jason Merrill  (jason@deneb.cygnus.com)
14974         * Makefile.in (GZIPPROG): Renamed from GZIP, which gzip uses for
14975         default arguments -- so it tried to compress itself.
14977 Tue Nov 30 13:45:15 1993  david d `zoo' zuhn  (zoo@andros.cygnus.com)
14979         * configure.in (notsupp): ensure that a space is always at the end
14980           of the configdirs list, since the grep checks for an explicit space
14982 Tue Nov 16 15:04:27 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
14984         * configure.in (target i386-sysv4.2): don't build ld, since static
14985           versions of many libraries are not available.
14987 Tue Nov 16 14:28:12 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
14989         * config.guess: Recognize Apollos (using environment variables).
14990         * configure.in: Don't configure ld, binutils, or gprof for Apollo.
14992 Thu Nov 11 12:03:50 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
14994         * config.guess: Recognize Sony news mips running newsos.
14996 Wed Nov 10 16:57:00 1993  Mark Eichin  (eichin@cygnus.com)
14998         * Makefile.in (all-cygnus, build-cygnus): "fi else" needs to be
14999         "fi ; else" for bash.
15001 Tue Nov  9 15:54:01 1993  Mark Eichin  (eichin@cygnus.com)
15003         * Makefile.in (BASE_FLAGS_TO_PASS): pass SHELL.
15005 Fri Nov  5 08:07:27 1993  D. V. Henkel-Wallace  (gumby@blues.cygnus.com)
15007         * config.sub: accept unixware as an alias for svr4.2.
15008         Fix some inconsistancies with the gcc version.
15010 Fri Nov  5 15:14:12 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
15012         * Makefile.in (DISTDOCDIRS):  Add gdb.
15014 Fri Nov  5 11:59:42 1993  Per Bothner  (bothner@kalessin.cygnus.com)
15016         * Makefile.in (DISTDOCDIRS):  Add libg++ and libio.
15018 Fri Nov  5 10:35:05 1993  Ken Raeburn  (raeburn@rover.cygnus.com)
15020         * Makefile.in (taz): Only build "info" in DISTDOCDIRS.
15021         (DISTDOCDIRS): Don't assume libg++ and gdb folks necessarily want
15022         this now.
15024 Thu Nov  4 18:58:23 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
15026         * config.sub: Accept hiux* as an OS name.
15028         * Makefile.in: Change RUNTEST_FLAGS back to RUNTESTFLAGS per
15029         etc/make-stds.texi.  The underscore came from gcc, and dje now
15030         agrees that RUNTESTFLAGS is the correct name.
15032 Thu Nov  4 10:49:01 1993  Per Bothner  (bothner@kalessin.cygnus.com)
15034         * install.sh:  Remove 'set -e'.  It makes any conditionals
15035         in the script useless.
15037         * config.guess: Automatically recognize arm-acorn-riscix
15038         Patch from Richard Earnshaw (rwe11@cl.cam.ac.uk).
15040 Thu Nov 04 08:08:04 1993  Jeffrey Wheat  (cassidy@cygnus.com)
15042         * Makefile.in: Change RUNTESTFLAGS to RUNTEST_FLAGS
15044 Wed Nov  3 22:09:46 1993  Ken Raeburn  (raeburn@rtl.cygnus.com)
15046         * Makefile.in (DISTDOCDIRS): New variable.
15047         (taz): Edit local Makefile.in sooner, instead of proto-toplev
15048         Makefile.in later.  Build "info" and "dvi" in DISTDOCDIRS.
15050 Wed Nov  3 21:31:52 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
15052         * configure.in (hppa target): check the source directory for the
15053           pagas sub-directory
15055 Wed Nov  3 11:12:22 1993  Doug Evans  (dje@canuck.cygnus.com)
15057         * config.sub: Allow -aout* and -elf*.
15059 Wed Nov  3 11:08:33 1993  Ken Raeburn  (raeburn@rtl.cygnus.com)
15061         * configure.in: Don't build ld on i386-solaris2, same as for
15062         sparc-solaris2.
15064 Tue Nov  2 14:21:25 1993  Per Bothner  (bothner@kalessin.cygnus.com)
15066         * Makefile.in (taz): Add texinfo/lgpl.texinfo (for libg++).
15068 Tue Nov  2 13:38:30 1993  Peter Schauer  (pes@regent.e-technik.tu-muenchen.de)
15070         * configure.in:  Configure gdb for alpha.
15072 Mon Nov  1 10:42:54 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
15074         * Makefile.in (CXXFLAGS): Add -O.
15076 Wed Oct 27 10:45:06 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
15078         * config.guess: added support for DG Aviion
15080 Tue Oct 26 14:37:37 1993  Ken Raeburn  (raeburn@rover.cygnus.com)
15082         * configure.in: Produce warning message for subdirectories not
15083         configurable for this host/target combination.  Don't try to
15084         configure gdb for vms.
15086 Mon Oct 25 11:22:15 1993  Ken Raeburn  (raeburn@rover.cygnus.com)
15088         * Makefile.in (taz): Replace "byacc" with "bison -y" in the
15089         appropriate files before making "diststuff".
15090         (DISTBISONFILES): New var: list of files to be edited.
15091         (DISTSTUFFDIRS): Add binutils.
15093 Fri Oct 22 20:32:15 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
15095         * config.sub: also handle mipsel and mips64el (for little endian mips)
15097 Fri Oct 22 07:59:20 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
15099         * configure.in: Add * to end of all OS names.
15101 Thu Oct 21 11:38:28 1993  Stan Shebs  (shebs@rtl.cygnus.com)
15103         * configure.in: Build newlib for LynxOS native.
15105 Wed Oct 20 09:56:12 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
15107         * config.guess: Add support for delta 88k running SVR3.
15109         * configure.in: Add comment about HP compiler vs. emacs.
15111 Tue Oct 19 16:02:22 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
15113         * configure.in: don't build ld on solaris2 (not a viable option
15114           due to bugs in getpwnam & getpwuid)
15116 Tue Oct 19 15:13:56 1993  Ken Raeburn  (raeburn@rtl.cygnus.com)
15118         * configure.in: Accept alpha-dec-osf1*, not just -osf1, since
15119         config.guess will produce a full version number.
15121 Tue Oct 19 15:58:01 1993  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
15123         * configure.in: Build linker and binutils for alpha-dec-osf1.
15125 Tue Oct 19 11:41:55 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
15127         * Makefile.in: Remove -O from CXXFLAGS for consistency with CFLAGS,
15128         and gdb/testsuite/Makefile.in.
15130 Sat Oct  9 18:39:07 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
15132         * configure.in: recognize mips*- instead of mips-
15134 Fri Oct  8 14:15:39 1993  Ken Raeburn  (raeburn@cygnus.com)
15136         * config.sub: Accept linux*coff and linux*elf as operating
15137         systems.
15139 Thu Oct  7 12:57:19 1993  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
15141         * config.sub: Recognize mips64, and mips3 as an alias for it.
15143 Wed Oct  6 13:54:21 1993  Peter Schauer  (pes@regent.e-technik.tu-muenchen.de)
15145         * configure.in: Remove alpha-dec-osf*, no longer necessary now that
15146         gdb knows how to handle OSF/1 shared libraries.
15148 Tue Oct  5 11:55:04 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
15150         * configure.in: Recognize hppa*-*-hiux* (currently synonym for hpux).
15151         * config.guess: Recognize Hitachi's HIUX.
15152         * config.sub: Recognize h3050r* and hppahitachi.
15153         Remove redundant cases for hp9k[23]*.
15155 Mon Oct  4 16:15:09 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
15157         * configure.in: default to '--with-gnu-as' and '--with-gnu-ld'
15158         if gas and ld are in the source tree and are in ${configdirs}.
15159         If ${use_gnu_as} or ${use_gnu_ld} are 'no', then don't set the
15160         --with options (but still pass them down on the command line,
15161         if they were explicitly specified).
15163 Fri Sep 24 19:11:13 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
15165         * configure: substitute SHELL value in Makefile.in with
15166         ${CONFIG_SHELL}
15168 Thu Sep 23 18:05:13 1993  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
15170         * configure.in: Build gas, ld, and binutils for *-*-sysv4* and
15171         *-*-solaris2* targets.
15173 Sun Sep 19 17:01:41 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
15175         * Makefile.in: define M4, and pass it down to sub-makes;
15176         all-autoconf now depends on all-m4
15178 Sat Sep 18 00:38:23 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
15180         * Makefile.in ({AR,RANLIB}_FOR_TARGET): make contingent on
15181         presence of {ar,ranlib} instead of a configured directory
15183 Wed Sep 15 08:41:44 1993  Jim Kingdon  (kingdon@cirdan.cygnus.com)
15185         * config.guess: Accept 34?? as well as 33?? for NCR.
15187 Mon Sep 13 12:28:43 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
15189         * configure.in: grab mt-hppa for HPPA targets; use 'gas ' instead
15190         of 'gas' in sed commands, since 'gash' is now in the tree as well.
15192 Fri Sep 10 11:23:52 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
15194         * configure: grab values for $(CC) and $(CXX) from the
15195         environment, so that someone can do "CC=gcc configure; make" and
15196         have it work right (matching the way that autoconf works now)
15198         * configure.in, Makefile.in: add support for gash, the tcl
15199         interface to Galaxy
15201         * config.guess: add NetBSD variants (hp300, x86)
15203 Thu Sep  9 16:48:52 1993  Jason Merrill  (jason@deneb.cygnus.com)
15205         * install.sh: Support -d option (in the manner of SunOS 4 install,
15206         as it is more deterministic than that of GNU install)
15207         (chmodcmd): Set file to mode 755 by default (should also do default
15208         chgrp and chown, but I don't feel like dealing with that now)
15210 Tue Sep  7 11:59:39 1993  Doug Evans  (dje@canuck.cygnus.com)
15212         * config.sub: Remove h8300hhms alias.
15214 Tue Aug 31 11:00:09 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
15216         * configure.in: Match *-*-solaris2* not *-sun-solaris2*.
15218 Mon Aug 30 18:29:10 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
15220         * Makefile.in (gcc-no-fixedincludes): touch stmp-fixproto as well
15221         as stmp-fixinc
15223 Wed Aug 25 16:35:59 1993  K. Richard Pixley  (rich@sendai.cygnus.com)
15225         * config.sub: recognize m88110-bug-coff.
15227 Tue Aug 24 10:23:24 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
15229         * Makefile.in (all-libio): all dependencies on the toolchain used
15230         to build this (gcc, gas, ld, etc)
15232 Fri Aug 20 17:24:24 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
15234         * config.guess: Deal with OSF/1 1.3 on alpha.
15236 Thu Aug 19 11:43:04 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
15238         * install.sh: add some 'else true' clauses for portability
15240         * configure.in: don't build libio for h8[35]00-*-* targets
15242 Tue Aug 17 19:02:31 1993  Per Bothner  (bothner@kalessin.cygnus.com)
15244         * Makefile.in:  Add support for new libio.
15246 Sun Aug 15 20:48:55 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
15248         * install.sh: If one command fails, don't try the rest.  Don't try
15249         to remove $dsttmp (via trap) unless we have already created it.
15250         If $src doesn't exist, detect it and exit with an error.
15252         * config.guess: Recognize BSD on hp300.
15254 Wed Aug 11 18:35:13 1993  Per Bothner  (bothner@kalessin.cygnus.com)
15256         * config.guess:  Map (9000/[34]??:HP-UX:*:*) to m68k-hp-hpux.
15257         Bug report from "Hamish (H.I.) Macdonald" <hamish@bnr.ca>.
15259 Wed Aug 11 15:37:51 1993  Jason Merrill  (jason@deneb.cygnus.com)
15261         * Makefile.in (all-send-pr): depends on all-prms
15263 Wed Aug 11 16:56:03 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
15265         * config.guess: Fix typo (9000/8??:4.3bsd -> 9000/7??:4.3bsd).
15267 Fri Aug  6 14:45:02 1993  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
15269         * config.guess: From michael@mercury.cs.mun.ca (Michael Rendell):
15270         Added test for mips-mips-riscos5.
15272 Thu Aug  5 15:45:08 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
15274         * configure.in: use mh-hp300 for 68k HP hosts
15276 Mon Aug  2 11:56:53 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
15278         * configure: add support for CONFIG_SHELL, so that you can use
15279         some alternate shell for evaluating configure scripts
15281 Sun Aug  1 11:36:27 1993  Fred Fish  (fnf@deneb.cygnus.com)
15283         * Makefile.in (make-gdb.tar.gz):  Sed bug reporting address
15284         in configure script to bug-gdb@prep.ai.mit.edu when building
15285         distribution archive.
15286         * Makefile.in (COMPRESS):  Remove def.
15287         * Makefile.in (gdb.tar.gz, make-gdb.tar.gz):  Renamed from
15288         gdb.tar.Z and make-gdb.tar.Z respectively.
15289         * Makefile.in (make-gdb.tar.gz):  Now only build gzip'd archive.
15290         * Makefile.in (make-gdb.tar.gz):  Minor changes to move closer
15291         to convergence with 'taz' target in Makefile.in.
15293 Fri Jul 30 12:34:57 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
15295         * install.sh (dsttmp): use trap to ensure that tmp files go
15296         away on error conditions
15298 Wed Jul 28 11:57:36 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
15300         * Makefile.in (BASE_FLAGS_TO_PASS): remove LOADLIBES
15302 Tue Jul 27 12:43:40 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
15304         * Makefile.in (install-dirs): Deal with a prefix like /gnu;
15305         its parent is '/' not ''.
15307         * Makefile.in (DEVO_SUPPORT): Add comments about ChangeLog.
15309 Fri Jul 23 09:53:37 1993  Jason Merrill  (jason@wahini.cygnus.com)
15311         * configure: if ${newsrcdir}/configure doesn't exist, don't assume
15312         that ${newsrcdir}/configure.in does.
15314 Tue Jul 20 11:28:50 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
15316         * test-build.mk: support for CONFIG_SHELL
15318 Mon Jul 19 21:54:46 1993  Fred Fish  (fnf@deneb.cygnus.com)
15320         * config.sub (netware):  Add as a basic system type.
15322 Wed Jul 14 12:03:11 1993  K. Richard Pixley  (rich@sendai.cygnus.com)
15324         * Makefile.in (Makefile): depend on configure.in.  Also drop the
15325           $(srcdir)/ from the dependency on Makefile.in.
15327 Tue Jul 13 20:10:58 1993  Doug Evans  (dje@canuck.cygnus.com)
15329         * config.sub: Recognize h8300hhms as h8300h-hitachi-hms.
15330         (h8300hhms is temporary until multi-libraries are implemented).
15331         * configure.in: Handle h8300h too.
15333 Sun Jul 11 17:35:27 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
15335         * config.guess: Recognize dpx/2 as m68k-bull-sysv3.
15337 Thu Jul  8 18:26:12 1993  John Gilmore  (gnu@cygnus.com)
15339         * configure:  Remove extraneous output when guessing host type.
15340         * config.guess:  Remove extraneous output when guessing using C
15341         compiler rather than uname, or when guessing fails.
15343 Wed Jul  7 17:58:14 1993  david d `zoo' zuhn  (zoo at rtl.cygnus.com)
15345         * Makefile.in: remove all.cross and install.cross targets
15347         * configure: remove CROSS=-DCROSS_COMPILE and ALL=all.cross
15348           definitions
15350 Tue Jul  6 10:39:44 1993  Steve Chamberlain  (sac@phydeaux.cygnus.com)
15352         * configure.in (target sh): Build gprof.
15354 Thu Jul  1 16:52:56 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15356         * config.sub: change -solaris to -solaris2
15358 Thu Jul  1 15:46:16 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
15360         * configure.in: Use config/mh-riscos for mips-*-sysv*.
15362 Wed Jun 30 09:31:58 1993  Ian Lance Taylor  (ian@cygnus.com)
15364         * configure: Correct error message for missing Makefile.in to
15365         print correct directory.
15367 Tue Jun 29 13:52:16 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15369         * install.sh: kludge around 386BSD shell bug
15371 Tue Jun 29 13:06:49 1993  Per Bothner  (bothner@rtl.cygnus.com)
15373         * config.guess:  Recognize NeXT.
15374         * config.guess:  Recognize i486-ncr-sysv4.
15375         * Makefile.in (taz):  rm $(TOOL)-$$VER before linking.
15377 Tue Jun 29 12:50:57 1993  Ian Lance Taylor  (ian@cygnus.com)
15379         * Makefile.in (MAKEINFOFLAGS): New variable.
15380         (FLAGS_TO_PASS): Pass MAKEINFO as MAKEINFO MAKEINFOFLAGS.
15381         * build-all.mk, test-build.mk: Pass down --no-split as
15382         MAKEINFOFLAGS when hosted on DOS.  Compile DOS hosted without -g.
15384 Thu Jun 24 13:39:11 1993  Per Bothner  (bothner@rtl.cygnus.com)
15386         * Makefile.in (DEVO_SUPPORT):  Add COPYING COPYING.LIB install.sh.
15388 Wed Jun 23 12:59:21 1993  Per Bothner  (bothner@rtl.cygnus.com)
15390         * Makefile.in (libg++.tar.z):  New rule.
15391         * Makefile.in (taz):  Replace 'configure -rm' by 'make distclean'.
15392         * Makefile.in (taz):  Only do a single chmod.
15394 Fri Jun 18 12:03:10 1993  david d `zoo' zuhn  (zoo at majipoor.cygnus.com)
15396         * install.sh: don't use dirname anymore (replaced with sed usage)
15398 Thu Jun 17 18:43:42 1993  Fred Fish  (fnf@cygnus.com)
15400         * Makefile.in:  Change extension for gzip'd files from '.z' to
15401         '.gz' per new FSF standard usage.
15403 Thu Jun 17 16:58:50 1993  david d `zoo' zuhn  (zoo at majipoor.cygnus.com)
15405         * configure: put quotes around the final value of program_transform_name
15407 Tue Jun 15 16:48:51 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15409         * Makefile.in: new install.sh support; update install-info rules
15411 Wed Jun  9 12:31:34 1993  Ian Lance Taylor  (ian@cygnus.com)
15413         * configure.in: Build diff for crosses, but not for go32 host.
15415         * configure.in: Build gprof only for native, and don't build it
15416         for mips-*-*, rs6000-*-*, or i[34]86-*-sco*.
15418 Mon Jun  7 13:12:11 1993  david d `zoo' zuhn  (zoo at deneb.cygnus.com)
15420         * configure.in: don't build gas,ld,binutils on for *-*-sysv4
15422 Mon Jun  7 11:40:11 1993  Brendan Kehoe  (brendan@lisa.cygnus.com)
15424         * configure.in (host_tools): Add prms.
15426 Fri Jun  4 13:30:42 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15428         * Makefile.in: install gcc, do installation of $(INSTALL_MODULES)
15429         with $(FLAGS_TO_PASS) on the command line
15431         * config.sub: Recognize lynx and lynxos
15433 Fri Jun  4 10:59:56 1993  Ian Lance Taylor  (ian@cygnus.com)
15435         * config.sub: Accept -ecoff*, not just -ecoff.
15437 Thu Jun  3 17:38:54 1993  Ken Raeburn  (raeburn@cambridge.cygnus.com)
15439         * Makefile.in (taz): Use .gz suffix instead of .z.
15440         (binutils.tar.gz, gas+binutils.tar.gz, gas.tar.gz): Fixed target
15441         names.
15443 Thu Jun  3 00:27:06 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15445         * Makefile.in (vault-install): add an 'else true' (for Ultrix)
15447 Wed Jun  2 18:19:16 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15449         * Makefile.in (install-no-fixedincludes):  install gcc last, so
15450         that rebuilds that might happen during 'make install' don't get
15451         bogus gcc include files
15453 Wed Jun  2 16:14:10 1993  Ken Raeburn  (raeburn@cambridge.cygnus.com)
15455         Change from Utah for HPPA support:
15456         * config.guess: Recognize hppa1.x-hp-bsd.
15458 Wed Jun  2 11:53:33 1993  Per Bothner  (bothner@rtl.cygnus.com)
15460         * config.guess:  Add support for Motorola Delta 68k, up to r3v7.
15461         Patch from pot@fly.cnuce.cnr.it (Francesco Potorti`).
15463 Tue Jun  1 17:48:42 1993  Rob Savoye  (rob at darkstar.cygnus.com)
15465         * config.sub: Add support for rom68k and bug boot monitors.
15467 Mon May 31 09:36:37 1993  Jim Kingdon  (kingdon@cygnus.com)
15469         * Makefile.in: Make all-opcodes depend on all-bfd.
15471 Thu May 27 08:05:31 1993  Ian Lance Taylor  (ian@cygnus.com)
15473         * config.guess: Added special check for i[34]86-univel-sysv4*.
15475 Wed May 26 16:33:40 1993  Ian Lance Taylor  (ian@cygnus.com)
15477         * config.guess: For i[34]86-unknown-sysv4 use UNAME_MACHINE for
15478         the processor rather than assuming i486.
15480 Wed May 26 09:40:18 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
15482         * config.guess: Recognize SunOS6 as Solaris3.
15484 Tue May 25 23:03:11 1993  Per Bothner  (bothner@cygnus.com)
15486         * config.guess:  Fix typo.  Avoid #elif (not in K&R 1).
15487         Recognize SunOS 5.* only (and not [6-9].*) as being Solaris2.
15489 Tue May 25 12:44:18 1993  Ian Lance Taylor  (ian@cygnus.com)
15491         * build-all.mk (all-cross): New target for Canadian Cross.
15492         Added Q2 go32 targets.
15493         * test-build.mk: Configure go32 cross sparclite-aout and
15494         mips-idt-ecoff -with-gnu-ld.  Moved build binary directory from
15495         PARTIAL_HOLE_DIRS to BUILD_HOLES_DIRS.
15497 Mon May 24 15:30:06 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15499         * configure.in: fix Alpha GDB typo; also, don't build DejaGnu for
15500         GO32 hosted toolchains
15502 Mon May 24 14:18:41 1993  Rob Savoye  (rob at darkstar.cygnus.com)
15504         * configure: change  so "-exec-prefix" gets passed down rather
15505         than "-exec_prefix" so autoconf generated Makefiles get the
15506         exec_prefix set right.
15508 Fri May 21 10:42:25 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15510         * config.guess: get the Solaris2 minor version number
15512         * Makefile.in: add standards.texi and make-stds.texi to ETC_SUPPORT
15514 Fri May 21 06:20:52 1993  Brendan Kehoe  (brendan@lisa.cygnus.com)
15516         * config.guess: Recognize some Sequent platforms.
15518 Thu May 20 14:33:48 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15520         * Makefile.in: added the vault-install target
15522         * configure.in: actually use the Sun3 makefile fragment that's in
15523         config, also added the release dir to configdirs
15525 Thu May 20 14:19:18 1993  Ken Raeburn  (raeburn@cambridge.cygnus.com)
15527         * Makefile.in (taz): Fix modes on stuff in $(TOOL) dir also.
15529 Tue May 18 20:26:41 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15531         * configure.in: remove some program from Alpha targetted toolchains
15533 Tue May 18 15:23:19 1993  Ken Raeburn  (raeburn@cygnus.com)
15535         * Makefile.in (DISTSTUFFDIRS): Renamed from PROTODIRS.  Add ld and
15536         gprof.
15537         (taz): Run "make diststuff" in those directories instead of "make
15538         proto-dir".  Look for "VERSION=" only at start of line in subdir
15539         Makefile.  Use "gzip -9" for compression.
15540         (TEXINFO_SUPPORT, DIST_SUPPORT, BINUTILS_SUPPORT_DIRS): New vars.
15541         (binutils.tar.z): New target.
15543 Mon May 17 17:01:15 1993  Ken Raeburn  (raeburn@deneb.cygnus.com)
15545         * Makefile.in (taz): Include gpl.texinfo.
15547 Fri May 14 06:48:38 1993  Ken Raeburn  (raeburn@deneb.cygnus.com)
15549         * Makefile.in (setup-dirs): Merged into "taz" target.
15550         (taz): Only do `proto-dir' stuff if a directory is actually needed
15551         for this target.
15553 Wed May 12 13:09:44 1993  Ian Lance Taylor  (ian@cygnus.com)
15555         * Makefile.in (MUNCH_NM): New variable, defined to be $(NM).
15556         (FLAGS_TO_PASS): Pass down MUNCH_NM.
15557         (HOST_CC, HOST_PREFIX, HOST_PREFIX_1): New variables.
15558         (EXTRA_GCC_FLAGS): Pass down HOST_* variables.
15559         (gcc-no-fixedincludes): Correct for current gcc Makefile.
15561 Tue May 11 10:14:25 1993  Fred Fish  (fnf@cygnus.com)
15563         * Makefile.in (make-gdb.tar.Z):  Add configure, config.guess,
15564         config.sub, and move-if-change to gdb testsuite distribution
15565         archive, so the testsuite can be extracted, configured, and
15566         run separately from the gdb distribution.  Blow away the Chill
15567         tests that require a Chill compiled executable, since GNU Chill
15568         is not yet publically available.
15570 Mon May 10 17:22:26 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15572         * test-build.mk: set environment variables in a single command,
15573         instead of a list of assignments and exports
15575         * config.guess: recognize Alpha/OSF1 systems
15577 Mon May 10 14:55:51 1993  K. Richard Pixley  (rich@rtl.cygnus.com)
15579         * configure: Change help message to prefer --options rather than
15580           -options.
15582 Mon May 10 05:58:35 1993  Ken Raeburn  (raeburn@kr-pc.cygnus.com)
15584         * config.sub: Convergent Tech. "miniframe" uses m68010, sez
15585         zippy@ecst.csuchico.edu.
15586         * config.guess: Recognize miniframe.
15588 Sun May  9 17:47:57 1993  Rob Savoye  (rob at darkstar.cygnus.com)
15590         * Makefile.in: Use srcroot to find runtest rather than rootme.
15591         Pass RUNTESTFLAGS and EXPECT down in BASE_FLAGS_TO_PASS.
15593 Fri May  7 14:55:59 1993  Ian Lance Taylor  (ian@cygnus.com)
15595         * test-build.mk: Extensive additions to support building on a
15596         machine other than the host.
15598 Wed May  5 08:35:04 1993  Ken Raeburn  (raeburn@deneb.cygnus.com)
15600         * configure (tooldir): Fix for i386-aix again.
15602 Mon May  3 19:00:27 1993  Per Bothner  (bothner@cygnus.com)
15604         * configure, Makefile.in:  Change definition of $(tooldir)
15605         to match the FSF.
15607 Fri Apr 30 15:55:21 1993  Fred Fish  (fnf@cygnus.com)
15609         * config.guess:  Recognize i[34]86/SVR4.
15611 Fri Apr 30 15:52:46 1993  Steve Chamberlain  (sac@thepub.cygnus.com)
15613         * Makefile.in (all-gdb): gdb depends on sim.
15615 Thu Apr 29 23:30:48 1993  Fred Fish  (fnf@cygnus.com)
15617         * Makefile.in (gdb.tar.Z):  Make prototype gdb testsuite directory
15618         at the same time we make the prototype gdb directory.
15619         * Makefile.in (make-gdb.tar.Z):  Make the testsuite distribution
15620         files at the same time as the gdb base release distribution.
15622 Thu Apr 29 12:50:37 1993  Ian Lance Taylor  (ian@cygnus.com)
15624         * Makefile.in (check): Use individual check targets rather than
15625         DO_X rule.
15626         (check-gcc): Added.
15628 Thu Apr 29 09:50:07 1993  Jim Kingdon  (kingdon@cygnus.com)
15630         * config.sub: Use sysv3.2 not sysv32 for canonical OS
15631         for System V release 3.2.
15633 Thu Apr 29 10:33:22 1993  Ken Raeburn  (raeburn@cambridge.cygnus.com)
15635         * config.sub: Recognize hppaosf.
15636         * configure.in: Do configure ld/binutils/gas for it.
15638 Tue Apr 27 06:25:34 1993  Ken Raeburn  (raeburn@kr-pc.cygnus.com)
15640         * configure (tooldir): Alter syntax used to set this, for systems
15641         where "\$" isn't handled right, like i386-aix.
15643 Thu Apr 22 08:17:35 1993  Ian Lance Taylor  (ian@cygnus.com)
15645         * configure: Pass program-transform-name, not
15646         program_transform_name, to recursive configures.
15648 Thu Apr 22 02:58:21 1993  Ken Raeburn  (raeburn@cygnus.com)
15650         * Makefile.in (gas+binutils.tar.z): New rule for building snapshots
15651         of gas+ld+binutils.
15653 Mon Apr 19 17:41:30 1993  Per Bothner  (bothner@cygnus.com)
15655         * config.guess:  Recognize AIX3.2 as distinct from 3.1.
15657 Sat Apr 17 17:19:50 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15659         * configure.in: rename m88k-motorola-m88kbcs to m88k-motorola-sysv
15661 Tue Apr 13 16:52:16 1993  Brendan Kehoe  (brendan@lisa.cygnus.com)
15663         * Makefile.in (PRMS): Set back to all-prms.
15665 Sat Apr 10 12:04:07 1993  Ian Lance Taylor  (ian@cygnus.com)
15667         * test-build.mk: Pass -with-gnu-as for known MIPS native and MIPS
15668         targets, rather than for MIPS hosts.
15670 Fri Apr  9 13:51:06 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15672         * configure.in: add comment for --with-x default values
15674         * config.guess: handle Motorola Delta88 box for SVR3 and SVR4.
15676         * Makefile.in: add check-* targets for each of the directories in
15677         the tree.  Add a definition of RUNTEST that will use the one we
15678         just built, if it exists.  Pass this down via FLAGS_TO_PASS.
15680 Thu Apr  8 09:21:30 1993  Ian Lance Taylor  (ian@cygnus.com)
15682         * configure.in: Removed obsolete references to bfd_target and
15683         target_makefile_frag.
15685         * build-all.mk: Set assorted targets for Q2.
15686         * config.sub: Recognize z8k-sim and h8300-hms.
15687         * test-build.mk: Really don't pass host to configure.
15688         (HOLES): Added uname.
15690 Wed Apr  7 15:48:19 1993  Ian Lance Taylor  (ian@cygnus.com)
15692         * configure: Handle an empty program-prefix, program-suffix or
15693         program-transform-name correctly.
15695 Tue Apr  6 13:48:41 1993  Ian Lance Taylor  (ian@cygnus.com)
15697         * build-all.mk: -G 8 no longer required for MIPS targets.
15698         * test-build.mk: Don't pass host argument to configure; make it
15699         guess.
15701 Tue Apr  6 10:36:53 1993  Fred Fish  (fnf@cygnus.com)
15703         * Makefile.in (gdb.tar.Z):  Fix for building gzip'd distribution.
15704         * Makefile.in (COMPRESS):  New macro, like GZIP.
15706 Fri Apr  2 09:02:31 1993  Ian Lance Taylor  (ian@cygnus.com)
15708         * test-build.mk: Use -with-gnu-as for mips-sgi-irix4 as well.
15710         * build-all.mk: Set GCC to gcc -O -G 8 for MIPS targets, since gcc
15711         with gas currently defaults to -G 0.
15713 Thu Apr  1 08:25:42 1993  Ian Lance Taylor  (ian@cygnus.com)
15715         * Makefile.in (all-flex): flex depends on byacc.
15717         * build-all.mk: If host not specified, use config.guess.  Pass TAG
15718         to test-build.mk as RELEASE_TAG.
15719         * test-build.mk (configargs): New variable containing arguments to
15720         pass to configure.  Set to -with-gnu-as on mips-dec-ultrix.
15721         (FLAGS_TO_PASS): Pass down RELEASE_TAG.
15723         * config.guess: Use /bin/uname when checking -X argument on SCO,
15724         to avoid invoking GNU uname which doesn't understand -X.
15726         * test-build.mk: Don't use /usr/unsupported/bin/as on AIX.
15728         * configure.in: Build gas for mips-*-*.
15730 Wed Mar 31 21:20:58 1993  K. Richard Pixley  (rich@rtl.cygnus.com)
15732         * Makefile.in (all.normal): insert missing backslash.
15734 Wed Mar 31 12:31:56 1993  Ian Lance Taylor  (ian@cygnus.com)
15736         * build-all.mk: Bump -XNh value to 1500 to match gcc requirements.
15738         * Makefile.in: Complete overhaul to merge many almost identical
15739         targets.
15741 Tue Mar 30 20:17:01 1993  Ken Raeburn  (raeburn@cambridge.cygnus.com)
15743         * Makefile.in (setup-dirs-gdb): Renamed from setup-dirs.
15744         (gdb.tar.Z): Adjusted.
15746         * Makefile.in (setup-dirs, taz): New targets; should be general
15747         enough to adapt for gdb sometime.  Build only .z file.
15748         (gas.tar.z): New target.
15750 Tue Mar 30 10:03:09 1993  Ian Lance Taylor  (ian@cygnus.com)
15752         * build-all.mk: Use CC=cc -Xs on Solaris.
15754 Thu Mar 25 15:14:30 1993  Fred Fish  (fnf@cygnus.com)
15756         * Makefile.in:  Incorporate changes suggested by wilson@cygnus.com
15757         for handling BISON for FSF releases.
15759 Thu Mar 25 06:19:48 1993  Ken Raeburn  (raeburn@kr-pc.cygnus.com)
15761         * configure: Actually implement the change zoo just documented.
15763 Wed Mar 24 13:02:44 1993  david d `zoo' zuhn  (zoo at poseidon.cygnus.com)
15765         * configure: when using config.guess, only set target_alias when
15766         it's not already been set (ie, on the command line)
15768 Mon Mar 22 23:07:39 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15770         * Makefile.in: add installcheck target, set PRMS to install-prms
15772 Sun Mar 21 16:46:12 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15774         * configure: add support for package_makefile_fragment, handle the
15775         case where a directory has a configure.in file but no Makefile.in
15776         more gracefully (with an actual understandable error message, even);
15777         add support for --without (and add this to the usage message); also
15778         explicitly add a --host=${host_alias} to the command line when
15779         config.guess is used
15781 Sun Mar 21 12:11:58 1993  Jim Wilson  (wilson@sphagnum.cygnus.com)
15783         * configure: Must use both --host and --target in recursive calls.
15785 Thu Mar 18 12:31:35 1993  Ian Lance Taylor  (ian@cygnus.com)
15787         * Makefile.in: Change deja-gnu to dejagnu.
15789 Mon Mar 15 15:44:35 1993  Ian Lance Taylor  (ian@cygnus.com)
15791         * configure.in (h8300-*-*, h8500-*-*): Don't build libg++.
15793 Fri Mar 12 18:30:14 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15795         * configure.in: canonicalize all instances to *-*-solaris2*,
15796         also strip out a number of tools to not build for go32 host
15798 Wed Mar 10 12:08:27 1993  K. Richard Pixley  (rich@rtl.cygnus.com)
15800         * config.guess: add GPL.
15802         * Makefile.in, config.guess, config.sub, configure: bump
15803           copyrights to 93.
15805 Wed Mar 10 07:12:48 1993  Ian Lance Taylor  (ian@cygnus.com)
15807         * Makefile.in (do-info): Removed obsolete check for existence of
15808         localenv file.
15810         * Makefile.in (MAKEOVERRIDES): Define to be empty.
15812 Wed Mar 10 03:11:56 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15814         * Makefile.in: a couple of 'else true' for decstation,
15815         support for TclX
15817         * configure.in: configure tclX too; don't remove Tk on RS/6000 anymore
15819 Tue Mar  9 16:06:12 1993  K. Richard Pixley  (rich@cygnus.com)
15821         * Makefile.in (setup-dirs): change invocation of make to $(MAKE).
15823 Mon Mar  8 14:52:11 1993  Ken Raeburn  (raeburn@cambridge)
15825         * config.guess: Recognize i386-ibm-aix (PS/2).
15826         * configure.in: Use config/mh-aix386 file for it.
15828 Mon Mar  8 11:12:43 1993  Ian Lance Taylor  (ian@cygnus.com)
15830         * Makefile.in (GCC_FOR_TARGET): Eliminated definition; use
15831         CC_FOR_TARGET instead.
15832         (BASE_FLAGS_TO_PASS): Pass GCC_FOR_TARGET=$(CC_FOR_TARGET).
15834 Wed Mar  3 16:00:28 1993  Steve Chamberlain  (sac@ok.cygnus.com)
15836         * Makefile.in: Add sim to list of directories sent with gdb
15838 Wed Mar  3 11:42:39 1993  Ken Raeburn  (raeburn@cygnus.com)
15840         * configure.in: Put back mips-dec-bsd* case.
15842 Tue Mar  2 21:15:58 1993  Fred Fish  (fnf@cygnus.com)
15844         (Ultrix 2.2 support from Michael Rendell <michael@mercury.cs.mun.ca>)
15845         * configure.in (vax-*-ultrix2*):  Add Ultrix 2.2 triplet.
15846         * config.guess:  Change 'VAX*:ULTRIX:*:*' to 'VAX*:ULTRIX*:*:*'.
15848 Tue Mar  2 18:11:03 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15850         * configure.in: remove no-op mips-dec-bsd* in "case $target"
15852         * Makefile.in (dir.info): only run gen-info-dir if it exists,
15853         (install-info): install dir.info only if it exists,
15854         (all-expect, install-expect): pass along X11_FLAGS_TO_PASS
15856 Tue Mar  2 09:01:30 1993  Ken Raeburn  (raeburn@cygnus.com)
15858         * configure.in: For vms target, skip bfd, ld, binutils.  Do build
15859         gas for mips-dec-bsd.
15861 Tue Mar  2 08:35:24 1993  Ian Lance Taylor  (ian@cygnus.com)
15863         * configure (makesrcdir): If ${srcdir} is relative and not ".",
15864         and ${subdir} is not ".", set makesrcdir based on ${invsubdir}.
15866 Tue Feb 23 14:18:28 1993  Mike Werner  (mtw@poseidon.cygnus.com)
15868         * configure.in: Added "dejagnu" to hosttools list.
15870 Mon Feb 22 23:28:38 1993  Per Bothner  (bothner@rtl.cygnus.com)
15872         * config.sub, configure.in, config.guess:  Add support
15873         for Bosx, an AIX variant from Bull.
15874         Patches from F.Pierresteguy@frcl.bull.fr.
15876 Sun Feb 21 11:15:22 1993  Mike Werner  (mtw@poseidon.cygnus.com)
15878         * devo/dejagnu: Initial creation of devo/dejagnu.
15879         Migrated dejagnu testcases and support files for testing software
15880         tools to reside as subdirectories, currently called "testsuite",
15881         within the directory of the software tool.  Migrated all programs,
15882         support libraries, etc. beloging to dejagnu proper from
15883         devo/deja-gnu to devo/dejagnu.  These files were moved "as is"
15884         with no modifications.  The changes to these files which will
15885         allow them to configure, build, and execute properly will be made
15886         in a future update.
15888 Fri Feb 19 20:19:39 1993  Brendan Kehoe  (brendan@lisa.cygnus.com)
15890         * Makefile.in: Change send_pr to send-pr.
15891         * configure.in: Likewise.
15892         * send_pr: Renamed directory to send-pr.
15894 Fri Feb 19 19:00:13 1993  Per Bothner  (bothner@cygnus.com)
15896         * Makefile.in:  Add some extra semi-colons (needed if SHELL=bash).
15898 Fri Feb 19 00:59:33 1993  John Gilmore  (gnu@cygnus.com)
15900         * README:  Update for gdb-4.8 release.
15901         * Makefile.in (gdb.tar.Z):  Add texinfo/tex3patch.  Build
15902         gdb-xxx.tar.z (gzip'd) file also.
15904 Thu Feb 18 09:16:17 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15906         * Makefile.in: make all-diff depend on all-libiberty
15908 Tue Feb 16 16:06:31 1993  K. Richard Pixley  (rich@cygnus.com)
15910         * config.guess: add vax-ultrix in the spirit of mips-ultrix.
15912 Tue Feb 16 05:57:15 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15914         * configure.in, Makefile.in: add hello, tar, gzip, recode, indent
15916 Tue Feb 16 00:58:20 1993  John Gilmore  (gnu@cygnus.com)
15918         * Makefile.in (DEVO_SUPPORT):  Remove etc directory
15919         (ETC_SUPPORT):  Only add the files GDB wants from etc/.
15920         (gdb.tar.Z):  Use ETC_SUPPORT.  Use byacc when building the file.
15922 Thu Feb 11 20:14:28 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15924         * Makefile.in:  makeinfo binary is in a new location
15926 Tue Feb  9 12:42:27 1993  Ian Lance Taylor  (ian@cygnus.com)
15928         * config.sub: Accept -ecoff as an OS.
15930         * Makefile.in: Various changes to eliminate a level of make
15931         recursion and reduce the required command line length.
15932         (BASE_FLAGS_TO_PASS): New variable holding flags passed to all
15933         sub-makes.
15934         (EXTRA_HOST_FLAGS, EXTRA_TARGET_FLAGS, EXTRA_GCC_FLAGS): New
15935         variables holding settings for specific sub-makes.
15936         (FLAGS_TO_PASS, TARGET_FLAGS_TO_PASS, GCC_FLAGS_TO_PASS): Rewrote
15937         in terms of BASE_FLAGS_TO_PASS.
15938         (TARGET_LIBS): New variable listing directories which use
15939         TARGET_FLAGS_TO_PASS.
15940         (subdir_do): Eliminated.
15941         (do-*): New set of targets to replace subdir_do.
15942         (various): All targets which used subdir_do now depend on do-*.
15943         (local-clean): Renamed from do_clean.
15944         (local-distclean): New target, dependency of distclean and
15945         realclean.
15946         (install-info): Don't create directories.  Depend on dir.info
15947         rather than calling make recursively.
15948         (install-dir.info): Eliminated.
15949         (install-info-dirs): Create all info directories here.
15950         (dir.info): Depend upon do-install-info.
15952         * test-build.mk (HOLES): Added false.
15954 Sat Feb  6 14:05:09 1993  Per Bothner  (bothner@rtl.cygnus.com)
15956         * config.guess:  Recognize BSDI and BSDJ (Jolitz 386bsd).
15958 Thu Feb  4 20:49:18 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15960         * Makefile.in (info): remove dependency on all-texinfo.  The
15961         problem was really in texinfo/C, not at this level.
15963 Thu Feb  4 13:38:41 1993  Ian Lance Taylor  (ian@cygnus.com)
15965         * Makefile.in (info): Added dependency on all-texinfo (PR 2112).
15967 Thu Feb  4 01:50:53 1993  John Gilmore  (gnu@cygnus.com)
15969         * Makefile.in (make-gdb.tar.Z):  Change BISON to 'bison -y' for
15970         GDB releases.
15972 Wed Feb  3 17:22:16 1993  Ken Raeburn  (raeburn@cambridge.cygnus.com)
15974         * configure: Include srcdir in message about target of link not
15975         being found.  Don't convert `-' to `_' in `with' options being
15976         passed to subdirs.
15978 Tue Feb  2 18:57:59 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15980         * configure.in: add uudecode to host_tools
15982         * Makefile.in: added {all,install}-uudecode targets, added them to
15983         the appropriate lists
15985 Tue Feb  2 11:45:53 1993  Ian Lance Taylor  (ian@cygnus.com)
15987         * Makefile.in (all-gcc): Added dependency on all-gas.
15989         * configure.in (mips-*-*): Build ld and binutils.
15991 Mon Feb  1 12:35:41 1993  K. Richard Pixley  (rich@rtl.cygnus.com)
15993         * configure: check return code from mkdir, print error message and
15994           exit on failure.
15996 Sat Jan 30 16:40:28 1993  John Gilmore  (gnu@cygnus.com)
15998         * Makefile.in (make-gdb.tar.Z):  New location for texinfo.tex.
16000 Thu Jan 28 15:09:59 1993  Ian Lance Taylor  (ian@cygnus.com)
16002         * test-build.mk (HOLES): Added tar, cpio and uudecode.
16004 Wed Jan 27 16:50:32 1993  Jim Wilson  (wilson@sphagnum.cygnus.com)
16006         * config.sub (h8500):  Recognize this as a cpu type.
16008 Sat Jan 23 20:32:01 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16010         * configure: source directory missing is no longer a warning
16012         * configure.in: recognize irix[34]* instead of irix[34]
16014         * Makefile.in: define and pass down X11_LIB
16016 Sat Jan 23 13:49:40 1993  Per Bothner  (bothner@cygnus.com)
16018         * guess-systype: Renamed to ...
16019         * config.guess:  ... by popular request.
16020         * configure.in, Makefile.in:  Update accordingly.
16022 Thu Jan 21 12:20:55 1993  Per Bothner  (bothner@cygnus.com)
16024         * guess-systype:  Patches from John Eaton <jwe@che.utexas.edu>:
16025         + Add Convex, Cray/Unicos, and Encore/Multimax support.
16026         + Execute ./dummy instead of assuming . is in PATH.
16028 Tue Jan 19 17:18:06 1993  Per Bothner  (bothner@cygnus.com)
16030         * guess-systype:  New shell script.  Attempts to guess the
16031         canonical host name of the executing host.
16032         Only a few hosts are supported so far.
16033         * configure:  Call guess-systype if no host is specified.
16035 Tue Jan 19 08:26:07 1993  Ian Lance Taylor  (ian@cygnus.com)
16037         * Makefile.in (gcc-no-fixedincludes): Made to work with current
16038         gcc Makefile.
16041 Fri Jan 15 10:27:02 1993  Ian Lance Taylor  (ian@cygnus.com)
16043         * Makefile.in (GCC_FLAGS_TO_PASS): New variable.
16044         (all-gcc, install-gcc, subdir_do): Use it.
16046 Wed Jan 13 17:06:45 1993  Jim Wilson  (wilson@sphagnum.cygnus.com)
16048         * Makefile.in: Rename uninstalled gcc driver from gcc to xgcc.
16050 Wed Jan  6 20:29:16 1993  Mike Werner  (mtw@rtl.cygnus.com)
16052         * Makefile.in: Removed explicit setting of SUBDIRS. SUBDIRS is now
16053           set exclusively by configure, using configure.in .
16055 Wed Jan  6 13:44:11 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16057         * test-build.mk: set $PATH for all builds
16059         * Makefile.in: pass TARGET_FLAGS_TO_PASS for xiberty and libm
16061 Wed Jan  6 11:02:10 1993  Fred Fish  (fnf@cygnus.com)
16063         * Makefile.in (GCC_FOR_TARGET):  Supply a default that matches
16064         the one used in gcc/Makefile.in, so that a null expansion doesn't
16065         override the one needed to build gcc with a native cc.
16068 Tue Jan  5 07:55:12 1993  Ken Raeburn  (raeburn@cambridge.cygnus.com)
16070         * configure: Accept -with arguments.
16072 Sun Jan  3 15:15:09 1993  Steve Chamberlain  (sac@thepub.cygnus.com)
16074         * Makefile.in: added h8300sim
16076 Tue Dec 29 15:06:00 1992  Ian Lance Taylor  (ian@cygnus.com)
16078         * build-all.mk: If canonhost is i386-unknown-sco3.2v4, change it
16079         to i386-sco3.2v4.  Set TARGETS and CFLAGS for i386-sco3.2v4.
16080         (all-cygnus, native, build-cygnus): Make
16081         $(canonhost)-stamp-3stage-done, not $(host)....
16082         * test-build.mk (stamp-3stage-compared): Use tail +10c for
16083         i386-sco3.2v4.  Added else true to if command.
16085 Mon Dec 28 12:08:56 1992  Ken Raeburn  (raeburn@cygnus.com)
16087         * config.sub: (from FSF) Sequent uses a BSD-like OS.
16089 Mon Dec 28 08:32:06 1992  Minh Tran-Le  (mtranle@paris.intellicorp.com)
16091         * configure.in (i[34]86-*-isc*): added; uses mh-sysv.
16093 Thu Dec 24 17:26:24 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16095         * configure.in: don't remove binutils from Solaris builds
16097 Thu Dec 24 14:08:38 1992 david d`zoo' zuhn  (zoo@cygnus.com)
16099         * Makefile.in: get rid of earlier definitions for *clean,
16100         also handle the recursive info rule better
16102 Thu Dec 24 12:40:21 1992  Per Bothner  (bothner@rtl.cygnus.com)
16104         * Makefile.in (mostlyclean, distclean, realclean):  Fix to
16105         do more-or-less the right thing.
16107 Wed Dec 16 10:25:31 1992  Ian Lance Taylor  (ian@cygnus.com)
16109         * Makefile.in: Add lines defining CC and CXX, and use CXX rather
16110         than gcc in definitions of CXX_FOR_BUILD and CXX_FOR_TARGET.
16112 Tue Dec 15 00:34:32 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16114         * Makefile.in: change all $(host_cpu)-$(host_vendor)-$(host_os) to
16115         $(host_canonical).
16117         * configure.in: split the configdirs list into 4 categories (native
16118         v. cross, library v. tool) and handle the cross-only and native-
16119         only in more reasonable (and correct!) way.
16121 Mon Dec 14 17:04:22 1992  Stu Grossman  (grossman at cygnus.com)
16123         * configure.in (hppa*-*-*):  Don't remove bfd and gdb from
16124         configdirs anymore.
16126 Sun Dec 13 00:37:26 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16128         * Makefile.in: extensive cleanup::  removed all of the explicit
16129         clean-* targets, collapsed many wrappers around subdir_do into
16130         one, added additional targets to satisfy standards.texi, deleted
16131         some old targets, some changes for consistency
16133 Fri Dec 11 20:18:02 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16135         * configure.in: handle some programs as cross-only, and others as
16136         native only
16138         * test-build.mk: handle partial holes in a more generic manner
16140         * Makefile.in: m4 depends on libiberty
16142 Thu Dec  3 21:52:11 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16144         * configure.in: add m4, textutils, fileutils, sed, shellutils,
16145         time, wdiff, and find to configdirs
16147         * Makefile.in: all, clean, and install rules for the new programs
16148         added to configure.in
16150 Mon Nov 30 14:54:34 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16152         * configure.in: use mh-sun for all *-sun-* hosts
16154 Fri Nov 27 18:35:54 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16156         * Makefile.in: define flags for X11 include files and library file
16157         locations, pass them down to the programs that need this info
16159         * build-all.mk: added a 'native' target, to 3stage the native toolchain
16161 Sun Nov 22 18:59:13 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16163         * configure.in: start building libg++ for HP-UX targets
16165 Wed Nov 18 19:33:11 1992  John Gilmore  (gnu@cygnus.com)
16167         * README:  Update references to files moved into etc/.
16169 Sun Nov 15 09:36:08 1992  Fred Fish  (fnf@cygnus.com)
16171         * config.sub (i386sol2, i486sol2):  i[34]86-unknown-solaris2.
16172         * configure.in (i[34]86-*-solaris2*):  Use config/mh-sysv4.
16174 Thu Nov 12 08:50:42 1992  Ian Lance Taylor  (ian@cygnus.com)
16176         * configure: accept dash as well as underscore in long option
16177         names for FSF compatibility.
16179 Wed Nov 11 08:04:37 1992  Ian Lance Taylor  (ian@cygnus.com)
16181         * config.sub: added -sco3.2v4 support from FSF.
16183 Sun Nov  8 21:14:30 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16185         * configure.in: expand the section that adds or removes
16186         directories from the list of programs to build, to handle native
16187         vs. cross in addition to host v. native
16189 Sat Nov  7 18:52:27 1992  Per Bothner  (bothner@rtl.cygnus.com)
16191         * Makefile.in:  Replace C++ in macro names with CXX.
16192         This is less likely to break ...
16194 Sat Nov  7 15:16:58 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16196         * test-build.mk: add -w to GNU_MAKE
16198 Fri Nov  6 23:10:37 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16200         * config.sub: remove 'sparc'-->'sparc-sun' default transformation,
16201         add 'sparc' to list of recognized cpus.  This needed to make
16202         'sparc-aout' expand to 'sparc-unknown-aout' instead of 'sparc-sun-aout'.
16203         Delete some redundant ose68 variants.  Recognize -wrs as an os,
16204         then changes that into $CPU-wrs-vxworks.
16206         * configure.in: remove most references to gdbtest, regularize
16207         target based program removal
16209         * test-build.mk: import from p3 tree (many fixes and changes)
16211 Fri Nov  6 20:59:00 1992  david d `zoo' zuhn  (zoo@cygnus.com)
16213         * Makefile.in: added rules to handle tcl, tk, and expect
16215         * configure.in: handle those directories if they exist
16217 Thu Nov  5 14:35:41 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16219         * config.sub: removed bogus hppabsd and hppahpux names, since
16220         "hppa" is not a valid cpu (hppa1.1 or hppa1.0 are, though)
16222 Thu Oct 29 00:12:41 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16224         * Makefile.in: all-gcc now depends on all-binutils.  all-libg++
16225         depends upon all-xiberty
16227         * Makefile.in: changes from p3, including:
16229         Thu Oct  8 15:00:17 1992  Ian Lance Taylor  (ian@cygnus.com)
16231         * Makefile.in (XTRAFLAGS): include newlib directories if
16232         newlib/Makefile exists, rather than if host != target.
16234         Fri Sep 25 13:41:52 1992  Ian Lance Taylor  (ian@cygnus.com)
16236         * Makefile.in: added -nostdinc to XTRAFLAGS if we are using gcc
16237         from the same source tree and not building a cross-compiler.  This
16238         matters for the libg++ configuration if reconfiguring a tree that
16239         has already been installed.
16241         Thu Sep 10 10:35:51 1992  Ian Lance Taylor  (ian@cygnus.com)
16243         * Makefile.in: added -I for newlib/targ-include to XTRAFLAGS, to
16244         pick up the machine and system specific header files.
16246         * Makefile.in: added AS_FOR_TARGET, passed down in
16247         TARGET_FLAGS_TO_PASS.  Added CC_FOR_BUILD, which is intended to be
16248         the C compiler to use to create programs which are run in the
16249         build environment, set it to default to $(CC), and passed it down
16250         in FLAGS_TO_PASS and TARGET_FLAGS_TO_PASS.
16252         Mon Sep  7 22:34:42 1992  Ian Lance Taylor  (ian@cirdan.cygnus.com)
16254         * Makefile.in: add $(host) = $(target) tests back to *_FOR_TARGET.
16255         We need them for unusual native builds, like systems without
16256         ranlib.
16258         * configure: also define $(host_canonical) and
16259         $(target_canonical), which are the full, canonical names for the
16260         given host and target
16262 Sun Nov  1 16:38:17 1992  Per Bothner  (bothner@cygnus.com)
16264         * Makefile.in:  Added separate definitions for C++.
16266 Fri Oct 30 11:37:52 1992  Fred Fish  (fnf@cygnus.com)
16268         * configure.in (configdirs):  Add deja-gnu.
16270 Fri Oct 23 00:39:18 1992  John Gilmore  (gnu@cygnus.com)
16272         * README:  Update for configure.texi and gdb-4.7 release.
16274 Wed Oct 21 21:54:27 1992  John Gilmore  (gnu@cygnus.com)
16276         * Makefile.in:  Move "all" target to top of file.
16277         Previously, first target was ".PHONY" which caused BSD4.4 make
16278         to build .PHONY when make was run without arguments.
16280 Mon Oct 19 01:17:54 1992  John Gilmore  (gnu@cygnus.com)
16282         * Makefile.in:  Add COPYING.LIB to GDB releases, now that there's
16283         Library-copylefted code in libiberty.
16285 Tue Oct 13 01:22:32 1992  John Gilmore  (gnu@cygnus.com)
16287         * config.sub:  Replace m68kmote with plain old m68k.
16289 Fri Oct  9 03:14:24 1992  John Gilmore  (gnu@cygnus.com)
16291         * Makefile.in:  Remove space from blank line, avoid Make complaints.
16293 Thu Oct  8 18:41:45 1992  Ken Raeburn  (raeburn@cygnus.com)
16295         * config.sub: Complain if no argument is given.  Added support for
16296         386bsd as OS and target alias.
16298 Thu Oct  8 15:07:22 1992  Ian Lance Taylor  (ian@cygnus.com)
16300         * Makefile.in (XTRAFLAGS): include newlib directories if
16301         newlib/Makefile exists, rather than if host != target.
16303 Mon Oct  5 03:00:09 1992  Mark Eichin  (eichin at tweedledumber.cygnus.com)
16305         * config.sub: recognize sparclite-wrs-vxworks.
16307         * Makefile.in (install-xiberty): added *-xiberty make rules (from
16308         p3.) Added clean-xiberty to clean.
16310 Thu Oct  1 17:59:19 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16312         * configure.in: use *-*-* instead of nested cases for host and target
16314 Tue Sep 29 14:11:18 1992  Ian Lance Taylor  (ian@cygnus.com)
16316         * Makefile.in: added -nostdinc to XTRAFLAGS if we are using gcc
16317         from the same source tree and not building a cross-compiler.  This
16318         matters for the libg++ configuration if reconfiguring a tree that
16319         has already been installed.
16321 Sep 20 08:53:10 1992  Fred Fish  (fnf@cygnus.com)
16323         * config.sub (i486v/i486v4):  Merge in from FSF version.
16325 Fri Sep 18 00:32:00 1992  Mark Eichin  (eichin@cygnus.com)
16327         * configure: only set PWD if it is already set.
16329 Thu Sep 17 23:05:53 1992  Mark Eichin  (eichin@cygnus.com)
16331         * configure: just set PWD=`pwd` at the top, since Ultrix sh
16332         doesn't have unset and all success paths (and most error paths)
16333         out set it anyway. (Note: should change all uses of ${PWD=`pwd`}
16334         to just ${PWD} to avoid confusion.)
16336 Tue Sep 15 16:00:54 1992  Ian Lance Taylor  (ian@cygnus.com)
16338         * configure: always set $(tooldir) to $(libdir)/$(target_alias),
16339         even for a native compilation.
16341 Tue Sep 15 02:22:56 1992  John Gilmore  (gnu@cygnus.com)
16343         Changes to make the gdb.tar.Z rule work better.
16345         * Makefile.in (GDB_SUPPORT_DIRS):  Add opcodes.
16346         (DEVO_SUPPORT):  Add configure.texi.
16347         (bfd-ilrt.tar.Z):  Remove ancient rule.
16349 Thu Sep 10 10:43:19 1992  Ian Lance Taylor  (ian@cygnus.com)
16351         * Makefile.in: added -I for newlib/targ-include to XTRAFLAGS, to
16352         pick up the machine and system specific header files.
16354         * configure.in, config.sub: added new target m68010-adobe-scout,
16355         with alias of adobe68k.  Changed configure.in to check for
16356         -scout before -sco* to avoid a false match.
16358         * Makefile.in: added AS_FOR_TARGET, passed down in
16359         TARGET_FLAGS_TO_PASS.  Added CC_FOR_BUILD, which is intended to be
16360         the C compiler to use to create programs which are run in the
16361         build environment, set it to default to $(CC), and passed it down
16362         in FLAGS_TO_PASS and TARGET_FLAGS_TO_PASS.
16364 Wed Sep  9 12:21:42 1992  Ian Lance Taylor  (ian@cygnus.com)
16366         * Makefile.in: added TARGET_FLAGS_TO_PASS, CC_FOR_TARGET,
16367         AR_FOR_TARGET, RANLIB_FOR_TARGET, NM_FOR_TARGET.  Pass
16368         TARGET_FLAGS_TO_PASS, which defines CC, AR, RANLIB and NM as the
16369         FOR_TARGET variants, to newlib and libg++.
16371 Tue Sep  8 17:28:30 1992  Ken Raeburn  (raeburn@cambridge.cygnus.com)
16373         * Makefile.in (all-gas, all-gdb): Require all-opcodes to be built
16374         first.
16376 Wed Sep  2 02:50:05 1992  John Gilmore  (gnu@cygnus.com)
16378         * config.sub:  Accept `elf' as an environment.
16380 Tue Sep  1 15:48:30 1992  Steve Chamberlain  (sac@thepub.cygnus.com)
16382         * Makefile.in (all-opcodes):  cd into the right directory
16384 Sun Aug 30 21:12:11 1992  Ian Lance Taylor  (ian@cygnus.com)
16386         * configure: added -program_transform_name option, used as
16387         argument to sed when installing programs.
16388         configure.texi: added documentation for -program_prefix,
16389         -program_suffix and -program_transform_name.
16391 Thu Aug 27 21:59:44 1992  John Gilmore  (gnu@cygnus.com)
16393         * config.sub:  Accept i486 where i386 ok.
16395 Thu Aug 27 13:04:42 1992  Brendan Kehoe  (brendan@rtl.cygnus.com)
16397         * config.sub: accept we32k
16399 Mon Aug 24 14:05:14 1992  Ian Lance Taylor  (ian@cygnus.com)
16401         * config.sub, configure.in: accept OSE68000 and OSE68k.
16403         * Makefile.in: don't create all directories for ``make install'';
16404         let the subdirectories create the ones they need.
16406 Tue Aug 11 23:13:17 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16408         * COPYING: new file, GPL v2
16410 Tue Aug  4 01:12:43 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16412         * Makefile.in: use the new gen-info-dir, which needs a template
16413         argument (which also lives in texinfo)
16415         * configure.texi, standards.texi: fix INFO-DIR-ENTRY
16417 Mon Aug  3 00:34:17 1992  Fred Fish  (fnf@cygnus.com)
16419         * config.sub (ncr3000):  Change i386 to i486.
16421 Thu Jul 23 00:12:17 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16423         * Makefile.in: add install-rcs, install-grep to
16424         install-no-fixedincludes, removed install-bison and install-libgcc
16426 Tue Jul 21 01:01:50 1992  david d `zoo' zuhn (zoo@cygnus.com)
16428         * configure.in: grab the HPUX makefile fragment if on HPUX
16430 Mon Jul 20 11:02:09 1992  D. V. Henkel-Wallace  (gumby@cygnus.com)
16432         * Makefile.in: eradicate bison spoor (ditto libgcc).
16433          configure.in: recognise m68{k,000}-ericsson-OSE.
16434          es1800 is alias for m68k-ericsson-OSE
16436 Sun Jul 19 17:49:02 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16438         * configure.in: rearrange the parts that remove programs from
16439         configdirs, based now on HOST==TARGET or by canonical triple.
16441 Fri Jul 17 22:52:49 1992  K. Richard Pixley  (rich@rtl.cygnus.com)
16443         * test-build.mk: recurse explicitly with -f test-build.mk when
16444           appropriate.  predicate stage3 and comparison on the existence
16445           of gcc.  That is, if gcc isn't around, we aren't three-staging.
16446           On very clean, also remove ...stamp-co.  Build in-place before
16447           doing other builds.
16449 Thu Jul 16 18:33:09 1992  Steve Chamberlain  (sac@thepub.cygnus.com)
16451         * Makefile.in, configure.in: add tgas
16453 Thu Jul 16 16:05:28 1992  K. Richard Pixley  (rich@rtl.cygnus.com)
16455         * Makefile.in: a number of changes merged in from progressive.
16457         * configure.in: add libm.
16459         * .cvsignore: ignore some stuff that comes from test-build.mk.
16461 Tue Jul  7 00:24:52 1992  Fred Fish  (fnf@cygnus.com)
16463         * config.sub:  Add es1800 (m68k-ericsson-es1800).
16465 Tue Jun 30 20:24:41 1992  D. V. Henkel-Wallace  (gumby@cygnus.com)
16467         * configure: Add program_suffix (parallel to program_prefix)
16468         * Makefile.in: adjust directory-creating script for losing decstation
16470 Mon Jun 22 23:43:48 1992  Per Bothner  (bothner@cygnus.com)
16472         * configure:  Minor $subdir-related fixes.
16474 Mon Jun 22 18:30:26 1992  Steve Chamberlain  (sac@thepub.cygnus.com)
16476         * configure: fix various problems with propogating
16477         makefile_target_frag in subdirs.
16478         * configure.in: config libgcc if its there
16480 Fri Jun 19 15:19:40 1992  Stu Grossman  (grossman at cygnus.com)
16482         * config.sub:  HPPA merge.
16484 Sun Jun 14 10:29:19 1992  John Gilmore  (gnu at cygnus.com)
16486         * Makefile.in:  Replace all-bison with all-byacc in all
16487         dependency lines for other tools (which now use byacc).
16489 Fri Jun 12 22:21:57 1992  John Gilmore  (gnu at cygnus.com)
16491         * config.sub:  Add sun4sol2 => sparc-sun-solaris2.
16493 Thu Jun  4 12:07:32 1992  Mark Eichin  (eichin@cygnus.com)
16495         * Makefile.in: make gprof rules similar to byacc rules (instead of
16496         vestigal $(unsubdir) that didn't work...)
16498 Thu Jun  4 00:37:05 1992  Per Bothner  (bothner@rtl.cygnus.com)
16500         * config.sub:  Add support for Linux.
16501         * Makefile.in:  Use $(FLAGS_TO_PASS) more consistently
16502         (at least for libg++).
16504 Tue Jun 02 20:03:00 1992  david d `zoo' zuhn (zoo@cygnus.com)
16506         * configure.texi: fix doc for the -nfp option to configure
16508 Tue Jun  2 17:20:52 1992  Michael Tiemann  (tiemann@cygnus.com)
16510         * Makefile.in (all-binutils): ar needs flex, so depend on all-flex.
16512 Sun May 31 15:04:08 1992  Mark Eichin  (eichin at cygnus.com)
16514         * config.sub: changed [^-]+ to [^-][^-]* so that it works under
16515         Sun sed. (BSD 4.3 sed doesn't handle [^-]+ either.)
16516         * configure.in: added solaris* host_makefile_frag hook.
16518 Sun May 31 01:10:34 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16520         * config.sub: changed recognition of m68000 so that various
16521         m68k types can be specified via m680[01234]0
16523 Sat May 30 21:01:06 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16525         * config.sub (basic_machine): fix sed so that '-foo' isn't
16526         completely substituted out while .+'-foo' loses the '-foo'
16528 Wed May 27 23:18:52 1992  Michael Tiemann  (tiemann@rtl.cygnus.com)
16530         * config.sub ($os): Add -aout.
16532 Fri May 22 14:00:02 1992  Per Bothner  (bothner@cygnus.com)
16534         * configure:  If host_makefile_frag is absolute, don't
16535         prefix ${invsubdir} (relevant to libg++ auto-configure).
16537 Thu May 21 18:00:09 1992  Michael Tiemann  (tiemann@rtl.cygnus.com)
16539         * Makefile.in (tooldir): Define it.
16540         (all-ld): Depend on all-flex.
16542 Sun May 10 21:45:59 1992  Per Bothner  (bothner@rtl.cygnus.com)
16544         * Makefile.in (check):  Fix libg++ special case.
16546 Fri May  8 08:31:41 1992  K. Richard Pixley  (rich@cygnus.com)
16548         * configure: do not bury `pwd` into config.status, thus do fewer
16549           pwd's.
16551         * configure: print the "Building in" message only when building in
16552           other than "." AND verbose.
16554         * configure: remove -s, rework -v to better accomodate guested
16555           configures.
16557         * standards.texi: updated to 3 may, fixed librid <-> libdir typo.
16559 Fri May  1 18:00:50 1992  K. Richard Pixley  (rich@cygnus.com)
16561         * Makefile.in: macroize flags passed on recursion.  remove
16562           fileutils.
16564 Thu Apr 30 08:56:20 1992  K. Richard Pixley  (rich@cygnus.com)
16566         * configure: get makesrcdir right for subdirs deeper than 1.
16568         * Makefile.in: pass INSTALL, INSTALL_DATA, INSTALL_PROGRAM on
16569           install.
16571 Fri Apr 24 15:51:51 1992  K. Richard Pixley  (rich@cygnus.com)
16573         * Makefile.in: don't print subdir_do or recursion lines.
16575 Fri Apr 24 15:22:04 1992  K. Richard Pixley  (rich@cygnus.com)
16577         * standards.texi: added menu item.
16579         * Makefile.in: build and install standards.info.
16581         * standards.texi: new file.
16583 Wed Apr 22 18:06:55 1992  K. Richard Pixley  (rich@rtl.cygnus.com)
16585         * configure: test for and move config.status pieces from
16586           ${subdir}/.
16588 Wed Apr 22 14:38:34 1992  Fred Fish  (fnf@cygnus.com)
16590         * configure:  Test for existance of files before trying to mv
16591         them, to avoid numerous non-existance messages.
16593 Tue Apr 21 12:31:33 1992  K. Richard Pixley  (rich@cygnus.com)
16595         * configure: correct final line of config.status.
16597         * configure: patch from eggert.  Avoids a protection problem if
16598           the original Makefile.in is read only.
16600         * configure: use move-if-change from gcc to create config.status.
16601           Some makefiles depend on config.status to tell if a directory
16602           has been reconfigured for a different host.  This change
16603           prevents those directories from remaking everything in the case
16604           where the reconfig was only intended to rebuild a Makefile.
16606         * configure: test for config.sub with "config.sub sun4" rather
16607           than "config.sub ${host_alias}".  Otherwise we can't tell a bad
16608           host alias from a missing config.sub.
16610 Mon Apr 20 18:16:36 1992  K. Richard Pixley  (rich@rtl.cygnus.com)
16612         * Makefile.in: explicitly pass CFLAGS on recursion. no longer pass
16613           MINUS_G (this can be done with CFLAGS).  Default CFLAGS to -g.
16615 Fri Apr 17 18:27:51 1992  Per Bothner  (bothner@cygnus.com)
16617         * configure: mkdir ${subdir} as needed.
16619 Wed Apr 15 17:37:22 1992  K. Richard Pixley  (rich@cygnus.com)
16621         * Makefile.in,configure.in: added autoconf.
16623 Wed Apr 15 17:27:34 1992  K. Richard Pixley  (rich@rtl.cygnus.com)
16625         * Makefile.in: no longer pass against on recursion.
16627         * Makefile.in: added .NOEXPORT: so that stray makefile_frag
16628           definitions are not inherited.
16630         * configure: correct makesrcdir when subdir is .
16632 Tue Apr 14 11:56:09 1992  Per Bothner  (bothner@cygnus.com)
16634         * configure:  Add support for 'subdirs' variable, which is
16635         like 'configdirs', except that configure doesn't re-invoke
16636         itself for subdirs, it just creates a Makefile for each subdir.
16637         * configure.texi:  Document subdirs.
16639 Mon Apr 13 18:50:16 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16641         * configure.in: added flex to configdirs
16643 Mon Apr 13 18:43:55 1992  K. Richard Pixley  (rich@cygnus.com)
16645         * Makefile.in: remove clean-stamps from clean.
16647 Sat Apr 11 03:52:03 1992  John Gilmore  (gnu at cygnus.com)
16649         * configure.in:  Add gdbtest to configdirs.
16651 Fri Apr 10 23:11:49 1992  Fred Fish  (fnf@cygnus.com)
16653         * Makefile.in (MINUS_G):  Add macro, default to -g, pass on
16654         to recursive makes.
16655         * configure.in:  Recognize new ncr3000 config.
16657 Wed Apr  8 23:08:12 1992  K. Richard Pixley  (rich@cygnus.com)
16659         * Makefile.in, configure.in: removed references to gdbm.
16661 Tue Apr  7 16:48:20 1992  Per Bothner  (bothner@cygnus.com)
16663         * config.sub:  Don't canonicalize os value
16664         newsos* to bsd (readline needs to check for newsos).
16665         (This fix was earlier made Jan 31, but got re-broken.)
16667 Mon Apr  6 14:34:08 1992  Stu Grossman  (grossman at cygnus.com)
16669         * configure.in:  sco is an os, not a vendor!
16671         * configure:  Quote $( better.  Keep various shells happy.
16673 Tue Mar 31 16:32:57 1992  K. Richard Pixley  (rich@cygnus.com)
16675         * Makefile.in: eliminate stamp-files.
16677 Mon Mar 30 22:20:23 1992  K. Richard Pixley  (rich@cygnus.com)
16679         * Makefile.in: add send_pr.  remove "force" from .stmp-gprof rule.
16680           Supress echoing of all the "if [ -d ... $(MAKE)" lines.
16682 Wed Mar 25 15:20:04 1992  Stu Grossman  (grossman@cygnus.com)
16684         * config.sub:  fix iris/iris3.
16686 Wed Mar 25 10:34:19 1992  K. Richard Pixley  (rich@cygnus.com)
16688         * configure: re-add -rm.
16690 Tue Mar 24 23:50:16 1992  K. Richard Pixley  (rich@cygnus.com)
16692         * Maskefile.in: add .stmp-rcs to all.
16694         * configure.in: remove gas from rs6000 build, use aix host fragment.
16696 Mon Mar 23 19:43:35 1992  K. Richard Pixley  (rich@cygnus.com)
16698         * configure: pass down site_option during recursion.
16700 Thu Mar 19 16:49:36 1992  Stu Grossman  (grossman at cygnus.com)
16702         * Makefile.in (all.cross):  Add .stmp-bfd .stmp-readline.
16704 Wed Mar 18 15:29:33 1992  Mike Stump  (mrs@cygnus.com)
16706         * configure: Change exec_prefix so that it really defaults to prefix.
16708 Sat Mar 14 17:20:38 1992  Fred Fish  (fnf@cygnus.com)
16710         * Makefile.in, configure.in:  Add support for mmalloc library.
16712 Fri Mar 13 18:44:18 1992  K. Richard Pixley  (rich@cygnus.com)
16714         * Makefile.in: add stmp dependencies for a few more things.
16716 Thu Mar 12 04:56:24 1992  K. Richard Pixley  (rich@cygnus.com)
16718         * configure: adjusted error message on objdir/srcdir configure
16719           collision, per john's suggestion.
16721         * Makefile.in: add libiberty stmp to all and all.cross.
16723 Wed Mar 11 02:07:52 1992  K. Richard Pixley  (rich@cygnus.com)
16725         * Makefile.in: remove force dependencies, add grep to all.
16727 Tue Mar 10 21:49:18 1992  K. Richard Pixley  (rich@mars.cygnus.com)
16729         * Makefile.in: drop flex.  make stamp files work.
16731         * configure: added test for conflicting configuration in srcdir,
16732           remove trailing slashes from srcdir.  Otherwise emacs gdb mode
16733           gets cranky.  use relative paths for configure and srcdir
16734           whenever possible.  Send some error messages to stderr that were
16735           going to stdout.
16737 Tue Mar 10 18:01:55 1992  Per Bothner  (bothner@cygnus.com)
16739         * Makefile.in:  Fix libg++ rule to check for gcc directory
16740         before using gcc/gcc.  Also pass XTRAFLAGS.
16742 Thu Mar  5 21:45:07 1992  K. Richard Pixley  (rich@sendai)
16744         * Makefile.in: added stmp-files so that directories aren't polled
16745           when they are already built.
16747         * configure.texi: fixed a node pointer problem.
16749 Thu Mar  5 12:05:58 1992  Stu Grossman  (grossman at cygnus.com)
16751         * config.sub configure.in gdb/configure.in
16752         gdb/mips-tdep.c gdb/mipsread.c gdb/procfs.c gdb/signame.h
16753         gdb/tm-irix3.h gdb/tm-mips.h gdb/xm-irix4.h gdb/config/mt-irix3
16754         gdb/config/mh-irix4 texinfo/configure.in:  Port to SGI Irix-4.x.
16756 Wed Mar  4 02:57:46 1992  K. Richard Pixley  (rich@rtl.cygnus.com)
16758         * configure: -recurring becomes -silent.  corrected help message
16759           for -site= option.
16761         * Makefile.in: mkdir $(exec_prefix) and $(tooldir).
16763 Tue Mar  3 14:51:21 1992  K. Richard Pixley  (rich@rtl.cygnus.com)
16765         * configure: when building Makefile for crosses, replace
16766           tooldir and program_prefix.  default srcdir from location of
16767           config.sub.  remove "for host in hosts" and "for target in
16768           targets" loops.
16770 Wed Feb 26 19:48:25 1992  K. Richard Pixley  (rich@rtl.cygnus.com)
16772         * Makefile.in: Do not pass bindir or mandir to cvs.
16774 Wed Feb 26 18:04:40 1992  K. Richard Pixley  (rich@cygnus.com)
16776         * Makefile.in, configure.in: removed traces of namesubdir,
16777           -subdirs, $(subdir), $(unsubdir), some rcs triggers.  Forced
16778           copyrights to '92, changed some from Cygnus to FSF.
16780         * configure.texi: remove most references to multiple hosts,
16781           multiple targets, subdirs, etc.
16783         * configure.man: removed rcsid. reference config.sub not
16784           config.subr.
16786         * Makefile.in: mkdir $(infodir) on install-info.
16788 Wed Feb 19 15:41:13 1992  John Gilmore  (gnu at cygnus.com)
16790         * configure.texi:  Explain better about .gdbinit and about
16791         the environment that configure.in sections run in.
16793 Fri Feb  7 07:55:00 1992  John Gilmore  (gnu at cygnus.com)
16795         * configure.in:  Ultrix is only a decstation if it's a MIPS.
16797 Fri Jan 31 21:54:51 1992  John Gilmore  (gnu at cygnus.com)
16799         * README:  DOC.configure => cfg-paper.texi.
16801 Fri Jan 31 21:48:18 1992  Stu Grossman  (grossman at cygnus.com)
16803         * config.sub (near case $os):  Don't convert newsos* to bsd!
16805 Fri Jan 31 02:27:32 1992  John Gilmore  (gnu at cygnus.com)
16807         * Makefile.in:  Reinstall change from gdb-4.3 that reduces
16808         the number of copies of COPYING that go into the GDB tar file.
16810 Thu Jan 30 16:17:30 1992  Stu Grossman  (grossman at cygnus.com)
16812         * bfd/configure.in, gdb/config/mh-i386sco,
16813         gdb/config/mt-i386v32, gdb/configure.in, readline/configure.in:
16814         Fix SCO configuration stuff.
16816 Tue Jan 28 23:51:07 1992  Per Bothner  (bothner at cygnus.com)
16818         * Makefile.in:  For libg++, make sure the -I pointing
16819         to the gcc directory goes *after* all the libg++-local -I flags.
16820         Also, move just-gcc dependency from just-libg++ to all-libg++.
16822 Tue Jan 28 12:56:24 1992  Stu Grossman  (grossman at cygnus.com)
16824         * configure:  Change -x to -f to keep Ultrix /bin/test happy.
16826 Sat Jan 18 17:45:11 1992  Stu Grossman  (grossman at cygnus.com)
16828         * Makefile.in (make-gdb.tar.Z):  Remove texinfo targets.
16830 Sat Jan 18 17:03:21 1992  Fred Fish  (fnf at cygnus.com)
16832         * config.sub:  Add stratus configuration frags.  Also
16833         submitted to FSF.
16835 Sat Jan 18 15:35:29 1992  Stu Grossman  (grossman at cygnus.com)
16837         * Makefile.in (DEV_SUPPORT):  add configure.man.
16839         * config.sub(Decode manufacturer-specific):  add -none*.
16841 Fri Jan 17 17:58:05 1992  Stu Grossman  (grossman at cygnus.com)
16843         * Makefile.in:  remove form feeds to make Sun's make happy.
16844         (DEVO_SUPPORT):  DOC.configure => cfg-paper.texi.
16846 Sat Jan  4 16:11:44 1992  John Gilmore  (gnu at cygnus.com)
16848         * Makefile.in (AR_FLAGS):  Make quieter.
16850 Thu Jan  2 22:57:12 1992  John Gilmore  (gnu at cygnus.com)
16852         * configure.in:  Add libg++.
16853         * configure:  When verbose, don't output the command line at each
16854         level; it will be unremarkably the same as the previous version,
16855         which will be the same as what the user typed.
16857 Fri Dec 27 16:26:47 1991  K. Richard Pixley  (rich at cygnus.com)
16859         * configure.in, Makefile.in: fix clean-info, add flex.  add
16860           fileutils.
16862         * configure: be less sensitive to spaces in Makefile.in.  Do not
16863           look for sources in "..".  Doing so breaks subdirectories that
16864           might have their own configure.  If a subdir has it's own
16865           configure script, use it.
16867 Thu Dec 26 16:30:26 1991  K. Richard Pixley  (rich at cygnus.com)
16869         * cfg-paper.texi: some changes suggested by rms.
16871 Thu Dec 26 10:13:36 1991  Fred Fish  (fnf at cygnus.com)
16873         * config.sub:  Merge in some small additions from the FSF version,
16874         taken from the gcc distribution, to bring the Cygnus and FSF
16875         versions into closer sync.
16877 Fri Dec 20 11:34:18 1991  Fred Fish  (fnf at cygnus.com)
16879         * configure.in:  Changed svr4 references to sysv4.
16881 Thu Dec 19 15:54:29 1991  K. Richard Pixley  (rich at cygnus.com)
16883         * configure: added -V for version number option.
16885 Wed Dec 18 15:39:34 1991  K. Richard Pixley  (rich at cygnus.com)
16887         * DOC.configure, cfg-paper.texi: revised, updated, and texinfo'd.
16888           renamed from DOC.configure to cfg-paper.texi.
16890 Mon Dec 16 23:05:19 1991  K. Richard Pixley  (rich at rtl.cygnus.com)
16892         * configure, config.subr, config.sub: config.subr is now
16893           config.sub again.
16895 Fri Dec 13 01:17:06 1991  K. Richard Pixley  (rich at cygnus.com)
16897         * configure.texi: new file, in progress.
16899         * Makefile.in: build info file and install the man page for
16900           configure.
16902         * configure.man: new file, first cut.
16904         * configure: find config.subr again now that configuration "none"
16905           has gone.  removed all traces of the -ansi option.  removed all
16906           traces of the -languages option.
16908         * config.subr: resync from rms.
16910 1991-12-11  K. Richard Pixley  (rich at rtl.cygnus.com)
16912         * configure, config.sub, config.subr: merge config.sub into
16913           config.subr, call the result config.subr, remove config.sub, use
16914           config.subr.
16916         * Makefile.in: revised install for dir.info.
16918 1991-12-10  K. Richard Pixley  (rich at rtl.cygnus.com)
16920         * configure.in: add decstation host makefile frag.
16922         * Makefile.in: BISON now bison -y again.  also install-gcc on
16923           install.  clean-gdbm on clean.  infodir belongs in datadir.
16924           Make directories for info install.  Build dir.info here then
16925           install it.
16927 1991-12-09  K. Richard Pixley  (rich at rtl.cygnus.com)
16929         * Makefile.in: fix for bad directory tests.
16931 1991-12-07  K. Richard Pixley  (rich at rtl.cygnus.com)
16933         * configure: \{1,2\} appears to be a sysv'ism.  Use a different
16934           regexp.  -srcdir relative was being handled incorrectly.
16936         * Makefile.in: unwrapped some for loops so that parallel makes
16937           work again and so one can focus one's attention on a particular
16938           package.
16940 1991-12-06  K. Richard Pixley  (rich at rtl.cygnus.com)
16942         * configure: added PWD as a stand in for `pwd` (for speed). use
16943           elif wherever possible.  make -srcdir work without -objdir.
16944           -objdir= commented out.
16946 1991-12-05  K. Richard Pixley  (rich at rtl.cygnus.com)
16948         * configure: +options become --options.  -subdirs commented out.
16949           added -host, -datadir.  Renamed -destdir to -prefix.  Comment in
16950           Makefile now at top of generated Makefile.  Removed cvs log
16951           entries.  added -srcdir.  create .gdbinit only if there is one
16952           in ${srcdir}.
16954         * Makefile.in: idestdir and ddestdir go away.  Added copyrights
16955           and shift gpl to v2.  Added ChangeLog if it didn't exist. docdir
16956           and mandir now keyed off datadir by default.
16958 1991-11-22  K. Richard Pixley  (rich at rtl.cygnus.com)
16960         * Freshly created ChangeLog.
16963 Local Variables:
16964 mode: change-log
16965 left-margin: 8
16966 fill-column: 76
16967 version-control: never
16968 End: