Hackfix and re-enable strtoull and wcstoull, see bug #3798.
[sdcc.git] / sdcc / support / sdbinutils / ChangeLog
blob345fc71e45d4218734d90147d5bce0477a13652e
1 2022-02-09  Nick Clifton  <nickc@redhat.com>
3         2.38 release.
4         * ChangeLog.git.2.37-2.38: New file.
6 2022-01-22  Nick Clifton  <nickc@redhat.com>
8         * configure: Regenerate.
10 2022-01-22  Nick Clifton  <nickc@redhat.com>
12         * 2.38 release branch created.
14 2022-01-17  Nick Clifton  <nickc@redhat.com>
16         Update config.[guess|sub] from upstream:
18         2022-01-09  Idan Horowitz  <idan.horowitz@gmail.com>
20         config.guess: recognize SerenityOS
21         * config.guess (*:SerenityOS:*:*): Recognize.
22         (timestamp): Update.
24         2022-01-03  Bernhard Voelker  <mail@bernhard-voelker.de>
26         Fix GPLv3 license headers to use a comma instead of semicolon
27         See: https://www.gnu.org/licenses/gpl-3.0.html#howto
29         Update license headers automatically using the following script:
31           $ git grep -l 'Foundation; either version 3' \
32             | xargs sed -i '/Foundation; either version 3/ s/n; e/n, e/'
34         * config.guess: Adjust via the above command.
35         (timestamp): Update.
36         * config.sub: Likewise.
37         * doc/config.guess.1: Regenerate.
38         * doc/config.sub.1: Likewise.
40         2022-01-01  Dmitry V. Levin  <ldv@altlinux.org>
42         Update copyright years
43         * config.guess: Update copyright years.
44         * config.sub: Likewise.
46         2021-12-25  Dmitry V. Levin  <ldv@altlinux.org>
48         config.sub: alias armh to armv7l
49         ALT uses armh as an alias for armv7l-alt-linux-gnueabihf since 2012.
51         * config.sub (armh-unknown|armh-alt): Set cpu, vendor, and basic_os.
52         (timestamp): Update.
54         2021-12-24  Dmitry V. Levin  <ldv@altlinux.org>
56         config.sub: alias aarch64le to aarch64
57         Apparently, QNX reports aarch64 as aarch64le on little-endian machines.
59         * config.sub (aarch64le-*): Set cpu to aarch64.
60         (timestamp): Update.
62         2021-12-13  Dmitry V. Levin  <ldv@altlinux.org>
64         config.sub: fix typo in timestamp
65         * config.sub: Fix timestamp.
67         2021-11-30  Andreas F. Borchert  <github@andreas-borchert.de>
69         config.guess: x86_64-pc-solaris2.11 is not properly recognized
70         config.guess guesses Solaris 11 to run on a 32-bit platform
71         despite Solaris 11 no longer supporting any 32-bit platform.
73         See the following code at lines 434 to 445:
75         | SUN_ARCH=i386
76         | # If there is a compiler, see if it is configured for 64-bit objects.
77         | # Note that the Sun cc does not turn __LP64__ into 1 like gcc does.
78         | # This test works for both compilers.
79         | if test "$CC_FOR_BUILD" != no_compiler_found; then
80         |     if (echo '#ifdef __amd64'; echo IS_64BIT_ARCH; echo '#endif') | \
81         |         (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \
82         |         grep IS_64BIT_ARCH >/dev/null
83         |     then
84         |         SUN_ARCH=x86_64
85         |     fi
86         | fi
88         If "cc" is installed, i.e. the Oracle Studio compiler, this one is
89         chosen for $CC_FOR_BUILD.  This compiler, the gcc provided by Oracle
90         and also gcc bootstrapped from sources on that platform with a default
91         configuration will by default generate 32-bit binaries -- even on
92         a 64-bit platform.  And __amd64 will not be defined for compilations
93         targeting a 32-bit platform.  This is different from the corresponding
94         behaviour on GNU/Linux systems where the local platform is targeted by
95         default.
97         Thus, as long as you do not add "-m64" or if you have a custom-built
98         gcc which defaults to 64 bit, you will get 32-bit binaries on Solaris
99         despite living on a 64-bit platform.
101         * config.guess (i86pc:SunOS:5.*:* || i86xen:SunOS:5.*:*): Adapt the
102         test by adding the "-m64" flag.  This will work properly for Solaris
103         10 as well (the last Solaris release that supported x86 32-bit
104         platforms).
106         2021-10-27  Jordi Sanfeliu  <jordi@fibranet.cat>
108         Recognize Fiwix
109         $ make check
110         cd testsuite && bash config-guess.sh && rm uname
111         PASS: config.guess checks (137 tests)
112         cd testsuite && bash config-sub.sh
113         PASS: config.sub checks (882 tests)
114         PASS: config.sub idempotency checks (819 tests)
115         PASS: config.sub canonicalise each config.guess testcase (137 tests)
117         * config.guess (i*86:Fiwix:*:*): Recognize.
118         * config.sub (fiwix*): Likewise.
120         2021-10-18  Kinshuk Dua  <kinshukdua@gmail.com>
122         config.sub: Fix typo in comment
123         Fixes: 5e531d391852a54e7fab2d8ff55625fca514b305
125         2021-08-14  Nick Bowler  <nbowler@draconx.ca>
127         config.sub: work around command assignment bug in some shells
128         When combining variable assignments with a shell command, some older
129         shells (notably heirloom-sh and presumably also Solaris 10 /bin/sh)
130         have a bug which causes the assignment to alter the current execution
131         environment whenever the command is a shell built-in.  For example:
133           % dash -c 'x=good; x=bad echo >/dev/null; echo $x'
134           good
136           % jsh -c 'x=good; x=bad echo >/dev/null; echo $x'
137           bad
139         The config.sub script contains a few commands of the form:
141           IFS=- read ...
143         which triggers this bug, causing the IFS assignment to persist for the
144         remainder of the script.  This can cause misbehaviour in certain cases,
145         for example:
147           % jsh config.sub i386-linux-gnu
148           config.sub: test: unknown operator gnu
150           % jsh config.sub i386-gnu/linux
151           sed: can't read s|gnu/linux|gnu|: No such file or directory
152           Invalid configuration `i386-gnu/linux': OS `' not recognized
154         * config.sub: Save and restore IFS explicitly to avoid shell bugs.
155         * doc/config.sub.1: Regenerate.
157         2021-08-04  Jeremy Soller  <jackpot51@gmail.com>
159         config.sub: add Linux Relibc Target
160         $ make check
161         cd testsuite && bash config-guess.sh && rm uname
162         PASS: config.guess checks (136 tests)
163         cd testsuite && bash config-sub.sh
164         PASS: config.sub checks (881 tests)
165         PASS: config.sub idempotency checks (818 tests)
166         PASS: config.sub canonicalise each config.guess testcase (136 tests)
168         * config.sub (relibc*): Recognize.
169         * doc/config.sub.1: Regenerate.
170         * testsuite/config-sub.data (x86_64-linux-relibc): New test.
172         2021-07-06  Stephanos Ioannidis  <root@stephanos.io>
174         config.sub: add Zephyr RTOS support
175         This adds the Zephyr RTOS targets in preparation for implementing the
176         Zephyr RTOS-specific toolchain support.
178         $ make check
179         cd testsuite && bash config-guess.sh && rm uname
180         PASS: config.guess checks (136 tests)
181         cd testsuite && bash config-sub.sh
182         PASS: config.sub checks (880 tests)
183         PASS: config.sub idempotency checks (817 tests)
184         PASS: config.sub canonicalise each config.guess testcase (136 tests)
186         * config.sub (zephyr*): Recognize.
187         * doc/config.sub.1: Regenerate.
188         * testsuite/config-sub.data: Add testcases for *-zephyr.
190         2021-07-03  Ozkan Sezer  <sezero@users.sourceforge.net>
192         config.sub: disable shellcheck SC2006 / SC2268 warnings
193         This is in line with the recent config.guess change in commit
194         12fcf67c9108f4c4b581eaa302088782f0ee40ea
196         * config.sub (shellcheck disable): Add SC2006,SC2268.
198         Suggested-by: Jacob Bachmeyer <jcb@gnu.org>
200         2021-07-03  Ozkan Sezer  <sezero@users.sourceforge.net>
202         config.sub: normalize the quoting in the `echo FOO | sed ...`
203         Some cases quote the argument to echo and some do not.  At runtime
204         it probably does not matter because the substituted values will never
205         contain whitespace, but quoting them all would make shellcheck more
206         useful.
208         * config.sub: Consistently quote the argument of echo.
209         * doc/config.sub.1: Regenerate.
211         Suggested-by: Jacob Bachmeyer <jcb@gnu.org>
213         2021-07-02  Ozkan Sezer  <sezero@users.sourceforge.net>
215         config.sub: replace POSIX $( ) with classic ` ` throughout
216         This is in line with the recent config.guess change in commit
217         d70c4fa934de164178054c3a60aaa0024ed07c91.
219         The patch was generated using patch-6.gawk script introduced in that
220         commit.
222         * config.sub: Revert POSIX command substitutions to classic form.
224         2021-06-04  Vineet Gupta  <Vineet.Gupta1@synopsys.com>
226         Recognize arc32
227         This is the 32-bit variant of ARCv3 ISA (which is not compatible with the
228         32-bit ARCv2 ISA)
230         | make check
231         | cd testsuite && bash config-guess.sh && rm uname
232         | PASS: config.guess checks (136 tests)
233         | cd testsuite && bash config-sub.sh
234         | PASS: config.sub checks (864 tests)
235         | PASS: config.sub idempotency checks (801 tests)
236         | PASS: config.sub canonicalise each config.guess testcase (136 tests)
238         * config.guess (arc32:Linux:*:*): Recognize.
239         * config.sub (arc32): Likewise.
241         2021-05-27  Jacob Bachmeyer  <jcb@gnu.org>
243         Remove automatic patch generators
244         These tools have served their purposes and need not be kept outside of
245         the repository history any longer.  This patch as a diff also collects
246         the contents of the various tools in one convenient place.
248         * patch-1.gawk: Remove.
249         * patch-3.gawk: Likewise.
250         * patch-6.gawk: Likewise.
252         2021-05-26  Jacob Bachmeyer  <jcb@gnu.org>
254         config.guess: manual fixups after previous automatic patch
255         The tool could not handle command substitutions that span lines, but
256         fortunately there were only two such substitutions in the script.
258         The test for which universe is active on Pyramid is rewritten into a
259         case block because it was the only use of a command substitution as an
260         argument to the test command, which would require quoting.
262         * config.guess: Rewrite "if" for Pyramid systems to "case".
264         2021-05-26  Jacob Bachmeyer  <jcb@gnu.org>
266         config.guess: replace POSIX $( ) with classic ` ` throughout
267         The previous replacement of backticks with POSIX command substitutions
268         was ill-considered and illogical: this script recognizes many archaic
269         machine types that probably never had POSIX shells, therefore it needs
270         to be able to run successfully under pre-POSIX shells.
272         This patch was generated using the included GNU Awk program.
274         * config.guess: Revert POSIX command substitutions to classic form.
275         * patch-6.gawk: Store the tool that produced the automated patch.
277         2021-05-26  Jacob Bachmeyer  <jcb@gnu.org>
279         config.guess: manual fixup after previous automated patches
280         This patch provides the special handling for the GNU system.  As these
281         were two small and unique edits, they were not included in the scripts.
283         This patch also cleans up other minor issues that must be addressed
284         before reverting to classic command substitutions and updates
285         "shellcheck" directives to account for changes in this script and the
286         change in "shellcheck" towards reporting individual portability issues.
288         2021-05-26  Jacob Bachmeyer  <jcb@gnu.org>
290         config.guess: automatic fixups after previous automated patch
291         This patch was generated using the following command:
293           sed -i config.guess \
294               -e '/="[^"]\+"\(-\|$\)/s/="\([^"([:space:])]\+\)"/=\1/' \
295               -e '/="[^"]\+"[[:alnum:]]/s/="\$\([^([:space:])]\+\)"/=${\1}/' \
296               -e \
297         '/\$(echo[^|]\+|/s/\([^[:space:]]\)[[:space:]]*|[[:space:]]*sed/\1 | sed/g'
299         * config.guess: Remove unneeded quotes in other variable assignments,
300         standardize spacing for "echo ... | sed" substitutions.
302         2021-05-26  Jacob Bachmeyer  <jcb@gnu.org>
304         config.guess: remove unneeded quotes and factor command substitutions
305         This is further cleanup and simplifies some constructs that can confuse
306         Emacs' syntax highlighting while generally reducing required quoting.
308         This patch was generated using the included GNU Awk program.
310         * config.guess: Remove unneeded variable quotes and factor out command
311         substitutions when setting GUESS.
312         * patch-3.gawk: Store the tool that produced the automated patch.
314         2021-05-25  Jacob Bachmeyer  <jcb@gnu.org>
316         config.guess: manual fixups after previous automatic patch
317         * config.guess: Adjust a few "leftover" cases that the tool could not
318         easily recognize and fixes comment indentation in a few other special
319         cases.
321         2021-05-25  Jacob Bachmeyer  <jcb@gnu.org>
323         config.guess: use intermediate variable with uname results
324         This will allow quoting to be significantly simplified in another
325         pass through the file.
327         This patch was generated using the included GNU Awk program.
329         * config.guess: Use GUESS variable to hold results of uname analysis.
330         * patch-1.gawk: Store the tool that produced the automated patch.
332         2021-05-25  Jacob Bachmeyer  <jcb@gnu.org>
334         config.guess: introduce intermediate variable with uname results
335         This will allow quoting to be significantly simplified in another
336         pass through the file.
338         * config.guess: Introduce GUESS variable to hold results of uname analysis.
340         2021-05-24  Dmitry V. Levin  <ldv@altlinux.org>
342         config.guess: fix shellcheck warning SC2154
343         While, according to Plan 9 documentation, the environment variable
344         $cputype is set to the name of the kernel's CPU's architecture,
345         shellcheck warns that cputype is referenced but not assigned.
346         Be on the safe side and do not use cputype if it is not defined
347         or empty.
349         * config.guess (*:Plan9:*:*): Fix shellcheck warning SC2154.
351         2021-05-24  Dmitry V. Levin  <ldv@altlinux.org>
353         config.guess: remove redundant quotes in case commands
354         According to the GNU Autoconf Portable Shell Programming manual,
355         the Bourne shell does not systematically split variables and back-quoted
356         expressions, in particular on the right-hand side of assignments and in
357         the argument of 'case'.
359         The change is made automatically using the following command:
360         $ sed -E -i 's/(\<case )"(\$[^"]+)"( in\>)/\1\2\3/' config.guess
362         * config.guess: Simplify case commands by removing quotes around the
363         argument.
365         Suggested-by: Jacob Bachmeyer <jcb@gnu.org>
367         2021-05-24  Dmitry V. Levin  <ldv@altlinux.org>
369         config.guess: simplify exit status workaround on alphaev67-dec-osf5.1
370         Commit 29865ea8a5622cdd80b7a69a0afa78004b4cd311 introduced an exit trap
371         reset before exiting to avoid a spurious non-zero exit status on
372         alphaev67-dec-osf5.1.  Simplify that code a bit by moving the exit trap
373         reset around.
375         * config.guess (alpha:OSF1:*:*): Reset exit trap earlier.
376         * doc/config.guess.1: Regenerate.
378 2021-10-29  Eli Zaretskii  <eliz@gnu.org>
380         * gdb/doc/gdb.texinfo (Command Options): (Data): Document
381         '-memory-tag-violations'.  Update the example.
383 2021-09-28  Andrew Burgess  <andrew.burgess@embecosm.com>
385         * src-release.sh (GDB_SUPPPORT_DIRS): Add libbacktrace.
387 2021-09-27  Nick Alcock  <nick.alcock@oracle.com>
389         PR libctf/27967
390         * libtool.m4 (LT_PATH_NM): Try BSDization flags with a user-provided
391         NM, if there is one.  Run nm on itself, not on /dev/null, to avoid
392         errors from nms that refuse to work on non-regular files.  Remove
393         other workarounds for this problem.  Strip out blank lines from the
394         nm output.
396 2021-09-27  Nick Alcock  <nick.alcock@oracle.com>
398         PR libctf/27967
399         * libtool.m4 (lt_cv_sys_global_symbol_pipe): Augment symcode for
400         Solaris 11.
402 2021-07-03  Nick Clifton  <nickc@redhat.com>
404         * 2.37 release branch created.
406 2021-07-03  Nick Clifton  <nickc@redhat.com>
408         * libiberty: Sync with gcc.  Bring in:
409         2021-06-30  Gerald Pfeifer  <gerald@pfeifer.com>
411         * make-temp-file.c (usrtmp): Remove.
412         (choose_tmpdir): Remove use of usrtmp.
414         2021-06-28  Indu Bhagat  <indu.bhagat@oracle.com>
416         * simple-object.c (handle_lto_debug_sections): Copy over .BTF section.
418         2021-06-28  Indu Bhagat  <indu.bhagat@oracle.com>
419             David Faust  <david.faust@oracle.com>
420             Jose E. Marchesi  <jose.marchesi@oracle.com>
421             Weimin Pan  <weimin.pan@oracle.com>
423         * simple-object.c (handle_lto_debug_sections): Copy over .ctf
424         sections.
426         2021-06-05  John David Anglin  <danglin@gcc.gnu.org>
428         PR target/100734
429         * configure.ac: Use libiberty snprintf and vsnprintf on
430         hppa*-*-hpux*.
431         * configure: Regenerate.
433         2021-05-06  Tom Tromey  <tom@tromey.com>
435         * hashtab.c (htab_eq_string): New function.
437         2021-05-04  Eric Botcazou  <ebotcazou@adacore.com>
439         * configure.ac: Make test for variables more robust.
440         * configure: Regenerate.
442         2021-05-03  H.J. Lu  <hjl.tools@gmail.com>
444         PR bootstrap/99703
445         * configure: Regenerated.
447         2021-04-21  Andreas Schwab  <schwab@linux-m68k.org>
449         PR demangler/100177
450         * rust-demangle.c (demangle_const_char): Properly print the
451         character value.
453         2021-03-31  Patrick Palka  <ppalka@redhat.com>
455         PR c++/88115
456         * cp-demangle.c (d_dump, d_make_comp, d_expression_1)
457         (d_count_templates_scopes): Handle DEMANGLE_COMPONENT_VENDOR_EXPR.
458         (d_print_comp_inner): Likewise.
459         <case DEMANGLE_COMPONENT_EXTENDED_OPERATOR>: Revert r11-4926
460         change.
461         <case DEMANGLE_COMPONENT_UNARY>: Likewise.
462         * testsuite/demangle-expected: Adjust __alignof__ tests.
464         2021-03-16  Nick Clifton  <nickc@redhat.com>
466         * sha1.c (sha1_process_bytes): Use memmove in place of memcpy.
468         2021-02-20  Mike Frysinger  <vapier@gentoo.org>
470         * Makefile.in (ACLOCAL, ACLOCAL_AMFLAGS, $(srcdir)/aclocal.m4): Define.
471         (configure_deps): Rename to ...
472         (aclocal_deps): ... this.  Replace aclocal.m4 with acinclude.m4.
473         ($(srcdir)/configure): Replace $(configure_deps) with
474         $(srcdir)/aclocal.m4.
475         * aclocal.m4: Move libiberty macros to acinclude.m4, then regenerate.
476         * acinclude.m4: New file.
477         * configure: Regenerate.
479         2021-02-19  Ayush Mittal  <ayush.m@samsung.com>
481         * argv.c (expandargv): free allocated buffer if read fails.
483         2021-02-01  Martin Sebor  <msebor@redhat.com>
485         * dyn-string.c (dyn_string_insert_cstr): Use memcpy instead of strncpy
486         to avoid -Wstringop-truncation.
488 2021-05-29  Mike Frysinger  <vapier@gentoo.org>
490         * configure.ac: Add gnulib to configdirs for sim.
491         * configure: Regenerate.
493 2021-05-24  Maciej W. Rozycki  <macro@orcam.me.uk>
495         * MAINTAINERS: Update path to readline config.{sub,guess} files.
497 2021-05-24  Maciej W. Rozycki  <macro@orcam.me.uk>
499         * config.guess: Import from upstream.
500         * config.sub: Likewise.
502 2021-05-18  Mike Frysinger  <vapier@gentoo.org>
504         * Makefile.def: Add configure-sim dependency on all-gnulib.
505         * Makefile.in: Regenerated.
507 2021-05-04  Nick Clifton  <nickc@redhat.com>
509         * configure.ac (AC_PROG_CC): Replace with AC_PROG_CC_C99.
510         * configure: Regenerate.
512 2021-03-18  Nick Alcock  <nick.alcock@oracle.com>
514         PR libctf/27482
515         * Makefile.def: Add install-bfd dependencies for install-libctf and
516         install-ld, and install-strip-bfd dependencies for
517         install-strip-libctf and install-strip-ld; move the install-ld
518         dependency on install-libctf to join it.
519         * Makefile.in: Regenerated.
521 2021-03-12  Mike Frysinger  <vapier@gentoo.org>
523         * Makefile.def: Remove all-sim dependency on configure-gdb.
524         * Makefile.in: Regenerated.
526 2021-02-28  H.J. Lu  <hongjiu.lu@intel.com>
528         PR binutils/26766
529         * Makefile.tpl (PGO_BUILD_TRAINING_FLAGS_TO_PASS): Add
530         PGO_BUILD_TRAINING=yes.
531         (PGO_BUILD_TRAINING_MFLAGS): New.
532         (all): Pass $(PGO_BUILD_TRAINING_MFLAGS) to the PGO build.
534 2021-02-09  Alan Modra  <amodra@gmail.com>
536         * configure.ac: Delete arm*-*-symbianelf* entry.
537         * configure: Regenerate.
539 2021-01-26  Nick Alcock  <nick.alcock@oracle.com>
541         * Makefile.def: Add install-libctf dependency to install-ld.
542         * Makefile.in: Regenerated.
544 2021-01-12  Mike Frysinger  <vapier@gentoo.org>
546         * src-release.sh (do_proto_toplev): Rewrite indentation.
548 2021-01-11  H.J. Lu  <hongjiu.lu@intel.com>
550         PR binutils/26766
551         * configure.ac:
552         * configure: Regenerated.
554 2021-01-11  H.J. Lu  <hongjiu.lu@intel.com>
556         PR ld/27173
557         * configure: Regenerated.
558         * libtool.m4 (_LT_CMD_OLD_ARCHIVE): Check if AR works with
559         --plugin and rc before enabling --plugin.
561 2021-01-09  H.J. Lu  <hongjiu.lu@intel.com>
563         PR binutils/26766
564         * Makefile.tpl (BUILD_CFLAGS): New.
565         (CFLAGS): Append $(BUILD_CFLAGS).
566         (CXXFLAGS): Likewise.
567         (PGO_BUILD_GEN_FLAGS_TO_PASS): New.
568         (PGO_BUILD_TRAINING_CFLAGS): Likewise.
569         (PGO_BUILD_TRAINING_CXXFLAGS): Likewise.
570         (PGO_BUILD_TRAINING_FLAGS_TO_PASS): Likewise.
571         (PGO_BUILD_TRAINING_MFLAGS): Likewise.
572         (PGO_BUILD_USE_FLAGS_TO_PASS): Likewise.
573         (PGO-TRAINING-TARGETS): Likewise.
574         (PGO_BUILD_TRAINING): Likewise.
575         (all): Add '+' to the command line for recursive make.  Support
576         the PGO build.
577         * configure.ac: Add --enable-pgo-build[=lto].
578         AC_SUBST PGO_BUILD_GEN_CFLAGS, PGO_BUILD_USE_CFLAGS and
579         PGO_BUILD_LTO_CFLAGS.  Enable the PGO build in Makefile.
580         * Makefile.in: Regenerated.
581         * configure: Likewise.
583 2021-01-09  H.J. Lu  <hongjiu.lu@intel.com>
585         * Makefile.tpl (AR): Add @AR_PLUGIN_OPTION@
586         (RANLIB): Add @RANLIB_PLUGIN_OPTION@.
587         * configure.ac: Include config/gcc-plugin.m4.
588         AC_SUBST AR_PLUGIN_OPTION and RANLIB_PLUGIN_OPTION.
589         * libtool.m4 (_LT_CMD_OLD_ARCHIVE): Pass --plugin to AR and
590         RANLIB if possible.
591         * Makefile.in: Regenerated.
592         * configure: Likewise.
594 2021-01-09  Nick Clifton  <nickc@redhat.com>
596         * 2.36 release branch crated.
598 2021-01-07  Samuel Thibault  <samuel.thibault@gnu.org>
600         * libtool.m4: Match gnu* along with other GNU systems.
602 2021-01-07  Alan Modra  <amodra@gmail.com>
604         * config.sub: Accept OS of eabi* and gnueabi*.
606 2021-01-05  Nick Alcock  <nick.alcock@oracle.com>
608         * Makefile.def (libctf): No longer no_check.  Checking depends on
609         all-ld.
610         * Makefile.in: Regenerated.
612 2021-01-05  Nick Clifton  <nickc@redhat.com>
614         * libiberty: Sync with gcc.  Bring in:
615         2021-01-04  Martin Liska  <mliska@suse.cz>
617         * strverscmp.c: Convert to utf8 from iso8859.
619         2020-12-22  Jason Merrill  <jason@redhat.com>
621         PR c++/67343
622         * cp-demangle.h (struct d_info): Add unresolved_name_state.
623         * cp-demangle.c (d_prefix): Add subst parm.
624         (d_nested_name): Pass it.
625         (d_unresolved_name): Split out from...
626         (d_expression_1): ...here.
627         (d_demangle_callback): Maybe retry with old sr mangling.
628         * testsuite/demangle-expected: Add test.
630         2020-12-21  Jason Merrill  <jason@redhat.com>
632         * cp-demangle.c (d_expression_1): Recognize qualified-id
633         on RHS of dt/pt.
634         * testsuite/demangle-expected: Add test.
636         2020-12-21  Jason Merrill  <jason@redhat.com>
638         * cp-demangle.c (d_unqualified_name): Clear is_expression.
639         * testsuite/demangle-expected: Add tests.
641         2020-11-25  Matthew Malcomson  <matthew.malcomson@arm.com>
643         * configure: Regenerate.
644         * configure.ac: Avoid using sanitizer.
646         2020-11-13  Eduard-Mihai Burtescu  <eddyb@lyken.rs>
648         * rust-demangle.c (struct rust_demangler): Add
649         skipping_printing and bound_lifetime_depth fields.
650         (eat): Add (v0-only).
651         (parse_integer_62): Add (v0-only).
652         (parse_opt_integer_62): Add (v0-only).
653         (parse_disambiguator): Add (v0-only).
654         (struct rust_mangled_ident): Add punycode{,_len} fields.
655         (parse_ident): Support v0 identifiers.
656         (print_str): Respect skipping_printing.
657         (print_uint64): Add (v0-only).
658         (print_uint64_hex): Add (v0-only).
659         (print_ident): Respect skipping_printing,
660         Support v0 identifiers.
661         (print_lifetime_from_index): Add (v0-only).
662         (demangle_binder): Add (v0-only).
663         (demangle_path): Add (v0-only).
664         (demangle_generic_arg): Add (v0-only).
665         (demangle_type): Add (v0-only).
666         (demangle_path_maybe_open_generics): Add (v0-only).
667         (demangle_dyn_trait): Add (v0-only).
668         (demangle_const): Add (v0-only).
669         (demangle_const_uint): Add (v0-only).
670         (basic_type): Add (v0-only).
671         (rust_demangle_callback): Support v0 symbols.
672         * testsuite/rust-demangle-expected: Add v0 testcases.
674         2020-11-13  Seija Kijin  <doremylover456@gmail.com>
676         * strstr.c (strstr): Make implementation ANSI/POSIX compliant.
678         2020-11-11  Patrick Palka  <ppalka@redhat.com>
680         PR c++/88115
681         * cp-demangle.c (d_print_comp_inner)
682         <case DEMANGLE_COMPONENT_EXTENDED_OPERATOR>: Don't print the
683         "operator " prefix for __alignof__.
684         <case DEMANGLE_COMPONENT_UNARY>: Always print parens around the
685         operand of __alignof__.
686         * testsuite/demangle-expected: Test demangling for __alignof__.
688         2020-11-09  Christophe Lyon  <christophe.lyon@linaro.org>
690         * pex-win32.c (pex_win32_exec_child): Initialize orig_err.
692         2020-10-06  Martin Liska  <mliska@suse.cz>
694         PR lto/97290
695         * simple-object-elf.c (simple_object_elf_copy_lto_debug_sections):
696         Use sh_link of a .symtab_shndx section.
698 2021-01-05  Alan Modra  <amodra@gmail.com>
700         * config.guess: Import from upstream.
701         * config.sub: Likewise.
703 2020-12-16  Martin Liska  <mliska@suse.cz>
704             Tom de Vries  <tdevries@suse.de>
706         * gdb/debuginfod-support.c (struct user_data): Remove has_printed
707         field.  Add meter field.
708         (progressfn): Print progress using meter.
710 2020-12-02  Enze Li  <lienze2010@hotmail.com>
712         * .gitignore: Add gnu global outputs.
714 2020-12-02  Simon Marchi  <simon.marchi@polymtl.ca>
716         * .gitignore: Sync with gcc.
718 2020-10-26  Andreas Rammhold <andreas@rammhold.de>
720         * src-release.sh: Use sha256sum instead of md5sum.
722 2020-10-14  Andrew Burgess  <andrew.burgess@embecosm.com>
724         * Makefile.in: Rebuild.
725         * Makefile.def: Make distclean-gnulib depend on distclean-gdb and
726         distclean-gdbserver.
728 2020-07-24  Aaron Merey  <amerey@redhat.com>
730         * configure: Rebuild.
731         * configure.ac: Remove AC_DEBUGINFOD.
733 2020-07-04  Nick Clifton  <nickc@redhat.com>
735         Binutils 2.35 branch created.
737 2020-04-21  Stephen Casner  <casner@acm.org>
739         PR 25830
740         * configure.ac (noconfigdirs): Exclude gdb & gprof for pdp11.
741         * configure: Rebuild.
743 2020-03-12  Tom Tromey  <tom@tromey.com>
745         * Makefile.in: Rebuild.
746         * Makefile.def (gdbserver): Depend on gdbsupport.
748 2020-03-12  Tom Tromey  <tom@tromey.com>
750         * Makefile.in: Rebuild.
751         * Makefile.def (gdbsupport): Don't depend on bfd.
753 2020-03-12  Tom Tromey  <tom@tromey.com>
755         * Makefile.in: Rebuild.
756         * Makefile.def (gdbsupport): Depend on intl.
758 2020-02-17  Tom Tromey  <tom@tromey.com>
760         * configure: Rebuild.
761         * configure.ac (configdirs): Add gnulib and gdbsupport when building
762         gdbserver.
764 2020-02-14  Tom Tromey  <tom@tromey.com>
766         * Makefile.in: Rebuild.
767         * Makefile.def: Make gdbserver require gnulib and libiberty.
769 2020-02-07  Tom Tromey  <tom@tromey.com>
770             Pedro Alves  <palves@redhat.com>
772         * src-release.sh (GDB_SUPPORT_DIRS): Add gdbserver.
773         * gdbserver: New directory, moved from gdb/gdbserver.
774         * configure.ac (host_tools): Add gdbserver.
775         Only build gdbserver on certain systems.
776         * Makefile.in, configure: Rebuild.
777         * Makefile.def (host_modules, dependencies): Add gdbserver.
778         * MAINTAINERS: Add gdbserver.
780 2020-01-28  Sergio Durigan Junior  <sergiodj@redhat.com>
782         * src-release.sh (getver): Look for gdbsupport's
783         create-version.sh script at the current directory if tool is
784         "gdb".
786 2020-01-19  Simon Marchi  <simon.marchi@polymtl.ca>
788         * remote-sim.c (gdbsim_target::wait): Return
789         sim_data->remote_sim_ptid instead of inferior_ptid.
791 2020-01-18  Nick Clifton  <nickc@redhat.com>
793         Binutils 2.34 branch created.
795 2020-01-18  Nick Clifton  <nickc@redhat.com>
797         Synchronize top level configure files with master version:
799         2020-01-01  Ben Elliston  <bje@gnu.org>
801         * config.guess: Update copyright years.
802         * config.sub: Likewise.
804         2019-12-21  Ben Elliston  <bje@gnu.org>
806         * config.guess (set_cc_for_build): Prevent multiple calls by
807         checking if $tmp is already set. We can't check CC_FOR_BUILD as
808         the user may set it externally. Thanks to Torbjörn Granlund for
809         the bug report.
811         2019-12-21  Torbjörn Granlund  <tg@gmplib.org>
813         * config.guess (alpha:Linux:*:*): Guard against missing
814         /proc/cpuinfo by redirecting standard error to /dev/null.
816         2019-09-12  Daniel Bittman  <danielbittman1@gmail.com>
818         * config.guess (*:Twizzler:*:*): New.
819         * config.sub (-twizzler*): New.
821         2019-07-24  Ben Elliston  <bje@gnu.org>
823         * config.guess (mips:OSF1:*.*): Whitespace cleanup.
825         2019-06-30  Ben Elliston  <bje@gnu.org>
827         * config.sub (case $os): Match nsk* and powerunix. Don't later
828         match nsk* and set os=nsk which removes the OS version number.
830         2019-06-30  Ben Elliston  <bje@gnu.org>
832         * config.sub: Recognise os108*.
834         2019-06-26  Ben Elliston  <bje@gnu.org>
836         * config.sub (hp300): Set $os to hpux.
838         2019-06-26  Ben Elliston  <bje@gnu.org>
840         * config.sub (vsta): Move into alphabetical order.
842         2019-06-10  Ben Elliston  <bje@gnu.org>
844         * config.guess (*:OS108:*:*): Recognise new OS.
846         2019-05-28  Ben Elliston  <bje@gnu.org>
848         * config.guess (*:Darwin:*:*): Run xcode-select to determine if a
849         system compiler is installed. If not, do not run set_cc_for_build,
850         as the default cc will open a dialog box asking to install
851         Xcode. If no C compiler is available, guess based on uname -p and
852         uname -m.
854         2019-05-28  Ben Elliston  <bje@gnu.org>
856         * config.guess (*:Darwin:*:*): Simplify UNAME_PROCESSOR.
858 2020-01-17  Simon Marchi  <simon.marchi@efficios.com>
860         * Makefile.def: Add dependencies of all-gdbsupport on all-bfd.
861         * Makefile.in: Re-generate.
863 2020-01-14  Tom Tromey  <tom@tromey.com>
865         * src-release.sh (GDB_SUPPORT_DIRS): Add gdbsupport.
866         * MAINTAINERS: Add gdbsupport.
867         * configure: Rebuild.
868         * configure.ac (configdirs): Add gdbsupport.
869         * gdbsupport: New directory, move from gdb/gdbsupport.
870         * Makefile.def (host_modules, dependencies): Add gnulib.
871         * Makefile.in: Rebuild.
873 2020-01-09  Aaron Merey  <amerey@redhat.com>
875         * config/debuginfod.m4: New file. Add macro AC_DEBUGINFOD. Adds
876         new configure option --with-debuginfod.
877         * configure: Regenerate.
878         * configure.ac: Call AC_DEBUGINFOD.
880 2019-12-26  Christian Biesinger  <cbiesinger@google.com>
882         * .gitignore: Add perf.data and perf.data.old.
884 2019-10-17  Sergio Durigan Junior  <sergiodj@redhat.com>
886         * src-release.sh (GDB_SUPPORT_DIRS): Add libctf.
888 2019-10-17  Alan Modra  <amodra@gmail.com>
890         PR 29
891         * src-release.sh (getver): Replace "head -1" with "head -n 1".
893 2019-07-30  Nick Alcock  <nick.alcock@oracle.com>
895         * Makefile.def (host_modules): libctf is no longer no_install.
896         * Makefile.in: Regenerated.
898 2019-07-13  Nick Alcock  <nick.alcock@oracle.com>
900         * Makefile.def (dependencies): all-ld depends on all-libctf.
901         * Makefile.in: Regenerated.
903 2019-09-09  Phil Blundell  <pb@pbcl.net>
905         binutils 2.33 branch created
907 2019-08-19  Tom Tromey  <tom@tromey.com>
909         * configure: Rebuild.
910         * configure.ac: Add --with-static-standard-libraries.
912 2019-08-09  Nick Clifton  <nickc@redhat.com>
914         * libiberty: Sync with gcc.  Bring in:
915         2019-08-08  Martin Liska  <mliska@suse.cz>
917         PR bootstrap/91352
918         * lrealpath.c (is_valid_fd): New function.
920         2019-07-24  Martin Liska  <mliska@suse.cz>
922         PR lto/91228
923         * simple-object-elf.c (simple_object_elf_copy_lto_debug_sections):
924         Find first '\0' starting from gnu_lto + 1.
926         2019-07-12  Ren Kimura  <rkx1209dev@gmail.com>
928         * simple-object-elf.c (simple_object_elf_match): Check zero value shstrndx.
929         This fixes a Bug 90924.
931         2019-07-22  Martin Liska  <mliska@suse.cz>
933         * simple-object-elf.c (simple_object_elf_copy_lto_debug_sections):
934         Do not search for gnu_lto_v1, but search for first '\0'.
936         2019-07-18  Eduard-Mihai Burtescu  <eddyb@lyken.rs>
938         * cplus-dem.c: Include rust-demangle.h.
939         * rust-demangle.c: Include rust-demangle.h.
940         * rust-demangle.h: New file.
942         2019-05-31  Michael Forney  <mforney@mforney.org>
944         * cp-demangle.c: Don't define CP_DYNAMIC_ARRAYS if __STDC_NO_VLA__
945         is non-zero.
947         2019-04-30  Ben L  <bobsayshilol@live.co.uk>
949         * d-demangle.c (dlang_parse_assocarray): Correctly handle error result.
950         * testsuite/d-demangle-expected: Add testcase.
952         * d-demangle.c (dlang_parse_tuple): Correctly handle error result.
953         * testsuite/d-demangle-expected: Add testcase.
955         * d-demangle.c (dlang_parse_structlit): Correctly handle error result.
956         * testsuite/d-demangle-expected: Add testcase.
958         * d-demangle.c (dlang_parse_arrayliteral): Correctly handle error result.
959         * testsuite/d-demangle-expected: Add testcase.
961         * d-demangle.c (dlang_parse_integer): Fix stack underflow.
962         * testsuite/d-demangle-expected: Add testcase.
964         * cp-demangle (d_print_comp_inner): Guard against a NULL 'typed_name'.
965         * testsuite/demangle-expected: Add testcase.
967         * cp-demangle.c (d_encoding): Guard against NULL return values from
968         d_right (dc).
969         * testsuite/demangle-expected: Add testcase.
971         2019-04-29  Ben L  <bobsayshilol@live.co.uk>
973         * cp-demangle.c (d_expression_1): Don't peek ahead unless the current
974         char is valid.
975         * testsuite/demangle-expected: Add testcase.
977         2019-04-10  Nick Clifton  <nickc@redhat.com>
979         PR 89394
980         * cp-demangle.c (cplus_demangle_fill_name): Reject negative
981         lengths.
982         (d_count_templates_scopes): Replace num_templates and num_scopes
983         parameters with a struct d_print_info pointer parameter.  Adjust
984         body of the function accordingly.  Add recursion counter and check
985         that the recursion limit is not reached.
986         (d_print_init): Pass dpi parameter to d_count_templates_scopes.
987         Reset recursion counter afterwards, unless the recursion limit was
988         reached.
990 2019-07-13  Joel Brobecker  <brobecker@adacore.com>
992         * src-release (getver): If $tool/gdbsupport/create-version.sh
993         exists, use that to determine the version number.
995 2019-06-21  Andreas Schwab  <schwab@linux-m68k.org>
997         * src-release.sh (GDB_SUPPORT_DIRS): Add gnulib.
999 2019-06-14  Tom Tromey  <tom@tromey.com>
1001         * MAINTAINERS: Add gnulib.
1002         * gnulib: New directory, move from gdb/gnulib.
1003         * configure.ac (host_libs): Add gnulib.
1004         * configure: Rebuild.
1005         * Makefile.def (host_modules, dependencies): Add gnulib.
1006         * Makefile.in: Rebuild.
1008 2019-06-03  Nick Clifton  <nickc@redhat.com>
1010         Revert:
1011         2019-05-29  Nick Clifton  <nickc@redhat.com>
1013         * configure.ac (noconfigdirs): Add libctf if the target does not use
1014         the ELF file format.
1015         * configure: Regenerate.
1017 2019-05-29  Nick Clifton  <nickc@redhat.com>
1019         * src-release.sh (do_proto_toplev): Add libctf to list of
1020         directories that can be disabled.
1022 2019-05-29  Nick Clifton  <nickc@redhat.com>
1024         * configure.ac (noconfigdirs): Add libctf if the target does not use
1025         the ELF file format.
1026         * configure: Regenerate.
1028 2019-05-28  Nick Alcock  <nick.alcock@oracle.com>
1030         * Makefile.def (dependencies): configure-libctf depends on all-bfd
1031         and all its deps.
1032         * Makefile.in: Regenerated.
1034 2019-05-28  Nick Alcock  <nick.alcock@oracle.com>
1036         * MAINTAINERS: Add libctf.
1038 2019-05-28  Nick Alcock  <nick.alcock@oracle.com>
1040         * Makefile.def (host_modules): Add libctf.
1041         * Makefile.def (dependencies): Likewise.
1042         libctf depends on zlib, libiberty, and bfd.
1043         * Makefile.in: Regenerated.
1044         * configure.ac (host_libs): Add libctf.
1045         * configure: Regenerated.
1047 2019-05-23  Jose E. Marchesi  <jose.marchesi@oracle.com>
1049         * config.guess: Synchronize with config project master sources.
1050         * config.sub: Likewise.
1051         * readline/support/config.guess: Likewise.
1052         * readline/support/config.sub: Likewise.
1054 2019-04-10  Nick Clifton  <nickc@redhat.com>
1056         * libiberty: Sync with gcc.  Bring in:
1057         2019-04-10  Nick Clifton  <nickc@redhat.com>
1059         PR 89394
1060         * cp-demangle.c (cplus_demangle_fill_name): Reject negative
1061         lengths.
1062         (d_count_templates_scopes): Replace num_templates and num_scopes
1063         parameters with a struct d_print_info pointer parameter.  Adjust
1064         body of the function accordingly.  Add recursion counter and check
1065         that the recursion limit is not reached.
1066         (d_print_init): Pass dpi parameter to d_count_templates_scopes.
1067         Reset recursion counter afterwards, unless the recursion limit was
1068         reached.
1070 2018-06-24  Nick Clifton  <nickc@redhat.com>
1072         2.32 branch created.
1074 2019-01-14  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
1076         Merge from GCC:
1077         PR target/88535
1078         * config.guess: Import upstream version 2019-01-03.
1079         * config.sub: Import upstream version 2019-01-01.
1081 2019-01-10  Nick Clifton  <nickc@redhat.com>
1083         * libiberty: Sync with gcc.  Bring in:
1084         2019-01-09  Sandra Loosemore  <sandra@codesourcery.com>
1086         PR other/16615
1088         * cp-demangle.c: Mechanically replace "can not" with "cannot".
1089         * floatformat.c: Likewise.
1090         * strerror.c: Likewise.
1092         2018-12-22  Jason Merrill  <jason@redhat.com>
1094         Remove support for demangling GCC 2.x era mangling schemes.
1095         * cplus-dem.c: Remove cplus_mangle_opname, cplus_demangle_opname,
1096         internal_cplus_demangle, and all subroutines.
1097         (libiberty_demanglers): Remove entries for ancient GNU (pre-3.0),
1098         Lucid, ARM, HP, and EDG demangling styles.
1099         (cplus_demangle): Remove 'work' variable.  Don't call
1100         internal_cplus_demangle.
1102 2019-01-03  Дилян Палаузов  <dilyan.palauzov@aegee.org>
1104         * configure.ac: Don't configure readline if --with-system-readline is
1105         used.
1106         * configure: Re-generate.
1108 2018-10-31  Joseph Myers  <joseph@codesourcery.com>
1110         Merge from GCC:
1111         PR bootstrap/82856
1112         * multilib.am: New file.  From automake.
1114 2018-09-12  Sergio Durigan Junior  <sergiodj@redhat.com>
1116         * src-release.sh (GDB_SUPPORT_DIRS): Add "contrib".
1118 2018-07-16  Nick Clifton  <nickc@redhat.com>
1120         * src-release.sh (DEVO_SUPPORT): Add test-driver and ar-lib.
1122 2018-07-06  Sebastian Huber  <sebastian.huber@embedded-brains.de>
1124         * config.sub: Sync with upstream version 2018-07-03.
1126 2018-07-05  Sebastian Huber  <sebastian.huber@embedded-brains.de>
1128         * config.guess: Sync with upstream version 2018-06-26.
1129         * config.sub: Sync with upstream version 2018-07-02.
1131 2018-06-29  Alexandre Oliva <oliva@adacore.com>
1133         * configure.ac: Introduce support for @unless/@endunless.
1134         * Makefile.tpl (dep-kind): Rewrite with cond; return
1135         postbootstrap in some cases.
1136         (make-postboot-dep, postboot-targets): New.
1137         (dependencies): Do not output postbootstrap dependencies at
1138         first.  Output non-target ones changed for configure to depend
1139         on stage_last @if gcc-bootstrap, and the original deps @unless
1140         gcc-bootstrap.
1141         * configure.in, Makefile.in: Rebuilt.
1143 2018-06-24  Nick Clifton  <nickc@redhat.com>
1145         * configure: Regenerate.
1147 2018-06-19  Simon Marchi  <simon.marchi@ericsson.com>
1149         * libtool.m4: Use AC_LANG_SOURCE.
1150         * configure.ac: Remove AC_PREREQ, use AC_LANG_SOURCE.
1151         * README-maintainer-mode: Update version requirements.
1152         * ar-lib: New file.
1153         * test-driver: New file.
1154         * configure: Re-generate.
1156 2018-06-18  Eric Botcazou  <ebotcazou@adacore.com>
1158         * Makefile.def (fortran): Add check-target-libgomp-fortran.
1159         * Makefile.tpl (check-target-libgomp-fortran): New phony target.
1160         * Makefile.in: Regenerate.
1162         * configure: Regenerate.
1164 2018-06-18  Simon Marchi  <simon.marchi@ericsson.com>
1166         * configure.ac: Sync with GCC, remove MPX-related things.
1168 2018-05-01  Nick Clifton  <nickc@redhat.com>
1170         * config.guess: Synchronize with config project master sources.
1171         * config.sub: Likewise.
1173 2018-05-01  Francois H. Theron  <francois.theron@netronome.com>
1175         * configure.ac: Added "nfp" target.
1176         * configure: Regenerate.
1178 2018-02-13  Maciej W. Rozycki  <macro@mips.com>
1180         * configure.ac <wasm32-*-*> (noconfigdirs): Add `ld'.
1181         * configure: Regenerate.
1183 2018-01-30  Nick Clifton  <nickc@redhat.com>
1185         * src-release.sh (do_proto_toplev): Add patterns for more junk files
1186         to delete before creating the tarball.
1188 2018-01-29  Nick Clifton  <nickc@redhat.com>
1190         * src-release.sh (do_proto_toplev): Strip patch remnant files from
1191         the sources before creating the tarball.
1193 2018-01-13  Nick Clifton  <nickc@redhat.com>
1195         * src-release.sh: Update copyright notice.  Change reference to devo
1196         to be a reference to root.
1198 2018-01-10  Nick Clifton  <nickc@redhat.com>
1200         * config-ml.in: Sync with gcc sources.
1201         * config.guess: Likewise.
1202         * config.sub: Likewise.
1203         * configure.ac: Likewise.
1204         * configure: Regenerate.
1206 2017-12-14  Nick Clifton  <nickc@redhat.com>
1208         * COPYING.LIBGLOSS: Update address of FSF in copyright notice.
1210 2017-12-12  Stafford Horne  <shorne@gmail.com>
1212         * configure.ac: Remove logic adding gdb to noconfigsdirs for or1k.
1213         * configure: Regenerate.
1215 2017-09-15  Nick Clifton  <nickc@redhat.com>
1217         * src-release.sh (LZIPPROG): New define.  Provides the name of the
1218         lzip program.
1219         (do_lz): New function.  Compresses a tarball using the lzip
1220         program.
1221         (do_compress): Add support for lzip compression.
1222         (usage): Mention -l option.
1223         (build_release): Support -l option to invoke lzip compression.
1225 2017-09-15  Alan Modra  <amodra@gmail.com>
1227         * src-release.sh (do_proto_toplev): Revert last patch.  Enable or
1228         disable binutils, gas, gdb, gold, gprof, ld, libdecnumber, readline,
1229         and sim depending on $tool and $support_files.  Echo configure line.
1231 2017-09-14  Matt Rice <ratmice@gmail.com>
1233         * src-release.sh (do_proto_toplev): Enable gold during release process.
1235 2017-04-13  Andrew Jenner  <andrew@codesourcery.com>
1237         * config.sub: Sync with master version in config project.
1239 2017-04-03  Andrew Jenner  <andrew@codesourcery.com>
1241         * config.sub: Handle ia16 in $basic_machine.
1243         bfd/
1244         * config.bfd: Handle ia16.
1246         gas/
1247         * configure.tgt: Handle ia16.
1249         ld/
1250         * configure.tgt: Handle ia16.
1252 2017-03-22  Nick Clifton  <nickc@redhat.com>
1254         * config.sub: Sync with master version in config project.
1255         * config.guess: Likewise.
1257 2017-01-23  Nick Clifton  <nickc@redhat.com>
1259         * configure.ac: Update year in copyright notice.
1260         Sync from FSF GCC mainline, bringing in the following patches.
1261         * Makefile.def: Likewise.
1262         * Makefile.tpl: Likewise.
1263         * configure: Regenerate.
1264         * Makefile.in: Regenerate.
1266         2016-12-21  Jakub Jelinek  <jakub@redhat.com>
1268         * configure.ac: Don't bootstrap libmpx unless --with-build-config
1269         includes bootstrap-mpx.
1271         2016-12-01  Matthias Klose  <doko@ubuntu.com>
1273         * configure.ac: Don't use pkg-config to check for bdw-gc.
1275         2016-11-30  Matthias Klose  <doko@ubuntu.com>
1277         * Makefile.def: Remove reference to boehm-gc target module.
1278         * configure.ac: Include pkg.m4, check for --with-target-bdw-gc
1279         options and for the bdw-gc pkg-config module.
1281         2016-11-15  Matthias Klose  <doko@ubuntu.com>
1283         * config-ml.in: Remove references to GCJ.
1284         * configure.ac: Likewise.
1286         2016-09-30  Jakub Jelinek  <jakub@redhat.com>
1288         * configure.ac: Add target-libffi to target_libraries.
1289         Readd libgcj target disablings, modified to only target-libffi.
1290         Readd target addition of go to unsupported languages.
1292         2016-09-30  Andrew Haley  <aph@redhat.com>
1294         * Makefile.def: Remove libjava.
1295         * Makefile.tpl: Likewise.
1296         * configure.ac: Likewise.
1298         2016-09-26  Anton Kolesov  <Anton.Kolesov@synopsys.com>
1300         * configure.ac: Disable "sim" directory for arc*-*-*.
1302         2016-09-12  Maciej W. Rozycki  <macro@imgtec.com>
1304         * configure.ac: Check for the minimum in-tree MPFR version
1305         handled.
1307 2016-12-31  Alan Modra  <amodra@gmail.com>
1309         * config.sub: Import from upstream.
1311 2016-12-08  Alan Modra  <amodra@gmail.com>
1313         * configure: Regenerate.
1315 2016-12-02  Josh Conner  <joshconner@google.com>
1317         * configure.ac: Add fuchsia to targets that use ELF.
1318         * configure: Regenerated.
1320 2016-11-07  Doug Evans  <dje@google.com>
1322         * config.sub: Sync with upstream version 2016-11-03.
1323         git://git.sv.gnu.org/config.git
1324         * config.guess: Sync with upstream version 2016-10-02.
1326 2016-09-27  Simon Marchi  <simon.marchi@polymtl.ca>
1328         * .gitignore: Add archives and make stamps.
1330 2016-07-20  Yan-Ting Lin  <currygt52@gmail.com>
1332         * configure.ac (nds32*-*-*): Remove entry to enable gdb.
1333         * configure: Regenerated.
1335 2016-06-28  Walter Lee  <walt@tilera.com>
1337         * configure.ac (tilepro-*-*): Add gdb to noconfigdirs.
1338         * configure: Regenerate.
1340 2016-05-28  Alan Modra  <amodra@gmail.com>
1342         * Makefile.tpl (configure): Depend on m4 files included.
1343         * Makefile.in: Regenerate.
1345 2016-05-27  Nick Clifton  <nickc@redhat.com>
1347         * config.guess (Alpha OSF1): Fix typo introduced during the most
1348         recent synchronization update.
1350 2016-05-23  Nick Clifton  <nickc@redhat.com>
1352         * Import these patches from the gcc mainline:
1354         2016-05-16  Jakub Sejdak  <jakub.sejdak@phoesys.com>
1356         * config.guess: Import version 2016-04-02 (newest).
1357         * config.sub: Import version 2016-05-10 (newest).
1359 2016-04-19  Nick Clifton  <nickc@redhat.com>
1361         * Import this patch from the GCC mainline:
1363         2016-04-13  Segher Boessenkool  <segher@kernel.crashing.org>
1365         PR bootstrap/70173
1366         * Makefile.tpl (local-distclean): Delete the libcc1, gnattools,
1367         and gotools directories.  Delete the stage_final file.
1368         * Makefile.in: Regenerate.
1370 2016-03-17  Cary Coutant  <ccoutant@gmail.com>
1372         * configure.ac: Add mips and s390 to the gold target check.
1373         * configure: Regenerate.
1375 2016-02-10  Nick Clifton  <nickc@redhat.com>
1377         Import these patches from the GCC mainline:
1379         2016-01-12  Andris Pavenis  <andris.pavenis@iki.fi>
1381         * configure.ac: Enable LTO for DJGPP
1382         * configure: Regenerate
1384         2016-01-24  Mikhail Maltsev  <maltsevm@gmail.com>
1386         PR bootstrap/69329
1387         * Makefile.tpl (BASE_FLAGS_TO_PASS): Add LSAN_OPTIONS.
1388         * Makefile.in: Regenerate.
1390         2016-01-25  Aditya Kumar  <aditya.k7@samsung.com>
1391                     Sebastian Pop  <s.pop@samsung.com>
1393         * Makefile.in: Regenerate.
1394         * Makefile.tpl: Export ISLVER.
1395         * configure: Regenerate.
1396         * config/isl.m4: Detect isl-0.15.
1398         2016-01-29  Sebastian Pop  <s.pop@samsung.com>
1400         * config/isl.m4: Add comments about isl-0.16.
1401         * configure: Regenerate.
1403 2016-01-12  H.J. Lu  <hongjiu.lu@intel.com>
1405         Sync with GCC
1406         2015-11-26  David Edelsohn  <dje.gcc@gmail.com>
1408         * m4/libtool.m4 (export_symbols_cmds) [AIX]: Add global TLS "L"
1409         symbols.
1411         2016-01-12  Bernd Edlinger  <bernd.edlinger@hotmail.de>
1413         PR bootstrap/69134
1414         * Makefile.def (mpfr): Disable assembler.
1415         * Makefile.in: Regenerate.
1417 2016-01-11  Nick Clifton  <nickc@redhat.com>
1419         Import the following changes from the GCC mainline:
1421         2015-11-13  Tsvetkova Alexandra  <aleksandra.tsvetkova@intel.com>
1423         * configure.ac: Enable libmpx by default.
1424         * configure: Regenerated.
1426         2015-11-19  Martin Liska  <mliska@suse.cz>
1428         * .gitignore: Add .clang-format to ignored files.
1429         * Makefile.tpl: Add clang-format.
1430         * Makefile.in: Regenerate.
1432         2015-12-01  Andreas Tobler  <andreast@gcc.gnu.org>
1434         PR libffi/65726
1435         * Makefile.def (lang_env_dependencies): Make libffi depend
1436         on cxx.
1437         * Makefile.in: Regenerate.
1439         2015-12-02  Ian Lance Taylor  <iant@google.com>
1441         PR go/66147
1442         * Makefile.tpl (HOST_EXPORTS): Add XGCC_FLAGS_FOR_TARGET.
1443         * Makefile.in: Regenerate.
1445         2015-12-17  Nathan Sidwell  <nathan@acm.org>
1447         * config/isl.m4 (ISL_CHECK_VERSION): Add gmp libs.
1448         * configure: Regenerate.
1450         2015-12-17  Sebastian Pop  <s.pop@samsung.com>
1452         * Makefile.in: Replace ISL with isl.
1453         * Makefile.tpl: Same.
1454         * config/isl.m4: Same.
1455         * configure.ac: Same.
1456         * contrib/download_prerequisites: Same.
1457         * configure: Regenerate.
1459         2016-01-01  Ben Elliston  <bje@gnu.org>
1461         * config.guess: Import version 2016-01-01.
1462         * config.sub: Likewise.
1464 2015-11-20  Tristan Gingold  <gingold@adacore.com>
1466         * configure.ac: Add aarch64-*-darwin* and arm-*-darwin*.
1467         * configure: Regenerate.
1469 2015-10-21  Nick Clifton  <nickc@redhat.com>
1471         PR gas/19109
1472         * configure.ac: Note the 'none' is an acceptable argument to
1473         --enable-compressed-debug-sections.
1474         * configure: Regenerate.
1476 2015-10-20  H.J. Lu  <hongjiu.lu@intel.com>
1478         PR gas/19109
1479         * configure.ac: Add
1480         --enable-compressed-debug-sections={all,gas,gold,ld}.
1481         * configure: Regenerated.
1483 2015-09-30  Nick Clifton  <nickc@redhat.com>
1485         Import the following patches from the GCC mainline:
1487         2015-08-23  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
1489         PR libfortran/54572
1490         * Makefile.def: Make libgfortran depend on libbacktrace.
1491         * Makefile.in: Regenerate.
1493         2015-08-12  Tom de Vries  <tom@codesourcery.com>
1495         PR other/67092
1496         PR other/67098
1497         * configure.ac: Remove --with_host_libstdcxx support.
1498         * configure: Regenerate.
1500         2015-08-10  Thomas Schwinge  <thomas@codesourcery.com>
1501             Jakub Jelinek  <jakub@redhat.com>
1503         * configure.ac (noconfigdirs): Don't add "target-libgomp" for target
1504         nvptx*-*-*.
1505         * configure: Regenerate.
1507 2015-08-07  H.J. Lu  <hongjiu.lu@intel.com>
1509         Sync with GCC
1510         2015-07-28  Ben Elliston  <bje@gnu.org>
1512         * config.sub, config.guess: Import from upstream.
1514 2015-08-06  Yaakov Selkowitz  <yselkowi@redhat.com>
1516         * Makefile.def (libiconv): Define bootstrap=true.
1517         Mark pdf/html/info as missing.
1518         (configure-gcc): Depend on all-libiconv.
1519         (all-gcc): Ditto.
1520         (configure-libcpp): Ditto.
1521         (all-libcpp): Ditto.
1522         (configure-intl): Ditto.
1523         (all-intl): Ditto.
1524         * Makefile.in: Regenerate.
1526 2015-07-27  H.J. Lu  <hongjiu.lu@intel.com>
1528         Sync with GCC
1529         2015-07-24  Michael Darling  <darlingm@gmail.com>
1531         PR other/66259
1532         * config-ml.in: Reflects renaming of configure.in to configure.ac
1533         * configure: Likewise
1534         * configure.ac: Likewise
1536 2015-07-14  H.J. Lu  <hongjiu.lu@intel.com>
1538         * Makefile.in: Regenerated.
1540         Sync with GCC
1541         2015-05-21  Jason Merrill  <jason@redhat.com>
1543         * Makefile.tpl: Update comments.
1545         2015-04-22  Bernhard Reutner-Fischer  <aldot@gcc.gnu.org>
1547         * Makefile.tpl: Remove surplus whitespace throughout.
1549         2015-03-25  Martin Liska  <mliska@suse.cz>
1550                     Yury Gribov  <y.gribov@samsung.com>
1552         * Makefile.tpl: Fix ln source location for vimrc file.
1554 2015-07-14  H.J. Lu  <hongjiu.lu@intel.com>
1556         Sync with GCC
1557         2015-05-16  James Bowman  <james.bowman@ftdichip.com>
1559         * configure.ac: FT32 target added.
1560         * configure: Regenerate.
1562 2015-07-14  H.J. Lu  <hongjiu.lu@intel.com>
1564         Sync with GCC
1565         2015-06-02  Jason Merrill  <jason@redhat.com>
1567         PR bootstrap/66319
1568         * configure.ac: Use -std=gnu++98.
1570         2015-05-28  Mike Frysinger  <vapier@gentoo.org>
1572         * configure.ac (--vtable-verify): Use AS_HELP_STRING for help.
1573         * configure: Regenerate.
1575         2015-05-11  Paulo Matos  <paulo@matos-sorge.com>
1577         * configure.ac: Fix typo.
1578         * configure: Regenerate.
1580         2015-05-03  Matthias Klose  <doko@ubuntu.com>
1582         * configure.ac: Match $host configured with triplets.
1583         * configure: Regenerate.
1585         2015-04-17  Jakub Jelinek  <jakub@redhat.com>
1587         PR bootstrap/62077
1588         * configure.ac (--enable-stage1-checking): Default to
1589         release,misc,gimple,rtlflag,tree,types if --disable-checking
1590         or --enable-checking is not specified and DEV-PHASE is not
1591         experimental.
1592         * configure: Regenerated.
1594         2015-03-27  Uros Bizjak  <ubizjak@gmail.com>
1596         Install back PR target/47230 fix (Revert the revert).
1598 2015-06-30  H.J. Lu  <hongjiu.lu@intel.com>
1600         * configure.ac (ospace_frag): Enable for i?86*-*-elfiamcu
1601         target.
1602         * configure: Regenerate.
1604 2015-05-13  John David Anglin  <dave.anglin@bell.net>
1606         * configure.ac: Disable configuration of GDB for HPUX targets.
1607         * configure: Regenerate.
1609 2015-05-01  H.J. Lu  <hongjiu.lu@intel.com>
1611         PR ld/18355
1612         * Makefile.def: Add extra_configure_flags to host zlib.
1613         * configure.ac (extra_host_zlib_configure_flags): New.  Set
1614         to --enable-host-shared When bfd is to be built as shared
1615         library.  AC_SUBST.
1616         * Makefile.in: Regenerated.
1618 2015-04-15  Mike Frysinger  <vapier@gentoo.org>
1619             Hans-Peter Nilsson  <hp@axis.com>
1621         Adjust src-release.sh for sim using the gdb create-version.sh.
1622         * src-release.sh (tar_compress): If there's a fifth parameter,
1623         use that in the getver call instead of $tool.
1624         (sim_release): Pass gdb as fifth parameter to tar_compress.
1625         (SIM_SUPPORT_DIRS): Add gdb/common/create-version.sh.
1627 2015-04-14  Max Ostapenko  <m.ostapenko@partner.samsung.com>
1629         * Makefile.tpl (EXTRA_HOST_EXPORTS): New variables.
1630         (EXTRA_BOOTSTRAP_FLAGS): Likewise.
1631         (check-[+module+]): Add EXTRA_HOST_EXPORTS and EXTRA_BOOTSTRAP_FLAGS.
1632         * Makefile.in: Regenerate.
1634 2015-04-01  H.J. Lu  <hongjiu.lu@intel.com>
1636         * configure.ac: Add --with-system-zlib.
1637         * configure: Regenerated.
1639 2015-03-31  H.J. Lu  <hongjiu.lu@intel.com>
1641         * src-release.sh: Don't configure with  --with-target-subdir=.
1642         --disable-multilib.
1644 2015-03-31  H.J. Lu  <hongjiu.lu@intel.com>
1646         * src-release.sh (DEVO_SUPPORT): Replace src-release with
1647         src-release.sh.
1649 2015-03-30  Ed Schouten  <ed@nuxi.nl>
1651         * config.sub: Update from upstream, to 2015-03-04 version.
1652         * config.guess: Likewise.
1654 2015-03-30  H.J. Lu  <hongjiu.lu@intel.com>
1656         * Makefile.def (dependencies): Add all-zlib to all-bfd.
1657         * Makefile.in: Regenerated.
1659 2015-03-28  H.J. Lu  <hongjiu.lu@intel.com>
1661         * src-release.sh (do_proto_toplev): Configure with --target
1662         --with-target-subdir and --disable-multilib.
1663         (BINUTILS_SUPPORT_DIRS): Add zlib.
1664         (GAS_SUPPORT_DIRS): Likewise.
1665         (GDB_SUPPORT_DIRS): Likewise.
1666         (SIM_SUPPORT_DIRS): Likewise.
1668 2015-03-17  H.J. Lu  <hongjiu.lu@intel.com>
1670         * configure.ac (target_configdirs): Exclude target-zlib if
1671         target-libjava isn't built.
1672         * configure: Regenerated.
1674 2015-03-17  H.J. Lu  <hongjiu.lu@intel.com>
1676         Sync with GCC
1677         2014-06-13  Thomas Schwinge  <thomas@codesourcery.com>
1679         * config-ml.in: Robustify ac_configure_args parsing.
1681 2015-03-16  H.J. Lu  <hongjiu.lu@intel.com>
1683         * Makefile.def: Updated from GCC trunk.
1684         * Makefile.tpl: Likewise.
1685         * configure.ac: Likewise.
1686         * Makefile.in: Regenerated.
1687         * configure: Likewise.
1689 2015-01-28  James Bowman  <james.bowman@ftdichip.com>
1691         * configure.ac: Add FT32 support.
1692         * configure: Regenerate.
1694 2015-01-12  Anthony Green  <green@moxielogic.com>
1696         * configure.ac: Don't disable gprof for moxie.
1697         * configure: Rebuild.
1699 2015-01-03  Andrew Pinski  <apinski@cavium.com>
1701         * Makefile.def (flags_to_pass): Pass OBJCOPY_FOR_TARGET also.
1702         * Makefile.tpl (HOST_EXPORTS): Add OBJCOPY_FOR_TARGET.
1703         (BASE_TARGET_EXPORTS): Add OBJCOPY.
1704         (OBJCOPY_FOR_TARGET): New variable.
1705         (EXTRA_TARGET_FLAGS): Add OBJCOPY.
1706         * Makefile.in: Regenerate.
1707         * configure.ac: Check for already installed target objcopy.
1708         Also GCC_TARGET_TOOL on objcopy.
1709         * configure: Regenerate.
1711 2015-01-02  Hans-Peter Nilsson  <hp@bitrange.com>
1713         * config.sub: Update from upstream, to 2015-01-01 version.
1714         * config.guess: Ditto.
1716 2014-12-06  Eric Botcazou  <ebotcazou@adacore.com>
1718         * config.sub: Update from upstream config repo.
1720 2014-11-24  H.J. Lu  <hongjiu.lu@intel.com>
1722         * libtool.m4: Updated from GCC trunk.
1724 2014-11-16  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
1726         * config.guess: Update from upstream config repo.
1727         * config.sub: Ditto.
1729 2014-11-16  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
1731         * move-if-change: Update from upstream gnulib.
1733 2014-11-16  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
1735         * compile: Sync with upstream Automake.
1736         * depcomp: Ditto.
1737         * install-sh: Ditto.
1738         * missing: Ditto.
1739         * mkinstalldirs: Ditto.
1740         * ylwrap: Ditto.
1742 2014-10-15  Tristan Gingold  <gingold@adacore.com>
1744         * src-release.sh (do_proto_toplev): Configure with --target.
1746 2014-10-03  Jing Yu  <jingyu@google.com>
1748         * configure.ac: Add aarch64 to list of targets that support gold.
1749         * configure: Regenerate.
1751 2014-09-12  Andrew Bennett  <andrew.bennett@imgtec.com>
1753         * configure.ac: Add mips*-img-elf* target triple.
1754         * configure: Regenerate.
1756 2014-09-06  Kuan-Lin Chen  <kuanlinchentw@gmail.com>
1757         * configure: Disable gdb for nds32*-*-* until supported.
1758         * configure.ac: Disable gdb for nds32*-*-* until supported.
1760 2014-09-05  Joel Brobecker  <brobecker@adacore.com>
1762         * configure: Regenerate.
1764 2014-08-27  Will Newton  <will.newton@linaro.org>
1766         * src-release.sh: New file.
1767         * src-release: Remove file.
1769 2014-07-27  Joel Sherrill <joel.sherrill@oarcorp.com>
1771         GDB not supported for or1k*-*-rtems*
1772         * configure.ac (or1k*-*-rtems*): gdb not supported.  The ordering
1773         of the stanzas results in this not being caught by or1k*-*-* later.
1774         * configure. Regenerated.
1776 2014-07-25  Samuel Bronson  <naesten@gmail.com>
1778         * .gitattributes: New file for use with git-merge-changelog.
1780 2014-07-21  Joel Sherrill  <joel.sherrill@oarcorp.com>
1782         Disable gdb for or1k*-*-* until supported
1783         * configure.ac (or1k*-*-*): Disable gdb.
1784         * configure: Regenerated.
1786 2014-05-14  Sandra Loosemore  <sandra@codesourcery.com>
1788         * configure.ac (target_makefile_frag): Set for nios2-*-elf*.
1789         * configure: Regenerated.
1791 2014-03-26  Jakub Jelinek  <jakub@redhat.com>
1793         PR sanitizer/56781
1794         * Makefile.def: Set bootstrap=true; for host fixincludes.
1795         * configure.ac: Don't bootstrap host fixincludes unless
1796         --with-build-config=bootstrap-{a,ub}san.
1797         * Makefile.in: Regenerated.
1798         * configure: Regenerated.
1800 2014-03-21  Jakub Jelinek  <jakub@redhat.com>
1802         * configure.ac: Move BUILD_CONFIG set up earlier.  Add
1803         --enable-vtable-verify option parsing.  Don't add
1804         target-libsanitizer to bootstrap_target_libs unless
1805         --with-build-config=bootstrap-asan or
1806         --with-build-config=bootstrap-ubsan.  Don't add target-libvtv
1807         to bootstrap_target_libs unless --enable-vtable-verify.
1808         * configure: Regenerated.
1810 2014-03-07  Jakub Jelinek  <jakub@redhat.com>
1812         PR bootstrap/58572
1813         * Makefile.tpl (POSTSTAGE1_CXX_EXPORT): Use -isystem instead of
1814         -I for libstdc++-v3 includes if $(LEAN).
1815         * Makefile.in: Regenerated.
1817 2014-02-24  Walter Lee  <walt@tilera.com>
1819         * configure.ac (tilepro-*-*) Change to tilepro*-*-*.
1820         (tilegx-*-*): Change to tilegx*-*-*.
1821         * configure: Regenerate.
1823 2014-05-01  Richard Sandiford  <rdsandiford@googlemail.com>
1825         * config.sub, config.guess: Import from upstream.
1827 2014-04-04  Eric Botcazou  <ebotcazou@adacore.com>
1829         PR bootstrap/60620
1830         * Makefile.def (dependencies): Make gnattools depend on libstdc++-v3.
1831         * Makefile.in: Regenerate.
1833 2014-03-28  Yaakov Selkowitz  <yselkowitz@users.sourceforge.net>
1835         * Makefile.def (dependencies): Make all-ld depend on all-binutils
1836         for WINDRES_FOR_TARGET in default-manifest.o rule.
1837         * Makefile.in: Regenerate.
1839 2014-02-04  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
1841         PR target/59788
1842         * ltmain.sh (opt_duplicate_compiler_generated_deps): Enable on
1843         *solaris2*.
1845 2013-12-19  Keven Boell  <keven.boell@intel.com>
1847         * cp-namespace.c (cp_lookup_nested_symbol): Enable
1848         nested lookups for fortran modules.
1849         * dwarf2read.c (read_module): Add fortran module to
1850         the symbol table.
1851         (add_partial_symbol, add_partial_module): Add fortran
1852         module to the partial symbol table.
1853         (new_symbol_full): Create full symbol for fortran module.
1854         * f-exp.y (yylex): Add new module domain to be parsed.
1855         * symtab.h: New domain for fortran modules.
1857 2013-12-19  Keven Boell  <keven.boell@intel.com>
1859         * f-exp.y (yylex): Add domain array to enable lookup
1860         in multiple domains. Loop over lookup domains and try
1861         to find requested symbol. Add STRUCT_DOMAIN to lookup
1862         domains to be able to query for user defined types.
1864 2013-12-13  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
1866         * configure.ac: Add user-friendly check for native x86_64-linux
1867         multilibs.
1868         * configure: Regenerate.
1870 2013-11-23  Alan Modra  <amodra@gmail.com>
1872         * config.sub, config.guess: Import from upstream.
1874 2013-11-07  Thomas Schwinge  <thomas@codesourcery.com>
1876         * Makefile.in: Regenerate.
1878         * Makefile.tpl: Fix typo.
1879         * Makefile.in: Regenerate partially.
1881 2013-11-04  Balaji V. Iyer  <balaji.v.iyer@intel.com>
1883         * configure.ac: Added libcilkrts to noconfig list when C++ is not
1884         supported.
1885         * configure: Regenerated.
1887 2013-10-30  Jason Merrill  <jason@redhat.com>
1889         * Makefile.tpl (STAGE1_CONFIGURE_FLAGS): Pass
1890         --disable-build-format-warnings.
1892 2013-10-29  Balaji V. Iyer  <balaji.v.iyer@intel.com>
1894         * Makefile.def: Add libcilkrts to target_modules.  Make libcilkrts
1895         depend on libstdc++ and libgcc.
1896         * configure: Regenerate.
1897         * configure.ac: Added libcilkrts to target binaries.  Also, restrict
1898         libcilkrts for POSIX and i*86, and x86_64 architectures.
1899         * Makefile.in: Added libcilkrts related fields to support building it.
1901 2013-10-26  Jeff Law  <law@redhat.com>
1903         * Makefile.def (target_modules): Remove libmudflap
1904         (languages): Remove check-target-libmudflap).
1905         * Makefile.in: Rebuilt.
1906         * Makefile.tpl (check-target-libmudflap-c++): Remove.
1907         * configure.ac (target_libraries): Remove target-libmudflap.
1908         Remove checks which disabled libmudflap on some systems.
1909         * configure: Rebuilt.
1910         * libmudflap: Directory removed.
1912 2013-10-16  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
1914         * configure.ac: Update from GCC.
1915         * configure: Regenerate.
1917 2013-10-15  Hans-Peter Nilsson  <hp@axis.com>
1919         * src-release (do-proto-toplevel): Support subdir-path-prefixed
1920         files in SUPPORT_FILES.
1921         (SIM_SUPPORT_DIRS): New variable.
1922         (sim.tar.bz2): New rule.
1924 2013-10-08  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
1926         * configure.ac: Update from GCC.
1927         * configure: Regenerate.
1929 2013-10-01  Jeff Johnston  <jjohnstn@redhat.com>
1931         * COPYING.NEWLIB: Update with new copyright.
1933 2013-09-21  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
1935         * configure.ac: Update from GCC.
1936         * configure: Regenerate.
1938 2013-09-20  Alan Modra  <amodra@gmail.com>
1940         * libtool.m4 (_LT_ENABLE_LOCK <ld -m flags>): Remove non-canonical
1941         ppc host match.  Support little-endian powerpc linux hosts.
1943 2013-08-16  Joel Brobecker  <brobecker@adacore.com>
1945         * src-release (VER): When using $(TOOL)/common/create-version.sh,
1946         strip the "-cvs" suffix from the version number if present.
1948 2013-08-12  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
1950         * configure.ac: Sync with GCC repo.
1951         * Makefile.def: Ditto.
1952         * configure: Regenerate.
1953         * Makefile.in: Ditto.
1955 2013-07-22  Joel Brobecker  <brobecker@adacore.com>
1957         * src-release (VER): Use $(TOOL)/common/create-version.sh
1958         if it exists.
1960 2013-06-22  Richard Sandiford  <rdsandiford@googlemail.com>
1962         * configure.ac (mips*-*-bsd*, mips*-*-ultrix*, mips*-*-osf*)
1963         (mips*-*-ecoff*, mips*-*-pe*, mips*-*-irix* [v4 and earlier])
1964         (mips*-*-lnews*, mips*-*-riscos*): Add gas and ld to noconfigdirs.
1965         * configure: Regenerate.
1967 2013-06-01  George Thomas <george.thomas@atmel.com>
1969         * include/opcode/avr.h: Rename AVR_ISA_XCH to AVR_ISA_RMW. Remove
1970         from AVR_ISA_XMEGA and add new AVR_ISA_XMEGAU
1972 2013-05-06  Sandra Loosemore  <sandra@codesourcery.com>
1974         * COPYING.NEWLIB: Add Altera Corporation copyright.
1976 2013-04-29  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
1978         * config.guess: Update from config repo.
1979         * config.sub: Ditto.
1981 2013-04-22  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
1983         * Makefile.def: Sync with GCC.
1984         * Makefile.in: Regenerate.
1986 2013-04-22  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
1988         * configure.ac: Sync with GCC.
1989         * configure: Regenerate.
1991 2013-03-22  Mike Frysinger  <vapier@gentoo.org>
1993         * src-release (VER): Change bfd/configure.in sed to use the new
1994         `bfd/configure --version` output.
1996 2013-02-15  Yufeng Zhang  <yufeng.zhang@arm.com>
1998         * configure.ac: Sync with GCC repo.
1999         * configure: Ditto.
2001 2013-02-05  Ian Lance Taylor  <iant@google.com>
2003         PR go/55969
2004         * configure.ac: Disable libgo on some systems where it does not
2005         work.
2006         * configure: Rebuild.
2008 2013-02-05  Alan Modra  <amodra@gmail.com>
2010         * configure: Regenerate after syncing config/.
2012 2013-01-15  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
2014         * configure.ac: Sync with GCC repo.
2015         * configure: Ditto.
2016         * Makefile.def: Ditto.
2017         * Makefile.in: Ditto.
2019 2013-01-11  Joel Brobecker  <brobecker@adacore.com>
2021         Sync with GCC, merge:
2023         2013-01-09  Jason Merrill  <jason@redhat.com>
2025         * .gitignore: Import from gdb repository.
2027 2013-01-11  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
2029         * config.sub: Update from config repo.
2031 2013-01-11  Eric Botcazou  <ebotcazou@adacore.com>
2033         * Makefile.tpl (BOOT_ADAFLAGS): Remove -gnata.
2034         * Makefile.in: Regenerate.
2036 2013-01-09  H.J. Lu  <hongjiu.lu@intel.com>
2038         * Makefile.def (configure-gcc): Depend on all-gmp.
2039         (all-gcc): Remove dependency on all-gmp.
2040         * Makefile.in: Regenerated.
2042 2013-01-08  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
2044         * config.guess: Update from config repo.
2045         * config.sub: Ditto.
2047 2013-01-07  Jeff Johnston  <jjohnstn@redhat.com>
2049         * COPYING.LIBGLOSS: Remove license for mips/lsi33k-stub.h which no longer
2050         exists and replace the new bfin license in its location.
2052 2013-01-07  H.J. Lu  <hongjiu.lu@intel.com>
2054         PR gas/14899
2055         * Makefile.def (dependencies): Make all-binutils, all-gprof,
2056         all-ld and all-gold depend on all-gas.
2057         * Makefile.in: Regenerated.
2059 2012-12-29  Ben Elliston  <bje@gnu.org>
2061         * config.guess: Update to 2012-12-29 version.
2062         * config.sub: Likewise.
2064 2012-12-20  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
2066         * Makefile.def (install-target-libgo): Depend on
2067         install-target-libatomic. Merged from GCC repo.
2068         * Makefile.in: Regenerate.
2070 2012-12-17  Jeff Johnston  <jjohnstn@redhat.com>
2072         * COPYING.LIBGLOSS: Add license for bfin libgloss.
2074 2012-12-16  Thomas Schwinge  <thomas@codesourcery.com>
2076         * configure.ac (ENABLE_GOLD): Consider *-*-gnu* targets ELF.
2077         * configure: Regenerate.
2079 2012-12-11  H.J. Lu  <hongjiu.lu@intel.com>
2081         * Makefile.def (target_modules): Add bootstrap=true and
2082         raw_cxx=true to libsanitizer.
2083         * configure.ac (bootstrap_target_libs): Add libsanitizer.
2084         * Makefile.in: Regenerated.
2085         * configure: Likewise.
2087 2012-12-08  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
2089         * config.sub: Merge from config repo.
2091 2012-11-30  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
2093         * configure.ac: Merge from GCC.
2094         * Makefile.tpl: Ditto.
2095         * Makefile.in: Ditto.
2096         * configure: Ditto.
2098 2012-11-28  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
2100         * configure.ac (noconfigdirs): Merge from GCC.
2101         * configure: Regenerate.
2103 2012-11-19  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
2105         * config.sub (arm): Merge from upstream: Handle armv[6-8] targets.
2107 2012-11-14  Roland McGrath  <mcgrathr@google.com>
2109         * configure.ac (ENABLE_GOLD): Consider *-*-nacl* targets ELF.
2110         * configure: Regenerate.
2112 2012-11-13  Richard Henderson  <rth@redhat.com>
2114         * configure.ac: Move libsanitizer logic to subdirectory.
2115         * configure: Regenerate.
2117 2012-11-13  Dodji Seketeli  <dodji@redhat.com>
2119         * configure.ac: Enable libsanitizer just on x86 linux for now.
2120         * configure: Re-generate.
2122 2012-11-13  David Edelsohn  <dje.gcc@gmail.com>
2124         * configure.ac: Merge libquadmath sections.
2125         * configure: Regenerate.
2127 2012-11-12  Wei Mi <wmi@google.com>
2129         * configure.ac: Add libsanitizer to target_libraries.
2130         * Makefile.def: Ditto.
2131         * configure: Regenerate.
2132         * Makefile.in: Regenerate.
2134 2012-11-03  H.J. Lu  <hongjiu.lu@intel.com>
2136         * configure: Regenerated.
2138 2012-11-03  Robert Mason  <rbmj@verizon.net>
2140         * configure.ac: add --disable-libstdcxx configure option
2141         and handle defaulted state only for VxWorks, ARM-wince-pe and AVR.
2143 2012-10-24  Corinna Vinschen  <corinna@vinschen.de>
2145         * configure.ac (FLAGS_FOR_TARGET,target=cygwin): Fix for building
2146         against Mingw64 w32api.
2147         * configure: Regenerate.
2149 2012-10-23  Eric Botcazou  <ebotcazou@adacore.com>
2151         PR bootstrap/54820
2152         * configure.ac (have_static_libs): Force 'no' for GCC version < 4.5.
2153         * configure: Regenerate.
2155 2012-10-22  Eric Botcazou  <ebotcazou@adacore.com>
2157         PR bootstrap/54820
2158         * Makefile.tpl (STAGE1_FLAGS_TO_PASS): New variable.
2159         (all-[+prefix+][+module+]): Pass stage1_args to sub-makes.
2160         (all-stage[+id+]-[+prefix+][+module+]): Likewise, if prev is false.
2161         (clean-stage[+id+]-[+prefix+][+module+]): Likewise, if prev is false.
2162         (host_modules): Set stage1_args to STAGE1_FLAGS_TO_PASS.
2163         * Makefile.in: Regenerate.
2164         * configure.ac (have_static_libs): New variable and associated check.
2165         (stage1-ldflags): Move to after stage1_libs and set to -static-libstdc++
2166         -static-libgcc if stage1_libs is empty and have_static_libs is yes.
2167         * configure: Regenerate.
2169 2012-10-10  David Holsgrove  <david.holsgrove@xilinx.com>
2171         * config.guess, config.sub: Include updated version from
2172         config-patches.  Adds microblaze little endian support.
2174 2012-09-28  Ian Lance Taylor  <iant@google.com>
2176         * Makefile.def: Make all-target-libgo depend on
2177         all-target-libbacktrace.
2178         * Makefile.in: Rebuild.
2180 2012-09-26  Ian Lance Taylor  <iant@google.com>
2182         * Makefile.def: Make all-gcc depend on all-libbacktrace.
2183         * Makefile.in: Rebuild.
2185 2012-09-06  Diego Novillo  <dnovillo@google.com>
2187         * configure.ac: Bump minimum GMP version to 4.2.3.
2188         * configure: Re-generate.
2190 2012-09-05  Georg-Johann Lay  <avr@gjlay.de>
2192         PR target/54461
2193         * configure.ac (noconfigdirs,target=avr-*-*): Add target-newlib,
2194         target-libgloss if not configured --with-avrlibc=no.
2195         * configure: Regenerate.
2197 2012-09-04  Jason Merrill  <jason@redhat.com>
2199         * configure.ac: Fix --enable-languages=all.
2201 2012-09-03  Richard Guenther  <rguenther@suse.de>
2203         PR bootstrap/54138
2204         * configure.ac: Re-organize ISL / CLOOG checks to allow
2205         disabling with either --without-isl or --without-cloog.
2206         * configure: Regenerated.
2208 2012-09-03  Georg-Johann Lay  <avr@gjlay.de>
2210         * configure.ac (noconfigdirs,target=avr): Add target-libquadmath.
2211         * configure: Regenerate.
2213 2012-09-21  Steve Ellcey  <sellcey@mips.com>
2215         * configure.ac: Add mips*-mti-elf* target.
2216         * configure: Regenerate.
2218 2012-09-19  Ian Lance Taylor  <iant@google.com>
2220         * configure.ac (host_libs): Add libbacktrace.
2221         (target_libraries): Add libbacktrace.
2222         * Makefile.def (host_modules): Add libbacktrace.
2223         (target_modules): Likewise.
2224         * configure, Makefile.in: Rebuild.
2226 2012-09-15  Jiong Wang  <jiwang@tilera.com>
2228         * configure.ac (ENABLE_GOLD): support tilegx*
2229         * configure: rebuild
2231 2012-09-14  David Edelsohn  <dje.gcc@gmail.com>
2233         PR target/38607
2234         Merge upstream change.
2235         * libtool.m4 (_LT_COMPILER_PIC): Add -fPIC to GCC and GXX for AIX.
2237         * configure.ac: Add target-libquadmath to noconfigdirs for AIX.
2238         Add libgomp*.o to compare_exclusions for AIX.
2239         * configure: Regenerate.
2241 2012-08-26  H.J. Lu  <hongjiu.lu@intel.com>
2243         PR binutils/4970
2244         * Makefile.def (host_modules): Rmove lib_path=.libs from bfd
2245         and opcodes.
2246         * Makefile.in: Regenerated.
2248 2012-08-14   Diego Novillo  <dnovillo@google.com>
2250         Merge from cxx-conversion branch.
2252         * Makefile.tpl (STAGE[+id+]_CXXFLAGS): Remove
2253         POSTSTAGE1_CONFIGURE_FLAGS.
2254         * Makefile.in: Regenerate.
2255         * configure.ac (ENABLE_BUILD_WITH_CXX): Remove.  Update all users.
2256         Force C++ when bootstrapping.
2257         * configure: Regenerate.
2259 2012-07-06  Richard Guenther  <rguenther@suse.de>
2261         * Makefile.def (cloog): Pass $(HOST_GMPINC) and $(HOST_ISLINC)
2262         as CPPFLAGS, pass path to built gmp as LDFLAGS, always use
2263         --with-gmp=system.
2264         * Makefile.in: Regenerated.
2265         * configure: Likewise.
2267 2012-07-06  Richard Guenther  <rguenther@suse.de>
2269         * configure.ac (extra_isl_gmp_configure_flags): Initialize and subst.
2270         * Makefile.def (isl): Use extra_isl_gmp_configure_flags and
2271         supply V=1 as extra_make_flags.
2272         * configure: Regenerated.
2273         * Makefile.in: Likewise.
2275 2012-07-03  Richard Guenther  <rguenther@suse.de>
2277         * Makfile.def (isl): Remove not necessary extra_exports and
2278         extra_make_flags.
2279         (cloog): Use $$CPPFLAGS instead of ${CPPFLAGS}.
2280         * Makefile.in: Regenerated.
2282 2012-07-03  Richard Guenther  <rguenther@suse.de>
2284         * Makefile.def (cloog): Add V=1 to extra_make_flags.
2285         * configure.ac: If either the ISL or the CLooG check failed
2286         do not try to build in-tree versions.
2287         * Makefile.in: Regenerated.
2288         * configure: Regenerated.
2290 2012-07-02  Richard Guenther  <rguenther@suse.de>
2291         Michael Matz  <matz@suse.de>
2292         Tobias Grosser <tobias@grosser.es>
2293         Sebastian Pop <sebpop@gmail.com>
2295         * Makefile.def: Add ISL host module, remove PPL host module.
2296         Adjust ClooG host module to use the proper ISL.
2297         * Makefile.tpl: Pass ISL include flags instead of PPL ones.
2298         * configure.ac: Include config/isl.m4.  Add ISL host library,
2299         remove PPL.  Remove PPL configury, add ISL configury, adjust
2300         ClooG configury.
2301         * Makefile.in: Regenerated.
2302         * configure: Likewise.
2304 2012-07-02  Richard Guenther  <rguenther@suse.de>
2306         Merge from graphite branch
2307         2011-07-21  Tobias Grosser  <tobias@grosser.es>
2309         * configure: Regenerated.
2310         * config/cloog.m4: Remove support for CLooG-ppl and CLooG-parma,
2311         both cloog.org and legacy versions. The only supported version will
2312         be CLooG with the isl backend.
2314         2011-07-21  Tobias Grosser  <tobias@grosser.es>
2316         * configure: Regenerated.
2317         * configure.ac: Require cloog isl 0.17.0
2319         2011-07-21  Tobias Grosser  <tobias@grosser.es>
2321         * configure: Regenerated.
2322         * config/cloog.m4: Do not define CLOOG_ORG
2324 2012-06-29  Steven Bosscher  <steven@gcc.gnu.org>
2326         * configure.ac: Skip C if explicitly selected.
2327         * configure: Regenerate.
2329 2012-06-28  Christophe Lyon <christophe.lyon@st.com>
2331         * configure.ac (CFLAGS_FOR_TARGET, CXXFLAGS_FOR_TARGET): Make sure
2332         they contain -O2.
2333         * configure: Regenerate.
2335 2012-06-20  Jason Merrill  <jason@redhat.com>
2337         * Makefile.tpl (check-target-libgomp-c++): New.
2338         (check-target-libitm-c++): New.
2339         * Makefile.def (c++): Add them.
2340         * Makefile.in: Regenerate.
2342 2012-05-16  Olivier Hainque  <hainque@adacore.com>
2344         * Makefile.tpl (gcc-no-fixedincludes): Rename into ...
2345         (gcc-install-no-fixedincludes): Now forwarder to local target in gcc/
2346         (install-no-fixedincludes): Adjust accordingly.
2347         * Makefile.in: Regenerate.
2349 2012-05-09  Nick Clifton  <nickc@redhat.com>
2350             Paul Smith  <psmith@gnu.org>
2352         PR bootstrap/50461
2353         * configure.ac (mpfr-dir): When using in-tree MPFR sources
2354         allow for the fact that from release v3.1.0 of MPFR the source
2355         files were moved into a src sub-directory.
2356         * configure: Regenerate.
2358 2012-05-07  Janne Blomqvist  <jb@gcc.gnu.org>
2360         * configure.ac: Bump minimum MPFR version to 2.4.0.
2361         * configure: Regenerated.
2363 2012-05-01  Richard Henderson  <rth@redhat.com>
2365         * Makefile.def (libatomic): New target_module.
2366         * configure.ac (target_libraries): Add libatomic.
2367         (noconfigdirs): Check if libatomic is supported.
2368         * Makefile.in, configure: Rebuild.
2370 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
2372         Merge upstream change
2373         * libtool.m4 (_LT_ENABLE_LOCK): Support x32.
2375 2011-11-21  Andreas Tobler  <andreast@fgznet.ch>
2377         * libtool.m4: Additional FreeBSD 10 fixes.
2379 2012-06-28  Christophe Lyon <christophe.lyon@st.com>
2381         * configure.ac (CFLAGS_FOR_TARGET, CXXFLAGS_FOR_TARGET): Make sure
2382         they contain -O2.
2383         * configure: Regenerate.
2385 2012-05-14  Catherine Moore  <clm@codesourcery.com>
2387         * NEWS:  Mention PowerPC VLE port.
2389 2012-05-11  Mike Frysinger  <vapier@gentoo.org>
2391         * MAINTAINERS (config/): Move to intl/ section.
2392         (compile; depcomp; install-sh; missing; ylwrap): Likewise.
2394 2012-05-09  Nick Clifton  <nickc@redhat.com>
2395             Paul Smith  <psmith@gnu.org>
2397         PR bootstrap/50461
2398         * configure.ac (mpfr-dir): When using in-tree MPFR sources
2399         allow for the fact that from release v3.1.0 of MPFR the source
2400         files were moved into a src sub-directory.
2401         * configure: Regenerate.
2403 2012-05-02  Roland McGrath  <mcgrathr@google.com>
2405         * configure.ac (ENABLE_GOLD): Consider *-*-nacl* targets ELF.
2406         * configure: Regenerate.
2408 2012-04-25  Joel Brobecker  <brobecker@adacore.com>
2410         * config.sub: Update to 2012-04-18 version from official repo.
2412 2012-03-19  Tristan Gingold  <gingold@adacore.com>
2414         * configure.ac (ia64*-*-*vms*): Add support for ld.
2415         * configure: Regenerate.
2417 2012-03-14  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
2419         * configure.ac (enable_libgomp): Remove *-*-irix6*.
2420         (unsupported_languages): Remove mips-sgi-irix6.*.
2421         (noconfigdirs): Don't add ${libgcj} for mips*-*-irix6*.
2422         (with_stabs): Remove.
2423         * configure: Regenerate.
2425 2012-03-12  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
2427         * configure.ac (enable_libgomp): Remove *-*-osf*.
2428         (with_stabs): Remove alpha*-*-osf*.
2429         * configure: Regenerate.
2431 2012-03-09  Jeff Johnston  <jjohnstn@redhat.com>
2433         * COPYING.NEWLIB: Modify DJ Delorie license to include
2434         modification rights in clause as permitted by DJ Delorie.
2435         * COPYING.LIBGLOSS: Ditto.
2437 2012-03-09  Jeff Johnston  <jjohnstn@redhat.com>
2439         * COPYING.NEWLIB: Remove two unused licenses.
2441 2012-03-05  Tristan Gingold  <gingold@adacore.com>
2443         * configure.ac: Enable gdb and readline for ia64*-*-*vms*.
2444         * configure: Regenerate.
2446 2012-02-21  Joern Rennecke  <joern.rennecke@embecosm.com>
2448         * COPYING.NEWLIB: Add Adapteva notice.
2449         * COPYING.LIBGLOSS: Add Adapteva notice.
2451 2011-12-18  Eric Botcazou  <ebotcazou@adacore.com>
2453         * configure: Regenerate.
2455 2011-12-15  Jeff Johnston  <jjohnstn@redhat.com>
2457         * COPYING.LIBGLOSS: Add GPL with exception license.
2459 2011-11-09  Roland McGrath  <mcgrathr@google.com>
2461         * configure.ac: Add tool checks for READELF and READELF_FOR_TARGET.
2462         * configure: Rebuild.
2463         * Makefile.def (flags_to_pass): Add READELF_FOR_TARGET.
2464         * Makefile.tpl (READELF, READELF_FOR_TARGET): New variables.
2465         (HOST_EXPORTS): Add READELF, READELF_FOR_TARGET.
2466         (BASE_FLAGS_TO_PASS): Add READELF_FOR_TARGET.
2467         (BASE_TARGET_EXPORTS, EXTRA_HOST_FLAGS, EXTRA_TARGET_FLAGS):
2468         Add READELF.
2469         * Makefile.in: Rebuild.
2471 2011-11-08  Richard Henderson  <rth@redhat.com>
2473         * configure.ac: Test for libitm directory present first.
2475         * configure.ac: Adjust srcdir for running libitm/configure.tgt.
2477         * configure.ac: Test libitm/configure.tgt to disable libitm.
2478         * configure: Rebuild.
2480 2011-11-02  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
2482         * Makefile.tpl (EXTRA_GCC_FLAGS): Remove LIBGCC2_CFLAGS,
2483         LIBGCC2_DEBUG_CFLAGS, LIBGCC2_INCLUDES.
2484         * Makefile.in: Regenerate.
2486 2011-11-01  DJ Delorie  <dj@redhat.com>
2488         * configure.ac (rl78-*-*) New case.
2489         * configure: Regenerate.
2491 2011-11-01  DJ Delorie  <dj@redhat.com>
2493         * config.sub: Update to version 2011-10-29 (added rl78)
2495 2011-10-27  Nick Clifton  <nickc@redhat.com>
2497         * config.sub: Import these changes from the config project:
2499         2011-10-08  Joern Rennecke  <joern.rennecke@embecosm.com>
2500             Ben Elliston  <bje@gnu.org>
2502         * config.sub (epiphany): New.
2504         2011-09-09  Linas Vepstas  <linasvepstas@gmail.com>
2505             Ben Elliston  <bje@gnu.org>
2507         * config.sub (hexagon, hexagon-*): New.
2509         2011-08-23  Roland McGrath  <mcgrathr@google.com>
2511         * config.sub: Rename 32eb to be32, 32el to le32, 64el to le64, and
2512         64eb to be64.
2514         2011-08-16  Roland McGrath  <mcgrathr@google.com>
2516         * config.sub (32eb, 32el, 64eb, 64el): New (pseudo-)CPUs.
2517         (nacl): Grok as alias for 32el-unknown-nacl.
2519 2011-08-19  Joel Brobecker  <brobecker@adacore.com>
2521         * src-release (GDB_SUPPORT_DIRS): Add 'cpu'.
2523 2011-08-14  Yao Qi  <yao@codesourcery.com>
2525         Merge from gcc:
2527         2011-08-14  Yao Qi  <yao@codesourcery.com>
2528         * configure.ac (tic6x-*-*): Remove gdb from noconfigdirs.
2529         * configure: Regenerate.
2531 2011-07-26  Ian Lance Taylor  <iant@google.com>
2533         Merge from gcc:
2535         2011-07-26  Ian Lance Taylor  <iant@google.com>
2536         * configure.ac: Set have_compiler based on whether gcc directory
2537         exists, rather than on whether gcc is in configdirs.
2538         * configure: Rebuild.
2540         2011-07-20  David Edelsohn  <dje.gcc@gmail.com>
2541         * Makefile.tpl (POSTSTAGE1_CONFIGURE_FLAGS): Add libsupc++ to
2542         link directories.
2543         * Makefile.in: Rebuild.
2545         2011-07-20  Ian Lance Taylor  <iant@google.com>
2546         PR bootstrap/49787
2547         * configure.ac: Move --enable-bootstrap handling earlier in file.
2548         If --enable-bootstrap and either --enable-build-with-cxx or
2549         --enable-build-poststage1-with-cxx, enable C++ automatically.
2550         * configure: Rebuild.
2552         2011-07-19  Ian Lance Taylor  <iant@google.com>
2553         * configure.ac: Add --enable-build-poststage1-with-cxx.  If set,
2554         make C++ a boot_language.  Set and substitute
2555         POSTSTAGE1_CONFIGURE_FLAGS.
2556         * Makefile.tpl (POSTSTAGE1_CONFIGURE_FLAGS): New variable.
2557         (STAGE[+id+]_CONFIGURE_FLAGS): Add $(POSTSTAGE1_CONFIGURE_FLAGS).
2558         * configure, Makefile.in: Rebuild.
2560         2011-07-16  Jason Merrill  <jason@redhat.com>
2561         * Makefile.def (language=c++): Add check-c++0x and
2562         check-target-libmudflap-c++.
2563         * Makefile.tpl (check-target-libmudflap-c++): New.
2564         * Makefile.in: Regenerate.
2566         2011-07-16  Matthias Klose  <doko@ubuntu.com>
2567         * Makefile.tpl (EXTRA_CONFIGARGS_LIBJAVA): Define.
2568         * Makefile.def (target_modules/libjava): Pass
2569         $(EXTRA_CONFIGARGS_LIBJAVA).
2570         * configure.ac: Pass --disable-static in EXTRA_CONFIGARGS_LIBJAVA,
2571         if not configured with --enable-static-libjava.
2572         * Makefile.in: Regenerate.
2573         * configure: Likewise.
2575         2011-06-22  Hans-Peter Nilsson  <hp@axis.com>
2576         PR regression/47836
2577         PR bootstrap/23656
2578         PR other/47733
2579         PR bootstrap/49247
2580         PR c/48825
2581         * configure.ac (target_libraries): Remove target-libiberty.
2582         Remove case-statement setting skipdirs=target-libiberty for
2583         multiple targets.  Remove checking target_configdirs and
2584         removing target-libiberty but keeping target-libgcc if
2585         otherwise empty.
2586         * Makefile.def (target_modules): Don't add libiberty.
2587         (dependencies): Remove all traces of target-libiberty.
2588         * configure, Makefile.in: Regenerate.
2590 2011-07-22  Jason Merrill  <jason@redhat.com>
2592         * Makefile.def (language=c++): Add check-c++0x and
2593         check-target-libmudflap-c++.
2594         * Makefile.tpl (check-target-libmudflap-c++): New.
2595         * Makefile.in: Regenerate.
2597 2011-07-18  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
2599         * configure: Regenerate.
2601 2011-07-07  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
2603         PR target/39150
2604         * configure.ac (i[3456789]86-*-solaris2*): Also accept
2605         x86_64-*-solaris2.1[0-9]*.
2606         * configure: Regenerate.
2608 2011-06-13  Walter Lee <walt@tilera.com>
2610         * configure.ac (tilepro-*-*) New case.
2611         (tilegx-*-*): Likewise.
2612         * configure: Regenerate.
2614 2011-06-06  Nick Clifton  <nickc@redhat.com>
2616         * config.sub: Sync from upstream.
2618 2011-05-08  Doug Kwan  <dougkwan@google.com>
2620         Merge from gcc:
2622         2011-05-08  Doug Kwan  <dougkwan@google.com>
2624                 * configure.ac: Propagate LDFLAGS_FOR_TARGET.
2625                 * configure: Regenerated.
2626                 * Makefile.tpl (LDFLAGS_FOR_TARGET): Use LDFLAGS_FOR_TARGET
2627                 value from configure.
2628                 * Makefile.in: Regenerated.
2630 2011-05-05  Joseph Myers  <joseph@codesourcery.com>
2632         * configure.ac (alpha*-dec-osf*, i[[3456789]]86-*-rdos*,
2633         sh*-*-pe|mips*-*-pe|arm-wince-pe, sparc-*-sunos4*, *-*-aix*,
2634         *-*-beos*, *-*-chorusos, *-*-dragonfly*, *-*-freebsd*, *-*-linux*
2635         | *-*-gnu* | *-*-k*bsd*-gnu | *-*-kopensolaris*-gnu, *-*-lynxos*,
2636         *-*-mingw*, *-*-netbsd*, *-*-netware*, *-*-tpf*, *-*-uclinux*,
2637         *-*-vxworks*): Disable newlib and libgloss in separate case
2638         statement.
2639         (i[[3456789]]86-*-linux*): Move logic allowing newlib to be built
2640         to separate case statement.
2641         (*-*-chorusos, *-*-dragonfly*, *-*-freebsd*, *-*-netbsd*,
2642         *-*-netware*, *-*-tpf*, *-*-uclinux*, *-*-vxworks*,
2643         alpha*-dec-osf*, alpha*-*-linux*, am33_2.0-*-linux*, sh-*-linux*,
2644         sh*-*-pe|mips*-*-pe|*arm-wince-pe, arm-*-coff, arm-*-elf* |
2645         arm*-*-eabi*, arm*-*-linux-gnueabi, arm*-*-symbianelf*, avr-*-*,
2646         bfin-*-*, cris-*-* | crisv32-*-*, frv-*-*, i[[3456789]]86-*-coff |
2647         i[[3456789]]86-*-elf, i[[3456789]]86-w64-mingw*,
2648         i[[3456789]]86-*-mingw*, x86_64-*-mingw*,
2649         i[[3456789]]86-*-interix*, i[[3456789]]86-*-beos*,
2650         i[[3456789]]86-*-rdos*, m32r-*-*,
2651         m68hc11-*-*|m6811-*-*|m68hc12-*-*|m6812-*-*, m68k-*-elf*, m68*-*-*
2652         | fido-*-*, powerpc-*-aix*, powerpc-*-beos*, powerpc-*-eabi,
2653         powerpc-*-eabi* | powerpcle-*-eabi* | powerpc-*-rtems*,
2654         rs6000-*-lynxos*, rs6000-*-aix*, mips*-*-linux*, sparclet-*-aout*
2655         | sparc86x-*-*, sparc-*-elf*, sparc64-*-elf*, sparclite-*-*,
2656         sparc-*-sunos4*, sparc-*-solaris* | sparc64-*-solaris* |
2657         sparcv9-*-solaris*, *-*-linux* | *-*-gnu* | *-*-k*bsd*-gnu |
2658         *-*-kopensolaris*-gnu, *-*-lynxos*, *-*-*): Don't disable newlib
2659         and libgloss in main case over targets.  Remove most empty cases
2660         in main case over targets.
2661         * configure: Regenerate.
2663 2011-05-04  Joseph Myers  <joseph@codesourcery.com>
2665         * configure.ac: Remove code setting special library locations for
2666         hppa*64*-*-hpux11*.  Remove code setting compiler for
2667         sparc-sun-solaris2*.
2668         * configure: Regenerate.
2670 2011-05-04  Joseph Myers  <joseph@codesourcery.com>
2672         * configure.ac: Separate libgloss_dir settings from general case
2673         over targets.
2674         * configure: Regenerate.
2676 2011-04-28  Joseph Myers  <joseph@codesourcery.com>
2678         * configure.ac (*-*-dragonfly*, *-*-freebsd*, *-*-netbsd*,
2679         alpha*-dec-osf*, alpha*-*-linux*, alpha*-*-*, sh-*-linux*,
2680         arm-*-elf* | arm*-*-eabi*, arm*-*-linux-gnueabi, frv-*-*): Remove
2681         cases in libgcj-disabling case statement.
2682         (hppa*64*-*-linux*): Set unsupported_languages instead of
2683         disabling target-zlib.
2684         (hppa*64*-*-*): Restrict case in libgcj-disabling case statement
2685         to hppa*64*-*-hpux*.
2686         (hppa*-*-*): Restrict case in libgcj-disabling case statement to
2687         hppa*-*-hpux*.
2688         (ia64*-*-elf*, ia64*-**-hpux*, i[[3456789]]86-*-elf,
2689         i[[3456789]]86-*-linux*, *-*-cygwin*, i[[3456789]]86-*-interix*,
2690         i[[3456789]]86-*-solaris2*, m32r-*-*, m68k-*-elf*, m68*-*-* |
2691         fido-*-*, powerpc-*-eabi, powerpc-*-eabi* | powerpcle-*-eabi* |
2692         powerpc-*-rtems*, mips*-*-linux*, mips*-*-*, sh-*-* | sh64-*-*,
2693         sparc-*-elf*, sparc64-*-elf*, sparc-*-solaris* |
2694         sparc64-*-solaris* | sparcv9-*-solaris*, *-*-linux* | *-*-gnu* |
2695         *-*-k*bsd*-gnu | *-*-kopensolaris*-gnu, *-*-*): Remove cases in
2696         libgcj-disabling case statement.
2697         * configure: Regenerate.
2699 2011-04-28  Joseph Myers  <joseph@codesourcery.com>
2701         * configure.ac: Disable Java for targets not supporting libffi.
2702         (*-*-chorusos, *-*-kaos*, am33_2.0-*-linux*, sh*-*-pe|mips*-*-pe):
2703         Remove cases in Java-disabling statement.
2704         (*arm-wince-pe): Change to arm-wince-pe.
2705         (arc-*-*, arm-*-coff, arm-*-pe*, arm-*-riscix*, avr-*-*): Remove
2706         cases in Java-disabling statement.
2707         (bfin-*-*): Don't disable Java again.
2708         (c4x-*-* | tic4x-*-*, tic54x-*-*, cr16-*-*, d10v-*-*, d30v-*-*,
2709         fr30-*-elf*, moxie-*-*, h8300*-*-*, h8500-*-*, hppa1.1-*-osf* |
2710         hppa1.1-*-bsd*, hppa*-*-*elf* | hppa*-*-lites* | hppa*-*-openbsd*,
2711         hppa*-*-pro*, i960-*-*, i[[3456789]]86-*-coff,
2712         i[[3456789]]86-*-pe, i[[3456789]]86-*-sco3.2v5*,
2713         i[[3456789]]86-*-sco*, i[[3456789]]86-*-sysv4*,
2714         i[[3456789]]86-*-beos*, i[[3456789]]86-*-rdos*,
2715         m68hc11-*-*|m6811-*-*|m68hc12-*-*|m6812-*-*): Remove cases in
2716         Java-disabling statement.
2717         (mmix-*-*): Don't disable Java again.
2718         (mt-*-*, powerpc*-*-winnt* | powerpc*-*-pe*, powerpcle-*-solaris*,
2719         powerpc-*-beos*, rs6000-*-lynxos*, rs6000-*-*, m68k-apollo-*,
2720         microblaze*, mips*-sde-elf*, mips*-*-irix5*, mips*-*-bsd*,
2721         sparclet-*-aout* | sparc86x-*-*, sparclite-*-*, sparc-*-sunos4*,
2722         tic6x-*-*, v810-*-*, vax-*-*): Remove cases in Java-disabling
2723         statement.
2724         * configure: Regenerate.
2726 2011-04-28  Joseph Myers  <joseph@codesourcery.com>
2728         Merge from GCC:
2730         2011-04-18  Jack Howarth  <howarth@bromo.med.uc.edu>
2732         PR lto/48086
2733         * configure.ac: Re-enable LTO on *-apple-darwin9*.
2734         * configure: Regenerate.
2736 2011-04-28  Joseph Myers  <joseph@codesourcery.com>
2738         * configure.ac: Separate cases disabling Java and Java libraries
2739         from general case over targets.
2740         * configure: Regenerate.
2742 2011-04-06  Joseph Myers  <joseph@codesourcery.com>
2744         * configure.ac (build_tools): Remove build-byacc.
2745         (host_libs): Remove mmalloc.
2746         (host_tools): Remove byacc make patch prms send-pr ash bash bzip2
2747         autoconf automake libtool diff rcs fileutils shellutils time
2748         textutils wdiff find uudecode hello tar gzip indent recode release
2749         sed perl gawk findutils gettext zip.
2750         (libgcj): Remove target-qthreads.
2751         (target_tools): Remove target-examples target-gperf.
2752         (YACC): Don't handle building byacc.
2753         * configure: Regenerate.
2754         * Makefile.def (ash, autoconf, automake, bash, byacc, bzip2, diff,
2755         dosutils, examples, fileutils, find, findutils, gawk, gettext,
2756         gnuserv, gperf, gzip, hello, indent, libtool, make, mmalloc,
2757         patch, perl, prms, qthreads, rcs, recode, release, sed, send-pr,
2758         shellutils, tar, textutils, time, uudecode, wdiff, zip): Don't
2759         handle building components.
2760         * Makefile.in: Regenerate.
2762 2011-04-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2764         * config.sub: Sync from upstream.
2766 2011-04-01  Joseph Myers  <joseph@codesourcery.com>
2768         * configure.ac (avr-*-*): Add comment about why libssp is disabled.
2769         (microblaze*): Don't disable libssp.
2770         * configure: Regenerate.
2772 2011-04-01  Joseph Myers  <joseph@codesourcery.com>
2774         * configure.ac: Remove code setting CONFIG_SHELL, config_shell and
2775         moveifchange.
2776         * configure: Regenerate.
2777         * Makefile.tpl: Use @SHELL@ not @config_shell@.
2778         * Makefile.in: Regenerate.
2780 2011-04-01  Joseph Myers  <joseph@codesourcery.com>
2782         * configure.ac (*-*-sysv4*): Don't enable libgomp.
2783         (alpha*-*-*vms*, i[[34567]]86-*-sco3.2v5*, mn10300-*-*,
2784         powerpc-*-chorusos*, powerpc*-*-eabi*, powerpc*-*-sysv*,
2785         powerpc*-*-kaos*, s390x-ibm-tpf*, sparc64-*-elf*, v850*-*-*,
2786         xtensa*-*-elf*, *-*-beos*, *-*-elf*, *-*-netware*, *-*-rtems*,
2787         *-*-sysv[[45]]*, *-*-vxworks*, *-wrs-windiss): Remove
2788         md_exec_prefix cases.
2789         * configure: Regenerate.
2791 2011-04-01  Joseph Myers  <joseph@codesourcery.com>
2793         * configure.ac: Separate cases disabling target-libssp,
2794         target-libiberty, target-libstdc++-v3 and Fortran from general
2795         case over targets.
2796         * configure: Regenerate.
2798 2011-04-01  Joseph Myers  <joseph@codesourcery.com>
2800         * configure.ac (*-*-chorusos): Don't disable libgcj.
2801         (*-*-freebsd[[12]] | *-*-freebsd[[12]].* | *-*-freebsd*aout*):
2802         Remove case.
2803         (*-*-kaos*): Don't disable GCC libraries, zlib or fastjar.
2804         (arm-*-coff): Don't disable libgcj.
2805         (arm*-*-linux-gnueabi): Remove useless assignment.
2806         (arm-*-riscix*): Don't disable libgcj.
2807         (bfin-*-*): Don't enable target-bsp and target-cygmon depending on
2808         configuration.
2809         (c4x-*-* | tic4x-*-*): Don't disable GCC libraries.
2810         (c54x*-*-*): Remove case.
2811         (tic54x-*-*): Don't disable GCC or GCC libraries.
2812         (cris-*-* | crisv32-*-*): Don't handle *-*-aout.  Change *-*-elf
2813         to *.
2814         (d10v-*-*): Don't disable GCC libraries.
2815         (d30v-*-*): Don't disable libgcj.
2816         (h8500-*-*): Don't disable GCC libraries.
2817         (i960-*-*): Don't disable libgcj.
2818         (i[[3456789]]86-*-linux*): Don't handle *-*-*libc1*.
2819         (i[[3456789]]86-*-sco3.2v5*, i[[3456789]]86-*-sco*,
2820         i[[3456789]]86-*-sysv4*, i[[3456789]]86-*-beos*): Don't disable
2821         libgcj.
2822         (m68k-*-coff*): Remove case.
2823         (mmix-*-*): Don't disable libgloss on host.
2824         (mn10200-*-*, mn10300-*-*): Remove cases.
2825         (powerpc*-*-winnt* | powerpc*-*-pe*, powerpcle-*-solaris*,
2826         powerpc-*-beos*, m68k-apollo-*, mips*-*-irix5*, mips*-*-bsd*):
2827         Don't disable libgcj.
2828         (romp-*-*): Remove case.
2829         (sparclite-*-*, sparc-*-sunos4*): Don't disable libgcj.
2830         (sparc-*-solaris2.[[0-6]] | sparc-*-solaris2.[[0-6]].*): Remove
2831         case.
2832         (v810-*-*): Don't disable GCC libraries.
2833         (v850*-*-*, vax-*-vms, xtensa*-*-*): Remove cases.
2834         (ip2k-*-*): Don't disable GCC libraries.
2835         * configure: Regenerate.
2837 2011-03-28  Joseph Myers  <joseph@codesourcery.com>
2839         * configure.ac (i[[3456789]]86-*-msdosdjgpp*): Don't disable
2840         libffi on host.
2841         (x86_64-*-mingw*, i[[3456789]]86-*-mingw32*): Don't disable newlib
2842         on host.
2843         (c54x*-*-* | tic54x-*-*): Don't disable newlib on host.
2844         * configure: Regenerate.
2846 2011-03-26  John Marino  <binutils@marino.st>
2848         * configure.ac: Add support for *-*-dragonfly*
2849         * configure: Regenerate.
2851 2011-03-25  Joseph Myers  <joseph@codesourcery.com>
2853         * configure.ac (native_only): Remove.
2854         (i[[3456789]]86-*-msdosdjgpp*): Don't disable expect dejagnu
2855         send-pr uudecode guile gnuserv on host.
2856         (x86_64-*-mingw*): Don't disable expect dejagnu autoconf automake
2857         send-pr rcs guile perl texinfo libtool on host.
2858         (i[[3456789]]86-*-mingw32*): Don't disable expect dejagnu autoconf
2859         automake send-pr rcs guile perl texinfo libtool on host.
2860         (*-*-cygwin*, *-*-netbsd*): Remove host cases.
2861         (*-*-kaos*): Don't disable target-examples target-gperf on target.
2862         (alpha*-dec-osf*): Don't disable fileutils on target.
2863         (sh*-*-pe|mips*-*-pe|*arm-wince-pe): Don't disable target-examples
2864         texinfo send-pr expect dejagnu on target.
2865         (arm-*-elf* | arm*-*-eabi*, arm*-*-linux-gnueabi): Don't disable
2866         target-qthreads on target.
2867         (hppa*-hp-hpux11*, hppa*-*-*): Don't disable shellutils on target.
2868         (ia64*-*-elf*, ia64*-*-*vms*): Don't disable mmalloc on target.
2869         (i[[3456789]]86-w64-mingw*, i[[3456789]]86-*-mingw*,
2870         x86_64-*-mingw*): Don't disable expect on target.
2871         (*-*-cygwin*): Don't disable target-gperf on target.
2872         (powerpc*-*-winnt* | powerpc*-*-pe*): Don't disable make expect
2873         gnuserv on target.
2874         (powerpcle-*-solaris*): Don't disable make expect gnuserv on
2875         target.
2876         * configure: Regenerate.
2878 2011-03-25  Joseph Myers  <joseph@codesourcery.com>
2880         * configure.ac (target_tools): Remove target-groff.
2881         (native_only): Remove target-groff.
2882         (hppa*64*-*-*): Don't disable byacc.
2883         (i[[3456789]]86-*-mingw32*): Remove commented-out noconfigdirs
2884         setting.
2885         (*-*-kaos*): Don't skip target-librx and target-groff.
2886         (*-*-netware*): Don't skip target-libmudflap.
2887         (*-*-tpf*): Don't skip target-libmudflap.
2888         (sh*-*-pe|mips*-*-pe|*arm-wince-pe): Don't condition configured
2889         directories on the host.
2890         (ia64*-*-*vms*): Don't skip tix.
2891         (sh-*-* | sh64-*-*): Don't condition skipped directories on the
2892         host.
2893         * configure: Regenerate.
2895 2011-03-24  Paolo Bonzini  <pbonzini@redhat.com>
2897         * configure.ac: Remove references to mt-mep, mt-netware,
2898         mt-wince.
2899         * Makefile.def: Add all-utils soft dependencies.
2900         * Makefile.tpl: Remove GDB_NLM_DEPS.
2901         * configure: Regenerate.
2902         * Makefile.in: Regenerate.
2904 2011-03-24  Paolo Bonzini  <bonzini@gnu.org>
2906         Sync from GCC:
2908         2011-03-24  Paolo Bonzini  <bonzini@gnu.org>
2910         * configure.ac: Do not include mh-x86omitfp.
2911         * configure: Regenerate.
2913         2011-03-24  Paolo Bonzini  <bonzini@gnu.org>
2915         * configure.ac: Remove empty cases.
2916         * configure: Regenerate.
2918         2011-03-24  Paolo Bonzini  <bonzini@gnu.org>
2920         * Makefile.def: Add dependency from termcap to gdb.
2921         * Makefile.in: Regenerate.
2923         2011-03-24  Paolo Bonzini  <bonzini@gnu.org>
2925         * configure.ac: Remove all mentions of mh-sysv4 and mh-solaris.
2926         * configure: Regenerate.
2927         * Makefile.def: Remove all mentions of X11_FLAGS_TO_PASS.
2928         * Makefile.tpl: Likewise.
2929         * Makefile.in: Regenerate.
2931         2011-03-24  Paolo Bonzini  <bonzini@gnu.org>
2933         * configure.ac: Remove all mentions of tentative_cc.
2934         * configure: Regenerate.
2936         2011-03-16  Jack Howarth  <howarth@bromo.med.uc.edu>
2938         PR lto/48086
2939         * configure.ac: Re-enable LTO on *-apple-darwin9.
2940         * configure: Regenerate.
2942 2011-03-24  Joseph Myers  <joseph@codesourcery.com>
2944         * configure.ac (i[[3456789]]86-*-vsta, i[[3456789]]86-*-go32*,
2945         i[[3456789]]86-*-beos*, powerpc-*-beos*, m68k-hp-hpux*,
2946         m68k-apollo-sysv*, m68k-apollo-bsd*, m88k-dg-dgux*,
2947         m88k-harris-cxux*, m88k-motorola-sysv*, mips*-dec-ultrix*,
2948         mips*-nec-sysv4*, mips*-sgi-irix4*, mips*-*-sysv4*, mips*-*-sysv*,
2949         i370-ibm-opened*, i[[3456789]]86-*-sysv5*, i[[3456789]]86-*-dgux*,
2950         i[[3456789]]86-ncr-sysv4.3*, i[[3456789]]86-ncr-sysv4*,
2951         i[[3456789]]86-*-sco3.2v5*, i[[3456789]]86-*-sco*,
2952         i[[3456789]]86-*-udk*, vax-*-ultrix2*, m68k-sun-sunos*,
2953         hppa*-*-hiux*, *-*-hiux*, rs6000-*-lynxos*, *-*-sysv4*,
2954         *-*-rhapsody*): Remove host cases.
2955         * configure: Regenerate.
2957 2011-03-24  Joseph Myers  <joseph@codesourcery.com>
2959         * configure.ac (ppc*-*-pe): Remove host case.
2960         (strongarm-*-coff | xscale-*-coff, strongarm-*-elf* |
2961         xscale-*-elf*, thumb-*-coff, thumb-*-elf, thumb-*-pe, ep9312-*-elf
2962         | ep9312-*-coff, parisc*64*-*-linux*, ppc*-*-pe): Remove target
2963         cases.
2964         * configure: Regenerate.
2966 2011-03-24  Joseph Myers  <joseph@codesourcery.com>
2968         * config.sub: Update to version 2011-03-23.
2970 2011-03-22  Joseph Myers  <joseph@codesourcery.com>
2972         * configure.ac (arm-semi-aof, crx-*-*, parisc*-*-linux*,
2973         i370-*-opened*, i[[3456789]]86-moss-msdos | i[[3456789]]86-*-moss*
2974         | i[[3456789]]86-*-uwin*, mcore-*-pe*): Remove empty cases.
2975         * configure: Regenerate.
2977 2011-03-22  Joseph Myers  <joseph@codesourcery.com>
2979         * config-ml.in: Don't handle arc-*-elf*.
2980         * configure.ac (arc-*-*, crx-*-*, i[[3456789]]86-*-pe,
2981         m68hc11-*-*|m6811-*-*|m68hc12-*-*|m6812-*-*, mcore-*-pe*): Don't
2982         handle GCC libraries.
2983         * configure: Regenerate.
2985 2011-03-21  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
2987         PR bootstrap/48120:
2988         * configure.ac (pwllib): Use LIBS instead of LDFLAGS.
2989         Add -lstdc++ -lm to LIBS.
2990         * configure: Regenerate.
2992 2011-03-18  David Edelsohn  <dje.gcc@gmail.com>
2994         * config.guess: Update to version 2011-02-02
2995         * config.sub: Update to version 2011-02-24
2997 2011-03-03  Sebastian Pop  <sebastian.pop@amd.com>
2999         * configure.ac: Adjust test of with_ppl.
3000         * configure: Regenerated.
3002 2011-03-02  Sebastian Pop  <sebastian.pop@amd.com>
3004         * configure.ac: Add -lpwl to ppllibs.
3005         * config/cloog.m4: Add -lisl to clooglibs.
3006         * configure: Regenerated.
3008 2011-02-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3010         Import from Libtool and gnulib:
3012         2011-01-27  Gerald Pfeifer  <gerald@pfeifer.com>
3014         Prepare for supporting FreeBSD 10.
3015         * config.rpath: Remove handling of freebsd1* which soon would
3016         match FreeBSD 10.0.
3018         2011-01-20  Gerald Pfeifer  <gerald@pfeifer.com>  (tiny change)
3020         Remove support for FreeBSD 1.x.
3021         * libtool.m4 (_LT_LINKER_SHLIBS)
3022         (_LT_SYS_DYNAMIC_LINKER): Remove handling of freebsd1* which
3023         soon would incorrectly match FreeBSD 10.0.
3025 2011-02-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3027         PR binutils/12283
3028         * MAINTAINERS (mkinstalldirs): Comes from Automake.
3029         (move-if-change): Comes from gnulib.
3030         * move-if-change: Import version from gnulib.
3032 2011-02-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3034         Sync from GCC:
3036         2011-02-12  Alexandre Oliva  <aoliva@redhat.com>
3038         PR lto/47225
3039         * Makefile.def (lto-plugin): Double dash for enable-shared.
3040         (configure-gcc): Depend on all-lto-plugin.
3041         * Makefile.in: Rebuilt.
3043         2011-02-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3045         * configure.ac: Remove extra bracket.
3046         * configure: Regenerate.
3048         2011-02-06  Kai Tietz  <kai.tietz@onevision.com>
3050         PR lto/47225
3051         * Makefile.def: Add dependency for install-gcc
3052         on install-lto-plugin.
3053         * Makfile.in: Regenerated
3055         2011-01-25  Jakub Jelinek  <jakub@redhat.com>
3057         * configure.ac: If with_ppl is no, move setting with_cloog=no
3058         after CLOOG_REQUESTED check.
3059         * configure: Regenerated.
3061         2011-01-25  Sebastian Pop  <sebastian.pop@amd.com>
3063         * configure.ac: Call AC_MSG_ERROR when PPL 0.11 is not present and
3064         CLooG has been requested.
3065         * configure: Regenerated.
3067         2011-01-25  Sebastian Pop  <sebastian.pop@amd.com>
3069         * configure: Regenerated.
3070         * configure.ac: Check for version 0.11 (or later revision) of PPL.
3072         2011-01-25  Tobias Grosser  <grosser@fim.uni-passau.de>
3074         * configure: Regenerated.
3075         * configure.ac: Use CLOOG_CHECK_VERSION(0,16,1).
3077         2011-01-07  Jan Hubicka  <jh@suse.cz>
3079         PR lto/47225
3080         * Makefile.in: Regenerate.
3081         * Makefile.def (lto-plugin): Always pass enable-shared to the plugin
3082         configure.
3084 2011-01-31  Alexandre Oliva  <aoliva@redhat.com>
3086         PR libgcj/44341
3087         * configure.ac: Discard --with-* flags for host when configuring
3088         target libraries for cross build.
3089         * configure: Rebuilt.
3091 2011-01-21  Andreas Schwab  <schwab@redhat.com>
3093         Sync from GCC:
3095         2011-01-21  Andreas Schwab  <schwab@redhat.com>
3097         * configure.ac: Use AS_HELP_STRING throughout.
3098         * configure: Regenerate.
3100         2011-01-18  Jie Zhang  <jie.zhang@analog.com>
3102         * configure.ac (bfin-*-*): Remove gdb from noconfigdirs.
3103         * configure: Regenerate.
3105 2010-12-10  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
3107         * ltmain.sh (relink): Use absolute path when hardcoding with -L.
3109 2011-01-13  Joel Brobecker  <brobecker@adacore.com>
3111         * configure.ac: Remove readline, mmalloc, and gdb from noconfigdirs
3112         for ia64-hpux.
3113         * configure: Regenerate.
3115 2011-01-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3117         Sync from GCC:
3118         2010-12-22  Hariharan Sandanagobalane  <hariharan@picochip.com>
3120         * configure.ac: (picochip): Disable libiberty.
3121         * configure: Regenerate.
3123 2010-12-18  Jeff Johnston  <jjohnstn@redhat.com>
3125         * COPYING.LIBGLOSS: Remove the GPL for fr30 target.
3127 2010-12-10  Ian Lance Taylor  <iant@google.com>
3129         PR bootstrap/46819
3130         * configure.ac: For --disable-libgcj clear libgcj_saved.
3131         * configure: Rebuild.
3133 2010-12-10  Tobias Burnus  <burnus@net-b.de>
3135         PR fortran/46540
3136         * configure.ac: Add --disable-libquadmath and
3137         --disable-libquadmath-support.
3138         * configure: Regenerate.
3140 2010-12-10  Tristan Gingold  <gingold@adacore.com>
3142         * src-release (ETC_SUPPORT): add gnu-oids.texi
3144 2010-12-03  Hans-Peter Nilsson  <hp@axis.com>
3146         PR libffi/46792
3147         * configure.ac (cris-*-elf, crisv32-*-elf): Disable target-libffi.
3148         * configure: Regenerate.
3150 2010-12-02  Ian Lance Taylor  <iant@google.com>
3152         * configure.ac: Always set default for poststage1_ldflags to
3153         -static-libstdc++ -static-libgcc.
3155 2010-12-02  Jeff Johnston  <jjohnstn@redhat.com>
3157         * COPYING.NEWLIB: Add National Semiconductor notice.
3159 2010-11-29  Andreas Schwab  <schwab@redhat.com>
3161         * configure.ac: Move comment to remove extra space in last argument
3162         of GCC_TARGET_TOOL.
3164 2010-11-26  Alexandre Oliva  <aoliva@redhat.com>
3166         PR other/46026
3167         * configure.ac (CXX_FOR_TARGET): Add -funconfigured-libstdc++-v3.
3168         * Makefile.def (CXX_FOR_TARGET): Removed from flags_to_pass.
3169         * Makefile.tpl (CXX_FOR_TARGET_FLAG_TO_PASS): New.
3170         (BASE_FLAGS_TO_PASS): Use it.
3171         * configure: Rebuilt.
3172         * Makefile.in: Rebuilt.
3174 2010-11-23  H.J. Lu  <hongjiu.lu@intel.com>
3176         PR binutils/12258
3177         * configure.ac: Correct comments for --enable-gold/--enable-ld.
3178         Properly check default linker.
3179         * configure: Regnerated.
3181 2010-11-23  Matthias Klose  <doko@ubuntu.com>
3183         * configure.ac: For --enable-gold, handle value `default' instead of
3184         `both*'.   New configure option --{en,dis}able-ld.
3185         * configure: Regenerate.
3187 2010-11-20  Ian Lance Taylor  <iant@google.com>
3189         * configure.ac: Only disable a language library if no language needs
3190         it.  Don't let --disable-libgcj uncondtionally disable libffi.
3191         * configure: Rebuild.
3193 2010-11-20  Paolo Bonzini  <bonzini@gnu.org>
3195         * configure: Regenerate.
3197 2010-11-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3199         PR other/46202
3200         * configure.ac: Fix just-built in-tree STRIP name to be
3201         binutils/strip-new.
3202         * configure: Regenerate.
3203         * Makefile.def (install-strip-gcc, install-strip-binutils)
3204         (install-strip-opcodes, install-strip-ld, install-strip-itcl)
3205         (install-strip-sid): Mirror dependencies on non-strip variants
3206         of these targets on the respective -strip prerequisites.
3207         * Makefile.tpl (install-strip, install-strip-host)
3208         (install-strip-target): New targets.
3209         (install-strip-[+module+], install-strip-target-[+module+]):
3210         New targets.
3211         * Makefile.in: Regenerate.
3213 2010-11-19  Ian Lance Taylor  <iant@google.com>
3214             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3216         * configure.ac: Add target-libgo to target_libraries.  Set
3217         and substitute GOC_FOR_BUILD and GOC_FOR_TARGET.
3218         * Makefile.tpl (BUILD_EXPORTS): Add GOC and GOCFLAGS.
3219         (HOST_EXPORTS): Add GOC.
3220         (BASE_TARGET_EXPORTS): Add GOC.
3221         (GOC_FOR_BUILD, GOCFLAGS, GOC_FOR_TARGET): New variables.
3222         (GOCFLAGS_FOR_TARGET): New variable.
3223         (EXTRA_HOST_FLAGS): Add GOC.
3224         (EXTRA_TARGET_FLAGS): Add GOC and GOCFLAGS.
3225         * Makefile.def (target_modules): Add libgo.
3226         (flags_to_pass): Add GOC_FOR_TARGET and GOCFLAGS_FOR_TARGET.
3227         (dependencies): Add dependency from configure-target-libgo to
3228         configure-target-libffi and all-target-libstdc++-v3.  Add
3229         dependencies from all-target-libgo to all-target-libffi.
3230         (languages): Add go.
3231         * configure: Rebuild.
3232         * Makefile.in: Rebuild.
3234 2010-11-19  Ian Lance Taylor  <iant@google.com>
3236         * config-ml.in: Add Go support: treat GOC and GOCFLAGS like other
3237         compiler/flag environment variables.
3239 2010-11-18  Ian Lance Taylor  <iant@google.com>
3241         * configure.ac: Check for lang_requires_boot_languages in
3242         config-lang.in files.
3243         * configure: Rebuild.
3245 2010-11-17  Mike Frysinger  <vapier@gentoo.org>
3247         * .gitignore: New file.
3249 2010-11-16  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
3250             Tobias Burnus  <burnus@net-b.de>
3252         PR fortran/32049
3253         * Makefile.def: Add libquadmath; build it with language=fortran.
3254         * configure.ac: Add libquadmath.
3255         * Makefile.tpl: Handle multiple libs in check-[+language+].
3256         * Makefile.in: Regenerate.
3257         * configure: Regenerate.
3259 2010-11-15  Andreas Schwab  <schwab@redhat.com>
3261         * configure.ac: Fix spelling in option names.
3262         * configure: Regenerated.
3264 2010-11-13  Georg-Johann Lay  <georgjohann@web.de>
3266         PR bootstrap/39622
3267         * configure.ac (FLAGS_FOR_TARGET): Add include-fixed path.
3268         * configure: Regenerated.
3270 2010-11-12  Tobias Grosser  <grosser@fim.uni-passau.de>
3272         * config/cloog.m4: Add -enable-cloog-backend=(isl|ppl|ppl-legacy) to
3273         define the cloog backend to use. Furthermore, only pass the ppllibs to
3274         the configure checks, if necessary.
3275         * configure: Regenerate.
3277 2010-11-12  Tobias Grosser  <grosser@fim.uni-passau.de>
3279         * config/cloog.m4: Use CLooG predefined macro to check for CLooG PPL.
3280         * configure: regenerate
3282 2010-11-12  Tobias Grosser  <grosser@fim.uni-passau.de>
3284         * config/cloog.m4: Fix typo.  verison -> version.
3285         * configure: Regenerate.
3287 2010-11-12  Tobias Grosser  <grosser@fim.uni-passau.de>
3289         * config/cloog.m4: Pass ppl libraries to the CLooG version check.
3290         * configure: Regenerate.
3292 2010-11-11  Andreas Simbuerger  <simbuerg@fim.uni-passau.de>
3294         * configure.ac: Support official CLooG.org versions.
3295         * configure: Regenerate.
3296         * config/cloog.m4: New.
3298 2010-11-05  Michael Eager  <eager@eagercon.com>
3300         * COPYING.LIBGLOSS: Correct typo in microblaze.
3301         * COPYING.NEWLIB: Same.
3303 2010-11-04  Iain Sandoe  <iains@gcc.gnu.org>
3305         * configure.ac (*-*-darwin*): Use mh-darwin for all Darwin variants.
3306         * configure: Regenerate.
3308 2010-11-03  Ian Lance Taylor  <iant@google.com>
3309             Dave Korn  <dave.korn.cygwin@gmail.com>
3311         PR lto/46273
3312         * configure.ac: Remove libelf tests.  Build lto-plugin on ELF always
3313         and on other supported platforms whenever LTO is enabled.
3314         * configure: Rebuild.
3316 2010-11-02  Alan Modra  <amodra@gmail.com>
3318         PR binutils/12110
3319         * configure.ac: Error when source path contains spaces.
3320         * configure: Regenerate.
3322 2010-10-20  Ian Lance Taylor  <iant@google.com>
3324         * Makefile.def (target_modules): Set lib_path to src/.libs for
3325         libstdc++-v3 module.
3326         * Makefile.tpl: Fix typo in TARGET_LIB_PATH comment.
3327         * Makefile.in: Rebuild.
3329 2010-10-08  Bernd Schmidt  <bernds@codesourcery.com>
3330             Joseph Myers  <joseph@codesourcery.com>
3332         * COPYING.LIBGLOSS: Add National Semiconductor and CodeSourcery
3333         notices.
3334         * COPYING.NEWLIB: Add Texas Instruments notice.
3336 2010-10-07  Dave Korn  <dave.korn.cygwin@gmail.com>
3338         * configure.ac (build_lto_plugin): New shell variable.
3339         (--enable-lto): Turn on by default for all non-ELF platforms that
3340         have had LTO support added so far.  Set build_lto_plugin appropriately
3341         for both ELF and non-ELF.
3342         (configdirs): Add lto-plugin or not based on build_lto_plugin.
3343         * configure: Regenerate.
3345 2010-10-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3347         PR bootstrap/45326
3348         PR bootstrap/45174
3349         * configure.ac: Honor initial values of $build_configargs,
3350         $host_configargs, $target_configargs.  Mark the precious, so
3351         environment settings get recorded.
3352         * configure: Regenerate.
3354 2010-10-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3356         Sync from GCC:
3358         2010-09-30  Michael Eager  <eager@eagercon.com>
3360         * configure.ac (microblaze): Add target-libssp to noconfigdirs.
3361         * configure: Regenerate.
3363         2010-09-21  Iain Sandoe  <iains@gcc.gnu.org>
3365         * configure.ac (enable-lto): Add Darwin to the list of supported lto
3366         targets and amend comment.
3367         * configure: Regenerate.
3369         2010-09-03  Jack Howarth <howarth@bromo.med.uc.edu>
3371         * configure.ac: Enable LTO by default on Darwin.
3372         * configure: Regenerate.
3374         2010-07-23  Marc Glisse <marc.glisse@normalesup.org>
3376         PR bootstrap/44455
3377         * configure.ac (extra_mpfr_configure_flags): Copy from
3378         extra_mpc_gmp_configure_flags.
3379         * configure: Re-generated.
3381 2010-09-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3383         Sync from GCC:
3385         PR bootstrap/45796
3386         * Makefile.def (info-gcc, dvi-gcc, pdf-gcc, html-gcc):
3387         Depend on all-build-libiberty.
3388         * Makefile.in: Regenerate.
3390 2010-09-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3392         Sync from GCC:
3394         PR bootstrap/44621
3395         * configure.ac: Fix unportable shell quoting.
3396         * configure: Regenerate.
3398 2010-07-26  Naveen.H.S  <naveen.S@kpitcummins.com>
3400         * configure.ac: Support all v850 targets.
3401         * configure: Regenerate.
3403 2010-07-17  Jack Howarth  <howarth@bromo.med.uc.edu>
3405         PR target/44862
3406         * Makefile.tpl (POSTSTAGE1_CXX_EXPORT):
3407         Provide -B option to allow for link spec %s substitutions for
3408         libstdc++.a on darwin.
3409         * Makefile.in: Regenerate.
3411 2010-06-10  Alexandre Oliva  <aoliva@redhat.com>
3413         * Makefile.def (configure-gcc): Depend on all-libelf.
3414         * Makefile.in: Rebuild.
3416 2010-06-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3418         * config.sub, config.guess: Update from upstream sources.
3420 2010-06-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3422         Sync from GCC:
3424         2010-05-05  Sebastian Pop  <sebastian.pop@amd.com>
3425         * configure.ac: Allow all the versions greater than 0.10 of PPL.
3426         * configure: Regenerated.
3428         2010-04-20  Eric Botcazou  <ebotcazou@adacore.com>
3429         * configure.ac (BUILD_CONFIG): Redirect output to /dev/null.
3430         * configure: Regenerate.
3432         2010-04-17  Ralf Cors<E9>pius  <ralf.corsepius@rtems.org>
3433         * configure.ac (*-*-rtems*): Add target-libiberty to $skipdirs.
3434         * configure: Regenerate.
3436         2010-04-16  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
3437         * configure.ac: Check for elf_getshdrstrndx or elf_getshstrndx
3438         separately.
3439         * configure: Regenerate.
3441         2010-04-13  Steve Ellcey  <sje@cup.hp.com>
3442         * configure: Regenerate after change to elf.m4.
3444         2010-04-02  Sebastian Pop  <sebastian.pop@amd.com>
3445         * configure.ac: Add brackets around AC_TRY_COMPILE alternative.
3446         * configure: Regenerated.
3448         2010-04-02  Sebastian Pop  <sebastian.pop@amd.com>
3449         * configure.ac: Print "buggy but acceptable" when CLooG
3450         revision is less than 9.
3451         * configure: Regenerated.
3453 2010-05-26  Dave Korn  <dave.korn.cygwin@gmail.com>
3455         Merge from gcc:
3457         2010-05-18  Steven Bosscher  <steven@gcc.gnu.org>
3458         * configure.ac (--enable-lto): All *-apple-darwin* now support LTO.
3459         * configure: Regenerate.
3461         2010-05-07  Steven Bosscher  <steven@gcc.gnu.org>
3462         * configure.ac (--enable-lto): Add x86_64-apple-darwin* as
3463         a platform that supports LTO.
3464         * configure: Regenerate.
3466         2010-04-27  Dave Korn  <dave.korn.cygwin@gmail.com>
3467         PR lto/42776
3468         * configure.ac (--enable-lto): Refactor handling so libelf tests
3469         are only performed inside then-clause of ACX_ELF_TARGET_IFELSE,
3470         and allow LTO to be explicitly enabled on non-ELF platforms that
3471         are known to support it inside else-clause.
3472         * configure: Regenerate.
3474 2010-04-27  Roland McGrath  <roland@redhat.com>
3475             H.J. Lu  <hongjiu.lu@intel.com>
3477         * configure.ac (--enable-gold): Support both, both/gold and
3478         both/bfd to add gold to configdirs without removing ld.
3479         * configure: Regenerated.
3481         * Makefile.def: Add install-gold dependency to install-ld.
3482         * Makefile.in: Regenerated.
3484 2010-04-14  Tristan Gingold  <gingold@adacore.com>
3486         * configure.ac (alpha*-*-*vms*): Remove ld from noconfigdirs.
3487         * configure: Regenerate.
3489 2010-04-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3491         Merge from gcc:
3492         PR bootstrap/43615
3493         PR bootstrap/43328
3494         Revert:
3495         2010-03-31  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3496         * configure.ac: Do not pass --enable-multilib nor
3497         --disable-multilib in baseargs.  Accept explicitly passed
3498         --enable_multilib.
3499         * configure: Regenerate.
3501 2010-03-31  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3503         PR bootstrap/43328
3504         * configure.ac: Do not pass --enable-multilib nor
3505         --disable-multilib in baseargs.  Accept explicitly passed
3506         --enable_multilib.
3507         * configure: Regenerate.
3509 2010-03-23  Joseph Myers  <joseph@codesourcery.com>
3511         * configure.ac (tic6x-*-*): New case.
3512         * configure: Regenerate.
3514 2010-03-23  Joseph Myers  <joseph@codesourcery.com>
3516         Merge from gcc:
3517         2010-03-19  Jack Howarth <howarth@bromo.med.uc.edu>
3518         PR ada/42554
3519         * configure.ac: Only pass -c to ranlib for darwin9 and earlier.
3520         * configure: Regenerate.
3522 2010-03-23  Joseph Myers  <joseph@codesourcery.com>
3524         * config.sub: Update to version 2010-03-22.
3525         * config.guess: Update to version 2009-12-30.
3527 2010-03-14  Joseph Myers  <joseph@codesourcery.com>
3529         Merge from gcc:
3530         2010-01-11  Richard Guenther  <rguenther@suse.de>
3531         PR lto/41569
3532         * Makefile.def (all-lto-plugin): Depend on all-gcc.
3533         * Makefile.in: Regenerated.
3535 2010-03-01  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
3537         PR libstdc++/32499
3538         * configure.ac (RANLIB): Default to true.
3539         (STRIP): Likewise.
3540         (RANLIB_FOR_TARGET): Remove superfluous : argument.
3541         * configure: Regenerate.
3543 2010-02-17  Nick Clifton  <nickc@redhat.com>
3545         PR 11238
3546         * Makefile.tpl (local-distclean): Also remove config.cache files in
3547         sub-directories as there may not be Makefiles present in the
3548         sub-directories.
3549         * Makefile.tpl: Use "-exec rm {}" rather than "-delete" to delete
3550         the config.cache files found by the find command.
3552         * Makefile.in: Regenerate.
3553         * configure.ac: Revert previous delta.
3554         * configure: Regenerate.
3556 2010-02-15  Nick Clifton  <nickc@redhat.com>
3558         PR 11238
3559         * configure.ac: Delete config.cache files in sub-directories when
3560         deleting Makefiles.
3561         * configure: Regenerate.
3563 2010-02-15  Nick Clifton  <nickc@redhat.com>
3565         * configure.ac: Sync from gcc.
3566         * configure: Regenerate.
3568 2010-01-31  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3570         Sync from gcc:
3571         * configure.ac: Add "recommended" version checks for GMP/MPC.
3572         Update recommended GMP/MPFR/MPC versions.
3573         * configure: Regenerate.
3575 2010-01-25  Joern Rennecke  <amylaar@spamcop.net>
3577         gcc PR libstdc++/36101, gcc PR libstdc++/42813
3578         * configure.ac (bootstrap_target_libs): Make inclusion of
3579         target-libgomp conditional on libgomb being in target_configdirs.
3580         * configure: Regenerate.
3582 2010-01-23  Joern Rennecke  <amylaar@spamcop.net>
3584         gcc PR libstdc++/36101, gcc PR libstdc++/42813
3585         * configure.ac (bootstrap_target_libs): Include target-libgomp.
3586         * configure: Regenerate.
3588 2010-01-22  Joern Rennecke  <amylaar@spamcop.net>
3590         gcc PR libstdc++/36101, gcc PR libstdc++/42813
3591         * configure.ac (target_configdirs): Substitute.
3592         * Makefile.def: Bootstrap target module libgomp.
3593         Add dependency of all-target-libstdc++-v3 on configure-target-libgomp.
3594         * Makefile.tpl (TARGET_CONFIGDIRS): New makefile variable.
3595         (BASE_TARGET_EXPORTS): Export TARGET_CONFIGDIRS.
3596         * configure, Makefile.in: Regenerate.
3598 2009-12-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3600         * libtool.m4: Sync from git Libtool.
3601         * ltmain.sh: Likewise.
3602         * ltoptions.m4: Likewise.
3603         * ltversion.m4: Likewise.
3604         * lt~obsolete.m4: Likewise.
3606 2010-01-07  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3607             Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
3609         PR bootstrap/42424
3610         * configure.ac: Include libtool m4 files.
3611         (_LT_CHECK_OBJDIR): Call it.
3612         (extra_mpc_mpfr_configure_flags, extra_mpc_gmp_configure_flags,
3613         gmplibs, ppllibs, clooglibs): Use $lt_cv_objdir.
3615         * configure: Regenerate.
3617 2010-01-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3619         PR bootstrap/41818
3620         * Makefile.tpl (BASE_TARGET_EXPORTS): Only add TARGET_LIB_PATH
3621         to $(RPATH_ENVVAR) if bootstrapping.  Fix typo in comment.
3622         * Makefile.in: Regenerate.
3624 2009-12-18  Ben Elliston  <bje@au.ibm.com>
3626         * config.sub, config.guess: Update from upstream sources.
3628 2009-12-17  Jeff Johnston  <jjohnstn@redhat.com>
3630         * COPYING.NEWLIB: Update copyright date.
3631         * COPYING.LIBGLOSS: Ditto.
3633 2009-12-07  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3635         PR middle-end/30447
3636         PR middle-end/30789
3637         PR other/40302
3639         * configure.ac: Require MPC.
3640         * configure: Regenerate.
3642         * configure.ac: Update minimum MPC version to 0.8.
3643         * configure: Regenerate.
3645 2009-11-20  Paolo Bonzini  <bonzini@gnu.org>
3647         * config.guess: Sync with upstream and gcc.
3648         * config.sub: Sync with upstream and gcc.
3650 2009-11-16  Alexandre Oliva  <aoliva@redhat.com>
3652         * Makefile.def: Restore host and target settings for gmp.
3653         * Makefile.in: Rebuild.
3655 2009-11-16  Alexandre Oliva  <aoliva@redhat.com>
3657         * configure.ac: Add libelf to host_libs.  Enable in-tree configury
3658         of ppl and cloog.  Fix in-tree configury of libelf, skip tests.
3659         Fix portability of test of C++ as bootstrap language.  Add
3660         ppl/src/ppl-config.o to the bootstrap compare exclusion list.
3661         * configure: Rebuild.
3662         * Makefile.def: Drop host and target settings from gmp, mpfr, ppl,
3663         and cloog.  Fix in-tree ppl configuration.  Introduce libelf
3664         in-tree building.
3665         * Makefile.tpl (POSTSTAGE1_CXX_EXPORT): New.
3666         (POSTSTAGE1_HOST_EXPORTS): Use it.
3667         (STAGE[+id+]_CXXFLAGS): New.
3668         (BASE_FLAGS_TO_PASS): Pass it down.
3669         (configure-stage[+id+]-[+prefix+][+module+]): Use it.  Add
3670         extra_exports.
3671         (all-stage[+id+]-[+prefix+][+module+]): Likewise.
3672         (configure-[+prefix+][+module+], all-[+prefix+][+module+]): Add
3673         extra_exports.
3674         * Makefile.in: Rebuild.
3676 2009-11-06  Ozkan Sezer  <sezeroz@gmail.com>
3678         * configure.ac (FLAGS_FOR_TARGET):  Add -L and -isystem
3679         paths for *-w64-mingw* and x86_64-*mingw*.
3680         * configure: Regenerated.
3682 2009-10-30  Kai Tietz  <kai.tietz@onevision.com>
3684         * configure.ac: Disable target-winsup & co for
3685         x86_64-*-mingw* and *-w64-mingw* targets.
3686         * configure: Regenerated.
3688 2009-10-23  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
3690         * configure.ac (CLooG test): Use = with test.
3691         * configure: Regenerate.
3693 2009-10-22  Richard Guenther  <rguenther@suse.de>
3695         * configure.ac: Do not set LIBS for ppl/cloog checks.  Disable
3696         cloog if the ppl version check failed.  Move flags saving
3697         before setting in libelf check.
3698         * configure: Regenerate.
3700 2009-10-21  Richard Guenther  <rguenther@suse.de>
3702         * configure.ac: Adjust the ppl and cloog configure to work as
3703         documented.  Disable cloog if ppl was disabled.  Omit the version
3704         checks if they were disabled.
3705         * configure: Re-generate.
3707 2009-10-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3709         * configure.ac: Add 'lto' to enable_languages, not
3710         new_enable_languages, and only if not already present.
3711         * configure: Regenerate.
3713 2009-10-06  Ian Lance Taylor  <iant@google.com>
3715         * Makefile.def: check-gold depends upon all-gas.
3716         * Makefile.in: Rebuild.
3718 2009-10-03  2009-02-05  Rafael Avila de Espindola  <espindola@google.com>
3720         * Makefile.def: all-lto-plugin depends on all-libiberty.
3721         set bootstrap=true for lto-plugin.
3722         Add lto-plugin.
3723         * Makefile.in: Regenerate.
3724         * configure.ac (host_libs): Add lto-plugin.
3725         * configure: Regenerate.
3727 2009-10-03  Diego Novillo  <dnovillo@google.com>
3729         * Makefile.tpl (HOST_EXPORTS): Add LIBELFLIBS and LIBELFINC.
3730         (HOST_LIBELFLIBS): Define.
3731         (HOST_LIBELFINC): Define.
3732         * Makefile.in: Regenerate.
3733         * configure.ac: Add --enable-lto.
3734         Add --with-libelf, --with-libelf-include and --with-libelf-lib.
3735         If --enable-lto is used, add 'lto' to new_enable_languages.
3736         If --enable-lto is used and gold is enabled, add
3737         lto-plugin to configdirs.
3738         * configure: Regenerate.
3740 2009-10-03  Simon Baldwin  <simonb@google.com>
3742         * configure.ac: If --with-system-zlib, suppress local zlib and
3743         pass --with-system-zlib to subdir configure scripts.
3744         * configure: Regenerate.
3746 2009-10-01  Loren J. Rittle <ljrittle@acm.org>
3747             Paolo Bonzini  <bonzini@gnu.org>
3749         * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Use $$s rather than
3750         $(srcdir).
3751         * Makefile.in: Rebuilt.
3753 2009-09-29  Paolo Bonzini  <bonzini@gnu.org>
3755         Sync from gcc:
3756         2009-09-26  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3758         * configure.ac: Update minimum MPC version to 0.7.
3759         * configure: Regenerate.
3761 2009-09-25  Nick Clifton  <nickc@redhat.com>
3763         * configure.ac: Pass any --cache-file=/dev/null option on to
3764         subconfigures.
3765         * configure: Regenerate.
3767 2009-09-23  Nick Clifton  <nickc@redhat.com>
3769         * config.sub, config.guess: Update from upstream sources.
3771 2009-09-22  Loren J. Rittle <ljrittle@acm.org>
3773         * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Remove stray $$r/.
3774         * Makefile.in: Rebuilt.
3776 2009-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3778         PR bootstrap/32272
3779         * configure.ac: Error out if $srcdir isn't '.' but contains
3780         host-${host_noncanonical}.
3781         * configure: Regenerate.
3783 2009-09-21  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3785         * configure.ac: If bootstrapping a combined tree with
3786         --enable-gold, require c++ in stage1_languages.
3787         * configure: Regenerate.
3789         * configure.ac: Also add target_libs of stage1_languages to
3790         bootstrap_target_libs.
3791         * configure: Regenerate.
3793         * configure.ac: Diagnose --enable-build-with-cxx bootstrap
3794         with --enable-languages not containing c++.
3795         * configure: Regenerate.
3797 2009-09-16  Jie Zhang  <jie.zhang@analog.com>
3799         * configure.ac: Disable java and boehm-gc for bfin-*-*.
3800         * configure: Regenerate.
3802 2009-09-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3804         * configure.ac: Do not use $extrasub for replacing @if/@endif
3805         parts in Makefile; instead, use additional arguments to
3806         AC_CONFIG_COMMANDS to do the replacement manually, with several
3807         sed invocations, to avoid HP-UX sed command limits.
3808         * configure: Regenerate.
3810 2009-09-04  Alexandre Oliva  <aoliva@redhat.com>
3812         * configure.ac (with-build-config): Document.  Handle without.
3813         Handle missing argument.
3814         * configure: Rebuilt.
3816 2009-09-03  Alexandre Oliva  <aoliva@redhat.com>
3818         * configure.ac (--with-build-config): New.  Set BUILD_CONFIG.
3819         Default to bootstrap-debug only if compare-debug works.
3820         * configure: Rebuilt.
3821         * Makefile.tpl: Make BUILD_CONFIG configure-configurable.
3822         * Makefile.in: Rebuilt.
3824 2009-09-01  Alexandre Oliva  <aoliva@redhat.com>
3826         * Makefile.tpl (BUILD_CONFIG): Default to bootstrap-debug.
3827         * Makefile.in: Rebuilt.
3829 2009-09-02  Paolo Bonzini  <bonzini@gnu.org>
3831         * Makefile.tpl (AWK): Fix typo.
3832         * Makefile.in: Regenerate.
3834 2009-09-02  Paolo Bonzini  <bonzini@gnu.org>
3836         * configure.ac: Detect awk and sed.
3837         * Makefile.def (flags_to_pass): Add AWK and SED.
3838         * Makefile.tpl (AWK, SED): New.
3839         (BASE_FLAGS_TO_PASS): Add AWK and SED.
3840         * configure: Regenerate.
3841         * Makefile.in: Regenerate.
3843 2009-09-01  Tristan Gingold  <gingold@adacore.com>
3845         * setup.com: Ported to Itanium VMS.  Can also build using DCL scripts.
3846         Remove logical names.
3848 2009-08-31  Dave Korn  <dave.korn.cygwin@gmail.com>
3850         * ltmain.sh (func_normal_abspath): New function.
3851         (func_relative_path): Likewise.
3852         (func_mode_help): Document new -bindir option for link mode.
3853         (func_mode_link): Add new -bindir option, and use it to place
3854         output DLL if specified.
3856 2009-08-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3858         * configure.ac (AC_PREREQ): Bump to 2.64.
3860 2009-08-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3862         * README-maintainer-mode: Point directly to upstream locations
3863         for autoconf, automake, libtool, gettext, instead of copies on
3864         sources.redhat.com.  Document required versions.
3865         * configure.ac: Do not substitute datarootdir, htmldir,
3866         pdfdir, docdir.  Do not process --with-datarootdir,
3867         --with-htmldir, --with-pdfdir, --with-docdir.
3868         * configure: Regenerate.
3870         * configure: Regenerate.
3872         * compile: Sync from Automake 1.11.
3873         * depcomp: Likewise.
3874         * install-sh: Likewise.
3875         * missing: Likewise.
3876         * mkinstalldirs: Likewise.
3877         * ylwrap: Likewise.
3879 2009-08-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3881         * configure.ac: Call AC_DISABLE_OPTION_CHECKING.
3882         (baseargs): Add --disable-option-checking.
3883         * configure: Regenerate.
3885         * Makefile.def (configure-target-libiberty): Depend on
3886         all-binutils and all-ld.
3887         (configure-target-newlib): Likewise.
3888         * Makefile.in: Regenerate.
3890 2009-08-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3892         Sync with GCC, merge:
3894         2009-07-31  Christian Bruel  <christian.bruel@st.com>
3896         * configure.ac (sh*-*-elf): Don't add target-libgloss to noconfigdirs.
3897         * configure: Regenerate.
3899         2009-07-06  Ian Lance Taylor  <iant@google.com>
3901         * configure.ac: Add missing comma in AC_ARG_WITH(boot-libs).
3902         * configure: Rebuild.
3904         2009-06-26  Steve Ellcey  <sje@cup.hp.com>
3906         PR bootstrap/40338
3907         * configure.ac (comparestring): Create new variable.
3908         * Makefile.tpl (comparestring): Use to skip some comparisions.
3909         * configure: Regenerate.
3910         * Makefile.in: Regenerate.
3912         2009-06-23  Ian Lance Taylor  <iant@google.com>
3914         * configure.ac: Add --enable-build-with-cxx.  When set, add c++ to
3915         boot_languages.  Only bootstrap target libraries listed in
3916         target_libs for some boot language.  Add --with-stage1-ldflags,
3917         --with-stage1-libs, --with-boot-ldflags, --with-boot-libs.  Remove
3918         with_host_libstdcxx from ppllibs.  Only add -fkeep-inline-functions
3919         if not building with C++.
3920         * Makefile.def: For target_module libstdc++-v3, set bootstrap=true.
3921         * Makefile.tpl (STAGE1_LDFLAGS, STAGE1_LIBS): New variables.
3922         (POSTSTAGE1_LDFLAGS, POSTSTAGE1_LIBS): New variables.
3923         (HOST_EXPORTS): Add STAGE1_LDFLAGS to LDFLAGS.  Export HOST_LIBS.
3924         (POSTSTAGE1_HOST_EXPORTS): Set CXX and CXX_FOR_BUILD.  Add
3925         POSTSTAGE1_LDFLAGS to LDFLAGS.  Export HOST_LIBS.
3926         (POSTSTAGE1_FLAGS_TO_PASS): Likewise.
3927         * configure, Makefile.in: Rebuild.
3929         2009-06-08  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3931         * configure.ac: Detect MPC in default directory.
3932         * configure: Regenerate.
3934         2009-06-02  Richard Sandiford  <r.sandiford@uk.ibm.com>
3936         * configure.ac (powerpc-*-aix*, rs6000-*-aix*): Add target-newlib
3937         to noconfdirs.
3938         * configure: Regenerate.
3940         2009-05-29  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3942         * Makefile.def: Add MPC support and dependencies.
3943         * configure.ac: Likewise.  Reorganize GMP/MPFR checks.
3945         * Makefile.in, configure: Regenerate.
3947         2009-05-24  Nicolas Roche  <roche@adacore.com>
3949         * Makefile.tpl (compare-target): Skip ./ada/*tools directories.
3950         * Makefile.in: Regenerate.
3952         2009-05-21  Dave Korn  <dave.korn.cygwin@gmail.com>
3954         * configure.ac (cygwin noconfigdirs):  Remove libgcj.
3955         * configure:  Regenerate.
3957         2009-05-07  Dave Korn  <dave.korn.cygwin@gmail.com>
3959         * configure.ac ($with_ppl):  Default to no if not supplied.
3960         ($with_cloog):  Likewise.
3961         configure:  Regenerate.
3963         2009-04-24  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3965         PR bootstrap/39739
3966         * configure.ac (extra_mpfr_configure_flags): Set and AC_SUBST.
3967         * Makefile.def (module=mpfr): Use extra_mpfr_configure_flags.
3969         * configure, Makefile.in: Regenerate.
3971         2009-04-14  Jakub Jelinek  <jakub@redhat.com>
3973         * configure.ac: Change copyright header to refer to version
3974         3 of the GNU General Public License and to point readers at the
3975         COPYING3 file and the FSF's license web page.
3976         * Makefile.def: Likewise.
3977         * Makefile.tpl: Likewise.
3978         * Makefile.in: Regenerate.
3980         2009-04-09  Jack Howarth  <howarth@bromo.med.uc.edu>
3982         * configure.ac: Restore match for darwin9 or later. Use double
3983         brackets since regeneration eats one pair.
3984         * configure: Regenerate.
3986 2009-08-18  Christopher Faylor  <me+cygwin@cgf.cx>
3988         * MAINTAINERS: Perform some obvious fixups.
3990 2009-08-17  Ben Elliston  <bje@au.ibm.com>
3992         * config.sub, config.guess: Update from upstream sources.
3994 2009-08-06  Michael Eager <eager@eagercon.com>
3996         * configure.ac: Add Microblaze target.
3997         * configure: Regenerate.
3999 2009-07-02  Tristan Gingold  <gingold@adacore.com>
4001         * configure.ac: Do not exclude gas for i386-*-darwin.
4002         Add a case for x86_64-*-darwin.
4003         * configure: Regenerate.
4005 2009-06-26  Doug Evans  <dje@sebabeach.org>
4007         * Makefile.def (host_modules): Add cgen.
4008         * Makefile.in: Regenerate.
4009         * configure.ac (host_tools): Add cgen.
4010         * configure: Regenerate.
4012 2009-06-17  Michael Eager <eager@eagercon.com>
4014         * COPYING.LIBGLOSS: Add Xilinx license.
4016 2009-06-15  Ryan Mansfield  <rmansfield@qnx.com>
4018         * configure.ac: Define is_elf for QNX Neutrino targets.
4019         * configure: Regenerate.
4021 2009-06-03  Jerome Guitton  <guitton@adacore.com>
4022             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4024         * Makefile.tpl (all): Avoid a trailing backslash.
4025         * Makefile.in: Regenerate.
4027 2009-06-03  Ben Elliston  <bje@au.ibm.com>
4029         * config.sub, config.guess: Update from upstream sources.
4031 2009-06-02  Alexandre Oliva  <aoliva@redhat.com>
4033         * Makefile.tpl ([+compare-target+]): Compare all stage
4034         directories, rather than just gcc.
4035         * Makefile.in: Rebuilt.
4037 2009-05-28  Doug Kwan  <dougkwan@google.com>
4039         * configure.ac: Support gold for target arm*-*-*.
4040         * configure: Regenerate.
4042 2009-05-27  Alexandre Oliva  <aoliva@redhat.com>
4044         * Makefile.tpl (all): Avoid harmless warning in make all when
4045         gcc-bootstrap is enabled but stage_last does not exist.
4046         * Makefile.in: Rebuilt.
4048 2009-05-25  Tristan Gingold  <gingold@adacore.com>
4050         * setup.com: Complete the file with configuration and build.
4052 2009-05-18  Alexandre Oliva  <aoliva@redhat.com>
4054         PR other/40159
4055         * Makefile.tpl (all): Don't assume gcc-bootstrap and
4056         gcc-no-bootstrap are mutually exclusive.
4057         * Makefile.in: Rebuilt.
4059 2009-05-18  Alexandre Oliva  <aoliva@redhat.com>
4061         PR other/40159
4062         * Makefile.tpl (all): Don't end with unconditional success.
4063         * Makefile.in: Rebuilt.
4065 2009-05-12  Alexandre Oliva  <aoliva@redhat.com>
4067         PR target/37137
4068         * Makefile.def (flags_to_pass): Remove redundant and incomplete
4069         STAGE1_CFLAGS, STAGE2_CFLAGS, STAGE3_CFLAGS, and STAGE4_CFLAGS.
4070         Add FLAGS_FOR_TARGET and BUILD_CONFIG.
4071         (bootstrap_stage): Remove bootstrap-debug custom stages.  Turn
4072         stage_configureflags, stage_cflags and stage_libcflags into
4073         explicit Makefile macros.
4074         * Makefile.tpl (HOST_EXPORTS, EXTRA_HOST_FLAGS): Pass GCJ and
4075         GFORTRAN.
4076         (POSTSTAGE1_HOST_EXPORTS): Add XGCC_FLAGS_FOR_TARGET and TFLAGS to
4077         CC.  Set CC_FOR_BUILD from CC.
4078         (BASE_TARGET_EXPORTS, RAW_CXX_TARGET_EXPORTS,
4079         NORMAL_TARGET_EXPORTS): Move SYSROOT_CFLAGS_FOR_TARGET and
4080         DEBUG_PREFIX_CFLAGS_FOR_TARGET from CFLAGS and CXXFLAGS to
4081         XGCC_FLAGS_FOR_TARGET.  Add it along with TFLAGS to CC, CXX, GCJ,
4082         and GFORTRAN.
4083         (TFLAGS, STAGE_CFLAGS, STAGE_TFLAGS, STAGE_CONFIGURE_FLAGS): New.
4084         (_LIBCFLAGS): Renamed to _TFLAGS.
4085         (do-compare-debug, do-compare3-debug): Drop.
4086         (CC, GCC_FOR_TARGET, CXX_FOR_TARGET, RAW_CXX_FOR_TARGET,
4087         GCJ_FOR_TARGET, GFORTRAN_FOR_TARGET): Remove FLAGS_FOR_TARGET.
4088         (FLAGS_FOR_TARGET, SYSROOT_CFLAGS_FOR_TARGET,
4089         DEBUG_PREFIX_CFLAGS_FOR_TARGET): Move down.
4090         (XGCC_FLAGS_FOR_TARGET): New.
4091         (BASE_FLAGS_TO_PASS): Pass STAGEid_CFLAGS, STAGEid_TFLAGS and TFLAGS.
4092         (EXTRA_HOST_FLAGS): Pass GCJ and GFORTRAN.
4093         (POSTSTAGE1_FLAGS_TO_PASS): Move SYSROOT_CFLAGS_FOR_TARGET and
4094         DEBUG_PREFIX_CFLAGS_FOR_TARGET from CFLAGS, CXXFLAGS, LIBCFLAGS,
4095         LIBCXXFLAGS to XGCC_FLAGS_FOR_TARGET.    Add it along with TFLAGS
4096         to CC, CXX, GCJ, and GFORTRAN.  Pass XGCC_FLAGS_FOR_TARGET and
4097         TFLAGS.
4098         (BUILD_CONFIG): Include if requested.
4099         (all): Set TFLAGS on bootstrap.
4100         (configure-stageid-prefixmodule): Pass TFLAGS, adjust FLAGS.
4101         (all-stageid-prefixmodule): Likewise.
4102         (do-clean, distclean-stageid): Set TFLAGS.
4103         (restrap): Fix whitespace.
4104         * Makefile.in: Rebuilt.
4106 2009-04-25  Eric Botcazou  <ebotcazou@adacore.com>
4108         * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Add GNATBIND.
4109         (POSTSTAGE1_FLAGS_TO_PASS): Pick up exported value for GNATBIND.
4110         * Makefile.in: Regenerate.
4112 2009-04-24  Eli Zaretskii  <eliz@gnu.org>
4114         * config.guess (pc:*:*:*): Return i586-pc-msdosdjgpp, for
4115         consistency with config.sub.  (Update from upstream sources.)
4117 2009-04-21  Joseph Myers  <joseph@codesourcery.com>
4119         * texinfo/texinfo.tex: Update to version 2009-03-28.05.
4121 2009-04-17  Ben Elliston  <bje@au.ibm.com>
4123         * config.sub, config.guess: Update from upstream sources.
4125 2009-04-15  Anthony Green  <green@moxielogic.com>
4127         * configure.ac: Add moxie support.
4128         * configure: Rebuilt.
4130 2009-04-09  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4132         * configure.ac: Bump minimum GMP/MPFR versions to 4.2 and 2.3.1.
4133         * configure: Regenerate.
4135 2009-04-09  H.J. Lu  <hongjiu.lu@intel.com>
4137         PR gas/10039
4138         * configure.ac: Require texinfo 4.7.
4139         * configure: Regenerated.
4141 2009-04-09  Steve Ellcey  <sje@cup.hp.com>
4143         * Makefil.def (languages): New entries.
4144         * Makefile.tpl (check-gcc-*): New generic target.
4145         * Makefile.in: Regenerate.
4147 2009-03-27  Eli Zaretskii  <eliz@gnu.org>
4149         * djunpack.bat: Use ".." quoting in Sed command, for the sake of
4150         Windows builds of Sed.
4152 2009-03-18  Tom Tromey  <tromey@redhat.com>
4154         * configure: Rebuild.
4155         * configure.ac (host_libs): Add libiconv.
4156         * Makefile.in: Rebuild.
4157         * Makefile.def (host_modules): Add libiconv.
4158         (configure-gdb, all-gdb): Depend on libiconv.
4160 2009-03-16  Tristan Gingold  <gingold@adacore.com>
4162         * configure.ac: Treat gdb as supported on x86_64-darwin.
4163         * configure: Regenerate.
4165 2009-03-16  Joseph Myers  <joseph@codesourcery.com>
4167         Merge from GCC:
4169         2009-03-16  Joseph Myers  <joseph@codesourcery.com>
4171         * configure.ac (--with-host-libstdcxx): New option.
4172         * configure: Regenerate.
4174         2009-01-29  Robert Millan  <rmh@aybabtu.com>
4176         * configure.ac: Recognize GNU/kOpenSolaris (*-*-kopensolaris*-gnu).
4177         * configure: Regenerate.
4179         2009-01-12  Sebastian Pop <sebastian.pop@amd.com>
4181         PR tree-optimization/38515
4182         * configure.ac (cloog-polylib): Removed.
4183         (with_ppl, with_cloog): Test for "no".
4184         * configure: Regenerated.
4186 2009-03-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4188         Backport from git Libtool:
4190         2009-01-19  Robert Millan  <rmh@aybabtu.com>
4191         Support GNU/kOpenSolaris.
4192         * libltdl/m4/libtool.m4 (_LT_SYS_DYNAMIC_LINKER)
4193         (_LT_CHECK_MAGIC_METHOD, _LT_COMPILER_PIC, _LT_LINKER_SHLIBS)
4194         (_LT_LANG_CXX_CONFIG) [kopensolaris*-gnu]: Recognize
4195         GNU/kOpenSolaris.
4197 2009-02-05  Andreas Schwab  <schwab@suse.de>
4199         * Makefile.tpl (stage_last): Define $r and $s before using
4200         $(RECURSE_FLAGS_TO_PASS).
4201         * Makefile.in: Regenerate
4203 2009-01-21  Jeff Johnston  <jjohnstn@redhat.com>
4205         * COPYING.NEWLIB: Add ARM license.
4207 2009-01-16  Alan Modra  <amodra@bigpond.net.au>
4209         * Makefile.def (configure-opcodes): Depend on configure-libiberty.
4210         (all-opcodes): Depend on all-libiberty.
4211         * Makefile.in: Regenerate.
4213 2009-01-15  Douglas B Rupp  <rupp@gnat.com>
4215         * configure.ac (ia64*-*-*vms*): Add case with no gdb or ld support.
4216         * configure: Regenerate.
4218 2008-12-18  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4220         Backport link test fix from upstream Libtool:
4222         * libltdl.m4 (_LT_SYS_DYNAMIC_LINKER, _LT_LINKER_SHLIBS):
4223         Add cache variables to tests that require the linker to work.
4224         For shlibpath_overrides_runpath, this also changes the semantics
4225         to let the result from the C compiler take precedence.
4226         compiler take precedence.
4228 2008-12-02  Ben Elliston  <bje@au.ibm.com>
4230         * config.sub, config.guess: Update from upstream sources.
4232 2008-12-17  Jeff Johnston  <jjohnstn@redhat.com>
4234         * COPYING.NEWLIB: Updated.
4235         * COPYING.LIBGLOSS: Ditto.
4237 2008-12-16  Paolo Bonzini  <bonzini@gnu.org>
4239         Sync with GCC:
4241         2008-12-12  Sebastian Pop  <sebastian.pop@amd.com>
4243         * configure.ac (ppllibs): Add by default the lib flags.
4244         * configure: Regenerate.
4246         2008-12-04  Jack Howarth  <howarth@bromo.med.uc.edu>
4248         * configure.ac: Add double brackets on darwin[912].
4249         * configure: Regenerate.
4251         2008-12-02  Jack Howarth  <howarth@bromo.med.uc.edu>
4253         * configure.ac: Expand to darwin10 and later.
4254         * configure: Regenerate.
4256 2008-12-02  Andreas Schwab  <schwab@suse.de>
4258         * Makefile.def: configure-target-boehm-gc depends on
4259         all-target-libstdc++-v3.
4260         * Makefile.in: Regenerate.
4262 2008-12-02  Ben Elliston  <bje@au.ibm.com>
4264         * config.sub, config.guess: Update from upstream sources.
4266 2008-11-27  Joseph Myers  <joseph@codesourcery.com>
4268         Merge from GCC:
4270         2007-12-02  Matthias Klose  <doko@ubuntu.com>
4272         * config-ml.in: Remove 64bit configure tests.
4274         2008-05-14  Rafael Espindola  <espindola@google.com>
4276         * config-ml.in: don't handle --enable-shared and --enable-static.
4278         2008-09-02  Sebastian Pop  <sebastian.pop@amd.com>
4279             Tobias Grosser  <grosser@fim.uni-passau.de>
4280             Jan Sjodin  <jan.sjodin@amd.com>
4281             Harsha Jagasia  <harsha.jagasia@amd.com>
4282             Dwarakanath Rajagopal  <dwarak.rajagopal@amd.com>
4283             Konrad Trifunovic  <konrad.trifunovic@inria.fr>
4284             Adrien Eliche  <aeliche@isty.uvsq.fr>
4286         Merge from graphite branch.
4287         * configure: Regenerate.
4288         * Makefile.in: Regenerate.
4289         * configure.ac (host_libs): Add ppl and cloog.
4290         Add checks for PPL and CLooG.
4291         * Makefile.def (ppl, cloog): Added modules and dependences.
4292         * Makefile.tpl (PPLLIBS, PPLINC, CLOOGLIBS, CLOOGINC): New.
4293         (HOST_PPLLIBS, HOST_PPLINC, HOST_CLOOGLIBS, HOST_CLOOGINC): New.
4295         2008-09-03  Richard Guenther  <rguenther@suse.de>
4297         * configure.ac: Always pass -DCLOOG_PPL_BACKEND to the
4298         cloog test.
4299         * configure: Re-generate.
4301         2008-09-03  Sebastian Pop  <sebastian.pop@amd.com>
4303         * configure.ac (--with-cloog-polylib): New.
4304         (--disable-cloog-version-check): New.
4305         (--disable-ppl-version-check): New.
4306         * configure: Re-generate.
4308         2008-09-05  Richard Guenther  <rguenther@suse.de>
4310         * configure.ac: Initialize clooglibs to -lcloog.
4311         * configure: Re-generate.
4313         2008-10-13  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4315         * configure.ac (MPFR check): Bump minimum version to 2.3.0 and
4316         recommended version to 2.3.2.
4318         * configure: Regenerate.
4320         2008-10-31  Ben Elliston  <bje@au.ibm.com>
4322         * configure.ac (spu-*-*): Remove special case.
4323         * configure: Regenerate.
4325         Complete comment text from GCC version of:
4327         2008-08-31  Aaron W. LaFramboise  <aaronavay62@aaronwl.com>
4329         * configure.ac (RPATH_ENVVAR): Use PATH on Windows.
4330         (GCC_SHLIB_SUBDIR): New.
4331         * Makefile.tpl (HOST_LIB_PATH_gcc): Use GCC_SHLIB_SUBDIR.
4332         * configure: Regenerate.
4333         * Makefile.in: Regenerate.
4335 2008-11-27  Tristan Gingold  <gingold@adacore.com>
4337         * configure.ac: Build gdb for i?86-*-darwin*
4338         * configure: Regenerated.
4340 2008-11-14  Daniel Jacobowitz  <dan@codesourcery.com>
4342         PR bootstrap/38014
4343         PR bootstrap/37923
4345         Revert:
4347         2008-10-24  Daniel Jacobowitz  <dan@codesourcery.com>
4349         * Makefile.tpl (HOST_EXPORTS): Correct CPPFLAGS typo.
4350         * Makefile.in: Regenerated.
4352         2008-10-22  Daniel Jacobowitz  <dan@codesourcery.com>
4354         PR gdb/921
4355         PR gdb/1646
4356         PR gdb/2175
4357         PR gdb/2176
4359         * Makefile.def (flags_to_pass): Add CPPFLAGS_FOR_BUILD and CPPFLAGS.
4360         * Makefile.tpl (BUILD_EXPORTS): Set CPPFLAGS.
4361         (EXTRA_BUILD_FLAGS): Correct typo.  Pass CPPFLAGS.
4362         (HOST_EXPORTS): Pass CPPFLAGS.
4363         (CPPFLAGS_FOR_BUILD, CPPFLAGS, CPPFLAGS_FOR_TARGET): Define.
4364         (LDFLAGS_FOR_TARGET): Initialize from configure script.
4365         (EXTRA_TARGET_FLAGS): Set CPPFLAGS.
4366         * Makefile.in, configure: Regenerated.
4367         * configure.ac: Set CPPFLAGS_FOR_TARGET, LDFLAGS_FOR_TARGET,
4368         and CPPFLAGS_FOR_BUILD.
4370 2008-10-29  Stefan Schulze Frielinghaus  <xxschulz@de.ibm.com>
4372         * configure.ac [spu-*-*]: Do not set skipdirs.
4373         * configure: Re-generate.
4375 2008-10-24  Daniel Jacobowitz  <dan@codesourcery.com>
4377         * Makefile.tpl (HOST_EXPORTS): Correct CPPFLAGS typo.
4378         * Makefile.in: Regenerated.
4380 2008-10-22  Daniel Jacobowitz  <dan@codesourcery.com>
4382         PR gdb/921
4383         PR gdb/1646
4384         PR gdb/2175
4385         PR gdb/2176
4387         * Makefile.def (flags_to_pass): Add CPPFLAGS_FOR_BUILD and CPPFLAGS.
4388         * Makefile.tpl (BUILD_EXPORTS): Set CPPFLAGS.
4389         (EXTRA_BUILD_FLAGS): Correct typo.  Pass CPPFLAGS.
4390         (HOST_EXPORTS): Pass CPPFLAGS.
4391         (CPPFLAGS_FOR_BUILD, CPPFLAGS, CPPFLAGS_FOR_TARGET): Define.
4392         (LDFLAGS_FOR_TARGET): Initialize from configure script.
4393         (EXTRA_TARGET_FLAGS): Set CPPFLAGS.
4394         * Makefile.in, configure: Regenerated.
4395         * configure.ac: Set CPPFLAGS_FOR_TARGET, LDFLAGS_FOR_TARGET,
4396         and CPPFLAGS_FOR_BUILD.
4398 2008-09-29  Peter O'Gorman  <pogma@thewrittenword.com>
4400         * libtool.m4: Update to libtool 2.2.6.
4401         * lt~obsolete.m4: Update to libtool 2.2.6.
4402         * ltmain.sh: Update to libtool 2.2.6.
4403         * ltsugar.m4: Update to libtool 2.2.6.
4404         * ltversion.m4: Update to libtool 2.2.6.
4405         * ltoptions.m4: Update to libtool 2.2.6.
4406         * ltgcc.m4: Update to match changes from libtool 2.2.6.
4408 2008-08-31  Aaron W. LaFramboise  <aaronavay62@aaronwl.com>
4410         * configure.ac (RPATH_ENVVAR): Use PATH on Windows.
4411         (GCC_SHLIB_SUBDIR): New.
4412         * Makefile.tpl (HOST_LIB_PATH_gcc): Use GCC_SHLIB_SUBDIR.
4413         * configure: Regenerate.
4414         * Makefile.in: Regenerate.
4416 2008-08-28  Tristan Gingold  <gingold@adacore.com>
4418         * configure.ac (powerpc-*-darwin*, i?86-*-darwin*,x86_64-*-darwin9):
4419         Enable bfd, binutils and opcodes.
4420         * configure: Regenerate.
4422 2008-08-16  Nicolas Roche  <roche@adacore.com>
4424         * Makefile.tpl: Add BOOT_ADAFLAGS.
4425         * Makefile.in: Regenerate.
4427 2008-08-16  Richard Sandiford  <rdsandiford@googlemail.com>
4429         * configure.ac (mips*-*-*linux*, mips*-*-gnu*): Use mt-mips-gnu.
4430         * configure: Regenerate.
4432 2008-07-30 Paolo Bonzini  <bonzini@gnu.org>
4434         Sync with gcc:
4435         2008-07-30 Paolo Bonzini  <bonzini@gnu.org>
4437         * configure.ac: Add makefile fragments for hpux.
4438         * Makefile.def (flags_to_pass): Add ADA_CFLAGS.
4439         * Makefile.tpl (HOST_EXPORTS): Pass ADA_CFLAGS.
4440         * configure: Regenerate.
4441         * Makefile.in: Regenerate.
4443         2008-06-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4445         * Makefile.tpl ($(srcdir)/configure): Update dependencies.
4446         * Makefile.in: Regenerate.
4447         * configure: Regenerate.
4449 2008-06-18  Ian Lance Taylor  <iant@google.com>
4451         * src-release (BINUTILS_SUPPORT_DIRS): Remove mkdep and depcomp.
4453         * src-release (BINUTILS_SUPPORT_DIRS): Add depcomp.
4455 2008-06-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4457         * configure: Regenerate.
4459 2008-06-16  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4461         * configure.ac: Set TOPLEVEL_CONFIGURE_ARGUMENTS early, when
4462         "$@" is still intact with both Autoconf 2.59 and 2.62.
4463         * configure: Regenerate.
4465 2008-06-16  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4467         * Makefile.tpl: Fix comment errors.
4468         * Makefile.in: Regenerate.
4470 2008-06-13  Julian Brown  <julian@codesourcery.com>
4472         * configure.ac (arm*-*-linux-gnueabi): Don't disable building
4473         of libobjc for ARM EABI Linux.
4474         * configure: Regenerate.
4476 2008-06-12  David S. Miller  <davem@davemloft.net>
4477             David Edelsohn  <edelsohn@gnu.org>
4479         * configure.ac: Add powerpc*-*-* to gold supported targets.
4480         * configure: Regenerate.
4482 2008-06-08  Joseph Myers  <joseph@codesourcery.com>
4484         PR tree-optimization/36218
4485         * Makefile.def (flags_to_pass): Add LDFLAGS_FOR_BUILD.
4486         * Makefile.tpl (EXTRA_BUILD_FLAGS): Define.
4487         (all prefix="build-"): Pass them to build-system sub-makes.
4488         * Makefile.in: Regenerate.
4490 2008-05-16  Daniel Jacobowitz  <dan@codesourcery.com>
4492         * src-release (DEVO_SUPPORT): Add ChangeLog, MAINTAINERS,
4493         README-maintainer-mode, lt~obsolete.m4, ltgcc.m4, depcomp,
4494         mkdep, and compile.  Update comments.
4495         (ETC_SUPPORT): Add ChangeLog and update comments.
4497 2008-05-11  Ian Lance Taylor  <iant@google.com>
4499         * src-release (BINUTILS_SUPPORT_DIRS): Add elfcpp and gold.
4501 2008-04-18  Paolo Bonzini  <bonzini@gnu.org>
4503         Sync with gcc:
4504         2008-04-18  Paolo Bonzini  <bonzini@gnu.org>
4506         PR bootstrap/35457
4507         * configure.ac: Include override.m4.
4508         * configure: Regenerate.
4510         2008-04-18  Paolo Bonzini  <bonzini@gnu.org>
4512         * Makefile.tpl (restrap): Call `make all' using double-colon rules.
4513         * Makefile.in: Regenerate.
4515         2008-04-11  Eric B. Weddington  <eweddington@cso.atmel.com>
4517         * configure.ac: Do not build libssp for the AVR.
4518         * configure: Regenerate.
4520 2008-04-18  Nick Clifton  <nickc@redhat.com>
4522         * MAINTAINERS: Replace reference to configure.in with reference to
4523         configure.ac.
4525 2008-04-18  M R Swami Reddy <MR.Swami.Reddy@nsc.com>
4527         * configure.ac (cr16-*-*): Add case for cr16 target and include gdb
4528         as nonconfigurable directories list.
4529         * configure: Regenerate.
4531 2008-04-14  David S. Miller  <davem@davemloft.net>
4533         * configure.ac: Add sparc*-*-* to gold supported targets.
4534         * configure: Regenerate.
4536 2008-04-14  Ben Elliston  <bje@au.ibm.com>
4538         * config.sub, config.guess: Update from upstream sources.
4540 2008-04-12  Hans-Peter Nilsson  <hp@axis.com>
4542         * Makefile.tpl <gcc>: Error early unless at least GNU make 3.80.
4543         * Makefile.in: Regenerate.
4545 2008-04-07  Ian Lance Taylor  <iant@google.com>
4547         * Makefile.def: check-gold depends upon all-binutils.
4548         * Makefile.in: Regenerate.
4550 2008-04-04  Nick Clifton  <nickc@redhat.com>
4552         PR binutils/4334
4553         * configure.ac: Run ACX_CHECK_CYGWIN_CAT_WORKS for cygwin hosted
4554         builds.
4555         * configure: Regenerate.
4557 2008-04-04  NightStrike  <NightStrike@gmail.com>
4559         PR other/35151
4560         * configure.ac: Combine rules for mingw32 and mingw64.
4561         * configure: Regenerate.
4563 2008-03-27  Paolo Bonzini  <bonzini@gnu.org>
4565         * Makefile.tpl (PICFLAG, PICFLAG_FOR_TARGET): Remove.
4566         * Makefile.in: Regenerate.
4568 2008-03-20  Ian Lance Taylor  <iant@google.com>
4570         * configure.ac: Add support for --enable-gold.
4571         * Makefile.def: Add gold as a directory like ld.
4572         * configure, Makefile.in: Regenerate.
4574 2008-03-19  Andreas Krebbel  <krebbel1@de.ibm.com>
4576         * opcodes/s390-mkopc.c (s390_opcode_cpu_val): S390_OPCODE_Z10 added.
4577         (s390_cond_extensions): Reduced extensions to the compare related.
4578         (main): z10 cpu type option added.
4579         (expandConditionalJump): Renamed to ...
4580         (insertExpandedMnemonic): ... this.
4582         * opcodes/s390-opc.c: Re-group the operand format makros.
4583         (INSTR_RIE_RRPU, INSTR_RIE_RRP0, INSTR_RIE_RUPI,
4584         INSTR_RIE_R0PI, INSTR_RIE_RUPU, INSTR_RIE_R0PU, INSTR_RIE_R0IU,
4585         INSTR_RIE_R0I0, INSTR_RIE_R0UU, INSTR_RIE_R0U0,
4586         INSTR_RIE_RRUUU, INSTR_RIS_RURDI, INSTR_RIS_R0RDI, INSTR_RIS_RURDU,
4587         INSTR_RIS_R0RDU, INSTR_RRF_U0RR, INSTR_RRF_00RR, INSTR_RRS_RRRDU,
4588         INSTR_RRS_RRRD0, INSTR_RXY_URRD, INSTR_SIY_IRD, INSTR_SIL_RDI,
4589         INSTR_SIL_RDU): New instruction formats added.
4590         (MASK_RIE_RRPU, MASK_RIE_RRP0, MASK_RIE_RUPI, MASK_RIE_R0PI,
4591         MASK_RIE_RUPU, MASK_RIE_R0PU, MASK_RIE_R0IU, MASK_RIE_R0I0,
4592         MASK_RIE_R0UU, MASK_RIE_R0U0, MASK_RIE_RRUUU, MASK_RIS_RURDI,
4593         MASK_RIS_R0RDI, MASK_RIS_RURDU, MASK_RIS_R0RDU, MASK_RRF_U0RR,
4594         MASK_RRF_00RR, MASK_RRS_RRRDU, MASK_RRS_RRRD0, MASK_RXY_URRD,
4595         MASK_SIY_IRD, MASK_SIL_RDI, MASK_SIL_RDU): New instruction format
4596         masks added.
4597         (s390_opformats): New formats added "ris", "rrs", "sil".
4598         * opcodes/s390-opc.txt: Add the conditional jumps with the
4599         extensions removed from automatic expansion in s390-mkopc.c manually.
4600         (asi - trtre): Add new System z10 EC instructions.
4601         * include/opcode/s390.h (s390_opcode_cpu_val): S390_OPCODE_Z10 added.
4603 2008-03-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4605         * configure.ac: m4_include config/proginstall.m4.
4606         * configure: Regenerate.
4608 2008-03-16  Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4610         Backport from upstream Libtool:
4612         2007-10-12  Eric Blake  <ebb9@byu.net>
4614         Deal with Autoconf 2.62's semantic change in m4_append.
4615         * ltsugar.m4 (lt_append): Replace broken versions of
4616         m4_append.
4617         (lt_if_append_uniq): Don't require separator to be overquoted,
4618         and avoid broken m4_append.
4619         (lt_dict_add): Fix typo.
4620         * libtool.m4 (_LT_DECL): Don't overquote separator.
4622 2008-03-13  David Edelsohn  <edelsohn@gnu.org>
4624         * config.rpath: Add AIX 6 support.
4626 2008-03-13  Paolo Bonzini  <bonzini@gnu.org>
4628         * Makefile.def (stageprofile).  Remove -fprofile-generate
4629         from stage_libcflags.
4630         * Makefile.in: Regenerate.
4632 2008-03-13  Ben Elliston  <bje@au.ibm.com>
4634         * config.sub, config.guess: Update from upstream sources.
4636 2008-03-06  Florian Krohm  <fkrohm@us.ibm.com>
4638         * s390-opc.c (INSTR_RSL_R0RD): Fix operands.
4639         * s390-opc.txt (cmpsc): Duplicate entry removed.
4640         (dxr, sqdr, sqer, cxfbr, cdfbr, cefbr, lzer, lzdr, lzxr,
4641         cegbr, cdgbr, cxgbr, cegr, cdgr, cxgr, cxfr, cdfr, cefr, fixr, fidr,
4642         fier, cu42, cu41): Fix operand format.
4644 2008-02-20  Paolo Bonzini  <bonzini@gnu.org>
4646         PR bootstrap/32009
4647         PR bootstrap/32161
4649         * configure.ac (CFLAGS_FOR_TARGET, CXXFLAGS_FOR_TARGET): Compute here.
4650         * configure: Regenerate.
4652         * Makefile.def: Define stage_libcflags for all bootstrap stages.
4653         * Makefile.tpl (BOOT_LIBCFLAGS, STAGE2_LIBCFLAGS, STAGE3_LIBCFLAGS,
4654         STAGE4_LIBCFLAGS): New.
4655         (CFLAGS_FOR_TARGET, CXXFLAGS_FOR_TARGET): Subst from autoconf, without
4656         $(SYSROOT_CFLAGS_FOR_TARGET) and $(DEBUG_PREFIX_CFLAGS_FOR_TARGET).
4657         (BASE_TARGET_EXPORTS): Append them here to C{,XX}FLAGS.
4658         (EXTRA_TARGET_FLAGS): Append them here to {LIB,}C{,XX}FLAGS.
4659         (configure-stage[+id+]-[+prefix+][+module+]): Pass stage_libcflags
4660         for target modules.  Don't export LIBCFLAGS.
4661         (all-stage[+id+]-[+prefix+][+module+]): Pass stage_libcflags; pass
4662         $(BASE_FLAGS_TO_PASS) where [+args+] was passed, and [+args+] after
4663         the overridden CFLAGS_FOR_TARGET and CXXFLAGS_FOR_TARGET.
4664         (invocations of `all'): Replace $(TARGET_FLAGS_TO_PASS) with
4665         $(EXTRA_TARGET_FLAGS), $(FLAGS_TO_PASS) with $(EXTRA_HOST_FLAGS).
4666         * Makefile.in: Regenerate.
4668 2008-02-16  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4670         PR libgcj/33085
4671         * libtool.m4 (_LT_COMPILER_PIC) [ mingw, cygwin ] <GCJ>:
4672         Do not use -DDLL_EXPORT.  Backport from upstream.
4674 2008-02-14  Nick Clifton  <nickc@redhat.com>
4676         Import this patch from gcc:
4677         2008-01-24  David Edelsohn  <edelsohn@gnu.org>
4679         * libtool.m4: Backport AIX 6 support from ToT Libtool.
4681 2008-02-02  Hans-Peter Nilsson  <hp@axis.com>
4683         * configure.ac: Enable fortran for cris-*-elf and crisv32-*-elf.
4684         * configure: Regenerate.
4686 2008-01-31  Marc Gauthier  <marc@tensilica.com>
4688         * configure.ac (xtensa*-*-*): Recognize processor variants.
4689         * configure: Regenerate.
4691 2008-01-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4693         PR bootstrap/34922
4694         * configure.ac (PARSE_ARGS): Push suitable setting of
4695         ac_subdirs_all, for `./configure --help=recursive'.
4696         Handle `+' in generic toplevel directory disabling.
4697         * configure: Regenerate.
4699 2008-01-23  Ben Elliston  <bje@au.ibm.com>
4701         * config.sub, config.guess: Update from upstream sources.
4703 2008-01-08  Ben Elliston  <bje@au.ibm.com>
4705         * config.sub, config.guess: Update from upstream sources.
4707 2007-12-19  Jeff Johnston  <jjohnstn@redhat.com>
4709         * COPYING.LIBGLOSS: Update default copyright.
4711 2007-12-19  Jeff Johnston  <jjohnstn@redhat.com>
4713         * COPYING.NEWLIB: Update default copyright.
4715 2007-12-17  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4717         * configure.ac: Change required MPFR from 2.2.0 -> 2.2.1.
4718         Change recommended MPFR from 2.2.1 > 2.3.0.
4719         * configure: Regenerate.
4721 2007-12-13  Richard Sandiford  <rsandifo@nildram.co.uk>
4723         * Makefile.tpl (CFLAGS_FOR_TARGET): Add -g.
4724         (CXXFLAGS_FOR_TARGET): Add -O2 -g.
4725         * Makefile.in: Regenerate.
4727 2007-12-10  Andreas Tobler  <a.tobler@schweiz.org>
4729         * configure.ac: Enable libjava for x86_64-*-darwin9.
4730         * configure: Regenerate.
4732 2007-12-05  Ben Elliston  <bje@au.ibm.com>
4734         * config.sub, config.guess: Update from upstream sources.
4736 2007-11-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4738         * config-ml.in: Robustify against white space in absolute file
4739         names.
4741         * config-ml.in (multi-clean): Substitute ${Makefile}.
4742         Remove superfluous ${Makefile} in list.
4744 2007-10-23  Daniel Jacobowitz  <dan@codesourcery.com>
4746         * Makefile.def (dependencies): Make configure-gdb depend on
4747         all-intl.
4748         * Makefile.in: Regenerated.
4750 2007-10-15  Patrick Mansfield <patmans@us.ibm.com>
4752         * Makefile.def: To avoid problems running with parallel makes,
4753         build newlib before libgloss so that target specific header
4754         files are availble.
4755         * Makefile.in: Regenerate.
4757 2007-10-11  Daniel Jacobowitz  <dan@codesourcery.com>
4759         * Makefile.def (dependencies): Add all-gdb -> all-libdecnumber.
4760         * Makefile.in: Regenerate.
4762 2007-10-11  Daniel Jacobowitz  <dan@codesourcery.com>
4764         * src-release (GDB_SUPPORT_DIRS): Add libdecnumber.
4765         * libdecnumber: New directory, imported from GCC.
4767 2007-10-08  Mike Frysinger  <vapier@gentoo.org>
4769         * configure.ac (CFLAGS_FOR_BUILD, CXXFLAGS_FOR_BUILD,
4770         LDFLAGS_FOR_BUILD): Default them to host flags only for $host = $build.
4771         Set default CXXFLAGS_FOR_BUILD to CXXFLAGS, not CFLAGS.  Set default
4772         LDFLAGS_FOR_BUILD to LDFLAGS, not CFLAGS.
4773         * configure: Regenerate.
4775 2007-10-01  Paolo Bonzini  <bonzini@gnu.org>
4777         * Makefile.tpl (AR_FOR_BUILD, AS_FOR_BUILD, CXX_FOR_BUILD,
4778         DLLTOOL_FOR_BUILD, GCJ_FOR_BUILD, GFORTRAN_FOR_BUILD,
4779         LDFLAGS_FOR_BUILD, LD_FOR_BUILD, NM_FOR_BUILD, RANLIB_FOR_BUILD,
4780         WINDMC_FOR_BUILD, WINDRES_FOR_BUILD): Use autoconf substitutions.
4781         * configure.ac: Default them to host tools for $host = $build.
4782         Subst them.
4784         * configure: Regenerate.
4785         * Makefile.in: Regenerate.
4787 2007-09-20  Richard Sandiford  <rsandifo@nildram.co.uk>
4789         * configure.ac (mipsisa*-*-elfoabi*): New stanza.
4790         * configure: Regenerate.
4792 2007-09-19  Benjamin Kosnik  <bkoz@redhat.com>
4794         * configure.ac (TOPLEVEL_CONFIGURE_ARGUMENTS): Move libgomp before
4795         libstdc++.
4796         * Makefile.def: Add libgomp config as a maybe dependency for libstdc++.
4797         * configure: Regenerate.
4798         * Makefile.in: Regenerate.
4800 2007-09-17  Andreas Schwab  <schwab@suse.de>
4802         * configure.ac: Raise minimum makeinfo version to 4.6.
4803         * configure: Regenerate.
4805 2007-09-15  Alan Modra  <amodra@bigpond.net.au>
4807         * configure.ac: Correct makeinfo version check.
4808         * configure: Regenerate.
4810 2007-09-14  Richard Sandiford  <richard@codesourcery.com>
4812         * configure.ac (mips*-sde-elf*): New stanza.  Add target-libiberty
4813         to $skipdirs and only disable gprof for newlib.  Use the normal
4814         mips*-elf* handling in other respects.
4815         * configure: Regnerate.
4817 2007-09-12  David Daney  <ddaney@avtrex.com>
4819         * configure.ac: Remove mips64*-*-linux* noconfigdirs section, thus
4820         enabling libgcj.
4821         * configure: Regenerate.
4823 2007-09-12  Richard Guenther  <rguenther@suse.de>
4825         * configure.ac (--enable-stage1-checking): If neither --enable-checking
4826         nor --disable-checking is provided also turn on yes and types
4827         checking for stage1.
4828         * configure: Re-generate.
4830 2007-09-11  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
4832         PR target/33281
4833         * configure.ac: Use config/mh-mingw on mingw.
4834         * configure: Regenerate.
4836 2007-09-10  Rask Ingemann Lambertsen  <rask@sygehus.dk>
4838         PR other/32154
4839         * configure.ac: For libgloss targets, point the linker to the linker
4840         script, startup code and simulator library.
4841         * configure: Regenerate.
4843 2007-09-09  Andrew Haley  <aph@redhat.com>
4845         * configure.ac (noconfigdirs): Remove target-libffi and
4846         target-libjava.
4848 2007-08-29  Nick Clifton  <nickc@redhat.com>
4850         * config.sub, config.guess: Update from upstream sources.
4852 2007-08-21  Richard Guenther  <rguenther@suse.de>
4854         * configure.ac: Add types checking to stage1 checking flags.
4855         * configure: Regenerate.
4857 2007-08-18  Paul Brook  <paul@codesourcery.com>
4858             Joseph Myers  <joseph@codesourcery.com>
4860         * Makefile.tpl (DEBUG_PREFIX_CFLAGS_FOR_TARGET): New.
4861         (CFLAGS_FOR_TARGET, CXXFLAGS_FOR_TARGET): Include it.
4862         * Makefile.in: Regenerate.
4863         * configure.ac (--with-debug-prefix-map): New.
4864         * configure: Regenerate.
4866 2007-08-17  Richard Sandiford  <richard@codesourcery.com>
4867             Nigel Stephens  <nigel@mips.com>
4869         * configure.ac (mips*-sde-elf*): New stanza.  Use config/mt-sde
4870         as target_makefile_frag.
4871         * configure: Regenerate.
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-16  Alexandre Oliva  <aoliva@redhat.com>
4884         * Makefile.def (STAGE2_CFLAGS, STAGE3_CFLAGS, STAGE4_CFLAGS):
4885         Add to flags_to_pass.  Adjust uses of BOOT_CFLAGS.
4886         (bootstrap2-debug, bootstrap-debug): New bootstrap stages.
4887         * Makefile.tpl (STAGE2_CFLAGS, STAGE3_CFLAGS, STAGE4_CFLAGS): New.
4888         (do-compare, do-compare3, do-compare-debug): New.
4889         ([+compare-target+]): Use them.
4891 2007-08-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4892             Ben Elliston  <bje@au.ibm.com>
4894         * configure.ac (TOPLEVEL_CONFIGURE_ARGUMENTS, baseargs): Pass
4895         --silent if $silent.
4896         * configure: Regenerate.
4898 2007-08-12  Daniel Jacobowitz  <dan@codesourcery.com>
4900         * src-release (DEVO_SUPPORT): Add COPYING3 and COPYING3.LIB.
4902 2007-07-17  Nick Clifton  <nickc@redhat.com>
4904         * COPYING3: New file.  Contains version 3 of the GNU General
4905         Public License.
4906         * COPYING3.LIB: New file.  Contains version 3 of the GNU
4907         Lesser General Public License.
4909 2007-07-11  Bernd Schmidt  <bernd.schmidt@analog.com>
4911         * configure.ac: Fix my previous change to really match GCC.
4912         * configure: Regenerate.
4914 2007-07-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4916         * configure.ac: Rewrite 'configure --help' strings to look nicer.
4917         * configure: Regenerate.
4919 2007-07-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4921         * configure.ac: Add some missing m4 quotation.
4922         * configure: Regenerate.
4924 2007-07-09  Kai Tietz   <kai.tietz@onevision.com>
4926         * Makefile.def: Add windmc tool to build.
4927         * Makefile.tpl: Likewise.
4928         * configure.ac: Likewise.
4929         * Makefile.in: Regenerate.
4930         * configure: Regenerate.
4932 2007-07-05  H.J. Lu  <hongjiu.lu@intel.com>
4934         * lt~obsolete.m4: New. Import from 20070318 libtool.
4936 2007-06-29  Bernd Schmidt  <bernd.schmidt@analog.com>
4938         * configure.ac: Don't add target-libmudflap to noconfigdirs for
4939         uclinux and linux-uclibc targets.
4940         * configure: Regenerate.
4942 2007-06-28  DJ Delorie  <dj@redhat.com>
4944         * configure.ac (arm*-*-linux-gnueabi): Don't build libgloss if we're
4945         not building newlib.
4946         * configure: Regenerated.
4948 2007-06-22  Daniel Jacobowitz  <dan@codesourcery.com>
4950         * src-release (DEVO_SUPPORT): Correct typos.
4952 2007-06-18  Daniel Jacobowitz  <dan@codesourcery.com>
4954         * Makefile.def: Add dependency from configure-gdb to all-bfd.
4955         * Makefile.in: Regenerated.
4957 2007-06-14  Paolo Bonzini  <bonzini@gnu.org>
4959         * Makefile.tpl (cleanstrap): Don't delete the toplevel Makefile.
4960         (distclean-stage[+id+]): Possibly delete stage_last.
4961         * Makefile.in: Regenerate.
4963 2007-06-07  Ben Elliston  <bje@au.ibm.com>
4965         * config.sub, config.guess: Update from upstream sources.
4967 2007-06-07  Ben Elliston  <bje@au.ibm.com>
4969         * Makefile.tpl: Fix spelling error.
4970         * Makefile.in: Regenerate.
4972 2007-06-04  Paolo Bonzini  <bonzini@gnu.org>
4974         Sync with gcc:
4975         2007-05-30  Jakub Jelinek  <jakub@redhat.com>
4977         PR bootstrap/29382
4978         * configure.ac: Don't use -fkeep-inline-functions for GCC < 3.3.1.
4979         * configure: Rebuilt.
4981 2007-06-01  Steve Ellcey  <sje@cup.hp.com>
4983         * libtool.m4 (LT_CMD_MAX_LEN): Try using getconf to set
4984         lt_cv_sys_max_cmd_len.
4986 2007-05-31  Paolo Bonzini  <bonzini@gnu.org>
4988         * ltgcc.m4: Update from GCC.
4990 2007-05-25  Andreas Tobler  <a.tobler@schweiz.org>
4992         * ltmain.sh: Fix Darwin verstring, remove ${wl}.
4994 2007-05-24  Steve Ellcey  <sje@cup.hp.com>
4996         * ltmain.sh: Update from GCC.
4997         * libtool.m4: Update from GCC.
4998         * ltsugar.m4: New. Update from GCC.
4999         * ltversion.m4: New. Update from GCC.
5000         * ltoptions.m4: New. Update from GCC.
5001         * ltconfig: Remove.
5002         * ltcf-c.sh: Remove.
5003         * ltcf-cxx.sh: Remove.
5004         * ltcf-gcj.sh: Remove.
5005         * src-release: Update with new libtool file list.
5007 2007-05-16  Paolo Bonzini  <bonzini@gnu.org>
5009         * Makefile.def (bootstrap_stage): Replace stage_make_flags with
5010         stage_cflags.
5011         * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS, POSTSTAGE1_FLAGS_TO_PASS):
5012         Remove CFLAGS/LIBCFLAGS.
5013         (configure-stage[+id+]-[+prefix+][+module+],
5014         all-stage[+id+]-[+prefix+][+module+]): Pass it from [+stage_cflags+].
5015         * Makefile.in: Regenerate.
5017 2007-04-14  Steve Ellcey  <sje@cup.hp.com>
5019         * config-ml.in: Update from GCC.
5021 2007-04-09  Daniel Jacobowitz  <dan@codesourcery.com>
5023         * src-release (do-proto-toplev): Process the support directories before
5024         the tool directory.
5026 2007-03-21  Richard Sandiford  <richard@codesourcery.com>
5028         * configure.ac (TOPLEVEL_CONFIGURE_ARGUMENTS): Fix m4 quoting
5029         of glob.  Quote arguments with single quotes too.
5030         * configure: Regenerate.
5032 2007-03-12  Brooks Moses  <brooks.moses@codesourcery.com>
5034         * Makefile.def (fixincludes): Remove unneeded "missing" lines.
5035         * Makefile.in: Regenerate
5037 2007-03-07  Andreas Schwab  <schwab@suse.de>
5039         * configure: Regenerate.
5041 2007-03-01  Brooks Moses  <brooks.moses@codesourcery.com>
5043         * configure.ac: Add "--with-pdfdir" configure option,
5044         which defines pdfdir variable.
5045         * Makefile.def (target=fixincludes): Add install-pdf to
5046         missing targets.
5047         (recursive_targets): Add install-pdf target.
5048         (flags_to_pass): Add pdfdir.
5049         * Makefile.tpl: Add pdfdir handling, add do-install-pdf
5050         target.
5051         * configure: Regenerate
5052         * Makefile.in: Regenerate
5054 2007-02-28  Eric Christopher  <echristo@apple.com>
5056         Revert:
5057         2006-12-07  Mike Stump  <mrs@apple.com>
5059         * Makefile.def (dependencies): Add dependency for
5060         install-target-libssp and install-target-libgomp on
5061         install-gcc.
5062         * Makefile.in: Regenerate.
5064 2007-02-27  Matt Kraai  <kraai@ftbfs.org>
5066         * configure: Regenerate.
5067         * configure.ac: Move statements after variable declarations.
5069 2007-02-19  Joseph Myers  <joseph@codesourcery.com>
5071         * configure.ac: Adjust for loop syntax.
5072         * configure: Regenerate.
5074 2007-02-18  Alexandre Oliva  <aoliva@redhat.com>
5076         * configure: Rebuilt.
5078 2007-02-18  Alexandre Oliva  <aoliva@redhat.com>
5080         * configure.ac: Drop multiple occurrences of --enable-languages,
5081         and fix its quoting.
5082         * configure: Rebuilt.
5084 2007-02-17  Mark Mitchell  <mark@codesourcery.com>
5085             Nathan Sidwell  <nathan@codesourcery.com>
5086             Vladimir Prus  <vladimir@codesourcery.com
5087             Joseph Myers  <joseph@codesourcery.com>
5089         * configure.ac (TOPLEVEL_CONFIGURE_ARGUMENTS): Fix quoting.
5090         * configure: Regenerate.
5092 2007-02-13  Daniel Jacobowitz  <dan@codesourcery.com>
5094         * configure.ac (target_libraries): Move libgcc before libiberty.
5095         * configure: Regenerated.
5097 2007-02-13  Paolo Bonzini  <bonzini@gnu.org>
5099         * configure: Regenerate again?
5101 2007-02-13  Paolo Bonzini  <bonzini@gnu.org>
5103         * configure: Reapply PR30748 fix which was lost in the previous commit.
5105 2007-02-13  Daniel Jacobowitz  <dan@codesourcery.com>
5106             Paolo Bonzini  <bonzini@gnu.org>
5108         PR bootstrap/30753
5109         * configure.ac: Remove obsolete build / host tests.  Use AC_PROG_CC
5110         unconditionally.  Use AC_PROG_CXX.  Use ACX_TOOL_DIRS to find $prefix.
5111         * configure: Regenerated.
5113 2007-02-10  Paolo Bonzini  <bonzini@gnu.org>
5115         * configure: Regenerate.
5117 2007-02-09  Daniel Jacobowitz  <dan@codesourcery.com>
5119         PR bootstrap/30748
5120         * configure.ac: Correct syntax for Solaris ksh.
5121         * configure: Regenerated.
5123 2007-02-09  Paolo Bonzini  <bonzini@gnu.org>
5125         * Makefile.def: Sync with GCC.
5126         * Makefile.tpl: Sync with GCC.
5127         * Makefile.in: Regenerate.
5128         * configure: Regenerate.
5130 2007-02-09  Daniel Jacobowitz  <dan@codesourcery.com>
5132         * Makefile.tpl (build_alias, host_alias, target_alias): Use
5133         noncanonical equivalents.
5134         * configure.in: Rename to...
5135         * configure.ac: ...this.  Update AC_PREREQ.  Prevent error for
5136         AS_FOR_TARGET.  Set build_noncanonical, host_noncanonical, and
5137         target_noncanonical.  Use them.  Rewrite removal of configure
5138         arguments for autoconf 2.59.  Discard variable settings.  Force
5139         program_transform_name for native tools.
5141         * Makefile.in: Regenerated.
5142         * configure: Regenerated with autoconf 2.59.
5144         * src-release (DEVO_SUPPORT, do-proto-toplev): Expect configure.ac.
5146 2007-02-08  Jeff Johnston  <jjohnstn@redhat.com>
5148         * COPYING.LIBGLOSS: Reformat default Red Hat
5149         license to fit within 80 columns.
5150         * COPYING.NEWLIB: Ditto.
5152 2007-02-05  Dave Brolley  <brolley@redhat.com>
5154         * Contribute the following changes:
5155         2006-11-28  DJ Delorie  <dj@redhat.com>
5157         * configure.in: Fix typo for mep's target_makefile_frag.
5158         * configure: Regenerated.
5160         2005-04-22  Richard Sandiford  <rsandifo@redhat.com>
5162         * configure.in (mep*): Add -mlibrary to FLAGS_FOR_TARGET.
5163         * configure: Regenerate.
5165         2001-09-19  DJ Delorie  <dj@redhat.com>
5167         * configure.in (target_makefile_frag): use mt-mep
5169         2001-06-12  Don Howard  <dhoward@redhat.com>
5171         * configure.in: Remove gdb from MeP skip list.
5173         2001-04-05  DJ Delorie  <dj@redhat.com>
5175         * configure.in (noconfigdirs): Remove gcc from MeP skip list.
5177         2001-03-20  Ben Elliston  <bje@redhat.com>
5179         * configure.in (noconfigdirs): Add gcc and gdb for MeP.
5181         2001-03-19  Ben Elliston  <bje@redhat.com>
5183         * config.sub (mep, mep-*): Add.
5185 2007-01-31  Andreas Schwab  <schwab@suse.de>
5187         * Makefile.tpl (LDFLAGS): Substitute it.
5188         * Makefile.in: Regenerate.
5190 2007-01-11  Paolo Bonzini  <bonzini@gnu.org>
5192         * configure.in: Change == to = in test command.
5193         * configure: Regenerate.
5195 2007-01-11  Paolo Bonzini  <bonzini@gnu.org>
5196             Nick Clifton  <nickc@redhat.com>
5197             Kaveh R. Ghazi  <ghazi@caip.rutgets.edu>
5199         * configure.in (build_configargs, host_configargs, target_configargs):
5200         Remove build/host/target parameters.
5201         (host_libs): Add gmp and mpfr.
5202         (GMP tests): Reorganize to allow in-tree GMP/MPFR.
5203         * Makefile.def (gmp, mpfr): New.
5204         (gcc): Remove target.
5205         * Makefile.tpl (build_os, build_vendor, host_os, host_vendor,
5206         target_os, target_vendor): New.
5207         (configure): Add host_alias/target_alias arguments.  Adjust invocations.
5208         * configure: Regenerate.
5209         * Makefile.in: Regenerate.
5211 2007-01-11  Matt Fago  <fago@earthlink.net>
5213         * configure.in: Try to link to functions only in mpfr 2.2.x
5214         to improve robustness of configure tests.
5215         * configure: Regenerate.
5217 2007-01-08  Kai Tietz   <kai.tietz@onevision.com>
5219         * configure.in: Add support for an x86_64-mingw* target.
5220         * configure: Regenerate.
5222 2007-01-05  Daniel Jacobowitz  <dan@codesourcery.com>
5224         * Makefile.tpl (all-target): Correct @if conditional for target
5225         modules.
5226         * configure.in: Omit libiberty if building only target libgcc.
5227         * configure, Makefile.in: Regenerated.
5229 2007-01-04  Paolo Bonzini  <bonzini@gnu.org>
5231         * configure.in: Use DEV-PHASE to detect the default for --enable-werror.
5232         * configure: Regenerate.
5234 2007-01-03  Daniel Jacobowitz  <dan@codesourcery.com>
5236         * Makefile.def (target_modules): Add libgcc.
5237         (lang_env_dependencies): Remove default items.  Use no_c and no_gcc.
5238         * Makefile.tpl (clean-target-libgcc): Delete.
5239         (configure-target-[+module+]): Emit --disable-bootstrap dependencies
5240         on gcc even for bootstrapped modules.  Rewrite handling of
5241         lang_env_dependencies to loop over target_modules.
5242         * configure.in (target_libraries): Add target-libgcc.
5243         * Makefile.in, configure: Regenerated.
5245 2006-12-29  Paolo Bonzini  <bonzini@gnu.org>
5247         Sync with gcc:
5248         2006-12-29  Paolo Bonzini  <bonzini@gnu.org>
5250         * configure.in: Reorganize recognition of languages.  Add
5251         --enable-stage1-languages.  Show supported languages for the chosen
5252         target rather than all recognized languages.
5253         * configure: Regenerate.
5255         2006-12-29  Paolo Bonzini  <bonzini@gnu.org>
5257         * Makefile.tpl (GCC_STRAP_TARGETS, all-prebootstrap): Remove.
5258         * Makefile.in: Regenerate.
5260         2006-12-29  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
5262         * configure.in: Warn that MPFR 2.2.0 is buggy.
5263         * configure: Regenerate.
5265 2006-12-27  Ian Lance Taylor  <iant@google.com>
5267         * configure.in: When removing Makefiles to force a reconfigure, also
5268         remove prev-DIR*/Makefile.
5269         * configure: Regenerate.
5271 2006-12-23  Kazu Hirata  <kazu@codesourcery.com>
5273         * config.bfd: Recognize fido.
5275 2006-12-19  Paolo Bonzini  <bonzini@gnu.org>
5277         Sync with gcc:
5279         2006-12-19  Paolo Bonzini  <bonzini@gnu.org>
5281         * configure.in: Remove "$build" case for powerpc-*-darwin* since
5282         it only affects bootstrap and could be tested on "$host" as well.
5283         * configure: Regenerate.
5284         * config/mh-ppc-darwin: Add to the stage1 cflags here.
5286         2006-12-19  Paolo Bonzini  <bonzini@gnu.org>
5288         PR bootstrap/29544
5289         * Makefile.def (flags_to_pass): Add STAGE1_CHECKING.
5290         (bootstrap_stage): Add STAGE1_CHECKING to stage1 configure flags,
5291         move here comment from Makefile.tpl.
5292         * Makefile.tpl: Move some definitions higher in the file.
5293         (STAGE1_CHECKING): New.
5294         * configure.in: Add --enable-stage1-checking.
5295         * configure: Regenerate.
5296         * Makefile.in: Regenerate.
5298         2006-12-03  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
5300         * configure.in: Update error message for missing GMP/MPFR.
5302         * configure: Regenerate.
5304         2006-12-02  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
5306         * configure.in: Update MPFR version in error message.
5308         * configure: Regenerate.
5310         2006-11-26  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
5312         * configure.in (--with-mpfr-dir, --with-gmp-dir): Remove flags.
5313         (--with-mpfr-include, --with-mpfr-lib, --with-gmp-include,
5314         --with-gmp-lib): New flags.
5316         * configure: Regenerate.
5318 2006-12-12  Andreas Tobler  <a.tobler@schweiz.org>
5320         PR bootstrap/30134
5321         * configure.in: Correct x86 darwin support for libjava to powerpc
5322         and i?86 only.
5323         * configure: Regenerate.
5325 2006-12-11  Alan Modra  <amodra@bigpond.net.au>
5327         * configure.in:  Handle spu makefile frag.
5328         * Makefile.tpl (MAINT): Define
5329         (MAINTAINER_MODE_FALSE, MAINTAINER_MODE_TRUE): Define.
5330         * configure: Regenerate.
5331         * Makefile.in: Regenerate.
5333 2006-12-11  Ben Elliston  <bje@au.ibm.com>
5335         * config.sub, config.guess: Update from upstream sources.
5337 2006-12-11  Ben Elliston  <bje@au.ibm.com>
5339         * configure.in: Sync with GCC (spu-*-*).
5340         * configure: Sync with GCC.
5342 2006-12-07  Mike Stump  <mrs@apple.com>
5344         * Makefile.def (dependencies): Add dependency for
5345         install-target-libssp and install-target-libgomp on
5346         install-gcc.
5347         * Makefile.in: Regenerate.
5349 2006-11-16  Paolo Bonzini  <bonzini@gnu.org>
5351         * Makefile.tpl (clean-target-libgcc): Test for gcc Makefile presence.
5352         (unstage): Test for stage_last presence.
5354         PR bootstrap/29802
5355         * Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Add HOST_SUBDIR in STAGE_PREFIX.
5356         * Makefile.in: Regenerate.
5358 2006-11-14  DJ Delorie  <dj@redhat.com>
5360         * Makefile.tpl (clean-stage*): Sync with GCC (clean).
5361         * Makefile.in: Sync with GCC.
5362         * configure.in: Sync with GCC (mpfr, gmp).
5363         * configure: Sync with GCC.
5365 2006-11-08  Jie Zhang  <jie.zhang@analog.com>
5367         * configure.in: Remove target-libgloss from noconfigdirs for
5368         bfin-*-*.
5369         * configure: Regenerated.
5371 2006-10-27  Jeff Johnston  <jjohnstn@redhat.com>
5373         * COPYING.NEWLIB: Add spu license.
5374         * COPYING.LIBGLOSS: Ditto.
5376 2006-10-17  Brooks Moses  <bmoses@stanford.edu>
5378         * Makefile.def: Added pdf target handling.
5379         * Makefile.tpl: Added pdf target handling.
5380         * Makefile.in: Regenerated.
5382 2006-10-11  Jeff Johnston  <jjohnstn@redhat.com>
5384         * COPYING.NEWLIB: Updated.
5385         * COPYING.LIBGLOSS: Ditto.
5387 2006-09-27  Dave Brolley  <brolley@redhat.com>
5389         * configure.in (RUNTEST): Look for 'runtest' in the source tree by using
5390         $s instead of $r.
5391         * configure: Regenerated.
5393 2006-09-26  Ben Elliston  <bje@au.ibm.com>
5395         * config.sub, config.guess: Update from upstream sources.
5397 2006-09-20  Thiemo Seufer  <ths@mips.com>
5399         * configure.in: Remove redundant handling of mips*-dec-bsd*. Likewise
5400         for mipstx39-*-*. Disable libgloss for mips64*-*-linux*.
5401         * configure: Regenerate.
5403 2006-08-30  Corinna Vinschen  <corinna@vinschen.de>
5405         * configure.in: Never build newlib for a Mingw host.
5406         Never build newlib as Mingw target library.
5407         Test the existence of winsup/cygwin for building a Cygwin newlib,
5408         rather than just winsup.
5409         Add winsup/mingw and winsup/w32api paths to FLAGS_FOR_TARGET if
5410         building a Mingw target.
5411         * configure: Regenerate.
5413 2006-08-15  Thiemo Seufer  <ths@mips.com>
5414             Nigel Stephens  <nigel@mips.com>
5415             David Ung  <davidu@mips.com>
5417         * config.sub: Add support for sde as alias of mipsisa32-sde-elf.
5419 2006-07-25  Paolo Bonzini  <bonzini@gnu.org>
5421         Sync from GCC:
5422         2006-07-04  Eric Botcazou  <ebotcazou@libertysurf.fr>
5424         PR bootstrap/18058
5425         * configure.in: Add -fkeep-inline-functions to CFLAGS for stage 1
5426         if the bootstrap compiler is a GCC version that supports it.
5427         * configure: Regenerate.
5429 2006-07-22  Daniel Jacobowitz  <dan@codesourcery.com>
5431         * configure.in: Allow mingw32 and cygwin targets to build cross-gdb.
5432         * configure: Regenerated.
5434 2006-07-18  Paolo Bonzini  <bonzini@gnu.org>
5436         * Makefile.tpl (configure-stageN-MODULE): Pass --with-build-libsubdir
5437         for stages after the first.
5439 2006-07-17  Jakub Jelinek  <jakub@redhat.com>
5441         * Makefile.def: Add dependencies for configure-opcodes
5442         on configure-intl and all-opcodes on all-intl.
5443         * Makefile.in: Regenerated.
5445 2006-07-04  Peter O'Gorman  <peter@pogma.com>
5447         * ltconfig: chmod 644 before ranlib during install.
5449 2006-07-03  Paolo Bonzini  <bonzini@gnu.org>
5451         * configure.in: Fix thinkos in previous check-in.
5452         * configure: Regenerate.
5454 2006-07-03  Paolo Bonzini  <bonzini@gnu.org>
5456         Sync from gcc:
5458         2007-07-03  Paolo Bonzini  <bonzini@gnu.org>
5460         PR other/27063
5461         * configure.in: Test subdir_requires and give an appropriate
5462         error message.
5463         * configure: Regenerate.
5465         2006-06-16  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
5467         PR target/27540
5468         * configure.in: Only enable libgomp on IRIX 6.
5469         * configure: Regenerate.
5471 2006-06-20  David Ayers  <d.ayers@inode.at>
5473         PR bootstrap/28072
5474         * configure.in: Add target-boehm-gc to noconfigdirs depending on
5475         whether target-libjava is being configured instead of whether the
5476         java front end is enabled.
5477         * configure: Regenerate.
5479 2006-06-15  Mark Shinwell  <shinwell@codesourcery.com>
5481         * include/elf/arm.h: Correct names of R_ARM_LDC_G{0,1,2}
5482         to R_ARM_LDC_SB_G{0,1,2} respectively.
5484 2006-06-15  Paolo Bonzini  <bonzini@gnu.org>
5486         * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Export CFLAGS and LDFLAGS
5487         too.
5488         * Makefile.in: Regenerate.
5490 2006-06-13  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
5492         Sync from gcc:
5494         2006-06-12  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
5495         * configure.in: Don't enable libgomp on hpux10.
5496         * configure: Rebuilt.
5498 2006-06-13  David Ayers  <d.ayers@inode.at>
5500         Sync from gcc:
5502         2006-06-12  David Ayers  <d.ayers@inode.at>
5504         PR bootstrap/27963
5505         PR target/19970
5506         * configure.in: Remove target-boehm-gc from noconfigdirs where
5507         ${libgcj} is specified.
5508         * configure: Regenerate.
5510 2006-06-08  Jeff Johnston  <jjohnstn@redhat.com>
5512         Sync from gcc:
5514         2005-01-12  David Edelsohn  <edelsohn@gnu.org>
5515                     Andreas Schwab  <schwab@suse.de>
5517         PR bootstrap/18033
5518         * config-ml.in: Eval option if surrounded by single quotes.
5520 2006-06-07  Carlos O'Donell  <carlos@codesourcery.com>
5522         Sync from gcc:
5524         2006-06-06  David Ayers  <d.ayers@inode.at>
5526         PR libobjc/13946
5527         * Makefile.def: Add dependencies for libobjc which boehm-gc.
5528         * Makefile.in: Regenerate.
5529         * configure.in: Add --enable-objc-gc at toplevel and have it
5530         enable boehm-gc for Objective-C.
5531         Remove target-boehm-gc from libgcj.
5532         Add target-boehm-gc to target_libraries.
5533         Add target-boehm-gc to noconfigdirs where ${libgcj}
5534         is specified.
5535         Assert that boehm-gc is supported when requested for Objective-C.
5536         Only build boehm-gc if needed either for Java or Objective-C.
5537         * configure: Regenerate.
5539         2006-06-05  Paolo Bonzini  <bonzini@gnu.org>
5541         PR 27674
5542         * Makefile.tpl (configure-[+prefix+][+module+],
5543         all-[+prefix+][+module+]): Depend on stage_current if bootstrapping.
5544         Remove rule to unstage bootstrapped modules.
5545         (stage_current): New.
5546         * Makefile.in: Regenerate.
5548         2006-05-20  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
5549         Andreas Tobler  <a.tobler@schweiz.ch>
5551         * configure.in:  Enable libgcj for hppa*-hp-hpux11*.
5552         * configure: Rebuilt.
5554         Revert
5555         2006-01-31  Richard Guenther  <rguenther@suse.de>
5556         Paolo Bonzini  <bonzini@gnu.org>
5558         * Makefile.def (target_modules): Add libgcc-math target module.
5559         * configure.in (target_libraries): Add libgcc-math target library.
5560         (--enable-libgcc-math): New configure switch.
5561         * Makefile.in: Re-generate.
5562         * configure: Re-generate.
5564 2006-06-05  Jeff Johnston  <jjohnstn@redhat.com>
5566         * config-ml.in: Alter CCASFLAGS to include special
5567         multilib options the same as is done for CFLAGS.
5569 2006-05-31  Daniel Jacobowitz  <dan@codesourcery.com>
5571         * Makefile.def: Added dependencies from sim and gdb on intl, and
5572         added configure dependencies to everything with an all dependency
5573         on intl.
5574         * gettext.m4: Removed.
5575         * src-release (DEVO_SUPPORT): Don't mention gettext.m4.
5576         (GDB_SUPPORT_DIRS): Add intl.
5577         * Makefile.in: Regenerated.
5579 2006-05-25  Daniel Jacobowitz  <dan@codesourcery.com>
5581         * src-release (DEVO_SUPPORT): Add config.rpath.
5583 2006-05-25  Paolo Bonzini  <bonzini@gnu.org>
5585         * Makefile.def (bfd, opcodes): Fix lib_path.
5586         * Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Replace ADAC with ADAFLAGS.
5587         (restrap): Move under "@if gcc-bootstrap".  Fix typo.
5588         * Makefile.in: Regenerate.
5590 2006-05-24  Mark Shinwell  <shinwell@codesourcery.com>
5592         * configure.in: Enable gprof for cross builds.
5593         * configure: Regenerate.
5595 2006-05-17  Daniel Jacobowitz  <dan@codesourcery.com>
5597         * src-release (MAKEINFOFLAGS): Define.
5598         (do-proto-toplev): Pass MAKEINFOFLAGS to submakes.
5600 2006-05-14  Ben Elliston  <bje@au.ibm.com>
5602         * config.sub, config.guess: Update from upstream sources.
5604 2006-05-12  Ben Elliston  <bje@au.ibm.com>
5606         * config.sub, config.guess: Update from upstream sources.
5608 2006-05-04  Steve Ellcey  <sje@cup.hp.com>
5610         * blt, iwidgets, mmalloc: Remove directories.
5612 2006-05-01  DJ Delorie  <dj@redhat.com>
5614         * configure.in: Restore CFLAGS if GMP isn't present.
5615         * configure: Regenerate.
5617 2006-04-18  DJ Delorie  <dj@redhat.com>
5619         * configure.in (m32c): Build libstdc++-v3.  Pass flags to
5620         reference libgloss so that libssp can be built in a combined
5621         tree.
5622         * configure: Regenerate.
5624 2006-04-10  Ben Elliston  <bje@au.ibm.com>
5626         * contrib: Remove directory.
5628 2006-04-06  Carlos O'Donell <carlos@codesourcery.com>
5630         * Makefile.tpl: Add install-html target.
5631         * Makefile.def: Add install-html target.
5632         * Makefile.in: Regenerate.
5633         * configure.in: Add --with-datarootdir, --with-docdir,
5634         and --with-htmldir options.
5635         * configure: Regenerate.
5637 2006-03-31  Ben Elliston  <bje@au.ibm.com>
5639         PR binutils/1860
5640         * configure.in: Require makeinfo 4.4 or higher.
5641         * configure: Regenerate.
5643 2006-03-14  Paolo Bonzini  <bonzini@gnu.org>
5645         * Makefile.in: Regenerate.
5647 2006-03-14  Paolo Bonzini  <bonzini@gnu.org>
5649         Sync with gcc:
5650         2006-03-10  Aldy Hernandez  <aldyh@redhat.com>
5652         * configure.in: Handle --disable-<component> generically.
5653         * configure: Regenerate.
5655         2006-02-21 Rafael Avila de Espindola <rafael.espindola@gmail.com>
5657         * Makefile.tpl  (BUILD_CONFIGDIRS): Remove.
5658         (TARGET_CONFIGDIRS): Remove.
5659         * configure.in: Remove AC_SUBST(target_configdirs).
5660         * Makefile.in, configure: Regenerated.
5663 2006-03-01  H.J. Lu  <hongjiu.lu@intel.com>
5665         PR libgcj/17311
5666         * ltmain.sh: Don't use "$finalize_rpath" for compile.
5668 2006-02-20  Paolo Bonzini  <bonzini@gnu.org>
5670         PR bootstrap/25670
5672         * Makefile.tpl ([+compare-target+]): Print explanation messages.
5674         * Makefile.def (ADAFLAGS, BOOT_ADAFLAGS, LANGUAGES): New flags_to_pass.
5675         * Makefile.tpl (BASE_FLAGS_TO_PASS): Support optional flags_to_pass.
5676         (EXTRA_GCC_FLAGS): Remove ADAFLAGS, BOOT_ADAFLAGS, LANGUAGES,
5677         BUILD_PREFIX, BUILD_PREFIX_1.
5678         * configure.in: (BUILD_PREFIX, BUILD_PREFIX_1): Don't substitute.
5680         * Makefile.def (bootstrap stage 1): Pass LIBCFLAGS too.
5681         * Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Override LIBCFLAGS too.
5683         * Makefile.tpl (configure-stage[+id+]-[+prefix+][+module+],
5684         all-stage[+id+]-[+prefix+][+module+], : Use $(current_stage) instead
5685         of `cat stage_current`.  Always provide the `r' and `s' variables.
5686         (clean-stage[+id+]-[+prefix+][+module+]): Likewise, and make it into
5687         a single shell execution.
5688         (configure-[+prefix+][+module+], all-[+prefix+][+module+]): For
5689         bootstrapped modules, make the stage1 module if the build was not
5690         started yet, else build the current stage.
5691         (all-host, all-target): Omit bootstrapped modules (if bootstrapping).
5692         (all-build, all-host, all-target, [+make_target+]-host,
5693         [+make_target+]-target): Do not use \-continued lines.
5694         (target modules): Depend on stage_last, not all-gcc, if bootstrapping.
5695         (current_stage, restrap, stage_last): New.
5697         * Makefile.in: Regenerate.
5698         * configure: Regenerate.
5700 2006-02-14  Paolo Bonzini  <bonzini@gnu.org>
5702         Sync from gcc:
5704         2006-01-31  Richard Guenther  <rguenther@suse.de>
5705                     Paolo Bonzini  <bonzini@gnu.org>
5707         * Makefile.def (target_modules): Add libgcc-math target module.
5708         * configure.in (target_libraries): Add libgcc-math target library.
5709         (--enable-libgcc-math): New configure switch.
5710         * Makefile.in: Re-generate.
5711         * configure: Re-generate.
5712         * libgcc-math: New toplevel directory.
5714         2006-01-18  Richard Henderson  <rth@redhat.com>
5715                     Jakub Jelinek  <jakub@redhat.com>
5716                     Diego Novillo  <dnovillo@redhat.com>
5718         * libgomp: New directory.
5719         * Makefile.def: Add target_module libgomp.
5720         * Makefile.in: Regenerate.
5721         * configure.in (target_libraries): Add target-libgomp.
5722         * configure: Regenerate.
5724 2006-02-14  Paolo Bonzini  <bonzini@gnu.org>
5725             Andreas Schwab  <schwab@suse.de>
5727         * configure: Regenerate.
5729 2006-01-16  Paolo Bonzini  <bonzini@gnu.org>
5731         * configure.in: Set with_gnu_as, with_gnu_ld, with_newlib earlier.
5732         Set md_exec_prefix.  Use ACX_CHECK_INSTALLED_TARGET_TOOL to find
5733         the assembler, linker and binutils.
5734         * configure: Regenerate.
5736 2006-01-16  Nick Clifton  <nickc@redhat.com>
5738         * config.sub, config.guess: Sync from config repository.
5740 2006-01-05  Alexandre Oliva  <aoliva@redhat.com>
5742         * Makefile.tpl (clean-stage[+id+]-[+prefix+][+module+]): Remove
5743         @ from continuation.
5744         * Makefile.in: Rebuilt.
5746 2006-01-04  Paolo Bonzini  <bonzini@gnu.org>
5748         Sync from gcc:
5750         2006-01-04  Paolo Bonzini  <bonzini@gnu.org>
5752         PR bootstrap/24252
5754         * Makefile.def (flags_to_pass): Add STAGE1_CFLAGS and STAGE1_LANGUAGES.
5755         * Makefile.tpl (OBJDUMP): New.
5756         (EXTRA_HOST_FLAGS): Add it.
5757         (EXTRA_GCC_FLAGS): Remove flags already specified in flags_to_pass.
5759         * Makefile.tpl (stage[+id+]-start, stage[+id+]-end): Do not try
5760         to use symbolic links between directories.  Avoid race conditions
5761         or make them harmless.
5762         * configure.in: Do not try to use symbolic links between directories.
5764         * Makefile.def (LEAN): Pass.
5765         * Makefile.tpl (LEAN): Define.
5766         (stage[+id+]-start): Accept that the previous directory does not
5767         exist, if the bootstrap is lean.
5768         (stage[+id+]-bubble): Invoke lean bootstrap commands after
5769         stage[+id+]-start.  Use a makefile variable and an `if' instead of a
5770         configure substitution.
5771         ([+compare-target+]): Likewise.
5772         ([+bootstrap-target+]-lean): New.
5773         * configure.in: Remove lean bootstrap support from here.
5775         * Makefile.in: Regenerate.
5776         * configure: Regenerate.
5778         2006-01-02  Andreas Schwab  <schwab@suse.de>
5780         * configure.in: When reconfiguring remove Makefile in
5781         all stage directories.
5782         * configure: Regenerate.
5784 2005-12-27  Leif Ekblad  <leif@rdos.net>
5786         * configure.in: Add support for RDOS target.
5787         * configure: Regenerate.
5789 2005-12-27  Nick Clifton  <nickc@redhat.com>
5791         PR binutils/1990
5792         * libtool.m4: Synchronize with version in GCC sources.
5794 2005-12-20  Paolo Bonzini  <bonzini@gnu.org>
5796         Revert Ada-related part of the previous change.
5798         * Makefile.def (ADAFLAGS, BOOT_ADAFLAGS, ADAFLAGS_FOR_TARGET):
5799         Do not pass.
5800         * Makefile.tpl (BOOT_ADAFLAGS): Do not define.
5801         * Makefile.in: Regenerate.
5802         * configure.in: Do not include mt-ppc-aix target fragment.
5803         * configure: Regenerate.
5805 2005-12-19  Paolo Bonzini  <bonzini@gnu.org>
5807         * configure.in: Select appropriate fragments for PowerPC/AIX.
5808         * configure: Regenerate.
5810         * Makefile.def (flags_to_pass): Add ADAFLAGS, BOOT_ADAFLAGS,
5811         BOOT_CFLAGS, BOOT_LDFLAGS.
5812         * Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Handle BOOT_ADAFLAGS,
5813         BOOT_CFLAGS, BOOT_LDFLAGS.
5814         (TARGET_FLAGS_TO_PASS): Handle ADAFLAGS_FOR_TARGET.
5815         (stage[+id+]-bubble): Pass flags recursively to the comparison target.
5816         (stage): Fail if we cannot complete the work.
5817         * Makefile.in: Regenerate.
5819 2005-12-16  Jeff Johnston  <jjohnstn@redhat.com>
5821         * COPYING.NEWLIB: Update copyright year for default
5822         copyright.
5824 2005-12-15  Paolo Bonzini  <bonzini@gnu.org>
5826         * Makefile.tpl (all, do-[+make_target+], do-check, install,
5827         install-host-nogcc): Don't invoke $(stage) at the end.
5828         * Makefile.in: Regenerate.
5830 2005-12-14  Paolo Bonzini  <bonzini@gnu.org>
5832         * configure.in: Flip the top-level bootstrap switch.
5833         * configure: Regenerate.
5835         Merge from gcc:
5837         2005-12-14  Daniel Jacobowitz  <dan@codesourcery.com>
5839         * Makefile.tpl: Throughout the file, use : $(MAKE) along with
5840         $(stage) and $(unstage).
5841         (EXTRA_TARGET_FLAGS): Correct double-quoting.
5842         (all): Remove stray semicolon.
5843         (local-distclean): Don't handle multilib.tmp and multilib.out.
5844         (install.all): Set $s for consistency.
5845         (configure-[+prefix+][+module+]): Instead of [+deps+], handle
5846         check_multilibs setting.  Always make the install directory.
5847         (configure-stage[+id+]-[+prefix+][+module+]): Likewise.
5848         Correct @if/@endif.
5849         (all-stage[+id+]-[+prefix+][+module+]): Correct @if/@endif.
5850         ($(TARGET_SUBDIR)/[+module+]/multilib.out): Remove.
5851         (stage[+id+]-start, stage[+id+]-end): Stage $(TARGET_SUBDIR).
5852         (multilib.out): Remove.
5853         * Makefile.in: Regenerated.
5855 2005-12-12  Nathan Sidwell  <nathan@codesourcery.com>
5857         * config.sub: Replace ms1 arch with mt.  Allow ms1 as alias.
5858         * configure.in: Replace ms1 arch with mt.
5859         * configure: Rebuilt.
5861 2005-12-05  Paolo Bonzini  <bonzini@gnu.org>
5863         Sync with gcc:
5865 2005-12-12  Nathan Sidwell  <nathan@codesourcery.com>
5867         * config.sub: Replace ms1 arch with mt.  Allow ms1 as alias.
5868         * configure.in: Replace ms1 arch with mt.
5869         * configure: Rebuilt.
5871 2005-12-05  Paolo Bonzini  <bonzini@gnu.org>
5873         Sync with gcc:
5875         2005-12-05  Paolo Bonzini  <bonzini@gnu.org>
5877         * configure.in (CONFIGURED_BISON, CONFIGURED_YACC, CONFIGURED_M4,
5878         CONFIGURED_FLEX, CONFIGURED_LEX, CONFIGURED_MAKEINFO): Remove
5879         "CONFIGURED_" from the AC_CHECK_PROGS invocation.  Move below.
5880         Find in-tree tools if available.
5881         (EXPECT, RUNTEST, LIPO, STRIP): Find them and substitute them.
5882         (CONFIGURED_*_FOR_TARGET): Don't set nor substitute.
5883         (*_FOR_TARGET): Set them with GCC_TARGET_TOOL.
5884         (COMPILER_*_FOR_TARGET): New.
5885         * Makefile.tpl (HOST_EXPORTS): Add *_FOR_TARGET symbols that gcc needs.
5886         (BASE_TARGET_EXPORTS): Use COMPILER_*_FOR_TARGET symbols.
5887         (CONFIGURED_*, USUAL_*): Remove.
5888         (BISON, YACC, FLEX, LEX, M4, MAKEINFO, EXPECT, RUNTEST, LIPO,
5889         STRIP): Use autoconf substitutions.
5890         (COMPILER_AS_FOR_TARGET, COMPILER_LD_FOR_TARGET,
5891         COMPILER_NM_FOR_TARGET): New.
5892         (EXTRA_HOST_FLAGS): Pass LIPO and STRIP.
5894         (all): Make all-host and all-target in parallel.
5895         (do-[+make_target+], do-check, install, [+compare-target+]): Ensure
5896         that $$r and $$s are set before invoking a recursive make.
5897         (stage[+id+]-bubble): Likewise, and invoke the comparison at the end.
5898         ([+bootstrap-target+]): Inline most of the `all' target.
5900         2005-11-29  Ben Elliston  <bje@au.ibm.com>
5902         * Makefile.tpl (clean-target-libgcc): Invoke clean-target-libgcc
5903         from the gcc build directory.
5904         * Makefile.in: Regenerate.
5906         2005-11-29  Ben Elliston  <bje@au.ibm.com>
5908         * Makefile.def: Add new libdecnumber host_module.  Make all-gcc
5909         depend on all-libdecnumber.
5910         * configure.in (host_libs): Include libdecnumber.
5911         * Makefile.in: Regenerate.
5912         * configure: Likewise.
5914         2005-11-21  Kean Johnston  <jkj@sco.com>
5916         * config.sub, config.guess: Sync from upstream sources.
5918 2005-11-11  Daniel Jacobowitz  <dan@codesourcery.com>
5920         * Makefile.def: Remove gdb dependencies for gdbtk.
5921         * Makefile.tpl (CONFIGURE_GDB_TK, INSTALL_GDB_TK): New variables.
5922         (configure-gdb, install-gdb): New rules.
5923         * configure.in: Set CONFIGURE_GDB_TK and INSTALL_GDB_TK.
5924         * Makefile.in, configure: Regenerated.
5926 2005-10-22  Paolo Bonzini  <bonzini@gnu.org>
5928         PR bootstrap/24297
5929         * Makefile.tpl (do-[+make-target+], do-check, install,
5930         stage[+id+]-bubble, [+compare-target+]): Ensure $$r and $$s
5931         are set before recursing.
5932         * Makefile.in: Regenerate.
5934 2005-10-20  Eric Botcazou  <ebotcazou@adacore.com>
5936         PR bootstrap/18939
5937         * Makefile.def (gcc) <target>: Fix thinko.
5938         * Makefile.in: Regenerate.
5940 2005-10-17  Bernd Schmidt  <bernd.schmidt@analog.com>
5942         * configure.in (bfin-*-*): Use test, not brackets, in if statement.
5943         * configure: Regenerate.
5945 2005-10-09  Kazu Hirata  <kazu@codesourcery.com>
5947         * configure.in (arm-*-linux-gnueabi): Add to noconfigdirs
5948         target-libffi, target-qthreads, target-libjava, and
5949         targetlibobjc.
5950         * configure: Regenerate.
5952 2005-10-06  Daniel Jacobowitz  <dan@codesourcery.com>
5954         * Makefile.def (flags_to_pass): Add OBJDUMP_FOR_TARGET.
5955         * Makefile.tpl (BASE_TARGET_EXPORTS): Add OBJDUMP.
5956         (OBJDUMP_FOR_TARGET, CONFIGURED_OBJDUMP_FOR_TARGET)
5957         (USUAL_OBJDUMP_FOR_TARGET): New.
5958         (EXTRA_TARGET_FLAGS): Add OBJDUMP.
5959         * configure.in: Check for $OBJDUMP_FOR_TARGET.
5960         * configure, Makefile.in: Regenerated.
5962 2005-10-05  Paolo Bonzini  <bonzini@gnu.org>
5964         * Makefile.tpl (all) [gcc-no-bootstrap]: Make prebootstrap packages
5965         before other host packages.
5967 2005-10-05  Paolo Bonzini  <bonzini@gnu.org>
5969         PR bootstrap/22340
5971         * configure.in (default_target): Remove.
5972         * Makefile.tpl (all): Do not use prerequisites as subroutines
5973         (all) [gcc-bootstrap]: Bootstrap gcc first if it was not done yet.
5974         (do-[+make_target+], check, install, [+bootstrap_target+]): Do not
5975         use prerequisites as subroutines.
5976         (check-host, check-target): New.
5977         (bootstrap configure & all targets): Do not use stage*-start
5978         if the directory layout is already ok.
5979         (non-bootstrap configure & all targets): Prepend a $(unstage).
5980         (stage[+id+]-bubble): Do that here.  Do not use NOTPARALLEL.
5981         (NOTPARALLEL): Remove.
5982         (unstage, stage variables): New variables.
5983         (unstage, stage targets): Simply expand to those variables.
5985         * configure: Regenerate.
5986         * Makefile.in: Regenerate.
5988 2005-10-04  James E Wilson  <wilson@specifix.com>
5990         * Makefile.def (lang_env_dependencies): Add libmudflap.
5991         * Makefile.in: Regenerate.
5993 2005-10-03  Catherine Moore  <clm@cm00re.com>
5995         * configure.in (bfin-*-*): Support bfin.
5996         * configure: Regenerated.
5998 2005-09-30  H.J. Lu  <hongjiu.lu@intel.com>
6000         * configure.in (*-*-darwin*): Build bfd, binutils and opcodes.
6001         * configure: Regenerated.
6003 2005-09-28  Geoffrey Keating  <geoffk@apple.com>
6005         * Makefile.tpl (BASE_TARGET_EXPORTS): Add LIPO, STRIP.
6006         (LIPO_FOR_TARGET): New.
6007         (CONFIGURED_LIPO_FOR_TARGET): New.
6008         (USUAL_LIPO_FOR_TARGET): New.
6009         (STRIP_FOR_TARGET): New.
6010         (CONFIGURED_STRIP_FOR_TARGET): New.
6011         (USUAL_STRIP_FOR_TARGET): New.
6012         * Makefile.def (flags_to_pass): Add LIPO_FOR_TARGET and
6013         STRIP_FOR_TARGET.
6014         * configure.in: Set LIPO_FOR_TARGET, STRIP_FOR_TARGET,
6015         CONFIGURED_LIPO_FOR_TARGET, CONFIGURED_STRIP_FOR_TARGET.
6016         * Makefile.in: Regenerate.
6017         * configure: Regenerate.
6019 2005-09-19  David Edelsohn  <edelsohn@gnu.org>
6021         * configure.in (powerpc-*-aix*): Add target-libssp to noconfigdirs.
6022         (rs6000-*-aix*): Same.
6023         * configure: Regenerate.
6025 2005-09-14  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
6027         * configure.in: Recognize f95 in the --enable-languages option,
6028         and substitute it for fortran, issuing a warning.
6029         * configure: Regenerate.
6031 2005-09-07  Ben Elliston  <bje@au.ibm.com>
6033         Import from Autoconf sources:
6035         2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
6036         * move-if-change: Don't output "$2 is unchanged"; suggested by Ben
6037         Elliston.  Handle weird characters correctly.
6039 2005-08-30  Phil Edwards  <phil@codesourcery.com>
6041         * configure.in (*-*-vxworks*):  Add target-libstdc++-v3 to noconfigdirs.
6042         * configure:  Regenerated.
6044 2005-08-20  Richard Earnshaw  <richard.earnshaw@arm.com>
6046         * Makefile.def (libssp): Add to lang_env_dependencies.
6047         * Makefile.in: Regenerate.
6049 2005-08-17  Christian Groessler  <chris@groessler.org>
6051         * Makefile.tpl: (USUAL_CC_FOR_TARGET): Add missing trailing slash.
6052         * Makefile.in: Regenerate.
6054 2005-08-12  Paolo Bonzini  <bonzini@gnu.org>
6056         * configure.in: Replace NCN_STRICT_CHECK_TOOL with
6057         NCN_STRICT_CHECK_TOOLS, and likewise for NCN_STRICT_CHECK_TARGET_TOOLS.
6058         Look for alternate names of the target cc and c++
6059         * configure: Regenerate.
6061 2005-08-08  Paolo Bonzini  <bonzini@gnu.org>
6063         * configure.in (CC_FOR_TARGET, CXX_FOR_TARGET, GCJ_FOR_TARGET,
6064         GCC_FOR_TARGET, RAW_CXX_FOR_TARGET, GFORTRAN_FOR_TARGET): Find
6065         them with NCN_STRICT_CHECK_TARGET_TOOL, like the other target
6066         tools; remove code to manually set them.
6067         (Target tools): Look in the environment for them.
6068         * Makefile.tpl (CC_FOR_TARGET, CXX_FOR_TARGET, GCJ_FOR_TARGET,
6069         GCC_FOR_TARGET, RAW_CXX_FOR_TARGET, GFORTRAN_FOR_TARGET): Redefine.
6070         (AS_FOR_TARGET, LD_FOR_TARGET, NM_FOR_TARGET): Look into gcc
6071         build directory.
6072         (CONFIGURED_CC_FOR_TARGET, CONFIGURED_CXX_FOR_TARGET,
6073         CONFIGURED_GCJ_FOR_TARGET, CONFIGURED_GCC_FOR_TARGET,
6074         CONFIGURED_GFORTRAN_FOR_TARGET, USUAL_CC_FOR_TARGET,
6075         USUAL_CXX_FOR_TARGET, USUAL_GCJ_FOR_TARGET, USUAL_GCC_FOR_TARGET,
6076         USUAL_RAW_CXX_FOR_TARGET, USUAL_GFORTRAN_FOR_TARGET): New.
6077         (CXX_FOR_TARGET_FOR_RECURSIVE_MAKE,
6078         RAW_CXX_FOR_TARGET_FOR_RECURSIVE_MAKE, RECURSE_FLAGS): Delete.
6079         * configure: Regenerate.
6080         * Makefile.in: Regenerate.
6082 2005-07-27  Mark Mitchell  <mark@codesourcery.com>
6084         * Makefile.tpl (EXTRA_TARGET_FLAGS): Set LDFLAGS=LDFLAGS_FOR_TARGET.
6085         * Makefile.def (flags_to_pass): Add LDFLAGS_FOR_TARGET.
6086         * Makefile.in: Regenerated.
6088 2005-07-26  Mark Mitchell  <mark@codesourcery.com>
6090         * Makefile.tpl (SYSROOT_CFLAGS_FOR_TARGET): New variable.
6091         (CFLAGS_FOR_TARGET): Use it.
6092         (CXXFLAGS_FOR_TARGET): Likewise.
6093         * Makefile.in: Regenerated.
6094         * configure.in (--with-build-sysroot): New option.
6095         * configure: Regenerated.
6097 2005-07-24  Paolo Bonzini  <bonzini@gnu.org>
6099         * Makefile.tpl: Wrap install between unstage and stage
6100         * Makefile.in: Regenerate.
6102 2005-07-16  Kelley Cook  <kcook@gcc.gnu.org>
6104         * all files: Update FSF address.
6106 2005-07-14  Jim Blandy  <jimb@redhat.com>
6108         * configure.in: Add cases for Renesas m32c.
6109         * configure: Regenerated.
6111 2005-07-14  Kelley Cook  <kcook@gcc.gnu.org>
6113         * COPYING, compile, config-ml.in, config.guess,
6114         config.sub, install-sh, missing, mkinstalldirs,
6115         symlink-tree, ylwrap: Sync from upstream sources.
6117 2005-07-13  Eric Christopher  <echristo@redhat.com>
6119         * configure.in: Add toplevel noconfigdir support for tpf.
6120         * configure: Regenerate.
6122 2005-07-11  Jakub Jelinek  <jakub@redhat.com>
6124         * Makefile.def (target_modules): Add libssp.
6125         * configure.in (target_libraries): Add target-libssp.
6126         * configure: Rebuilt.
6127         * Makefile.in: Rebuilt.
6129 2005-07-11  Paolo Bonzini  <bonzini@gnu.org>
6131         PR ada/22340
6133         * Makefile.def: Sync with gcc.
6134         * Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Fix pasto.
6135         * Makefile.in: Regenerate.
6137 2005-07-07  Andreas Schwab  <schwab@suse.de>
6139         * Makefile.def (flags_to_pass): Add CFLAGS_FOR_BUILD.
6140         * Makefile.tpl (EXTRA_GCC_FLAGS): Don't pass CFLAGS_FOR_BUILD here.
6141         * Makefile.in: Regenerated.
6143 2005-07-07  Kazu Hirata  <kazu@codesourcery.com>
6145         * configure.in: Add --enable-libssp and --disable-libssp.
6146         * configure: Regenerate with autoconf-2.13.
6148 2005-07-06  Geoffrey Keating  <geoffk@apple.com>
6150         * configure.in: Don't build sim or rda when targetting darwin.
6151         * configure: Regenerate.
6153 2005-07-04  Ben Elliston  <bje@gnu.org>
6155         * src-release (do-proto-toplev): Remove dejagnu bits.
6156         (DEJAGNU_SUPPORT_DIRS): Remove.
6157         (dejagnu.tar.bz2, dejagnu.tar): Likewise.
6158         (GDBD_SUPPORT_DIRS): Likewise.
6159         (gdb+dejagnu.tar.bz2, gdb+dejagnu.tar): Likewise.
6160         (INSIGHTD_SUPPORT_DIRS): Likewise.
6161         (insight+dejagnu.tar.bz2, insight+dejagnu.tar): Likewise.
6163 2005-06-30  Ben Elliston  <bje@gnu.org>
6165         * setup.com (mpw): Remove unused directive.
6167 2005-06-22  Paolo Bonzini  <bonzini@gnu.org>
6169         * Makefile.def (stagefeedback): Come after profile.
6170         Define profiledbootstrap target.
6171         * Makefile.tpl (profiledbootstrap): Remove.
6172         (stageprofile-end): Zap stagefeedback.
6173         (stagefeedback-start): Copy all .gcda files, not only GCC's.
6174         * Makefile.in: Regenerate.
6176 2005-06-13  Zack Weinberg  <zack@codesourcery.com>
6178         * depcomp: Update from automake CVS.  Add 'ia64hp' stanza.
6179         In 'cpp' stanza, support '#line' as well as '# '.
6181 2005-06-07  Hans-Peter Nilsson  <hp@axis.com>
6183         * configure.in (unsupported_languages): New macro.
6184         <mmix-knuth-mmixware>: Set unsupported_languages.  Name explicit
6185         non-ported target libraries in noconfigdirs.
6186         <cris-*, crisv32-*> Ditto, except for non-aout, non-elf,
6187         non-linux-gnu.  Remove libgcj_ex_libffi.
6188         <lang_frag loop>: Set add_this_lang=no if the language is in
6189         unsupported_languages.
6190         * configure: Regenerate.
6192 2005-06-04  Tobias Schl"uter  <tobias.schlueter@physik.uni-muenchen.de>
6194         * configure.in: Fix typo in handling of --with-mpfr-dir.
6195         * configure: Regenerate.
6197 2005-06-02  Jim Blandy  <jimb@redhat.com>
6199         * config.sub: Add cases for the Renesas m32c.  (This patch has been
6200         accepted into the master sources.)
6202 2005-06-02  Aldy Hernandez  <aldyh@redhat.com>
6203             Michael Snyder  <msnyder@redhat.com>
6204             Stan Cox  <scox@redhat.com>
6206         * configure.in: Set noconfigdirs for ms1.
6208         * configure: Regenerate.
6210 2005-05-25  Paolo Bonzini  <bonzini@gnu.org>
6212         * Makefile.tpl (stage[+id+]-start): Iterate over target module as well.
6213         (Dependencies): Consider target modules for bootstrap dependencies.
6214         Make target bootstrap modules depend on each stage's gcc.
6215         * Makefile.in: Regenerate.
6217 2005-05-20  Paolo Bonzini  <bonzini@gnu.org>
6219         * Makefile.def (configure-gcc): Depend on binutils having been built.
6220         (all-gcc): No need to do it here.
6221         * Makefile.in: Regenerate.
6223 2005-05-19  Paul Brook  <paul@codesourcery.com>
6225         * configure.in: Rewrite misleading error message when requested
6226         language cannot be built.
6227         * configure: Regenerate.
6229 2005-05-15  Daniel Jacobowitz  <dan@codesourcery.com>
6231         * ylwrap: Import from Automake 1.9.5.
6233 2005-05-04  Mike Stump  <mrs@apple.com>
6235         * configure.in: Always pass --target to target configures as
6236         otherwise rebuilds that do --recheck will fail.
6237         * configure: Rebuilt.
6239 2005-05-04  Paolo Bonzini  <bonzini@gnu.org>
6241         * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Rename from
6242         STAGE_HOST_EXPORTS.
6243         (configure, all): Add bootstrap support.
6244         (Host modules, target modules): Pass post-stage1 flags and exports.
6245         (Top-level bootstrap): Remove bootstrap rules, expanded elsewhere.
6246         * Makefile.in: Regenerate.
6248 2005-04-29  Paolo Bonzini  <bonzini@gnu.org>
6250         Sync from gcc:
6252         2005-04-22  Bernd Schmidt  <bernd.schmidt@analog.com>
6254         * config.sub: Update from master copy.
6256         2005-04-19  Hans-Peter Nilsson  <hp@axis.com>
6258         * configure.in <crisv32-*-*, cris-*-*>: New local variable
6259         libgcj_ex_libffi.  Have specific match for *-*-linux*.  Separate
6260         matches for "*-*-aout" and "*-*-elf".  Don't disable libffi for
6261         "*-*-elf" and "*-*-linux*".
6262         * configure: Regenerate.
6264 2005-04-06  Paolo Bonzini  <bonzini@gnu.org>
6266         * Makefile.tpl (BUILD_CONFIGARGS): Include --with-build-subdir.
6267         (TARGET_CONFIGARGS): Include --with-target-subdir.
6268         (configure, all): New macros.  Use them throughout.
6270 2005-04-05  Paolo Bonzini  <bonzini@gnu.org>
6272         * Makefile.tpl: Sync with gcc.
6273         * Makefile.in: Regenerate.
6275 2005-03-30  J"orn Rennecke <joern.rennecke@st.com>
6277         * config/mh-mingw32: Delete.
6278         * configure.in: Don't use it.
6279         * configure: Regenerate.
6281 2005-03-31  Paolo Bonzini  <bonzini@gnu.org>
6283         * Makefile.def (bfd, opcodes, libstdc++-v3, libmudflap): Set lib_path.
6284         * Makefile.tpl (SET_LIB_PATH, REALLY_SET_LIB_PATH): Remove.
6285         (HOST_EXPORTS, STAGE_HOST_EXPORTS, TARGET_EXPORTS): Set $(RPATH_ENVVAR).
6286         (HOST_LIB_PATH): Generate from Makefile.def.
6287         (TARGET_LIB_PATH): Likewise.
6288         (Old bootstrap targets): Include TARGET_LIB_PATH into RPATH_ENVVAR.
6289         * Makefile.in: Regenerate.
6290         * configure.in (set_lib_path, SET_LIB_PATH, SET_GCC_LIB_PATH): Remove.
6291         (RPATH_ENVVAR): Include Darwin case.
6292         * configure: Regenerate.
6294 2005-03-25  Paolo Bonzini  <bonzini@gnu.org>
6296         * configure.in (RPATH_ENVVAR): Set to DYLD_LIBRARY_PATH on Darwin.
6297         * configure: Regenerate.
6299 2005-03-21  Zack Weinberg  <zack@codesourcery.com>
6301         * Makefile.def: Remove libstdcxx_incdir, libsubdir, gxx_include_dir,
6302         gcc_version, and gcc_version_trigger from set of flags to pass.
6303         * Makefile.tpl: Remove definitions of above variables.
6304         (config.status): Remove dependency on $(gcc_version_trigger).
6305         * Makefile.in: Regenerate.
6306         * configure.in: Do not reference config/gcc-version.m4 nor
6307         config/gxx-include-dir.m4.  Do not invoke TL_AC_GCC_VERSION nor
6308         TL_AC_GXX_INCLUDE_DIR.  Do not set gcc_version_trigger.
6309         * configure: Regenerate.
6311 2005-03-16  Manfred Hollstein  <manfred.h@gmx.net>
6312             Andrew Pinski <pinskia@physics.uc.edu>
6314         * Makefile.tpl (check-[+module+]): Fix shell statement inside if ... fi.
6315         * Makefile.in: Regenerate.
6317 2005-03-01  Alexandre Oliva  <aoliva@redhat.com>
6319         PR libgcj/20160
6320         * ltmain.sh: Avoid creating archives with components that have
6321         duplicate basenames.
6323 2005-02-28  Andrew Pinski  <pinskia@physics.uc.edu>
6325         PR bootstrap/20250
6326         * Makefile.tpl (HOST target installs): Fix copy and pasto, use install
6327         instead of check.
6328         * Makefile.in: Regenerate.
6330 2005-02-28  Paolo Bonzini  <bonzini@gnu.org>
6332         Sync from gcc.
6334         2005-02-28  Paolo Bonzini  <bonzini@gnu.org>
6336         PR bootstrap/17383
6337         * Makefile.def (target_modules): Remove "stage", now unnecessary.
6338         * Makefile.tpl (HOST_SUBDIR): New substitution.
6339         (STAGE_HOST_EXPORTS, EXPECT, HOST_LIB_PATH, USUAL_AR_FOR_TARGET,
6340         USUAL_AS_FOR_TARGET, USUAL_DLLTOOL_FOR_TARGET, USUAL_GCC_FOR_TARGET,
6341         USUAL_LD_FOR_TARGET, USUAL_NM_FOR_TARGET, USUAL_OBJDUMP_FOR_TARGET,
6342         USUAL_RANLIB_FOR_TARGET, USUAL_WINDRES_FOR_TARGET): Use it.
6343         (Host modules, Bootstrapped modules): Use it.
6344         (Build modules, Target modules): Do not create symlink trees,
6345         always configure out-of-srcdir.
6346         (distclean): Try removing $(host_subdir) with rm before using rm -rf.
6347         * configure.in (FLAGS_FOR_TARGET, CC_FOR_TARGET, GCJ_FOR_TARGET,
6348         GFORTRAN_FOR_TARGET, CXX_FOR_TARGET, RAW_CXX_FOR_TARGET): Use
6349         $(HOST_SUBDIR).  Create a symlink for host_subdir.
6351         * Makefile.in: Regenerate.
6352         * configure: Regenerate.
6354         Merged from libada-gnattools-branch:
6355         2004-11-28  Nathanael Nerode  <neroden@gcc.gnu.org>
6357         * Makefile.def: Add gnattools as a module, depending on target-libada.
6358         * Makefile.in: Regenerate.
6359         * configure.in: Include gnattools in host_tools; disable it if ada
6360         is disabled.
6361         * configure: Regenerate.
6363 2005-02-23  Nick Clifton  <nickc@redhat.com>
6365         * configure: Regenerate.
6367 2005-02-22  Paul Schlie  <schlie@comcast.net>
6369         * configure.in: Allow darwin targeted ports to build tk, itcl and
6370         libgui.
6372 2005-02-21  Eric Botcazou  <ebotcazou@libertysurf.fr>
6374         PR libgcj/10353
6375         * configure.in (noconfigdirs) <sparc-*-solaris2.[0-6]>: Add libgcj.
6376         * configure: Regenerate.
6378 2005-02-08  Andrew Cagney  <cagney@gnu.org>
6380         * MAINTAINERS: Delete reference to dejagnu/ and mmalloc/ from the
6381         gdb/ section.  Update GDB's URL.
6383 2005-01-31  Andrew Cagney  <cagney@gnu.org>
6385         * gettext.m4: Only set ENABLE_NLS when gettext is present.
6387 2005-01-29  Hans-Peter Nilsson  <hp@axis.com>
6389         * configure.in (noconfigdirs) <crisv32-*-*>: Match like cris-*-*.
6390         <crisv32-*-*, cris-*-*>: Only disable target-newlib and
6391         target-libgloss when not *-*-elf and *-*-aout.
6392         * configure: Regenerate.
6394 2005-01-27  Andrew Cagney  <cagney@gnu.org>
6396         * gettext.m4: Don't use NONE as a default for CATOBJEXT.
6398 2005-01-24  Andrew Cagney  <cagney@gnu.org>
6400         * gettext.m4: Only fall back to ../intl/ when it's present.
6402 2005-01-17  Kelley Cook  <kcook@gcc.gnu.org>
6404         * install-sh, config.sub: Import from upstream.
6406 2005-01-17  Kelley Cook  <kcook@gcc.gnu.org>
6408         PR bootstrap/18222
6409         * Makefile.def: Pass CPPFLAGS_FOR_TARGET.
6410         * Makefile.tpl: Define target CPPFLAGS on CPPFLAGS_FOR_TARGET.
6411         * Makefile.in: Regenerate.
6413 2005-01-03  Paolo Bonzini  <bonzini@gnu.org>
6415         Revert 2004-12-28 Makefile changes, a better fix will be
6416         applied to mainline and src after GCC 4.0 branches.
6418 2004-12-28  Paolo Bonzini  <bonzini@gnu.org>
6420         PR bootstrap/17383
6422         * Makefile.def (target_modules): Remove stage parameter,
6423         it is always true now.
6424         * Makefile.tpl (configure-build-[+module+],
6425         configure-target-[+module+]): Always build symlink tree
6426         for the directory and for include.  BUILD_SUBDIR and
6427         TARGET_SUBDIR cannot be . anymore.
6428         * Makefile.in: Regenerate.
6430 2004-12-25  David Edelsohn  <edelsohn@gnu.org>
6432         Revert 2004-12-08 Makefile changes.
6434 2004-12-16  Andrew Stubbs  <andrew.stubbs@st.com>
6436         * configure.in (sh64-*-*): Reenable gprof.
6437         * configure: Regenerate.
6439 2004-12-09  Jim Blandy  <jimb@redhat.com>
6441         * MAINTAINERS: List 'depcomp' as part of automake.
6443 2004-12-08  David Edelsohn  <edelsohn@gnu.org>
6445         * Makefile.def (flags_to_pass): Add PICFLAG_FOR_TARGET.
6446         * Makefile.tpl (EXTRA_HOST_FLAGS): Add PICFLAG.
6447         (EXTRA_TARGET_FLAGS): Add PICFLAG.
6448         * Makefile.in: Regenerate.
6450 2004-12-07  Matt Kraai  <kraai@ftbfs.org>
6452         * Makefile.tpl: Generate normal dependencies if the LHS module is
6453         not bootstrapped.
6454         * Makefile.in: Regenerate.
6456 2004-12-03  Richard Sandiford  <rsandifo@redhat.com>
6458         * configure.in: Include config/gxx-include-dir.m4.  Use
6459         TL_AC_GXX_INCLUDE_DIR.  Remove some now-redundant AC_SUBSTs.
6460         * configure: Regenerate.
6462 2004-12-03  Richard Sandiford  <rsandifo@redhat.com>
6464         * config.if: Delete.
6465         * configure.in: Set libstdcxx_incdir directly.
6466         * configure: Regenerate.
6467         * MAINTAINERS: Remove mention of config.if.
6468         * src-release (DEVO_SUPPORT): Remove config.if.
6470 2004-12-02  Eric Christopher  <echristo@redhat.com>
6472         * Makefile.tpl (clean-target-libgcc): Add stmp-dirs to list
6473         of things to remove.
6474         * Makefile.in: Regenerate.
6476 2004-12-02  Richard Sandiford  <rsandifo@redhat.com>
6478         * configure.in: Clear gcc_version_trigger if the file doesn't exist.
6479         * configure: Regenerate.
6481 2004-12-02  Richard Sandiford  <rsandifo@redhat.com>
6483         * configure.in: Include config/gcc-version.m4.  Use TL_AC_GCC_VERSION
6484         to set gcc_version_trigger.  Remove some now-redundant AC_SUBSTs.
6485         * configure: Regenerate.
6487 2004-11-26  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
6489         * configure.in (hppa*-*-linux*): Don't add libgcj to noconfigdirs.
6490         (hppa*64*-*-*): Delete incorrect comment.
6491         * configure: Rebuilt.
6493 2004-11-15  Kelley Cook  <kcook@gcc.gnu.org>
6495         * install-sh, compile: Import from automake.
6497 2004-11-15  Kelley Cook  <kcook@gcc.gnu.org>
6499         * config.guess, config.sub:  Import from savannnah.
6501 2004-11-12  Mike Stump  <mrs@apple.com>
6503         * Makefile.def: Add html support.
6504         * Makefile.tpl: Likewise.
6505         * Makefile.in: Regenerate.
6507 2004-11-11  Geoffrey Keating  <geoffk@apple.com>
6509         PR 18423
6510         * configure.in: Remove all instances of build-fixincludes from
6511         noconfigdirs.
6512         (build_configargs): Supply --target to subdirectories.
6513         * configure: Regenerate.
6515         * Makefile.def: Make gcc install depend on fixincludes install.
6516         * Makefile.in: Regenerate.
6518 2004-11-08  Hans-Peter Nilsson  <hp@bitrange.com>
6520         * configure.in (noconfigdirs) [mmix-*-*]: Disable
6521         target-libgfortran.
6522         * configure: Regenerate.
6524 2004-11-07  David Edelsohn  <edelsohn@gnu.org>
6526         * config-ml.in: Pass FCFLAGS for multilibs, handle GFORTRAN
6527         like CC.
6529 2004-11-05  Paolo Bonzini  <bonzini@gnu.org>
6531         * Makefile.def (host fixincludes): Specify missing targets.
6532         * Makefile.in: Regenerate.
6534 2004-11-04  H.J. Lu  <hongjiu.lu@intel.com>
6536         PR other/17783
6537         * configure.in: Set up LD_LIBRARY_PATH by default for gcc.
6538         * configure: Regenerated.
6540 2004-11-04  Daniel Jacobowitz  <dan@debian.org>
6542         * configure.in (arm-*-oabi*, thumb-*-oabi*): Remove.
6543         * configure: Regenerated.
6545 2004-10-28  Eric B. Weddington  <ericw@evcohs.com>
6547         PR target/18151
6548         * configure.in (case ${target}): Do not build fixincludes for avr.
6549         * configure: Regenerated.
6551 2004-10-26  Paolo Bonzini  <bonzini@gnu.org>
6553         * configure.in (case ${target}): Do not build fixincludes
6554         on platforms where it is not used.
6555         * configure: Regenerated.
6557 2004-10-23  Daniel Jacobowitz  <dan@debian.org>
6559         * configure.in: Use an absolute path to install-sh.
6560         * configure: Regenerated.
6562 2004-10-19  Andrew Cagney  <cagney@gnu.org>
6564         * src-release (do-djunpack, do-md5sum): Install the generated file
6565         directly into the proto-toplev/ directory.
6567 2004-10-19  Andrew Cagney  <cagney@gnu.org>
6569         * src-release (GDB_SUPPORT_DIRS): Remove utils and intl.
6571 2004-10-12  Kelley Cook  <kcook@gcc.gnu.org>
6573         * configure.in (*-*-cygwin*): Supress warning if newlib not present.
6574         * configure: Regenerate.
6576 2004-10-06  Paolo Bonzini  <bonzini@gnu.org>
6578         Fix wrong conflict resolution in:
6580         2004-08-16  Paolo Bonzini  <bonzini@gnu.org>
6582         * Makefile.in: Regenerate.
6583         * Makefile.tpl (Autogenerated `all-*' targets): Invoke $(TARGET-*)
6584         in the recursive `make', instead of hardwiring `all'.
6585         (Autogenerated TARGET-* variables): New.
6587 2004-10-05  Ulrich Weigand  <uweigand@de.ibm.com>
6589         Merged from GCC / libtool upstream:
6590         2004-10-02  P.J. Darcy  <darcypj@us.ibm.com>
6591         * ltcf-c.sh (tpf*): Add ld_shlibs=yes.
6592         * ltcf-cxx.sh (tpf*): Likewise.
6593         * ltconfig (tpf*): Add TPF OS configuration support.
6595 2004-09-30  Tomer Levi  <Tomer.Levi@nsc.com>
6597         * configure.in: Enable target-libgloss for crx-*-*.
6598         * configure: Regenerate.
6600 2004-09-24  Michael Roth  <mroth@nessie.de>
6602         * configure.in (--without-headers): Add missing double quotes.
6603         * configure: Regenerate.
6605 2004-09-24  Kelley Cook <kcook@gcc.gnu.org>
6607         * ylwrap: Revert to previous version.
6609 2004-09-23  H.J. Lu  <hongjiu.lu@intel.com>
6611         PR bootstrap/17369
6612         * Makefile.tpl (REALLY_SET_LIB_PATH): Add @SET_GCC_LIB_PATH@.
6613         (HOST_EXPORTS]): Add @SET_GCC_LIB_PATH@. Set and export
6614         SET_GCC_LIB_PATH_CMD.
6615         (BASE_TARGET_EXPORTS): Likewise.
6616         * Makefile.in: Regenerated.
6618         * configure.in (SET_GCC_LIB_PATH): Set and substitute.
6619         * configure: Regenerated.
6621 2004-09-23  Kelley Cook  <kcook@gcc.gnu.org>
6623         * config.guess: New upstream version
6624         * compile, depcomp, install-sh, ylwrap: Likewise.
6626 2004-09-19  Roger Sayle  <roger@eyesopen.com>
6628         * config/mh-x86omitfp: New host makefile fragment.  Add
6629         -fomit-frame-pointer to the default BOOT_CFLAGS.
6630         * configure.in: Use it to speed up bootstrap on some IA-32 hosts.
6631         * configure: Regenerate.
6633 2004-09-15  Andrew Pinski  <pinskia@physics.uc.edu>
6635         PR target/11572
6636         * configure.in (*-*-darwin*): Renable libobjc.
6637         * configure: Regenerate.
6639 2004-09-09  Daniel Berlin  <dberlin@dberlin.org>
6641         * Makefile.def: Remove libbanshee.
6642         * Makefile.tpl: Ditto.
6643         * configure.in: Ditto.
6644         * Makefile.in: Regen.
6645         * configure: Ditto.
6647 2004-09-07  Paolo Bonzini  <bonzini@gnu.org>
6649         * missing: Import latest version from master repository.
6651 2004-09-04  Nick Clifton  <nickc@redhat.com>
6653         * config.sub: Import latest version from master repository.
6654         * config.guess: Likewise.
6655         This includes these changes:
6657         2004-08-27  Hans-Peter Nilsson  <hp@axis.com>
6659         * config.sub: Handle crisv32, alias etraxfs.
6660         * config.guess (crisv32:Linux:*:*): Handle.
6662         2004-08-13  Brad Smith  <brad@comstyle.com>
6664         * config.guess (*:OpenBSD:*:*): Remove defunct MIPS machines.
6665         (sgi:OpenBSD:*:*): Emit mips64, not mipseb.
6667         2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
6669         * config.guess (*:Darwin:*:*): If uname -p reports "unknown",
6670         assume the processor is a powerpc.  This is because coreutils
6671         uname (at least versions 4.5.7 through 5.2.1) outputs "unknown"
6672         in this case, due to a MacOS X bug that causes
6673         sysctl ((int[]) {CTL_HW, HW_MACHINE_ARCH}, 2, buffer, &bufsize, 0, 0)
6674         to return a negative number.
6675         Problem reported by Petter Reinholdtsen in:
6676         http://lists.gnu.org/archive/html/bug-gnu-utils/2003-02/msg00201.html
6678         2004-07-19  Ben Elliston  <bje@gnu.org>
6680         * config.guess (S7501:*:4.0:3.0): Handle NCR System V UNIX machine.
6682         2004-06-24  Ben Elliston  <bje@gnu.org>
6684         * config.guess: Update copyright years.
6685         * config.sub: Likewise.
6687         2004-06-22  Robert Millan  <robertmh@gnu.org>
6689         * config.guess (*:FreeBSD:*:*): Remove check for glibc (unneeded
6690         since GNU/kFreeBSD systems match *:GNU/*:*:* instead).
6692         2004-06-22  Stanley F. Quayle <stan@stanq.com>
6694         * config.guess (*:*VMS:*:*): New entry. Replaces
6695         Alpha:OpenVMS:*. Recognize and advertise all VMS flavors as dec
6696         manufacturer.
6698         2004-06-22  Ben Elliston  <bje@gnu.org>
6700         * config.guess: Cray fixes from Wendy Palm <wendyp@cray.com>.
6701         * config.sub: Likewise.
6703         2004-06-22  Ben Elliston  <bje@gnu.org>
6705         Reported by Hans-Peter Nilsson <hp@bitrange.com>:
6706         * config.sub: Correctly handle mmix-knuth and mmix-knuth-mmixware.
6708         2004-06-11  Ben Elliston  <bje@gnu.org>
6710         * config.guess (pegasos:OpenBSD:*:*): Remove.
6712         2004-06-11  Ben Elliston  <bje@gnu.org>
6714         From Wouter Verhelst <wouter@grep.be>:
6715         * config.guess (M68*:*:R3V[5678]:*): Detect R3V8.
6717         2004-06-11  Ben Elliston  <bje@gnu.org>
6719         * config.guess (luna88k:OpenBSD:*:*): New.
6721         2004-03-12  Kazuhiro Inaoka  <inaoka.kazuhiro@renesas.com>
6723         * config.guess (m32r*:Linux:*:*): New case.
6724         * config.sub: Handle m32rle.
6726         2004-03-12  Ben Elliston  <bje@wasabisystems.com>
6728         From Jens Petersen  <petersen@redhat.com>:
6729         * config.sub: Handle sparcv8.
6731         2004-03-03  Ben Elliston  <bje@wasabisystems.com>
6733         From Tom Smith <smith@cag.lkg.hp.com>:
6734         * config.guess: Version suffixes are equally significant on Tru64
6735         V4.* and V5.*, so do not ignore them on V5.*.  Handle a version
6736         prefix of "P" (patched kernel).
6738         2004-02-23  Tal Agmon  <Tal.Agmon@nsc.com>
6740         * config.sub: Add support for National Semiconductor CRX target.
6742 2004-09-03  Jan Beulich  <jbeulich@novell.com>
6744         * configure.in: Remove target-libstdc++-v3 from noconfigdirs for
6745         *-*-netware, but add target-libmudflap.
6746         Consolidate *-*-netware targets (of which really only i?86 exists)
6747         into a single entry.
6748         * configure: Likewise.
6750 2004-09-01  Paolo Bonzini  <bonzini@gnu.org>
6752         * Makefile.tpl (sorry): Remove.
6753         (clean-stage[+id+], clean-stage[+id+]-module): New targets.
6754         (cleanstrap targets): Depend on distclean, not distclean-stage1.
6755         (do-clean): Clean per-stage directories too.
6756         (do-distclean): Run distclean-stage1 too.
6757         (.NOTPARALLEL): Enable during toplevel bootstrap.
6758         (stage[+id+]-bubble): Enable parallel execution during
6759         the recursive invocation.
6760         * Makefile.in: Regenerate.
6762         Sync from gcc (moving the Makefile.in change to Makefile.tpl):
6764         2004-08-31  Robert Bowdidge <bowdidge@apple.com>
6766         * Makefile.in: Move BOOT_CFLAGS above host makefile fragment include.
6767         * configure.in: add test for powerpc-*-darwin* to specify makefile frag
6768         * configure: regenerate
6769         * config/mh-ppc-darwin: create file, override BOOT_CFLAGS for
6770         -mdynamic-no-pic
6772 2004-08-31  Paolo Bonzini  <bonzini@gnu.org>
6774         * Makefile.tpl: Move BOOT_CFLAGS above host makefile fragment
6775         include.
6776         * configure.in: Fix indentation.
6777         * configure: Regenerate.
6779 2004-08-31  Paolo Bonzini  <bonzini@gnu.org>
6781         * Makefile.def (build_modules): Add fixincludes.
6782         (dependencies): Make gcc depend on fixincludes.
6783         * configure.in (build_tools): Add fixincludes.
6784         (build_configdirs): Always include build_libs.
6785         * Makefile.in: Regenerate.
6786         * configure: Regenerate.
6788 2004-08-30  Paolo Bonzini  <bonzini@gnu.org>
6790         * Makefile.def (bootstrap stages): Add 'lean' parameter.
6791         * Makefile.tpl (configure-stageN-*, all-stageN-*): Turned into
6792         phony targets; do not generate timestamp files.
6793         (distclean-stageN): Remove references to their timestamp files.
6794         (restageN, touch-stageN): Remove.
6795         (stageN-bubble): Rewritten.
6796         (compare): Support lean bootstraps.
6797         * Makefile.in: Regenerate.
6799         * configure.in: Only warn when bootstrapping but
6800         build != host or build != target.  Support lean bootstraps.
6801         * configure: Regenerate.
6803         Sync from gcc:
6804         2004-08-26  Phil Edwards  <phil@codesourcery.com>
6806         * configure.in:  Give a better error message if GMP/MPFR are missing
6807         and a language needing them has been requested.
6808         * configure:  Regenerated.
6810         2004-08-25  Phil Edwards  <phil@codesourcery.com>
6812         * configure.in:  Print a list of available language front-ends if
6813         a requested one is missing.  Tidy stray tab characters.
6814         * configure:  Regenerated.
6816 2004-08-17  Paolo Bonzini  <bonzini@gnu.org>
6818         * Makefile.in: Regenerate.
6819         * configure: Regenerate.
6821         * Makefile.def (bootstrap-stage): Rename extra_*_flags to
6822         stage_*_flags.
6823         * Makefile.tpl (configure-[+module+], all-[+module+]): Exit
6824         for bootstrapped modules if toplevel bootstrap is going.
6825         (GCC bootstrap): Generate per-stage targets for all bootstrapped
6826         modules.  Adjust for changes in Makefile.def.  Enable several
6827         rules even in non-bootstrap mode, just to avoid peppering the
6828         template with unnecessary "@if/@endif gcc-bootstrap" pairs.
6829         (stage-[+prev+]-bubble): Remove.
6831         * Makefile.def (Dependencies): Depend on all-build-bison,
6832         all-build-flex, all-build-byacc, all-build-texinfo, rather
6833         than the host variations.
6834         * Makefile.tpl (BUILD_DIR_PREFIX): Remove.  Replace throughout
6835         with BUILD_SUBDIR.
6836         (BISON): Update for recent Bisons.
6837         (YACC): Fix typo.
6838         (cross): Depend on all-build.
6839         (all): Do not depend on all-build.
6840         (prebootstrap): Remove.
6841         (dep-kind): Accept separate prefixes for MODULE and ON variables.
6842         (Prebootstrap dependencies): Add them to the per-stage targets
6843         and to all-prebootstrap.
6844         * configure.in (build_configdirs): Always enable build_tools.
6845         (BUILD_DIR_PREFIX): Remove.
6847         * Makefile.def (gcc): Add target variable.
6848         (gdb, expect, guile, tk, tix): Replace with_x with extra_make_flags.
6849         * Makefile.tpl (Autogenerated `all-*' targets): Invoke $(TARGET-*)
6850         in the recursive `make', instead of hardwiring `all'.
6851         (Autogenerated TARGET-* variables): New.
6853 2004-08-17  Robert Millan  <robertmh@gnu.org>
6855         * configure.in: In noconfigdirs check, match GNU/k*BSD with GNU/Linux
6856         (instead of FreeBSD).
6857         * configure: Regenerate.
6859 2004-08-12  Nathanael Nerode  <neroden@gcc.gnu.org>
6861         * Makefile.def, configure.in, src-release: Remove useless, bogus
6862         references to tix.
6863         * Makefile.in, configure: Regenerate.
6865         * src-release: Stop distributing mmalloc with gdb (which doesn't
6866         use it).
6867         * Makefile.def: GDB doesn't depend on mmalloc anymore.
6868         * Makefile.in: Regenerate.
6870 2004-08-09  Mark Mitchell  <mark@codesourcery.com>
6872         * configure.in (arm*-*-eabi*): New target.
6873         * configure: Regenerate.
6875 2004-08-01  Robert Millan  <robertmh@gnu.org>
6877         * configure.in: Turn mt-linux into mt-gnu. Use mt-gnu and enable
6878         libmudflap for all GNU-based systems (with Glibc).
6879         * configure: Regenerate.
6881 2004-08-06  Paolo Bonzini  <bonzini@gnu.org>
6883         * Makefile.def (bfd, opcodes, gcc, zlib): Mark as bootstrap module.
6884         (bison, byacc, flex, texinfo): Do not mark as bootstrap module.
6885         (Dependencies): New section.
6886         * Makefile.tpl (Dependencies): Generate from Makefile.def.
6887         (configure-target-[+module+]): Depend on maybe-all-gcc
6888         (all-prebootstrap): New name of all-bootstrap.  Changed throughout.
6889         (toplevel profiledbootstrap): Fix dependencies.
6890         * Makefile.in: Regenerate.
6892 2004-08-03  Mark Mitchell  <mark@codesourcery.com>
6894         * configure.in (arm*-*-symbianelf*): Add ${libgcj} and
6895         target-libiberty to noconfigdirs.
6897 2004-08-03  Paul Brook  <paul@codesourcery.com>
6899         * configure.in: Check for MPFR as well as GMP.
6900         * configure: Regenerate.
6902 2004-08-03 Paolo Bonzini <bonzini@gnu.org>
6904         * Makefile.def (host-modules): Add gcc.
6905         * Makefile.in: Regenerate.
6906         * Makefile.tpl (sorry): New rule.
6907         (configure-host, all-host, [+make_target+]-host, do-check,
6908         install-host): Do not add gcc as a special case.
6909         (host modules): Add a small special-casing for gcc.  Export
6910         extra_make_flags through the environment.
6911         (maybe-configure-gcc, configure-gcc, maybe-all-gcc, all-gcc,
6912         maybe-check-gcc, check-gcc, maybe-install-gcc, install-gcc,
6913         other recursive targets for gcc): Remove.
6915         (all, do-[+make_target+], do-check): Wrap between unstage and stage.
6916         (stage, unstage): New rules.
6917         (stage[+id+]-start, stage[+id+]-end, [+compare-target+],
6918         distclean-stage[+id+]): Use stage_current.
6919         ([+bootstrap-target+], profiledbootstrap): Do not invoke manually
6920         the stage*-start rules.
6922 2004-07-19  Robert Millan  <robertmh@gnu.org>
6924         Synced from gcc:
6926         2004-04-26  Robert Millan  <robertmh@gnu.org>
6928         Add patches from libtool CVS.
6929         * libtool.m4: Add kfreebsd*-gnu and knetbsd*-gnu.
6930         * ltconfig: Likewise.
6931         * ltcf-c.sh: Likewise.
6932         * ltcf-cxx.sh: Likewise.
6933         * ltcf-gcj.sh: Likewise.
6935 2004-07-12  Paolo Bonzini  <bonzini@gnu.org>
6937         * configure.in: Add noconfigdirs for crx-*-*.
6938         * configure: Regenerate.
6940 2004-07-12  Paolo Bonzini  <bonzini@gnu.org>
6942         Synced from gcc:
6944         2004-07-09  Loren J. Rittle <ljrittle@acm.org>
6946         * configure.in: Build libmudflap by default on FreeBSD.
6947         * configure: Regenerated.
6949         2004-07-09  Mark Mitchell  <mark@codesourcery.com>
6951         * configure.in: Do not build libmudflap by default on non-GNU/Linux
6952         systems.
6953         * configure: Regenerated.
6955         2004-07-08 John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
6957         PR target/16344
6958         * Makefile.tpl (profiledbootstrap): Build runtime libraries with
6959         feedback based compiler.
6960         * Makefile.in: Rebuilt.
6962         2004-07-05  Phil Edwards  <phil@codesourcery.com>
6964         * configure.in:  Do not prepend $srcdir to /dev/null in
6965         makefile fragments.
6966         * configure:  Regenerate.
6968 2004-07-08  Alexandre Oliva  <aoliva@redhat.com>
6970         * Makefile.def (host_modules): Set bootstrap=true for flex.
6971         * Makefile.tpl (all-gcc): Depend on texinfo and flex.
6972         * Makefile.in: Rebuilt.
6974 2004-07-01  Paolo Bonzini  <bonzini@gnu.org>
6976         * Makefile.def (build_modules): Add bison, byacc, flex,
6977         m4, texinfo.
6978         (flags_to_pass): Add FLEX.
6979         * Makefile.tpl (BUILD_DIR_PREFIX, BASE_EXPORTS): New.
6980         (BUILD_EXPORTS, HOST_EXPORTS, BASE_TARGET_EXPORTS): Include it.
6981         (DEFAULT_YACC, USUAL_YACC, DEFAULT_LEX, USUAL_LEX, DEFAULT_M4,
6982         DEFAULT_MAKEINFO): Remove.
6983         (CONFIGURED_YACC, CONFIGURED_FLEX, CONFIGURED_BISON,
6984         CONFIGURED_LEX, CONFIGURED_M4, CONFIGURED_MAKEINFO): Substitute.
6985         (YACC, FLEX, BISON, LEX, M4, MAKEINFO): Define to look into
6986         objdir or else use configured tool.
6987         (all-build): New.
6988         (all): Depend on it.
6989         (Build module dependencies): Add.
6990         * Makefile.in: Regenerate.
6991         * configure.in: Better support for multiple build modules,
6992         matching what is done for host/target modules.  Do not look
6993         for "plausible" locations of build tools if Canadian cross.
6994         Use autoconf's AC_PROG_CC to find a C compiler.  Define
6995         BUILD_DIR_PREFIX.  Look for flex, makeinfo and m4.
6996         * configure: Regenerate.
6998 2004-06-22  Paolo Bonzini  <bonzini@gnu.org>
7000         * Makefile.tpl (HOST_EXPORTS): Fix pasto.
7001         * Makefile.in: Regenerate.
7003 2004-06-22  Paolo Bonzini  <bonzini@gnu.org>
7005         * Makefile.tpl (configure-build-[+module+],
7006         configure-[+module+], configure-target-[+module+]): Pass
7007         [+extra_configure_args+].
7008         (all-build-[+module+], all-[+module+], check-[+module+],
7009         install-[+module+], [+make_target+]-[+module+],
7010         all-target-[+module+], check-target-[+module+],
7011         install-target-[+module+], [+make_target+]-target-[+module+]):
7012         Pass [+extra_make_args+].
7013         (HOST_EXPORTS): Include the former GCC_HOST_EXPORTS.
7014         (GCC_HOST_EXPORTS): Remove.
7015         (configure-gcc, all-gcc, GCC_STRAP_TARGETS, profiledbootstrap,
7016         cross, check-gcc, check-gcc-c++, install-gcc,
7017         gcc-no-fixedincludes, [+make_target+]-gcc, stage[+id+]-bubble):
7018         Replace GCC_HOST_EXPORTS with HOST_EXPORTS.
7019         * Makefile.in: Regenerate.
7021 2004-06-21  Christopher Faylor  <cgf@alum.bu.edu>
7023         * configure.in: Check for srcdir/winsup rather than build directory
7024         winsup.
7025         * configure: Regenerate.
7027 2004-06-17  Corinna Vinschen  <vinschen@redhat.com>
7029         * configure.in: Don't build Cygwin native newlib if winsup
7030         directory is missing.  Emit warning instead.
7031         * configure: Regenerate.
7033 2004-06-09  Paolo Bonzini  <bonzini@gnu.org>
7035         * Makefile.tpl (touch-stage[+id+]): New.
7036         (restage[+prev+]): Depend on touch-stage[+id+].
7038         * Makefile.tpl (RECURSE_FLAGS_TO_PASS): New.
7039         Use it throughout.
7041         * Makefile.def: Add profile and feedback bootstrap stages.
7042         Remove next field from bootstrap stages.
7043         * Makefile.tpl (LN, LN_S): Substitute.
7044         (stageN-start, stageN-end): Use double-colon rules, to
7045         provide a hook for additional setup commands.
7046         (distclean-stageN-gcc, restageN): Create dependencies from
7047         [+prev+], not from [+next+].
7048         (stageN-bubble): Add commands for successive stages from
7049         [+prev+], using double-colon rules.
7050         (all-stageN-gcc): Fix typo.
7051         (stagefeedback-start, profiledbootstrap): New.
7052         * Makefile.in: Regenerate.
7053         * configure.in: Call ACX_PROG_LN.
7054         * configure: Regenerate.
7056 2004-06-03  Paolo Bonzini  <bonzini@gnu.org>
7058         * configure.in: Fix --enable-bootstrap breakage introduced in trees
7059         without gcc.
7060         * configure: Regenerate.
7062 2004-06-01  Paolo Bonzini  <bonzini@gnu.org>
7064         * Makefile.tpl: Fix typo.
7065         * Makefile.in: Regenerate.
7067 2004-06-01  Paolo Bonzini <bonzini@gnu.org>
7069         * configure.in: Remove new- prefix from toplevel
7070         bootstrap targets.
7071         * configure: Regenerate.
7073 2004-06-01  Paolo Bonzini <bonzini@gnu.org>
7075         Merge this patch from the gcc tree:
7077         2004-05-30  Andreas Jaeger  <aj@suse.de>
7078                     Jim Wilson <wilson@specifixinc.com>
7080         * config-ml.in: Pass FFLAGS and ADAFLAGS for multilibs, handle F77
7081         like CC.
7083 2004-06-01  Paolo Bonzini  <bonzini@gnu.org>
7085         * Makefile.tpl (all.normal): Rename to all.
7086         (all): Replace with a rule to pick the default
7087         target from configure.
7088         (all-gcc, configure-gcc): Use conditionals to
7089         do nothing when toplevel bootstrap is going on.
7090         (GCC directory bootstrap) [gcc-bootstrap]: Disable.
7091         (Toplevel bootstrap) [gcc-no-bootstrap]: Disable.
7092         * configure.in: Support --enable-bootstrap.
7094         * Makefile.def: Remove new- prefix from toplevel
7095         bootstrap targets.
7096         * Makefile.tpl: Likewise.
7098         * Makefile.def: Add bootstrap_stage 4.  Add bootstrap2
7099         target.
7101         * Makefile.tpl (Toplevel bootstrap): Pass $(BASE_FLAGS_TO_PASS)
7102         $(RECURSE_FLAGS) to recursive invocation of make.
7104         * Makefile.in: Regenerate.
7105         * configure: Regenerate.
7107 2004-05-27  Daniel Jacobowitz  <dan@debian.org>
7109         * configure.in: Fix sed invocation for GFORTRAN_FOR_TARGET.
7110         * configure: Regenerate.
7112 2004-05-25  Daniel Jacobowitz  <drow@false.org>
7114         * Makefile.tpl (BUILD_EXPORTS, HOST_EXPORTS, GCC_HOST_EXPORTS)
7115         (STAGE_HOST_EXPORTS, BASE_TARGET_EXPORTS, RAW_CXX_TARGET_EXPORTS)
7116         (NORMAL_TARGET_EXPORTS): New macros.  Use them in all the recursive
7117         targets.
7118         * Makefile.in: Regenerate.
7120 2005-05-24  Paolo Bonzini <bonzini@gnu.org>
7122         * configure.in: Test the ability to symlink directories.
7123         * configure: Regenerate.
7125         * Makefile.def (bootstrap-stage): New definitions.
7126         * Makefile.tpl (configure-stage1-gcc,
7127         configure-stage2-gcc, configure-stage3-gcc,
7128         all-stage1-gcc, all-stage2-gcc, all-stage3-gcc,
7129         new-bootstrap, new-cleanstrap, new-restage1, new-restage2,
7130         new-restage3, compare): Autogenerate, see Makefile.in
7131         entry for behavioral changes.
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 autogenerated targets.
7136         (objext, prebootstrap, BOOT_CFLAGS,
7137         POSTSTAGE1_FLAGS_TO_PASS): Move above the autogenerated
7138         targets.
7140         * Makefile.in: Regenerate.
7141         (distclean-stage1, new-stage1-start, new-stage1-end,
7142         new-stage1-bubble, distclean-stage2, new-stage2-start,
7143         new-stage2-end, new-stage2-bubble, distclean-stage3,
7144         new-stage3-start, new-stage3-end): New targets.
7145         (all-stage1-gcc): Move prebootstrap dependency from here...
7146         (configure-stage1-gcc): ...to here.
7147         (new-bootstrap): Use bubble targets.
7148         (new-cleanstrap, new-restage1, new-restage2, new-restage3):
7149         Use per-stage distclean targets.
7150         (configure-stage1-gcc, configure-stage2-gcc,
7151         configure-stage3-gcc, all-stage1-gcc,
7152         all-stage2-gcc, all-stage3-gcc, new-bootstrap):
7153         Use new-stageN-start to prepare the tree.
7155 2004-05-23  Paolo Bonzini  <bonzini@gnu.org>
7157         * Makefile.def (host_modules): add libcpp.
7158         * Makefile.tpl: Add dependencies on and for libcpp.
7159         * Makefile.in: Regenerate.
7160         * configure.in: Add libcpp host module.
7161         * configure: Regenerate.
7163 2004-05-17  Zack Weinberg  <zack@codesourcery.com>
7165         * Makefile.def, Makefile.tpl, configure.in: Remove all mention
7166         of libf2c.
7167         * configure, Makefile.in: Regenerate.
7169 2004-05-13  Diego Novillo  <dnovillo@redhat.com>
7171         Merge from tree-ssa-20020619-branch.
7173         * Makefile.def: Add libbanshee, libmudflap and libgfortran.
7174         * Makefile.tpl (BUILD_CONFIGDIRS): Add libbanshee.
7175         (HOST_GMPLIBS): Define.
7176         (HOST_GMPINC): Define.
7177         (TARGET_LIB_PATH): Add libmudflap.
7178         (GFORTRAN_FOR_TARGET): Define.
7179         (configure-build*): Export GFORTRAN.
7180         (configure-gcc): Export GMPLIBS and GMPINC.
7181         (all-gcc): Add maybe-all-libbanshee.
7182         (configure-target-libgfortran): Define.
7183         * Makefile.in: Regenerate.
7184         * configure.in (host_libs): Add libbanshee.
7185         (target_libraries): Add target-libmudflap and target-libgfortran.
7186         Add --with-libbanshee.
7187         Handle --disable-libmudflap.
7188         (*-*-freebsd*): Use with_gmp.
7189         Add $(libgcj) to noconfigdirs.
7190         * configure: Regenerate.
7191         * depcomp: New file.
7192         * MAINTAINERS: Add tree-ssa maintainers.
7194 2004-04-28  Paolo Bonzini  <bonzini@gnu.org>
7196         * config/acx.m4: Fix fastcompare support for new-bootstrap.
7197         * configure: Regenerate.
7199 2004-04-27  Paolo Bonzini  <bonzini@gnu.org>
7201         Revert:
7202         2004-04-26  Paolo Bonzini  <bonzini@gnu.org>
7204         * Makefile.def (flags_to_pass): Remove *dir variables that
7205         are passed to the modules via TOPLEVEL_CONFIGURE_ARGUMENTS,
7206         as well as prefix and exec_prefix.
7207         * Makefile.in: Regenerate.
7209 2004-04-26  Paolo Bonzini  <bonzini@gnu.org>
7211         * Makefile.def (host_modules): Mark with the bootstrap
7212         flag packages on which gcc depends.
7213         * Makefile.tpl (all-bootstrap): Use it.
7214         * Makefile.in: Regenerate.
7216 2004-04-26  Paolo Bonzini  <bonzini@gnu.org>
7218         * Makefile.def (flags_to_pass): Remove *dir variables that
7219         are passed to the modules via TOPLEVEL_CONFIGURE_ARGUMENTS,
7220         as well as prefix and exec_prefix.
7221         * Makefile.in: Regenerate.
7223 2004-04-26  Paolo Bonzini  <bonzini@gnu.org>
7225         * configure.in: Invoke ACX_PROG_CMP_IGNORE_INITIAL.
7226         * configure: Regenerate.
7227         * config/acx.m4: Mutuate ACX_PROG_CMP_IGNORE_INITIAL from gcc.
7228         * gcc/Makefile.tpl (compare): Use the result of the test.
7229         * gcc/Makefile.in: Regenerate.
7231 2004-04-23  Paolo Bonzini  <bonzini@gnu.org>
7233         * Makefile.tpl (all-stage1-gcc, all-stage2-gcc, all-stage3-gcc):
7234         Always relocate gcc and prev-gcc to the original names, even
7235         if the build fails.
7236         (new-cleanstrap, new-restage1, new-restage2, new-restage3):
7237         New targets.
7239 2004-04-19  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
7241         * configure.in (mips*-*-irix5*): Enable ld.
7242         * configure: Regenerate.
7244 2004-04-15  James E Wilson  <wilson@specifixinc.com>
7246         * Makefile.tpl (configure-[+module+], configure-gcc,
7247         configure-stage1-gcc, configure-stage2-gcc, configure-stage3-gcc):
7248         Set and export LDFLAGS.
7249         * Makefile.in: Regenerate.
7251 2004-04-09  Nathanael Nerode  <neroden@gcc.gnu.org>
7253         PR bootstrap/14871
7254         * Makefile.tpl: If we don't have built-in-tree target tools,
7255         use the ones found by configure rather than hacking around with
7256         program_transform_name.
7257         * configure.in: Give Makefile.tpl the information necessary
7258         to do that.
7259         * Makefile.in: Regenerate.
7260         * configure: Regenerate.
7262 2004-04-06  Nathanael Nerode  <neroden@gcc.gnu.org>
7264         PR bootstrap/14760
7265         * configure.in: When computing baseargs, strip *all* copies of
7266         offending options.  Also, don't match/substitute the trailing space,
7267         so that this actually works when two similar options are separated by
7268         only one space.
7269         * configure: Regenerate.
7271 2004-04-06  David Edelsohn  <edelsohn@gnu.org>
7273         * configure.in (powerpc-*-aix*): Remove target-libada from noconfigdirs.
7274         (rs6000-*-aix*): Same.
7275         * configure: Regenerate.
7277 2004-03-25  Stan Shebs  <shebs@apple.com>
7279         Remove MPW support, no longer used.
7280         * mpw-README, mpw-build.in, mpw-config.in, mpw-configure,
7281         mpw-install: Remove files.
7282         * src-release (DEVO_SUPPORT): Remove names of removed files.
7283         * MAINTAINERS: Likewise.
7285 2004-03-24  Nathanael Nerode  <neroden@gcc.gnu.org>
7287         * Makefile.tpl (top level bootstrap support): Remove now-unneeded
7288         STRICT_WARN, WARN_CFLAGS flags passed down to make.
7289         * Makefile.in: Regenerate.
7291         * configure.in (top level bootstrap support): Rework --enable-werror
7292         to set @stage2_werror_flag@.
7293         * configure: Regenerate.
7294         * Makefile.tpl (top level bootstrap support): Pass
7295         @stage2_werror_flag@ down to configure in stages 2 and 3.
7296         * Makefile.in: Regenerate.
7298 2004-03-23  Nathanael Nerode  <neroden@gcc.gnu.org>
7300         * Makefile.tpl (new-bootstrap): Set CC and CC_FOR_BUILD in configure
7301         for stages 2 and 3 as well as in make.  As a consequence, remove
7302         OUTPUT_OPTION (now detected by configure) from the flags passed down
7303         to make.
7304         * Makefile.in: Regenerate.
7306         * Makefile.tpl (new-bootstrap): Fix typo.
7307         * Makefile.in: Regenerate.
7309 2004-03-22  Nathanael Nerode  <neroden@gcc.gnu.org>
7311         * Makefile.tpl: Rearrange by moving recursive_targets rules
7312         into their proper sections.
7313         * Makefile.tpl (top level bootstrap support): Move disabling
7314         of coverage flags from 'make' to 'configure'; improve comments.
7315         * Makefile.in: Regenerate.
7317         * Makefile.tpl (experimental top level bootstrap) Move stage1
7318         language setting from all- target to configure- target; disable
7319         intermodule optimization in stage 1; prevent gratuitous rebuilds
7320         of stage 1.
7321         * Makefile.in: Regenerate.
7322         * configure.in: Comma-separate stage 1 language list for top
7323         level bootstrap.
7324         * configure: Regenerate.
7326         * Makefile.tpl: Clean up experimental top level bootstrap support:
7327         note known problems; set CONFIG_SHELL; don't set BUILD_CC; relocate
7328         prev-gcc in configure- targets as well as all- targets.
7329         * Makefile.in: Regenerate.
7331 2004-03-17  Paolo Bonzini  <bonzini@gnu.org>
7333         * configure.in: Remove symbolic link section.
7334         * configure: Regenerate.
7335         * Makefile.tpl (links): Remove.
7336         * Makefile.in: Regenerate.
7338 2004-03-15  Paolo Bonzini  <bonzini@gnu.org>
7339             Nathanael Nerode  <neroden@gcc.gnu.org>
7341         * configure.in (DEFAULT_YACC, DEFAULT_M4, DEFAULT_LEX):
7342         Set with AC_CHECK_PROGS.
7343         * configure.in: Fix comment typo from last patch.
7344         * configure: Regenerate.
7346 2004-03-15  Nathanael Nerode  <neroden@gcc.gnu.org>
7348         * Makefile.tpl: Introduce experimental top level bootstrap support.
7349         * Makefile.in: Regenerate.
7350         * configure.in: Introduce support for top level bootstrap.
7351         * configure: Regenerate.
7353 2004-03-12  Eric Botcazou  <ebotcazou@gcc.gnu.org>
7354             Paolo Bonzini  <bonzini@gnu.org>
7356         PR bootstrap/14522
7357         * configure.in: Cope with shells that do not support unquoted ^
7358         * configure: Regenerate.
7360 2004-03-11  Eric Botcazou  <ebotcazou@gcc.gnu.org>
7361             Paolo Bonzini  <bonzini@gnu.org>
7363         PR bootstrap/14522
7364         * configure.in: Cope with shell that do not support nesting
7365         quotes inside quoted backquote substitutions.
7366         * configure: Regenerate.
7368 2004-03-10  Andrew Pinski  <pinskia@physics.uc.edu>
7370         PR bootstrap/14522
7371         * configure.in: Fix escaping of $.
7372         * configure: Regenerate.
7374 2004-03-11  Nathanael Nerode  <neroden@gcc.gnu.org>
7376         * configure: Regenerate.
7378 2004-03-08  Paolo Bonzini  <bonzini@gnu.org>
7380         PR ada/14131
7381         Move language detection to the top level.
7382         * configure.in: Find default values for the tools as
7383         soon as possible.  Disable ada if GNAT is not found.
7384         Emit error message about missing languages.  Expand
7385         --enable-languages=all for the gcc subdirectory.
7387 2004-03-01  Richard Sandiford  <rsandifo@redhat.com>
7389         * configure.in (mips64*-*-linux*): Override mips*-*-linux* case
7390         and disable libgcj.
7391         * configure: Regenerated.
7393 2004-02-28  Nathanael Nerode  <neroden@gcc.gnu.org>
7395         PR bootstrap/7087
7396         * Makefile.tpl: Guard XFOO sed statements better.
7397         * Makefile.tpl: Add dependency for configure-target-libada.
7398         * Makefile.in: Regenerate (incidentally fixes broken
7399         commit when libada-branch was merged).
7401 2004-02-28  Andrew Cagney  <cagney@redhat.com>
7403         * src-release (CVS_NAMES): Define.
7404         (do-tar, do-tar): Prune $(CVS_NAMES).
7406 2004-02-23  Andrew Cagney  <cagney@redhat.com>
7408         * texinfo/texinfo.tex: Update from version 2003-02-03.16 to
7409         2004-02-19.09.
7411 2004-02-19  Nathanael Nerode  <neroden@gcc.gnu.org>
7413         PR bootstrap/11932
7414         * mkinstalldirs, install-sh: Import from automake CVS HEAD.
7416 2004-02-19  Andrew Cagney  <cagney@redhat.com>
7418         * config.guess: Update from version 2003-06-12 to 2004-02-16.
7419         * config.sub: Update from version 2003-06-13 to 2004-02-16.
7421 2004-02-11  David Edelsohn  <edelsohn@gnu.org>
7423         * configure.in (powerpc-*-aix*): Add target-libada to noconfigdirs.
7424         (rs6000-*-aix*): Same.
7425         * configure: Regenerate.
7427 2004-02-11  Kelley Cook  <kcook@gcc.gnu.org>
7429         * configure.in (host): Add in missing $noconfigdirs to defines.
7430         * configure: Regenerate.
7432 2004-02-10  Arnaud Charlet  <charlet@act-europe.fr>,
7433             Nathanael Nerode  <neroden@gcc.gnu.org>
7435         PR ada/6637, PR ada/5911
7436         Merge with libada-branch:
7437         * configure.in, Makefile.tpl, Makefile.def: Add target-libada,
7438         with appropriate dependencies. Add --enable-libada configure switch.
7439         * configure, Makefile.in: Regenerate.
7441 2004-02-05  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
7443         * configure.in: Don't pass --with-stabs on IRIX 5 either.
7444         * configure: Regenerate.
7446 2004-02-02  Jeff Johnston  <jjohnstn@redhat.com>
7448         * COPYING.NEWLIB: Update Red Hat license to 2004.
7450 2004-01-23  DJ Delorie  <dj@redhat.com>
7452         * Makefile.def (target_modules) [libiberty]: Don't stage.
7453         * Makefile.in: Rebuilt.
7455 2004-01-23  Jeff Johnston  <jjohnstn@redhat.com>
7457         * COPYING.NEWLIB: Update to include copyrights for new
7458         iconv code.
7460 2004-01-15  Andrew Cagney  <cagney@redhat.com>
7462         * src-release: Update copyright year.
7463         (do-proto-toplev): Configure using i686-pc-linux-gnu.
7464         (NEWLIB_SUPPORT_DIRS): Delete macro.
7465         (newlib.tar.bz2): Delete rule.
7467 2004-01-14  Loren J. Rittle <ljrittle@acm.org>
7469         * Makefile.def (target_modules) [libtermcap, libiberty, zlib]: Stage.
7470         * Makefile.tpl (configure-target-[+module+]): Support stage.
7471         * Makefile.in: Rebuilt.
7473 2003-01-14  Maciej W. Rozycki  <macro@ds2.pg.gda.pl>
7475         * gettext.m4: Quote names of macros to be defined by AC_DEFUN
7476         throughout.
7478 2004-01-04  Nathanael Nerode  <neroden@gcc.gnu.org>
7480         * configure.in: Use ./config.cache, not config.cache.
7481         * configure: Regenerate.
7482         * Makefile.tpl: Special-casing not needed for GCC any more.
7483         * Makefile.in: Regenerate.
7485         * configure.in: Don't share a cache file for host dirs.
7486         * configure: Regenerate.
7488         * config-ml.in: Don't mess with the cache file.
7490 2004-01-03  Nathanael Nerode  <neroden@gcc.gnu.org>
7492         * Makefile.tpl: Make GCC use a separate config.cache.
7493         * Makefile.in: Regenerate.
7495         PR bootstrap/11932, PR bootstrap/11933
7496         (I don't know if it will fix either of them, but it relates
7497         to them.)
7498         * configure.in: Don't use shared config.cache for target
7499         directories.
7500         * configure: Regenerate.
7502 2003-12-31  Roger Sayle  <roger@eyesopen.com>
7504         * configure.in (ia64*-*-hpux*): Disable building java libraries.
7505         * configure: Regenerated.
7507 2003-12-21  Bernardo Innocenti  <bernie@develer.com>
7509         * configure.in (*-*-uclinux): Exclude newlib, libgloss and rda.
7510         * configure: Regenerated.
7512 2003-12-19  Nathanael Nerode  <neroden@gcc.gnu.org>
7514         Port change over from GCC:
7515         2003-11-20  Kelley Cook  <kcook@gcc.gnu.org>
7516         * Makefile.tpl (BASE_FLAGS_TO_PASS): Pass along CONFIG_SHELL.
7517         (configure-build-[+module+], configure-[+module+]): Likewise.
7518         (configure-target-[+module+], configure-gcc, config.status): Likewise.
7519         * Makefile.in: Regenerate.
7521 2003-12-08  Thomas Fitzsimmons  <fitzsim@redhat.com>
7523         * configure.in (raw_libstdcxx_flags): Remove the leading space.
7524         * configure: Regenerate.
7526 2003-11-27  Jeff Johnston  <jjohnstn@redhat.com>
7528         * COPYING.NEWLIB: Add license info for long long routines added to
7529         stdlib.
7531 2003-11-14  Arnaud Charlet  <charlet@act-europe.fr>
7533         * Makefile.tpl (EXTRA_GCC_FLAGS): Pass BOOT_ADAFLAGS.
7534         * Makefile.in: Regenerate.
7536 2003-10-20  Phil Edwards  <phil@codesourcery.com>
7538         * configure.in (*-*-vxworks):  Add target-libiberty to noconfdirs.
7539         * configure:  Regenerate.
7541 2003-10-13  Nathanael Nerode  <neroden@gcc.gnu.org>
7543         * Makefile.tpl: Make GCC_FLAGS_TO_PASS a superset of
7544         HOST_FLAGS_TO_PASS.
7545         * Makefile.in: Regenerate.
7547 2003-10-05  Mohan Embar  <gnustuff@thisiscool.com>
7549         * configure.in: Allow explicit specification of CFLAGS_FOR_BUILD.
7550         * configure: Rebuilt
7551         * Makefile.tpl: Use CFLAGS_FOR_BUILD computed by configure
7552         * Makefile.in: Rebuilt
7554 2003-10-03  H.J. Lu  <hongjiu.lu@intel.com>
7556         * ltconfig (sys_lib_search_path_spec): Fix a typo for HPUX.
7558 2003-10-01  Phil Edwards  <pme@gcc.gnu.org>
7560         * config-ml.in:  Use ac_configure_args directly instead of
7561         ml_arguments.  Only set ml_norecursion if --no[-]recursion is
7562         actually seen.
7564 2003-10-01  Eric Botcazou  <ebotcazou@libertysurf.fr>
7566         * config-ml.in: Propagate INSTALL variables.
7568 2003-09-21  Daniel Jacobowitz  <drow@mvista.com>
7570         * configure.in: Pass a computed --program-transform-name
7571         to subconfigures.
7572         * configure: Regenerated.
7574 2003-09-20  Nathanael Nerode  <neroden@gcc.gnu.org>
7576         * Makefile.tpl: Don't pass down obsolete ENQUIRE variable.
7577         * Makefile.in: Regenerate.
7579         * Makefile.tpl: Don't pass (unused) DLLTOOL or WINDRES to gcc.
7580         * Makefile.in: Regenerate.
7582 2003-09-17  Daniel Jacobowitz  <drow@mvista.com>
7584         * configure.in (TOPLEVEL_CONFIGURE_ARGUMENTS, baseargs): Fix
7585         quoting.
7586         * configure: Regenerated.
7588 2003-09-12  Michael Chastain  <mec@shout.net>
7590         Fix PR gdb/857.
7591         * src-release (do-proto-topleve): Remove junk files
7592         intl/config.cache, intl/config.status,
7593         intl/config.h, intl/stamp-h.
7595 2003-09-14  Andrew Cagney  <cagney@redhat.com>
7597         * src-release (dejagnu.tar): New target.
7598         (dejagnu.tar.bz2): Recursively call "gdb-taz" rule.
7599         (do-djunpack): Use $(PACKAGE) for the package name.
7601 2003-09-04  DJ Delorie  <dj@redhat.com>
7603         * configure: Regenerate.
7605 2003-09-04  Robert Millan  <robertmh@gnu.org>
7607         * configure.in: Match GNU/KFreeBSD with new kfreebsd*-gnu triplet.
7609 2003-09-02  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
7611         * configure.in: Ensure arguments to sed are properly spaced.
7612         * configure: Regenerate.
7614 2003-08-28  Daniel Jacobowitz  <drow@mvista.com>
7616         Merge from gcc:
7617         2003-07-20  Phil Edwards  <pme@gcc.gnu.org>
7618         * install-sh:  Update to newer upstream versions (associated with
7619         aclocal 1.7).
7620         * missing:  Likewise, plus $1Help2man -> $1 typo fix.
7622 2003-08-27  Daniel Jacobowitz  <drow@mvista.com>
7624         * configure.in: Set RAW_CXX_FOR_TARGET if unset.
7625         * configure: Regenerated.
7627 2003-08-23  Phil Edwards  <pme@gcc.gnu.org>
7629         * configure.in:  Use newline instead of semicolon when assuming
7630         shell arguments in a for loop.
7631         * configure:  Regenerated.
7633 2003-08-20  Geoffrey Keating  <geoffk@apple.com>
7635         PR 8180
7636         * configure.in: When testing with_libs and with_headers, treat
7637         'no' as unset.  Based on a patch by Dan Kegel <dank@kegel.com>.
7638         * configure: Regenerate.
7640         * configure.in (TOPLEVEL_CONFIGURE_ARGUMENTS): Quote properly for
7641         make, shell, etc.
7642         (baseargs): Likewise.
7643         * configure: Regenerate.
7645 2003-08-19  Geoffrey Keating  <geoffk@apple.com>
7647         * configure.in: Disable libgcj for darwin not on powerpc.
7648         * configure: Rebuild.
7650 2003-08-15  Michael Chastain  <mec@shout.net>
7652         * src-release (do-proto-toplev): Remove junk files
7653         dejagnu/example/calc/config.status,
7654         dejagnu/example/calc/config.log.
7656 2003-08-14  Alexandre Duret-Lutz  <adl@gnu.org>
7658         * config-ml.in, symlink-tree: Add license.
7660 2003-08-01  Nathanael Nerode  <neroden@gcc.gnu.org>
7662         Merge from gcc:
7664         2003-08-01  Matt Kraai  <kraai@alumni.cmu.edu>
7665         * Makefile.tpl (check, check-c++): Express dependencies using
7666         dependencies rather than commands.
7667         * Makefile.in: Regenerate.
7669         2003-07-31  Geoffrey Keating  <geoffk@apple.com>
7670         * Makefile.tpl (libsubdir): Use gcc instead of gcc-lib.
7671         * Makefile.in: Update.
7673 2003-08-01  Andrew Cagney  <cagney@redhat.com>
7675         * configure.in (noconfigdirs): Do not add GDB when m32r-*-*.
7676         * configure: Ditto.
7678 2003-07-30  Andreas Tobler  <a.tobler@schweiz.ch>
7680         * configure.in: Enable libgcj for darwin.
7681         * configure: Rebuild.
7683 2003-07-29  Nathanael Nerode  <neroden@gcc.gnu.org>
7685         * mkinstalldirs: Import autoconf 2.57 / automake 1.7 version.
7687 2003-07-27  Nathanael Nerode  <neroden@gcc.gnu.org>
7689         * Makefile.tpl: Use 'mkinstalldirs' rather than 'mkdir' when
7690         creating target and build subdirs to build all parent dirs as needed.
7691         * Makefile.in: Rebuild.
7692         * configure.in: Don't build dirs explicitly here.
7693         * configure: Rebuild.
7695 2003-07-22  Alexandre Oliva  <aoliva@redhat.com>
7697         * Makefile.tpl (all-make): Depend on intl.
7698         * Makefile.in: Rebuilt.
7700 2003-07-16  Nathanael Nerode  <neroden@gcc.gnu.org>
7702         * config.if: Remove unused libc_interface determination.
7704 2003-07-14  Nathanael Nerode  <neroden@gcc.gnu.org>
7706         * Makefile.in: Regenerate, correctly this time.
7708 2003-07-13  Nathanael Nerode  <neroden@gcc.gnu.org>
7710         * Makefile.tpl: Set INSTALL and friends using autoconf.  Remove
7711         unused INSTALL_PROGRAM_ARGS.
7712         * configure.in: Use AC_PROG_INSTALL.
7713         * Makefile.in: Regenerate.
7714         * configure: Regenerate.
7716 2003-07-10  Alexandre Oliva  <aoliva@redhat.com>
7718         * configure: Rebuilt.
7719         2001-09-26  Alexandre Oliva  <aoliva@redhat.com>
7720         * configure.in (noconfigdirs) [am33_2.0-*-linux*]: Don't build
7721         newlib nor libgloss.
7722         Wed May  9 10:07:19 2001  Alexandre Oliva  <aoliva@redhat.com>
7723         * configure.in (am33_2.0-*-linux*): Added.
7725 2003-07-09  Bob Wilson  <bob.wilson@acm.org>
7727         * configure.in: Add ${libgcj} to noconfigdirs for xtensa-*-* targets.
7728         * configure: Regenerate.
7730 2003-07-06  H.J. Lu <hongjiu.lu@intel.com>
7732         * config-ml.in: Replace PWD with PWD_COMMAND.
7733         * Makefile.tpl: Likewise.
7734         * Makefile.in: Regenerated.
7736 2003-06-27  Nathanael Nerode  <neroden@gcc.gnu.org>
7738         * configure.in: Clean up config-lang.in handling.  Delete
7739         useless assignment to "subdirs".
7740         * configure: Regenerate.
7742 2003-06-26  Nathanael Nerode  <neroden@gcc.gnu.org>
7744         * configure.in: Rename 'target_libs' to 'target_libraries'.
7745         Remove useless reference to 'target_libs'.
7746         * configure: Regenerate.
7748 2003-06-23  Keith Seitz  <kseitz@sources.redhat.com>
7750         * Makefile.tpl: Add maybe-configure-itcl to configure-gdb.
7751         * Makefile.in: Regenerate.
7753 2003-06-23  Nathanael Nerode  <neroden@gcc.gnu.org>
7755         * Makefile.def: Introduce flags_to_pass.
7756         * Makefile.tpl: Generate BASE_FLAGS_TO_PASS using it.
7757         * Makefile.in: Regenerate.
7759 2003-06-23  Hans-Peter Nilsson  <hp@bitrange.com>
7761         * configure.in (noconfigdirs) <cris-*-*>: Disable target-newlib
7762         and target-libgloss.
7763         <d30v-*-*, fr30-*-*, i960-*-*, m32r-*-*>: Disable gdb.
7764         <h8300*-*-*>: Disable libf2c and ${libgcj}.
7765         * configure: Regenerate.
7767 2003-06-17  Benjamin Kosnik  <bkoz@redhat.com>
7769         * configure.in: Update testsuite_flags to new location.
7770         * configure. Regenerate.
7772 2003-06-18  Nathanael Nerode  <neroden@gcc.gnu.org>
7774         * Makefile.tpl: Remove BUILD_CC stuff.
7775         * Makefile.in: Regenerate.
7777 2003-06-14  H.J. Lu <hongjiu.lu@intel.com>
7779         * config.guess: Update to 2003-06-12 version.
7780         * config.sub: Update to 2003-06-13 version.
7782 2003-06-12  Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
7784         * MAINTAINERS: Add myself as MIPS co-maintainer.
7786 2003-06-12  H.J. Lu <hongjiu.lu@intel.com>
7788         * config.guess: Update to 2003-06-06 version.
7789         * config.sub: Update to 2003-06-06 version.
7791 2003-06-11  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
7793         * configure.in: Don't pass --with-stabs for mips*-sgi-irix6*o32.
7794         * configure. Regenerate.
7796 2003-06-10  Nathanael Nerode  <neroden@gcc.gnu.org>
7798         * configure.in: Disable serial configure by default.
7799         * configure: Regenerate.
7800         * Makefile.tpl: Abolish .NOTPARALLEL.
7801         * Makefile.in: Regenerate.
7803         * Makefile.tpl: Replace {build,host,target}_canonical by
7804         {build,host,target}.
7805         * Makefile.in: Regenerate.
7807         * Makefile.tpl: Fix stupid pasto.
7808         * Makefile.in: Regenerate.
7810 2003-06-09  Nathanael Nerode  <neroden@gcc.gnu.org>
7812         * Makefile.tpl: Remove bogus conditional.
7813         * Makefile.in: Regenerate.
7815 2003-06-03  Nathanael Nerode  <neroden@gcc.gnu.org>
7817         * Makefile.tpl: Make 'recursive targets' using autogen rather
7818         than shell loop.  Remove duplicate 'clean' targets and false
7819         comments.
7820         * Makefile.def: Add systematic dependencies to 'recursive' targets.
7821         Add systematic method of specifying missing targets in subdirs.
7822         Add copyright boilerplate.
7823         * Makefile.in: Regenerate.
7824         * configure.in: Add 'recursive targets' to maybe list.
7825         * configure: Regenerate.
7827         * Makefile.tpl: Rename [+target+] to [+make_target+].
7828         * Makefile.def: Rename 'target' to 'make_target'.
7830 2003-05-30  Nick Clifton  <nickc@redhat.com>
7832         * README-maintainer-mode: Update URL for locating blessed config
7833         tools.
7835 2003-05-29  Robert Millan  <rmh@debian.org>
7837         * ltconfig: Import this patch and modify for use with current
7838         version of ltconfig:
7840         2003-05-21  Bruno Haible  <bruno@clisp.org>
7842         * libtool.m4 (AC_LIBTOOL_SYS_DYNAMIC_LINKER): Add support for
7843         GNU/FreeBSD.
7845 2003-05-28  DJ Delorie  <dj@redhat.com>
7847         * Makefile.tpl: Make maybe-check-gcc .PHONY.
7848         * Makefile.in: Regenerate.
7850 2003-05-28  Jeff Johnston  <jjohnstn@redhat.com>
7852         * COPYING.NEWLIB: Add license info for newlib/libc/sys/linux/stdlib.
7854 2003-05-21  DJ Delorie  <dj@redhat.com>
7856         * Makefile.tpl (configure-target-libiberty): Depend only on gcc, not
7857         newlib or libgloss.
7858         * Makefile.in: Regenerate.
7860 2003-05-21  DJ Delorie  <dj@redhat.com>
7862         * Makefile.tpl: Add missing empty maybe-check-gcc target.
7863         * Makefile.in: Regenerate.
7865 2003-05-20  Maciej W. Rozycki  <macro@ds2.pg.gda.pl>
7867         * configure.in: Use curly braces in the definition of tooldir.
7868         * configure: Regenerate.
7870 2003-05-19  Nathanael Nerode  <neroden@gcc.gnu.org>
7872         * configure.in: Switch more things to use maybe dependencies.
7873         * Makefile.tpl: Switch more things to use maybe dependencies.
7874         Factor out common code from autogen IF statements.
7875         * configure: Regenerate.
7876         * Makefile.in: Regenerate.
7878 2003-05-14  Kelley Cook  <kelleycook@wideopenwest.com>
7880         * configure.in: Accept i[3456789]86 for machine type.
7881         * configure: Regenerate.
7883 2003-05-18  Nathanael Nerode  <neroden@gcc.gnu.org>
7885         * configure.in: Switch more things to use maybe dependencies.
7886         Rearrange a little.  Use GCC_TOPLEV_SUBDIRS.
7887         * configure: Regenerate.
7888         * Makefile.tpl: Switch more things to use maybe dependencies.
7889         * Makefile.in: Regenerate.
7891 2003-05-16  Andreas Schwab  <schwab@suse.de>
7893         * Makefile.tpl (install-opcodes): Define.
7894         * Makefile.in: Rebuild.
7896 2003-05-13  Andreas Jaeger  <aj@suse.de>
7898         * config.guess: Update to 2003-05-09 version.
7899         * config.sub: Update to 2003-05-09 version.
7901 2003-05-13  Michael Eager <eager@mvista.com>
7903         * configure.in: Correct sed script so that options in quotes are not
7904         deleted.
7905         * configure: Rebuild.
7907 2003-05-12  Corinna Vinschen  <corinna@vinschen.de>
7909         * configure.in (FLAGS_FOR_TARGET): Remove $$s/newlib/libc/sys/cygwin
7910         and $$s/newlib/libc/sys/cygwin32 include paths.
7911         * configure: Ditto.
7913 2003-05-05  H.J. Lu <hjl@gnu.org>
7915         * config-ml.in: Restored from gcc repository.
7917 2003-05-02  Chris Demetriou  <cgd@broadcom.com>
7919         * Makefile.tpl: Require "makeinfo" from texinfo 4.2 or later.
7920         * Makefile.in: Regenerate.
7922 2003-04-27  Daniel Jacobowitz  <drow@mvista.com>
7924         * src-release (DEVO_SUPPORT): Add src-release, Makefile.tpl,
7925         and Makefile.def.
7927 2003-04-27  Daniel Jacobowitz  <drow@mvista.com>
7929         * Makefile.tpl: Clean $(BUILD_SUBDIR).
7930         * Makefile.in: Regenerated.
7932 2003-04-18  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
7934         * Makefile.tpl (MAKEINFOFLAGS): Default to --split-size=5000000.
7935         * Makefile.in: Regenerate.
7937 2003-04-18  Jakub Jelinek  <jakub@redhat.com>
7939         * configure.in (powerpc64*-*-linux*): Remove.
7940         * configure: Rebuilt.
7942 2003-04-17  Phil Edwards  <pme@gcc.gnu.org>
7944         * Makefile.tpl (GCC_STRAP_TARGETS):  New variable containing all the
7945         previous bootstrap targets, plus bubblestrap, quickstrap, cleanstrap,
7946         and restrap.
7947         * Makefile.in:  Regenerate.
7949 2003-04-16  Richard Earnshaw  <rearnsha@arm.com>
7951         * configure.in (arm-*-netbsdelf*): Enable building java libraries.
7952         * configure: Regenerated.
7954 2003-04-11  Alexandre Oliva  <aoliva@redhat.com>
7956         * libtool.m4 (lt_cv_deplibs_check_method): Use pass_all on mips*.
7957         * */configure: Rebuilt.
7959 2003-03-14  Nathanael Nerode  <neroden@gcc.gnu.org>
7961         * Makefile.tpl: Move .NOEXPORT, MAKEOVERRIDES back down.
7962         * Makefile.in: Regenerate.
7964 2003-03-14  Michael Chastain  <mec@shout.net>
7966         * Makefile.in: Regenerate with correct Makefile.def.
7968 2003-03-12  Nathanael Nerode  <neroden@gcc.gnu.org>
7970         * Makefile.tpl: Move .NOEXPORT, MAKEOVERRIDES up.  Delete unused
7971         Make macro.
7972         * Makefile.in: Regenerate.
7973         * configure.in: Clean up gxx_include_dir logic.
7974         * configure: Regenerate.
7976 2003-03-09  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>
7978         * configure.in (gxx_include_dir): Fix typo.
7979         * configure: Regenerated.
7981 2003-03-06  Andrew Cagney  <cagney@redhat.com>
7983         * texinfo/texinfo.tex: Import version 2003-02-03.16.
7985 2003-03-04  Daniel Jacobowitz  <drow@mvista.com>
7987         * configure.in: Include $(build_tooldir)/sys-include in
7988         FLAGS_FOR_TARGET.
7989         * configure: Regenerated.
7991 2003-03-04  Nathanael Nerode  <neroden@gcc.gnu.org>
7993         * Makefile.tpl: Reindent.
7994         * Makefile.in: Regenerate.
7995         * configure.in: Reindent.  Don't set unused variables.
7996         * configure: Regenerate.
7998         * Makefile.tpl: Always pass down RANLIB.
7999         * Makefile.in: Regenerate.
8001         * Makefile.tpl: Don't set unused enable_shared, enable_threads macros.
8002         * Makefile.in: Regenerate.
8003         * configure.in: Remove unused logic relating to --enable-shared
8004         and --enable-threads.  Remove bogus comments.  Remove redundant
8005         noconfigdirs.
8006         * configure: Regenerate.
8008         * configure.in: Replace ${libstdcxx_version} by its value.
8009         Remove reference to mh-dgux.
8010         * configure: Regenerate.
8012 2003-02-28  Nathanael Nerode  <neroden@gcc.gnu.org>
8014         * Makefile.tpl: Rearrange.
8015         * Makefile.in: Regenerate.
8017 2003-02-25  Nick Clifton  <nickc@redhat.com>
8019         * configure: Remove site-file supprot - it is obsolete.
8021 2003-02-24  Uwe Stieber <uwe@wwws.de>
8023         * configure.in: Add support for kaOS as cross build target system.
8024         * configure: Regenerated.
8026 2003-02-20  Sean McNeil  <sean@blue.mcneil.com>
8028         * Makefile.tpl: Add definition of CPPFLAGS to pass into
8029         configure-target-* as some target builds may require additional
8030         flags for preprocessor tests.
8031         * Makefile.in: Regenerated.
8033 2003-02-19  Alexandre Oliva  <aoliva@redhat.com>
8035         * libtool.m4 (LD): Append -melf* option to LD on IRIX with GNU ld.
8036         * ltconfig: Handle it.
8037         * ltcf-cxx.sh: Use with_gnu_ld passed as a shell variable instead of
8038         auto-detecting it.
8040 2003-02-19  Alexandre Oliva  <aoliva@redhat.com>
8042         * ltcf-cxx.sh: Replace $linker_flags with $compiler_flags wherever
8043         it is used as argument to $CC.
8044         * ltcf-gcj.sh: Likewise.
8046 2003-02-19  Alexandre Oliva  <aoliva@redhat.com>
8048         * configure.in: Introduce --enable-maintainer-mode.
8049         * configure: Rebuilt.
8050         * Makefile.tpl (Makefile.in, configure): Enable dependencies only
8051         for maintainer mode.
8052         * Makefile.in: Rebuilt.
8054 2003-02-19  Andrew Cagney <ac131313@redhat.com>
8056         * configure: Regenerate using autoconf 2.13.
8058 2003-02-19  Alan Modra  <amodra@bigpond.net.au>
8060         * config.guess: Import latest version.
8061         * config.sub: Import latest version.
8063 2003-02-18  Jason Merrill  <jason@redhat.com>
8065         * Makefile.tpl (check-c++): Allow parallelism.
8067 2003-02-17  Andrew Cagney  <ac131313@redhat.com>
8069         * configure: Regenerate using autoconf 000227.
8071 2003-02-15  Geoffrey Keating  <geoffk@apple.com>
8073         * configure.in (*-*-darwin*): Rename from powerpc*-*-darwin*,
8074         don't configure target-libobjc.
8075         * configure: Regenerate.
8077 2003-02-14  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
8079         * Makefile.tpl (RANLIB): Define.
8080         * Makefile.in: Regenerate.
8082 2003-02-06  Keith R Seitz  <keiths@redhat.com>
8084         * Makefile.def: Remove "snavigator", "grep", and "db" modules.
8085         * Makefile.tpl: Remove "all-snavigator" and "all-grep".
8086         * Makefile.in: Regenerated.
8087         * configure.in: Remove all traces of snavigator, db, and grep.
8088         * configure: Regenerated.
8090 2003-01-31  Frank Ch. Eigler  <fche@redhat.com>
8092         * Makefile.tpl (all-sid): Add libiberty/bfd/opcodes dependencies.
8093         * Makefile.in: Regenerated.
8095 2003-01-30  Alexandre Oliva  <aoliva@redhat.com>
8097         * config.if: Copy from GCC.
8099 2003-01-27  Phil Edwards  <pme@gcc.gnu.org>
8101         * configure.in:  Revert 24Jan change.
8102         * configure:  Regenerate.
8104 2003-01-23  Nathanael Nerode  <neroden@gcc.gnu.org>
8106         * configure.in: Revert previous change.
8107         * configure: Regenerate.
8109 2003-01-23  Nathanael Nerode  <neroden@gcc.gnu.org>
8111         * configure.in: Make rda native-only.
8112         * configure: Regenerate.
8114 2003-01-19  Nathanael Nerode  <neroden@gcc.gnu.org>
8116         * configure.in: Add missing \.
8117         * configure: Rebuilt.
8119 2003-01-17  Jakub Jelinek  <jakub@redhat.com>
8121         * configure.in (baseargs): Avoid using \| in sed regular
8122         expressions.
8123         * configure: Rebuilt.
8125 2003-01-16  Jakub Jelinek  <jakub@redhat.com>
8127         * configure.in (baseargs): Remove all supported forms of
8128         --cache-file, --srcdir, --host, --build and --target options
8129         from argument lists.
8130         * configure: Rebuilt.
8132 2003-01-15  Alexandre Oliva  <aoliva@redhat.com>
8134         * configure.in (noconfigdirs): Don't skip gas on IRIX 6.
8135         * configure: Rebuilt.
8137 2003-01-09  Nathanael Nerode  <neroden@gcc.gnu.org>
8139         * configure.in: Substitute TOPLEVEL_CONFIGURE_ARGUMENTS.
8140         * Makefile.tpl: Pass TOPLEVEL_CONFIGURE_ARGUMENTS to gcc.
8141         * Makefile.in: Regenerate.
8142         * configure: Regenerate.
8144 2003-01-09  Christian Cornelssen  <ccorn@cs.tu-berlin.de>
8146         * Makefile.tpl (BASE_FLAGS_TO_PASS): Also pass DESTDIR.
8147         (install-info, dir.info): Prepend $(DESTDIR) to $(infodir).
8148         * Makefile.in: Regenerate.
8150 2003-01-09  Alexandre Oliva  <aoliva@redhat.com>
8152         * configure.in: Remove Makefile in build, host and target modules
8153         unless configure was run with --no-recursion.
8154         * configure: Rebuilt.
8156 2003-01-08  Chris Demetriou  <cgd@broadcom.com>
8158         * config.guess: Update to 2003-01-03 version.
8159         * config.sub: Update to 2003-01-03 version.
8161 2003-01-07  Christopher Faylor  <cgf@redhat.com>
8163         * configure: Regenerate with proper autoconf 2.13.
8165 2003-01-07  Christopher Faylor  <cgf@redhat.com>
8167         * configure.in: Add AC_PREREQ for consistency.
8168         * configure: Regenerate.
8170 2003-01-06  Andrew Cagney  <ac131313@redhat.com>
8172         * configure.in (GDB_TK): Add tcl directories conditional on
8173         gdb/gdbtk directory being present.
8174         * configure: Regenerate.
8176 2003-01-04 John David Anglin  <dave.anglin@nrc.ca>
8178         * configure.in (LD): Improve test for gcc.  Try to set LD to the ld used
8179         by gcc if LD is not defined and we are not doing a Canadian Cross.
8180         * configure: Rebuilt.
8182 2003-01-01  Daniel Jacobowitz  <drow@mvista.com>
8184         * src-release (ETC_SUPPORT): Add fdl.texi and texi2pod.pl.
8186 2002-12-31  Tom Tromey  <tromey@redhat.com>
8188         * Makefile.in: Rebuilt.
8189         * Makefile.def (target_modules) [libffi]: Allow installation.
8191 2002-12-31  Andreas Schwab  <schwab@suse.de>
8193         * configure.in: Fix use of $program_transform_name.
8194         * configure: Regenerated.
8196 2002-12-30  Daniel Jacobowitz  <drow@mvista.com>
8198         * configure.in (baseargs): Don't remove first configure argument.
8199         * configure: Regenerated.
8201 2002-12-29  Alexandre Oliva  <aoliva@redhat.com>
8203         * Makefile.tpl (local-distclean): Don't remove...
8204         (multilib.ts): ... this.  Moved into...
8205         (multilib.out): ... this.  Don't use sub-make.
8206         ($(BUILD_SUBDIR)/[+module+]/Makefile, [+module+]/Makefile,
8207         $(TARGET_SUBDIR)/[+module+]/Makefile, gcc/Makefile): Moved into...
8208         (configure-build-[+module+], configure-[+module+],
8209         configure-target-[+module+], configure-gcc): ... these.  Test
8210         for Makefile existence.  Drop config.status from dependencies.
8211         * Makefile.in: Rebuilt.
8212         * configure.in: Move gcc-version-trigger to the end of
8213         ac_configure_args.  Add comments to maybedep.tmp and
8214         serdep.tmp.  Introduce --disable-serial-configure.  Remove
8215         nonopt from baseargs, matching and removing corresponding
8216         whitespace while at it.
8217         * configure: Rebuilt.
8219 2002-12-28  Alexandre Oliva  <aoliva@redhat.com>
8221         * configure.in (host_configargs): Replace reference to
8222         no-longer-defined buildopts with --build=${build_alias}.
8223         * configure: Rebuilt.
8225 2002-12-28  Alexandre Oliva  <aoliva@redhat.com>
8227         * Makefile.tpl ($(NOTPARALLEL)): Move to the end.  Bring uses of
8228         program_transform_name to standard idiom.
8229         (AUTOGEN, AUTOCONF): Define.
8230         (Makefile.in): Use $(AUTOGEN).
8231         (Makefile): Depend on config.status, and use autoconf-style rule to
8232         build it.  Move original commands to...
8233         (config.status): ... this new target.
8234         (configure): Add $(srcdir).  Depend on config/acx.m4.  Use
8235         $(AUTOCONF).
8236         * Makefile.in: Rebuilt.
8238 2002-12-28  Nathanael Nerode  <neroden@gcc.gnu.org>
8240         * Makefile.tpl: Fix dramatic bustage due to change in
8241         program_transform_name.
8242         * Makefile.in: Regenerate.
8244         * configure.in: Remove unnecessary PATH setting.
8245         * configure: Regnerate.
8247         * configure.in: Don't default to unprefixed tools unless
8248         the native tools will work.
8249         * configure: Regenerate.
8251         * configure.in: Convert to autoconf script.  Blow away lots
8252         of now-redundant Makefile fragments.
8253         * configure: Generate using Autoconf.
8254         * Makefile.tpl: Rewrite to reflect autoconfiscation.
8255         * Makefile.in: Regenerate.
8257 2002-12-27  Nathanael Nerode  <neroden@gcc.gnu.org>
8259         * configure: Remove unneeded 'export's.  Make CC_FOR_TARGET,
8260         CXX_FOR_TARGET, GCJ_FOR_TARGET substituted in configure.in only.
8262         * ChangeLog: Move a couple of entries from here to winsup/cygwin,
8263         where they belong.
8265 2002-12-24  Andreas Schwab  <schwab@suse.de>
8267         * Makefile.tpl (multilib.out): Fix missing space.
8268         * Makefile.in: Regenerate.
8270 2002-12-23  Nathanael Nerode  <neroden@gcc.gnu.org>
8272         * Makefile.tpl: Use shared multilib.out.  Use move-if-change for it.
8273         Convert (cd foo; make) to (cd foo && make).  Clean up multilib.out.
8274         * Makefile.in: Regenerate.
8275         * configure.in: Remove unnecessary leftovers.
8277 2002-12-21  Geoffrey Keating  <geoffk@apple.com>
8279         * configure.in (extra_ranlibflags_for_target): New variable.
8280         (*-*-darwin): Add -c to ranlib commands.
8281         * configure (tooldir): Handle extra_ranlibflags_for_target.
8283 2002-12-20  Jeff Johnston  <jjohnstn@redhat.com>
8285         * COPYING.NEWLIB: Updated.
8286         * COPYING.LIBGLOSS: Ditto.
8288 2002-12-19  Nathanael Nerode  <neroden@gcc.gnu.org>
8290         * Makefile.tpl: Revert HJL's change.
8291         * Makefile.in: Regenerated.
8292         * configure.in: Put build_prefix before $(BUILD_SUBDIR) here, and
8293         always.
8295 2002-12-19  Andreas Schwab  <schwab@suse.de>
8297         * Makefile.tpl, configure.in: Substitute libstdcxx_incdir.
8298         * Makefile.in: Regenerate.
8300 2002-12-18  H.J. Lu <hjl@gnu.org>
8302         * Makefile.tpl: Add @build_prefix@ before $(BUILD_SUBDIR).
8303         * Makefile.in: Regenerated.
8305         * configure.in (build_prefix): New. Substitute.
8307 2002-12-18  Nathanael Nerode  <neroden@gcc.gnu.org>
8309         * Makefile.tpl: Don't let real targets depend on phony targets.
8310         * Makefile.in: Regenerate.
8312         * Makefile.tpl (do-info): Depend on maybe-all-texinfo, not all-texinfo.
8313         * Makefile.in: Regenerate.
8315 2002-12-16  Jason Merrill  <jason@redhat.com>
8317         * Makefile.tpl (all-gcc): Use 'make quickstrap' if there was a
8318         previous 'make bootstrap'.
8319         * Makefile.in: Regenerate.
8321 2002-12-17  Hans-Peter Nilsson  <hp@bitrange.com>
8323         * configure.in (noconfigdirs) [mmix-*-*]: Disable libgloss and gdb.
8325 2002-12-13  Jason Merrill  <jason@redhat.com>
8327         * Makefile.tpl (check-gcc-c++): Renamed from check-c++.  Don't run
8328         library tests.
8329         (check-c++): Just depend on it and check-target-libstdc++-v3.
8330         * Makefile.in: Regenerate.
8332 2002-12-13  Nathanael Nerode  <neroden@gcc.gnu.org>
8334         * configure.in, Makefile.tpl, Makefile.def: Remove tclX.
8335         * Makefile.in: Regenerate.
8337 2002-12-12  Jeff Johnston  <jjohnstn@redhat.com>
8339         * COPYING.NEWLIB: Update list of alternate Regent of California
8340         licenses and discuss official revoking of advertising clause.
8341         * COPYING.LIBGLOSS: Ditto.
8343 2002-12-12  Alexandre Oliva  <aoliva@redhat.com>
8345         * Makefile.tpl (configure-target-rda): Depend on $(ALL_GCC_C).
8346         * Makefile.in: Rebuilt.
8348 2002-12-10  Nathanael Nerode  <neroden@gcc.gnu.org>
8350         * configure: Fix bug put in by gremlins.
8352         * Makefile.tpl: Substitute more autoconfily.
8353         * configure: Substitute more autoconfily.
8354         * Makefile.in: Regenerate.
8356 2002-12-08  Andrew Cagney  <ac131313@redhat.com>
8358         * Makefile.tpl (all-sim): Depend on maybe-configure-gdb.
8359         * Makefile.in (all-sim): Ditto.
8361 2002-12-06  DJ Delorie  <dj@redhat.com>
8363         * Makefile.tpl: Change configure dependencies to not have real
8364         targets depend on phony targets.
8366 2002-12-05  Nathanael Nerode  <neroden@gcc.gnu.org>
8368         * configure.in: Revert unintentional change.
8370         * src-release: Configure host subdirs.
8372         * Makefile.tpl: Change dependency for */multilib.out so that
8373         it works when gcc isn't in the tree.
8375         * configure.in: Substitute more.
8376         * configure: Run subconfigures from the Makefile.
8377         * Makefile.tpl: Run subconfigures from the Makefile; add a few
8378         convenience targets.  Make sure gcc isn't rebuilt after bootstrap.
8380 2002-12-03  Nathanael Nerode  <neroden@gcc.gnu.org>
8382         * Makefile.tpl: Add targets for configuring host subdirs in Makefile,
8383         and corresponding dependencies.
8384         * Makefile.in: Regenerate.
8386         * configure.in (host_tools): Order binutils, gas and ld for
8387         convenience in running the testsuites.
8389         * Makefile.tpl: Introduce rules to serialize subconfigure runs.
8390         * Makefile.in: Regenerate.
8391         * configure.in: Introduce rules to serialize subconfigure runs.
8393         * configure.in: Introduce BASE_CC_FOR_TARGET.
8394         * Makefile.tpl: Reorganize and comment.  Introduce HOST_CONFIGARGS.
8395         Realize configure-build-* targets.  Realize configure-target-* targets.
8396         * Makefile.in: Regenerate.
8398 2002-12-02  Nathanael Nerode  <neroden@gcc.gnu.org>
8400         * configure: Move gcc_version_trigger stuff from here...
8401         * configure.in: ...to here.
8403         * configure.in: Separate subconfigure options added by this file from
8404         options given by the user.  Add machinery to put args for host
8405         subconfigures into the Makefile.
8407         * Makefile.tpl: Remove 'vault' targets.
8408         * Makefile.tpl: Reorder and comment dependencies.
8409         * Makefile.in: Regenerate.
8411 2002-11-28  Geoffrey Keating  <geoffk@apple.com>
8413         * configure.in: Move host-specific darwin noconfigdirs into
8414         the host-specific section.
8416 2002-12-02  Nathanael Nerode  <neroden@gcc.gnu.org>
8418         * Makefile.tpl: Restore bkorb's style patch, accidentally lost
8419         during replay.
8420         * Makefile.in: Regenerate.
8422         (finishing slow-motion replay)
8423         * configure: Remove skip-this-dir support.
8424         * Makefile.tpl: Remove skip-this-dir support.
8426         * Makefile.tpl: Remove leftover support for non-autoconfiscated
8427         subdirectories.
8428         * Makefile.in: Regenerate.
8430         * Makefile.tpl: Strip out useless setting of 'dir'.
8431         * Makefile.in: Regenerate.
8433 2002-12-02  Nathanael Nerode  <neroden@gcc.gnu.org>
8435         (finishing slow-motion replay)
8436         * configure.in: Fix deeply stupid bug.
8438         * configure.in: Introduce RAW_CXX_FOR_TARGET and simplify embedded
8439         shell code in CXX_FOR_TARGET
8440         * Makefile.def: Introduce raw_cxx.
8441         * Makefile.tpl: Use raw_cxx to select between CXX_FOR_TARGET and
8442         RAW_CXX_FOR_TARGET.
8443         * Makefile.in: Regenerate.
8445 2002-12-02  Nathanael Nerode  <neroden@gcc.gnu.org>
8447         (finishing slow-motion replay)
8448         * Makefile.tpl: Remove unnecessary ifs.
8449         * Makefile.in: Regenerate.
8451         * Makefile.tpl: Implement soft dependency machinery.  Maybe-ize
8452         dependencies.  Maybe-ize build-libiberty.  Create dummy install
8453         targets for 'no_install' modules.
8454         * configure: Move GDB_TK substitution to configure.in.  Move
8455         build_modules stuff to configure.in.
8456         * configure.in: Implement soft dependency machinery.  Maybe-ize
8457         GDB_TK, rearrange slightly.  Move build_modules stuff from configure.
8458         * Makefile.in: Regenerate.
8460 2002-12-01  Nathanael Nerode  <neroden@gcc.gnu.org>
8462         (continuing slow-motion replay)
8463         * Makefile.tpl: Make all-target, install-target behave similarly
8464         to all, install (only hitting configured targets).  Eliminate
8465         unused macro defintions.
8467         * Makefile.tpl: Add all-gcc: all-build-libiberty dependency when
8468         build != host.
8470         * Makefile.tpl: Add all-gcc: all-libiberty dependency.
8472         * ltcf-c.sh, ltcf-gcj.sh, Makefile.tpl: Correct BUILD/HOST confusion.
8474         * configure.in: Produce lists of subdir targets we're actually
8475         configuring.  Remove references to "dosrel".
8476         * Makefile.tpl: Let configure set which subdir targets are hit.
8477         Remove install-cross; clean up install; remove ALL.  Remove
8478         references to "dosrel".  Remove "EXTRA_TARGET_HOST" hackery.
8479         Autogenerate host module targets.  Remove empty dependency lines
8480         and redundant dependency; rearrange slightly.
8481         * Makefile.def: Add host-side libtermcap, utils.
8483         * Makefile.in: Regenerate.
8485 2002-12-01  Nathanael Nerode  <neroden@gcc.gnu.org>
8487         (Continuing slow-motion replay)
8488         * Makefile.def: Add list of recursive targets to autogenerate.
8489         Add build_modules.
8490         * Makefile.tpl: Autogenerate do-* targets.  Autogenerate *-target-*
8491         targets.  Autogenerate *-build-* targets.
8492         * Makefile.in: Regenerate.
8494 2002-11-30  Nathanael Nerode  <neroden@gcc.gnu.org>
8496         (Continuing slow-motion replay)
8497         * configure: More autoconf-style substitutions.
8498         * Makefile.tpl: More autoconf-style substitutions.
8499         * Makefile.in: Regenerate.
8501 2002-11-30  Nathanael Nerode  <neroden@gcc.gnu.org>
8503         (Continuing slow-motion replay)
8504         * configure: Substitute more variables in a more autoconf-friendly
8505         way.  Simplify slightly.
8506         * Makefile.tpl: Make more variables substitutable in an
8507         autoconf-friendly way.
8508         * Makefile.in: Regenerate.
8510 2002-11-29  Nathanael Nerode  <neroden@gcc.gnu.org>
8512         (Continuing slow-motion replay)
8513         * configure.in (v810*): Remove special setting of tools.
8515         * configure: Add support for extra required flags for ar or nm.
8516         * configure.in (aix4.3+): Use above support for target-specific
8517         issues, rather than using config/mt-aix43.
8519 2002-11-29  Nathanael Nerode  <neroden@gcc.gnu.org>
8521         (Starting slow-motion replay merge from gcc 3.4 b-i-b branch)
8522         * configure: Remove 'removing', which doesn't work.  Replace $subdir
8523         with . everywhere.  Replace $subdirs with ''.  Replace $makesrcdir
8524         with $srcdir.  Reformat indentation.  Substitute some variables
8525         formerly hard-coded in the Makefile for build=host.
8526         * Makefile.tpl: Autogenerate more; make more autoconf-friendly.
8527         * Makefile.def: Autogenerate more.
8528         * Makefile.in: Regenerate.
8530 2002-11-13  Bruce Korb  <bkorb@gnu.org>
8532         * Makefile.tpl: syntactic cleanup
8534 2002-11-04  Kevin Buettner  <kevinb@redhat.com>
8536         * Makefile.def (host_modules): Add rda.
8537         * Makefile.in: Regenerate.
8538         * configure.in (target_tool): Add target-rda to list.
8540 2002-10-25  Phil Edwards  <pme@gcc.gnu.org>
8542         * Makefile.tpl (bootstrap):  Add bubblestrap, quickstrap, cleanstrap,
8543         and restrap targets to this rule.
8544         * Makefile.in:  Regenerate.
8546 2002-10-24  Hans-Peter Nilsson  <hp@bitrange.com>
8548         * configure.in (i[3456]86-*-linux*): Add check to disable
8549         ${libgcj} for glibc1.
8551 2002-10-07  Svein E. Seldal  <Svein.Seldal@solidas.com>
8553         * configure.in: Add tic4x target.
8555 2002-10-03  Nathanael Nerode  <neroden@gcc.gnu.org>
8557         * Makefile.tpl: Make SET_LIB_PATH substitution more autoconfy.
8558         * Makefile.tpl: Make RPATH_ENVVAR substitution more autoconfy.
8559         * configure.in: Make SET_LIB_PATH substitution more autoconfy.
8560         * configure.in: Make RPATH_ENVVAR substitution more autoconfy.
8561         * Makefile.in: Regenerate.
8563 2002-10-02  Nathanael Nerode  <neroden@gcc.gnu.org>
8565         * Makefile.tpl: Eliminate reference to all-gui, all-libproc.
8566         * Makefile.in: Regenerate.
8568         * Makefile.def: Remove order dependency comments.
8569         * Makefile.tpl: Add explicit install-install dependencies.
8570         * Makefile.in: Regenerate.
8572         * Makefile.tpl: Remove material now in src-release.  (Finally!)
8573         * Makefile.in: Regenerate.
8575         * configure: Restore my original patch by syncing with gcc version.
8577         * Bring following over from gcc:
8579 2002-09-30  Ulrich Weigand  <uweigand@de.ibm.com>
8581         * configure.in (s390*-*-linux*): Enable libgcj.
8583 2002-10-02  Nathanael Nerode  <neroden@gcc.gnu.org>
8585         * Makefile.in: Regenerate.  This really ought to fix things. :sigh:
8587 2002-10-02  Alan Modra  <amodra@bigpond.net.au>
8589         * configure: Move stray lines back to where they belong.
8591 2002-10-01  Nathanael Nerode  <neroden@gcc.gnu.org>
8593         * Makefile.tpl: Insert configure-target target, for src-release.
8595         * configure: Finish reverting change which Andrew Cagney started
8596         reverting.  Should fix bustage.
8598         * src-release (BINUTILS_SUPPORT_DIRS): Add cpu directory.
8599         * src-release: New file.  Contains material for making net
8600         releases for gdb, binutils, et al., formerly in Makefile.in.
8602 2002-09-30  Nick Clifton  <nickc@redhat.com>
8604         * cpu: New top level directory.  Intended to hold input files for
8605         CGEN which have FSF copyright assignment.
8606         * Makefile.in (BINUTILS_SUPPORT_DIRS): Add cpu directory.
8608 2002-09-29  Andrew Cagney  <ac131313@redhat.com>
8610         Revert below (note that src does not contain Makefile.tpl):
8611         * Makefile.tpl: Make subsituted variables more autoconfy.
8612         * Makefile.in: Regenerate.
8614 2002-09-29  Nathanael Nerode  <neroden@gcc.gnu.org>
8616         * configure: Revert accidentally applied changes.
8618         * Makefile.tpl: Make more autoconf-friendly.
8619         * Makefile.in: Regenerate.
8620         * configure: Make substitution more autoconf-like.
8622 2002-09-28  Richard Earnshaw  <rearnsha@arm.com>
8624         * configure.in (arm-*-coff, strongarm-*-coff, xscale-*-coff): Use a
8625         single entry to handle all these.
8626         (arm-*-elf, strongarm-*-elf, xscale-*-elf): Likewise.  Also enable
8627         libjava on arm-*-elf.
8629 2002-09-27  Geoffrey Keating  <geoffk@apple.com>
8631         * configure.in (powerpc-*-darwin*): Don't configure BFD, TK, or the
8632         things that depend on them.
8634 2002-09-25  Nathanael Nerode  <neroden@gcc.gnu.org>
8636         * Makefile.tpl: Make subsituted variables more autoconfy.
8637         * Makefile.in: Regenerate.
8638         * configure: Make seds more autoconfy.
8640 2002-09-25  Nathanael Nerode  <neroden@gcc.gnu.org>
8642         * Makefile.tpl: Rewrite substituted lines to look autoconfy.
8643         * Makefile.in: Regenerate.
8644         * configure.in: Rewrite sed statements to look autoconfy.
8646         * Makefile.tpl: Autogenerate *-target-* lists, dependencies of
8647         all-target-foo on configure-target-foo.
8648         * Makefile.def: Ditto.
8649         * Makefile.in: Rebuild.
8651 2002-09-22  Nathanael Nerode  <neroden@gcc.gnu.org>
8653         * Makefile.def: New file.
8654         * Makefile.tpl: New file.
8655         * Makefile.in: Generate from Makefile.tpl with 'autogen Makefile.def'.
8657         * configure.in: Minor rearrangement.  Simplify tests.
8659 2002-09-23  Jason Thorpe  <thorpej@wasabisystems.com>
8661         * configure.in (with_headers): Skip copy if value is "yes".
8662         (with_libs): Likewise.
8664 2002-09-20  Nathanael Nerode  <neroden@gcc.gnu.org>
8666         * configure.in (*-*-netbsd*): Use noconfigdirs, not skipdirs.
8667         * configure.in (sh*-*-pe*): Ditto.
8668         * configure.in (mips*-*-pe*): Ditto.
8669         * configure.in (*arm-wince-pe): Ditto.
8671         * configure.in: Rearrange.
8673 2002-09-12  Nick Clifton  <nickc@redhat.com>
8675         * Import these changes from the config master repository:
8677         2002-09-05  Svein E. Seldal  <Svein.Seldal@solidas.com>
8679                 * config.sub: Add tic4x target.
8681         2002-09-03  Ben Elliston  <bje@redhat.com>
8683                 * config.guess: Detect NSR-D machines for nsr-tandem-nsk.
8684                 Reported by <Duncan_Stodart@insession.com>.
8686 2002-09-10  Jeff Johnston  <jjohnstn@redhat.com>
8688         * COPYING.NEWLIB: More updates.
8690 2002-09-09  Jeff Johnston  <jjohnstn@redhat.com>
8692         * COPYING.NEWLIB: Update.
8694 2002-08-23  Andrew Cagney  <ac131313@redhat.com>
8696         * texinfo/texinfo.tex: Import version 2002-06-04.06.
8698         * config.guess: Import version 2002-08-23.
8699         * config.sub: Import version 2002-08-22.
8701 2002-08-20  Alexandre Oliva  <aoliva@redhat.com>
8703         * Makefile.in (GCC_FOR_TARGET): Prepend STAGE_CC_WRAPPER.
8704         * configure.in (CC_FOR_TARGET, GCJ_FOR_TARGET, CXX_FOR_TARGET,
8705         CXX_FOR_TARGET_FOR_RECURSIVE_MAKE): Likewise.
8707 2002-08-06  Federico G. Schwindt <fgsch@olimpo.com.br>
8709         * configure.in (hppa*-*-openbsd*): Treat like hppa*-*-*elf*.
8711 2002-08-04  H.J. Lu  (hjl@gnu.org)
8713         * configure.in (mips*-*-linux*): Don't skip target-libffi.
8715 2002-07-31  Alan Modra  <amodra@bigpond.net.au>
8717         * configure.in: Move generic linux case to end.  Copy generic
8718         linux noconfigdirs to mips*-*-linux* entry and new
8719         powerpc64*-*-linux* entry.  Add target-libffi for the latter.
8721 2002-07-19  Chris Demetriou  <cgd@broadcom.com>
8723         * MAINTAINERS: Clarify on config.guess and config.sub, and add
8724         one instance of them which was missed to the list to update.
8726 2002-07-16  Chris Demetriou  <cgd@broadcom.com>
8728         * config.guess: Update to 2002-07-09 version.
8729         * config.sub: Update to 2002-07-03 version.
8731 2002-07-11  Nathanael Nerode  <neroden@gcc.gnu.org>
8733         * configure.in: Remove two redundant tests.
8735 2002-07-11  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
8737         * configure.in (mips*-*-irix6*o32): Enable stabs.
8739 2002-07-08  Nathanael Nerode  <neroden@gcc.gnu.org>
8741         * configure.in: Don't build grez.
8742         * Makefile.in: Ditto.
8744         * Makefile.in: Remove references to bsp, cygmon, libstub.
8745         * configure.in: Ditto.
8747         * configure.in: Remove leftover reference to gdbtest.
8749 2002-07-08  Phil Edwards  <pme@gcc.gnu.org>
8751         * configure.in (gxx_include_dir):  Change to match versioned
8752         C++ headers if --enable-version-specific-runtime-libs is used.
8754 2002-07-04  Steve Ellcey  <sje@cup.hp.com>
8756         * ltcf-cxx.sh (hpux*): Modify to support ia64-*-hpux*.
8758 2002-07-03  Nathanael Nerode  <neroden@gcc.gnu.org>
8760         * configure.in: Make --without-x work.
8762 2002-07-03  Nick Clifton  <nickc@cambridge.redhat.com>
8764         * contrib: New directory.  Created to contain a copy of the
8765         texi2pod.pl script so that it is in the same place as the version in
8766         the FSF GCC sources.
8768 2002-07-02  Nathanael Nerode  <neroden@gcc.gnu.org>
8770         * configure.in: Rearrange target Makefile fragment collection.
8772         * Makefile.in: Don't try to build gdbtest, tgas, ispell, inet, or
8773         cvs[src].
8774         * configure.in: Ditto.
8776 2002-07-01  Nathanael Nerode <neroden@gcc.gnu.org>
8778         * Makefile.in: Eliminate 'apache' targets.
8779         * configure.in: Eliminate 'apache' targets.
8781         * configure.in: Eliminate redundant tests.  Reorganize.
8783         * Makefile.in: Eliminate last reference to LIBGCC1_TEST.
8785         * config-ml.in: Eliminate references to Cygnus configure.
8787         * Makefile.in: Eliminate references to building emacs.
8789 2002-07-01  Denis Chertykov  <denisc@overta.ru>
8791         * configure.in: Add support for ip2k.
8793 2002-06-24  Ben Elliston  <bje@redhat.com>
8795         * configure.in (host_tools): Remove cgen.
8797         * Makefile.in (all-cgen): Remove; runs from its source directory.
8798         (check-cgen, install-cgen, clean-cgen): Likewise.
8799         (all-opcodes): No not depend on all-cgen.
8800         (all-sim): Likewise.
8802 2002-06-22  Nathanael Nerode  <neroden@twcny.rr.com>
8804         * configure.in: Fix AIX configury bug.
8806 2002-06-19  Nathanael Nerode  <neroden@twcny.rr.com>
8808         * configure.in: Replace ${topsrcdir} with ${srcdir}.
8810         * configure.in: Move definition of libstdcxx_flags right above
8811         usage, rather than way earlier.
8813         * configure.in: Pull definition of is_cross_compiler earlier.
8815         * configure.in: Rearrange a little.
8817         * configure.in: Remove references to librx.
8818         * Makefile.in: Remove references to librx.
8820 2002-06-19  Nathanael Nerode  <neroden@twcny.rr.com>
8822         * configure.in: Eliminate ${gasdir} variable.
8824 2002-06-18  Dave Brolley  <brolley@redhat.com>
8826         * configure.in: Add support for frv.
8827         * config.sub: Add support for frv.
8829 2002-06-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
8831         * Makefile.in (CFLAGS_FOR_TARGET): Add -O2.
8833 2002-06-08  Jason Thorpe  <thorpej@wasabisystems.com>
8835         * configure.in (vax-*-netbsd*): Re-enable gas.
8837 2002-05-31  Nathanael Nerode  <neroden@twcny.rr.com>
8839         * Makefile.in: Replace HOST_PREFIX, HOST_PREFIX_1 with BUILD_PREFIX,
8840         BUILD_PREFIX_1, to correct nomenclature.
8841         * configure: Likewise.
8843         * Makefile.in: Eliminate version-specific references to tcl8.1, tk8.1.
8844         * configure.in: Eliminate version-specific references to tcl8.1, tk8.1.
8846 2002-05-31  Olaf Hering  <olh@suse.de>
8848         * config-ml.in: Propogate DESTDIR also.
8850 2002-05-29  Jason Thorpe  <thorpej@wasabisystems.com>
8852         * configure.in (vax-*-netbsd*): Don't build gas for this
8853         platform.
8855 2002-05-28  Marek Michalkiewicz  <marekm@amelek.gda.pl>
8857         * configure.in (noconfigdirs): Don't compile libiberty, libstdcxx
8858         and libgcj for AVR.
8860 2002-05-28  Nick Clifton  <nickc@cambridge.redhat.com>
8862         * config.sub: Add DLX target.
8864 2002-05-22  Jason Thorpe  <thorpej@wasabisystems.com>
8866         * config.guess: Update to 2002-05-22 version.
8867         * config.sub: Likewise.
8869 2002-05-16  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
8871         * Makefile.in: Allow for PWDCMD to override hardcoded pwd.
8872         * config-ml.in: Likewise.
8873         * configure: Likewise.
8874         * configure.in: Likewise.
8876 2002-05-13  Nathanael Nerode  <neroden@twcny.rr.com>
8878         * configure.in: Simplify makefile fragment collection.
8880         * configure.in: Remove code to build emacs.
8882         * configure.in : Remove --srcdir argument from targargs and buildargs
8883         (it's always overridden in the Makefile anyway).  Rearrange a bit.
8885         * configure: Move some logic to configure.in.
8886         * configure.in: Move some logic from configure.
8888 2002-05-07  Jeff Johnston  <jjohnstn@redhat.com>
8890         * COPYING.LIBGLOSS: New file.
8892 2002-05-07  Federico G. Schwindt <fgsch@olimpo.com.br>
8894         * Makefile.in: Honour DESTDIR.
8896 2002-05-05  Alexandre Oliva  <aoliva@redhat.com>
8898         * configure.in (noconfigdirs): Don't disable libgcj on
8899         sparc64-*-solaris* and sparcv9-*-solaris*.
8901 2002-05-03  Alexandre Oliva  <aoliva@redhat.com>
8903         * configure.in: Revert 2002-04-18's patch; fixed in libjava.
8905 2002-05-03  Thomas Fitzsimmons  <fitzsim@redhat.com>
8907         * configure.in (FLAGS_FOR_TARGET): Do not add
8908         -B$$r/$(TARGET_SUBDIR)/newlib/ when compiling newlib natively
8909         on i[3456]86-*-linux*.
8911 2002-05-01  Thomas Fitzsimmons  <fitzsim@redhat.com>
8913         * configure.in (noconfigdirs): Replace [ ] with test.
8915         * configure.in (noconfigdirs): Do not add target-newlib if
8916         target == i[3456]86-*-linux*, and host == target.
8918 2002-04-29  Mark Mitchell  <mark@codesourcery.com>
8920         * config.guess: Updated to 2002-04-26's version.
8921         * config.sub: Updated to 2002-04-26's version.
8923 2002-04-29  Nathanael Nerode  <neroden@doctormoo.dyndns.org>
8925         * configure.in: delete reference to absent file
8927         * configure.in: replace '[' with 'test'
8929         * configure.in: Eliminate references to gash.
8930         * Makefile.in: Eliminate references to gash.
8932         * configure.in: remove useless references to 'pic' makefile fragments.
8934         * configure.in: (*-*-windows*) Finish removing.
8936         * configure.in: Eliminate redundant test for libgui.
8938 2002-04-26  Joel Sherrill  <joel@OARcorp.com>
8940         * configure.in (h8300*-*-rtems*): Disable libf2c and libgcj.
8941         (sparc-*-elf*, sparc64-*-elf*): Disable libgcj.
8943 2002-04-19  Nathanael Nerode  <neroden@twcny.rr.com>
8945         * configure.in: remove references to dead files
8947 2002-04-18  Tom Tromey  <tromey@redhat.com>
8949         * configure.in: Disallow configuring libgcj when it is already
8950         installed and we're using Solaris 2.8 linker.  Do enable libgcj on
8951         Solaris 2.8 by default.  For PR libgcj/6158.
8953 2002-04-17  Nathanael Nerode  <neroden@twcny.rr.com>
8955         * configure.in:  Move default CC setting out of config/mh-* fragments
8956         directly into here.
8958 2002-04-17  Nathanael Nerode  <neroden@twcny.rr.com>
8960         * configure.in: don't even try to configure or make a subdirectory
8961         if there's no configure script for it.
8963 2002-04-15  Mark Mitchell  <mark@codesourcery.com>
8965         * MAINTAINERS: Remove chill maintainers.
8966         * Makefile.in (CHILLFLAGS): Remove.
8967         (CHILL_LIB): Remove.
8968         (TARGET_CONFIGDIRS): Remove libchill.
8969         (CHILL_FOR_TARGET): Remove.
8970         (BASE_FLAGS_TO_PASS): Don't pass CHILLFLAGS, CHILL_FOR_TARGET, or
8971         CHILL_LIB.
8972         (CONFIGURE_TARGET_MODULES): Remove configure-target-libchill.
8973         (CHECK_TARGET_MODULES): Likewise.
8974         (INSTALL_TARGET_MODULES): Likewise.
8975         (CLEAN_TARGET_MODULES): Likewise.
8976         (configure-target-libchill): Remove.
8977         (all-target-libchill): Remove.
8978         * configure.in (target_libs): Remove target-libchill.
8979         Do not compute CHILL_FOR_TARGET.
8980         * libchill: Remove directory.
8982 2002-04-15  DJ Delorie  <dj@redhat.com>
8984         * Makefile.in, configure.in, configure: Sync with gcc, entries
8985         follow...
8987 2002-04-08  Tom Tromey  <tromey@redhat.com>
8989         * configure.in: Add FLAGS_FOR_TARGET to GCJ_FOR_TARGET.
8990         Fixes PR libgcj/6068.
8992 2002-03-30  Krister Walfridsson  <cato@df.lth.se>
8994         * configure.in (i*86-*-netbsdelf*): Don't disable libgcj.
8996 2002-03-27  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
8998         * configure.in (alpha*-dec-osf*): Enable libgcj.
9000 2002-03-24  Nick Clifton  <nickc@cambridge.redhat.com>
9002         Fix for: PR bootstrap/3591, target/5676
9003         * configure.in (mcore-pe): Disable the configuration of
9004         libstdc++-v3 since exceptions are not supported.
9006 2002-03-20  Anthony Green  <green@redhat.com>
9008         * configure.in: Enable libgcj for xscale-elf target.
9010 2002-02-28  Alexandre Oliva  <aoliva@redhat.com>
9012         * configure.in (libstdcxx_flags): Don't add libstdc++-v3 flags for
9013         libjava.
9014         (CXX_FOR_TARGET): Explain why -shared-libgcc here.
9016 2002-02-22  Alexandre Oliva  <aoliva@redhat.com>
9018         * configure.in (CXX_FOR_TARGET): Add -shared-libgcc for
9019         libstdc++-v3 and libjava.
9021 2002-02-11  Adam Megacz <adam@xwt.org>
9023         * gcc/Makefile.in: Removed libstdc++-v3 dependancy for libjava and
9024         boehm-gc
9026 2002-02-09  Alexandre Oliva  <aoliva@redhat.com>
9028         * config.guess: Updated to 2002-01-30's version.
9029         * config.sub: Updated to 2002-02-01's version.
9030         Contribute sh64-elf.
9031         2000-12-01  Alexandre Oliva  <aoliva@redhat.com>
9032         * configure.in: Added sh64-*-*.
9034 2002-01-17  H.J. Lu <hjl@gnu.org>
9036         * Makefile.in (all-fastjar): Also depend on all-libiberty.
9037         (all-target-fastjar): Also depend on all-target-libiberty.
9039 Wed Dec  5 07:33:45 2001  Douglas B. Rupp  <rupp@gnat.com>
9041         * configure, configure.in: Use temp file for long sed commands.
9043 2001-11-14  Hans-Peter Nilsson  <hp@bitrange.com>
9045         * configure.in (noconfigdirs) [h8300*-*-*, h8500-*-*]: Disable
9046         libf2c.
9048 2001-11-03  Hans-Peter Nilsson  <hp@bitrange.com>
9050         * configure.in (noconfigdirs) [mmix-*-*]: Disable libgcj.
9052 2001-10-11  Hans-Peter Nilsson  <hp@axis.com>
9054         * configure.in (noconfigdirs) [cris-*-*]: Disable libgcj.
9056 2001-10-02  Joseph S. Myers  <jsm28@cam.ac.uk>
9058         * configure: Handle temporary files securely using mkdir.
9060 2001-09-26  Will Cohen <wcohen@redhat.com>
9062         * configure.in (*-*-linux*): Disable configuration of target-newlib
9063         and target-libgloss.
9065 2001-09-26  Alexandre Oliva  <aoliva@redhat.com>
9067         * Makefile.in (EXTRA_TARGET_FLAGS): Pass RANLIB_FOR_TARGET for
9068         RANLIB.
9070 2001-08-11  Graham Stott  <grahams@redhat.com>
9072         * Makefile.in (check-c++): Add missing semicolon.
9074 2001-07-25  Andrew Haley  <aph@cambridge.redhat.com>
9076         * configure.in (sh-*-linux*): New.
9078 2001-07-12  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
9080         * configure.in (noconfigdirs): Don't compile libiberty, libstdcxx
9081         and libgcj on m68hc11/m68hc12.
9083 2001-06-27  H.J. Lu  (hjl@gnu.org)
9085         * Makefile (CFLAGS_FOR_BUILD): New.
9086         (EXTRA_GCC_FLAGS): Add CFLAGS_FOR_BUILD.
9088 2001-06-01  Hans-Peter Nilsson  <hp@axis.com>
9090         * configure.in (libstdcxx_flags): Do not try to execute
9091         libstdc++-v3/testsuite_flags until it exists.
9093 2001-05-18  Benjamin Kosnik  <bkoz@redhat.com>
9095         * configure.in (libstdcxx_flags): Remove reference to libstdc++.INC.
9097 2001-05-09  Jeffrey Oldham  <oldham@codesourcery.com>
9099         * ltcf-cxx.sh: Add -nostdlib to IRIX 6 archive_cmds.
9101 Mon Apr 23 09:15:03 2001  Anthony Green  <green@redhat.com>
9103         * configure.in: Move *-chorusos target case to the proper switch.
9104         Disable libgcj.
9106 2001-04-13  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>
9108         * Makefile.in (STAGE1_CFLAGS): Pass down.
9110 2001-04-13  Alan Modra  <amodra@one.net.au>
9112         * config.guess: Add hppa64-linux support.  Note for next import that
9113         this is already in the master file.
9114         * configure.in: Likewise.  Accept `parisc' alias for `hppa'.
9116 2001-03-22  Colin Howell  <chowell@redhat.com>
9118         * Makefile.in (DO_X): Do not backslash single-quotes in
9119         backquotes (two places).
9121 2001-03-18  Laurynas Biveinis  <lauras@softhome.net>
9123         * Makefile.in (DO_X): Quote nested quotes.
9125 2001-03-15  Laurynas Biveinis  <lauras@softhome.net>
9127         * Makefile.in (DO_X): Use double quotes for quoting
9128         "RANLIB=$${RANLIB}".
9130 2001-03-09  Nicola Pero <n.pero@mi.flashnet.it>
9132         * configure.in: Only use `lang_requires' for languages athat are
9133         actually enabled.
9135 2001-03-07  Tom Tromey  <tromey@redhat.com>
9137         * configure.in: Allow config-lang.in to set `lang_requires' to list
9138         of other required languages.
9140 2001-03-06  Laurynas Biveinis  <lauras@softhome.net>
9142         * Makefile.in: Remove RANLIB definition. Use RANLIB
9143         in RANLIB_FOR_TARGET, EXTRA_HOST_FLAGS, EXTRA_TARGET_FLAGS,
9144         EXTRA_GCC_FLAGS, $(DO_X) targets only when the RANLIB is set.
9146 2001-02-28  Benjamin Kosnik  <bkoz@redhat.com>
9147             Alexandre Oliva  <aoliva@redhat.com>
9149         * Makefile.in (check-c++): Use tabs, not spaces.
9151 2001-02-19  Benjamin Kosnik  <bkoz@redhat.com>
9153         * Makefile.in (check-c++): New rule.
9155         * configure.in (target_libs): Remove libg++.
9156         (noconfigdirs): Remove libg++.
9157         (noconfigdirs): Same.
9158         (noconfigdirs): Same.
9159         (noconfigdirs): Same.
9161         * config-ml.in: Remove libg++ references.
9163         * Makefile.in (TARGET_CONFIGDIRS): Remove libio, libstdc++, libg++.
9164         (ALL_TARGET_MODULES): Same.
9165         (configure-target-libg++): Remove.
9166         (all-target-libg++): Remove.
9167         (configure-target-libio): Remove.
9168         (all-target-libio): Remove.
9169         (check-target-libio): Remove.
9170         (.PHONY): Remove.
9171         (libg++.tar.bz2): Remove.
9172         (all-target-cygmon): Remove libio.
9173         (all-target-libstdc++): Remove.
9174         (configure-target-libstdc++): Remove.
9175         (TARGET_LIB_PATH): Remove libstdc++.
9176         (ALL_GCC_CXX): Remove libstdc++.
9177         (all-target-gperf): Correct.
9179 2001-02-15  Anthony Green  <green@redhat.com>
9181         * configure: Introduce GCJ_FOR_TARGET.
9182         * configure.in: Ditto.
9183         * Makefile.in: Ditto.
9185 2001-02-08  Chandrakala Chavva <cchavva@redhat.com>
9187         * configure.in: for *-chorusos, don't config target-newlib and
9188         target-libgloss.
9190 2001-02-04  Mark Mitchell  <mark@codesourcery.com>
9192         Remove V2 C++ library.
9193         * configure.in: Remove --enable-libstdcxx_v3 support.
9195 2001-01-27  Richard Henderson  <rth@redhat.com>
9197         * configure.in (target_makefile_frag) [alpha*-*]: Use mt-alphaieee.
9199 2001-01-26  Tom Tromey  <tromey@redhat.com>
9201         * configure.in: Allow libgcj to be built on Sparc Solaris.
9203 2001-01-23  Bryce McKinlay  <bryce@albatross.co.nz>
9205         * configure.in: Enable libgcj on several additional platforms.
9207 2001-01-22  Bryce McKinlay  <bryce@albatross.co.nz>
9209         * configure.in: Enable libgcj for linux targets.
9211 2001-01-09  Mike Stump  <mrs@wrs.com>
9213         * Makefile.in (CONFIGURE_TARGET_MODULES): Pass back configuration
9214         failures of subdirectories.
9216 2001-01-02  Laurynas Biveinis  <lauras@softhome.net>
9218         * configure: handle DOS-style absolute paths.
9220 2001-01-02  Laurynas Biveinis  <lauras@softhome.net>
9222         * configure.in: remove supported directories from $noconfigdirs for DJGPP.
9224 2000-12-18  Benjamin Kosnik  <bkoz@redhat.com>
9226         * Makefile.in (BASE_FLAGS_TO_PASS): Alphabetize.
9227         (libstdcxx_incdir): Pass down.
9228         * config.if: Remove expired bits for cxx_interface, add stub.
9229         (libstdcxx_incdir): Add variable for g++ include directory.
9230         * configure.in (gxx_include_dir): Use it.
9232 2000-12-15  Andreas Jaeger  <aj@suse.de>
9234         * configure.in: Handle lang_dirs.
9236 2000-12-13  Anthony Green  <green@redhat.com>
9238         * configure.in: Disable libgcj for any target not specifically
9239         listed.  Disable libgcj for x86 and Alpha Linux until compatible
9240         with g++ abi.
9242 2000-12-13  Mike Stump  <mrs@wrs.com>
9244         * Makefile.in (local-distclean): Also remove fastjar.
9246 2000-12-10  Anthony Green  <green@redhat.com>
9248         * configure.in: Define libgcj.  Disable libgcj target libraries for
9249         most targets.
9251 2000-12-09  Alexandre Petit-Bianco  <apbianco@cygnus.com>
9253         * configure.in (target_libs): Revert 2000-12-08 patch.
9254         (noconfigdirs): Added target-libjava.
9256 2000-12-09  Laurynas Biveinis  <lauras@softhome.net>
9258         * Makefile.in: handle DOS-style absolute paths.
9260 2000-12-08  Alexandre Petit-Bianco  <apbianco@cygnus.com>
9262         * Makefile.in (TARGET_CONFIGDIRS): Wrong place. Removed note about
9263         libjava.
9264         * configure.in (target_libs): Removed `target-libjava'.
9266 2000-12-08  Alexandre Petit-Bianco  <apbianco@cygnus.com>
9268         * Makefile.in (TARGET_CONFIGDIRS): Added note about libjava.
9269         (ALL_MODULES): Added fastjar.
9270         (NATIVE_CHECK_MODULES, INSTALL_MODULES, CLEAN_MODULES): Likewise.
9271         (all-target-libjava): all-fastjar replaces all-zip.
9272         (all-fastjar): Added.
9273         (configure-target-fastjar, all-target-fastjar): Likewise.
9274         * configure.in (host_tools): Added fastjar.
9276 2000-12-07  Mike Stump  <mrs@wrs.com>
9278         * Makefile.in (local-distclean): Remove leftover built files.
9280 2000-11-16  Fred Fish  <fnf@be.com>
9282         * configure.in (enable_libstdcxx_v3): Fix typo,
9283         libstd++ -> libstdc++.
9285 2000-11-13  Joseph S. Myers  <jsm28@cam.ac.uk>
9287         * configure: Provide the original toplevel configure arguments
9288         (including $0) to subprocesses in the environment rather than
9289         through gcc/configargs.h.
9291 2000-11-12  Mark Mitchell  <mark@codesourcery.com>
9293         * configure: Turn on libstdc++ V3 by default.
9295 2000-10-16  Michael Meissner  <meissner@redhat.com>
9297         * configure (gcc/configargs.h): Only create if there is a build GCC
9298         directory created.
9300 2000-10-05  Phil Edwards  <pme@gcc.gnu.org>
9302         * configure: Save configure arguments to gcc/configargs.h.
9304 2000-10-04  Andris Pavenis  <pavenis@latnet.lv>
9306         * Makefile.in (bootstrap): avoid recursion if subdir missing
9307         (cross): ditto
9308         (do-proto-toplev): ditto
9310 Wed Sep 13 11:11:29 2000  Jeffrey A Law  (law@cygnus.com)
9312         * configure.in: Do not build byacc for hppa64.  Provide paths to the
9313         X11 libraries for hppa64.
9315 2000-09-02  Anthony Green  <green@cygnus.com>
9317         * Makefile.in (all-gcc): Depend on all-zlib.
9318         (CLEAN_MODULES): Add clean-zlib.
9319         (ALL_MODULES): Add all-zlib.
9320         * configure.in (host_libs): Add zlib.
9322 2000-08-25  Alexandre Oliva  <aoliva@redhat.com>
9324         * configure.in (FLAGS_FOR_TARGET): Use $target_configdirs and
9325         $targargs to tell whether newlib is going to be built.
9327         * configure.in [disable-libstdcxx-v3] (libstdcxx_flags): Search
9328         $$r/TARGET_SUBDIR/libio for _G_config.h.
9330 2000-08-14  Zack Weinberg  <zack@wolery.cumb.org>
9332         * configure.in (libstdcxx_flags): Remove -isystem $$s/libio/stdio.
9334         * configure: Make enable_threads and enable_shared defaults
9335         explicit.  Substitute enable_threads into generated Makefiles.
9336         * configure.in: Accept *-*-linux* not just *-*-linux-gnu*.
9337         * libtool.m4: Accept *-*-linux* not just *-*-linux-gnu*.
9339 2000-08-02  Manfred Hollstein  <manfredh@redhat.com>
9341         * configure.in: Re-enable all references to libg++ and librx.
9343 2002-04-09  Loren James Rittle  <rittle@labs.mot.com>
9345         * configure.in: Add *-*-freebsd* configurations.
9347 2002-04-07  Andrew Cagney  <ac131313@redhat.com>
9349         * Makefile.in (do-tar-bz2): Delete rule.  Replace with ...
9350         (do-tar, do-bz2): New rules.
9351         (taz): Update.  Replace do-tar-bz2 with do-tar and do-bz2.
9352         (gdb-tar): New rule.
9353         (gdb-taz): Rewrite.  Use gdb-tar and do-bz2.
9354         (insight_dejagnu.tar): New rule.
9355         (insight.tar): New rule.
9356         (gdb+dejagnu.tar): New rule.
9357         (gdb.tar): New rule.
9359 2002-04-07  Andrew Cagney  <ac131313@redhat.com>
9361         * MAINTAINERS: Update dejagnu/
9363 2002-03-16  Alexandre Oliva  <aoliva@redhat.com>
9365         * ltmain.sh (relink_command): Fix typo in previous change.
9367 2002-03-15  Alexandre Oliva  <aoliva@redhat.com>
9369         * ltmain.sh (taglist): Initialized.  Don't let `CC' tag out of it.
9370         (relink_command): Added --tag flags.
9371         (mode=install): If relinking fails; error out.
9373 2002-03-12  Richard Henderson  <rth@redhat.com>
9375         * Makefile.in (NOTPARALLEL): New.  Use it instead of explicit
9376         .NOTPARALLEL tag.
9377         (do-check): Rename from check.
9378         (check): Allow parallel check.
9380 2002-03-11  Richard Henderson  <rth@redhat.com>
9382         * Makefile.in (.NOTPARALLEL): Add fake tag.
9384 2002-03-07  H.J. Lu  (hjl@gnu.org)
9386         * configure.in: Enable gprof for mips*-*-linux*.
9388 2002-02-28  Alexandre Oliva  <aoliva@redhat.com>
9390         * configure.in (libstdcxx_flags): Don't add libstdc++-v3 flags for
9391         libjava.
9392         (CXX_FOR_TARGET): Add -shared-libgcc for libstdc++-v3 and libjava.
9394 2002-02-24  Andrew Cagney  <ac131313@redhat.com>
9396         * texinfo/texinfo.tex: Update to version 2002-02-14.08.
9398 2002-02-23  Daniel Jacobowitz  <drow@mvista.com>
9400         * config.guess: Import from master sources, rev 1.232.
9401         * config.sub: Import from master sources, rev 1.246.
9403 2002-02-23  Alexandre Oliva  <aoliva@redhat.com>
9405         * Makefile.in (MAKEINFO): Don't assume makeinfo will be built just
9406         because its Makefile is there; test for the executable instead.
9408 2002-02-09  Alexandre Oliva  <aoliva@redhat.com>
9410         Contribute sh64-elf.
9411         2000-12-01  Alexandre Oliva  <aoliva@redhat.com>
9412         * configure.in: Added sh64-*-*.
9414 2002-02-04  Jeff Johnston  <jjohnstn@redhat.com>
9416         * COPYING.NEWLIB: Remove advertising clause from
9417         Berkeley and Red Hat licenses.
9419 2002-02-01  Mo DeJong  <supermo@bayarea.net>
9421         * Makefile.in: Add all-tix to deps for all-snavigator
9422         so that tix is built when building snavigator.
9424 2002-02-01  Ben Elliston  <bje@redhat.com>
9426         * config.guess: Import from master sources, rev 1.229.
9427         * config.sub: Import from master sources, rev 1.240.
9429 2002-01-27  Daniel Jacobowitz  <drow@mvista.com>
9431         From Steve Ellcey <sje@cup.hp.com>:
9432         * libtool.m4 (HPUX_IA64_MODE): Set to 32 or 64 based on ABI.
9433         (lt_cv_deplibs_check_method, lt_cv_file_magic_cmd,
9434         lt_cv_file_magic_test_file): Set to appropriate values for HP-UX
9435         IA64.
9436         * ltcf-c.sh (archive_cmds, hardcode_*): Ditto.
9437         * ltconfig (shlibpath_*, dynamic_linker, library_names_spec,
9438         soname_spec, sys_lib_search_path_spec): Ditto.
9440 2002-01-26  Jason Thorpe  <thorpej@wasabisystems.com>
9442         * configure.in (*-*-netbsd*): New.  Skip target-newlib,
9443         target-libiberty, and target-libgloss.  Skip Java-related
9444         libraries if not supported for NetBSD on target CPU.
9446 2002-01-23  Nick Clifton  <nickc@cambridge.redhat.com>
9448         * configure.in: Import StrongARM and XScale target_configdirs from
9449         FSF GCC version.
9451 2002-01-16  H.J. Lu  (hjl@gnu.org)
9453         * config.guess: Import from master sources, rev 1.225.
9454         * config.sub: Import from master sources, rev 1.238.
9456         * MAINTAINERS: Updated notes on config.guess and config.sub.
9458 2002-01-11  Steve Ellcey  <sje@cup.hp.com>
9460         * configure.in (ia64*-*-hpux*): New target for IA64 HP-UX,
9461         ld and gdb are not supported.
9463 2002-01-07  Jeff Johnston  <jjohnstn@redhat.com>
9465         * Change reference to Cygnus Solutions to be Red Hat.
9467 2002-01-07  Jeff Johnston  <jjohnstn@redhat.com>
9469         * COPYING.NEWLIB: Update generic copyright date.
9471 2002-01-07  Mark Salter  <msalter@redhat.com>
9473         * configure.in: Remove target-bsp and target-cygmon from arm builds.
9474           Allow target-libgloss to be built for arm, strongarm, and xscale.
9476 2002-01-03  Ben Elliston  <bje@redhat.com>
9478         * MAINTAINERS: Update URL for config.* scripts.
9480 2001-12-18  Alan Modra  <amodra@bigpond.net.au>
9482         * config.sub: Import latest version.
9483         * config.guess: Likewise.
9485 2001-12-13  Thomas Fitzsimmons  <fitzsim@redhat.com>
9487         * configure.in (FLAGS_FOR_TARGET): Remove -nostdinc and -isystem
9488         options for i[3456]86-pc-linux* native builds.
9490 2001-12-05  Laurent Guerby  <guerby@acm.org>
9492         * MAINTAINERS: gcc adopts symlink-tree, refer more to
9493         libiberty.
9495         Import this patch from gcc:
9497         2000-12-09  Laurynas Biveinis  <lauras@softhome.net>
9499             * symlink-tree: handle DOS-style absolute paths.
9501 2001-11-28  DJ Delorie <dj@redhat.com>
9502             Zack Weinberg  <zack@codesourcery.com>
9504         When build != host, create libiberty for the build machine.
9506         * Makefile.in (TARGET_CONFIGARGS, BUILD_CONFIGARGS): Replace
9507         CONFIG_ARGUMENTS.
9508         (ALL_BUILD_MODULES_LIST, BUILD_CONFIGDIRS, BUILD_SUBDIR):
9509         New variables.
9510         (ALL_BUILD_MODULES, CONFIGURE_BUILD_MODULES): New variables
9511         and rules.
9512         (all.normal): Depend on ALL_BUILD_MODULES.
9513         (CONFIGURE_TARGET_MODULES rule): Use TARGET_CONFIGARGS.
9514         (all-build-libiberty): Depend on configure-build-libiberty.
9516         * configure: Calculate and substitute proper value for
9517         ALL_BUILD_MODULES.
9518         * configure.in: Create the build subdirectory.
9519         Calculate and substitute TARGET_CONFIGARGS (formerly
9520         CONFIG_ARGUMENTS); also BUILD_SUBDIR and BUILD_CONFIGARGS (new).
9522 2001-11-26  Geoffrey Keating  <geoffk@redhat.com>
9524         * config.sub: Update to version 1.232 on subversion.
9526 2001-11-20  Nick Clifton  <nickc@cambridge.redhat.com>
9528         * Makefile.in (do-proto-toplev): Use msgfmt to generate .gmo
9529         files from .po files for a distribution.
9531 2001-11-19  Hans-Peter Nilsson  <hp@bitrange.com>
9533         * COPYING.NEWLIB: Mention preserved notice in specific parts.
9535 2001-11-13  Jeff Holcomb  <jeffh@redhat.com>
9537         Merged from net gcc:
9538         2001-07-30  Jeff Sturm  <jsturm@one-pont.com>
9539         * ltcf-c.sh: Use $objext, not $ac_objext.
9540         2001-07-27  Mark Kettenis  <kettenis@gnu.org>
9541         * ltcf-cxx.sh: Add support for GNU.
9542         2001-07-22  Timothy Wall  <twall@redhat.com>
9543         * ltcf-c.sh: Don't disable shared libraries for AIX5/IA64.  Preserve
9544         default settings if using GNU tools with that configuration.
9545         * ltcf-cxx.sh: Ditto.
9546         * ltcf-gcj.sh: Ditto.
9547         2001-07-21  Michael Chastain  <chastain@redhat.com>
9548         * ltconfig: Set max_cmd_len to a maximum of 512Kb, as it seems some
9549         HPUX 11.0 systems have trouble with 1MB.  Mark as gcc-local.
9550         * ltmain.sh: Mark as gcc-local.
9552 2001-11-13  Jeff Holcomb  <jeffh@redhat.com>
9554         * Makefile.in (all-bison): Revert 2001-10-24.
9555         Don't depend on texinfo.
9557 2001-11-12  Hans-Peter Nilsson  <hp@bitrange.com>
9559         * COPYING.NEWLIB: Add BSD-style license/copyright blurb for my work.
9561 2001-11-08  Phil Edwards  <pedwards@disaster.jaj.com>
9563         * configure.in (--enable-languages): Be more permissive about
9564         syntax.  Check for empty lists better.  Warn about $LANGUAGES.
9566 2001-11-06  Hans-Peter Nilsson  <hp@bitrange.com>
9568         * Makefile.in (MAKEINFO): Use "missing" for makeinfo older than 4.0.
9570 2001-10-24  Jeff Holcomb  <jeffh@redhat.com>
9572         Makefile.in (all-bison): Don't depend on texinfo.
9574 2001-10-03  Alan Modra  <amodra@bigpond.net.au>
9576         * gettext.m4: Test po/POTFILES.in exists before trying to read.
9578 2001-09-29  Alexandre Oliva  <aoliva@redhat.com>
9580         * Makefile.in (configure-target-gperf): Depend on $(ALL_GCC_CXX).
9582 2001-09-28  Hans-Peter Nilsson  <hp@axis.com>
9584         * config.sub, config.guess: Import latest from subversions.
9586 2001-09-21  Alexandre Oliva  <aoliva@redhat.com>
9588         * Makefile.in (AS_FOR_TARGET, LD_FOR_TARGET,
9589         DLLTOOL_FOR_TARGET, WINDRES_FOR_TARGET, AR_FOR_TARGET,
9590         RANLIB_FOR_TARGET, NM_FOR_TARGET): Don't use double quotes to
9591         avoid quotes nesting problems.
9592         (NATIVE_CHECK_MODULES): Ditto, just for consistency.
9593         (DO_X): Export only variables that are set.
9595 2001-09-19  Ben Elliston  <bje@redhat.com>
9597         * configure.in (sparc-sun-solaris2*): Don't use /usr/bin/which on
9598         Solaris when testing for the /usr/ucb/cc compiler; it has incorrect
9599         semantics.  Use the shell built-in "type" command instead.
9601 2001-09-15  Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
9603         * config.sub: Reverted the earlier change, this version is not the
9604         master file.
9606 2001-09-14  Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
9608         * config.sub: Change machine triplets from mipsel*-* to mips*el-*.
9609         Add support for mips64.
9611 2001-09-03  Jeff Holcomb  <jeffh@redhat.com>
9613         * configure.in: Enable libstdc++-v3 for h8300 targets.
9615 2001-08-30  Eric Christopher  <echristo@redhat.com>
9616             Jason Eckhardt  <jle@redhat.com>
9618         * config.sub: Add support for mipsisa32.
9620 2001-08-30  Eric Christopher  <echristo@redhat.com>
9622         * config.sub, config.guess: Import latest from subversions.
9624 2001-08-20  Alan Modra  <amodra@bigpond.net.au>
9626         * config.sub, config.guess: Import latest from subversions.
9628 2001-07-26  DJ Delorie  <dj@redhat.com>
9630         * MAINTAINERS: Clarify libiberty merge rules and procedures.
9632 2001-06-19  Alan Modra  <amodra@bigpond.net.au>
9634         * Makefile.in: Revert 2001-06-17.
9635         (VER): If AM_INIT_AUTOMAKE uses BFD_VERSION, get version from bfd/.
9637 2001-06-17  H.J. Lu <hjl@gnu.org>
9639         * Makefile.in (gas.tar.bz2): Pass TOOL=bfd PACKAGE=gas to make.
9640         (gas+binutils.tar.bz2): Likewise.
9641         (binutils.tar.bz2): Pass TOOL=bfd PACKAGE=binutils to make.
9643 Fri Jun  8 11:14:02 2001  Andrew Cagney  <cagney@b1.cygnus.com>
9645         * Makefile.in (VER): When present, extract the version number from
9646         the file version.in.
9648 2001-06-08  Alexandre Oliva  <aoliva@redhat.com>, Jeff Sturm  <jsturm@one-point.com>
9650         * Makefile.in (AS_FOR_TARGET, LD_FOR_TARGET, NM_FOR_TARGET): If
9651         gcc/xgcc is built, use -print-prog-name to find out the program
9652         name to use.
9654 2001-06-04  Mark Mitchell  <mark@codesourcery.com>
9656         * ltcf-c.sh (archive_cmds, archive_expsym_cmds) [solaris,
9657         with_gcc]: Use `gcc -shared' to build a shared library.
9659 2001-06-04  John David Anglin  <dave@hiauly1.hia.nrc.ca>
9661         * ltcf-c.sh (archive_cmd) [hpux, with_gcc]: Use gcc to link shared
9662         archives.
9664 2001-05-28  Simon Patarin <simon.patarin@inria.fr>
9666         * ltcf-cxx.sh (osf3/osf4/osf5): Support creation of C++  shared
9667         libraries when using g++ with native linker.
9669 2001-05-28  Alexandre Oliva  <aoliva@redhat.com>
9671         * ltconfig, ltmain.sh: Upgrade to libtool 1.4a 1.641.2.256.
9673 2001-05-24  Tom Rix <trix@redhat.com>
9675         * configure.in : enable ld for aix
9677 2001-05-22  Alexandre Oliva  <aoliva@redhat.com>
9679         * ltcf-cxx.sh (allow_undefined_flag, no_undefined_flag)
9680         [aix4*|aix5*]: Prepend blank.
9682 2001-05-20  Alexandre Oliva  <aoliva@redhat.com>
9684         * ltconfig, ltmain.sh, libtool.m4, ltcf-c.sh, ltcf-cxx.sh,
9685         ltcf-gcj.sh: Upgraded to libtool 1.4a 1.641.2.254.  Rebuilt a number
9686         of subdir/configure scripts to use the new libtool.m4.
9688 2001-05-14  H.J. Lu <hjl@gnu.org>
9690         * config.if (libc_interface): Set to -libc6.2- for cross
9691         compiling to Linux/glibc 2.2.
9693 2001-05-03  Alexandre Oliva  <aoliva@redhat.com>
9695         * configure.in (noconfigdirs) [*-cygwin*, *-mingw*, *-beos]: Disable
9696         libgcj.
9698 2001-04-26  Alexandre Oliva  <aoliva@redhat.com>
9700         * configure.in (noconfigdirs): Don't reset it from scratch in the
9701         target case; only append to it.
9703 2001-04-26  Alexandre Oliva  <aoliva@redhat.com>
9705         * configure.in (noconfigdirs) [hppa*-*-*, mips*-*-irix6*,
9706         sparc-*-solaris2.8]: Disable ${libgcj}.
9708 2001-04-25  Alexandre Oliva  <aoliva@redhat.com>
9710         * configure.in (libgcj_saved): Copy from $libgcj.
9711         (libgcj): Zero out if --enable-libgcj; add to noconfigdirs is
9712         --disable-libgcj.
9714 2001-04-20  Alexandre Oliva  <aoliva@redhat.com>
9716         * ltconfig, ltmain.sh, ltcf-cxx.sh: Upgraded to libtool 1.4a
9717         1.641.2.228.
9719 2001-04-12  Alexandre Oliva  <aoliva@redhat.com>
9721         * ltconfig, ltmain.sh, libtool.m4, ltcf-c.sh, ltcf-cxx.sh,
9722         ltcf-gcj.sh: Upgraded to libtool 1.4a 1.641.2.226.
9724 2001-04-01  Alexandre Oliva  <aoliva@redhat.com>
9726         * Makefile.in (CXX_FOR_TARGET_FOR_RECURSIVE_MAKE, RECURSE_FLAGS):
9727         New macros.
9728         (bootstrap, cross): Use RECURSE_FLAGS.
9729         * configure.in: Subst CXX_FOR_TARGET_FOR_RECURSIVE_MAKE.
9731 2001-03-27  Alexandre Oliva  <aoliva@redhat.com>
9733         * configure.in (CXX_FOR_TARGET): Use xgcc for libstdc++-v3.
9735 2001-03-23  Nick Clifton  <nickc@redhat.com>
9737         * README-maintainer-mode: Add note about inability to use "make
9738         distclean" in maintainer mode.
9740 2001-03-22  Alexandre Oliva  <aoliva@redhat.com>
9742         Re-installed:
9743         2001-01-02  Laurynas Biveinis  <lauras@softhome.net>
9744         * ltcf-c.sh: Clear ac_cv_prog_cc_pic for DJGPP.  Do not add
9745         '-DPIC' to ac_cv_prog_cc_pic for DJGPP.
9746         * ltcf-cxx.sh: Likewise.
9747         * ltcf-gcj.sh: Likewise.
9749 2001-03-22  Philip Blundell  <philb@gnu.org>
9751         * config.sub, config.guess: Import latest from subversions.
9753 2001-03-22  Alexandre Oliva  <aoliva@redhat.com>
9755         * ltconfig, ltmain.sh, libtool.m4, ltcf-c.sh, ltcf-cxx.sh,
9756         ltcf-gcj.sh: Upgraded to libtool 1.4a 1.641.2.198.
9758 2001-03-20  Michael Chastain  <chastain@redhat.com>
9760         * Makefile.in: all-m4 depends on all-texinfo.
9762 2001-03-08  Alexandre Oliva  <aoliva@redhat.com>
9764         * Makefile.in (ALL_GCC, ALL_GCC_C, ALL_GCC_CXX): Set before use.
9766 2001-02-22  Jeff Johnston <jjohnstn@redhat.com>
9768         * COPYING.NEWLIB: Remove DJ Delorie's address because it is no
9769         longer valid.
9771 2001-02-16  Nick Clifton  <nickc@redhat.com>
9773         * configure.in (noconfigdirs): Allow configuration of texinfo
9774         for Cygwin hosts.
9776 2001-02-09  Martin Schwidefsky  <schwidefsky@de.ibm.com>
9778         * config.guess: Add linux target for S/390.
9779         * config.sub: Likewise.
9780         * configure.in: Likewise.
9782 2001-02-06  Ben Elliston  <bje@redhat.com>
9784         * configure: Output host type to stdout, not stderr.
9786 2001-02-04  Michael Sokolov  <msokolov@ivan.Harhan.ORG>
9788         * config.guess: Import from subversions.gnu.org (revision 1.181).
9789         * config.sub: Import from subversions.gnu.org (revision 1.199).
9791 2001-01-30  Alan Modra  <alan@linuxcare.com.au>
9793         * config.guess: Handle hppa64-linux systems.
9795 2001-01-27  Michael Sokolov  <msokolov@ivan.Harhan.ORG>
9797         * ltcf-cxx.sh (ac_cv_prog_cc_pic_works, ac_cv_prog_cc_static_works):
9798         Don't unset, it's non-portable and no longer necessary, set to empty
9799         instead.
9801 2001-01-27  Michael Sokolov  <msokolov@ivan.Harhan.ORG>,  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>
9803         * ltconfig: Shell portability fix for the tagname validity check.
9805 2001-01-27  Michael Sokolov  <msokolov@ivan.Harhan.ORG>
9807         * ltcf-cxx.sh: Use parentheses around eval $ac_compile.
9809 2001-01-27  Alexandre Oliva  <aoliva@redhat.com>
9811         * ltcf-c.sh (ld_shlibs) [aix5*]: Disable on unknown CPU types.
9812         * ltcf-cxx.sh, ltcf-gcj.sh: Likewise.
9814 2001-01-24  Alexandre Oliva  <aoliva@redhat.com>
9816         * ltmain.sh (TAG disable-shared, TAG disable-static): Make sure we
9817         keep at least one of build_libtool_libs or build_old_libs set to
9818         yes.
9820 2001-01-24  Alexandre Oliva  <aoliva@redhat.com>
9822         * ltcf-gcj.sh (lt_simple_link_test_code): Remove stray `(0)'.
9823         * libtool.m4 (_AC_LIBTOOL_GCJ): Pass $CPPFLAGS on.
9825 2000-11-07  Philip Blundell  <pb@futuretv.com>
9827         * Makefile.in (ETC_SUPPORT): Also add configbuild.* and configdev.*.
9829 2000-11-03  Philip Blundell  <pb@futuretv.com>
9831         * Makefile.in (ETC_SUPPORT): Add configure.texi and associated info
9832         files.
9834 2001-01-15  Jeff Johnston  <jjohnstn@redhat.com>
9836         * COPYING.NEWLIB: Put into source repository.
9838 2001-01-15  Ben Elliston  <bje@redhat.com>
9840         * configure.in (host_tools): Add sid.
9841         Always configure cgen.
9842         * Makefile.in (all-sid): New target.
9843         (check-sid, clean-sid, install-sid): Likewise.
9845 2001-01-07  Andreas Jaeger  <aj@suse.de>
9847         * config.sub, config.guess: Update from subversions.
9849 2000-12-12  Alexandre Oliva  <aoliva@redhat.com>
9851         * configure.in: Disable language-specific target libraries for
9852         languages that aren't enabled.
9854 2000-11-24  Nick Clifton  <nickc@redhat.com>
9856         * configure.in (xscale-elf): Add target.
9857         (xscale-coff): Add target.
9858         (c4x, c5x, tic54x): Move after ARM targets.
9860 2000-11-23  Alexandre Oliva  <aoliva@redhat.com>
9862         * ltcf-gcj.sh: Added file, required by 2000-11-18 merge.
9864 2000-11-20  Ian Lance Taylor  <ian@zembu.com>
9866         * ltcf-cxx.sh: Added file, required by 2000-11-18 merge.
9868 2000-11-18  Alexandre Oliva  <aoliva@redhat.com>
9870         * Makefile.in: Merge with GCC and libgcj.
9871         (ALL_GCC_C, ALL_GCC_CXX): New macros.  Use them as dependencies of
9872         configure-target-<library> when their configure scripts need the C
9873         or C++ library to have already been built to work properly.
9874         (do_proto_toplev): Set them to an empty string.
9876 2000-11-18  Alexandre Oliva  <aoliva@redhat.com>
9878         * Makefile.in (HOST_LIB_PATH, TARGET_LIB_PATH): New macros.
9879         (REALLY_SET_LIB_PATH): Use them.
9881 2000-11-06  Christopher Faylor <cgf@cygnus.com>
9883         * config.sub: Add support for Sun Chorus
9885 2000-11-02  Per Lundberg  <plundis@chaosdev.org>
9887         * config.sub: Add support for the *-storm-chaos OS.
9889 2000-10-30  Stephane Carrez  <stcarrez@worldnet.fr>
9891         * configure.in (noconfigdirs): Don't compile some
9892         of the libraries for 68HC11 & 68hc12 targets.
9894 2000-09-30  Alexandre Oliva  <aoliva@redhat.com>
9896         * ltconfig, ltmain.sh, libtool.m4: Updated from libtool
9897         multi-language branch, to work around Solaris' /bin/sh bug.  Rebuilt
9898         all affected `configure' scripts.
9900 2000-09-25  Alexandre Oliva  <aoliva@redhat.com>
9902         * Makefile.in (DEVO_SUPPORT): Added gettext.m4, libtool.m4 and
9903         ltcf-c.sh.
9905 2000-09-12  Philip Blundell  <philb@gnu.org>
9907         * config.sub, config.guess: Update from subversions.
9909 2000-09-06  Alexandre Oliva  <aoliva@redhat.com>
9911         * Makefile.in (all-zlib): Added dummy target.
9913         * ltconfig, ltmain.sh, libtool.m4, ltcf-c.sh: Updated from libtool
9914         multi-language branch.
9916 2000-09-05  Alexandre Oliva  <aoliva@redhat.com>
9918         * Makefile.in (all-bootstrap): Added all-texinfo and all-zlib.
9919         (bootstrap*): Depend on all-bootstrap.
9921 2000-09-02  Alexandre Oliva  <aoliva@redhat.com>, DJ Delorie  <dj@redhat.com>
9923         * configure.in (FLAGS_FOR_TARGET): Use -nostdinc even for Canadian
9924         crosses, but add gcc/include to the header search path for them.
9926 2000-08-31  Alexandre Oliva  <aoliva@redhat.com>
9928         * ltconfig, ltmain.sh: Updated from libtool multi-language branch.
9929         * libtool.m4, ltcf-c.sh: Copied from libtool multi-language branch.
9930         * gettext.m4: New file, extracted from aclocal.m4.
9932 2000-08-22  Alexandre Oliva  <aoliva@redhat.com>
9934         * config-ml.in (CC, CXX): Avoid trailing whitespace.
9935         (LD_LIBRARY_PATH, SHLIB_PATH): Adjust for multilibs and export to
9936         sub-configures.
9938 2000-08-20  Doug Evans  <dje@casey.transmeta.com>
9940         * Makefile.in (ALL_MODULES): Add all-cgen.
9941         (CROSS_CHECK_MODULES,INSTALL_MODULES,CLEAN_MODULES): Similarily.
9942         (all-cgen): New target.
9943         (all-opcodes,all-sim): Depend on all-cgen.
9944         * configure.in (host_tools): Add cgen.
9945         Only configure cgen if --enable-cgen-maint.
9947 2000-08-17  Alexandre Oliva  <aoliva@redhat.com>
9949         * config-ml.in (CC, CXX): Don't introduce a leading space.
9951 2000-08-16  Alexandre Oliva  <aoliva@redhat.com>
9953         * configure.in (libstdcxx_flags): Use
9954         libstdc++-v3/src/libstdc++.INC.
9956 2000-08-15  Alexandre Oliva  <aoliva@redhat.com>
9958         * configure.in (libstdcxx_flags): Use libstdc++-v3/src/INCLUDES.
9960 2000-08-11  Jason Merrill  <jason@redhat.com>
9962         * configure.in (CC_FOR_TARGET, CHILL_FOR_TARGET,
9963         CXX_FOR_TARGET): Add -B$$r/gcc/ here.
9964         (FLAGS_FOR_TARGET): Not here.
9965         (CHILL_FOR_TARGET, CXX_FOR_TARGET): Don't check the list of languages.
9967 2000-08-07  DJ Delorie  <dj@redhat.com>
9969         * configure.in (FLAGS_FOR_TARGET): invert test for xgcc, should mean
9970         "if we're also building gcc, and it's a gcc that will run on the
9971         build machine, we want to use its includes instead of the system's
9972         default includes".
9974 2000-08-03  Alexandre Oliva  <aoliva@redhat.com>
9976         * configure.in (libstdcxx_flags): Don't use `"'.
9978         * config-ml.in: Adjust multilib search paths to the
9979         appropriate multilib tree.
9981 2000-08-02  Alexandre Oliva  <aoliva@redhat.com>
9983         * configure.in (CHILL_FOR_TARGET, CXX_FOR_TARGET): Convert blanks to
9984         commas in $LANGUAGES.
9986 2000-08-01  Alexandre Oliva  <aoliva@redhat.com>
9988         * configure.in (qCXX_FOR_TARGET): Use echo instead of expr.
9990 2000-07-31  Alexandre Oliva  <aoliva@redhat.com>
9992         * configure.in (qCXX_FOR_TARGET): Quote `&' characters in
9993         CXX_FOR_TARGET for sed.
9995 2000-07-30  Alexandre Oliva  <aoliva@redhat.com>
9997         * configure.in (CC_FOR_TARGET, CHILL_FOR_TARGET, CXX_FOR_TARGET):
9998         Do not override if already set in the environment or in configure.
9999         Don't duplicate $(FLAGS_FOR_TARGET) if it already appears in them.
10000         (FLAGS_FOR_TARGET): Don't use host directories on Canadian crosses.
10002 2000-07-27  Alexandre Oliva  <aoliva@redhat.com>
10004         * Makefile.in (FLAGS_FOR_TARGET): New macro.
10005         (GCC_FOR_TARGET): Use it.
10006         (CC_FOR_TARGET, CXX_FOR_TARGET, CHILL_FOR_TARGET): Now defined...
10007         * configure.in: ... here.
10008         (FLAGS_FOR_TARGET): Define.  Add ld build dir to -L path.
10009         (libstdcxx_flags): Define and append to CXX_FOR_TARGET.
10011 2000-07-24  Alexandre Oliva  <aoliva@redhat.com>
10013         * Makefile.in (configure-target-libf2c): Depend on $(ALL_GCC).
10014         (configure-target-libchill, configure-target-libobjc): Likewise.
10016         * configure.in: Use the same cache file for all target libs.
10017         * config-ml.in: But different cache files per multilib variant.
10019 2000-07-23  Michael Sokolov  <msokolov@ivan.Harhan.ORG>
10021         * configure (topsrcdir): Don't use dirname.
10023 2000-07-20  Jason Merrill  <jason@redhat.com>
10025         * configure.in: Remove all references to libg++ and librx.
10027         * configure, configure.in, Makefile.in: Unify gcc and binutils.
10029 2000-07-20  Hans-Peter Nilsson  <hp@axis.com>
10031         * config.sub: Update to subversions version 2000-07-06.
10033 2000-07-12  Andrew Haley  <aph@cygnus.com>
10035         * configure.in (host_makefile_frag): Use mh-ia64pic on IA-64 hosts.
10036         (target_makefile_frag): Use mt-ia64pic on IA-64 targets.
10038 2000-07-07  Phil Edwards  <pme@sourceware.cygnus.com>
10040         * symlink-tree:  Check number of arguments.
10042 2000-06-06  Andrew Cagney  <cagney@b1.cygnus.com>
10044         * texinfo/texinfo.tex: Update to version 2000-05-28.15.
10046 2000-07-05  Jim Wilson  <wilson@cygnus.com>
10048         * Makefile.in (CXX_FOR_TARGET): Add libstdc++ to the library
10049         search path for a g++ extracted from the build tree.  This
10050         will allow link tests run by configure scripts in
10051         subdirectories to succeed.
10053 2000-07-01  Koundinya K  <kk@ddeorg.soft.net>
10055         * ltconfig: Add support for mips-dde-sysv4.2MP
10057 2000-06-28  Corinna Vinschen  <vinschen@cygnus.com>
10059         * ltconfig: Check for host_os beeing one of `cygwin', `mingw' or
10060         `os2'. Force ac_cv_exeext to be ".exe" in that case.
10062 2000-06-19  Timothy Wall  <twall@cygnus.com>
10064         * configure.in (noconfigdirs): Set noconfigdirs for tic54x target.
10065         * config.sub: Add tic54x target.
10067 2000-06-07  Phillip Thomas  <pthomas@suse.de>
10069         * README-maintainer-mode: New file: Contains notes on using
10070         --enable-maintainer-mode with binutils.
10072 2000-05-29  Andrew Cagney  <cagney@b1.cygnus.com>
10074         * texinfo/texinfo.tex: Update. Version from makeinfo 4.0.
10076 2000-05-30  Andrew Cagney  <cagney@b1.cygnus.com>
10078         * config.sub: Import CVS version 1.167 Tue May 30 09:00:07 2000.
10079         * config.guess: Import CVS version 1.148 Tue May 30 09:00:06 2000
10081 20000-05-21  H.J. Lu  (hjl@gnu.org)
10083         * Makefile.in (CC_FOR_TARGET): Make sure as/ld in the gcc
10084         directory are used if they exist. Make sure
10085         $(build_tooldir)/include is searched for header files,
10086         $(build_tooldir)/lib/ for library files.
10087         (GCC_FOR_TARGET): Likewise.
10088         (CXX_FOR_TARGET): Likewise.
10090 2000-05-18  Jeffrey A Law  (law@cygnus.com)
10092         * configure.in (hppa*64*-*-*): Do build ld for this configuration.
10094 2000-05-17  Alexandre Oliva  <aoliva@cygnus.com>
10096         * Makefile.in (configure-target-libiberty): Depend on
10097         configure-target-newlib.
10099 2000-05-16  Alexandre Oliva  <aoliva@cygnus.com>
10101         * configure.in, Makefile.in: Merge all libffi-related
10102         configury stuff from the libgcj tree.
10104 2000-05-16  Andrew Cagney  <cagney@b1.cygnus.com>
10106         Thu Apr 27 11:01:48 2000 Andrew Cagney <cagney@b1.cygnus.com>:
10107         * Makefile.in (do-tar-bz2, do-md5sum): Skip CVS directories.
10109 2000-05-16  Andrew Cagney  <cagney@b1.cygnus.com>
10111         Wed Apr 26 17:03:53 2000 Andrew Cagney <cagney@b1.cygnus.com>:
10112         * Makefile.in (do-djunpack): New target. Update djunpack.bat with
10113         current version information.  Add to proto-toplev directory.
10114         (gdb-taz): Build do-djunpack.
10116 2000-05-15  David Edelsohn  <edelsohn@gnu.org>
10118         * configure.in: Special case powerpc*-*-aix* target_makefile_frag.
10120 2000-05-13 Alexandre Oliva  <oliva@lsd.ic.unicamp.br>
10122         * ltmain.sh: Preserve in relink_command any environment
10123         variables that may affect the linker behavior.
10125 2000-05-12  Jeffrey A Law  (law@cygnus.com)
10127         * config.sub (basic_machine): Recognize hppa64 as a valid cpu type.
10129 2000-05-10  Jim Wilson  <wilson@cygnus.com>
10131         * configure.in (ia64*-*-elf*): Add gdb and friends to noconfigdirs.
10133 2000-05-08  Eli Zaretskii  <eliz@is.elta.co.il>
10135         * djunpack.bat: Change the Sed script to replace @V@ in fnchange.lst
10136         with the version name.
10138 2000-05-01  Benjamin Kosnik  <bkoz@cygnus.com>
10140         * config.if: Tweak.
10142 2000-04-23  Eli Zaretskii  <eliz@is.elta.co.il>
10144         * djunpack.bat: New file.
10146 2000-04-19  Andrew Cagney  <cagney@b1.cygnus.com>
10148         * Makefile.in (taz, gdb-taz, gas.tar.bz2, binutils.tar.bz2,
10149         gas+binutils.tar.bz2, libg++.tar.bz2, gnats.tar.bz2, gdb.tar.bz2,
10150         dejagnu.tar.bz2, gdb+dejagnu.tar.bz2, insight.tar.bz2,
10151         insight+dejagnu.tar.bz2, newlib.tar.bz2): Pass MD5PROG to sub-make.
10153 2000-04-16  Dave Pitts  <dpitts@cozx.com>
10155         * config.sub (case $basic_machine): Change default for "ibm-*"
10156         to "openedition".
10158 2000-04-12  Andrew Cagney  <cagney@b1.cygnus.com>
10160         * Makefile.in (gdb-taz): New target.  GDB specific archive.
10161         (do-md5sum): New target.
10162         (MD5PROG): Define.
10163         (PACKAGE): Default to TOOL.
10164         (VER): Default to a shell script.
10165         (taz): Rewrite target.  Move real work to do-proto-toplev.  Include
10166         md5 checksum generation.
10167         (do-proto-toplev): New target. Create $(PACKAGE)-$(VER) link.
10168         (do-tar-bz2): Delete creation of $(PACKAGE)-$(VER) link.
10169         (gdb.tar.bz2, dejagnu.tar.bz2, gdb+dejagnu.tar.bz2,
10170         insight.tar.bz2): Use gdb-taz to create archive.
10172 2000-04-07  Andrew Cagney  <cagney@b1.cygnus.com>
10174         * configure (warn_cflags): Delete.
10176 2000-04-05  Benjamin Kosnik  <bkoz@cygnus.com>
10177             Martin v. Loewis  <martin@loewis.home.cs.tu-berlin.de>
10179         * configure.in (enable_libstdcxx_v3): Add.
10180         (target_libs): Add bits here to switch between libstdc++-v2 and
10181         libstdc++-v3.
10182         * config.if: And this file too.
10183         * Makefile.in: Add libstdc++-v3 targets.
10185 2000-04-05  Michael Meissner  <meissner@redhat.com>
10187         * config.sub (d30v): Add d30v as a basic machine type.
10189 2000-03-29  Jason Merrill  <jason@casey.cygnus.com>
10191         * configure.in: -linux-gnu*, not -linux-gnu.
10193 2000-03-03  Andrew Cagney  <cagney@b1.cygnus.com>
10195         * Makefile.in (taz): Set PACKAGE to TOOL when not defined.
10196         (do-tar-bz2): Replace TOOL with PACKAGE.
10197         (gdb.tar.bz2): Remove GDBTK from GDB package.
10198         (gdb+dejagnu.tar.bz2, insight.tar.bz2, insight+dejagnu.tar.bz2,
10199         dejagnu.tar.bz2): New packages.
10201 2000-02-27  Andreas Jaeger  <aj@suse.de>
10203         * configure.in: Add entry for mips*-*-linux*, move catch all
10204         *-*-*linux* entry below this one.
10206 2000-02-27  Ian Lance Taylor  <ian@zembu.com>
10208         * ltconfig, ltmain.sh: Update to libtool 1.3.4.
10210 2000-02-24  Nick Clifton  <nickc@cygnus.com>
10212         * config.sub: Support an OS of "wince".
10214 2000-02-24  Andrew Cagney  <cagney@b1.cygnus.com>
10216         * config.guess, config.sub: Updated to match config's 2000-02-15
10217         version.
10219 2000-02-23  Linas Vepstas <linas@linas.org>
10221         * config.sub: Add support for Linux/IBM 370.
10222         * configure.in: Likewise.
10224 2000-02-22  Nick Clifton  <nickc@cygnus.com>
10226         * configure.in: Add mips-pe, sh-pe and arm-wince-pe targets.
10228 2000-02-20  Christopher Faylor <cgf@cygnus.com>
10230         * config.guess: Guess "cygwin" rather than "cygwin32".
10232 2000-02-16  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
10234         * configure (gcc_version): When setting, narrow search to
10235         lines containing `version_string'.
10237 2000-02-15  Denis Chertykov  <denisc@overta.ru>
10239         * config.sub: Add support for avr target.
10241 2000-02-01  Hans-Peter Nilsson  <hp@bitrange.com>
10243         * config.sub: Add mmix-knuth-mmixware.
10245 2000-01-27  Christopher Faylor <cgf@redhat.com>
10247         * Makefile.in (CC_FOR_TARGET): Add new winsup directory
10248         structure stuff to -L library search.
10249         (CXX_FOR_TARGET): Ditto.
10250         (CROSS_CHECK_MODULES): Fix spelling mistake.
10252 2000-01-24  Mark Mitchell  <mark@codesourcery.com>
10254         * Makefile.in (CXX_FOR_TARGET): Use g++, not xgcc, to invoke
10255         the C++ compiler.
10257 2000-01-12  Richard Henderson  <rth@cygnus.com>
10259         * configure.in: Don't build some bits for beos.
10261 2000-01-12  Joel Sherrill (joel@OARcorp.com)
10263         * Makefile.in (CC_FOR_TARGET): Use newlib libraries as well
10264         as include files.
10266 2000-01-06  Geoff Keating  <geoffk@cygnus.com>
10268         * configure.in: Use mt-aix43 to handle *_TARGET defs,
10269         not mh-aix43.
10271 1999-12-14  Richard Henderson  <rth@cygnus.com>
10273         * config.guess (alpha-osf, alpha-linux): Detect ev67.
10274         * config.sub: Accept alphaev[78], alphaev8.
10276 1999-12-03  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>
10278         * config.guess, config.sub: Update from autoconf.
10280 Tue Nov 23 00:57:41 1999  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
10282         * config-ml.in (sparc*-*-*): Disable sparcv9 support if the
10283         necessary libraries are missing.
10285 1999-10-25  Andreas Schwab  <schwab@suse.de>
10287         * configure: Fix quoting inside arguments of eval.
10289 1999-10-21  Nick Clifton  <nickc@cygnus.com>
10291         * config-ml.in: Allow suppression of some ARM multilibs.
10293 Tue Sep  7 23:33:57 1999  Linas Vepstas  <linas@linas.org>
10295         * config.guess: Add OS/390 match pattern.
10296         * config.sub: Add mvs, openedition targets.
10297         * configure.in (i370-ibm-opened*): New.
10299 1999-09-04  Steve Chamberlain  <sac@pobox.com>
10301         * config.sub: Add support for configuring for pj.
10303 1999-08-31  Nick Clifton  <nickc@cygnus.com>
10305         * config.sub (maybe_os): Add support for configuring for fr30.
10307 1999-08-25  Nick Clifton  <nickc@cygnus.com>
10309         * configure.in: Do not configure or build ld for AIX
10310         platforms.  ld is known to be broken on these platforms.
10312 Wed Aug 25 01:12:25 1999  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
10314         * config-ml.in: Pass compiler flag corresponding to multidirs to
10315         subdir configures.
10317 1999-08-09  Ian Lance Taylor  <ian@zembu.com>
10319         * Makefile.in (LDFLAGS): Define.
10321 1999-08-08  Mumit Khan  <khan@xraylith.wisc.edu>
10323         * configure.in (i[3456]-*-mingw32*): Don't put gprof in
10324         noconfigdirs.
10325         (*-*-cygwin*): Likewise.
10327 1999-08-08  Ian Lance Taylor  <ian@zembu.com>
10329         * mkdep: New file.
10330         * Makefile.in (GAS_SUPPORT_DIRS): Add mkdep.
10331         (BINUTILS_SUPPORT_DIRS): Add mkdep.
10333         From Eli Zaretskii <eliz@is.elta.co.il>:
10334         * configure (tmpfile): Change cONf$$ to cNf$$ to avoid an overly
10335         long file name when using DJGPP on MS-DOS.
10337 Wed Aug  4 02:07:14 1999  Jeffrey A Law  (law@cygnus.com)
10339         * config.sub (vxworks case): Use os=-vxworks, not os=vxworks.
10341 1999-07-30  Alan Modra  <alan@spri.levels.unisa.edu.au>
10343         * Makefile.in (check-target-libio): Remove all-target-libstdc++
10344         dependency as this causes "make check" to globally "make all"
10346 Tue Jun 22 23:45:18 1999  Tom Tromey  <tromey@cygnus.com>
10348         * configure.in (target_libs): Added target-zlib.
10349         * Makefile.in (ALL_TARGET_MODULES): Added zlib.
10350         (CONFIGURE_TARGET_MODULES): Likewise.
10351         (CHECK_TARGET_MODULES): Likewise.
10352         (INSTALL_TARGET_MODULES): Likewise.
10353         (CLEAN_TARGET_MODULES): Likewise.
10354         (configure-target-zlib): New target.
10355         (all-target-zlib): Likewise.
10356         (all-target-libjava): Depend on all-target-zlib.
10357         (configure-target-libjava): Depend on configure-target-zlib.
10359         * Makefile.in (configure-target-libjava): Depend on
10360         configure-target-newlib.
10361         (configure-target-boehm-gc): New target.
10362         (configure-target-qthreads): New target.
10364         * configure.in (target_libs): Added target-qthreads.
10365         * Makefile.in (ALL_TARGET_MODULES): Added qthreads.
10366         (CONFIGURE_TARGET_MODULES): Likewise.
10367         (CHECK_TARGET_MODULES): Likewise.
10368         (INSTALL_TARGET_MODULES): Likewise.
10369         (CLEAN_TARGET_MODULES): Likewise.
10370         (all-target-qthreads): New target.
10371         (configure-target-libjava): Depend on configure-target-qthreads.
10372         (all-target-libjava): Depend on all-target-qthreads.
10374         * Makefile.in (ALL_TARGET_MODULES): Added libjava, boehm-gc.
10375         (CONFIGURE_TARGET_MODULES): Likewise.
10376         (CHECK_TARGET_MODULES): Likewise.
10377         (INSTALL_TARGET_MODULES): Likewise.
10378         (CLEAN_TARGET_MODULES): Likewise.
10379         (all-target-libjava): New target.
10380         (all-target-boehm-gc): Likewise.
10381         * configure.in (target_libs): Added libjava, boehm-gc.
10383 1999-07-22  Ian Lance Taylor  <ian@zembu.com>
10385         * Makefile.in (binutils.tar.bz2): Don't pass makeall.bat and
10386         configure.bat in SUPPORT_FILES.
10387         (gas+binutils.tar.bz2): Likewise.
10389         * makeall.bat: Remove; obsolete.
10391 1999-07-21  Ian Lance Taylor  <ian@zembu.com>
10393         From Mark Elbrecht:
10394         * configure.bat: Remove; obsolete.
10396 1999-07-11  Ian Lance Taylor  <ian@zembu.com>
10398         * configure: Add -W -Wall to the default CFLAGS when compiling with
10399         gcc.
10401 Thu Jul  8 12:32:23 1999  John David Anglin <dave@hiauly1.hia.nrc.ca>
10403         * configure.in: Build ld, binutils & gas for hppa*-*-linux-gnu*.
10405 1999-06-30  Mark Mitchell  <mark@codesourcery.com>
10407         * configure.in: Build ld on IRIX6.
10409 1999-06-12  Ian Lance Taylor  <ian@zembu.com>
10411         * Makefile.in: Change distribution targets to use bzip2 instead of
10412         gzip.
10413         (TEXINFO_SUPPORT): Set to just texinfo/texinfo.tex.
10414         (taz): Don't use texinfo/gpl.texinfo or texinfo/lgpl.texinfo.
10416 1999-06-04  Nick Clifton  <nickc@cygnus.com>
10418         * config.sub: Add mcore target.
10420 1999-05-30  Cort Dougan  <cort@cs.nmt.edu>
10422         * config.guess (ppc-*-linux-gnu): Also use ld emul elf32ppclinux.
10424 1999-05-25  H.J. Lu  (hjl@gnu.org)
10426         * config.guess (dummy): Changed to $dummy.
10428 1999-05-24  Nick Clifton  <nickc@cygnus.com>
10430         * config.sub: Tidied up case statements.
10432 1999-05-22  Ben Elliston  <bje@cygnus.com>
10434         * config.guess: Handle NEC UX/4800. Contributed by Jiro Takabatake
10435         <jiro@din.or.jp>.
10437         * config.guess: Merge with FSF version. Future changes will be
10438         more accurately recorded in this ChangeLog.
10439         * config.sub: Likewise.
10441 1999-05-20   Stephen L Moshier  <moshier@world.std.com>
10443          * Makefile.in (GCC_FOR_TARGET): Add -I$(build_tooldir)/include.
10445 1999-04-30  Tom Tromey  <tromey@cygnus.com>
10447         * ltmain.sh: [mode link] Always use CC given by ltconfig.
10449 1999-04-23  Tom Tromey  <tromey@cygnus.com>
10451         * ltconfig, ltmain.sh: Update to libtool 1.2f.
10453 1999-04-20  Drew Moseley  <dmoseley@cygnus.com>
10455         * configure.in (noconfigdirs): Don't build libstub for arm-elf targets.
10456         (noconfigdirs): Don't build any bsp stuff for for arm-oabi targets.
10457         Bad merge removed these two changes.
10459 Tue Apr 13 22:50:54 1999  Donn Terry (donn@interix.com)
10460                           Martin Heller (Ing.-Buero_Heller@t-online.de)
10462         * config.guess (interix Alpha): Add.
10464 1999-04-11  Richard Henderson  <rth@cygnus.com>
10466         * configure.in (i?86-*-beos*): Do config gperf; don't config
10467         gdb, newlib, or libgloss.
10469 1999-04-11  Alexandre Oliva  <oliva@dcc.unicamp.br>
10471         * config-ml.in: On mips*-*-*, if multidirs contains mabi=64, try to
10472         link a trivial program with -mabi=64.  If it fails, remove mabi=64
10473         from multidirs.
10475 1999-04-10  Philipp Thomas  (kthomas@gwdg.de)
10477         * config.sub: Set basic_machine to i586 when target_alias = k6-*.
10479 1999-04-08  Nick Clifton  <nickc@cygnus.com>
10481         * config.sub: Add support for mcore targets.
10483 1999-04-07  Michael Meissner  <meissner@cygnus.com>
10485         * configure.in (d30v-*): Use config/mt-d30v as makefile fragment,
10486         not mt-ospace, in order to shut up assembler warning about using
10487         symbols that are named the same as registers.
10489 1999-04-07  Drew Moseley  <dmoseley@cygnus.com>
10491         * Makefile.in (all-target-cygmon): Added all-target-bsp to the
10492         dependency list for all-target-cygmon.
10494 1999-04-05  Doug Evans  <devans@casey.cygnus.com>
10496         * config-ml.in: Check $host, not $target, for selective multilibs.
10497         (arm-*-*): Allow disabling of biendian, h/w fp, 26 bit apcs,
10498         thumb interworking, and underscore prefix multilibs.
10500 1999-04-04  Ian Lance Taylor  <ian@zembu.com>
10502         * missing: Update to version from current automake.
10504 Fri Apr  2 15:11:32 1999  H.J. Lu  (hjl@gnu.org)
10506         * configure (gxx_include_dir): Removed.
10508         * configure.in (gxx_include_dir): Handle it.
10509         * Makefile.in: Likewise.
10511 1999-03-29  Gavin Romig-Koch  <gavin@cygnus.com>
10513         * config.sub (mips64vr4111,mips64vr4111el) Add.
10515 1999-03-21  Ben Elliston  <bje@cygnus.com>
10517         * config.guess: Correct typo for detecting ELF on FreeBSD.
10519 Thu Mar 18 00:17:50 1999  Mark Elbrecht <snowball3@usa.net>
10521         * configure.in (pc-msdosdjgpp): Set host_makefile_frag to
10522         config/mh-djgpp.
10524 Thu Mar 11 18:37:23 1999  Drew Moseley  <dmoseley@cygnus.com>
10526         * Makefile.in (all-target-bsp): Added all-gcc all-binutils and
10527         all-target-newlib to dependency list for all-target-bsp.
10529 Thu Mar 11 01:19:31 1999  Mumit Khan  <khan@xraylith.wisc.edu>
10531         * config.sub: Add i386-uwin support.
10532         * config.guess: Likewise.
10534 Thu Mar 11 01:07:55 1999  Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
10536         * configure.in: cleanup, add mh-*pic handling for arm, special
10537         case powerpc*-*-aix*
10539 Wed Mar 10 18:35:07 1999  Jeff Johnston  <jjohnstn@cygnus.com>
10541         * configure.in (noconfigdirs): Removed target-libgloss so libnosys.a
10542         can be built.
10544 Wed Mar 10 17:39:09 1999  Drew Moseley  <dmoseley@cygnus.com>
10546         * configure.in: Added bsp support to arm-*-coff and arm-*-elf
10547         targets.
10549 1999-03-02  Nick Clifton  <nickc@cygnus.com>
10551         * config.sub: Rename CYGNUS LOCAL to EGCS LOCAL
10553 1999-02-28  Geoffrey Noer  <noer@cygnus.com>
10555         * config.sub: Check for "cygwin*" rather than "cygwin32*"
10557 1999-02-24  Nick Clifton  <nickc@cygnus.com>
10559         * config.sub: Fix typo in arm recognition.
10561 1999-02-24  Drew Moseley  <dmoseley@cygnus.com>
10563         * configure.in (noconfigdirs): Changed target_configdirs to
10564         include target-bsp only for m68k-*-elf* and m68k-*-coff*
10565         rather than m68k-*-* since it is not known to work on
10566         m68k-aout. Ditto for arm-*-*oabi.
10568 1999-02-24  Stan Shebs  <shebs@andros.cygnus.com>
10570         * configure.in (*-*-windows*): Remove, no longer used.
10572 1999-02-19  Ben Elliston <bje@cygnus.com>
10574         * config.guess: Automatically recognise ELF on FreeBSD. From Niall
10575         Smart and improved by Andrew Cagney.
10577 1999-02-18  Marc Espie <espie@cvs.openbsd.org>
10579         * config.guess: Recognize openbsd-*-hppa.
10581 1999-02-17  H.J. Lu  (hjl@gnu.org)
10583         * Makefile.in (REALLY_SET_LIB_PATH): Append $$$(RPATH_ENVVAR)
10584         only if it is not empty.
10586 1999-02-17  Nick Clifton  <nickc@cygnus.com>
10588         Patch from: Scott Bambrough <scottb@corelcomputer.com>
10590         * config.guess: Modified to recognize uname's armv* syntax.
10592         * config.sub: Modified to recognize uname's armv* syntax.
10594 1999-02-17  Mark Salter  <msalter@cygnus.com>
10596         * configure.in: Added target-bsp for sparclite.
10598 1999-02-08  Richard Henderson  <rth@cygnus.com>
10600         * config.sub: Recognize alphapca5[67] and up to alphaev8.
10602 1999-02-08  Nick Clifton  <nickc@cygnus.com>
10604         * configure.in: Add support for strongarm port.
10605         * config.sub: Add support for strongarm target.
10607 1999-02-07  Mumit Khan  <khan@xraylith.wisc.edu>
10609         * configure.in (*-*-cygwin32*): Use config/mh-cygwin instead of
10610         the old name config/mh-cygwin32.
10611         Enable texinfo.
10613 1999-02-04  Ian Lance Taylor  <ian@cygnus.com>
10615         * configure.in: Do build ld for ix86 Solaris.
10617 1999-02-02  Jim Wilson  <wilson@cygnus.com>
10619         * Makefile.in (EXTRA_GCC_FLAGS):  Set AR to $AR instead of
10620         $AR_FOR_TARGET.  Likewise for RANLIB.
10622 1999-02-02  Catherine Moore  <clm@cygnus.com>
10624         * config.sub (oabi):  Recognize.
10625         * configure.in (arm-*-oabi):  Handle.
10627 1999-01-30  Robert Lipe  (robertlipe@usa.net)
10629         * config.guess: Improve detection of i686 on UnixWare 7.
10631 1999-01-30  Mumit Khan  <khan@xraylith.wisc.edu>
10633         * config.guess: Add support for i386-pc-interix.
10634         * config.sub: Likewise.
10635         * configure.in: Likewise.
10637 1999-01-18  Christopher Faylor <cgf@cygnus.com>
10639         * Makefile.in: Remove unneeded all-target-libio from
10640         from all-target-winsup target since it is now unneeded.
10641         Add all-target-libtermcap in its place since it is now
10642         needed.
10644 1998-12-30  Christopher Faylor <cgf@cygnus.com>
10646         * configure.in: makefile stub for cygwin target is probably
10647         unnecessary.  Remove it for now.
10649 1998-12-30  Christopher Faylor <cgf@cygnus.com>
10651         * configure.in: libtermcap.a should be built when cygwin is the
10652         target as well as the host.
10653         * config.guess: Allow mixed case in cygwin uname output.
10654         * Makefile.in: Add libtermcap target.
10656 1998-12-23  Jeffrey A Law  (law@cygnus.com)
10658         * config.sub: Clean up handling of hppa2.0.
10660 1998-12-22  Rodney Brown  (rodneybrown@pmsc.com)
10662         * config.guess: Use C code to identify more HP machines.
10664 Thu Dec 17 01:22:30 1998  Jeffrey A Law  (law@cygnus.com)
10666         * config.sub: Handle hppa2.0.
10668 Tue Dec 15 17:02:58 1998  Bob Manson  <manson@charmed.cygnus.com>
10670         * configure.in: Add cygmon for x86-coff and x86-elf. Configure
10671         cygmon for all sparclite targets, regardless of object format.
10673 1998-12-15  Mark Salter  <msalter@cygnus.com>
10675         * configure.in: Added target-bsp for several target architectures.
10677         * Makefile.in: Added rules for bsp.
10679 Fri Dec  4 01:34:02 1998  Jeffrey A Law  (law@cygnus.com)
10681         * config.guess: Improve detection of hppa2.0 processors.
10683 Fri Dec  4 01:33:05 1998  Niall Smart <nialls@euristix.ie>
10685         * config.guess: Recognize FreeBSD using ELF automatically.
10687 1998-11-26  Manfred Hollstein  <manfred@s-direktnet.de>
10689         * configure (skip-this-dir): Add handling for new shell script, which
10690         might be created by a sub-directory's configure to indicate, this particular
10691         directory is "unwanted".
10692         * Makefile.in ($(CONFIGURE_TARGET_MODULES)): Likewise.
10694 Wed Nov 18 18:28:45 1998  Geoffrey Noer  <noer@cygnus.com>
10696         * ltconfig: import from libtool, after changing libtool to
10697         account for the cygwin name change.
10699 Wed Nov 18 18:09:14 1998  Geoffrey Noer  <noer@cygnus.com>
10701         * Makefile.in: CC_FOR_TARGET and CXX_FOR_TARGET should also
10702         include newlib/libc/sys/cygwin and newlib/libc/sys/cygwin32.
10704 Wed Nov 18 20:13:29 1998  Christopher Faylor <cgf@cygnus.com>
10706         * configure.in: Add libtermcap to list of cygwin dependencies.
10708 1998-11-17  Geoffrey Noer  <noer@cygnus.com>
10710         * Makefile.in: modify CC_FOR_TARGET and CXX_FOR_TARGET so that
10711         they include winsup/include when it's a cygwin target.
10713 1998-11-12  Tom Tromey  <tromey@cygnus.com>
10715         * configure.in (host_tools): Added zip.
10716         * Makefile.in (all-target-libjava): Depend on all-zip.
10717         (all-zip): New target.
10718         (ALL_MODULES): Added all-zip.
10719         (NATIVE_CHECK_MODULES): Added check-zip.
10720         (INSTALL_MODULES): Added install-zip.
10721         (CLEAN_MODULES): Added clean-zip.
10723 1998-11-12  Geoffrey Noer  <noer@cygnus.com>
10725         * Makefile.in: lose "32" from comment about cygwin.
10727 1998-11-05  Nick Clifton  <nickc@cygnus.com>
10729         * configure.in: Use -Os to build target libraries for the fr30.
10731 1998-11-04  Dave Brolley  <brolley@cygnus.com>
10733         * config.sub: Add fr30.
10735 1998-11-02  Geoffrey Noer  <noer@cygnus.com>
10737         * configure.in: drop "32" from config/mh-cygwin32.  Check
10738         cygwin* instead of cygwin32*.
10739         * config.sub: Check cygwin* instead of cygwin32*.
10741 1998-10-22  Robert Lipe  <robertl@dgii.com>
10743         * config.guess: Match any version of Unixware7.
10745 1998-10-20  Syd Polk  <spolk@cygnus.com>
10747         * Makefile.in configure.in: Add the ability to use tcl8.1 and tk8.1
10748         if desired.
10750 1998-10-18  Jeffrey A Law  (law@cygnus.com)
10752         * config.if (cxx_interface, libstdcxx_interface): Do not try to set
10753         these if the appropriate directories and files to not exist.
10755 1998-10-14  Jeffrey A Law  (law@cygnus.com)
10757         * Makefile.in (DEVO_SUPPORT): Add config.if.
10759 1998-10-13  Manfred Hollstein  <manfred@s-direktnet.de>
10761         * configure: Add pattern to replace "build_tooldir"'s
10762         definition in the generated Makefile with "tooldir"'s
10763         actual value.
10765 Tue Oct 13 09:17:06 1998  Jeffrey A Law  (law@cygnus.com)
10767         * config.sub: Bring back lost sparcv9.
10769         * Makefile.in (all-snvavigator): Remove all-flexlm dependency.
10771 Mon Oct 12 12:09:44 1998  Jeffrey A Law  (law@cygnus.com)
10773         * Makefile.in (CHILL_FOR_TARGET): Mirror recent changes to
10774         CC_FOR_TARGET and friends.
10776 Mon Oct 12 12:09:30 1998  Alexandre Oliva  <oliva@dcc.unicamp.br>
10778         * Makefile.in (build_tooldir): New variable, same as tooldir.
10779         (CC_FOR_TARGET, GCC_FOR_TARGET, CXX_FOR_TARGET): Add
10780         -B$(build_tooldir)/bin/.
10781         (BASE_FLAGS_TO_PASS): Pass build_tooldir down.
10783 Wed Sep 30 22:20:50 1998  Robert Lipe  <robertl@dgii.com>
10785         * config.sub: Add support for i[34567]86-pc-udk.
10786         * configure.in: Likewise.
10788 Wed Sep 30 19:23:48 1998  Geoffrey Noer  <noer@cygnus.com>
10790         * Makefile.in: add bzip2 package building bits for user
10791         tools module
10792         * configure.in: ditto
10794 Wed Sep 30 03:00:05 1998  Jeffrey A Law  (law@cygnus.com)
10796         * Makefile.in (TARGET_CONFIGDIRS): Add libobjc.
10797         (ALL_TARGET_MODULES): Add all-target-libobjc.
10798         (CONFIGURE_TARGET_MODULES, CHECK_TARGET_MODULES): Similarly.
10799         (INSTALL_TARGET_MODULES, CLEAN_TARGET_MODULES): Similarly.
10800         (all-target-libchill): Add dependencies.
10801         * configure.in (target_libs): Add libchill.
10803 1998-09-30  Manfred Hollstein  <manfred@s-direktnet.de>
10805         * configure.in (target_subdir): Remove duplicate line.
10807 Tue Sep 29 22:45:41 1998  Felix Lee  <flee@cygnus.com>
10809         * Makefile.in (all-automake): fix dependencies.
10811 Mon Sep 28 04:04:27 1998  Jeffrey A Law  (law@cygnus.com)
10813         * configure.in: Minor cleanups for building in the $(target_alias)
10814         subdir.
10816 1998-09-22  Jim Wilson  <wilson@cygnus.com>
10818         * Makefile.in (bootstrap): Set r and s before make all.  Use
10819         BASE_FLAGS_TO_PASS in make all.
10820         (cross): Likewise.
10822 1998-09-20  Mark Mitchell  <mark@markmitchell.com>
10824         * Makefile.in (bootstrap): Pass TARGET_FLAGS_TO_PASS to `make all'.
10826 Sun Sep 20 00:13:02 1998  Richard Henderson  <rth@cygnus.com>
10828         * config.sub: Fix typo in last change.
10830 1998-09-19  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
10832         * config.sub: Add support for C4x target.
10833         * configure.in: Likewise.
10835 1998-09-13  David S. Miller  <davem@pierdol.cobaltmicro.com>
10837         * config.sub: Recognize sparcv9 just like sparc64.
10839 Wed Sep  9 15:44:52 1998  Robert Lipe  <robertl@dgii.com>
10841         * config.guess: Match "Pent II" or "PentII" for OpenServer.
10843 Tue Sep  8 01:18:39 1998  Jeffrey A Law  (law@cygnus.com)
10845         * config.guess: Correctly identify Pentium II sco boxes.
10847         * config.guess: Fix "tr" code.  From Weiwen Liu.
10849 Sat Sep  5 13:56:52 1998  John Hughes  <john@Calva.COM>
10851         * configure.in: Do not assume x86-svr4 or x86-unixware can handle
10852         stabs.
10854 Sat Sep  5 02:12:02 1998  Jeffrey A Law  (law@cygnus.com)
10856         * Makefile.in (TARGET_CONFIGDIRS): Add libchill.
10857         (ALL_TARGET_MODULES): Add all-target-libchill.
10858         (CONFIGURE_TARGET_MODULES, CHECK_TARGET_MODULES): Similarly.
10859         (INSTALL_TARGET_MODULES, CLEAN_TARGET_MODULES): Similarly.
10860         (all-target-libchill): Add dependencies.
10861         * configure.in (target_libs): Add libchill.
10863 Sun Aug 30 22:27:02 1998  Lutz Wohlrab <lutz.wohlrab@informatik.tu-chemnitz.de>
10865         * config.guess: Avoid assumptions about "tr" behaves when
10866         LANG is set to something other than English.
10868 Sun Aug 30 22:14:44 1998  H.J. Lu  (hjl@gnu.org)
10870         * configure (gxx_include_dir): Changed to
10871         '${prefix}/include/g++'-${libstdcxx_interface}.
10873         * config.if: New to determine the interfaces.
10875 Sun Aug 30 21:15:19 1998  Mark Klein (mklein@dis.com)
10877         * config.guess: Detect and handle MPE/IX.
10878         * config.sub: Deal with MPE/IX.
10880 Sat Aug 29 14:32:55 1998  David Edelsohn  <edelsohn@mhpcc.edu>
10882         * configure.in: Use mh-aix43.
10884 1998-07-29  Manfred Hollstein  <manfred@s-direktnet.de>
10886         * configure: Fix --without/--disable cases for gxx-include-dir.
10888 Fri Aug 28 12:28:26 1998  Per Bothner  <bothner@cygnus.com>
10890         * mdata-sh:  Imported.  Needed for automake support.
10892 Thu Aug 13 12:49:29 1998  H.J. Lu  <hjl@gnu.org>
10894         * Makefile.in (taz): Try "chmod -R og=u ." before
10895         "chmod og=u `find . -print`".
10897 Fri Jul 31 09:38:33 1998  Catherine Moore  <clm@cygnus.com>
10899         * configure.in: Add arm-elf and thumb-elf support.
10901 Mon Jul 27 16:23:58 1998  Doug Evans  <devans@canuck.cygnus.com>
10903         * Makefile.in: Undo previous patch.
10905 Fri Jul 24 19:55:24 1998  Doug Evans  <devans@canuck.cygnus.com>
10907         * Makefile.in (INSTALL_TARGET): Move EXTRA_TARGET_HOST_INSTALL_MODULES
10908         to here ...
10909         (install-no-fixedincludes): and here
10910         (INSTALL_MODULES): ... from here.
10912 Fri Jul 24 17:01:42 1998  Ian Lance Taylor  <ian@cygnus.com>
10914         * config.sub: Merge with FSF.
10916         * config.guess: Merge with FSF.
10918 Fri Jul 24 08:43:36 1998  Doug Evans  <devans@canuck.cygnus.com>
10920         * configure (extraconfigdirs): New variable.
10921         (SUBDIRS): Add extraconfigdirs and recurse on them too.
10922         * Makefile.in (all): Move higher in file.
10923         (EXTRA_TARGET_HOST_ALL_MODULES): New variable.
10924         (EXTRA_TARGET_HOST_{INSTALL,CHECK}_MODULES): New variables.
10925         (ALL_MODULES): Add EXTRA_TARGET_HOST_ALL_MODULES.
10926         (CROSS_CHECK_MODULES): Add EXTRA_TARGET_HOST_CHECK_MODULES.
10927         (INSTALL_MODULES): Add EXTRA_TARGET_HOST_INSTALL_MODULES.
10929 1998-07-23  Brendan Kehoe  <brendan@cygnus.com>
10931         * Makefile.in (all-target-libjava): Depend on all-gcc and
10932         all-target-newlib.
10933         (configure-target-libjava): Depend on $(ALL_GCC).
10935 Sat Jul 18 14:32:43 CDT 1998  Robert Lipe  <robertl@dgii.com>
10937         * config.guess: (*-pc-sco3.2v5) Add detection for Pentium II.
10938         (*-pc-unixware7) Add detection for Pentium II, Pentium Pro.
10940 Fri Jul 17 13:30:18 1998  Ian Lance Taylor  <ian@cygnus.com>
10942         * ylwrap: Change absolute path checks to check for DOS style path
10943         names.
10945         * ylwrap: Don't use a full path name if the source file is in the
10946         same directory.  From hjl@lucon.org (H.J. Lu).
10948         * config-ml.in: Default to being verbose, to match Feb 18 change to
10949         configure.
10951 Thu Jul 16 12:29:51 1998  Ian Lance Taylor  <ian@cygnus.com>
10953         Brought over from egcs:
10955         Sat Jun 27 22:46:32 1998  Jeffrey A Law  (law@cygnus.com)
10957         * configure.in (target_subdir): Set to ${target_alias} instead
10958         of "libraries".
10960         Mon Sep  1 16:45:44 1997  Jim Wilson  <wilson@cygnus.com>
10962         * configure.in (target_subdir): Set to libraries if enable_multilib.
10964 Wed Jul 15 01:00:54 1998  Ian Lance Taylor  <ian@cygnus.com>
10966         * Makefile.in ($(CONFIGURE_TARGET_MODULES)): If there are any
10967         multilibs, force reconfiguration the first time we create
10968         multilib.out in a subdirectory, in case TARGET_SUBDIR is `.'.
10970 Tue Jul 14 23:41:03 1998  Ian Lance Taylor  <ian@cygnus.com>
10972         * configure.in: Strip any --no option from CONFIG_ARGUMENTS, to
10973         avoid confusion with --no-recursion.
10975 Tue Jul 14 15:37:41 1998  Geoffrey Noer  <noer@cygnus.com>
10977         * configure.in: Win32 hosts shouldn't use install -x
10978         * install-sh: remove -x option, and special .exe-handling
10979         hack.
10981 Tue Jul 14 15:28:41 1998  Richard Henderson  <rth@cygnus.com>
10983         * config.guess: Recognize i586-pc-beos.
10984         * configure.in: Don't build some bits for beos.
10986 Tue Jul 14 13:22:18 1998  Ian Lance Taylor  <ian@cygnus.com>
10988         * configure: If CC is set but CFLAGS is not, and CC is gcc, make
10989         CFLAGS default to -O2.
10991         * ltmain.sh: Add some hacks to make SunOS --enable-shared work
10992         when using GNU ld.
10994 Fri Jul 10 13:18:23 1998  Ian Lance Taylor  <ian@cygnus.com>
10996         * ltmain.sh: Correct install when using a different shell.
10998 Tue Jul  7 15:24:38 1998  Ian Lance Taylor  <ian@cygnus.com>
11000         * ltconfig, ltmain.sh: Update to libtool 1.2b.
11002 Thu Jul  2 13:57:36 1998  Klaus Kaempf  <kkaempf@rmi.de>
11004         * makefile.vms: Update to build binutils/makefile.vms.  Add install
11005         target.
11007 Wed Jul  1 16:45:21 1998  Ian Lance Taylor  <ian@cygnus.com>
11009         * ltconfig: Update to correct AIX handling.
11011 Sat Jun 27 22:46:32 1998  Jeffrey A Law  (law@cygnus.com)
11013         * Makefile.in (BASE_FLAGS_TO_PASS): Add TARGET_SUBDIR.
11015         * configure.in (target_subdir): Set to ${target_alias} instead
11016         of "libraries".
11018 1998-06-26  Manfred Hollstein  <manfred@s-direktnet.de>
11020         * Makefile.in (BASE_FLAGS_TO_PASS): Add gcc_version_trigger.
11021         (Makefile): Depend on $(gcc_version_trigger).
11023         * configure (gcc_version): Change default initializer to empty
11024         string.
11025         (gcc_version_trigger): New variable; pass this variable down
11026         to subdir configures to enable them checking gcc's version
11027         themselves. Emit make macros for both gcc_version vars.
11028         (topsrcdir): Initialize reliably.
11029         (recursion line): Remove --with-gcc-version=${gcc_version}.
11031 1998-06-24  Manfred Hollstein  <manfred@s-direktnet.de>
11033         * configure (enable_version_specific_runtime_libs): Implement new flag
11034         --enable-version-specific-runtime-libs which installs C++ runtime stuff
11035         in $(libsubdir); emit definition in each generated Makefile.
11036         (gxx_include_dir): Initialize depending on
11037         $enable_version_specific_runtime_libs.
11039 1998-06-24  Manfred Hollstein  <manfred@s-direktnet.de>
11041         * configure (gcc_version): Initialize properly depending on
11042         how and where configure is started.
11043         (recursion line): Pass a --with-gcc-version=${gcc_version}
11044         to configures in subdirs.
11046 Wed Jun 24 16:01:59 1998  John Metzler  <jmetzler@cygnus.com>
11048         * configure.in (noconfigdirs): Add configure pattern for mips tx39
11049         cygmon
11051 Tue Jun 23 22:42:32 1998  Mark Alexander  <marka@cygnus.com>
11053         * configure.in: Add cygmon and libstub support for mn10200.
11055 1998-06-19  Manfred Hollstein  <manfred@s-direktnet.de>
11057         * configure (gcc_version): Add new variable describing the
11058         particular gcc version we're building.
11059         * Makefile.in (libsubdir): Add new macro for the directory
11060         in which the compiler finds executables, libraries, etc.
11061         (BASE_FLAGS_TO_PASS): Pass down gcc_version, target_alias
11062         and libsubdir.
11064 Fri Jun 19 02:36:59 1998  Alexandre Oliva <oliva@dcc.unicamp.br>
11066         * Makefile.in (local-clean): Remove *.log.
11067         (warning.log): Built with warn_summary from build.log.
11068         (mail-report.log): Run test_summary.
11069         (mail-report-with-warnings.log): Run test_summary including
11070         warning.log in the report.
11072 Thu Jun 18 11:26:03 1998  Robert Lipe  <robertl@dgii.com>
11074         * config.guess: Detection of Pentium II for *-sco-3.2v5*.
11076 Mon Jun 15 14:53:54 1998  Andrew Cagney  <cagney@b1.cygnus.com>
11078         * Makefile.in (grep): Grep no longer depends on libiberty.
11080 Fri Jun 12 14:03:34 1998  Syd Polk  <spolk@cygnus.com>
11082         * Makefile.in: all-snavigator needs all-libgui.
11084 Thu Jun 11 19:43:47 1998  Mark Alexander  <marka@cygnus.com>
11086         * configure.in: Add cygmon and libstub support for mn10300.
11088 Wed Jun 10 11:19:47 1998  Ian Lance Taylor  <ian@cygnus.com>
11090         * missing: Update to version from automake 1.3.
11092         * ltmain.sh: On installation, don't get confused if the same name
11093         appears more than once in the list of library names.
11095 Wed Jun  3 14:51:42 1998  Ian Lance Taylor  <ian@cygnus.com>
11097         * config.sub: Accept m68060 and m5200 as CPU names.
11099 Mon Jun  1 17:25:16 1998  Ian Lance Taylor  <ian@cygnus.com>
11101         * configure: Use && rather than using -a in test, because odd
11102         strings can confuse test.
11103         * configure.in: Likewise.
11105 Thu May 28 19:31:13 1998  Ian Lance Taylor  <ian@cygnus.com>
11107         * ltconfig, ltmain.sh: Bring in Visual C++ support.
11109 Sat May 23 23:44:13 1998  Alexandre Oliva <oliva@dcc.unicamp.br>
11111         * Makefile.in (boostrap2-lean, bootstrap3-lean,
11112         bootstrap4-lean): New targets.
11114 Mon May 11 23:55:56 1998  Jeffrey A Law  (law@cygnus.com)
11116         * mpw-* Delete.  Not used.
11118 Mon May 11 23:11:34 1998  Jeffrey A Law  (law@cygnus.com)
11120         * COPYING.LIB: Update FSF address.
11122 Fri May  8 01:30:20 1998  Ian Lance Taylor  <ian@cygnus.com>
11124         * ltconfig, ltmain.sh: Update to libtool 1.2a.
11126         * Makefile.in (GASB_SUPPORT_DIRS): Remove intl; already included via
11127         GAS_SUPPORT_DIRS.
11129 Thu May  7 17:27:35 1998  Ian Lance Taylor  <ian@cygnus.com>
11131         * ltconfig, ltmain.sh: Avoid producing a version number if
11132         -version-info was not used.
11134 Tue May  5 18:02:24 1998  Ian Lance Taylor  <ian@cygnus.com>
11136         * configure.in: Add --with-newlib to CONFIG_ARGUMENTS if we are
11137         building with newlib.
11139 1998-04-30  Paul Eggert  <eggert@twinsun.com>
11141         * Makefile.in (EXTRA_GCC_FLAGS): Remove backslash at end;
11142         Solaris `make' causes it to continue to next definition.
11144 Tue Apr 28 16:24:24 1998  Jason Molenda  (crash@bugshack.cygnus.com)
11146         * Makefile.in (install-gdbtk): Call this 'install-gdb' so that
11147         the right GUI libraries and files are installed along with GDB.
11149 Tue Apr 28 18:11:24 1998  Ian Lance Taylor  <ian@cygnus.com>
11151         * configure.in: Change alpha to alpha* in several places.
11153 Tue Apr 28 07:42:00 1998  Mark Alexander  <marka@cygnus.com>
11155         * config.sub: Recognize sparc86x.
11157 Tue Apr 28 07:35:02 1998  Michael Meissner  <meissner@cygnus.com>
11159         * configure.in (--enable-target-optspace): Remove debug echo.
11161 Thu Apr 23 21:31:16 1998  Jim Wilson  <wilson@cygnus.com>
11163         * configure: Set CXXFLAGS from CXXFLAGS, not CFLAGS.
11165 Thu Apr 23 12:26:38 1998  Ian Lance Taylor  <ian@cygnus.com>
11167         * ltconfig: Update cygwin32 support.
11169         * Makefile.in (GAS_SUPPORT_DIRS): Add intl.
11170         (BINUTILS_SUPPORT_DIRS, GASB_SUPPORT_DIRS): Likewise.
11171         (GDB_SUPPORT_DIRS): Likewise.
11173 Wed Apr 22 12:30:10 1998  Michael Meissner  <meissner@cygnus.com>
11175         * configure.in (target_makefile_frag): If --enable-target-optspace,
11176         use -Os to compile target libraries rather than -O2.  Default to
11177         using -Os for d10v and m32r if --{enable,disable}-target-optspace is
11178         not used.
11179         * configure.in (target_cflags): Ditto for d30v.
11181 Tue Apr 21 23:06:54 1998  Tom Tromey  <tromey@cygnus.com>
11183         * Makefile.in (all-bfd): Depend on all-intl.
11184         (all-binutils): Likewise.
11185         (all-gas): Likewise.
11186         (all-gprof): Likewise.
11187         (all-ld): Likewise.
11189 1998-04-19  Brendan Kehoe  <brendan@cygnus.com>
11191         * configure.in (host_tools): Fix typo, lbtool -> libtool.
11193 Fri Apr 17 16:20:42 1998  Ian Lance Taylor  <ian@cygnus.com>
11195         * Makefile.in (all-bfd): Depend upon all-libiberty.
11197         * ltconfig, ltmain.sh: Bring in newer cygwin32 support.
11199 Fri Apr 17 12:22:22 1998  Bob Manson  <manson@charmed.cygnus.com>
11201         * Makefile.in: Add libstub.
11203         * configure.in: Ditto. Build libstub for targets that have cygmon
11204         support.
11206 Tue Apr 14 18:01:55 1998  Ian Lance Taylor  <ian@cygnus.com>
11208         * configure.in: Don't set PICFLAG on ix86-cygwin32.
11210 Tue Apr 14 12:24:45 1998  J. Kean Johnston  <jkj@sco.com>
11212         * configure.in: Recognise i[3456]96-*-sysv5* as a valid host, and
11213         use mh-sysv5 if specified.  Support gprof on SCO Open Server.
11215 Tue Apr 14 11:33:51 1998  Krister Walfridsson <cato@df.lth.se>
11217         * configure: Define DEFAULT_M4 by searching PATH.
11218         * Makfile.in: Use DEFAULT_M4.
11220 Mon Apr 13 15:37:24 1998  Ian Lance Taylor  <ian@cygnus.com>
11222         * ltconfig: Add cygwin32 support.
11224         * Makefile.in, configure.in: Add libtool as a native only directory
11225         to configure and build.
11227 Sun Apr 12 20:58:46 1998  Jeffrey A Law  (law@cygnus.com)
11229         * Makefile.in (INSTALL_MODULES): Remove texinfo.
11231 Wed Apr  8 13:18:56 1998  Philippe De Muyter  <phdm@macqel.be>
11233         * Makefile.in (EXTRA_GCC_FLAGS): XFOO lines shortened.
11235 Thu Apr  2 14:48:44 1998  Geoffrey Noer  <noer@cygnus.com>
11237         * Makefile.in: add ash make rules
11238         * configure.in: add ash to native_only and host_tools lists
11240 Thu Mar 26 12:53:20 1998  Tom Tromey  <tromey@cygnus.com>
11242         * Makefile.in (all-gettext, all-intl): New targets.
11243         (ALL_MODULES): Added all-gettext, all-intl.
11244         (CROSS_CHECK_MODULES): Added check-gettext, check-intl.
11245         (INSTALL_MODULES): Added install-gettext, install-intl.
11246         (CLEAN_MODULES): Added clean-gettext, clean-intl.
11248         * configure.in (host_tools): Added gettext.
11249         (native_only): Likewise.
11250         (noconfigdirs) [various cases]: Likewise.
11251         (host_libs): Added intl.
11253 Thu Mar 26 15:00:11 1998  Keith Seitz  <keiths@onions.cygnus.com>
11255         * configure: Do not disable building gdbtk for cygwin32 hosts.
11257 Wed Mar 25 10:04:18 1998  Nick Clifton  <nickc@cygnus.com>
11259         * configure.in: Add thumb-coff target.
11260         * config.sub: Add thumb-coff target.
11262 Wed Mar 25 11:49:12 1998  Jason Molenda  (crash@bugshack.cygnus.com)
11264         * Makefile.in: Revert yesterday's change.
11265         (all-target-winsup):  all-target-librx stays out of here.
11267 Tue Mar 24 16:58:29 1998  Jason Molenda  (crash@bugshack.cygnus.com)
11269         * Makefile.in (TARGET_CONFIGDIRS, ALL_TARGET_MODULES,
11270         CONFIGURE_TARGET_MODULES, CHECK_TARGET_MODULES,
11271         INSTALL_TARGET_MODULES, CLEAN_TARGET_MODULES, all-target-winsup):
11272         Remove references to librx and libg++.
11274 Tue Mar 24 18:28:12 1998  Eric Mumpower  <nocturne@cygnus.com>
11276         * Makefile.in (BASE_FLAGS_TO_PASS): Pass $(lispdir) down to
11277         recursive makes
11279 Tue Mar 24 11:37:45 1998  Ian Lance Taylor  <ian@cygnus.com>
11281         * Makefile.in (CC_FOR_TARGET): Use $(TARGET_SUBDIR) when passing -B
11282         for newlib directory.
11283         (CXX_FOR_TARGET): Likewise.
11285 Mon Mar 23 11:30:21 1998  Jeffrey A Law  (law@cygnus.com)
11287         * ltconfig: Update after libtool/ltconfig.in change for
11288         hpux11.
11290 Fri Mar 20 18:51:43 1998  Ian Lance Taylor  <ian@cygnus.com>
11292         * ltconfig, ltmain.sh: Update to libtool 1.2.
11294 Fri Mar 20 09:32:14 1998  Manfred Hollstein  <manfred@s-direktnet.de>
11296         * Makefile.in (install-gcc): Don't specify LANGUAGES here.
11297         (install-gcc-cross): Instead, override LANGUAGES here.
11299 1998-03-18  Dave Love  <d.love@dl.ac.uk>
11301         * Makefile.in ($(CONFIGURE_TARGET_MODULES)): Set CONFIG_SITE to a
11302         non-existent file since /dev/null loses with bash 2.0/autoconf 2.12.
11304 Wed Mar 18 09:24:59 1998  Nick Clifton  <nickc@cygnus.com>
11306         * configure.in: Add Thumb-pe target.
11308 Tue Mar 17 16:59:00 1998  Syd Polk <spolk@cygnus.com>
11310         * Makefile.in - changed sn targets to snavigator
11311         * configure.in - changed sn targets to snavigator
11313 Tue Mar 17 10:33:28 1998  Manfred Hollstein  <manfred@s-direktnet.de>
11315         * config-ml.in: After building symlink tree call make distclean
11316         if a Makefile got linked into ${ml_dir}/${ml_libdir}; this happens
11317         to be the case for libiberty.
11319 Tue Mar 17 10:22:37 1998  H.J. Lu  (hjl@gnu.ai.mit.edu)
11321         * configure: When making link, also check the current
11322         directory. The configure scripts may create one.
11324 Fri Mar  6 01:02:03 1998  Richard Henderson  <rth@cygnus.com>
11326         * config.sub: Accept alphapca56 and alphaev6 properly.
11328 Fri Mar  6 00:14:55 1998  Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
11330         * configure.in: Revert 3 Jan change for powerpc-linux-gnulibc1.
11332 Mon Feb 23 15:09:18 1998  Bruno Haible <bruno@linuix.mathematik.uni-karlsruhe.de
11334         * config.sub (sco5): Fix typo.
11336 Mon Feb 23 14:46:06 1998  Ian Lance Taylor  <ian@cygnus.com>
11338         * Makefile.in (INSTALL_MODULES): Move install-tcl before
11339         install-itcl.
11340         (install-itcl): Remove dependency on install-tcl.
11342 Mon Feb 23 09:53:28 1998  Mark Alexander  <marka@cygnus.com>
11344         * configure.in: Remove libgloss from noconfigdirs for MN10300.
11346 Thu Feb 19 13:40:41 1998  Ian Lance Taylor  <ian@cygnus.com>
11348         * configure.in: Don't build libgui for a cygwin32 target when not on
11349         a cygwin32 host.
11351 Wed Feb 18 12:29:00 1998  Jason Molenda  (crash@bugshack.cygnus.com)
11353         * configure (redirect): Set to null, so default behavior of
11354         configure is now --verbose.
11356 1998-02-16  Dave Love  <d.love@dl.ac.uk>
11358         * Makefile.in ($(CONFIGURE_TARGET_MODULES)): Run configure with
11359         CONFIG_SITE=/dev/null to forestall lossage with site configuration.
11361 Mon Feb 16 12:23:53 1998  Manfred Hollstein  <Manfred.Hollstein@ks.sel.alcatel.de>
11363         * Makefile.in (BASE_FLAGS_TO_PASS, EXTRA_TARGET_FLAGS): Really add
11364         this change to sync Makefile.in with its ChangeLog entries.
11366 Thu Feb 12 15:03:08 1998  H.J. Lu  <hjl@gnu.org>
11368         * ltmain.sh (mkdir): Check that the directory doesn't exist
11369         before we exit with error, so that we don't get races during
11370         parallel builds.
11372 Sat Feb  7 15:19:18 1998  Ian Lance Taylor  <ian@cygnus.com>
11374         * ltconfig, ltmain.sh: Update from libtool 1.0i.
11376 Fri Feb  6 01:33:52 1998  Manfred Hollstein  <manfred@s-direktnet.de>
11378         * Makefile.in (BASE_FLAGS_TO_PASS): Don't pass PICFLAG and
11379         PICFLAG_FOR_TARGET.
11380         (EXTRA_TARGET_FLAGS): Don't pass PICFLAG_FOR_TARGET.
11382         * configure: Emit a definition for the new macro enable_shared
11383         into each Makefile.
11385 Thu Feb  5 17:01:12 1998  Jason Molenda  (crash@bugshack.cygnus.com)
11387         * configure.in (host_tools, native_only): Add libtool.
11389 Wed Feb  4 16:53:58 1998  Geoffrey Noer  <noer@cygnus.com>
11391         * configure.in: add target-gperf to noconfigdirs for Cygwin32.
11392         Fix typo in ming config comment.
11394 Wed Feb  4 18:56:13 1998  Ian Lance Taylor  <ian@cygnus.com>
11396         * ltconfig, ltmain.sh: Update from libtool 1.0h.
11398 Mon Feb  2 19:38:19 1998  Ian Lance Taylor  <ian@cygnus.com>
11400         * config.sub: Add tic30 cases, and map c30 to tic30.
11402 Sun Feb  1 02:40:41 1998  Richard Henderson  <rth@cygnus.com>
11404         * Makefile.in (TARGET_CONFIGDIRS): Add libf2c.
11405         (ALL_TARGET_MODULES, CONFIGURE_TARGET_MODULES): Similarly
11406         (CHECK_TARGET_MODULES, INSTALL_TARGET_MODULES): Similarly
11407         (CLEAN_TARGET_MODULES): Similarly
11408         (all-target-libf2c): Add dependences.
11409         * configure.in (target_libs): Add libf2c.
11411 Fri Jan 30 17:18:32 1998  Geoffrey Noer  <noer@cygnus.com>
11413         * configure.in: Remove expect from noconfigdirs when target
11414         is cygwin32.  OK to build expect and dejagnu with Canadian
11415         Cross.
11417 Wed Jan 28 12:58:49 1998  Ian Lance Taylor  <ian@cygnus.com>
11419         * configure.in: Do build expect, dejagnu, and cvssrc for a cygwin32
11420         host.
11422         * config.guess: Use ${UNAME_MACHINE} rather than i386 for cygwin32
11423         and mingw32.
11425 Wed Jan 28 10:26:37 1998  Manfred Hollstein  <manfred@s-direktnet.de>
11427         * Makefile.in (BASE_FLAGS_TO_PASS): Remove passing $(local_prefix)
11428         here as it is not defined in the toplevel Makefile.
11430 Tue Jan 27 23:25:06 1998  Manfred Hollstein  <manfred@s-direktnet.de>
11432         * configure (package_makefile_rules_frag): New variable, which names
11433         a file with generic rules, ...
11434         Change comment to mention we now have FIVE parts.
11435         * configure: Undo last change.
11437 Tue Jan 27 23:15:55 1998  Lassi A. Tuura  <lat@iki.fi>
11439         * config.guess: More accurate determination of HP processor types.
11440         * config.sub: More accurate determination of HP processor types.
11442 Sat Jan 24 01:59:45 1998  Manfred Hollstein  <manfred@s-direktnet.de>
11444         * configure (package_makefile_frag): Move inserting the
11445         ${package_makefile_frag} to where it should be according
11446         to the comment.
11448 Fri Jan 23 00:29:28 1998  Philip Blundell  <pb@nexus.co.uk>
11450         * config.guess: Add support for Linux/ARM.
11452 Thu Jan 22 15:14:01 1998  Fred Fish  <fnf@cygnus.com>
11454         * .cvsignore: Remove *-info and *-install since they match
11455         release-info and mpw-install, which we don't want to just ignore.
11457 Thu Jan 22 01:38:33 1998  Richard Henderson  <rth@cygnus.com>
11459         * configure.in: Revert 3 Jan change for alpha-linux-gnulibc1.
11461 Sat Jan 17 21:28:08 1998  Pieter Nagel <pnagel@epiuse.co.za>
11463         * Makefile.in (FLAGS_TO_PASS): Pass down gcc_include_dir and
11464         local_prefix to sub-make invocations.
11466 Sat Jan 17 21:04:59 1998 H.J. Lu  (hjl@gnu.org)
11468         * configure.in: Check makefile fragments in the source
11469         directory.
11471 Fri Jan 16 00:41:37 1998  Alexandre Oliva <oliva@dcc.unicamp.br>
11473         * configure.in: Check whether host and target makefile
11474         fragments exist before adding them to *_makefile_frag.
11476 Wed Jan 14 23:39:10 1998  Bob Manson  <manson@charmed.cygnus.com>
11478         * configure.in (target_configdirs): Add cygmon for sparc64-elf.
11480 Wed Jan 14 12:48:07 1998  Keith Seitz  <keiths@pizza.cygnus.com>
11482         * configure.in: Make sure we only replace RPATH_ENVVAR on
11483         lines which begin with RPATH_ENVVAR, i.e. add "^" to the
11484         regexp to sed.
11486         * Makefile.in (BASE_FLAGS_TO_PASS): Pass RRPATH_ENVVAR down
11487         to sub-makes.
11489 1998-01-13  Lee Iverson   (leei@ai.sri.com)
11491         * config-ml.in (multi-do): LDFLAGS must include multilib
11492         designator.
11494 Tue Jan 13 01:13:24 1998   Robert Lipe (robertl@dgii.com)
11496         * config.guess: Recognize i[3456]-i586-UnixWare7-sysv5.
11498 Sun Jan  4 01:06:55 1998  Mumit Khan  <khan@xraylith.wisc.edu>
11500         * config.sub: Add mingw32 support.
11501         * configure.in: Likewise.
11503 Sat Jan  3 12:11:05 1998 Franz Sirl <franz.sirl-kernel@lauterbach.com>
11505         * configure.in: Finalize support for {alpha|powerpc}*-*-linux-gnulibc1
11507 Sun Dec 28 11:28:58 1997  Jeffrey A Law  (law@cygnus.com)
11509         * Makefile.in (INSTALL_TARGET): Do install-gcc first.
11510         * configure (gxx_include_dir): Provide a definition for subdirs
11511         which do not use autoconf.
11513 Wed Dec 24 22:46:55 1997  Jeffrey A Law  (law@cygnus.com)
11515         * config.guess: Sync with egcs.  Picks up new alpha support,
11516         BeOS & some additional linux support.
11518 Tue Dec 23 12:44:24 1997  Jeffrey A Law  (law@cygnus.com)
11520         * config.guess: HP 9000/803 is a PA1.1 machine.
11522 Mon Dec 22 02:39:24 1997  Richard Henderson  <rth@cygnus.com>
11524         * configure.in: It's alpha*-...
11526 Sun Dec 21 16:53:12 1997  H.J. Lu  (hjl@gnu.ai.mit.edu)
11528         * configure.in (host_makefile_frag, target_makefile_frag):
11529         Handle multiple config files.
11530         (alpha-*-linux*): Treat alpha-*-linux* as alpha-*-linux* and
11531         alpha-*-*.
11533 Thu Dec 18 13:13:03 1997  Doug Evans  <devans@canuck.cygnus.com>
11535         * mkdep: New file.
11537 Wed Dec 17 09:53:02 1997  Michael Meissner  <meissner@cygnus.com>
11539         * configure.in (d30v-*-*): Allow configuring of libide, vmake, etc.
11541 Tue Dec 16 17:36:05 1997  Ian Lance Taylor  <ian@cygnus.com>
11543         * Makefile.in: Add libgui directory.
11544         (GDB_TK): Add all-libgui.
11545         * configure.in: Add libgui directory.
11546         * configure: Add all-libgui to GDB_TK.
11548 Mon Dec 15 16:12:28 1997  Nick Clifton  <nickc@cygnus.com>
11550         * config-ml.in (multidirs): Add m32r to multilib list.
11552 Fri Dec 12 10:43:31 1997  Brendan Kehoe  <brendan@canuck.cygnus.com>
11554         * Makefile.in (all-target-gperf): Change dependency to
11555         all-target-libstdc++.
11557 Thu Dec 11 23:30:51 1997  Fred Fish  <fnf@ninemoons.com>
11559         * config.guess: Add BeOS support.
11561 Wed Dec 10 15:10:38 1997  Ian Lance Taylor  <ian@cygnus.com>
11563         Source directory cvs renamed to cvssrc:
11564         * configure.in (host_tools): Change cvs to cvssrc.
11565         (native_only): Likewise.
11566         (noconfigdirs) [various cases]: Likewise.
11567         * Makefile.in (ALL_MODULES): Change all-cvs to all-cvssrc.
11568         (CROSS_CHECK_MODULES): Change check-cvs to check-cvssrc.
11569         (INSTALL_MODULES): Change install-cvs to install-cvssrc.
11570         (CLEAN_MODULES): Change clean-cvs to clean-cvssrc.
11571         (all-cvssrc): Rename target from all-cvs.
11573 Wed Dec  3 07:55:59 1997  Jeffrey A Law  (law@cygnus.com)
11575         * configure (gxx_include_dir): Fix thinko.
11577 Tue Dec  2 10:55:34 1997  Jeffrey A Law  (law@cygnus.com)
11579         * Makefile.in (INSTALL_TARGET_CROSS): Define.
11580         (install-cross, install-gcc-cross): New targets.
11582 Tue Dec  2 10:08:31 1997  Nick Clifton  <nickc@cygnus.com>
11584         * configure.in (noconfigdirs): Add support for Thumb target.
11586         * config.sub (maybe_os): Add support for Thumb target.
11588 Sun Nov 30 16:12:27 1997  Bob Manson  <manson@charmed.cygnus.com>
11590         * Makefile.in: Add rules for cygmon.
11592         * configure.in: Build cygmon for sparc-elf and sparclite-aout.
11594 Thu Nov 27 01:31:30 1997  Jeffrey A Law  (law@cygnus.com)
11596         * Makefile.in (INSTALL_TARGET): Do install-gcc first.
11597         * configure (gxx_include_dir): Provide a definition for subdirs
11598         which do not use autoconf.
11600 Wed Nov 26 11:53:33 1997  Keith Seitz  <keiths@onions.cygnus.com>
11602         * Makefile.in, configure, configure.in, ChangeLog: merge with foundry's
11603         11/18/97 build
11605 Wed Nov 26 16:08:50 1997  Jeffrey A Law  (law@cygnus.com)
11607         * From Franz Sirl.
11608         * config.guess (powerpc*-*-linux): Handle glibc2 beta release
11609         found on RedHat Linux systems.
11611 Fri Nov 21 09:51:01 1997  Jeffrey A Law  (law@cygnus.com)
11613         * config.guess (alpha stuff): Merge with FSF to avoid incorrect
11614         guesses.
11616 Thu Nov 13 11:38:37 1997  Jeffrey A Law  (law@cygnus.com)
11618         * configure.in (i[3456]86-ncr-sysv4.3*): Tweak.
11620 Mon Nov 10 15:23:21 1997  H.J. Lu  <hjl@gnu.ai.mit.edu>
11622         * ltmain.sh: If mkdir fails, check whether the directory was created
11623         anyhow by some other process.
11625 Mon Nov 10 14:38:03 1997  Michael Meissner  <meissner@cygnus.com>
11627         * configure.in (d30v-*-*): Configure all directories.
11629 Sun Nov  9 17:36:20 1997  Michael Meissner  <meissner@cygnus.com>
11631         * configure.in (d30v-*-*): Configure newlib, libiberty directories
11632         for the D30V.
11634 Sat Nov  8 14:42:59 1997  Michael Meissner  <meissner@cygnus.com>
11636         * configure.in (d30v-*-*): Configure target-libgloss on the D30V.
11638 Fri Nov  7 10:34:09 1997  Rob Savoye  <rob@darkstar.cygnus.com>
11640         * include/libiberty.h: Add extern "C" { so it can be used with C++
11641         progrms.
11642         * include/remote-sim.h:  Add extern "C" { so it can be used with C++
11643         programs.
11645 Thu Oct 30 11:09:29 1997  Michael Meissner  <meissner@cygnus.com>
11647         * configure.in (d30v-*-*): Configure GCC now.
11649 Mon Oct 27 13:17:24 1997  Stan Shebs  <shebs@andros.cygnus.com>
11651         * configure.in: Remove a "second pass" of tweaking noconfigdirs,
11652         is no longer needed.
11654 Mon Oct 27 12:03:53 1997  Jason Merrill  <jason@yorick.cygnus.com>
11656         * Makefile.in: check-target-libio depends on all-target-libstdc++.
11658 Sun Oct 26 11:48:27 1997  Manfred Hollstein  (manfred@s-direktnet.de)
11660         * Makefile.in (bootstrap-lean): Combined with `normal' bootstrap
11661         targets using "$@" to provide support for similar but not identical
11662         targets without having to duplicate code.
11664 Mon Oct 20 15:28:49 1997  Klaus K"ampf  <kkaempf@progis.de>
11666         * makefile.vms: Fix to work with DEC C.
11668 Tue Oct  7 23:58:57 1997  Gavin Koch  <gavin@cygnus.com>
11670         * config.sub: Add mips-tx39-elf to marketing names.
11672 Tue Oct  7 14:24:41 1997  Ian Lance Taylor  <ian@cygnus.com>
11674         * ltmain.sh: Handle symlinks in generated script.
11676 Wed Oct  1 13:11:27 1997  Ian Lance Taylor  <ian@cygnus.com>
11678         * configure: Handle autoconf style directory options: --bindir,
11679         --datadir, --includedir, --infodir, --libdir, --libexecdir,
11680         --mandir, --oldincludedir, --sbindir, --sharedstatedir,
11681         --sysconfdir.
11682         * Makefile.in (sbindir, libexecdir, sysconfdir): New variables.
11683         (sharedstatedir, localstatedir, oldincludedir): New variables.
11684         (BASE_FLAGS_TO_PASS): Pass down bindir, datadir, includedir,
11685         infodir, libdir, libexecdir, localstatedir, mandir, oldincludedir,
11686         sbindir, sharedstatedir, and sysconfdir.
11688 Mon Sep 29 00:38:08 1997 Aaron Jackson <jackson@negril.msrce.howard.edu>
11690         * Makefile.in (bootstrap-lean): New target.
11692 Wed Sep 24 18:06:27 1997  Stu Grossman  <grossman@babylon-5.cygnus.com>
11694         * configure.in (d30v):  Remove tcl, tk, expect, gdb, itcl, tix, db,
11695         sn, and gnuserv from noconfigdirs.
11697 Wed Sep 24 15:18:32 1997  Ian Lance Taylor  <ian@cygnus.com>
11699         * ltmain.sh: Tweak shell pattern to avoid bug in NetBSD /bin/sh.
11701 Thu Sep 18 23:58:27 1997  Jeffrey A Law  (law@cygnus.com)
11703         * Makefile.in (cross): New target.
11705 Thu Sep 18 21:43:23 1997  Alexandre Oliva  <oliva@dcc.unicamp.br>
11706                           Jeff Law         <law@cygnus.com>
11708         * Makefile.in (bootstrap2, bootstrap3): New targets.
11709         (all-bootstrap): Remove outdated and confusing target.
11710         (bootstrap, bootstrap2, bootstrap3): Don't pass BOOT_CFLAGS down.
11712 Thu Sep 18 15:37:42 1997  Andrew Cagney  <cagney@b1.cygnus.com>
11714         * configure (tooldir): enable_gdbtk=YES for cygwin32, NO for
11715         windows.  Consistent with gdb/configure.
11717 1997-09-15 02:37  Ulrich Drepper  <drepper@cygnus.com>
11719         * configure.in: Name Linux target fragment.
11721         * configure: Rewrite so that project Makefile fragment is inserted
11722         first and appears last in the resulting Makefile.
11724 Tue Sep 16 09:55:07 1997  Andrew Cagney  <cagney@b1.cygnus.com>
11726         * Makefile.in (install-itcl): Install tcl first.
11728 Fri Sep 12 16:19:20 1997  Geoffrey Noer  <noer@cygnus.com>
11730         * configure.in: remove bison from noconfigdirs for Cygwin32 host
11732 Thu Sep 11 16:40:46 1997  H.J. Lu  (hjl@gnu.ai.mit.edu)
11734         * Makefile.in (local-distclean): Also remove mh-frag mt-frag.
11736         * configure.in (skipdirs): Add target-librx for Linux.
11737         (alpha-*-linux*): Use config/mh-elfalphapic and config/mt-elfalphapic.
11739 Wed Sep 10 21:29:54 1997  Jeffrey A Law  (law@cygnus.com)
11741         * Makefile.in (bootstrap): New target.
11743 Wed Sep 10 15:19:22 1997  Jeffrey A Law  (law@cygnus.com)
11745         * config.sub: Accept 'amigados' for backward compatability.
11747 Mon Sep  8 20:46:20 1997  Ian Lance Taylor  <ian@cygnus.com>
11749         * config.guess: Merge with FSF.
11751 Sun Sep  7 23:18:32 1997  Fred Fish  <fnf@ninemoons.com>
11753         * config.sub: Change 'amigados' to 'amigaos' to match current usage.
11755 Sun Sep  7 15:55:28 1997  Gavin Koch  <gavin@cygnus.com>
11757         * config.sub: Add "marketing-names" patch.
11759 Fri Sep  5 16:11:28 1997  Joel Sherrill  (joel@OARcorp.com)
11761         * configure.in (*-*-rtems*): Do not build libgloss for rtems.
11763 Fri Sep  5 12:27:17 1997  Jeffrey A Law  (law@cygnus.com)
11765         * config.sub: Handle v850-elf.
11767 Wed Sep  3 22:01:58 1997  Fred Fish  <fnf@ninemoons.com>
11769         * .cvsignore (*-install): Remove.
11771 Wed Sep  3 12:15:24 1997  Chris Provenzano  <proven@cygnus.com>
11773         * ltconfig: Set CONFIG_SHELL in libtool.
11774         * ltmain.sh: Use CONFIG_SHELL instead of /bin/sh
11776 Mon Sep  1 16:45:44 1997  Jim Wilson  <wilson@cygnus.com>
11778         * configure.in (target_subdir): Set to libraries if enable_multilib.
11780 Wed Aug 27 16:15:11 1997  Jim Wilson  <wilson@cygnus.com>
11782         * config.guess: Update from gcc directory.
11784 Tue Aug 26 16:46:46 1997  Andrew Cagney  <cagney@b1.cygnus.com>
11786         * Makefile.in (all-sim): Depends on all-readline.
11788 Wed Aug 20 19:57:37 1997  Jason Merrill  <jason@yorick.cygnus.com>
11790         * Makefile.in (BISON, YACC): Use $$s.
11791         (all-bison): Depend on all-texinfo.
11793 Tue Aug 19 01:41:32 1997  Jason Merrill  <jason@yorick.cygnus.com>
11795         * Makefile.in (BISON): Add -L flag.
11796         (YACC): Likewise.
11798 Mon Aug 18 11:30:50 1997  Nick Clifton  <nickc@cygnus.com>
11800         * configure.in (noconfigdirs): Add support for v850e target.
11802         * config.sub (maybe_os): Add support for v850e target.
11804 Mon Aug 18 11:30:50 1997  Nick Clifton  <nickc@cygnus.com>
11806         * configure.in (noconfigdirs): Add support for v850ea target.
11808         * config.sub (maybe_os): Add support for v850ea target.
11810 Mon Aug 18 09:24:06 1997  Gavin Koch  <gavin@cygnus.com>
11812         * config.sub: Add mipstx39.  Delete r3900.
11814 Mon Aug 18 17:20:10 1997  Jason Molenda  (crash@godzilla.cygnus.co.jp)
11816         * Makefile.in (all-autoconf): Depends on all-texinfo.
11818 Fri Aug 15 23:09:26 1997  Michael Meissner  <meissner@cygnus.com>
11820         * config-ml.in ({powerpc,rs6000}*-*-*): Update to current AIX and
11821         eabi targets.
11823 Thu Aug 14 14:42:17 1997  Ian Lance Taylor  <ian@cygnus.com>
11825         * configure: Get CFLAGS and CXXFLAGS from Makefile, if possible.
11827         * configure: When handling a Canadian Cross, handle YACC as well as
11828         BISON.  Just set BISON to bison.  When setting YACC, prefer bison.
11829         * Makefile.in (all-bison): Depend upon all-texinfo.
11831 Tue Aug 12 20:09:48 1997  Jason Merrill  <jason@yorick.cygnus.com>
11833         * Makefile.in (BISON): bison, not byacc or bison -y.
11834         (YACC): bison -y or byacc or yacc.
11835         (various): Add *-bison as appropriate.
11836         (taz): No need to mess with BISON anymore.
11838 Tue Aug 12 22:33:08 1997  Ian Lance Taylor  <ian@cygnus.com>
11840         * configure: If OSTYPE matches *win32*, try to find a good value for
11841         CONFIG_SHELL.
11843 Sun Aug 10 14:41:11 1997  Ian Lance Taylor  <ian@cygnus.com>
11845         * Makefile.in (taz): Get the version number from AM_INIT_AUTOMAKE in
11846         configure.in if it is present.
11848 Sat Aug  9 00:58:01 1997  Ian Lance Taylor  <ian@cygnus.com>
11850         * Makefile.in (LD_FOR_TARGET): Change ld.new to ld-new.
11852 Fri Aug  8 16:30:13 1997  Doug Evans  <dje@canuck.cygnus.com>
11854         * config.sub: Recognize `arc' cpu.
11855         * configure.in: Likewise.
11856         * config-ml.in: Likewise.
11858 Thu Aug  7 11:02:34 1997  Ian Lance Taylor  <ian@cygnus.com>
11860         * Makefile.in ($(INSTALL_X11_MODULES)): Depend upon installdirs.
11862 Wed Aug  6 16:27:29 1997  Chris Provenzano  <proven@cygnus.com>
11864         * configure: Changed sed delimiter from ':' to '|' when
11865         attempting to substitute ${config_shell} for SHELL. On
11866         NT ${config_shell} may contain a ':' in it.
11868 Wed Aug  6 12:29:05 1997  Jason Merrill  <jason@yorick.cygnus.com>
11870         * Makefile.in (EXTRA_GCC_FLAGS): Fix for non-bash shells.
11872 Wed Aug  6 00:42:35 1997  Ian Lance Taylor  <ian@cygnus.com>
11874         * Makefile.in (AS_FOR_TARGET): Change as.new to as-new.
11876 Tue Aug  5 14:08:51 1997  Ian Lance Taylor  <ian@cygnus.com>
11878         * Makefile.in (NM_FOR_TARGET): Change nm.new to nm-new.
11880         * ylwrap: If the program is a relative path, force it to be
11881         absolute.
11883 Tue Aug  5 12:12:44 1997  Andrew Cagney  <cagney@b1.cygnus.com>
11885         * configure (tooldir): Set BISON to `bison -y' and not just bison.
11887 Mon Aug  4 22:59:02 1997  Andrew Cagney  <cagney@b1.cygnus.com>
11889         * Makefile.in (CC_FOR_TARGET): When winsup/Makefile present,
11890         correctly specify the target build directory $(TARGET_SUBDIR)/winsup
11891         for libraries.
11893 Mon Aug  4 12:40:24 1997  Jason Merrill  <jason@yorick.cygnus.com>
11895         * Makefile.in (EXTRA_GCC_FLAGS): Fix handling of macros with values
11896         separated by spaces.
11898 Thu Jul 31 19:49:49 1997  Ian Lance Taylor  <ian@cygnus.com>
11900         * ylwrap: New file.
11901         * Makefile.in (DEVO_SUPPORT): Add ylwrap.
11903         * ltmain.sh: Handle /bin/sh at start of install program.
11905         * Makefile.in (DEVO_SUPPORT): Add ltconfig, ltmain.sh, and missing.
11907         * ltconfig, ltmain.sh: New files, from libtool 1.0.
11908         * missing: New file, from automake 1.2.
11910 Thu Jul 24 12:57:56 1997  Ian Lance Taylor  <ian@cygnus.com>
11912         * Makefile.in: Treat tix like tk, putting it in X11_MODULES.  Add
11913         check-tk to CHECK_X11_MODULES.
11915 Wed Jul 23 17:03:29 1997  Ian Lance Taylor  <ian@cygnus.com>
11917         * config.sub: Merge with FSF.
11919 Tue Jul 22 19:08:29 1997  Ian Lance Taylor  <ian@cygnus.com>
11921         * config.guess: Merge with FSF.
11923 Tue Jul 22 14:50:42 1997  Robert Hoehne <robert.hoehne@Mathematik.TU-Chemnitz.DE>
11925         * configure: Treat msdosdjgpp like go32.
11926         * configure.in: Likewise.  Don't remove gprof for go32.
11928         * configure: Change Makefile.tem2 to Makefile.tm2.
11930 Mon Jul 21 10:31:26 1997  Stephen Peters  <speters@cygnus.com>
11932         * configure.in (noconfigdirs): For alpha-dec-osf*, don't ignore grep.
11934 Tue Jul 15 14:33:03 1997  Brendan Kehoe  <brendan@lisa.cygnus.com>
11936         * install-sh (chmodcmd): Set to null if the DST directory already
11937         exists.  Same as Nov 11th change.
11939 Mon Jul 14 11:01:15 1997  Martin M. Hunt  <hunt@cygnus.com>
11941         * configure (GDB_TK): Needs itcl and tix.
11943 Mon Jul 14 00:32:10 1997  Jason Merrill  <jason@yorick.cygnus.com>
11945         * config.guess: Update from FSF.
11947 Fri Jul 11 11:57:11 1997  Martin M. Hunt  <hunt@cygnus.com>
11949         * Makefile.in (GDB_TK): Depend on itcl and tix.
11951 Fri Jul  4 13:25:31 1997  Ian Lance Taylor  <ian@cygnus.com>
11953         * Makefile.in (INSTALL_PROGRAM_ARGS): New variable.
11954         (INSTALL_PROGRAM): Use $(INSTALL_PROGRAM_ARGS).
11955         (INSTALL_SCRIPT): New variable.
11956         (BASE_FLAGS_TO_PASS): Pass down INSTALL_SCRIPT.
11957         * configure.in: If host is *-*-cygwin32*, set INSTALL_PROGRAM_ARGS
11958         to -x.
11959         * install-sh: Add support for -x option.
11961 Mon Jun 30 15:51:30 1997  Ian Lance Taylor  <ian@cygnus.com>
11963         * configure.in, Makefile.in: Treat tix like itcl.
11965 Thu Jun 26 13:59:19 1997  Ian Lance Taylor  <ian@cygnus.com>
11967         * Makefile.in (WINDRES): New variable.
11968         (WINDRES_FOR_TARGET): New variable.
11969         (BASE_FLAGS_TO_PASS): Add WINDRES_FOR_TARGET.
11970         (EXTRA_HOST_FLAGS): Add WINDRES.
11971         (EXTRA_TARGET_FLAGS): Add WINDRES.
11972         (EXTRA_GCC_FLAGS): Add WINDRES.
11973         ($(DO_X)): Pass down WINDRES.
11974         ($(CONFIGURE_TARGET_MODULES)): Set WINDRES when configuring.
11975         * configure: Treat WINDRES like DLLTOOL, and WINDRES_FOR_TARGET like
11976         DLLTOOL_FOR_TARGET.
11978 Wed Jun 25 15:01:26 1997  Felix Lee  <flee@cygnus.com>
11980         * configure.in: configure sim before gdb for win32-x-ppc
11982 Wed Jun 25 12:18:54 1997  Brendan Kehoe  <brendan@lisa.cygnus.com>
11984         Move gperf into the toplevel, from libg++.
11985         * configure.in (target_tools): Add target-gperf.
11986         (native_only): Add target-gperf.
11987         * Makefile.in (all-target-gperf): New target, depend on
11988         all-target-libg++.
11989         (configure-target-gperf): Empty rule.
11990         (ALL_TARGET_MODULES): Add all-target-gperf.
11991         (CONFIGURE_TARGET_MODULES): Add configure-target-gperf.
11992         (CHECK_TARGET_MODULES): Add check-target-gperf.
11993         (INSTALL_TARGET_MODULES): Add install-target-gperf.
11994         (CLEAN_TARGET_MODULES): Add clean-target-gperf.
11996 Mon Jun 23 10:51:53 1997  Jeffrey A Law  (law@cygnus.com)
11998         * config.sub (mn10200): Recognize new basic machine.
12000 Thu Jun 19 14:16:42 1997  Brendan Kehoe  <brendan@lisa.cygnus.com>
12002         * configure.in: Don't set ENABLE_MULTILIB, so we'll be passing
12003         --enable-multilib down to subdirs; setting TARGET_SUBDIR was enough.
12005 Tue Jun 17 15:31:20 1997  Brendan Kehoe  <brendan@lisa.cygnus.com>
12007         * configure.in: If we're building mips-sgi-irix6* native, turn on
12008         ENABLE_MULTILIB and set TARGET_SUBDIR.
12010 Tue Jun 17 12:20:59 1997  Tom Tromey  <tromey@cygnus.com>
12012         * Makefile.in (all-sn): Depend on all-grep.
12014 Mon Jun 16 11:11:10 1997  Ian Lance Taylor  <ian@cygnus.com>
12016         * configure.in: Use mh-ppcpic and mt-ppcpic for powerpc*-* targets.
12018         * configure: Set CFLAGS and CXXFLAGS, and substitute them into
12019         Makefile.  From Jeff Makey <jeff@cts.com>.
12020         * Makefile.in: Add comment for CFLAGS and CXXFLAGS.
12022         * Makefile.in (DISTBISONFILES): Remove.
12023         (taz): Don't futz with DISTBISONFILES.  Change BISON to use
12024         $(DEFAULT_YACC).
12026         * configure.in: Build itl, db, sn, etc., when building for native
12027         cygwin32.
12029         * Makefile.in (LD): New variable.
12030         (EXTRA_HOST_FLAGS): Pass down LD.
12031         ($(DO_X)): Likewise.
12033 Mon Jun 16 11:10:35 1997  Philip Blundell  <Philip.Blundell@pobox.com>
12035         * Makefile.in (INSTALL): Use $(SHELL) when executing install-sh.
12037 Fri Jun 13 10:22:56 1997  Bob Manson  <manson@charmed.cygnus.com>
12039         * configure.in (targargs): Strip out any supplied --build argument
12040         before adding our own. Always add --build.
12042 Thu Jun 12 21:12:28 1997  Bob Manson  <manson@charmed.cygnus.com>
12044         * configure.in (targargs): Pass --build if we're doing
12045         a cross-compile.
12047 Fri Jun  6 21:38:40 1997  Rob Savoye  <rob@chinadoll.cygnus.com>
12049         * configure: Use '|' instead of ":" as the separator in
12050         sed. Otherwise sed chokes on NT path names with drive
12051         designators. Also look for "?:*" as the leading characters in an
12052         absolute pathname.
12054 Mon Jun  2 13:05:20 1997  Gavin Koch  <gavin@cygnus.com>
12056         * config.sub: Support for r3900.
12058 Wed May 21 17:33:31 1997  Ian Lance Taylor  <ian@cygnus.com>
12060         * configure.in: Use install-sh, not install.sh.
12062 Wed May 14 16:06:51 1997  Ian Lance Taylor  <ian@cygnus.com>
12064         * Makefile.in (taz): Improve check for BISON so it doesn't try to
12065         apply it twice.
12067 Fri May  9 17:22:05 1997  Ian Lance Taylor  <ian@cygnus.com>
12069         * Makefile.in (INSTALL_MODULES): Put install-opcodes before
12070         install-binutils.
12072 Thu May  8 17:29:50 1997  Ian Lance Taylor  <ian@cygnus.com>
12074         * Makefile.in: Add automake targets.
12075         * configure.in (host_tools): Add automake.
12077 Tue May  6 15:49:52 1997  Ian Lance Taylor  <ian@cygnus.com>
12079         * configure: Default CXX to c++, not gcc.
12080         * Makefile.in (CXX): Set to c++, not gcc.
12081         (CXX_FOR_TARGET): When cross, transform c++, not gcc.
12083 Thu May  1 10:11:43 1997  Geoffrey Noer  <noer@cygnus.com>
12085         * install-sh: try appending a .exe if source file doesn't
12086         exist
12088 Wed Apr 30 12:05:36 1997  Jason Merrill  <jason@yorick.cygnus.com>
12090         * configure.in: Turn on multilib by default.
12091         (cross_only): Remove target-libiberty.
12093         * Makefile.in (all-gcc): Don't depend on libiberty.
12095 Mon Apr 28 18:39:45 1997  Michael Snyder  <msnyder@cleaver.cygnus.com>
12097         * config.guess: improve algorithm for recognizing Gnu Hurd x86.
12099 Thu Apr 24 19:30:07 1997  Ian Lance Taylor  <ian@cygnus.com>
12101         * Makefile.in (DEVO_SUPPORT): Add mpw-install.
12102         (DISTBISONFILES): Add ld/Makefile.in
12104 Tue Apr 22 17:17:28 1997  Geoffrey Noer  <noer@pizza.cygnus.com>
12106         * configure.in: if target is cygwin32 but host isn't cygwin32,
12107         don't configure gdb tcl tk expect, not just gdb.
12109 Mon Apr 21 13:33:39 1997  Tom Tromey  <tromey@cygnus.com>
12111         * configure.in: Added gnuserv everywhere sn appears.
12113         * Makefile.in (ALL_MODULES): Added all-gnuserv.
12114         (CROSS_CHECK_MODULES): Added check-gnuserv.
12115         (INSTALL_MODULES): Added install-gnuserv.
12116         (CLEAN_MODULES): Added clean-gnuserv.
12117         (all-gnuserv): New target.
12119 Thu Apr 17 13:57:06 1997  Per Fogelstrom  <pefo@openbsd.org>
12121         * config.guess: Fixes for MIPS OpenBSD systems.
12123 Tue Apr 15 12:21:07 1997  Ian Lance Taylor  <ian@cygnus.com>
12125         * Makefile.in (INSTALL_XFORM): Remove.
12126         (BASE_FLAGS_TO_PASS): Remove INSTALL_XFORM.
12128         * mkinstalldirs: New file, copied from automake.
12129         * Makefile.in (installdirs): Rename from install-dirs.  Use
12130         mkinstalldirs.  Change all users.
12131         (DEVO_SUPPORT): Add mkinstalldirs.
12133 Mon Apr 14 11:21:38 1997  Ian Lance Taylor  <ian@cygnus.com>
12135         * install-sh: Rename from install.sh.
12136         * Makefile.in (INSTALL): Change install.sh to install-sh.
12137         (DEVO_SUPPORT): Likewise.
12139         * configure: Use ${config_shell} with ${moveifchange}.  From Thomas
12140         Graichen <graichen@rzpd.de>.
12142 Fri Apr 11 16:37:10 1997  Niklas Hallqvist  <niklas@appli.se>
12144         * config.guess: Recognize OpenBSD systems correctly.
12146 Fri Apr 11 17:07:04 1997  Jason Molenda  (crash@godzilla.cygnus.co.jp)
12148         * README, Makefile.in (ETC_SUPPORT): Remove references to
12149         cfg-paper*, configure.{texi,man,info*}._
12151 Sun Apr  6 18:47:57 1997  Andrew Cagney  <cagney@kremvax.cygnus.com>
12153         * Makefile.in (all.normal): Ensure that gcc is built after all
12154         the x11 - ie gdb - targets.
12156 Tue Apr  1 16:28:50 1997  Klaus Kaempf  <kkaempf@progis.de>
12158         * makefile.vms: Don't run conf-a-gas.
12160 Mon Mar 31 16:26:55 1997  Joel Sherrill  <joel@oarcorp.com>
12162         * configure.in (hppa1.1-*-rtems*): New target, like hppa-*-*elf*.
12164 Sun Mar 30 12:38:27 1997  Fred Fish  <fnf@cygnus.com>
12166         * configure.in: Remove noconfigdirs case since gdb also
12167         configures and builds for tic80-coff.
12169 Fri Mar 28 18:28:52 1997  Ian Lance Taylor  <ian@cygnus.com>
12171         * configure: Set cache_file to config.cache.
12172         * Makefile.in (local-distclean): Remove config.cache.
12174 Wed Mar 26 18:49:39 1997  Ian Lance Taylor  <ian@cygnus.com>
12176         * COPYING: Update FSF address.
12178 Wed Mar 26 10:38:25 1997  Michael Meissner  <meissner@cygnus.com>
12180         * configure.in (tic80-*-*): Remove G++ libraries and libgloss from
12181         noconfigdirs.
12183 Mon Mar 24 15:02:39 1997  Ian Lance Taylor  <ian@cygnus.com>
12185         * Makefile.in (install-dirs): Don't crash if prefix, and hence
12186         MAKEDIRS, is empty.
12188 Mon Mar 24 12:40:55 1997  Doug Evans  <dje@canuck.cygnus.com>
12190         * config.sub: Tweak mn10300 entry.
12192 Fri Mar 21 15:35:27 1997  Michael Meissner  <meissner@cygnus.com>
12194         * configure.in (host_tools): Put sim before gdb, so gdb's
12195         configure.tgt can determine if the simulator was configured.
12197 Sun Mar 16 16:07:08 1997  Fred Fish  <fnf@cygnus.com>
12199         * config.sub: Move BeOS $os case to be with other Cygnus
12200         local cases.
12202 Sun Mar 16 01:34:55 1997  Martin Hunt <hunt@cygnus.com>
12204         * config.sub: Remove misplaced comment that broke Linux.
12206 Sat Mar 15 22:50:15 1997  Fred Fish  <fnf@cygnus.com>
12208         * config.sub: Add BeOS support.
12210 Mon Mar 10 13:30:11 1997  Tom Tromey  <tromey@cygnus.com>
12212         * Makefile.in (CHECK_X11_MODULES): Don't run check-tk.
12214 Wed Mar  5 12:09:29 1997  Martin  <hunt@cygnus.com>
12216         * configure.in (noconfigdirs): Remove tcl and tk from
12217         noconfigdirs for cygwin32 builds.
12219 Fri Feb 28 18:20:15 1997  Fred Fish  <fnf@cygnus.com>
12221         * configure.in (tic80-*-*): Remove ld from noconfigdirs.
12223 Thu Feb 27 14:57:26 1997  Ken Raeburn  <raeburn@cygnus.com>
12225         * Makefile.in (GAS_SUPPORT_DIRS, BINUTILS_SUPPORT_DIRS): Remove
12226         make-all.com, use makefile.vms instead.
12228 Tue Feb 25 18:46:14 1997  Stan Shebs  <shebs@andros.cygnus.com>
12230         * config.sub: Accept -lnews*.
12232 Tue Feb 25 13:19:14 1997  Andrew Cagney  <cagney@kremvax.tpgi.com.au>
12234         * configure.in (noconfigdirs): Disable target-newlib,
12235         target-examples and target-libiberty for d30v.
12237 Fri Feb 21 17:56:25 1997  Martin M. Hunt  <hunt@pizza.cygnus.com>
12239         * configure.in (noconfigdirs): Enable ld for d30v.
12241 Fri Feb 21 20:58:51 1997  Michael Meissner  <meissner@cygnus.com>
12243         * configure.in (tic80-*-*): Build compiler.
12245 Sun Feb 16 15:41:09 1997  Andrew Cagney  <cagney@critters.cygnus.com>
12247         * configure.in (d30v-*): Remove sim directory from list of
12248         unsupported d30v directories
12250 Tue Feb 18 17:32:42 1997  Martin M. Hunt  <hunt@pizza.cygnus.com>
12252         * config.sub, configure.in: Add d30v target cpu.
12254 Thu Feb 13 22:04:44 1997  Klaus Kaempf  <kkaempf@progis.de>
12256         * makefile.vms: New file.
12257         * make-all.com: Remove.
12259 Wed Feb 12 12:54:18 1997  Jim Wilson  <wilson@cygnus.com>
12261         * Makefile.in (EXTRA_GCC_FLAGS): Add LIBGCC2_DEBUG_CFLAGS.
12263 Sat Feb  8 20:36:49 1997  Michael Meissner  <meissner@cygnus.com>
12265         * Makefile.in (all-itcl): The rule is all-itcl, not all-tcl.
12267 Tue Feb  4 11:39:29 1997  Tom Tromey  <tromey@cygnus.com>
12269         * Makefile.in (ALL_MODULES): Added all-db.
12270         (CROSS_CHECK_MODULES): Addec check-db.
12271         (INSTALL_MODULES): Added install-db.
12272         (CLEAN_MODULES): Added clean-db.
12274 Mon Feb  3 13:29:36 1997  Ian Lance Taylor  <ian@cygnus.com>
12276         * config.guess: Merge with latest FSF sources.
12278 Tue Jan 28 09:20:37 1997  Tom Tromey  <tromey@cygnus.com>
12280         * Makefile.in (ALL_MODULES): Added all-itcl.
12281         (CROSS_CHECK_MODULES): Added check-itcl.
12282         (INSTALL_MODULES): Added install-itcl.
12283         (CLEAN_MODULES): Added clean-itcl.
12285 Thu Jan 23 01:44:27 1997  Geoffrey Noer  <noer@cygnus.com>
12287         * configure.in: build gdb for mn10200
12289 Fri Jan 17 15:32:15 1997  Doug Evans  <dje@canuck.cygnus.com>
12291         * Makefile.in (all-target-winsup): Depend on all-target-libio.
12293 Mon Jan 13 22:46:54 1997  Michael Meissner  <meissner@tiktok.cygnus.com>
12295         * configure.in (tic80-*-*): Turn off most targets right now.
12297 Fri Jan  3 16:04:03 1997  Ian Lance Taylor  <ian@cygnus.com>
12299         * Makefile.in (MAKEINFO): Check for the existence of the Makefile,
12300         rather than the makeinfo program.
12301         (do-info): Depend upon all-texinfo.
12303 Tue Dec 31 16:00:31 1996  Ian Lance Taylor  <ian@cygnus.com>
12305         * configure.in: Remove uses of config/mh-linux.
12307         * config.sub, config.guess: Merge with latest FSF sources.
12309 Fri Dec 27 23:04:33 1996  Fred Fish  <fnf@cygnus.com>
12311         * config.sub (case $basic_machine): Add tic80 entries.
12313 Fri Dec 27 12:07:59 1996  Ian Lance Taylor  <ian@cygnus.com>
12315         * config.sub, config.guess: Merge with latest FSF sources.
12317 Wed Dec 18 22:46:39 1996  Stan Shebs  <shebs@andros.cygnus.com>
12319         * mpw-build.in: Build ld before gcc, use NewFolderRecursive.
12320         * mpw-config.in: Test for NewFolderRecursive.
12321         * mpw-install: Use symbolic name for startup filename.
12322         * mpw-README: Add various additional details.
12324 Wed Dec 18 13:11:46 1996  Jim Wilson  <wilson@cygnus.com>
12326         * configure.in (mips*-sgi-irix6*): Remove binutils from noconfigdirs.
12328 Wed Dec 18 10:29:31 1996  Jeffrey A Law  (law@cygnus.com)
12330         * configure.in: Do build gcc and the target libraries for
12331         the mn10200.
12333 Wed Dec  4 16:53:05 1996  Geoffrey Noer  <noer@cygnus.com>
12335         * configure.in: don't avoid building gdb for mn10300 any more
12336         * Makefile.in: double-quote GCC_FOR_TARGET line in EXTRA_GCC_FLAGS
12337         instead of single-quoting it.
12339 Tue Dec  3 23:26:50 1996  Jason Merrill  <jason@yorick.cygnus.com>
12341         * configure.in: Don't use --with-stabs on IRIX 6.
12343 Tue Dec  3 09:05:25 1996  Doug Evans  <dje@canuck.cygnus.com>
12345         * configure.in (m32r): Build gdb, libg++ now.
12347 Sun Dec  1 00:18:59 1996  Peter Schauer  (pes@regent.e-technik.tu-muenchen.de)
12349         * configure.in (mips*-sgi-irix6*):  Remove gdb and related
12350         directories from noconfigdirs.
12352 Tue Nov 26 11:45:33 1996  Kim Knuttila  <krk@cygnus.com>
12354         * config.sub (basic_machine): added mips16 configuration
12356 Sat Nov 23 19:26:22 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12358         * config.sub: Handle d10v-unknown.
12360 Sat Nov 23 10:23:01 1996  Gavin Koch  <gavin@cygnus.com>
12362         * config.sub: Handle v850-unknown.
12364 Thu Nov 21 16:19:44 1996  Geoffrey Noer  <noer@cygnus.com>
12366         * Makefile.in: add findutils
12367         * configure.in: add findutils to list of host_tools
12369 Wed Nov 20 10:09:01 1996  Jeffrey A Law  (law@cygnus.com)
12371         * config.sub: Handle mn10200 and mn10300.
12373 Tue Nov 19 16:35:14 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12375         * configure.in (d10v-*): Do not build librx.
12377 Mon Nov 18 13:28:41 1996  Jeffrey A Law  (law@cygnus.com)
12379         * configure.in (mn10300): Build everything except gdb & libgloss.
12381 Wed Nov 13 14:59:46 1996  Per Bothner  <bothner@deneb.cygnus.com>
12383         * config.guess:  Patch for Dansk Data Elektronik servers,
12384         from Niels Skou Olsen <nso@dde.dk>.
12386         For ncr, use /bin/uname rather than uname, since GNU uname does not
12387         support -p.  Suggested by Mark Mitchell <mmitchell@usa.net>.
12389         Patch for MIPS R4000 running System V,
12390         from Eric S. Raymond <esr@snark.thyrsus.com>.
12392         Fix thinko for nextstep.
12394         Patch for OSF1 in i?86, from Dan Murphy <dlm@osf.org> via Harlan Stenn.
12396         Sat Jun 24 18:58:17 1995  Morten Welinder  <terra+@cs.cmu.edu>
12397         * config.guess: Guess mips-dec-mach_bsd4.3.
12399         Thu Oct 10 04:07:04 1996  Harlan Stenn <harlan@pfcs.com>
12400         * config.guess (i?86-ncr-sysv*):  Emit just enough of the minor
12401         release numbers.
12402         * config.guess (mips-mips-riscos*):  Emit just enough of the
12403         release number.
12405         Tue Oct  8 10:37:22 1996  Frank Vance <fvance@waii.com>
12406         * config.guess (sparc-auspex-sunos*):  Added.
12407         (f300-fujitsu-*): Added.
12409         Wed Sep 25 22:00:35 1996  Jeff Woolsey <woolsey@jlw.com>
12410         * config.guess:  Recognize a Tadpole as a sparc.
12412 Wed Nov 13 00:53:09 1996  David J. MacKenzie  <djm@churchy.gnu.ai.mit.edu>
12414         * config.guess: Don't assume that NextStep version is either 2 or
12415         3.  NextStep 4 (aka OpenStep 4) has come out now.
12417 Mon Nov 11 23:52:03 1996  David J. MacKenzie  <djm@churchy.gnu.ai.mit.edu>
12419         * config.guess: Support Cray T90 that reports itself as "CRAY TS".
12420         From Rik Faith <faith@cs.unc.edu>.
12422 Fri Nov  8 11:34:58 1996  David J. MacKenzie  <djm@geech.gnu.ai.mit.edu>
12424         * config.sub: Contributions from bug-gnu-utils to:
12425         Support plain "hppa" (no version given) architecture, reported by
12426         OpenStep.
12427         OpenBSD like NetBSD.
12428         LynxOs is not a hardware supplier.
12430         * config.guess: Contributions from bug-gnu-utils to add support for:
12431         OpenBSD like NetBSD.
12432         Stratus systems.
12433         More Pyramid systems.
12434         i[n>4]86 Intel chips.
12435         M680[n>4]0 Motorola chips.
12436         Use unknown instead of lynx for hardware manufacturer.
12438 Mon Nov 11 10:09:08 1996  Brendan Kehoe  <brendan@lisa.cygnus.com>
12440         * install.sh (chmodcmd): Set to null if the DST directory already
12441         exists.
12443 Mon Nov 11 10:43:41 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12445         * configure.in (powerpc*-{eabi,elf,linux,rtem,sysv,solaris}*): Do
12446         not use mt-ppc target Makefile fragment any more.
12448 Sun Nov  3 19:17:07 1996  Stu Grossman  (grossman@critters.cygnus.com)
12450         * configure.in (*-*-windows):  Exclude everything but those dirs
12451         needed to build windows.
12453 Tue Oct 29 16:41:31 1996  Doug Evans  <dje@canuck.cygnus.com>
12455         * Makefile.in (all-target-winsup): Depend on all-target-librx.
12457 Mon Oct 28 17:32:46 1996  Stu Grossman  (grossman@critters.cygnus.com)
12459         * configure.in:  Exclude mmalloc from i386-windows.
12461 Thu Oct 24 09:22:46 1996  Stu Grossman  (grossman@critters.cygnus.com)
12463         * Undo my previous change.
12465 Thu Oct 24 12:12:04 1996  Ian Lance Taylor  <ian@cygnus.com>
12467         * Makefile.in (EXTRA_GCC_FLAGS): Pass down GCC_FOR_TARGET
12468         unconditionally.
12469         (MAKEOVERRIDES): Define (revert this part of October 18 change).
12471 Thu Oct 24 09:02:07 1996  Stu Grossman  (grossman@critters.cygnus.com)
12473         * Makefile.in (FLAGS_TO_PASS):  Add $(HOST_FLAGS) to allow the
12474         host to add it's own flags.
12476 Tue Oct 22 15:20:26 1996  Ian Lance Taylor  <ian@cygnus.com>
12478         * configure: Handle GCC_FOR_TARGET like CC_FOR_TARGET.
12480 Fri Oct 18 13:37:13 1996  Ian Lance Taylor  <ian@cygnus.com>
12482         * Makefile.in (CC_FOR_TARGET): Check for xgcc, not Makefile.
12483         (CXX_FOR_TARGET): Likewise.
12484         (GCC_FOR_TARGET): Define.
12485         (BASE_FLAGS_TO_PASS): Remove GCC_FOR_TARGET.
12486         (EXTRA_GCC_FLAGS): Define GCC_FOR_TARGET based on whether
12487         CC_FOR_TARGET was specified on the command line.
12488         (MAKEOVERRIDES): Don't define.
12490 Thu Oct 17 10:27:56 1996  Doug Evans  <dje@canuck.cygnus.com>
12492         * configure.in (m32r): Fix spelling of libg++ libs.
12494 Thu Oct 10 10:37:17 1996  Stan Shebs  <shebs@andros.cygnus.com>
12496         * config.sub (-apple*): Remove, now redundant.
12498 Thu Oct 10 12:30:54 1996  Ian Lance Taylor  <ian@cygnus.com>
12500         * configure: Don't get confused by CPU-VENDOR-linux-gnu.
12502         * configure: Rework yesterday's sed script patch.
12504         * config.sub: Merge with FSF.
12506 Wed Oct  9 17:24:59 1996  Per Bothner  <bothner@deneb.cygnus.com>
12508         * config.guess:  Merge from FSF.
12510         1996-09-12  Richard Stallman  <rms@ethanol.gnu.ai.mit.edu>
12511         * config.guess: Use pc instead of unknown, for pc clone systems.
12512         Change linux to linux-gnu.
12514         Mon Jul 15 23:51:11 1996  Karl Heuer  <kwzh@gnu.ai.mit.edu>
12515         * config.guess: Avoid non-portable tr syntax.
12517 Wed Oct  9 06:06:46 1996  Jeffrey A Law  (law@cygnus.com)
12519         * test-build.mk (HOLES): Add "xargs" for gdb.
12521         * configure: Avoid hpux10.20 sed bug.
12523 Tue Oct  8 08:32:48 1996  Stu Grossman  (grossman@critters.cygnus.com)
12525         * configure.in:  Add support for windows host
12526         (that is a build done under the Microsoft build environment).
12528 Tue Oct  8 10:39:08 1996  Ian Lance Taylor  <ian@cygnus.com>
12530         * Makefile.in: Replace all uses of srcroot with s, to shrink
12531         command line lengths.
12533         Patches from Geoffrey Noer <noer@cygnus.com>:
12534         * configure.in: If configuring for newlib, pass --with-newlib to
12535         subdirectories.
12536         * Makefile.in (CC_FOR_TARGET): If winsup/Makefile exists, pass a
12537         -Bnewlib/ and -Lwinsup to gcc.
12538         (CXX_FOR_TARGET): Likewise.
12540 Mon Oct  7 10:59:35 1996  Ian Lance Taylor  <ian@cygnus.com>
12542         * Makefile.in (ETC_SUPPORT): Add configure.
12544 Fri Oct  4 12:22:58 1996  Angela Marie Thomas (angela@cygnus.com)
12546         * configure.in: Use config/mh-dgux386 for i[345]86-dg-dgux
12547         host configuration file.
12549 Thu Oct  3 09:28:25 1996  Jeffrey A Law  (law@cygnus.com)
12551         * configure.in: Break mn10x00 support into separate
12552         mn10200 and mn10300 configurations.
12553         * config.sub: Likewise.
12555 Wed Oct  2 22:27:52 1996  Jeffrey A Law  (law@cygnus.com)
12557         * configure.in: Add lots of stuff to noconfigdirs for
12558         the mn10x00 targets.
12560         * config.sub, configure.in: Add mn10x00 support.
12562 Wed Oct  2 15:52:36 1996  Klaus Kaempf  <kkaempf@progis.de>
12564         * make-all.com: Call conf-a-gas, not config-a-gas.
12566 Tue Oct  1 01:28:41 1996  James G. Smith  <jsmith@cygnus.co.uk>
12568         * configure.in (noconfigdirs): Don't build libgloss for arm-coff
12569         targets.
12571 Mon Sep 30 14:24:01 1996  Stan Shebs  <shebs@andros.cygnus.com>
12573         * mpw-README: Add much more detail for native PowerMac.
12574         * mpw-install: New file.
12575         * mpw-configure: Add --norecursion and --help options.
12576         * mpw-config.in: Translate readme and install files when
12577         copying to objdir.
12578         * mpw-build.in: Don't always depend on byacc and flex.
12579         (install-only-top): New action.
12581 Fri Sep 27 17:39:44 1996  Stu Grossman  (grossman@critters.cygnus.com)
12583         * configure.in:  You can now configure GDB for the v850.
12585 Tue Sep 24 19:05:12 1996  Stan Shebs  <shebs@andros.cygnus.com>
12587         * configure.in (noconfigdirs): Don't configure any C++ dirs
12588         if targeting D10V.
12590 Tue Sep 17 12:15:31 1996  Ian Lance Taylor  <ian@cygnus.com>
12592         * config.sub: Recognize mips64vr5000.
12594 Mon Sep 16 17:00:52 1996  Ian Lance Taylor  <ian@cygnus.com>
12596         * configure.in: Use a single line for host_tools and native_only.
12598 Mon Sep  9 12:21:30 1996  Doug Evans  <dje@canuck.cygnus.com>
12600         * config.sub, configure.in: Add entries for m32r.
12602 Thu Sep  5 13:52:47 1996  Tom Tromey  <tromey@creche.cygnus.com>
12604         * Makefile.in (inet-install): Don't run install-gzip.
12606 Wed Sep  4 17:26:13 1996  Stu Grossman  (grossman@critters.cygnus.com)
12608         * configure.in:  Don't config lots of things for *-*-windows*.
12610 Sat Aug 31 11:45:57 1996  Stan Shebs  <shebs@andros.cygnus.com>
12612         * mpw-config.in: Test for mpw-true, true, and null-command scripts.
12613         (host_libs, host_tools): Copy from configure.in.
12614         * mpw-configure: Don't complain about directories not found.
12616 Thu Aug 29 16:44:58 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12618         * configure.in (i[345]86): Recognize i686 for pentium pro.
12619         (i[3456]86-*-dgux*): Use config/mh-sysv for the host configuration
12620         file.
12622         * config.guess (i[345]86): Ditto.
12624 Mon Aug 26 18:34:42 1996  Martin M. Hunt  <hunt@pizza.cygnus.com>
12626         * configure.in (noconfigdirs): Removed gdb for D10V.
12628 Thu Aug 22 17:13:52 1996  Jeffrey A Law  (law@cygnus.com)
12630         * configure.in: Remove ld, target-libio, target-libg++, and
12631         target-libstdc++ from noconfigdirs.
12633 Wed Aug 21 18:56:38 1996  Fred Fish  <fnf@cygnus.com>
12635         * configure: Fix three locations where shell scripts were
12636         being run directly rather than with config_shell.
12638 Tue Aug 20 13:08:47 1996  J.T. Conklin  <jtc@hippo.cygnus.com>
12640         * configure.in (v850-*-*): Set up initial $noconfigdirs.
12641         * config.sub (basic_machine): Recognize v850.
12643 Thu Aug 15 12:19:33 1996  Stan Shebs  <shebs@andros.cygnus.com>
12645         * mpw-configure: Handle multiple enable/disable options and
12646         pass them down recursively, handle -c and -s flags appropriately
12647         depending on choice of compiler, add escape mechanism for
12648         quoted arguments to gC.
12650 Mon Aug 12 13:15:13 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12652         * configure.in (powerpc*-*-*): For eabi, system V.4, Linux, and
12653         solaris targets, use config/mt-ppc to set C{,XX}FLAGS_FOR_TARGETS
12654         so that -mrelocatable-lib and -mno-eabi are used.
12656         * Makefile.in (CONFIGURE_TARGET_MODULES): If target compiler does
12657         not support --print-multi-lib, don't abort.
12659 Thu Aug  8 12:18:59 1996  Klaus Kaempf  <kkaempf@progis.de>
12661         * make-all.com: Run config-a-gas.
12662         * setup.com: Don't copy subdirectory files around.
12664 Tue Jul 30 17:49:31 1996  Brendan Kehoe  <brendan@cygnus.com>
12666         * configure.in (*-*-ose): Remove exclusion of libgloss for this
12667         target, it now compiles correctly.
12669 Sat Jul 27 15:10:43 1996  Stan Shebs  <shebs@andros.cygnus.com>
12671         * mpw-config.in: Generate Mac include for elf/dwarf2.h.
12673 Tue Jul 23 10:47:04 1996  Martin M. Hunt  <hunt@pizza.cygnus.com>
12675         * configure.in (d10v-*-*): Remove ld from $noconfigdirs.
12677 Mon Jul 22 13:28:51 1996  Brendan Kehoe  <brendan@lisa.cygnus.com>
12679         * configure.in (native_only): Add prms.
12681 Mon Jul 22 12:27:58 1996  Ian Lance Taylor  <ian@cygnus.com>
12683         * Makefile.in (GAS_SUPPORT_DIRS): Add make-all.com and setup.com.
12684         (BINUTILS_SUPPORT_DIRS): Likewise.
12686 Thu Jul 18 12:55:40 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12688         * configure.in (d10v-*-*): Don't configure ld or gdb until the
12689         d10v support is added.
12691 Wed Jul 17 14:33:09 1996  Martin M. Hunt  <hunt@pizza.cygnus.com>
12693         * configure.in (d10v-*-*): New target.
12695 Mon Jul 15 11:53:00 1996  Jeffrey A Law  (law@cygnus.com)
12697         * config.guess (HP 9000/811): Recognize this as a PA1.1
12698         machine.
12700 Fri Jul 12 23:21:17 1996  Ken Raeburn  <raeburn@cygnus.com>
12702         * Makefile.in (do-tar-gz): New target, split out from tail end of
12703         taz target.  Run each command separately, don't use pipes.
12704         (taz): Use it.
12706 Fri Jul 12 12:08:04 1996  Stan Shebs  <shebs@andros.cygnus.com>
12708         * mpw-configure: Look for g-mpw-make.sed in config/mpw.
12709         * mpw-build.in: No builds should depend on building byacc or flex,
12710         they are assumed to be installed already.
12712 Fri Jul 12 09:52:52 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12714         * Makefile.in (CONFIGURE_TARGET_MODULES): Set r environment
12715         variable that CC_FOR_TARGET needs.
12717 Thu Jul 11 10:09:45 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12719         * Makefile.in (CONFIGURE_TARGET_MODULES): Determine if the multlib
12720         options have changed since the last time the subdirectory was
12721         configured, and if it has, reconfigure.
12722         (CLEAN_TARGET_MODULES): Delete multilib.out and tmpmulti.out, which
12723         CONFIGURE_TARGET_MODULES uses to remember the old multilib options.
12725 Wed Jul 10 18:56:59 1996  Doug Evans  <dje@canuck.cygnus.com>
12727         * Makefile.in (ALL_MODULES,CROSS_CHECK_MODULES,INSTALL_MODULES,
12728         CLEAN_MODULES): Add bash.
12729         (all-bash): New target.
12731 Mon Jul  8 17:33:14 1996  Jim Wilson  <wilson@cygnus.com>
12733         * configure.in (mips-sgi-irix6*): Use mh-irix6 instead of mh-irix5.
12735 Mon Jul  1 13:31:35 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12737         * config.sub (basic_machine): Recognize d10v as a valid processor.
12739 Fri Jun 28 12:14:35 1996  Stan Shebs  <shebs@andros.cygnus.com>
12741         * mpw-configure: Add support for --bindir.
12742         * mpw-build.in: Use a GCC-specific build script for GCC actions.
12744 Wed Jun 26 17:20:12 1996  Geoffrey Noer  <noer@cygnus.com>
12746         * configure.in: add bash, time, gawk to list of hosttools and things
12747         to only build for native toolchains
12749 Tue Jun 25 23:09:03 1996  Jason Molenda  (crash@godzilla.cygnus.co.jp)
12751         * Makefile.in (docdir): Remove.
12753 Tue Jun 25 19:00:08 1996  Jason Molenda  (crash@godzilla.cygnus.co.jp)
12755         * Makefile.in (datadir): Set to $(prefix)/share.
12757 Mon Jun 24 23:26:07 1996  Geoffrey Noer  <noer@cygnus.com>
12759         * configure.in: build diff and patch for cygwin32-hosted
12760         toolchains.
12762 Mon Jun 24 15:01:12 1996  Joel Sherrill  <joel@merlin.gcs.redstone.army.mil>
12764         * config.sub: Accept -rtems*.
12766 Sun Jun 23 22:41:54 1996  Geoffrey Noer  <noer@cygnus.com>
12768         * configure.in: enable dosrel for cygwin32-hosted builds,
12769                 remove diff from the list of things not buildable
12770                 via Canadian Cross
12772 Sat Jun 22 11:39:01 1996  Jason Merrill  <jason@yorick.cygnus.com>
12774         * Makefile.in (TARGET_SUBDIR): Move comment to previous line so we
12775         don't get ". ".
12777 Fri Jun 21 17:24:48 1996  Jim Wilson  <wilson@cygnus.com>
12779         * configure.in (mips*-sgi-irix6*): Set noconfigdirs appropriately.
12781 Thu Jun 20 16:57:40 1996  Ken Raeburn  <raeburn@cygnus.com>
12783         * Makefile.in (taz): Handle case where tex3patch didn't even get
12784         checked out.  Also, if it was found, put the symlink in a new util
12785         subdirectory.
12787 Thu Jun 20 12:20:33 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12789         * config.guess (*:Linux:*:*): Add support for PowerPC Linux.
12791 Tue Jun 18 14:24:12 1996  Klaus Kaempf  (kkaempf@progis.de)
12793         * config.sub: Recognize -openvms.
12794         * configure.in (alpha*-*-*vms*): Set noconfigdirs.
12795         * make-all.com, setup.com: New files.
12797 Mon Jun 17 16:34:46 1996  Jason Merrill  <jason@yorick.cygnus.com>
12799         * Makefile.in (taz): tex3patch moved to texinfo/util.
12801 Sat Jun 15 17:13:25 1996  Geoffrey Noer <noer@cygnus.com>
12803         * configure: enable_gdbtk=no for cygwin32-hosted toolchains
12804         * configure.in: remove make from disable-if-Can-Cross list
12805                 enable gdb if ${host} and ${target} are cygwin32
12807 Fri Jun  7 18:16:52 1996  Harlan Stenn <harlan@pfcs.com>
12809         * config.guess (i?86-ncr-sysv*):  Emit minor release numbers.
12810         Recognize the NCR 4850 machine and NCR Pentium-based platforms.
12812 Wed Jun  5 00:09:17 1996  Per Bothner  <bothner@wombat.gnu.ai.mit.edu>
12814         * config.guess:  Combine mips-mips-riscos cases, and use cpp to
12815         distinguish sysv/svr4/bsd variants.
12816         Based on a patch from Harlan Stenn <harlan@pfcs.com>.
12818 Fri Jun  7 14:24:49 1996  Tom Tromey  <tromey@creche.cygnus.com>
12820         * configure.in: Added copyright notice.
12821         * move-if-change: Added copyright notice.
12823 Thu Jun  6 16:27:05 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12825         * configure.in (powerpcle-*-solaris*): Until we get shared
12826         libraries working, don't build gdb, sim, make, tcl, tk, or
12827         expect.
12829 Tue Jun  4 20:41:45 1996  Per Bothner  <bothner@deneb.cygnus.com>
12831         * config.guess:  Merge with FSF:
12833         Mon Jun  3 08:49:14 1996  Karl Heuer  <kwzh@gnu.ai.mit.edu>
12834         * config.guess (*:Linux:*:*): Add guess for sparc-unknown-linux.
12836         Fri May 24 18:34:53 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
12837         * config.guess (AViiON:dgux:*:*): Fix typo in recognizing mc88110.
12839         Fri Apr 12 20:03:59 1996  Per Bothner  <bothner@spiff.gnu.ai.mit.edu>
12840         * config.guess:  Combine two OSF1 rules.
12841         Also recognize field test versions.  From mjr@zk3.dec.com.
12842         * config.guess (dgux):  Use /usr/bin/uname rather than uname,
12843         because GNU uname does not support -p.  From pmr@pajato.com.
12845 Tue Jun  4 11:07:25 1996  Tom Tromey  <tromey@csk3.cygnus.com>
12847         * Makefile.in (MAKEDIRS): Removed $(tooldir).
12849 Tue May 28 12:30:50 1996  Stan Shebs  <shebs@andros.cygnus.com>
12851         * mpw-README: Document GCCIncludes.
12853 Sun May 26 15:16:27 1996  Fred Fish  <fnf@cygnus.com>
12855         * configure.in (alpha-*-linux*): Set enable_shared to yes.
12857 Tue May 21 15:41:39 1996  Stan Shebs  <shebs@andros.cygnus.com>
12859         * mpw-configure: Handle --enable-FOO and --disable-FOO.
12861 Mon May 20 10:12:29 1996  Geoffrey Noer  <noer@cygnus.com>
12863         * configure.in (*-*-cygwin32): Configure make.
12865 Tue May  7 14:19:42 1996  Tom Tromey  <tromey@snuffle.cygnus.com>
12867         * Makefile.in (inet-install): Quote value of INSTALL_MODULES.
12869 Fri May  3 08:57:17 1996  Tom Tromey  <tromey@lisa.cygnus.com>
12871         * Makefile.in (all-inet): Depend on all-perl.
12873         * Makefile.in (inet-install): New target.
12875         * Makefile.in (all-inet): Depend on all-tcl.
12876         (all-inet): Depend on all-send-pr.
12878 Tue Apr 30 13:55:51 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12880         * configure.in (powerpcle-*-solaris*): Turn off tk and tcl
12881         temporarily.
12883 Thu Apr 25 11:48:20 1996  Ian Lance Taylor  <ian@cygnus.com>
12885         * configure.in: Don't configure --with-gnu-ld on AIX.
12887 Thu Apr 25 06:33:36 1996  Michael Meissner  <meissner@wogglebug.tiac.net>
12889         * configure.in (powerpcle-*-solaris*): Turn off gdb temporarily.
12891 Tue Apr 23 09:07:39 1996  Tom Tromey  <tromey@creche.cygnus.com>
12893         * Makefile.in (ALL_MODULES): Added all-inet.
12894         (CROSS_CHECK_MODULES): Added check-inet.
12895         (INSTALL_MODULES): Added install-inet.
12896         (CLEAN_MODULES): Added clean-inet.
12897         (all-indent): New target.
12899         * configure.in (host_tools): Added inet.
12900         (native_only): Added inet.
12901         (noconfigdirs): Added inet.
12903 Fri Apr 19 15:35:29 1996  Ian Lance Taylor  <ian@cygnus.com>
12905         * configure.in: Don't configure libgloss if we are not configuring
12906         newlib.
12908 Wed Apr 17 19:30:01 1996  Rob Savoye  <rob@chinadoll.cygnus.com>
12910         * configure.in: Don't configure libgloss for unsupported
12911         architectures.
12913 Tue Apr 16 11:17:05 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12915         * Makefile.in (CLEAN_MODULES): Add clean-apache.
12917 Mon Apr 15 15:09:05 1996  Tom Tromey  <tromey@creche.cygnus.com>
12919         * Makefile.in (ALL_MODULES): Include all-apache.
12920         (CROSS_CHECK_MODULES): Include check-apache.
12921         (INSTALL_MODULES): Include install-apache.
12922         (all-apache): New target.
12924         * configure.in: Added apache everywhere perl is seen.
12926 Mon Apr 15 14:59:13 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12928         * Makefile.in: Add support for clean-{module} and
12929         clean-target-{module} rules.
12931 Wed Apr 10 21:37:41 PDT 1996  Marilyn E. Sander <msander@cygnus.com>
12933         * configure.in (*-*-ose) do not build libgloss.
12935 Mon Apr  8 16:16:20 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12937         * config.guess (prep*:SunOS:5.*:*): Turn into
12938         powerpele-unknown-solaris2.
12940 Mon Apr  8 14:45:41 1996  Ian Lance Taylor  <ian@cygnus.com>
12942         * configure.in: Permit --enable-shared to specify a list of
12943         directories.
12945 Fri Apr  5 08:17:57 1996  Jason Molenda  (crash@phydeaux.cygnus.com)
12947         * configure.in (host==solaris): Pass only the first word of $CC
12948         to /usr/bin/which when checking if we're using /usr/ccs/bin/cc.
12950 Fri Apr  5 03:16:13 1996  Jason Molenda  (crash@phydeaux.cygnus.com)
12952         * Makefile.in (BASE_FLAGS_TO_PASS): pass down $(MAKE).
12954 Thu Mar 28 14:11:11 1996  Tom Tromey  <tromey@creche.cygnus.com>
12956         * Makefile.in (ALL_MODULES): Include all-perl.
12957         (CROSS_CHECK_MODULES): Include check-perl.
12958         (INSTALL_MODULES): Include install-perl.
12959         (ALL_X11_MODULES): Include all-guile.
12960         (CHECK_X11_MODULES): Include check-guile.
12961         (INSTALL_X11_MODULES): Include install-guile.
12962         (all-perl): New target.
12963         (all-guile): New target.
12965         * configure.in (host_tools): Include perl and guile.
12966         (native_only): Include perl and guile.
12967         (noconfigdirs): Don't build guile and perl; no ports have been
12968         done.
12970 Tue Mar 26 21:18:50 1996  Andrew Cagney  <cagney@kremvax.highland.com.au>
12972         * configure (--enable-*): Handle quoted option lists such as
12973         --enable-sim-cflags='-g0 -O' better.
12975 Thu Mar 21 11:53:08 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12977         * Makefile.in ({,inst}all-target): New rule so we can make and
12978         install all of the target directories easily.
12980 Wed Mar 20 18:10:57 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
12982         * configure.in: Add missing global flag in sed substitution when
12983         deleting `target-' from ${configdirs}.
12985 Thu Mar 14 19:15:06 1996  Ian Lance Taylor  <ian@cygnus.com>
12987         * Makefile.in (DO_X): Don't get confused if CC contains `=' in an
12988         option.
12990         * configure.in (mips*-nec-sysvr4*): Use a host_makefile_frag of
12991         config/mh-necv4.
12993         * install.sh: Correct misspelling of transformbasename.
12995         * config.guess: Recognize mips-*-sysv*.
12997 Mon Mar 11 15:36:42 1996  Dawn Perchik  <dawn@critters.cygnus.com>
12999         * config.sub: Recognize mon960.
13001 Sun Mar 10 13:18:38 1996  Ian Lance Taylor  <ian@cygnus.com>
13003         * configure: Restore Canadian Cross handling of BISON and LEX,
13004         removed in Feb 20 change.
13006 Fri Mar  8 20:07:09 1996  Per Bothner  <bothner@kalessin.cygnus.com>
13008         * README:  Suggestions from Torbjorn Granlund <tege@matematik.su.se>:
13009         Mention make install.  Remove the old copyright date as well the
13010         clumsy and rather pointless copyright on the README file.
13012 Fri Mar  8 17:51:35 1996  Ian Lance Taylor  <ian@cygnus.com>
13014         * Makefile.in ($(CONFIGURE_TARGET_MODULES)): If there is a
13015         Makefile after running symlink-tree, then run `make distclean' to
13016         avoid clobbering any generated files in srcdir.
13018 Tue Mar  5 08:21:44 1996  J.T. Conklin  <jtc@rtl.cygnus.com>
13020         * configure.in (m68k-*-netbsd*): Build everything now.
13022 Wed Feb 28 12:25:46 1996  Jason Merrill  <jason@yorick.cygnus.com>
13024         * Makefile.in (taz): Fix quoting.
13026 Tue Feb 27 11:33:57 1996  Doug Evans  <dje@charmed.cygnus.com>
13028         * configure.in (sparclet-*-*): Build everything now.
13030 Tue Feb 27 14:31:51 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
13032         * configure.in (m68k-*-linux*): New host.
13034 Mon Feb 26 14:32:44 1996  Ian Lance Taylor  <ian@cygnus.com>
13036         * configure: Check for bison before byacc.
13038 Tue Feb 20 23:12:35 1996  Stu Grossman  (grossman@critters.cygnus.com)
13040         * Makefile.in configure:  Change the way LEX and BISON/YACC are
13041         set.  configure now defines DEFAULT_LEX and DEFAULT_YACC by
13042         searching PATH.  These are used as fallbacks by Makefile.in if
13043         flex/bison/byacc aren't in objdir.
13045 Mon Feb 19 11:45:30 1996  Ian Lance Taylor  <ian@cygnus.com>
13047         * Makefile.in: Make everything which depends upon all-bfd also
13048         depend upon all-opcodes, in case --with-commonbfdlib is used.
13050 Thu Feb 15 19:50:50 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
13052         * configure.in (host *-*-cygwin32): Don't build gdb if we are
13053         building NT native compilers on Unix.
13055 Thu Feb 15 17:42:25 1996  Ian Lance Taylor  <ian@cygnus.com>
13057         * configure.in: Don't get CC from the host Makefile fragment if we
13058         can find gcc in PATH, or if this is a Canadian Cross.  Move the
13059         Solaris test for /usr/ucb/cc to the post target script, just after
13060         the compiler sanity test.
13062 Wed Feb 14 16:57:40 1996  Ian Lance Taylor  <ian@cygnus.com>
13064         * config.sub: Merge with FSF.
13066 Tue Feb 13 14:27:48 1996  Ian Lance Taylor  <ian@cygnus.com>
13068         * Makefile.in (RPATH_ENVVAR): New variable.
13069         (REALLY_SET_LIB_PATH): Use it.
13070         * configure.in: On HP/UX, set RPATH_ENVVAR to SHLIB_PATH.
13072 Mon Feb 12 15:28:49 1996  Doug Evans  <dje@charmed.cygnus.com>
13074         * config.sub, configure.in: Recognize sparclet cpu.
13076 Mon Feb 12 15:33:59 1996  Christian Bauernfeind <chrisbfd@theorie3.physik.uni-erlangen.de>
13078         * config.guess:  Support m68k-cbm-sysv4.
13080 Sat Feb 10 12:06:42 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
13082         * config.guess (*:Linux:*:*): Guess m68k-unknown-linux and
13083         m68k-unknown-linuxaout from linker help string.  Put quotes around
13084         $ld_help_string.
13086 Thu Dec  7 09:03:24 1995  Tom Horsley  <Tom.Horsley@mail.hcsc.com>
13088         * config.guess (powerpc-harris-powerunix): Add guess for port
13089         to new target.
13091 Thu Feb  8 15:37:52 1996  Brendan Kehoe  <brendan@lisa.cygnus.com>
13093         * config.guess (UNAME_VERSION): Recognize X4.x as an OSF version.
13095 Mon Feb  5 16:36:51 1996  Ian Lance Taylor  <ian@cygnus.com>
13097         * configure.in: If --enable-shared was used, set SET_LIB_PATH to
13098         $(REALLY_SET_LIB_PATH) in Makefile.
13099         * Makefile.in (SET_LIB_PATH): New variable.
13100         (REALLY_SET_LIB_PATH): New variable.
13101         ($(DO_X)): Use $(SET_LIB_PATH).
13102         (install.all, gcc-no-fixedincludes, $(ALL_MODULES)): Likewise.
13103         ($(NATIVE_CHECK_MODULES), $(CROSS_CHECK_MODULES)): Likewise.
13104         ($(INSTALL_MODULES), $(CONFIGURE_TARGET_MODULES)): Likewise.
13105         ($(ALL_TARGET_MODULES), $(CHECK_TARGET_MODULES)): Likewise.
13106         ($(INSTALL_TARGET_MODULES), $(ALL_X11_MODULES)): Likewise.
13107         ($(CHECK_X11_MODULES), $(INSTALL_X11_MODULES)): Likewise.
13108         (all-gcc, all-bootstrap, check-gcc, install-gcc): Likewise.
13109         (install-dosrel): Likewise.
13110         (all-opcodes): Depend upon all-libiberty.
13112 Sun Feb  4 16:51:11 1996  Steve Chamberlain  <sac@slash.cygnus.com>
13114         * config.guess (*:CYGWIN*): New
13116 Sat Feb  3 10:42:35 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
13118         * Makefile.in (all-target-winsup): All all-target-libiberty.
13120 Fri Feb  2 17:58:56 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
13122         * configure.in (noconfigdirs): Add missing # in front of comment.
13124 Thu Feb  1 14:38:13 1996  Geoffrey Noer  <noer@cygnus.com>
13126         * configure.in: add second pass to things added to noconfigdirs
13127         so *-gm-magic can exclude libgloss properly.
13129 Thu Feb  1 11:10:16 1996  Stan Shebs  <shebs@andros.cygnus.com>
13131         * mpw-configure (extralibs_name, rez_name): Set correctly
13132         for MWC68K compiler.
13134         * mpw-README: Add more info on the necessary build tools.
13136 Thu Feb  1 10:22:38 1996  Steve Chamberlain  <sac@slash.cygnus.com>
13138         * configure.in, config.sub: Recognize cygwin32.
13140 Wed Jan 31 14:17:10 1996  Richard Henderson  <rth@tamu.edu>
13142         * config.guess, config.sub: Recognize A/UX.
13144 Wed Jan 31 13:52:14 1996  Ian Lance Taylor  <ian@cygnus.com>
13146         * config.sub: Merge with gcc/config.sub.
13148 Thu Jan 25 11:01:10 1996  Raymond Jou  <rjou@mexican.cygnus.com>
13150         * mpw-build.in (do-binutils): Add build of stamps.
13152 Thu Jan 25 17:05:26 1996  James G. Smith  <jsmith@cygnus.co.uk>
13154         * config.sub: Add recognition for mips64vr4100*-* targets.
13156 Wed Jan 24 12:47:55 1996  Brendan Kehoe  <brendan@lisa.cygnus.com>
13158         * test-build.mk: Add checking of `hpux9' rather than just `hpux'.
13159         Add creation of gconfigargs with `--enable-shared' turned on.
13160         ($(host)-stamp-stage2-configured): Pass $(gconfigargs).
13161         ($(host)-stamp-stage3-configured): Likewise.
13162         (HOLES): Add chatr and ldd.
13163         (i386-ncr-sysv4.3*): Add use of /usr/ccs/bin in the PATH and HOLE_DIRS.
13165 Wed Jan 24 20:32:30 1996  Torbjorn Granlund  <tege@noisy.matematik.su.se>
13167         * configure: Pass --nfp to recursive configures.
13169 Mon Jan 22 10:41:56 1996  Steve Chamberlain  <sac@slash.cygnus.com>
13171         * Makefile.in (DLLTOOL): New.
13172         (DLLTOOL_FOR_TARGET): New.
13173         (EXTRA_HOST_FLAGS): Pass down DLLTOOL.
13174         (EXTRA_TARGET_FLAGS): Ditto.
13175         (EXTRA_GCC_FLAGS): Ditto.
13176         (CONFIGURE_TARGET_MODULES): Ditto.
13177         (DO_X): Ditto.
13178         * configure: Add DLLTOOL.
13180 Fri Jan 19 13:30:15 1996  Stan Shebs  <shebs@andros.cygnus.com>
13182         SCO OpenServer 5 changes from Robert Lipe <robertl@dgii.com>:
13183         * configure.in (i[345]86-*-sco3.2v5*): Use mh-sysv instead of
13184         mh-sco, since old workarounds no longer needed, and don't
13185         build ld, since libraries have weak symbols in COFF.
13187 Sun Jan 14 23:01:31 1996  Fred Fish  <fnf@cygnus.com>
13189         * Makefile.in (CONFIGURE_TARGET_MODULES): Add missing ';'.
13191 Fri Jan 12 15:25:35 1996  Ian Lance Taylor  <ian@cygnus.com>
13193         * configure.in: Make sure that ${CC} can be used to compile an
13194         executable.
13196 Sat Jan  6 07:23:33 1996  Michael Meissner  <meissner@wogglebug.tiac.net>
13198         * Makefile.in (all-gdb): Depend on $(GDB_TK).
13199         * configure (GDB_TK): Set GDB_TK to either "all-tcl all-tk" or
13200         nothing depending on whether gdbtk is being built.
13202 Wed Jan  3 17:54:41 1996  Doug Evans  <dje@canuck.cygnus.com>
13204         * Makefile.in (newlib.tar.gz): Delete building of newlib's info files.
13206 Mon Jan  1 19:09:14 1996  Brendan Kehoe  <brendan@rtl.cygnus.com>
13208         * configure.in (noconfigdirs): Put ld or gas in this early, if the
13209         user specifically used --with-gnu-ld=no or --with-gnu-as=no.
13211 Sat Dec 30 16:08:57 1995  Doug Evans  <dje@canuck.cygnus.com>
13213         * config-ml.in: Add support for
13214         --disable-{softfloat,m68881,m68000,m68020} on m68*-*-*.
13215         Simplify setting of multidirs from --disable-foo.
13217 Fri Dec 29 07:56:11 1995  Michael Meissner  <meissner@tiktok.cygnus.com>
13219         * Makefile.in (EXTRA_GCC_FLAGS): If any of the make variables
13220         LANGUAGES, BOOT_CFLAGS, STMP_FIXPROTO, LIMITS_H_TEST,
13221         LIBGCC1_TEST, LIBGCC2_CFLAGS, LIBGCC2_INCLUDES, and ENQUIRE are
13222         non-empty, pass them on to the  GCC make.
13223         (all-bootstrap): New rule that is like all-gcc, except it executes
13224         the GCC bootstrap rule instead of the GCC all rule.
13226 Wed Dec 27 15:51:48 1995  Doug Evans  <dje@canuck.cygnus.com>
13228         * config-ml.in (ml_realsrcdir): New, to account for ${subdir}.
13230 Tue Dec 26 11:45:31 1995  Michael Meissner  <meissner@tiktok.cygnus.com>
13232         * config.guess (AViiON:dgux:*:*): Update from FSF to add pentium
13233         DG/UX support.
13235 Fri Dec 15 10:01:27 1995  Stan Cox  <coxs@dg-rtp.dg.com>
13237         * config.sub (i*86*) Change [345] to [3456]
13239 Wed Dec 20 17:41:40 1995  Brendan Kehoe  <brendan@lisa.cygnus.com>
13241         * configure.in (noconfigdirs): Add gas or ld if --with-gnu-as=no or
13242         --with-gnu-ld=no.
13244 Wed Dec 20 15:15:35 1995  Michael Meissner  <meissner@tiktok.cygnus.com>
13246         * config-ml.in (rs6000*, powerpc*): Add switches to control which
13247         AIX multilibs get built.
13249 Mon Dec 18 17:55:46 1995  Jason Molenda  (crash@phydeaux.cygnus.com)
13251         * configure.in (i386-win32): Don't build expect if we're not
13252         building the tcl subdir.
13254 Mon Dec 18 11:47:19 1995  Stan Shebs  <shebs@andros.cygnus.com>
13256         * Makefile.in: (configure-target-examples, all-target-examples):
13257         New targets, configure and build example programs.
13259 Fri Dec 15 16:13:03 1995  Stan Shebs  <shebs@andros.cygnus.com>
13261         * mpw-configure: If an mpw-config.in generated a file mk.sed,
13262         use it as input to sedit the generated MPW makefile.
13263         * mpw-README: Add a suggestion about Gestalt.h.
13265 Wed Dec 13 16:43:51 1995  Ian Lance Taylor  <ian@cygnus.com>
13267         * config.sub: Accept *-*-ieee*.
13269 Tue Dec 12 11:52:57 1995  Ian Lance Taylor  <ian@cygnus.com>
13271         * Makefile.in (local-distclean): Remove $(TARGET_SUBDIR).  From
13272         Ronald F. Guilmette <rfg@monkeys.com>.
13274 Mon Dec 11 15:31:58 1995  Jason Molenda  (crash@phydeaux.cygnus.com)
13276         * configure.in (host==powerpc-pe): Add many directories to noconfigdirs
13277         for powerpc-pe native.
13278         (target==i386-win32): add tcl, make to noconfigdirs if canadian cross.
13279         (target==powerpc-pe): duplicate i386-win32 entry.
13281 Sat Dec  9 14:58:28 1995  Jim Wilson  <wilson@chestnut.cygnus.com>
13283         * configure.in (noconfigdirs): Exclude target-newlib for all versions
13284         of vxworks, not just vxworks5.1.
13286 Mon Dec  4 12:05:40 1995  Stan Shebs  <shebs@andros.cygnus.com>
13288         * mpw-configure: Add support for exec-prefix.
13290 Mon Dec  4 10:22:50 1995  Jeffrey A. Law  <law@rtl.cygnus.com>
13292         * config.guess: Recognize HP model 816 machines as having
13293         a PA1.1 processor.
13295 Mon Dec  4 12:38:15 1995  Ian Lance Taylor  <ian@cygnus.com>
13297         * configure: Ignore new autoconf configure options.
13299 Thu Nov 30 16:57:33 1995  Per Bothner  <bothner@wombat.gnu.ai.mit.edu>
13301         * config.guess:  Recognize Pentium under SCO.
13302         From Robert Lipe <robertl@arnet.com>.
13304 Wed Nov 29 13:49:08 1995  J.T. Conklin  <jtc@rtl.cygnus.com>
13306         * configure.in (noconfigdirs): Disable target-libio on v810-*-*.
13308 Wed Nov 29 12:12:01 1995  Ian Lance Taylor  <ian@cygnus.com>
13310         * configure.in: Don't configure gas for alpha-dec-osf*.
13312 Tue Nov 28 17:16:48 1995  Ian Lance Taylor  <ian@cygnus.com>
13314         * configure.in: Default to --with-stabs for some targets for which
13315         it makes sense: mips*-*-*, alpha*-*-osf*, i[345]86*-*-sysv4* and
13316         i[345]86*-*-unixware*.
13318 Mon Nov 27 13:44:15 1995  Ian Lance Taylor  <ian@cygnus.com>
13320         * config-ml.in: Get list of multidirs using gcc --print-multi-lib
13321         rather than basing it on the target.  Simplify handling of options
13322         controlling which directories to configure.  Remove extraneous
13323         slash in multi-clean target.
13325 Fri Nov 24 17:29:29 1995  Doug Evans  <dje@deneb.cygnus.com>
13327         * config-ml.in: Prefix more variables with ml_ so they don't collide
13328         with configure's.
13330 Wed Nov 22 11:27:02 1995  Ian Lance Taylor  <ian@cygnus.com>
13332         * configure: Don't turn -v into --v.
13334 Tue Nov 21 16:48:02 1995  Doug Evans  <dje@deneb.cygnus.com>
13336         * configure.in (targargs): Fix typo.
13338         * Makefile.in (DEVO_SUPPORT): Add symlink-tree.
13340 Tue Nov 21 14:08:28 1995  Ian Lance Taylor  <ian@cygnus.com>
13342         * configure.in: Strip --host and --target options from
13343         CONFIG_ARGUMENTS, and always configure for --host only.  Add
13344         --with-cross-host option when building with a cross-compiler.
13345         * configure: Canonicalize the arguments put into config.status by
13346         always using `=' for an option with an argument.  Pass a presumed
13347         --host or --target explicitly.
13349 Fri Nov 17 17:50:30 1995  Stan Shebs  <shebs@andros.cygnus.com>
13351         * config.sub: Merge -macos*, -magic*, -pe*, and -win32 cases
13352         into general OS recognition case.
13354 Fri Nov 17 17:42:25 1995  Jason Molenda  (crash@phydeaux.cygnus.com)
13356         * configure.in (target_configdirs): add target-winsup only
13357         for win32 target systems.
13359 Thu Nov 16 14:04:47 1995  Ian Lance Taylor  <ian@cygnus.com>
13361         * Makefile.in (all-target-libgloss): Depend upon
13362         configure-target-newlib, since when libgloss is built it looks to
13363         see if the newlib directory exists.
13365 Wed Nov 15 14:47:52 1995  Ken Raeburn  <raeburn@cygnus.com>
13367         * Makefile.in (DEVO_SUPPORT): Use config-ml.in instead of
13368         cfg-ml-*.in.
13370 Wed Nov 15 11:45:23 1995  Ian Lance Taylor  <ian@cygnus.com>
13372         * configure: Handle LD and LD_FOR_TARGET when configuring a
13373         Canadian Cross.
13375 Tue Nov 14 14:56:11 1995  Jason Molenda  (crash@phydeaux.cygnus.com)
13377         * configure.in (target_libs): add target-winsup.
13378         (target==i386-win32): add patch diff flex make to $noconfigdirs.
13379         (target==ppcle-pe): remove ld from $noconfigdirs.
13381 Tue Nov 14 01:25:50 1995  Doug Evans  <dje@canuck.cygnus.com>
13383         * Makefile.in (CONFIGURE_TARGET_MODULES): Pass --with-target-subdir.
13384         Preserve relative path names in $srcdir.  Build symlink tree if
13385         configuring cross target dir and srcdir=. (= no VPATH support).
13386         (configure-target-libg++): Depend on configure-target-librx.
13387         * cfg-ml-com.in, cfg-ml-pos.in: Deleted.
13388         * config-ml.in: New file.
13389         * symlink-tree: New file.
13390         * configure: Ensure srcdir="." if that's what it is.
13392 Mon Nov 13 12:34:20 1995  Stan Shebs  <shebs@andros.cygnus.com>
13394         * mpw-README: Clarify some phrasing, add notes about CodeWarrior
13395         includes and FLEX_SKELETON setting.
13396         * mpw-configure (--with-gnu-ld): New option, controls whether
13397         to use PPCLink or ld with PowerMac GCC.
13398         * mpw-build.in (all-grez, do-grez, install-grez): New targets.
13399         * mpw-config.in: Configure grez if targeting Mac.
13401         * config.sub: Accept pmac and pmac-mpw as names for PowerMacs,
13402         accept mpw and mac-mpw as names for m68k Macs, change macos7 to
13403         just macos.
13404         * configure.in: Configure grez resource compiler if targeting Mac.
13405         * Makefile.in (all-grez, install-grez): New targets.
13407 Wed Nov  8 17:33:51 1995  Jason Merrill  <jason@yorick.cygnus.com>
13409         * configure: CXX defaults to gcc, not g++.  If we find
13410         gcc in the path, set CC to gcc -O2.
13412 Tue Nov  7 15:45:17 1995  Ian Lance Taylor  <ian@cygnus.com>
13414         * configure: Default ${build} correctly.  Avoid picking up extra
13415         spaces when reading CC and CXX from Makefile.  When doing a
13416         Canadian Cross, use plausible default values for numerous
13417         variables.
13418         * configure.in: When doing a Canadian Cross, don't try to
13419         configure tools whose configure script can't handle it.
13421 Mon Nov  6 19:32:17 1995  Jim Wilson  <wilson@chestnut.cygnus.com>
13423         * cfg-ml-com.in (sh-*-*): Add m2 and ml/m2 to multidirs.
13425 Sun Nov  5 00:15:41 1995  Per Bothner  <bothner@kalessin.cygnus.com>
13427         * configure:  Remove dubious bug reporting address.
13429 Fri Nov  3 08:17:54 1995  Per Bothner  <bothner@kalessin.cygnus.com>
13431         * Makefile.in ($(CONFIGURE_TARGET_MODULES)):  If subdir has
13432         configure script, run that instead of this directory's configure.
13433         In either case, print a message that we're configuring the sub-dir.
13435 Thu Nov  2 23:23:36 1995  Per Bothner  <bothner@kalessin.cygnus.com>
13437         * configure.in: Before checking for the existence of various files,
13438         use sed to filter out "target-".
13440 Thu Nov  2 13:24:56 1995  Ian Lance Taylor  <ian@cygnus.com>
13442         * Makefile.in (DO_X): Split rule to decrease command line length
13443         for systems with small ARG_MAX values.  From phdm@info.ucl.ac.be
13444         (Philippe De Muyter).
13446 Wed Nov  1 15:18:35 1995  Jason Molenda  (crash@phydeaux.cygnus.com)
13448         * Makefile.in (all-patch): depend on all-libiberty.
13450 Wed Nov  1 12:23:20 1995  Ian Lance Taylor  <ian@cygnus.com>
13452         * configure.in: If the only directory in target_configdirs which
13453         actually exists is libiberty, then set target_configdirs to empty,
13454         to avoid trying to build a target libiberty in a gas or gdb
13455         distribution.
13457 Tue Oct 31 17:52:39 1995  J.T. Conklin  <jtc@slave.cygnus.com>
13459         * configure.in (host_makefile_frag): Use m68k-sun-sunos* instead
13460         of m68k-sun-* when selecting mh-sun3 to avoid matching NetBSD/sun3
13461         systems.
13463 Tue Oct 31 16:57:32 1995  Jim Wilson  <wilson@chestnut.cygnus.com>
13465         * configure.in (copy_dirs): Use sys-include instead of include
13466         for --with-headers option.
13468 Tue Oct 31 10:29:36 1995  steve chamberlain  <sac@slash.cygnus.com>
13470         * Makefile.in, configure.in: Make winsup builds work with
13471         new scheme.
13473 Mon Oct 30 18:57:09 1995  Ian Lance Taylor  <ian@cygnus.com>
13475         * configure.in: Build the linker on AIX.
13477 Mon Oct 30 12:27:16 1995  Per Bothner  <bothner@kalessin.cygnus.com>
13479         * Makefile.in (CC_FOR_TARGET, CXX_FOR_TARGET):  Add $(TARGET_SUBDIR)
13480         where needed.
13482 Mon Oct 30 12:45:25 1995  Doug Evans  <dje@cygnus.com>
13484         * Makefile.in (all-gcc): Fix typo.
13486 Sat Oct 28 10:27:59 1995  Per Bothner  <bothner@kalessin.cygnus.com>
13488         * Makefile.in ($(CHECK_TARGET_MODULES)):  Fix typo.
13490 Fri Oct 27 23:14:12 1995  Per Bothner  <bothner@kalessin.cygnus.com>
13492         * configure.in:  Rename libFOO to target-libFOO, and xiberty
13493         to target-xiberty, to provide more flexibility.
13494         (target_subdir):  Define.  Create if cross.
13495         Set TARGET_SUBDIR in Makefile to ${target_subdir}.
13496         * Makefile.in:  Rename all-libFOO -> all-target-libFOO, all-xiberty
13497         -> all-target-libiberty, configure-libFOO -> configure-target-libFOO,
13498         check-libFOO -> check-target-libFOO, etc.
13499         ($(DO_X)):  Iterate over TARGET_CONFIGDIRS after SUBDIRS.
13500         ($(CONFIGURE_TARGET_MODULES), $(CHECK_TARGET_MODULES),
13501         $(ALL_TARGET_MODULES), $(INSTALL_TARGET_MODULES)): Update accordingly.
13502         (configure-target-XXX):  Depend on $(ALL_GCC), not all-gcc, to
13503         allow ALL_GCC="" to only configure.
13504         (DEVO_SUPPORT):  Add cfg-ml-com.in and cfg-ml-pos.in.
13505         (ETC_SUPPORT, ETC_SUPPORT_PFX):  Merge;  update 'taz' accordingly.
13506         (LIBGXX_SUPPORT_DIRS):  Remove xiberty.
13508 Sat Oct 28 01:53:49 1995  Ken Raeburn  <raeburn@cygnus.com>
13510         * Makefile.in (taz): Build "info" in etc explicitly.
13512 Fri Oct 27 09:32:30 1995  Stu Grossman  (grossman@cygnus.com)
13514         * configure.in:  Make sure that CC is undefined (as opposed to
13515         null) if toplevel/config/mh-{host} doesn't define it.  Fixes a
13516         problem with autoconf trying to configure on a host without GCC.
13518 Thu Oct 26 22:35:01 1995  Stan Shebs  <shebs@andros.cygnus.com>
13520         * mpw-configure: Set host alias from choice of host compiler,
13521         only use generic MPW Makefile sed if present, edit a file
13522         named "hacked_Makefile.in" instead of "Makefile.in" if present.
13523         * mpw-README: Add problem notes about CW6 and CW7.
13525 Thu Oct 26 05:45:10 1995  Ken Raeburn  <raeburn@kr-pc.cygnus.com>
13527         * Makefile.in (taz): Use ";" instead of ";;".
13529 Wed Oct 25 15:18:24 1995  Per Bothner  <bothner@kalessin.cygnus.com>
13531         * Makefile.in (taz):  Grep for '^diststuff:' or '^info:' in
13532         sub-directory Makefiles, instead of using DISTSTUFFDIRS and
13533         DISTDOCDIRS.
13534         (DISTSTUFFDIRS, DISTDOCDIRS):  Removed - no longer used.
13535         (newlib.tar.gz):  Don't pass DISTDOCDIRS to recursive make.
13537 Wed Oct 25 14:43:55 1995  Per Bothner  <bothner@kalessin.cygnus.com>
13539         * Makefile.in (DISTDOCDIRS):  Remove ld gprof bnutils gas libg++ gdb
13540         and gnats, because they are now subsumed by DISTSTUFFDIRS.
13541         Move bfd to DISTSTUFFDIRS.
13543 Tue Oct 24 18:19:09 1995  Jason Molenda  (crash@phydeaux.cygnus.com)
13545         * Makefile.in (X11_LIB): Removed.
13546         (X11_FLAGS_TO_PASS): pass only X11_EXTRA_CFLAGS and X11_EXTRA_LIBS.
13548         * configure.in (host_makefile_frag): mh-aix & mh-sun removed.
13550 Sun Oct 22 13:04:42 1995  Michael Meissner  <meissner@tiktok.cygnus.com>
13552         * cfg-ml-com.in (powerpc*): Shorten some of the multilib directory
13553         names.
13555 Fri Oct 20 18:02:10 1995  Michael Meissner  <meissner@tiktok.cygnus.com>
13557         * cfg-ml-com.in (powerpc*-eabi*): Add mcall-aixdesc varients.
13559 Thu Oct 19 10:40:57 1995  steve chamberlain  <sac@slash.cygnus.com>
13561         * configure.in (i[345]86-*-win32): Always build newlib.
13562         Don't configure cvs, autoconf or texinfo.
13563         * Makefile.in (LD_FOR_TARGET): New.
13564         (BASE_FLAGS_TO_PASS, EXTRA_TARGET_FLAGS, CONFIGURE_TARGET_MODULES):
13565         Pass down LD_FOR_TARGET.
13567 Wed Oct 18 15:53:56 1995  steve chamberlain  <sac@slash.cygnus.com>
13569         * winsup: New directory.
13570         * Makefile.in: Build winsup.
13571         * configure.in: Winsup is configured when target is win32.
13572         Can only build win32 target GDB when native.
13574 Mon Oct 16 09:42:31 1995  Jeffrey A Law  (law@cygnus.com)
13576         * config.guess: Recognize HP model 819 machines as having
13577         a PA 1.1 processor.
13579 Mon Oct 16 10:49:43 1995  Ian Lance Taylor  <ian@cygnus.com>
13581         * configure: Fix sed loop which substitutes for CC and CXX to
13582         avoid bug found in various sed implementations.
13584 Wed Oct 11 16:16:20 1995  Michael Meissner  <meissner@tiktok.cygnus.com>
13586         * cfg-ml-com.in (powerpc-*-eabisim): Delete separate rule for
13587         simulator.  Use standard powerpc-*-eabi*.
13589 Mon Oct  9 17:21:56 1995  Ian Lance Taylor  <ian@cygnus.com>
13591         * configure.in: Stop putting gas and binutils in noconfigdirs for
13592         powerpc-*-aix* and rs6000-*-*.
13594 Mon Oct  9 12:38:40 1995  Michael Meissner  <meissner@cygnus.com>
13596         * cfg-ml-com.in (powerpc*-*-eabisim*): Add support for building
13597         -mcall-aixdesc libraries.
13599 Fri Oct  6 16:17:57 1995  Ken Raeburn  <raeburn@cygnus.com>
13601         Mon Sep 25 22:49:32 1995  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
13603         * config.sub (arm | armel | armeb): Fix shell syntax.
13605 Fri Oct  6 14:40:28 1995  Michael Meissner  <meissner@tiktok.cygnus.com>
13607         * cfg-ml-com.in ({powerpc,rs6000}-ibm-aix*): Add multilibs for
13608         -msoft-float and -mcpu=common support.
13609         (powerpc*-*-eabisim*): Add support for building -mcall-aix
13610         libraries.
13612 Thu Oct  5 13:26:37 1995  Brendan Kehoe  <brendan@lisa.cygnus.com>
13614         * configure.in: Allow configuration and build of emacs19 for the alpha.
13616 Wed Oct  4 22:05:36 1995  Jason Molenda  (crash@phydeaux.cygnus.com)
13618         * configure.in (CC): Get ^CC, not just any old CC, from
13619         ${host_makefile_frag}.
13621 Wed Oct  4 21:55:00 1995  Jason Molenda  (crash@phydeaux.cygnus.com)
13623         * configure.in (CC): Try to get CC from
13624         ${srcdir}/${host_makefile_frag}, not ${host_makefile_frag}.
13626 Wed Oct  4 21:44:12 1995  Jason Molenda  (crash@phydeaux.cygnus.com)
13628         * Makefile.in (TARGET_CONFIGDIRS): configure targetdirs
13629         only if it exists in $(srcdir).
13631 Wed Oct  4 11:52:31 1995  Ian Lance Taylor  <ian@cygnus.com>
13633         * configure: If CC and CXX are not set in the environment, set
13634         them, based on either an existing Makefile or on searching for gcc
13635         in PATH.  Substitute for CC and CXX in Makefile.
13636         * configure.in: Remove libm from target_libs.  Separate
13637         target_configdirs from configdirs.  If CC is not set in
13638         environment, try to get it from a host Makefile fragment.  Rewrite
13639         changes of configdirs to use skipdirs instead.  A few minor
13640         tweaks.  Take directories out of target_configdirs as they are
13641         taken out of configdirs.  Remove existing Makefile files from
13642         subdirectories.  Substitute for TARGET_CONFIGDIRS and
13643         CONFIG_ARGUMENTS in Makefile.
13644         * Makefile.in (TARGET_CONFIGDIRS): New variable, automatically set
13645         by configure.in.
13646         (CONFIG_ARGUMENTS): Likewise.
13647         (CONFIGURE_TARGET_MODULES): New variable.
13648         ($(DO_X)): Loop over TARGET_CONFIGDIRS as well as SUBDIRS.
13649         ($(CONFIGURE_TARGET_MODULES)): New target.
13650         (configure-libg++, configure-libio): New targets.
13651         (all-libg++): Depend upon configure-libg++.
13652         (all-libio): Depend upon configure-libio.
13653         (configure-libgloss, all-libgloss): New targets.
13654         (configure-libstdc++): New target.
13655         (all-libstdc++): Depend upon configure-libstdc++.
13656         (configure-librx, all-librx): New targets.
13657         (configure-newlib): New target.
13658         (all-newlib): Depend upon configure-newlib
13659         (configure-xiberty): New target.
13660         (all-xiberty): Depend upon configure-xiberty.
13662 Sat Sep 30 04:32:59 1995  Jason Molenda (crash@phydeaux.cygnus.com)
13664         * configure.in (host i[345]86-*-win32):  Expand the
13665         noconfigdirs again.
13667 Thu Sep 28 21:18:49 1995  Stan Shebs  <shebs@andros.cygnus.com>
13669         * mpw-configure: Fix sed command file name.
13671 Thu Sep 28 17:39:56 1995  steve chamberlain  <sac@slash.cygnus.com>
13673         * configure.in (host i[345]86-*-win32): Reduce the
13674         noconfigdirs again.
13676 Wed Sep 27 12:24:00 1995  Ian Lance Taylor  <ian@cygnus.com>
13678         * configure.in: Don't configure ld and gdb for powerpc*-*-winnt*
13679         or powerpc*-*-pe*, since they are not yet supported.
13681 Tue Sep 26 14:30:01 1995  Stan Shebs  <shebs@andros.cygnus.com>
13683         Add PowerMac support and many other enhancements.
13684         * mpw-configure: New option --cc to select compiler to use,
13685         paste options set according to --cc into the generated
13686         Makefile, generate the Makefile by sed'ing the Unix Makefile.in
13687         if mpw-make.sed is present.
13688         * mpw-config.in: Don't test for gC1, test for mpw-touch,
13689         add forward includes for PowerPC include files.
13690         * mpw-build.in: Build using Makefile.PPC if present.
13691         (do-byacc, etc): Remove separate version resource builds.
13692         (do-gas): Build "stamps" before "all".
13693         (do-gcc): Build "stamps-h" and "stamps-c" before "all".
13694         * mpw-README: Update to reflect --cc option, PowerMac support,
13695         and recently-reported compatibility problems.
13697 Fri Sep 22 12:15:42 1995  Doug Evans  <dje@deneb.cygnus.com>
13699         * cfg-ml-com.in (m68*-*-*): Only build multilibs for
13700         embedded m68k systems (-aout, -coff, -elf, -vxworks).
13701         (--with-multilib-top): Pass to recursive invocations.
13703 Tue Sep 19 13:51:05 1995  J.T. Conklin  <jtc@blues.cygnus.com>
13705         * configure.in (noconfigdirs): Disable libg++ and libstdc++ on
13706         v810-*-*.
13708 Mon Sep 18 23:08:26 1995  J.T. Conklin  <jtc@rtl.cygnus.com>
13710         * configure.in (noconfigdirs): Disable bfd, binutils, gas, gcc,
13711         gdb, ld and opcodes on v810-*-*.
13713 Tue Sep 12 18:03:31 1995  Ian Lance Taylor  <ian@cygnus.com>
13715         * Makefile.in (DO_X): Change do-realclean to do-maintainer-clean.
13716         (local-maintainer-clean): New target.
13717         (maintainer-clean): New target.
13718         (realclean): Just depend upon maintainer-clean.
13720 Fri Sep  8 17:11:14 1995  J.T. Conklin  <jtc@rtl.cygnus.com>
13722         * configure.in (noconfigdirs): Disable gdb on m68k-*-netbsd*.
13724 Fri Sep  8 16:46:29 1995  Ian Lance Taylor  <ian@cygnus.com>
13726         * configure.in: Build ld in mips*-*-bsd* case.
13728 Thu Sep  7 20:03:41 1995  Ken Raeburn  <raeburn@cygnus.com>
13730         * config.sub: Accept -lites* OS.  From Ian Dall.
13732 Fri Sep  1 08:06:58 1995  James G. Smith  <jsmith@beauty.cygnus.com>
13734         * config.sub: recognise mips64vr4300 and mips64vr4300el as valid
13735         targets.
13737 Wed Aug 30 21:06:50 1995  Jason Molenda  (crash@phydeaux.cygnus.com)
13739         * configure.in: treat i386-win32 canadian cross the same as
13740         i386-go32 canadian cross.
13742 Thu Aug 24 14:53:20 1995  Michael Meissner  <meissner@tiktok.cygnus.com>
13744         * cfg-ml-com.in (powerpc*-*-eabisim): Add support for PowerPC
13745         running under the simulator to build a reduced set of libraries.
13746         (powerpc-*-eabiaix): Add fine grained multilib support added to
13747         other powerpc targets yesterday.
13749 Wed Aug 23 09:41:56 1995  Michael Meissner  <meissner@tiktok.cygnus.com>
13751         * cfg-ml-com.in (powerpc*): Add support for -disable-biendian,
13752         -disable-softfloat, -disable-relocatable, -disable-aix, and
13753         -disable-sysv to control which multilib libraries get built.
13755 Thu Aug 17 16:03:41 1995  Ken Raeburn  <raeburn@kr-laptop.cygnus.com>
13757         * configure: Add Makefile.tem to list of files to remove in trap
13758         handler.
13760 Mon Aug 14 19:27:56 1995  Per Bothner  <bothner@kalessin.cygnus.com>
13762         * config.guess (*Linux*):  Add missing "exit"s.
13763         Also, need specific check for alpha-unknown-linux (uses COFF).
13765 Fri Aug 11 15:38:20 1995  Per Bothner  <bothner@kalessin.cygnus.com>
13767         * config.guess:  Merge with FSF:
13769         Wed Jun 28 17:57:27 1995  David Edelsohn  <edelsohn@mhpcc.edu>
13770         * config.guess (AIX4): More robust release numbering discovery.
13772         Thu Jun 22 19:01:24 1995  Kenneth Stailey  (kstailey@eagle.dol-esa.gov)
13773         * config.guess (i386-sequent-ptx): Properly get version number.
13775         Thu Jun 22 18:36:42 1995  Uwe Seimet  (seimet@iris1.chemie.uni-kl.de)
13776         * config.guess (mips:*:4*:UMIPS): New case.
13778 Mon Aug  7 09:21:35 1995  Doug Evans  <dje@canuck.cygnus.com>
13780         * configure.in (i386-go32 host): Fix typo (deja-gnu -> dejagnu).
13781         (i386-win32 host): Likewise.  Don't build readline.
13783 Sat Aug  5 09:51:49 1995  Fred Fish  <fnf@rtl.cygnus.com>
13785         * Makefile.in (GDBTK_SUPPORT_DIRS):  Define and pass as part of
13786         SUPPORT_FILES to submakes.
13788 Fri Aug  4 13:04:36 1995  Fred Fish  <fnf@cygnus.com>
13790         * Makefile.in (GDB_SUPPORT_DIRS): Add utils.
13791         (DEVO_SUPPORT): Add mpw-README, mpw-build.in, mpw-config.h and
13792         mpw-configure.
13794 Wed Aug  2 16:32:40 1995  Ken Raeburn  <raeburn@cygnus.com>
13796         * configure.in (appdirs): Use =, not ==, in test expression when
13797         trying to build the text to print in the warning message for
13798         Solaris users.
13800 Mon Jul 31 09:56:18 1995  steve chamberlain  <sac@slash.cygnus.com>
13802         * cfg-ml-com.in (z8k-*-coff): Add 'std' multilib build.
13804 Fri Jul 28 00:16:31 1995  Jeffrey A. Law  <law@rtl.cygnus.com>
13806         * config.guess: Recognize lynx-2.3.
13808 Thu Jul 27 15:47:59 1995  steve chamberlain  <sac@slash.cygnus.com>
13810         * config.sub (z8ksim): Deleted
13811         (z8k-*-coff): New, this is the one true name of the target.
13813 Thu Jul 27 14:33:33 1995  Doug Evans  <dje@canuck.cygnus.com>
13815         * cfg-ml-pos.in (dotdot): Work around SunOS sed bug.
13817 Thu Jul 27 13:31:05 1995  Fred Fish  (fnf@cygnus.com)
13819         * config.guess (*:Linux:*:*): First try asking the linker what the
13820         default object file format is (elf, aout, or coff).  Then if this
13821         fails, try previous methods.
13823 Thu Jul 27 11:28:17 1995  J.T. Conklin  <jtc@rtl.cygnus.com>
13825         * configure.in: Don't build newlib for *-*-vxworks5.1.
13827 Thu Jul 27 11:18:47 1995  Brendan Kehoe  <brendan@lisa.cygnus.com>
13829         * configure.in: Don't build newlib for a29k-*-vxworks5.1.
13830         * test-build.mk: Add setting of --with-headers for a29k-vxworks5.1.
13832 Tue Jul 25 21:25:39 1995  Doug Evans  <dje@canuck.cygnus.com>
13834         * cfg-ml-pos.in (MULTITOP): Trim excess trailing "/.".
13836 Fri Jul 21 10:41:12 1995  Doug Evans  <dje@canuck.cygnus.com>
13838         * cfg-ml-com.in: New file.
13839         * cfg-ml-pos.in: New file.
13841 Wed Jul 19 00:37:27 1995  Jeffrey A. Law  <law@rtl.cygnus.com>
13843         * COPYING.NEWLIB: Add HP free copyright to list.
13845 Tue Jul 18 10:58:51 1995  Michael Meissner  <meissner@tiktok.cygnus.com>
13847         * config.sub: Recognize -eabi* for the system, not just -eabi.
13849 Mon Jul  3 13:44:51 1995  Steve Chamberlain  <sac@slash.cygnus.com>
13851         * Makfile.in (DLLTOOL_FOR_TARGET): New name, pass it down.
13852         * config.sub, configure.in (win32): New target and host.
13854 Wed Jun 28 23:57:08 1995  Steve Chamberlain  <sac@slash.cygnus.com>
13856         * configure.in: Add i386-pe configuration.
13858 Fri Jun 23 14:28:44 1995  Stan Shebs  <shebs@andros.cygnus.com>
13860         * mpw-build.in (install): Install GDB after LD.
13862 Thu Jun 22 17:10:53 1995  Stan Shebs  <shebs@andros.cygnus.com>
13864         * mpw-config.in (elf/mips.h): Always forward-include, needed
13865         for GDB to build.
13867 Wed Jun 21 15:17:30 1995  Rob Savoye  <rob@darkstar.cygnus.com>
13869         * testsuite: New directory for customer acceptance and whole tool
13870         chain tests.
13872 Wed Jun 21 16:50:29 1995  Ken Raeburn  <raeburn@cujo.cygnus.com>
13874         * configure: If per-host line isn't found, but AC_OUTPUT is found
13875         and a configure script exists, run it instead.
13877 Thu Jun 15 21:09:24 1995  Per Bothner  <bothner@kalessin.cygnus.com>
13879         * config.guess:  Update from FSF, for alpha-dec-winnt3.5 and  Crays.
13881 Tue Jun 13 21:43:27 1995  Rob Savoye  <rob@darkstar.cygnus.com>
13883         * configure: Set build_{cpu,vendor,os,alias} to host values when
13884         --build isn't specified.
13886 Mon Jun  5 18:26:36 1995  Jason Merrill  <jason@phydeaux.cygnus.com>
13888         * Makefile.in (PICFLAG, PICFLAG_FOR_TARGET): New macros.
13889         (FLAGS_TO_PASS): Pass them.
13890         (EXTRA_TARGET_FLAGS): Ditto.
13892 Wed May 31 22:27:42 1995  Jim Wilson  <wilson@chestnut.cygnus.com>
13894         * Makefile.in (all-libg++): Depend on all-libstdc++.
13896 Thu May 25 22:40:59 1995  J.T. Conklin  <jtc@rtl.cygnus.com>
13898         * configure.in (noconfigdirs): Enable all packages for
13899           i386-unknown-netbsd.
13901 Sat May 20 13:22:31 1995  Angela Marie Thomas  <angela@cirdan.cygnus.com>
13903         * configure.in (noconfigdirs): Don't configure tk for i386-go32
13904         hosted builds (DOS builds)
13906 Thu May 18 18:08:49 1995  Ken Raeburn  <raeburn@kr-laptop.cygnus.com>
13908         Changes for ARM based on patches from Richard Earnshaw:
13909         * config.sub: Handle armeb and armel.
13910         * configure.in: Omit arm linker only for riscix.
13912 Thu May 11 17:23:26 1995  Per Bothner  <bothner@kalessin.cygnus.com>
13914         * config.guess:  Update from FSF.
13916 Tue May  9 15:52:05 1995  Michael Meissner  <meissner@cygnus.com>
13918         * config.sub: Recognize powerpcle as the little endian varient of
13919         the PowerPC.  Recgonize ppc as a PowerPC variant, and ppcle as a
13920         powerpcle variant.  Convert pentium into i586, not i486.  Add p5
13921         alias for i586.  Map new x86 variants p6, k5, nexgen into i586
13922         temporarily.
13924 Tue May  2 16:29:41 1995  Jeff Law  (law@snake.cs.utah.edu)
13926         * configure.in (hppa*-*-lites*): Treat like hppa*-*-*elf*.
13928 Sun Apr 30 21:38:09 1995  Jeff Law  (law@snake.cs.utah.edu)
13930         * config.sub: Accept -lites* as a basic system type.
13932 Thu Apr 27 11:33:29 1995  Michael Meissner  (meissner@cygnus.com)
13934         * config.guess (*:Linux:*:*): Check for whether the pre-BFD linker is
13935         installed, and if so return linuxoldld as the system name.
13937 Wed Apr 26 10:59:02 1995  Jeff Law  (law@snake.cs.utah.edu)
13939         * config.guess: Add hppa1.1-hp-lites support.
13941 Tue Apr 25 11:08:11 1995  Rob Savoye  <rob@darkstar.cygnus.com>
13943         * configure.in: Don't build newlib for m68k-vxworks5.1.
13945 Wed Apr 19 17:02:43 1995  Jim Wilson  <wilson@chestnut.cygnus.com>
13947         * configure.in (mips-sgi-irix6): Use mh-irix5.
13949 Fri Apr 14 15:21:17 1995  Doug Evans  <dje@chestnut.cygnus.com>
13951         * Makefile.in (all-gcc): Depend on all-ld (for libgcc1-test).
13953 Wed Apr 12 16:06:01 1995  Jason Merrill  <jason@phydeaux.cygnus.com>
13955         * test-build.mk: Enable building of shared libraries on IRIX 5 and
13956         OSF/1.  Fix compiler flags.
13957         * build-all.mk: Support Linux and OSF/1 3.0.  Fix compiler flags.
13959 Tue Apr 11 18:55:40 1995  Doug Evans  <dje@canuck.cygnus.com>
13961         * configure.in: Recognize --with-newlib.
13962         (sparc-*-sunos4*): Build sim, dejagnu, expect, tcl if cross target.
13964 Mon Apr 10 14:38:20 1995  Jason Molenda (crash@phydeaux.cygnus.com)
13966         * Makefile.in: move {all,check,install}-gdb from *_MODULES
13967         to *_X11_MODULES due to gdbtk needing X include files et al.
13969 Mon Apr 10 11:42:22 1995  Stan Shebs  <shebs@andros.cygnus.com>
13971         Merge in support for Mac MPW as a host.
13972         (Old change descriptions retained for informational value.)
13974         * mpw-config.in: Add generic include forwards for cpu-specific
13975         include files in aout and elf directories.
13977         * mpw-configure: Added copyright.
13978         * mpw-config.in: Check for presence of required build tools.
13979         (target_libs): Add newlib.
13980         (target_tools): Add examples.
13981         (Read Me): Generate as "Read Me for MPW" instead.
13982         * mpw-build.in: Base sub-builds on all-foo instead of do-foo.
13983         (all-byacc, do-byacc, all-flex, do-flex, do-newlib): New actions.
13984         (do-gas, do-gcc, do-gdb, do-ld): Build Version.r first.
13986         * mpw-configure: Remove subdir-specific makefile hackery,
13987         delete mk.tmp after using it.
13989         * mpw-build.in (all): Display start and end times.
13991         * mpw-configure (host_canonical): Set.
13992         (target_cpu): Always add to makefiles.
13993         (ARCHDEFS, EMUL): Add to makefile only if nonempty.
13994         (TM_FILE, XM_FILE, NM_FILE): No longer add to makefile.
13995         (mpw-mh-mpw): Look for in srcdir and srcroot.
13996         Use sed instead of mpw-edit-prefix to edit prefix definitions.
13998         * mpw-build.in: (install-only): New target.
14000         * mpw-configure (host_alias, target_alias): Rename from hostalias
14001         and targetalias, add into generated Makefile.
14002         (mk.tmp): If present, add into generated Makefile.
14003         * mpw-build.in (all-gas): Build config.h first before gas proper.
14005         * mpw-configure (config.status): Write only if changed.
14006         * mpw-config.in (readline): Configure it (not built, just used for
14007         definitions).
14009         * mpw-config.in (elf/mips.h): Add a forward include.
14011         * mpw-config.in: Forward-include most .h files in include into
14012         extra-include.
14013         (readline): Don't build.
14014         mpw-build.in (install): Install GDB.
14016         * mpw-configure (prefix, mpw_prefix): Handle it.
14017         * mpw-config.in (mmalloc, readline): Don't configure.
14018         * mpw-build.in (thisscript): Rename to ThisScript.
14019         Use mpw-build instead of BuildProgram everywhere.
14020         (mmalloc, readline): Don't build.
14021         * mpw-README: New file, basic documentation about the MPW port.
14023         * mpw-config.in: Use forward-include to create include files.
14025         * mpw-configure: Add more things to the top of each configured
14026         Makefile, including contents of config/mpw-mh-mpw.
14027         * mpw-config.in (extra-include): Create this directory and fill it
14028         with Posix-like include files when configuring.
14030         * config.sub (apple, mac, mpw): Add various aliases.
14032         * mpw-build.in: New file, top-level build script fragment for MPW.
14033         * mpw-configure: New file, configure script for MPW.
14034         * mpw-config.in: New file, config fragment for MPW.
14036 Fri Apr  7 19:33:16 1995  Jim Kingdon  (kingdon@lioth.cygnus.com)
14038         * configure.in (host_libs): Remove glob, since it is gone from the
14039         sources.
14041 Fri Mar 31 11:36:17 1995  Jason Molenda  (crash@phydeaux.cygnus.com)
14043         * Makefile.in: define empty GDB_NLM_DEPS var.
14045         * configure.in(target_makefile_frag): use config/mt-netware
14046         for netware targets.
14048 Thu Mar 30 13:51:43 1995  Ian Lance Taylor  <ian@cygnus.com>
14050         * config.sub: Merge in recent FSF changes.  Remove linux special
14051         cases.
14053 Tue Mar 28 14:47:34 1995  Jason Molenda (crash@phydeaux.cygnus.com)
14055         Revert this change:
14057         Tue Mar 30 10:03:09 1993  Ian Lance Taylor  (ian@cygnus.com)
14059                 * build-all.mk: Use CC=cc -Xs on Solaris.
14061 Tue Mar 21 10:43:32 1995  Jim Kingdon  (kingdon@lioth.cygnus.com)
14063         * glob/*: Removed.  Schauer's 24 Feb 1994 readline change made us
14064         stop using it.
14065         * Makefile.in: Nuke all references to glob subdirectory.
14067 Thu Mar 16 13:35:30 1995  Jason Merrill  <jason@phydeaux.cygnus.com>
14069         * configure.in: Fix --enable-shared logic in per-host.
14071 Mon Mar 13 12:33:15 1995  Ian Lance Taylor  <ian@cygnus.com>
14073         * configure.in (*-hp-hpux[78]*): Use mh-hpux8.
14075 Mon Mar  6 10:21:58 1995  Jim Kingdon  (kingdon@lioth.cygnus.com)
14077         * configure.in (noconfigdirs): Don't build gas on AIX, for
14078         powerpc*-*-aix* as well as for rs6000*-*-aix*.
14080 Wed Mar  1 12:51:53 1995  Ian Lance Taylor  <ian@cygnus.com>
14082         * configure: Fix --cache-file to work if the file argument is a
14083         relative path.
14085 Tue Feb 28 17:36:07 1995  Ian Lance Taylor  <ian@cygnus.com>
14087         * configure: If the --cache-file is used, pass it down to
14088         configure in subdirectories.
14090 Mon Feb 27 12:52:46 1995  Kung Hsu  <kung@mexican.cygnus.com>
14092         * config.sub: add vxworks29k configuration.
14094 Fri Feb 10 16:12:26 1995  Ken Raeburn  <raeburn@cujo.cygnus.com>
14096         * Makefile.in (taz): Do "diststuff" part quietly.
14098 Sun Feb  5 14:16:35 1995  Doug Evans  <dje@canuck.cygnus.com>
14100         * config.sub: Mini-merge with gcc/config.sub.
14102 Sat Feb  4 12:11:35 1995  Jim Wilson  <wilson@chestnut.cygnus.com>
14104         * config.guess (IRIX): Sed - to _.
14106 Fri Feb  3 11:54:42 1995  J.T. Conklin  <jtc@rtl.cygnus.com>
14108         * Makefile.in (source-vault, binary-vault): New targets.
14110 Thu Jan 26 13:00:11 1995  Michael Meissner  <meissner@cygnus.com>
14112         * config.sub: Recognize -eabi as a basic system type.
14114 Thu Jan 12 13:13:23 1995  Jason Merrill  <jason@phydeaux.cygnus.com>
14116         * configure.in (enable_shared stuff): Fix typo.
14118 Thu Jan 12 01:36:51 1995  deanm@medulla.LABS.TEK.COM (Dean Messing)
14120         * Makefile.in (BASE_FLAGS_TO_PASS): Fix typo in passing LIBCXXFLAGS*.
14122 Wed Jan 11 16:29:53 1995  Jason Merrill  <jason@phydeaux.cygnus.com>
14124         * Makefile.in (LIBCXXFLAGS_FOR_TARGET): Add -fno-implicit-templates.
14126 Mon Jan  9 12:48:01 1995  Jim Kingdon  <kingdon@lioth.cygnus.com>
14128         * configure.in (rs6000-*-*): Don't build gas.
14130 Wed Jan  4 23:53:49 1995  Ian Lance Taylor  <ian@tweedledumb.cygnus.com>
14132         * Makefile.in: Use /x/x/ instead of /brokensed/brokensed/, to
14133         reduce command line length.
14134         (AS_FOR_TARGET): Check for as.new, not Makefile.
14135         (NM_FOR_TARGET): Check for nm.new, not Makefile.
14137 Wed Jan  4 13:02:39 1995  Per Bothner  <bothner@kalessin.cygnus.com>
14139         * config.guess:  Merge from FSF.
14141 Thu Dec 15 17:11:37 1994  Ian Lance Taylor  <ian@sanguine.cygnus.com>
14143         * configure: Don't use $ when handling program_suffix.
14145 Mon Dec 12 12:09:37 1994  Stu Grossman  (grossman@cygnus.com)
14147         * configure.in:  Configure tk for hppa/hpux.
14149 Fri Dec  2 15:55:38 1994  Per Bothner  <bothner@kalessin.cygnus.com>
14151         * Makefile.in (LIBGXX_SUPPORT_DIRS):  Add libstdc++.
14153 Tue Nov 29 19:37:56 1994  Per Bothner  <bothner@kalessin.cygnus.com>
14155         * Makefile.in:  Move -fno-implicit-template from CXXFLAGS
14156         to LIBCXXFLAGS.  Tests are better run without it.
14158 Wed Nov 23 10:29:25 1994  Brendan Kehoe  (brendan@lisa.cygnus.com)
14160         * Makefile.in (all-ispell): Depend on all-emacs19 instead of all-emacs.
14162 Mon Nov 21 11:14:01 1994  J.T. Conklin  <jtc@rtl.cygnus.com>
14164         * configure.in (*-*-netware*): Don't configure xiberty.
14166 Mon Nov 14 08:49:15 1994  Stu Grossman  (grossman@cygnus.com)
14168         * configure.in:  Remove tk from native_only list.
14170 Fri Nov 11 15:31:26 1994  Bill Cox  (bill@rtl.cygnus.com)
14172         * build-all.mk: Add mips-ncd-elf target to sun4 targets
14173           for special NCD build.
14175 Mon Nov  7 20:58:17 1994  Ken Raeburn  <raeburn@cujo.cygnus.com>
14177         * Makefile.in (DEVO_SUPPORT): Remove configure.bat and
14178         makeall.bat, they're only useful for binutils snapshots.
14179         (binutils.tar.gz, gas+binutils.tar.gz): Add configure.bat and
14180         makeall.bat to specified SUPPORT_FILES.
14182 Mon Nov  7 17:25:18 1994  Bill Cox  (bill@cirdan.cygnus.com)
14184         * build-all.mk: Add Ericsson targets to sun4 and solaris
14185           hosts.  Add  BNR's sun4 target to solaris host, so their
14186           build-from-source will be tested in-house first.
14188 Sat Nov  5 18:43:30 1994  Jason Merrill  (jason@phydeaux.cygnus.com)
14190         * Makefile.in (LIBCFLAGS): New variable.
14191         (CFLAGS_FOR_TARGET): Ditto.
14192         (LIBCFLAGS_FOR_TARGET): Ditto.
14193         (LIBCXXFLAGS): Ditto.
14194         (CXXFLAGS_FOR_TARGET): Ditto.
14195         (LIBCXXFLAGS_FOR_TARGET): Ditto.
14196         (BASE_FLAGS_TO_PASS): Pass them.
14197         (EXTRA_TARGET_FLAGS): Ditto.
14199         * configure.in: Support --enable-shared.
14201 Sat Nov  5 15:44:00 1994  Per Bothner  <bothner@kalessin.cygnus.com>
14203         * configure.in (target_libs):  Include libstdc++ again.
14204         * config.guess:  Update from FSF (for FreeBSD).
14206 Thu Nov  3 16:32:30 1994  Ken Raeburn  <raeburn@cujo.cygnus.com>
14208         * Makefile.in (DEVO_SUPPORT): Include configure.bat and
14209         makeall.bat.
14210         (DISTDOCDIRS): Add `etc'.
14211         (ETC_SUPPORT_PFX): New variable.
14212         (taz): Include anything from etc starting with a word in
14213         ETC_SUPPORT_PFX.
14215 Wed Oct 26 16:19:35 1994  Ian Lance Taylor  <ian@sanguine.cygnus.com>
14217         * config.sub: Update for recent FSF changes.  Remove obsolete
14218         h8300hds entry.  Add -windows* and -osx as basic os.  Minor
14219         spacing changes.
14221 Thu Oct 20 18:41:56 1994  Per Bothner  <bothner@kalessin.cygnus.com>
14223         * configure.in (target_libs):  Remove libstdc++ for libg++-2.6.1.
14225         * config.guess:  Merge with FSF.
14226         * configure.in:  Match on i?86-ncr-sysv4.3, not i?86-ncr-sysv43.
14228 Thu Oct 20 19:26:56 1994  Ken Raeburn  <raeburn@cujo.cygnus.com>
14230         * configure: Since the "trap 0" handler will override the exit
14231         status on many systems, only use it for "exit 1", and make it set
14232         a non-zero exit status; reset it before "exit 0".  Also, check
14233         exit status of config.sub, and error out if it failed.
14235 Wed Oct 19 18:49:55 1994  Rob Savoye  (rob@cygnus.com)
14237         * Makefile.in: (ALL_TARGET_MODULES,INSTALL_TARGET_MODULES) Build
14238         and install libgloss.
14240 Tue Oct 18 15:25:24 1994  Ian Lance Taylor  <ian@sanguine.cygnus.com>
14242         * Makefile.in (all-binutils): Depend upon all-byacc.
14244         * configure.in: Don't build emacs on Irix 5.
14246 Mon Oct 17 16:22:12 1994  J.T. Conklin  (jtc@phishhead.cygnus.com)
14248         * configure.in (*-*-netware*): Add libio.
14250 Thu Oct 13 15:51:20 1994  Jason Merrill  (jason@phydeaux.cygnus.com)
14252         * Makefile.in (ALL_TARGET_MODULES): Add libstdc++.
14253         (CHECK_TARGET_MODULES): Ditto.
14254         (INSTALL_TARGET_MODULES): Ditto.
14255         (TARGET_LIBS): Ditto.
14256         (all-libstdc++): Note dependencies.
14258 Thu Oct 13 01:43:08 1994  Ken Raeburn  <raeburn@cujo.cygnus.com>
14260         * Makefile.in (BINUTILS_SUPPORT_DIRS): Add gas.
14262 Tue Oct 11 12:12:29 1994  Jason Merrill  (jason@phydeaux.cygnus.com)
14264         * Makefile.in (CXXFLAGS): Use -fno-implicit-templates instead of
14265         -fexternal-templates.
14267         * configure.in (target_libs): Add libstdc++.
14268         (noconfigdirs): Add libstdc++ as appropriate.
14270 Thu Oct  6 18:00:54 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14272         * config.guess:  Update from FSF.
14274 Tue Oct  4 12:05:42 1994  Ian Lance Taylor  <ian@sanguine.cygnus.com>
14276         * configure: Use ${config_shell} when running ${configsub}.
14278 Mon Oct  3 14:28:34 1994  Doug Evans  <dje@canuck.cygnus.com>
14280         * config.sub: No longer recognize h8300h.
14282 Mon Oct  3 12:40:54 1994  Ian Lance Taylor  <ian@sanguine.cygnus.com>
14284         * config.sub: Remove extraneous differences between config.sub and
14285         gcc/config.sub.
14287 Sat Oct  1 00:23:12 1994  Ken Raeburn  <raeburn@cujo.cygnus.com>
14289         * Makefile.in (DISTSTUFFDIRS): Add gas.
14291 Thu Sep 22 19:04:55 1994  Doug Evans  (dje@canuck.cygnus.com)
14293         * COPYING.NEWLIB: New file.
14295 Mon Sep 19 18:25:40 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14297         * config.guess (HP-UX):  Patch from Harlan Stenn
14298         <harlan@landmark.com> to also emit release level.
14300 Wed Sep  7 13:15:25 1994  Jim Wilson  (wilson@sphagnum.cygnus.com)
14302         * config.guess (sun4*:SunOS:*:*): Change '-JL' to '_JL'.
14304 Tue Sep  6 23:23:18 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14306         * config.sub:  Merge nextstep cleanup from FSF.
14308 Mon Sep  5 05:01:30 1994  Ken Raeburn  (raeburn@kr-pc.cygnus.com)
14310         * configure.in (arm-*-*): Don't configure ld for this target.
14312 Thu Sep  1 09:35:00 1994  J.T. Conklin  (jtc@phishhead.cygnus.com)
14314         * configure.in (*-*-netware): don't configure libg++, libio,
14315           librx, or newlib.
14317 Wed Aug 31 13:52:08 1994  Ian Lance Taylor  (ian@sanguine.cygnus.com)
14319         * configure.in (alpha-dec-osf*): Use osf*, not osf1*.  Don't
14320         configure ld--it works, but it doesn't support shared libraries.
14322 Sun Aug 28 18:13:45 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14324         * config.guess (*-unknown-freebsd*):  Get rid of possible
14325         trailing "(Release)" in version string.
14326         Patch from Paul Richards <paul@isl.cf.ac.uk>.
14328 Sat Aug 27 15:00:49 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14330         * config.guess:  Fix i486-ncr-sysv43 -> i486-ncr-sysv4.3.
14331         Fix type: *-next-neststep -> *-next-nextstep.
14333         * config.guess:  Merge from FSF:
14335         Fri Aug 26 18:45:25 1994  Philippe De Muyter (phdm@info.ucl.ac.be)
14337         * config.guess: Recognize powerpc-ibm-aix3.2.5.
14339         Wed Apr 20 06:36:32 1994  Philippe De Muyter  (phdm@info.ucl.ac.be)
14341         * config.guess: Recognize UnixWare 1.1 (UNAME_SYSTEM is SYSTEM_V
14342         instead of UNIX_SV for UnixWare 1.0).
14344 Sat Aug 27 01:56:30 1994  Stu Grossman  (grossman@cygnus.com)
14346         * Makefile.in (all-gdb):  Add dependencies on all-gcc and all-ld
14347         to make gdb/nlm/* build after the compiler and linker.
14349 Fri Aug 26 14:30:05 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14351         * config.guess (netbsd, freebsd, linux):  Accept any machine,
14352         not just i[34]86.
14353         (m68k-atari-sysv4):  Relocate to match FSF version.
14355         * config.guess:  More merges from the FSF:
14357         Add a space before function call or macro invocation.
14359         Tue May 10 16:53:55 1994  Roland McGrath (roland@churchy.gnu.ai.mit.edu)
14361         * config.guess: Add trap cmd to remove dummy.c and dummy when
14362         interrupted.
14364         Wed Apr 20 18:07:13 1994  Roland McGrath (roland@churchy.gnu.ai.mit.edu)
14366         * config.guess (dummy.c): Redirect stderr for `hostinfo' command.
14367         (dummy): Redirect stderr from compilation of dummy.c.
14369         Sat Apr  9 14:59:28 1994  Christian Kranz  (kranz@sent5.uni-duisburg.de)
14371         * config.guess: Distinguish between NeXTStep 2.1 and 3.x.
14373 Fri Aug 26 13:42:20 1994  Ken Raeburn  (raeburn@kr-laptop.cygnus.com)
14375         * configure: Accept and ignore --cache*, for compatibility with
14376         new autoconf.
14378 Fri Aug 26 13:05:27 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14380         * config.guess:  Merge from FSF:
14382         Thu Aug 25 20:28:51 1994  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
14384         * config.guess (Pyramid*:OSx*:*:*): New case.
14385         (PATH): Add /.attbin at end for finding uname.
14386         (dummy.c): Handle i860-alliant-bsd.  Follow whitespace conventions.
14388         Wed Aug 17 18:21:02 1994  Tor Egge  (tegge@pvv.unit.no)
14390         * config.guess (M88*:DolphinOS:*:*): New case.
14392         Thu Aug 11 17:00:13 1994  Stan Cox  (coxs@dg-rtp.dg.com)
14394         * config.guess (AViiON:dgux:*:*): Use TARGET_BINARY_INTERFACE
14395         to select whether to use ELF or COFF.
14397         Sun Jul 24 16:20:53 1994  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
14399         * config.guess: Recognize i860-stardent-sysv and i860-unknown-sysv.
14401         Sun May  1 10:23:10 1994  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
14403         * config.guess: Guess the OS version for HPUX.
14405         Tue Mar  1 21:53:03 1994  Karl Heuer  (kwzh@hal.gnu.ai.mit.edu)
14407         * config.guess (UNAME_VERSION): Recognize aix3.2.4 and aix3.2.5.
14409 Fri Aug 26 11:19:08 1994  Ian Lance Taylor  (ian@sanguine.cygnus.com)
14411         * configure.in: Recognize --with-headers, --with-libs, and
14412         --without-newlib.
14413         * Makefile.in (all-xiberty): Depend upon all-ld.
14415 Wed Aug 24 12:36:50 1994  Ian Lance Taylor  (ian@sanguine.cygnus.com)
14417         * configure.in: Change i[34]86 to i[345]86.
14419 Mon Aug 22 10:58:33 1994  Ian Lance Taylor  (ian@sanguine.cygnus.com)
14421         * configure (version): A few more tweaks to help message.
14423 Fri Aug 19 12:40:25 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14425         * Makefile.in:  Remove (for now) librx as a host library,
14426         now that we're building it for target.
14428 Fri Aug 19 10:49:17 1994  Ian Lance Taylor  (ian@sanguine.cygnus.com)
14430         * configure: Fix up help message; from karl@owl.hq.ileaf.com
14431         (Karl Berry).
14433 Tue Aug 16 16:11:08 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14435         * configure.in:  Also configure librx.
14437 Mon Aug 15 16:51:45 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14439         * Makefile.in:  Update various rules to reflect that librx
14440         is now needed for libg++.
14442 Fri Aug 12 18:07:21 1994  Ian Lance Taylor  (ian@sanguine.cygnus.com)
14444         * config.sub: Accept mips64orion and mips64orionel as a CPU name.
14446 Mon Aug  8 11:36:17 1994  Stan Shebs  (shebs@andros.cygnus.com)
14448         * configure.in: Configure the examples directory.
14450 Thu Aug  4 16:12:36 1994  Ian Lance Taylor  (ian@sanguine.cygnus.com)
14452         * configure: Simplify Jun 2 1994 change.
14454 Wed Aug  3 04:58:16 1994  D. V. Henkel-Wallace  (gumby@cygnus.com)
14456         * change CC to /usr/latest/bin/gcc for lynx host builds, since
14457         /bin/gcc isn't good enough to build gcc.
14459 Wed Jul 27 09:07:14 1994  Fred Fish  (fnf@cygnus.com)
14461         * Makefile.in (GDB_SUPPORT_FILES): Remove
14462         (setup-dirs-gdb, gdb.tar.gz, make-gdb.tar.gz):  Remove old rules.
14463         (gdb.tar.gz): Add new rule to use standard distribution building
14464         mechanism.
14466 Mon Jul 25 11:10:06 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
14468         * configure.in: Warn about use of /usr/ucb/cc on Solaris.  From
14469         Bill Cox <bill@cygnus.com>.
14471 Sat Jul 23 12:19:46 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14473         * config.guess:  Recognize ISC.  Patch from kwzh@gnu.ai.mit.edu.
14475 Fri Jul 22 17:53:59 1994  Stu Grossman  (grossman@cygnus.com)
14477         * configure:  Search current dir first in .gdbinit.
14479 Fri Jul 22 11:28:30 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14481         * config.sub:  Recognize freebsd (merged from gcc config.sub).
14483 Thu Jul 21 14:10:52 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14485         * config.sub:  Refer to NeXT's operating system as nextstep.
14487         * config.sub (case $basic_machine):  Re-order the cases, to match
14488         the order in the FSF version (which is mostly alphabethical).
14489         Merge in some additions and changes from the FSF.
14491 Sat Jul 16 12:03:08 1994  Stan Shebs  (shebs@andros.cygnus.com)
14493         * config.guess: Recognize m68k-atari-sysv4 and m88k-harris-csux7.
14494         * config.sub: Recognize cxux7.
14495         * configure.in: Use mh-cxux for m88k-harris-cxux*.
14497 Mon Jul 11 14:37:39 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14499         * config.sub:  Fix typo powerpc -> powerpc-*.
14501 Sat Jul  9 13:03:43 1994  Michael Tiemann  (tiemann@blues.cygnus.com)
14503         * Makefile.in: `all-emacs19' depends on `all-byacc'.
14505         * Makefile.in: Add all-emacs19 and install-emacs19 rules (in
14506         parallel with all-emacs and install-emacs).  Top-level command
14507         `make all-emacs19 CC=gcc' now behaves as `make all-emacs CC=gcc'.
14509 Thu Jun 30 16:53:42 1994  Ian Lance Taylor  (ian@sanguine.cygnus.com)
14511         * test-build.mk ($(host)-stamp-stage2-installed): Remove
14512         $(relbindir)/make before doing ``make install'', and use
14513         $(GNU_MAKE) while doing it.  Avoids problem on SunOS with
14514         installing over running make binary.
14515         ($(host)-stamp-stage3-installed): Likewise.
14517 Tue Jun 28 13:43:25 1994  Jim Kingdon  (kingdon@lioth.cygnus.com)
14519         * config.guess: Recognize Mach.
14521 Mon Jun 27 16:41:14 1994  Ian Lance Taylor  (ian@sanguine.cygnus.com)
14523         * configure: Check ${exec_prefixoption}, not ${exec_prefix}, to
14524         see whether --exec-prefix was used.
14526 Sun Jun 26 21:15:54 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14528         * README:  Explicitly mention libg++/README.  (Zoo's idea.)
14530 Tue Jun 21 12:45:55 1994  Jim Kingdon  (kingdon@lioth.cygnus.com)
14532         * Makefile.in: Add all-librx target similar to all-libproc.
14534 Wed Jun  8 23:11:55 1994  Stu Grossman  (grossman@cygnus.com)
14536         * config.guess:  Rearrange tests for Alpha-OSF1 to properly deal
14537         with post 1.2 uname bogosity.
14539 Thu Jun  9 00:27:59 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
14541         * configure: Remove temporary files on receipt of a signal.
14543 Tue Jun  7 12:06:24 1994  Ian Lance Taylor  (ian@cygnus.com)
14545         * configure: If there is a package_makefile_frag, remove
14546         ${subdir}/Makefile.tem after copying it in.
14548 Mon Jun  6 21:35:02 1994  D. V. Henkel-Wallace  (gumby@cygnus.com)
14550         * build_all.mk: support rs6000 lynx identifies itself as
14551         rs6000-lynx-lynxos2.2.2.  Also, use /usr/cygnus/progressive/bin/gcc
14552         since /bin/gcc is too feeble to compile a modern gcc.
14554 Mon Jun  6 16:06:34 1994  Karen Christiansen (karen@cirdan.cygnus.com)
14556         * brought devo/test-build.mk update-to-date with progressive/
14557           test-build.mk. Add lynx targets and hppa flag info.
14559 Sat Jun  4 17:23:54 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14561         * configure.in:  Use mh-ncrsvr43.  Patch from
14562         Tom McConnell <tmcconne@sedona.intel.com>.
14564 Fri Jun  3 17:47:24 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14566         * config.guess (i386-unknown-bsdi):  No longer need to
14567         check #if defined(__bsdi__) && defined(__i386__).
14569 Thu Jun  2 18:56:46 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
14571         * configure: Set program_transform_nameoption correctly.
14573 Thu Jun  2 10:57:06 1994  Karen Christiansen (karen@cirdan.cygnus.com)
14575         * brought build-all.mk update-to-date with progressive build-all.mk,
14576           added new targets and hppa info.
14578 Thu Jun  2 00:12:44 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
14580         * configure: If config.guess result is a prefix of the user
14581         specified target, assume a native build and use the user specified
14582         target as the host alias.  Remove SunOS patch suffix removal hack.
14583         * configure.in: Remove SunOS patch suffix removal hack.
14585         * Makefile.in (CROSS_CHECK_MODULES): Remove check-flex, since it's
14586         in NATIVE_CHECK_MODULES.
14588 Wed Jun  1 10:49:41 1994  Bill Cox  (bill@rtl.cygnus.com)
14590         * Makefile.in: Rename HOST_ONLY to NATIVE.
14591         * configure: Delete SunOs patch suffix from host_canonical
14592           and build_canonical variables that are prepended to Makefiles.
14593         * configure.in: Add comments for easier maintenance.
14595 Tue May 31 19:39:47 1994  Jim Kingdon  (kingdon@lioth.cygnus.com)
14597         * Makefile.in: Add all-libproc target similar to all-gui.
14599 Tue May 31 17:16:33 1994  Tom Lord  (lord@cygnus.com)
14601         * Makefile.in (CHECK_MODULES): split into
14602         HOST_ONLY_CHECK_MODULES and CROSS_CHECK_MODULES.
14604 Tue May 31 16:36:36 1994  Paul Eggert  (eggert@twinsun.com)
14606         * config.guess (i386-unknown-bsdi): New system to guess.
14608 Wed May 25 16:47:10 1994  Jim Kingdon  (kingdon@lioth.cygnus.com)
14610         * Makefile.in: Add all-gui target (but not yet build by "all").
14612 Thu May 26 08:53:19 1994  Bill Cox  (bill@rtl.cygnus.com)
14614         * config.sub: Move deletion of patch suffix from here...
14615         * configure.in: To here, at Ian's suggestion.  The top-
14616           level scripts might need to know of a patch level.
14618 Wed May 25 09:15:54 1994  Bill Cox  (bill@rtl.cygnus.com)
14620         * config.sub: Strip off patch suffix so rtl is recognized
14621           as a sunos4.1.3 machine, even though it's been patched.
14623 Fri May 20 08:25:49 1994  Steve Chamberlain  (sac@deneb.cygnus.com)
14625         * Makefile.in (INSTALL_LAST): Delete.
14626         (INSTALL_DOSREL): New.
14628 Thu May 19 17:12:12 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
14630         * configure.in: Use ld for i[34]86-*-sysv4* and sparc-*-solaris2*.
14631         Don't set use_gnu_ld to no for *-*-sysv4; that only controls
14632         whether we pass down --with-gnu-ld anyhow.
14634 Thu May 19 09:29:12 1994  Steve Chamberlain  (sac@cygnus.com)
14636         * Makefile.in (INSTALL_LAST): Change operation so it works
14637         on more flavors of make.
14638         * configure.in (go32): Don't build libg++ or libio.
14640 Fri May 13 13:28:34 1994  Steve Chamberlain  (sac@cygnus.com)
14642         * Makefile.in (Move HOST_PREFIX_1 and friends up so
14643         they can be overriden by templates.
14645 Sat May  7 16:46:44 1994  Steve Chamberlain  (sac@cygnus.com)
14647         * configure.in (target==go32): Don't build gdb.
14648         * dosrel: New directory.
14650 Fri May  6 14:19:25 1994  Steve Chamberlain  (sac@cygnus.com)
14652         * configure.in (host==go32): Configure dosrel too.
14653         * Makefile.in (INTALL_TARGET): Call INSTALL_LAST last.
14654         (HOST_CC, HOST_PREFIX, HOST_PREFIX_1): Undefine, they should
14655         be set by incoming names or templates.
14656         (INSTALL_LAST): New rule.
14658 Thu May  5 17:35:05 1994  Stan Shebs  (shebs@andros.cygnus.com)
14660         * config.sub (sparclitefrw, sparclitefrwcompat): Don't set the os.
14662 Thu May  5 20:06:45 1994  Ken Raeburn  (raeburn@cujo.cygnus.com)
14664         * configure.in (appdirs): New variable.  Currently empty, but will
14665         be used in gas distribution.  If nonempty, lists a set of
14666         directories at least one of which must get configured, or top
14667         level configuration is considered to have failed.
14668         (rs6000-*-lynxos*): Use new file name.
14670 Thu May  5 13:38:36 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
14672         Eliminate XTRAFLAGS.
14673         * Makefile.in (CC_FOR_TARGET): If newlib exists, refer to the
14674         newlib include files using -idirafter, and also use -nostdinc.
14675         (CXX_FOR_TARGET): Likewise.
14676         (XTRAFLAGS): Removed.
14677         (BASE_FLAGS_TO_PASS): Remove XTRAFLAGS_FOR_TARGET.
14678         (EXTRA_HOST_FLAGS): Remove XTRAFLAGS.
14679         (EXTRA_TARGET_FLAGS, EXTRA_GCC_FLAGS): Likewise.
14680         ($(DO_X)): Don't pass down XTRAFLAGS.
14682 Thu May  5 00:16:36 1994  Ken Raeburn  (raeburn@kr-pc.cygnus.com)
14684         * configure.in (mips*-dec-bsd*): New target; do build linker.
14685         (mips*-*-bsd*): New target; don't build linker.
14687 Wed May  4 20:10:10 1994  D. V. Henkel-Wallace  (gumby@cygnus.com)
14689         * configure.in: support rs6000-*-lynxos* configuration.
14690         support sunos4 as a cross target.
14692         * config.sub: look for lynx*, not lynx since the OS version may
14693         legitimately be part of the name.
14695 Tue May  3 21:48:11 1994  Ken Raeburn  (raeburn@cujo.cygnus.com)
14697         * configure.in (i[34]86-*-sco*): Move to be with other i386
14698         targets.
14699         (romp-*-*): New target.  Skip various binary utilities.
14700         (vax-*-*): New target.  Don't build newlib.
14701         (vax-*-vms): Renamed from *-*-vms.  Don't build opcodes or newlib.
14703 Thu Apr 28 15:03:05 1994  David J. Mackenzie  (djm@rtl.cygnus.com)
14705         * configure.in: Only set host_makefile_frag if config
14706         directory exists.
14708 Wed Apr 27 12:14:30 1994  David J. Mackenzie  (djm@rtl.cygnus.com)
14710         * install.sh: If $dstdir exists, don't check whether each
14711         component does.
14713 Tue Apr 26 18:11:33 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
14715         * test-build.mk (HOLES): Add sleep; used by rcs/src/conf.sh.
14717 Mon Apr 25 15:06:34 1994  Stan Shebs  (shebs@andros.cygnus.com)
14719         * configure.in (*-*-lynxos*): Don't configure newlib for either
14720         native or cross Lynx.
14722 Sat Apr 16 11:58:16 1994  Doug Evans  (dje@canuck.cygnus.com)
14724         * config.sub (sparc64-elf): Fix os.
14725         (z8k): Remove duplicate.
14727 Thu Apr 14 23:33:17 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
14729         * Makefile.in (gcc-no-fixedincludes): Touch gcc/include/fixed, not
14730         gcc/stmp-fixproto, to try to prevent fixproto from being run.
14732 Wed Apr 13 15:14:52 1994  Bill Cox  (bill@cygnus.com)
14734         * configure: Make file links cleanly even if Lynx fails on
14735           an NFS symlink (at least fail cleanly).
14737 Mon Apr 11 10:58:56 1994  Jim Wilson  (wilson@sphagnum.cygnus.com)
14739         * test-build.mk (CC): For mips-sgi-irix4, change -XNh1500 to
14740         -XNh2000.
14742 Sat Apr  9 15:10:45 1994  David J. Mackenzie  (djm@rtl.cygnus.com)
14744         * configure: Unknown options are fatal again.
14746 Fri Apr  8 12:01:41 1994  David J. Mackenzie  (djm@cygnus.com)
14748         * configure: Ignore --x-includes and --x-libraries, for Autoconf
14749         compatibility.
14751 Thu Apr  7 17:31:43 1994  Doug Evans  (dje@canuck.cygnus.com)
14753         * build-all.mk: Add `clean' target.
14755 Wed Apr  6 20:44:56 1994  Peter Schauer  (pes@regent.e-technik.tu-muenchen.de)
14757         * config.guess:  Add SINIX support.
14758         * configure.in:  Add mips-*-sysv4* support.
14760 Mon Apr  4 17:41:44 1994  Doug Evans  (dje@canuck.cygnus.com)
14762         * build-all.mk: Document all useful targets.
14763         If canonhost is sparc-sun-solaris2.3, change it to sparc-sun-solaris2.
14764         If canonhost is mips-sgi-irix4.0.5H, change it to mips-sgi-irix4.
14766 Thu Mar 31 04:55:57 1994  David J. Mackenzie  (djm@rtl.cygnus.com)
14768         * configure: Support --silent, --quiet.
14770 Wed Mar 30 21:37:38 1994  David J. Mackenzie  (djm@rtl.cygnus.com)
14772         * configure: Support --disable-FEATURE.
14774 Tue Mar 29 19:15:05 1994  Jim Kingdon  (kingdon@lioth.cygnus.com)
14776         * config.guess: Recognize NCR running SVR4.3.
14778 Mon Mar 28 14:55:15 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14780         * config.guess:  Make BSDI generate i386-unknown-bsd386.
14781         Patch from Paul Eggert <eggert@twinsun.com>.
14783 Mon Mar 28 12:54:52 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
14785         * configure.in (powerpc-*-aix*): Treat like rs6000-*-*.
14787 Sat Mar 26 11:25:48 1994  David J. Mackenzie  (djm@rtl.cygnus.com)
14789         * configure: Make unrecognized options give nonfatal warnings
14790         instead of fatal errors, and pass them to any subdirectory
14791         configures in case they recognize them.
14792         Make --x equivalent to --with-x.
14794 Fri Mar 25 21:52:10 1994  David J. Mackenzie  (djm@rtl.cygnus.com)
14796         * configure: Add --enable-* options.  Clean up usage message and
14797         some comments.
14799 Thu Mar 24 09:12:53 1994  Doug Evans  (dje@canuck.cygnus.com)
14801         * Makefile.in (NM_FOR_TARGET): Build tree version is now nm.new.
14803 Sun Mar 20 11:28:22 1994  Jeffrey A. Law  (law@snake.cs.utah.edu)
14805         * configure.in (hppa*-*-*): Enable binutils.
14807 Sat Mar 19 11:50:16 1994  Jim Kingdon  (kingdon@lioth.cygnus.com)
14809         * config.sub: Recognize cisco.
14811 Fri Mar 18 16:42:32 1994  Jason Merrill  (jason@deneb.cygnus.com)
14813         * Makefile.in (CXXFLAGS): Add -fexternal-templates.
14815 Tue Mar 15 11:25:55 1994  Jim Kingdon  (kingdon@lioth.cygnus.com)
14817         * config.guess: about target *-hitachi-hiuxwe2, don't print more
14818         than one configuration name.  Add comment.
14820 Sun Mar  6 23:13:38 1994  Hisashi MINAMINO  (minamino@sra.co.jp)
14822         * config.guess: about target *-hitachi-hiuxwe2, fixed
14823         machine guessing order.  [Hitachi's CPU_IS_HP_MC68K
14824         macro is incorrect.]
14826 Sun Mar 13 09:10:08 1994  Jim Kingdon  (kingdon@lioth.cygnus.com)
14828         * Makefile.in (TAGS): Just build TAGS in each subdirectory, rather
14829         than the "make ls" stuff which used to be here.
14831 Fri Mar 11 12:52:39 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14833         * config.guess:  Recognize i[34]86-unknown-freebsd.
14834         From Shawn M Carey <smcarey@rodan.syr.edu>.
14836 Thu Mar  3 14:24:21 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14838         * configure.in (noconfigdirs for alpha): Remove libg++ and libio.
14840 Wed Mar  2 13:28:48 1994  Jim Kingdon  (kingdon@deneb.cygnus.com)
14842         * config.guess: Check for ptx.
14844 Mon Feb 28 16:46:50 1994  Kung Hsu  (kung@mexican.cygnus.com)
14846         * config.sub: Add os9k checking.
14848 Thu Feb 24 07:09:04 1994  Jeffrey A. Law  (law@snake.cs.utah.edu)
14850         * config.guess: Handle OSF1 running on HPPA processors
14852 Fri Feb 18 14:14:00 1994  Ken Raeburn  (raeburn@rtl.cygnus.com)
14854         * configure: If subdir configure fails, print out a message with
14855         subdirectory name, in case subdir's configure code didn't identify
14856         itself.
14858 Fri Feb 18 12:50:15 1994  Doug Evans  (dje@cygnus.com)
14860         * configure.in: Remove embedded newlines from configdirs.
14861         Avoid mismatches of substrings.  Fix matching strings at end
14862         of configdirs.
14864 Fri Feb 11 15:33:33 1994  Stu Grossman  (grossman at cygnus.com)
14866         * config.guess:  Add Lynx/rs6000 config support.
14868 Tue Feb  8 13:41:09 1994  Ken Raeburn  (raeburn@rtl.cygnus.com)
14870         * configure.in (alpha-dec-osf1*, alpha*-*-*): Build gas.
14872 Mon Feb  7 15:42:36 1994  Jeffrey A. Law  (law@cygnus.com)
14874         * configure.in (hppa*-*-osf*): Treat this just like most other
14875         PA configurations (eg no binutils or ld).
14876         (hppa*-*-*elf*): These configurations have binutils and ld.
14878 Sun Feb  6 16:35:07 1994  Jeffrey A. Law  (law@snake.cs.utah.edu)
14880         * config.sub (hiux): Fix typo.  From m-kasahr@sramhc.sra.co.JP.
14882 Sat Feb  5 01:00:33 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
14884         * configure.in (rs6000-*-*): Build gas.
14886 Wed Feb  2 13:57:57 1994  Jeffrey A. Law  (law@snake.cs.utah.edu)
14888         * Makefile.in:  Avoid bug in losing hpux sed.
14890 Wed Feb  2 14:53:05 1994  Jim Kingdon  (kingdon@lioth.cygnus.com)
14892         * Makefile.in, test-build.mk: Remove MUNCH_NM; it was only needed
14893         for GDB and GDB has been fixed to not need it.
14895 Sun Jan 30 17:58:06 1994  Ken Raeburn  (raeburn@cujo.cygnus.com)
14897         * config.guess: Recognize vax hosts.
14899 Fri Jan 28 15:29:38 1994  Ken Raeburn  (raeburn@cujo.cygnus.com)
14901         * configure (while loop): Don't use "break 2" inside case
14902         statement -- the case statement isn't an enclosing loop.
14904 Mon Jan 24 18:40:06 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14906         * config.guess:  Clean up NeXT support, to allow nextstep
14907         on Intel machines.  Make OS be nextstep.
14909 Sun Jan 23 18:47:22 1994  Richard Kenner  (kenner@vlsi1.ultra.nyu.edu)
14911         * config.guess: Add alternate forms for Convex.
14913 Thu Jan 20 16:13:41 1994  Stu Grossman  (grossman at cygnus.com)
14915         * configure:  Completely rewrite option processing.  Take
14916         advantage of pattern-matching to avoid invoking test frequently.
14917         Also clean up host and target defaulting logic.
14919 Mon Jan 17 15:06:56 1994  Ken Raeburn  (raeburn@cujo.cygnus.com)
14921         * Makefile.in: Replace all occurrances of "rootme" with "r" and
14922         "$${rootme}" with "$$r", to increase the likelihood that the do-*
14923         commands (plus user environment) will fit SCO limits.
14925 Thu Jan  6 11:20:57 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
14927         * configure.in: Don't issue warnings about directories which are
14928         not being configured if -norecursion is set.  Correct test for
14929         --with-gnu-as and --with-gnu-ld to not get confused by substring
14930         matches.
14932         * configure.in: Don't build gas for alpha-dec-osf1*.
14934 Tue Jan  4 17:10:19 1994  Stu Grossman  (grossman at cygnus.com)
14936         * configure:  Back out Per's change of 12/19/1993.  It changes the
14937         behavior of configure in unexpected and confusing ways.
14939         Also, use different delim char when calculating
14940         program_transform_name so that the name can contain slashes.
14942 Sat Jan  1 13:45:31 1994  Rob Savoye  (rob@darkstar.cygnus.com)
14944         * configure.in, config.sub: Add support for VSTa micro-kernel.
14946 Sat Dec 25 20:00:47 1993  Jeffrey A. Law  (law@snake.cs.utah.edu)
14948         * configure.in: Nuke hacks which were used to get a special
14949         version of GAS for HPPA configurations.
14951 Sun Dec 19 20:40:44 1993  Per Bothner  (bothner@kalessin.cygnus.com)
14953         * configure:  If only ${target_alias} is given, use that
14954         as the default for ${host_alias}.
14955         * configure:  Add missing back-slashes before nested quotes.
14957 Wed Dec 15 18:07:18 1993  david d `zoo' zuhn  (zoo@andros.cygnus.com)
14959         * Makefile.in (BASE_FLAGS_TO_PASS): add YACC=$(BISON)
14961 Tue Dec 14 21:25:33 1993  Per Bothner  (bothner@cygnus.com)
14963         * config.guess:  Recognize some Tektronix configurations.
14964         From Kaveh R. Ghazi <ghazi@noc.rutgers.edu>.
14966 Sat Dec 11 11:18:00 1993  Steve Chamberlain  (sac@thepub.cygnus.com)
14968         * config.sub: Match any flavor of SH.
14970 Thu Dec  2 17:16:58 1993  Ken Raeburn  (raeburn@cujo.cygnus.com)
14972         * configure.in: Don't try to configure newlib for Alpha.
14974 Thu Dec  2 14:35:54 1993  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
14976         * configure.in: Don't build ld for Irix 5.  Don't build gas,
14977         libg++ or libio for any Alpha target.
14979         * configure.in (mips*-sgi-irix5*): New target; use mh-irix5.
14981 Wed Dec  1 17:00:33 1993  Jason Merrill  (jason@deneb.cygnus.com)
14983         * Makefile.in (GZIPPROG): Renamed from GZIP, which gzip uses for
14984         default arguments -- so it tried to compress itself.
14986 Tue Nov 30 13:45:15 1993  david d `zoo' zuhn  (zoo@andros.cygnus.com)
14988         * configure.in (notsupp): ensure that a space is always at the end
14989           of the configdirs list, since the grep checks for an explicit space
14991 Tue Nov 16 15:04:27 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
14993         * configure.in (target i386-sysv4.2): don't build ld, since static
14994           versions of many libraries are not available.
14996 Tue Nov 16 14:28:12 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
14998         * config.guess: Recognize Apollos (using environment variables).
14999         * configure.in: Don't configure ld, binutils, or gprof for Apollo.
15001 Thu Nov 11 12:03:50 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
15003         * config.guess: Recognize Sony news mips running newsos.
15005 Wed Nov 10 16:57:00 1993  Mark Eichin  (eichin@cygnus.com)
15007         * Makefile.in (all-cygnus, build-cygnus): "fi else" needs to be
15008         "fi ; else" for bash.
15010 Tue Nov  9 15:54:01 1993  Mark Eichin  (eichin@cygnus.com)
15012         * Makefile.in (BASE_FLAGS_TO_PASS): pass SHELL.
15014 Fri Nov  5 08:07:27 1993  D. V. Henkel-Wallace  (gumby@blues.cygnus.com)
15016         * config.sub: accept unixware as an alias for svr4.2.
15017         Fix some inconsistancies with the gcc version.
15019 Fri Nov  5 15:14:12 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
15021         * Makefile.in (DISTDOCDIRS):  Add gdb.
15023 Fri Nov  5 11:59:42 1993  Per Bothner  (bothner@kalessin.cygnus.com)
15025         * Makefile.in (DISTDOCDIRS):  Add libg++ and libio.
15027 Fri Nov  5 10:35:05 1993  Ken Raeburn  (raeburn@rover.cygnus.com)
15029         * Makefile.in (taz): Only build "info" in DISTDOCDIRS.
15030         (DISTDOCDIRS): Don't assume libg++ and gdb folks necessarily want
15031         this now.
15033 Thu Nov  4 18:58:23 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
15035         * config.sub: Accept hiux* as an OS name.
15037         * Makefile.in: Change RUNTEST_FLAGS back to RUNTESTFLAGS per
15038         etc/make-stds.texi.  The underscore came from gcc, and dje now
15039         agrees that RUNTESTFLAGS is the correct name.
15041 Thu Nov  4 10:49:01 1993  Per Bothner  (bothner@kalessin.cygnus.com)
15043         * install.sh:  Remove 'set -e'.  It makes any conditionals
15044         in the script useless.
15046         * config.guess: Automatically recognize arm-acorn-riscix
15047         Patch from Richard Earnshaw (rwe11@cl.cam.ac.uk).
15049 Thu Nov 04 08:08:04 1993  Jeffrey Wheat  (cassidy@cygnus.com)
15051         * Makefile.in: Change RUNTESTFLAGS to RUNTEST_FLAGS
15053 Wed Nov  3 22:09:46 1993  Ken Raeburn  (raeburn@rtl.cygnus.com)
15055         * Makefile.in (DISTDOCDIRS): New variable.
15056         (taz): Edit local Makefile.in sooner, instead of proto-toplev
15057         Makefile.in later.  Build "info" and "dvi" in DISTDOCDIRS.
15059 Wed Nov  3 21:31:52 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
15061         * configure.in (hppa target): check the source directory for the
15062           pagas sub-directory
15064 Wed Nov  3 11:12:22 1993  Doug Evans  (dje@canuck.cygnus.com)
15066         * config.sub: Allow -aout* and -elf*.
15068 Wed Nov  3 11:08:33 1993  Ken Raeburn  (raeburn@rtl.cygnus.com)
15070         * configure.in: Don't build ld on i386-solaris2, same as for
15071         sparc-solaris2.
15073 Tue Nov  2 14:21:25 1993  Per Bothner  (bothner@kalessin.cygnus.com)
15075         * Makefile.in (taz): Add texinfo/lgpl.texinfo (for libg++).
15077 Tue Nov  2 13:38:30 1993  Peter Schauer  (pes@regent.e-technik.tu-muenchen.de)
15079         * configure.in:  Configure gdb for alpha.
15081 Mon Nov  1 10:42:54 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
15083         * Makefile.in (CXXFLAGS): Add -O.
15085 Wed Oct 27 10:45:06 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
15087         * config.guess: added support for DG Aviion
15089 Tue Oct 26 14:37:37 1993  Ken Raeburn  (raeburn@rover.cygnus.com)
15091         * configure.in: Produce warning message for subdirectories not
15092         configurable for this host/target combination.  Don't try to
15093         configure gdb for vms.
15095 Mon Oct 25 11:22:15 1993  Ken Raeburn  (raeburn@rover.cygnus.com)
15097         * Makefile.in (taz): Replace "byacc" with "bison -y" in the
15098         appropriate files before making "diststuff".
15099         (DISTBISONFILES): New var: list of files to be edited.
15100         (DISTSTUFFDIRS): Add binutils.
15102 Fri Oct 22 20:32:15 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
15104         * config.sub: also handle mipsel and mips64el (for little endian mips)
15106 Fri Oct 22 07:59:20 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
15108         * configure.in: Add * to end of all OS names.
15110 Thu Oct 21 11:38:28 1993  Stan Shebs  (shebs@rtl.cygnus.com)
15112         * configure.in: Build newlib for LynxOS native.
15114 Wed Oct 20 09:56:12 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
15116         * config.guess: Add support for delta 88k running SVR3.
15118         * configure.in: Add comment about HP compiler vs. emacs.
15120 Tue Oct 19 16:02:22 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
15122         * configure.in: don't build ld on solaris2 (not a viable option
15123           due to bugs in getpwnam & getpwuid)
15125 Tue Oct 19 15:13:56 1993  Ken Raeburn  (raeburn@rtl.cygnus.com)
15127         * configure.in: Accept alpha-dec-osf1*, not just -osf1, since
15128         config.guess will produce a full version number.
15130 Tue Oct 19 15:58:01 1993  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
15132         * configure.in: Build linker and binutils for alpha-dec-osf1.
15134 Tue Oct 19 11:41:55 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
15136         * Makefile.in: Remove -O from CXXFLAGS for consistency with CFLAGS,
15137         and gdb/testsuite/Makefile.in.
15139 Sat Oct  9 18:39:07 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
15141         * configure.in: recognize mips*- instead of mips-
15143 Fri Oct  8 14:15:39 1993  Ken Raeburn  (raeburn@cygnus.com)
15145         * config.sub: Accept linux*coff and linux*elf as operating
15146         systems.
15148 Thu Oct  7 12:57:19 1993  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
15150         * config.sub: Recognize mips64, and mips3 as an alias for it.
15152 Wed Oct  6 13:54:21 1993  Peter Schauer  (pes@regent.e-technik.tu-muenchen.de)
15154         * configure.in: Remove alpha-dec-osf*, no longer necessary now that
15155         gdb knows how to handle OSF/1 shared libraries.
15157 Tue Oct  5 11:55:04 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
15159         * configure.in: Recognize hppa*-*-hiux* (currently synonym for hpux).
15160         * config.guess: Recognize Hitachi's HIUX.
15161         * config.sub: Recognize h3050r* and hppahitachi.
15162         Remove redundant cases for hp9k[23]*.
15164 Mon Oct  4 16:15:09 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
15166         * configure.in: default to '--with-gnu-as' and '--with-gnu-ld'
15167         if gas and ld are in the source tree and are in ${configdirs}.
15168         If ${use_gnu_as} or ${use_gnu_ld} are 'no', then don't set the
15169         --with options (but still pass them down on the command line,
15170         if they were explicitly specified).
15172 Fri Sep 24 19:11:13 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
15174         * configure: substitute SHELL value in Makefile.in with
15175         ${CONFIG_SHELL}
15177 Thu Sep 23 18:05:13 1993  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
15179         * configure.in: Build gas, ld, and binutils for *-*-sysv4* and
15180         *-*-solaris2* targets.
15182 Sun Sep 19 17:01:41 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
15184         * Makefile.in: define M4, and pass it down to sub-makes;
15185         all-autoconf now depends on all-m4
15187 Sat Sep 18 00:38:23 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
15189         * Makefile.in ({AR,RANLIB}_FOR_TARGET): make contingent on
15190         presence of {ar,ranlib} instead of a configured directory
15192 Wed Sep 15 08:41:44 1993  Jim Kingdon  (kingdon@cirdan.cygnus.com)
15194         * config.guess: Accept 34?? as well as 33?? for NCR.
15196 Mon Sep 13 12:28:43 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
15198         * configure.in: grab mt-hppa for HPPA targets; use 'gas ' instead
15199         of 'gas' in sed commands, since 'gash' is now in the tree as well.
15201 Fri Sep 10 11:23:52 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
15203         * configure: grab values for $(CC) and $(CXX) from the
15204         environment, so that someone can do "CC=gcc configure; make" and
15205         have it work right (matching the way that autoconf works now)
15207         * configure.in, Makefile.in: add support for gash, the tcl
15208         interface to Galaxy
15210         * config.guess: add NetBSD variants (hp300, x86)
15212 Thu Sep  9 16:48:52 1993  Jason Merrill  (jason@deneb.cygnus.com)
15214         * install.sh: Support -d option (in the manner of SunOS 4 install,
15215         as it is more deterministic than that of GNU install)
15216         (chmodcmd): Set file to mode 755 by default (should also do default
15217         chgrp and chown, but I don't feel like dealing with that now)
15219 Tue Sep  7 11:59:39 1993  Doug Evans  (dje@canuck.cygnus.com)
15221         * config.sub: Remove h8300hhms alias.
15223 Tue Aug 31 11:00:09 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
15225         * configure.in: Match *-*-solaris2* not *-sun-solaris2*.
15227 Mon Aug 30 18:29:10 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
15229         * Makefile.in (gcc-no-fixedincludes): touch stmp-fixproto as well
15230         as stmp-fixinc
15232 Wed Aug 25 16:35:59 1993  K. Richard Pixley  (rich@sendai.cygnus.com)
15234         * config.sub: recognize m88110-bug-coff.
15236 Tue Aug 24 10:23:24 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
15238         * Makefile.in (all-libio): all dependencies on the toolchain used
15239         to build this (gcc, gas, ld, etc)
15241 Fri Aug 20 17:24:24 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
15243         * config.guess: Deal with OSF/1 1.3 on alpha.
15245 Thu Aug 19 11:43:04 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
15247         * install.sh: add some 'else true' clauses for portability
15249         * configure.in: don't build libio for h8[35]00-*-* targets
15251 Tue Aug 17 19:02:31 1993  Per Bothner  (bothner@kalessin.cygnus.com)
15253         * Makefile.in:  Add support for new libio.
15255 Sun Aug 15 20:48:55 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
15257         * install.sh: If one command fails, don't try the rest.  Don't try
15258         to remove $dsttmp (via trap) unless we have already created it.
15259         If $src doesn't exist, detect it and exit with an error.
15261         * config.guess: Recognize BSD on hp300.
15263 Wed Aug 11 18:35:13 1993  Per Bothner  (bothner@kalessin.cygnus.com)
15265         * config.guess:  Map (9000/[34]??:HP-UX:*:*) to m68k-hp-hpux.
15266         Bug report from "Hamish (H.I.) Macdonald" <hamish@bnr.ca>.
15268 Wed Aug 11 15:37:51 1993  Jason Merrill  (jason@deneb.cygnus.com)
15270         * Makefile.in (all-send-pr): depends on all-prms
15272 Wed Aug 11 16:56:03 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
15274         * config.guess: Fix typo (9000/8??:4.3bsd -> 9000/7??:4.3bsd).
15276 Fri Aug  6 14:45:02 1993  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
15278         * config.guess: From michael@mercury.cs.mun.ca (Michael Rendell):
15279         Added test for mips-mips-riscos5.
15281 Thu Aug  5 15:45:08 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
15283         * configure.in: use mh-hp300 for 68k HP hosts
15285 Mon Aug  2 11:56:53 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
15287         * configure: add support for CONFIG_SHELL, so that you can use
15288         some alternate shell for evaluating configure scripts
15290 Sun Aug  1 11:36:27 1993  Fred Fish  (fnf@deneb.cygnus.com)
15292         * Makefile.in (make-gdb.tar.gz):  Sed bug reporting address
15293         in configure script to bug-gdb@prep.ai.mit.edu when building
15294         distribution archive.
15295         * Makefile.in (COMPRESS):  Remove def.
15296         * Makefile.in (gdb.tar.gz, make-gdb.tar.gz):  Renamed from
15297         gdb.tar.Z and make-gdb.tar.Z respectively.
15298         * Makefile.in (make-gdb.tar.gz):  Now only build gzip'd archive.
15299         * Makefile.in (make-gdb.tar.gz):  Minor changes to move closer
15300         to convergence with 'taz' target in Makefile.in.
15302 Fri Jul 30 12:34:57 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
15304         * install.sh (dsttmp): use trap to ensure that tmp files go
15305         away on error conditions
15307 Wed Jul 28 11:57:36 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
15309         * Makefile.in (BASE_FLAGS_TO_PASS): remove LOADLIBES
15311 Tue Jul 27 12:43:40 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
15313         * Makefile.in (install-dirs): Deal with a prefix like /gnu;
15314         its parent is '/' not ''.
15316         * Makefile.in (DEVO_SUPPORT): Add comments about ChangeLog.
15318 Fri Jul 23 09:53:37 1993  Jason Merrill  (jason@wahini.cygnus.com)
15320         * configure: if ${newsrcdir}/configure doesn't exist, don't assume
15321         that ${newsrcdir}/configure.in does.
15323 Tue Jul 20 11:28:50 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
15325         * test-build.mk: support for CONFIG_SHELL
15327 Mon Jul 19 21:54:46 1993  Fred Fish  (fnf@deneb.cygnus.com)
15329         * config.sub (netware):  Add as a basic system type.
15331 Wed Jul 14 12:03:11 1993  K. Richard Pixley  (rich@sendai.cygnus.com)
15333         * Makefile.in (Makefile): depend on configure.in.  Also drop the
15334           $(srcdir)/ from the dependency on Makefile.in.
15336 Tue Jul 13 20:10:58 1993  Doug Evans  (dje@canuck.cygnus.com)
15338         * config.sub: Recognize h8300hhms as h8300h-hitachi-hms.
15339         (h8300hhms is temporary until multi-libraries are implemented).
15340         * configure.in: Handle h8300h too.
15342 Sun Jul 11 17:35:27 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
15344         * config.guess: Recognize dpx/2 as m68k-bull-sysv3.
15346 Thu Jul  8 18:26:12 1993  John Gilmore  (gnu@cygnus.com)
15348         * configure:  Remove extraneous output when guessing host type.
15349         * config.guess:  Remove extraneous output when guessing using C
15350         compiler rather than uname, or when guessing fails.
15352 Wed Jul  7 17:58:14 1993  david d `zoo' zuhn  (zoo at rtl.cygnus.com)
15354         * Makefile.in: remove all.cross and install.cross targets
15356         * configure: remove CROSS=-DCROSS_COMPILE and ALL=all.cross
15357           definitions
15359 Tue Jul  6 10:39:44 1993  Steve Chamberlain  (sac@phydeaux.cygnus.com)
15361         * configure.in (target sh): Build gprof.
15363 Thu Jul  1 16:52:56 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15365         * config.sub: change -solaris to -solaris2
15367 Thu Jul  1 15:46:16 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
15369         * configure.in: Use config/mh-riscos for mips-*-sysv*.
15371 Wed Jun 30 09:31:58 1993  Ian Lance Taylor  (ian@cygnus.com)
15373         * configure: Correct error message for missing Makefile.in to
15374         print correct directory.
15376 Tue Jun 29 13:52:16 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15378         * install.sh: kludge around 386BSD shell bug
15380 Tue Jun 29 13:06:49 1993  Per Bothner  (bothner@rtl.cygnus.com)
15382         * config.guess:  Recognize NeXT.
15383         * config.guess:  Recognize i486-ncr-sysv4.
15384         * Makefile.in (taz):  rm $(TOOL)-$$VER before linking.
15386 Tue Jun 29 12:50:57 1993  Ian Lance Taylor  (ian@cygnus.com)
15388         * Makefile.in (MAKEINFOFLAGS): New variable.
15389         (FLAGS_TO_PASS): Pass MAKEINFO as MAKEINFO MAKEINFOFLAGS.
15390         * build-all.mk, test-build.mk: Pass down --no-split as
15391         MAKEINFOFLAGS when hosted on DOS.  Compile DOS hosted without -g.
15393 Thu Jun 24 13:39:11 1993  Per Bothner  (bothner@rtl.cygnus.com)
15395         * Makefile.in (DEVO_SUPPORT):  Add COPYING COPYING.LIB install.sh.
15397 Wed Jun 23 12:59:21 1993  Per Bothner  (bothner@rtl.cygnus.com)
15399         * Makefile.in (libg++.tar.z):  New rule.
15400         * Makefile.in (taz):  Replace 'configure -rm' by 'make distclean'.
15401         * Makefile.in (taz):  Only do a single chmod.
15403 Fri Jun 18 12:03:10 1993  david d `zoo' zuhn  (zoo at majipoor.cygnus.com)
15405         * install.sh: don't use dirname anymore (replaced with sed usage)
15407 Thu Jun 17 18:43:42 1993  Fred Fish  (fnf@cygnus.com)
15409         * Makefile.in:  Change extension for gzip'd files from '.z' to
15410         '.gz' per new FSF standard usage.
15412 Thu Jun 17 16:58:50 1993  david d `zoo' zuhn  (zoo at majipoor.cygnus.com)
15414         * configure: put quotes around the final value of program_transform_name
15416 Tue Jun 15 16:48:51 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15418         * Makefile.in: new install.sh support; update install-info rules
15420 Wed Jun  9 12:31:34 1993  Ian Lance Taylor  (ian@cygnus.com)
15422         * configure.in: Build diff for crosses, but not for go32 host.
15424         * configure.in: Build gprof only for native, and don't build it
15425         for mips-*-*, rs6000-*-*, or i[34]86-*-sco*.
15427 Mon Jun  7 13:12:11 1993  david d `zoo' zuhn  (zoo at deneb.cygnus.com)
15429         * configure.in: don't build gas,ld,binutils on for *-*-sysv4
15431 Mon Jun  7 11:40:11 1993  Brendan Kehoe  (brendan@lisa.cygnus.com)
15433         * configure.in (host_tools): Add prms.
15435 Fri Jun  4 13:30:42 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15437         * Makefile.in: install gcc, do installation of $(INSTALL_MODULES)
15438         with $(FLAGS_TO_PASS) on the command line
15440         * config.sub: Recognize lynx and lynxos
15442 Fri Jun  4 10:59:56 1993  Ian Lance Taylor  (ian@cygnus.com)
15444         * config.sub: Accept -ecoff*, not just -ecoff.
15446 Thu Jun  3 17:38:54 1993  Ken Raeburn  (raeburn@cambridge.cygnus.com)
15448         * Makefile.in (taz): Use .gz suffix instead of .z.
15449         (binutils.tar.gz, gas+binutils.tar.gz, gas.tar.gz): Fixed target
15450         names.
15452 Thu Jun  3 00:27:06 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15454         * Makefile.in (vault-install): add an 'else true' (for Ultrix)
15456 Wed Jun  2 18:19:16 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15458         * Makefile.in (install-no-fixedincludes):  install gcc last, so
15459         that rebuilds that might happen during 'make install' don't get
15460         bogus gcc include files
15462 Wed Jun  2 16:14:10 1993  Ken Raeburn  (raeburn@cambridge.cygnus.com)
15464         Change from Utah for HPPA support:
15465         * config.guess: Recognize hppa1.x-hp-bsd.
15467 Wed Jun  2 11:53:33 1993  Per Bothner  (bothner@rtl.cygnus.com)
15469         * config.guess:  Add support for Motorola Delta 68k, up to r3v7.
15470         Patch from pot@fly.cnuce.cnr.it (Francesco Potorti`).
15472 Tue Jun  1 17:48:42 1993  Rob Savoye  (rob at darkstar.cygnus.com)
15474         * config.sub: Add support for rom68k and bug boot monitors.
15476 Mon May 31 09:36:37 1993  Jim Kingdon  (kingdon@cygnus.com)
15478         * Makefile.in: Make all-opcodes depend on all-bfd.
15480 Thu May 27 08:05:31 1993  Ian Lance Taylor  (ian@cygnus.com)
15482         * config.guess: Added special check for i[34]86-univel-sysv4*.
15484 Wed May 26 16:33:40 1993  Ian Lance Taylor  (ian@cygnus.com)
15486         * config.guess: For i[34]86-unknown-sysv4 use UNAME_MACHINE for
15487         the processor rather than assuming i486.
15489 Wed May 26 09:40:18 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
15491         * config.guess: Recognize SunOS6 as Solaris3.
15493 Tue May 25 23:03:11 1993  Per Bothner  (bothner@cygnus.com)
15495         * config.guess:  Fix typo.  Avoid #elif (not in K&R 1).
15496         Recognize SunOS 5.* only (and not [6-9].*) as being Solaris2.
15498 Tue May 25 12:44:18 1993  Ian Lance Taylor  (ian@cygnus.com)
15500         * build-all.mk (all-cross): New target for Canadian Cross.
15501         Added Q2 go32 targets.
15502         * test-build.mk: Configure go32 cross sparclite-aout and
15503         mips-idt-ecoff -with-gnu-ld.  Moved build binary directory from
15504         PARTIAL_HOLE_DIRS to BUILD_HOLES_DIRS.
15506 Mon May 24 15:30:06 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15508         * configure.in: fix Alpha GDB typo; also, don't build DejaGnu for
15509         GO32 hosted toolchains
15511 Mon May 24 14:18:41 1993  Rob Savoye  (rob at darkstar.cygnus.com)
15513         * configure: change  so "-exec-prefix" gets passed down rather
15514         than "-exec_prefix" so autoconf generated Makefiles get the
15515         exec_prefix set right.
15517 Fri May 21 10:42:25 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15519         * config.guess: get the Solaris2 minor version number
15521         * Makefile.in: add standards.texi and make-stds.texi to ETC_SUPPORT
15523 Fri May 21 06:20:52 1993  Brendan Kehoe  (brendan@lisa.cygnus.com)
15525         * config.guess: Recognize some Sequent platforms.
15527 Thu May 20 14:33:48 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15529         * Makefile.in: added the vault-install target
15531         * configure.in: actually use the Sun3 makefile fragment that's in
15532         config, also added the release dir to configdirs
15534 Thu May 20 14:19:18 1993  Ken Raeburn  (raeburn@cambridge.cygnus.com)
15536         * Makefile.in (taz): Fix modes on stuff in $(TOOL) dir also.
15538 Tue May 18 20:26:41 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15540         * configure.in: remove some program from Alpha targetted toolchains
15542 Tue May 18 15:23:19 1993  Ken Raeburn  (raeburn@cygnus.com)
15544         * Makefile.in (DISTSTUFFDIRS): Renamed from PROTODIRS.  Add ld and
15545         gprof.
15546         (taz): Run "make diststuff" in those directories instead of "make
15547         proto-dir".  Look for "VERSION=" only at start of line in subdir
15548         Makefile.  Use "gzip -9" for compression.
15549         (TEXINFO_SUPPORT, DIST_SUPPORT, BINUTILS_SUPPORT_DIRS): New vars.
15550         (binutils.tar.z): New target.
15552 Mon May 17 17:01:15 1993  Ken Raeburn  (raeburn@deneb.cygnus.com)
15554         * Makefile.in (taz): Include gpl.texinfo.
15556 Fri May 14 06:48:38 1993  Ken Raeburn  (raeburn@deneb.cygnus.com)
15558         * Makefile.in (setup-dirs): Merged into "taz" target.
15559         (taz): Only do `proto-dir' stuff if a directory is actually needed
15560         for this target.
15562 Wed May 12 13:09:44 1993  Ian Lance Taylor  (ian@cygnus.com)
15564         * Makefile.in (MUNCH_NM): New variable, defined to be $(NM).
15565         (FLAGS_TO_PASS): Pass down MUNCH_NM.
15566         (HOST_CC, HOST_PREFIX, HOST_PREFIX_1): New variables.
15567         (EXTRA_GCC_FLAGS): Pass down HOST_* variables.
15568         (gcc-no-fixedincludes): Correct for current gcc Makefile.
15570 Tue May 11 10:14:25 1993  Fred Fish  (fnf@cygnus.com)
15572         * Makefile.in (make-gdb.tar.Z):  Add configure, config.guess,
15573         config.sub, and move-if-change to gdb testsuite distribution
15574         archive, so the testsuite can be extracted, configured, and
15575         run separately from the gdb distribution.  Blow away the Chill
15576         tests that require a Chill compiled executable, since GNU Chill
15577         is not yet publically available.
15579 Mon May 10 17:22:26 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15581         * test-build.mk: set environment variables in a single command,
15582         instead of a list of assignments and exports
15584         * config.guess: recognize Alpha/OSF1 systems
15586 Mon May 10 14:55:51 1993  K. Richard Pixley  (rich@rtl.cygnus.com)
15588         * configure: Change help message to prefer --options rather than
15589           -options.
15591 Mon May 10 05:58:35 1993  Ken Raeburn  (raeburn@kr-pc.cygnus.com)
15593         * config.sub: Convergent Tech. "miniframe" uses m68010, sez
15594         zippy@ecst.csuchico.edu.
15595         * config.guess: Recognize miniframe.
15597 Sun May  9 17:47:57 1993  Rob Savoye  (rob at darkstar.cygnus.com)
15599         * Makefile.in: Use srcroot to find runtest rather than rootme.
15600         Pass RUNTESTFLAGS and EXPECT down in BASE_FLAGS_TO_PASS.
15602 Fri May  7 14:55:59 1993  Ian Lance Taylor  (ian@cygnus.com)
15604         * test-build.mk: Extensive additions to support building on a
15605         machine other than the host.
15607 Wed May  5 08:35:04 1993  Ken Raeburn  (raeburn@deneb.cygnus.com)
15609         * configure (tooldir): Fix for i386-aix again.
15611 Mon May  3 19:00:27 1993  Per Bothner  (bothner@cygnus.com)
15613         * configure, Makefile.in:  Change definition of $(tooldir)
15614         to match the FSF.
15616 Fri Apr 30 15:55:21 1993  Fred Fish  (fnf@cygnus.com)
15618         * config.guess:  Recognize i[34]86/SVR4.
15620 Fri Apr 30 15:52:46 1993  Steve Chamberlain  (sac@thepub.cygnus.com)
15622         * Makefile.in (all-gdb): gdb depends on sim.
15624 Thu Apr 29 23:30:48 1993  Fred Fish  (fnf@cygnus.com)
15626         * Makefile.in (gdb.tar.Z):  Make prototype gdb testsuite directory
15627         at the same time we make the prototype gdb directory.
15628         * Makefile.in (make-gdb.tar.Z):  Make the testsuite distribution
15629         files at the same time as the gdb base release distribution.
15631 Thu Apr 29 12:50:37 1993  Ian Lance Taylor  (ian@cygnus.com)
15633         * Makefile.in (check): Use individual check targets rather than
15634         DO_X rule.
15635         (check-gcc): Added.
15637 Thu Apr 29 09:50:07 1993  Jim Kingdon  (kingdon@cygnus.com)
15639         * config.sub: Use sysv3.2 not sysv32 for canonical OS
15640         for System V release 3.2.
15642 Thu Apr 29 10:33:22 1993  Ken Raeburn  (raeburn@cambridge.cygnus.com)
15644         * config.sub: Recognize hppaosf.
15645         * configure.in: Do configure ld/binutils/gas for it.
15647 Tue Apr 27 06:25:34 1993  Ken Raeburn  (raeburn@kr-pc.cygnus.com)
15649         * configure (tooldir): Alter syntax used to set this, for systems
15650         where "\$" isn't handled right, like i386-aix.
15652 Thu Apr 22 08:17:35 1993  Ian Lance Taylor  (ian@cygnus.com)
15654         * configure: Pass program-transform-name, not
15655         program_transform_name, to recursive configures.
15657 Thu Apr 22 02:58:21 1993  Ken Raeburn  (raeburn@cygnus.com)
15659         * Makefile.in (gas+binutils.tar.z): New rule for building snapshots
15660         of gas+ld+binutils.
15662 Mon Apr 19 17:41:30 1993  Per Bothner  (bothner@cygnus.com)
15664         * config.guess:  Recognize AIX3.2 as distinct from 3.1.
15666 Sat Apr 17 17:19:50 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15668         * configure.in: rename m88k-motorola-m88kbcs to m88k-motorola-sysv
15670 Tue Apr 13 16:52:16 1993  Brendan Kehoe  (brendan@lisa.cygnus.com)
15672         * Makefile.in (PRMS): Set back to all-prms.
15674 Sat Apr 10 12:04:07 1993  Ian Lance Taylor  (ian@cygnus.com)
15676         * test-build.mk: Pass -with-gnu-as for known MIPS native and MIPS
15677         targets, rather than for MIPS hosts.
15679 Fri Apr  9 13:51:06 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15681         * configure.in: add comment for --with-x default values
15683         * config.guess: handle Motorola Delta88 box for SVR3 and SVR4.
15685         * Makefile.in: add check-* targets for each of the directories in
15686         the tree.  Add a definition of RUNTEST that will use the one we
15687         just built, if it exists.  Pass this down via FLAGS_TO_PASS.
15689 Thu Apr  8 09:21:30 1993  Ian Lance Taylor  (ian@cygnus.com)
15691         * configure.in: Removed obsolete references to bfd_target and
15692         target_makefile_frag.
15694         * build-all.mk: Set assorted targets for Q2.
15695         * config.sub: Recognize z8k-sim and h8300-hms.
15696         * test-build.mk: Really don't pass host to configure.
15697         (HOLES): Added uname.
15699 Wed Apr  7 15:48:19 1993  Ian Lance Taylor  (ian@cygnus.com)
15701         * configure: Handle an empty program-prefix, program-suffix or
15702         program-transform-name correctly.
15704 Tue Apr  6 13:48:41 1993  Ian Lance Taylor  (ian@cygnus.com)
15706         * build-all.mk: -G 8 no longer required for MIPS targets.
15707         * test-build.mk: Don't pass host argument to configure; make it
15708         guess.
15710 Tue Apr  6 10:36:53 1993  Fred Fish  (fnf@cygnus.com)
15712         * Makefile.in (gdb.tar.Z):  Fix for building gzip'd distribution.
15713         * Makefile.in (COMPRESS):  New macro, like GZIP.
15715 Fri Apr  2 09:02:31 1993  Ian Lance Taylor  (ian@cygnus.com)
15717         * test-build.mk: Use -with-gnu-as for mips-sgi-irix4 as well.
15719         * build-all.mk: Set GCC to gcc -O -G 8 for MIPS targets, since gcc
15720         with gas currently defaults to -G 0.
15722 Thu Apr  1 08:25:42 1993  Ian Lance Taylor  (ian@cygnus.com)
15724         * Makefile.in (all-flex): flex depends on byacc.
15726         * build-all.mk: If host not specified, use config.guess.  Pass TAG
15727         to test-build.mk as RELEASE_TAG.
15728         * test-build.mk (configargs): New variable containing arguments to
15729         pass to configure.  Set to -with-gnu-as on mips-dec-ultrix.
15730         (FLAGS_TO_PASS): Pass down RELEASE_TAG.
15732         * config.guess: Use /bin/uname when checking -X argument on SCO,
15733         to avoid invoking GNU uname which doesn't understand -X.
15735         * test-build.mk: Don't use /usr/unsupported/bin/as on AIX.
15737         * configure.in: Build gas for mips-*-*.
15739 Wed Mar 31 21:20:58 1993  K. Richard Pixley  (rich@rtl.cygnus.com)
15741         * Makefile.in (all.normal): insert missing backslash.
15743 Wed Mar 31 12:31:56 1993  Ian Lance Taylor  (ian@cygnus.com)
15745         * build-all.mk: Bump -XNh value to 1500 to match gcc requirements.
15747         * Makefile.in: Complete overhaul to merge many almost identical
15748         targets.
15750 Tue Mar 30 20:17:01 1993  Ken Raeburn  (raeburn@cambridge.cygnus.com)
15752         * Makefile.in (setup-dirs-gdb): Renamed from setup-dirs.
15753         (gdb.tar.Z): Adjusted.
15755         * Makefile.in (setup-dirs, taz): New targets; should be general
15756         enough to adapt for gdb sometime.  Build only .z file.
15757         (gas.tar.z): New target.
15759 Tue Mar 30 10:03:09 1993  Ian Lance Taylor  (ian@cygnus.com)
15761         * build-all.mk: Use CC=cc -Xs on Solaris.
15763 Thu Mar 25 15:14:30 1993  Fred Fish  (fnf@cygnus.com)
15765         * Makefile.in:  Incorporate changes suggested by wilson@cygnus.com
15766         for handling BISON for FSF releases.
15768 Thu Mar 25 06:19:48 1993  Ken Raeburn  (raeburn@kr-pc.cygnus.com)
15770         * configure: Actually implement the change zoo just documented.
15772 Wed Mar 24 13:02:44 1993  david d `zoo' zuhn  (zoo at poseidon.cygnus.com)
15774         * configure: when using config.guess, only set target_alias when
15775         it's not already been set (ie, on the command line)
15777 Mon Mar 22 23:07:39 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15779         * Makefile.in: add installcheck target, set PRMS to install-prms
15781 Sun Mar 21 16:46:12 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15783         * configure: add support for package_makefile_fragment, handle the
15784         case where a directory has a configure.in file but no Makefile.in
15785         more gracefully (with an actual understandable error message, even);
15786         add support for --without (and add this to the usage message); also
15787         explicitly add a --host=${host_alias} to the command line when
15788         config.guess is used
15790 Sun Mar 21 12:11:58 1993  Jim Wilson  (wilson@sphagnum.cygnus.com)
15792         * configure: Must use both --host and --target in recursive calls.
15794 Thu Mar 18 12:31:35 1993  Ian Lance Taylor  (ian@cygnus.com)
15796         * Makefile.in: Change deja-gnu to dejagnu.
15798 Mon Mar 15 15:44:35 1993  Ian Lance Taylor  (ian@cygnus.com)
15800         * configure.in (h8300-*-*, h8500-*-*): Don't build libg++.
15802 Fri Mar 12 18:30:14 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15804         * configure.in: canonicalize all instances to *-*-solaris2*,
15805         also strip out a number of tools to not build for go32 host
15807 Wed Mar 10 12:08:27 1993  K. Richard Pixley  (rich@rtl.cygnus.com)
15809         * config.guess: add GPL.
15811         * Makefile.in, config.guess, config.sub, configure: bump
15812           copyrights to 93.
15814 Wed Mar 10 07:12:48 1993  Ian Lance Taylor  (ian@cygnus.com)
15816         * Makefile.in (do-info): Removed obsolete check for existence of
15817         localenv file.
15819         * Makefile.in (MAKEOVERRIDES): Define to be empty.
15821 Wed Mar 10 03:11:56 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15823         * Makefile.in: a couple of 'else true' for decstation,
15824         support for TclX
15826         * configure.in: configure tclX too; don't remove Tk on RS/6000 anymore
15828 Tue Mar  9 16:06:12 1993  K. Richard Pixley  (rich@cygnus.com)
15830         * Makefile.in (setup-dirs): change invocation of make to $(MAKE).
15832 Mon Mar  8 14:52:11 1993  Ken Raeburn  (raeburn@cambridge)
15834         * config.guess: Recognize i386-ibm-aix (PS/2).
15835         * configure.in: Use config/mh-aix386 file for it.
15837 Mon Mar  8 11:12:43 1993  Ian Lance Taylor  (ian@cygnus.com)
15839         * Makefile.in (GCC_FOR_TARGET): Eliminated definition; use
15840         CC_FOR_TARGET instead.
15841         (BASE_FLAGS_TO_PASS): Pass GCC_FOR_TARGET=$(CC_FOR_TARGET).
15843 Wed Mar  3 16:00:28 1993  Steve Chamberlain  (sac@ok.cygnus.com)
15845         * Makefile.in: Add sim to list of directories sent with gdb
15847 Wed Mar  3 11:42:39 1993  Ken Raeburn  (raeburn@cygnus.com)
15849         * configure.in: Put back mips-dec-bsd* case.
15851 Tue Mar  2 21:15:58 1993  Fred Fish  (fnf@cygnus.com)
15853         (Ultrix 2.2 support from Michael Rendell <michael@mercury.cs.mun.ca>)
15854         * configure.in (vax-*-ultrix2*):  Add Ultrix 2.2 triplet.
15855         * config.guess:  Change 'VAX*:ULTRIX:*:*' to 'VAX*:ULTRIX*:*:*'.
15857 Tue Mar  2 18:11:03 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15859         * configure.in: remove no-op mips-dec-bsd* in "case $target"
15861         * Makefile.in (dir.info): only run gen-info-dir if it exists,
15862         (install-info): install dir.info only if it exists,
15863         (all-expect, install-expect): pass along X11_FLAGS_TO_PASS
15865 Tue Mar  2 09:01:30 1993  Ken Raeburn  (raeburn@cygnus.com)
15867         * configure.in: For vms target, skip bfd, ld, binutils.  Do build
15868         gas for mips-dec-bsd.
15870 Tue Mar  2 08:35:24 1993  Ian Lance Taylor  (ian@cygnus.com)
15872         * configure (makesrcdir): If ${srcdir} is relative and not ".",
15873         and ${subdir} is not ".", set makesrcdir based on ${invsubdir}.
15875 Tue Feb 23 14:18:28 1993  Mike Werner  (mtw@poseidon.cygnus.com)
15877         * configure.in: Added "dejagnu" to hosttools list.
15879 Mon Feb 22 23:28:38 1993  Per Bothner  (bothner@rtl.cygnus.com)
15881         * config.sub, configure.in, config.guess:  Add support
15882         for Bosx, an AIX variant from Bull.
15883         Patches from F.Pierresteguy@frcl.bull.fr.
15885 Sun Feb 21 11:15:22 1993  Mike Werner  (mtw@poseidon.cygnus.com)
15887         * devo/dejagnu: Initial creation of devo/dejagnu.
15888         Migrated dejagnu testcases and support files for testing software
15889         tools to reside as subdirectories, currently called "testsuite",
15890         within the directory of the software tool.  Migrated all programs,
15891         support libraries, etc. beloging to dejagnu proper from
15892         devo/deja-gnu to devo/dejagnu.  These files were moved "as is"
15893         with no modifications.  The changes to these files which will
15894         allow them to configure, build, and execute properly will be made
15895         in a future update.
15897 Fri Feb 19 20:19:39 1993  Brendan Kehoe  (brendan@lisa.cygnus.com)
15899         * Makefile.in: Change send_pr to send-pr.
15900         * configure.in: Likewise.
15901         * send_pr: Renamed directory to send-pr.
15903 Fri Feb 19 19:00:13 1993  Per Bothner  (bothner@cygnus.com)
15905         * Makefile.in:  Add some extra semi-colons (needed if SHELL=bash).
15907 Fri Feb 19 00:59:33 1993  John Gilmore  (gnu@cygnus.com)
15909         * README:  Update for gdb-4.8 release.
15910         * Makefile.in (gdb.tar.Z):  Add texinfo/tex3patch.  Build
15911         gdb-xxx.tar.z (gzip'd) file also.
15913 Thu Feb 18 09:16:17 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15915         * Makefile.in: make all-diff depend on all-libiberty
15917 Tue Feb 16 16:06:31 1993  K. Richard Pixley  (rich@cygnus.com)
15919         * config.guess: add vax-ultrix in the spirit of mips-ultrix.
15921 Tue Feb 16 05:57:15 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15923         * configure.in, Makefile.in: add hello, tar, gzip, recode, indent
15925 Tue Feb 16 00:58:20 1993  John Gilmore  (gnu@cygnus.com)
15927         * Makefile.in (DEVO_SUPPORT):  Remove etc directory
15928         (ETC_SUPPORT):  Only add the files GDB wants from etc/.
15929         (gdb.tar.Z):  Use ETC_SUPPORT.  Use byacc when building the file.
15931 Thu Feb 11 20:14:28 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15933         * Makefile.in:  makeinfo binary is in a new location
15935 Tue Feb  9 12:42:27 1993  Ian Lance Taylor  (ian@cygnus.com)
15937         * config.sub: Accept -ecoff as an OS.
15939         * Makefile.in: Various changes to eliminate a level of make
15940         recursion and reduce the required command line length.
15941         (BASE_FLAGS_TO_PASS): New variable holding flags passed to all
15942         sub-makes.
15943         (EXTRA_HOST_FLAGS, EXTRA_TARGET_FLAGS, EXTRA_GCC_FLAGS): New
15944         variables holding settings for specific sub-makes.
15945         (FLAGS_TO_PASS, TARGET_FLAGS_TO_PASS, GCC_FLAGS_TO_PASS): Rewrote
15946         in terms of BASE_FLAGS_TO_PASS.
15947         (TARGET_LIBS): New variable listing directories which use
15948         TARGET_FLAGS_TO_PASS.
15949         (subdir_do): Eliminated.
15950         (do-*): New set of targets to replace subdir_do.
15951         (various): All targets which used subdir_do now depend on do-*.
15952         (local-clean): Renamed from do_clean.
15953         (local-distclean): New target, dependency of distclean and
15954         realclean.
15955         (install-info): Don't create directories.  Depend on dir.info
15956         rather than calling make recursively.
15957         (install-dir.info): Eliminated.
15958         (install-info-dirs): Create all info directories here.
15959         (dir.info): Depend upon do-install-info.
15961         * test-build.mk (HOLES): Added false.
15963 Sat Feb  6 14:05:09 1993  Per Bothner  (bothner@rtl.cygnus.com)
15965         * config.guess:  Recognize BSDI and BSDJ (Jolitz 386bsd).
15967 Thu Feb  4 20:49:18 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15969         * Makefile.in (info): remove dependency on all-texinfo.  The
15970         problem was really in texinfo/C, not at this level.
15972 Thu Feb  4 13:38:41 1993  Ian Lance Taylor  (ian@cygnus.com)
15974         * Makefile.in (info): Added dependency on all-texinfo (PR 2112).
15976 Thu Feb  4 01:50:53 1993  John Gilmore  (gnu@cygnus.com)
15978         * Makefile.in (make-gdb.tar.Z):  Change BISON to 'bison -y' for
15979         GDB releases.
15981 Wed Feb  3 17:22:16 1993  Ken Raeburn  (raeburn@cambridge.cygnus.com)
15983         * configure: Include srcdir in message about target of link not
15984         being found.  Don't convert `-' to `_' in `with' options being
15985         passed to subdirs.
15987 Tue Feb  2 18:57:59 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15989         * configure.in: add uudecode to host_tools
15991         * Makefile.in: added {all,install}-uudecode targets, added them to
15992         the appropriate lists
15994 Tue Feb  2 11:45:53 1993  Ian Lance Taylor  (ian@cygnus.com)
15996         * Makefile.in (all-gcc): Added dependency on all-gas.
15998         * configure.in (mips-*-*): Build ld and binutils.
16000 Mon Feb  1 12:35:41 1993  K. Richard Pixley  (rich@rtl.cygnus.com)
16002         * configure: check return code from mkdir, print error message and
16003           exit on failure.
16005 Sat Jan 30 16:40:28 1993  John Gilmore  (gnu@cygnus.com)
16007         * Makefile.in (make-gdb.tar.Z):  New location for texinfo.tex.
16009 Thu Jan 28 15:09:59 1993  Ian Lance Taylor  (ian@cygnus.com)
16011         * test-build.mk (HOLES): Added tar, cpio and uudecode.
16013 Wed Jan 27 16:50:32 1993  Jim Wilson  (wilson@sphagnum.cygnus.com)
16015         * config.sub (h8500):  Recognize this as a cpu type.
16017 Sat Jan 23 20:32:01 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16019         * configure: source directory missing is no longer a warning
16021         * configure.in: recognize irix[34]* instead of irix[34]
16023         * Makefile.in: define and pass down X11_LIB
16025 Sat Jan 23 13:49:40 1993  Per Bothner  (bothner@cygnus.com)
16027         * guess-systype: Renamed to ...
16028         * config.guess:  ... by popular request.
16029         * configure.in, Makefile.in:  Update accordingly.
16031 Thu Jan 21 12:20:55 1993  Per Bothner  (bothner@cygnus.com)
16033         * guess-systype:  Patches from John Eaton <jwe@che.utexas.edu>:
16034         + Add Convex, Cray/Unicos, and Encore/Multimax support.
16035         + Execute ./dummy instead of assuming . is in PATH.
16037 Tue Jan 19 17:18:06 1993  Per Bothner  (bothner@cygnus.com)
16039         * guess-systype:  New shell script.  Attempts to guess the
16040         canonical host name of the executing host.
16041         Only a few hosts are supported so far.
16042         * configure:  Call guess-systype if no host is specified.
16044 Tue Jan 19 08:26:07 1993  Ian Lance Taylor  (ian@cygnus.com)
16046         * Makefile.in (gcc-no-fixedincludes): Made to work with current
16047         gcc Makefile.
16050 Fri Jan 15 10:27:02 1993  Ian Lance Taylor  (ian@cygnus.com)
16052         * Makefile.in (GCC_FLAGS_TO_PASS): New variable.
16053         (all-gcc, install-gcc, subdir_do): Use it.
16055 Wed Jan 13 17:06:45 1993  Jim Wilson  (wilson@sphagnum.cygnus.com)
16057         * Makefile.in: Rename uninstalled gcc driver from gcc to xgcc.
16059 Wed Jan  6 20:29:16 1993  Mike Werner  (mtw@rtl.cygnus.com)
16061         * Makefile.in: Removed explicit setting of SUBDIRS. SUBDIRS is now
16062           set exclusively by configure, using configure.in .
16064 Wed Jan  6 13:44:11 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16066         * test-build.mk: set $PATH for all builds
16068         * Makefile.in: pass TARGET_FLAGS_TO_PASS for xiberty and libm
16070 Wed Jan  6 11:02:10 1993  Fred Fish  (fnf@cygnus.com)
16072         * Makefile.in (GCC_FOR_TARGET):  Supply a default that matches
16073         the one used in gcc/Makefile.in, so that a null expansion doesn't
16074         override the one needed to build gcc with a native cc.
16077 Tue Jan  5 07:55:12 1993  Ken Raeburn  (raeburn@cambridge.cygnus.com)
16079         * configure: Accept -with arguments.
16081 Sun Jan  3 15:15:09 1993  Steve Chamberlain  (sac@thepub.cygnus.com)
16083         * Makefile.in: added h8300sim
16085 Tue Dec 29 15:06:00 1992  Ian Lance Taylor  (ian@cygnus.com)
16087         * build-all.mk: If canonhost is i386-unknown-sco3.2v4, change it
16088         to i386-sco3.2v4.  Set TARGETS and CFLAGS for i386-sco3.2v4.
16089         (all-cygnus, native, build-cygnus): Make
16090         $(canonhost)-stamp-3stage-done, not $(host)....
16091         * test-build.mk (stamp-3stage-compared): Use tail +10c for
16092         i386-sco3.2v4.  Added else true to if command.
16094 Mon Dec 28 12:08:56 1992  Ken Raeburn  (raeburn@cygnus.com)
16096         * config.sub: (from FSF) Sequent uses a BSD-like OS.
16098 Mon Dec 28 08:32:06 1992  Minh Tran-Le  (mtranle@paris.intellicorp.com)
16100         * configure.in (i[34]86-*-isc*): added; uses mh-sysv.
16102 Thu Dec 24 17:26:24 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16104         * configure.in: don't remove binutils from Solaris builds
16106 Thu Dec 24 14:08:38 1992 david d`zoo' zuhn  (zoo@cygnus.com)
16108         * Makefile.in: get rid of earlier definitions for *clean,
16109         also handle the recursive info rule better
16111 Thu Dec 24 12:40:21 1992  Per Bothner  (bothner@rtl.cygnus.com)
16113         * Makefile.in (mostlyclean, distclean, realclean):  Fix to
16114         do more-or-less the right thing.
16116 Wed Dec 16 10:25:31 1992  Ian Lance Taylor  (ian@cygnus.com)
16118         * Makefile.in: Add lines defining CC and CXX, and use CXX rather
16119         than gcc in definitions of CXX_FOR_BUILD and CXX_FOR_TARGET.
16121 Tue Dec 15 00:34:32 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16123         * Makefile.in: change all $(host_cpu)-$(host_vendor)-$(host_os) to
16124         $(host_canonical).
16126         * configure.in: split the configdirs list into 4 categories (native
16127         v. cross, library v. tool) and handle the cross-only and native-
16128         only in more reasonable (and correct!) way.
16130 Mon Dec 14 17:04:22 1992  Stu Grossman  (grossman at cygnus.com)
16132         * configure.in (hppa*-*-*):  Don't remove bfd and gdb from
16133         configdirs anymore.
16135 Sun Dec 13 00:37:26 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16137         * Makefile.in: extensive cleanup::  removed all of the explicit
16138         clean-* targets, collapsed many wrappers around subdir_do into
16139         one, added additional targets to satisfy standards.texi, deleted
16140         some old targets, some changes for consistency
16142 Fri Dec 11 20:18:02 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16144         * configure.in: handle some programs as cross-only, and others as
16145         native only
16147         * test-build.mk: handle partial holes in a more generic manner
16149         * Makefile.in: m4 depends on libiberty
16151 Thu Dec  3 21:52:11 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16153         * configure.in: add m4, textutils, fileutils, sed, shellutils,
16154         time, wdiff, and find to configdirs
16156         * Makefile.in: all, clean, and install rules for the new programs
16157         added to configure.in
16159 Mon Nov 30 14:54:34 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16161         * configure.in: use mh-sun for all *-sun-* hosts
16163 Fri Nov 27 18:35:54 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16165         * Makefile.in: define flags for X11 include files and library file
16166         locations, pass them down to the programs that need this info
16168         * build-all.mk: added a 'native' target, to 3stage the native toolchain
16170 Sun Nov 22 18:59:13 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16172         * configure.in: start building libg++ for HP-UX targets
16174 Wed Nov 18 19:33:11 1992  John Gilmore  (gnu@cygnus.com)
16176         * README:  Update references to files moved into etc/.
16178 Sun Nov 15 09:36:08 1992  Fred Fish  (fnf@cygnus.com)
16180         * config.sub (i386sol2, i486sol2):  i[34]86-unknown-solaris2.
16181         * configure.in (i[34]86-*-solaris2*):  Use config/mh-sysv4.
16183 Thu Nov 12 08:50:42 1992  Ian Lance Taylor  (ian@cygnus.com)
16185         * configure: accept dash as well as underscore in long option
16186         names for FSF compatibility.
16188 Wed Nov 11 08:04:37 1992  Ian Lance Taylor  (ian@cygnus.com)
16190         * config.sub: added -sco3.2v4 support from FSF.
16192 Sun Nov  8 21:14:30 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16194         * configure.in: expand the section that adds or removes
16195         directories from the list of programs to build, to handle native
16196         vs. cross in addition to host v. native
16198 Sat Nov  7 18:52:27 1992  Per Bothner  (bothner@rtl.cygnus.com)
16200         * Makefile.in:  Replace C++ in macro names with CXX.
16201         This is less likely to break ...
16203 Sat Nov  7 15:16:58 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16205         * test-build.mk: add -w to GNU_MAKE
16207 Fri Nov  6 23:10:37 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16209         * config.sub: remove 'sparc'-->'sparc-sun' default transformation,
16210         add 'sparc' to list of recognized cpus.  This needed to make
16211         'sparc-aout' expand to 'sparc-unknown-aout' instead of 'sparc-sun-aout'.
16212         Delete some redundant ose68 variants.  Recognize -wrs as an os,
16213         then changes that into $CPU-wrs-vxworks.
16215         * configure.in: remove most references to gdbtest, regularize
16216         target based program removal
16218         * test-build.mk: import from p3 tree (many fixes and changes)
16220 Fri Nov  6 20:59:00 1992  david d `zoo' zuhn  (zoo@cygnus.com)
16222         * Makefile.in: added rules to handle tcl, tk, and expect
16224         * configure.in: handle those directories if they exist
16226 Thu Nov  5 14:35:41 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16228         * config.sub: removed bogus hppabsd and hppahpux names, since
16229         "hppa" is not a valid cpu (hppa1.1 or hppa1.0 are, though)
16231 Thu Oct 29 00:12:41 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16233         * Makefile.in: all-gcc now depends on all-binutils.  all-libg++
16234         depends upon all-xiberty
16236         * Makefile.in: changes from p3, including:
16238         Thu Oct  8 15:00:17 1992  Ian Lance Taylor  (ian@cygnus.com)
16240         * Makefile.in (XTRAFLAGS): include newlib directories if
16241         newlib/Makefile exists, rather than if host != target.
16243         Fri Sep 25 13:41:52 1992  Ian Lance Taylor  (ian@cygnus.com)
16245         * Makefile.in: added -nostdinc to XTRAFLAGS if we are using gcc
16246         from the same source tree and not building a cross-compiler.  This
16247         matters for the libg++ configuration if reconfiguring a tree that
16248         has already been installed.
16250         Thu Sep 10 10:35:51 1992  Ian Lance Taylor  (ian@cygnus.com)
16252         * Makefile.in: added -I for newlib/targ-include to XTRAFLAGS, to
16253         pick up the machine and system specific header files.
16255         * Makefile.in: added AS_FOR_TARGET, passed down in
16256         TARGET_FLAGS_TO_PASS.  Added CC_FOR_BUILD, which is intended to be
16257         the C compiler to use to create programs which are run in the
16258         build environment, set it to default to $(CC), and passed it down
16259         in FLAGS_TO_PASS and TARGET_FLAGS_TO_PASS.
16261         Mon Sep  7 22:34:42 1992  Ian Lance Taylor  (ian@cirdan.cygnus.com)
16263         * Makefile.in: add $(host) = $(target) tests back to *_FOR_TARGET.
16264         We need them for unusual native builds, like systems without
16265         ranlib.
16267         * configure: also define $(host_canonical) and
16268         $(target_canonical), which are the full, canonical names for the
16269         given host and target
16271 Sun Nov  1 16:38:17 1992  Per Bothner  (bothner@cygnus.com)
16273         * Makefile.in:  Added separate definitions for C++.
16275 Fri Oct 30 11:37:52 1992  Fred Fish  (fnf@cygnus.com)
16277         * configure.in (configdirs):  Add deja-gnu.
16279 Fri Oct 23 00:39:18 1992  John Gilmore  (gnu@cygnus.com)
16281         * README:  Update for configure.texi and gdb-4.7 release.
16283 Wed Oct 21 21:54:27 1992  John Gilmore  (gnu@cygnus.com)
16285         * Makefile.in:  Move "all" target to top of file.
16286         Previously, first target was ".PHONY" which caused BSD4.4 make
16287         to build .PHONY when make was run without arguments.
16289 Mon Oct 19 01:17:54 1992  John Gilmore  (gnu@cygnus.com)
16291         * Makefile.in:  Add COPYING.LIB to GDB releases, now that there's
16292         Library-copylefted code in libiberty.
16294 Tue Oct 13 01:22:32 1992  John Gilmore  (gnu@cygnus.com)
16296         * config.sub:  Replace m68kmote with plain old m68k.
16298 Fri Oct  9 03:14:24 1992  John Gilmore  (gnu@cygnus.com)
16300         * Makefile.in:  Remove space from blank line, avoid Make complaints.
16302 Thu Oct  8 18:41:45 1992  Ken Raeburn  (raeburn@cygnus.com)
16304         * config.sub: Complain if no argument is given.  Added support for
16305         386bsd as OS and target alias.
16307 Thu Oct  8 15:07:22 1992  Ian Lance Taylor  (ian@cygnus.com)
16309         * Makefile.in (XTRAFLAGS): include newlib directories if
16310         newlib/Makefile exists, rather than if host != target.
16312 Mon Oct  5 03:00:09 1992  Mark Eichin  (eichin at tweedledumber.cygnus.com)
16314         * config.sub: recognize sparclite-wrs-vxworks.
16316         * Makefile.in (install-xiberty): added *-xiberty make rules (from
16317         p3.) Added clean-xiberty to clean.
16319 Thu Oct  1 17:59:19 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16321         * configure.in: use *-*-* instead of nested cases for host and target
16323 Tue Sep 29 14:11:18 1992  Ian Lance Taylor  (ian@cygnus.com)
16325         * Makefile.in: added -nostdinc to XTRAFLAGS if we are using gcc
16326         from the same source tree and not building a cross-compiler.  This
16327         matters for the libg++ configuration if reconfiguring a tree that
16328         has already been installed.
16330 Sep 20 08:53:10 1992  Fred Fish  (fnf@cygnus.com)
16332         * config.sub (i486v/i486v4):  Merge in from FSF version.
16334 Fri Sep 18 00:32:00 1992  Mark Eichin  (eichin@cygnus.com)
16336         * configure: only set PWD if it is already set.
16338 Thu Sep 17 23:05:53 1992  Mark Eichin  (eichin@cygnus.com)
16340         * configure: just set PWD=`pwd` at the top, since Ultrix sh
16341         doesn't have unset and all success paths (and most error paths)
16342         out set it anyway. (Note: should change all uses of ${PWD=`pwd`}
16343         to just ${PWD} to avoid confusion.)
16345 Tue Sep 15 16:00:54 1992  Ian Lance Taylor  (ian@cygnus.com)
16347         * configure: always set $(tooldir) to $(libdir)/$(target_alias),
16348         even for a native compilation.
16350 Tue Sep 15 02:22:56 1992  John Gilmore  (gnu@cygnus.com)
16352         Changes to make the gdb.tar.Z rule work better.
16354         * Makefile.in (GDB_SUPPORT_DIRS):  Add opcodes.
16355         (DEVO_SUPPORT):  Add configure.texi.
16356         (bfd-ilrt.tar.Z):  Remove ancient rule.
16358 Thu Sep 10 10:43:19 1992  Ian Lance Taylor  (ian@cygnus.com)
16360         * Makefile.in: added -I for newlib/targ-include to XTRAFLAGS, to
16361         pick up the machine and system specific header files.
16363         * configure.in, config.sub: added new target m68010-adobe-scout,
16364         with alias of adobe68k.  Changed configure.in to check for
16365         -scout before -sco* to avoid a false match.
16367         * Makefile.in: added AS_FOR_TARGET, passed down in
16368         TARGET_FLAGS_TO_PASS.  Added CC_FOR_BUILD, which is intended to be
16369         the C compiler to use to create programs which are run in the
16370         build environment, set it to default to $(CC), and passed it down
16371         in FLAGS_TO_PASS and TARGET_FLAGS_TO_PASS.
16373 Wed Sep  9 12:21:42 1992  Ian Lance Taylor  (ian@cygnus.com)
16375         * Makefile.in: added TARGET_FLAGS_TO_PASS, CC_FOR_TARGET,
16376         AR_FOR_TARGET, RANLIB_FOR_TARGET, NM_FOR_TARGET.  Pass
16377         TARGET_FLAGS_TO_PASS, which defines CC, AR, RANLIB and NM as the
16378         FOR_TARGET variants, to newlib and libg++.
16380 Tue Sep  8 17:28:30 1992  Ken Raeburn  (raeburn@cambridge.cygnus.com)
16382         * Makefile.in (all-gas, all-gdb): Require all-opcodes to be built
16383         first.
16385 Wed Sep  2 02:50:05 1992  John Gilmore  (gnu@cygnus.com)
16387         * config.sub:  Accept `elf' as an environment.
16389 Tue Sep  1 15:48:30 1992  Steve Chamberlain  (sac@thepub.cygnus.com)
16391         * Makefile.in (all-opcodes):  cd into the right directory
16393 Sun Aug 30 21:12:11 1992  Ian Lance Taylor  (ian@cygnus.com)
16395         * configure: added -program_transform_name option, used as
16396         argument to sed when installing programs.
16397         configure.texi: added documentation for -program_prefix,
16398         -program_suffix and -program_transform_name.
16400 Thu Aug 27 21:59:44 1992  John Gilmore  (gnu@cygnus.com)
16402         * config.sub:  Accept i486 where i386 ok.
16404 Thu Aug 27 13:04:42 1992  Brendan Kehoe  (brendan@rtl.cygnus.com)
16406         * config.sub: accept we32k
16408 Mon Aug 24 14:05:14 1992  Ian Lance Taylor  (ian@cygnus.com)
16410         * config.sub, configure.in: accept OSE68000 and OSE68k.
16412         * Makefile.in: don't create all directories for ``make install'';
16413         let the subdirectories create the ones they need.
16415 Tue Aug 11 23:13:17 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16417         * COPYING: new file, GPL v2
16419 Tue Aug  4 01:12:43 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16421         * Makefile.in: use the new gen-info-dir, which needs a template
16422         argument (which also lives in texinfo)
16424         * configure.texi, standards.texi: fix INFO-DIR-ENTRY
16426 Mon Aug  3 00:34:17 1992  Fred Fish  (fnf@cygnus.com)
16428         * config.sub (ncr3000):  Change i386 to i486.
16430 Thu Jul 23 00:12:17 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16432         * Makefile.in: add install-rcs, install-grep to
16433         install-no-fixedincludes, removed install-bison and install-libgcc
16435 Tue Jul 21 01:01:50 1992  david d `zoo' zuhn (zoo@cygnus.com)
16437         * configure.in: grab the HPUX makefile fragment if on HPUX
16439 Mon Jul 20 11:02:09 1992  D. V. Henkel-Wallace  (gumby@cygnus.com)
16441         * Makefile.in: eradicate bison spoor (ditto libgcc).
16442          configure.in: recognise m68{k,000}-ericsson-OSE.
16443          es1800 is alias for m68k-ericsson-OSE
16445 Sun Jul 19 17:49:02 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16447         * configure.in: rearrange the parts that remove programs from
16448         configdirs, based now on HOST==TARGET or by canonical triple.
16450 Fri Jul 17 22:52:49 1992  K. Richard Pixley  (rich@rtl.cygnus.com)
16452         * test-build.mk: recurse explicitly with -f test-build.mk when
16453           appropriate.  predicate stage3 and comparison on the existence
16454           of gcc.  That is, if gcc isn't around, we aren't three-staging.
16455           On very clean, also remove ...stamp-co.  Build in-place before
16456           doing other builds.
16458 Thu Jul 16 18:33:09 1992  Steve Chamberlain  (sac@thepub.cygnus.com)
16460         * Makefile.in, configure.in: add tgas
16462 Thu Jul 16 16:05:28 1992  K. Richard Pixley  (rich@rtl.cygnus.com)
16464         * Makefile.in: a number of changes merged in from progressive.
16466         * configure.in: add libm.
16468         * .cvsignore: ignore some stuff that comes from test-build.mk.
16470 Tue Jul  7 00:24:52 1992  Fred Fish  (fnf@cygnus.com)
16472         * config.sub:  Add es1800 (m68k-ericsson-es1800).
16474 Tue Jun 30 20:24:41 1992  D. V. Henkel-Wallace  (gumby@cygnus.com)
16476         * configure: Add program_suffix (parallel to program_prefix)
16477         * Makefile.in: adjust directory-creating script for losing decstation
16479 Mon Jun 22 23:43:48 1992  Per Bothner  (bothner@cygnus.com)
16481         * configure:  Minor $subdir-related fixes.
16483 Mon Jun 22 18:30:26 1992  Steve Chamberlain  (sac@thepub.cygnus.com)
16485         * configure: fix various problems with propogating
16486         makefile_target_frag in subdirs.
16487         * configure.in: config libgcc if its there
16489 Fri Jun 19 15:19:40 1992  Stu Grossman  (grossman at cygnus.com)
16491         * config.sub:  HPPA merge.
16493 Sun Jun 14 10:29:19 1992  John Gilmore  (gnu at cygnus.com)
16495         * Makefile.in:  Replace all-bison with all-byacc in all
16496         dependency lines for other tools (which now use byacc).
16498 Fri Jun 12 22:21:57 1992  John Gilmore  (gnu at cygnus.com)
16500         * config.sub:  Add sun4sol2 => sparc-sun-solaris2.
16502 Thu Jun  4 12:07:32 1992  Mark Eichin  (eichin@cygnus.com)
16504         * Makefile.in: make gprof rules similar to byacc rules (instead of
16505         vestigal $(unsubdir) that didn't work...)
16507 Thu Jun  4 00:37:05 1992  Per Bothner  (bothner@rtl.cygnus.com)
16509         * config.sub:  Add support for Linux.
16510         * Makefile.in:  Use $(FLAGS_TO_PASS) more consistently
16511         (at least for libg++).
16513 Tue Jun 02 20:03:00 1992  david d `zoo' zuhn (zoo@cygnus.com)
16515         * configure.texi: fix doc for the -nfp option to configure
16517 Tue Jun  2 17:20:52 1992  Michael Tiemann  (tiemann@cygnus.com)
16519         * Makefile.in (all-binutils): ar needs flex, so depend on all-flex.
16521 Sun May 31 15:04:08 1992  Mark Eichin  (eichin at cygnus.com)
16523         * config.sub: changed [^-]+ to [^-][^-]* so that it works under
16524         Sun sed. (BSD 4.3 sed doesn't handle [^-]+ either.)
16525         * configure.in: added solaris* host_makefile_frag hook.
16527 Sun May 31 01:10:34 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16529         * config.sub: changed recognition of m68000 so that various
16530         m68k types can be specified via m680[01234]0
16532 Sat May 30 21:01:06 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16534         * config.sub (basic_machine): fix sed so that '-foo' isn't
16535         completely substituted out while .+'-foo' loses the '-foo'
16537 Wed May 27 23:18:52 1992  Michael Tiemann  (tiemann@rtl.cygnus.com)
16539         * config.sub ($os): Add -aout.
16541 Fri May 22 14:00:02 1992  Per Bothner  (bothner@cygnus.com)
16543         * configure:  If host_makefile_frag is absolute, don't
16544         prefix ${invsubdir} (relevant to libg++ auto-configure).
16546 Thu May 21 18:00:09 1992  Michael Tiemann  (tiemann@rtl.cygnus.com)
16548         * Makefile.in (tooldir): Define it.
16549         (all-ld): Depend on all-flex.
16551 Sun May 10 21:45:59 1992  Per Bothner  (bothner@rtl.cygnus.com)
16553         * Makefile.in (check):  Fix libg++ special case.
16555 Fri May  8 08:31:41 1992  K. Richard Pixley  (rich@cygnus.com)
16557         * configure: do not bury `pwd` into config.status, thus do fewer
16558           pwd's.
16560         * configure: print the "Building in" message only when building in
16561           other than "." AND verbose.
16563         * configure: remove -s, rework -v to better accomodate guested
16564           configures.
16566         * standards.texi: updated to 3 may, fixed librid <-> libdir typo.
16568 Fri May  1 18:00:50 1992  K. Richard Pixley  (rich@cygnus.com)
16570         * Makefile.in: macroize flags passed on recursion.  remove
16571           fileutils.
16573 Thu Apr 30 08:56:20 1992  K. Richard Pixley  (rich@cygnus.com)
16575         * configure: get makesrcdir right for subdirs deeper than 1.
16577         * Makefile.in: pass INSTALL, INSTALL_DATA, INSTALL_PROGRAM on
16578           install.
16580 Fri Apr 24 15:51:51 1992  K. Richard Pixley  (rich@cygnus.com)
16582         * Makefile.in: don't print subdir_do or recursion lines.
16584 Fri Apr 24 15:22:04 1992  K. Richard Pixley  (rich@cygnus.com)
16586         * standards.texi: added menu item.
16588         * Makefile.in: build and install standards.info.
16590         * standards.texi: new file.
16592 Wed Apr 22 18:06:55 1992  K. Richard Pixley  (rich@rtl.cygnus.com)
16594         * configure: test for and move config.status pieces from
16595           ${subdir}/.
16597 Wed Apr 22 14:38:34 1992  Fred Fish  (fnf@cygnus.com)
16599         * configure:  Test for existance of files before trying to mv
16600         them, to avoid numerous non-existance messages.
16602 Tue Apr 21 12:31:33 1992  K. Richard Pixley  (rich@cygnus.com)
16604         * configure: correct final line of config.status.
16606         * configure: patch from eggert.  Avoids a protection problem if
16607           the original Makefile.in is read only.
16609         * configure: use move-if-change from gcc to create config.status.
16610           Some makefiles depend on config.status to tell if a directory
16611           has been reconfigured for a different host.  This change
16612           prevents those directories from remaking everything in the case
16613           where the reconfig was only intended to rebuild a Makefile.
16615         * configure: test for config.sub with "config.sub sun4" rather
16616           than "config.sub ${host_alias}".  Otherwise we can't tell a bad
16617           host alias from a missing config.sub.
16619 Mon Apr 20 18:16:36 1992  K. Richard Pixley  (rich@rtl.cygnus.com)
16621         * Makefile.in: explicitly pass CFLAGS on recursion. no longer pass
16622           MINUS_G (this can be done with CFLAGS).  Default CFLAGS to -g.
16624 Fri Apr 17 18:27:51 1992  Per Bothner  (bothner@cygnus.com)
16626         * configure: mkdir ${subdir} as needed.
16628 Wed Apr 15 17:37:22 1992  K. Richard Pixley  (rich@cygnus.com)
16630         * Makefile.in,configure.in: added autoconf.
16632 Wed Apr 15 17:27:34 1992  K. Richard Pixley  (rich@rtl.cygnus.com)
16634         * Makefile.in: no longer pass against on recursion.
16636         * Makefile.in: added .NOEXPORT: so that stray makefile_frag
16637           definitions are not inherited.
16639         * configure: correct makesrcdir when subdir is .
16641 Tue Apr 14 11:56:09 1992  Per Bothner  (bothner@cygnus.com)
16643         * configure:  Add support for 'subdirs' variable, which is
16644         like 'configdirs', except that configure doesn't re-invoke
16645         itself for subdirs, it just creates a Makefile for each subdir.
16646         * configure.texi:  Document subdirs.
16648 Mon Apr 13 18:50:16 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16650         * configure.in: added flex to configdirs
16652 Mon Apr 13 18:43:55 1992  K. Richard Pixley  (rich@cygnus.com)
16654         * Makefile.in: remove clean-stamps from clean.
16656 Sat Apr 11 03:52:03 1992  John Gilmore  (gnu at cygnus.com)
16658         * configure.in:  Add gdbtest to configdirs.
16660 Fri Apr 10 23:11:49 1992  Fred Fish  (fnf@cygnus.com)
16662         * Makefile.in (MINUS_G):  Add macro, default to -g, pass on
16663         to recursive makes.
16664         * configure.in:  Recognize new ncr3000 config.
16666 Wed Apr  8 23:08:12 1992  K. Richard Pixley  (rich@cygnus.com)
16668         * Makefile.in, configure.in: removed references to gdbm.
16670 Tue Apr  7 16:48:20 1992  Per Bothner  (bothner@cygnus.com)
16672         * config.sub:  Don't canonicalize os value
16673         newsos* to bsd (readline needs to check for newsos).
16674         (This fix was earlier made Jan 31, but got re-broken.)
16676 Mon Apr  6 14:34:08 1992  Stu Grossman  (grossman at cygnus.com)
16678         * configure.in:  sco is an os, not a vendor!
16680         * configure:  Quote $( better.  Keep various shells happy.
16682 Tue Mar 31 16:32:57 1992  K. Richard Pixley  (rich@cygnus.com)
16684         * Makefile.in: eliminate stamp-files.
16686 Mon Mar 30 22:20:23 1992  K. Richard Pixley  (rich@cygnus.com)
16688         * Makefile.in: add send_pr.  remove "force" from .stmp-gprof rule.
16689           Supress echoing of all the "if [ -d ... $(MAKE)" lines.
16691 Wed Mar 25 15:20:04 1992  Stu Grossman  (grossman@cygnus.com)
16693         * config.sub:  fix iris/iris3.
16695 Wed Mar 25 10:34:19 1992  K. Richard Pixley  (rich@cygnus.com)
16697         * configure: re-add -rm.
16699 Tue Mar 24 23:50:16 1992  K. Richard Pixley  (rich@cygnus.com)
16701         * Maskefile.in: add .stmp-rcs to all.
16703         * configure.in: remove gas from rs6000 build, use aix host fragment.
16705 Mon Mar 23 19:43:35 1992  K. Richard Pixley  (rich@cygnus.com)
16707         * configure: pass down site_option during recursion.
16709 Thu Mar 19 16:49:36 1992  Stu Grossman  (grossman at cygnus.com)
16711         * Makefile.in (all.cross):  Add .stmp-bfd .stmp-readline.
16713 Wed Mar 18 15:29:33 1992  Mike Stump  (mrs@cygnus.com)
16715         * configure: Change exec_prefix so that it really defaults to prefix.
16717 Sat Mar 14 17:20:38 1992  Fred Fish  (fnf@cygnus.com)
16719         * Makefile.in, configure.in:  Add support for mmalloc library.
16721 Fri Mar 13 18:44:18 1992  K. Richard Pixley  (rich@cygnus.com)
16723         * Makefile.in: add stmp dependencies for a few more things.
16725 Thu Mar 12 04:56:24 1992  K. Richard Pixley  (rich@cygnus.com)
16727         * configure: adjusted error message on objdir/srcdir configure
16728           collision, per john's suggestion.
16730         * Makefile.in: add libiberty stmp to all and all.cross.
16732 Wed Mar 11 02:07:52 1992  K. Richard Pixley  (rich@cygnus.com)
16734         * Makefile.in: remove force dependencies, add grep to all.
16736 Tue Mar 10 21:49:18 1992  K. Richard Pixley  (rich@mars.cygnus.com)
16738         * Makefile.in: drop flex.  make stamp files work.
16740         * configure: added test for conflicting configuration in srcdir,
16741           remove trailing slashes from srcdir.  Otherwise emacs gdb mode
16742           gets cranky.  use relative paths for configure and srcdir
16743           whenever possible.  Send some error messages to stderr that were
16744           going to stdout.
16746 Tue Mar 10 18:01:55 1992  Per Bothner  (bothner@cygnus.com)
16748         * Makefile.in:  Fix libg++ rule to check for gcc directory
16749         before using gcc/gcc.  Also pass XTRAFLAGS.
16751 Thu Mar  5 21:45:07 1992  K. Richard Pixley  (rich@sendai)
16753         * Makefile.in: added stmp-files so that directories aren't polled
16754           when they are already built.
16756         * configure.texi: fixed a node pointer problem.
16758 Thu Mar  5 12:05:58 1992  Stu Grossman  (grossman at cygnus.com)
16760         * config.sub configure.in gdb/configure.in
16761         gdb/mips-tdep.c gdb/mipsread.c gdb/procfs.c gdb/signame.h
16762         gdb/tm-irix3.h gdb/tm-mips.h gdb/xm-irix4.h gdb/config/mt-irix3
16763         gdb/config/mh-irix4 texinfo/configure.in:  Port to SGI Irix-4.x.
16765 Wed Mar  4 02:57:46 1992  K. Richard Pixley  (rich@rtl.cygnus.com)
16767         * configure: -recurring becomes -silent.  corrected help message
16768           for -site= option.
16770         * Makefile.in: mkdir $(exec_prefix) and $(tooldir).
16772 Tue Mar  3 14:51:21 1992  K. Richard Pixley  (rich@rtl.cygnus.com)
16774         * configure: when building Makefile for crosses, replace
16775           tooldir and program_prefix.  default srcdir from location of
16776           config.sub.  remove "for host in hosts" and "for target in
16777           targets" loops.
16779 Wed Feb 26 19:48:25 1992  K. Richard Pixley  (rich@rtl.cygnus.com)
16781         * Makefile.in: Do not pass bindir or mandir to cvs.
16783 Wed Feb 26 18:04:40 1992  K. Richard Pixley  (rich@cygnus.com)
16785         * Makefile.in, configure.in: removed traces of namesubdir,
16786           -subdirs, $(subdir), $(unsubdir), some rcs triggers.  Forced
16787           copyrights to '92, changed some from Cygnus to FSF.
16789         * configure.texi: remove most references to multiple hosts,
16790           multiple targets, subdirs, etc.
16792         * configure.man: removed rcsid. reference config.sub not
16793           config.subr.
16795         * Makefile.in: mkdir $(infodir) on install-info.
16797 Wed Feb 19 15:41:13 1992  John Gilmore  (gnu at cygnus.com)
16799         * configure.texi:  Explain better about .gdbinit and about
16800         the environment that configure.in sections run in.
16802 Fri Feb  7 07:55:00 1992  John Gilmore  (gnu at cygnus.com)
16804         * configure.in:  Ultrix is only a decstation if it's a MIPS.
16806 Fri Jan 31 21:54:51 1992  John Gilmore  (gnu at cygnus.com)
16808         * README:  DOC.configure => cfg-paper.texi.
16810 Fri Jan 31 21:48:18 1992  Stu Grossman  (grossman at cygnus.com)
16812         * config.sub (near case $os):  Don't convert newsos* to bsd!
16814 Fri Jan 31 02:27:32 1992  John Gilmore  (gnu at cygnus.com)
16816         * Makefile.in:  Reinstall change from gdb-4.3 that reduces
16817         the number of copies of COPYING that go into the GDB tar file.
16819 Thu Jan 30 16:17:30 1992  Stu Grossman  (grossman at cygnus.com)
16821         * bfd/configure.in, gdb/config/mh-i386sco,
16822         gdb/config/mt-i386v32, gdb/configure.in, readline/configure.in:
16823         Fix SCO configuration stuff.
16825 Tue Jan 28 23:51:07 1992  Per Bothner  (bothner at cygnus.com)
16827         * Makefile.in:  For libg++, make sure the -I pointing
16828         to the gcc directory goes *after* all the libg++-local -I flags.
16829         Also, move just-gcc dependency from just-libg++ to all-libg++.
16831 Tue Jan 28 12:56:24 1992  Stu Grossman  (grossman at cygnus.com)
16833         * configure:  Change -x to -f to keep Ultrix /bin/test happy.
16835 Sat Jan 18 17:45:11 1992  Stu Grossman  (grossman at cygnus.com)
16837         * Makefile.in (make-gdb.tar.Z):  Remove texinfo targets.
16839 Sat Jan 18 17:03:21 1992  Fred Fish  (fnf at cygnus.com)
16841         * config.sub:  Add stratus configuration frags.  Also
16842         submitted to FSF.
16844 Sat Jan 18 15:35:29 1992  Stu Grossman  (grossman at cygnus.com)
16846         * Makefile.in (DEV_SUPPORT):  add configure.man.
16848         * config.sub(Decode manufacturer-specific):  add -none*.
16850 Fri Jan 17 17:58:05 1992  Stu Grossman  (grossman at cygnus.com)
16852         * Makefile.in:  remove form feeds to make Sun's make happy.
16853         (DEVO_SUPPORT):  DOC.configure => cfg-paper.texi.
16855 Sat Jan  4 16:11:44 1992  John Gilmore  (gnu at cygnus.com)
16857         * Makefile.in (AR_FLAGS):  Make quieter.
16859 Thu Jan  2 22:57:12 1992  John Gilmore  (gnu at cygnus.com)
16861         * configure.in:  Add libg++.
16862         * configure:  When verbose, don't output the command line at each
16863         level; it will be unremarkably the same as the previous version,
16864         which will be the same as what the user typed.
16866 Fri Dec 27 16:26:47 1991  K. Richard Pixley  (rich at cygnus.com)
16868         * configure.in, Makefile.in: fix clean-info, add flex.  add
16869           fileutils.
16871         * configure: be less sensitive to spaces in Makefile.in.  Do not
16872           look for sources in "..".  Doing so breaks subdirectories that
16873           might have their own configure.  If a subdir has it's own
16874           configure script, use it.
16876 Thu Dec 26 16:30:26 1991  K. Richard Pixley  (rich at cygnus.com)
16878         * cfg-paper.texi: some changes suggested by rms.
16880 Thu Dec 26 10:13:36 1991  Fred Fish  (fnf at cygnus.com)
16882         * config.sub:  Merge in some small additions from the FSF version,
16883         taken from the gcc distribution, to bring the Cygnus and FSF
16884         versions into closer sync.
16886 Fri Dec 20 11:34:18 1991  Fred Fish  (fnf at cygnus.com)
16888         * configure.in:  Changed svr4 references to sysv4.
16890 Thu Dec 19 15:54:29 1991  K. Richard Pixley  (rich at cygnus.com)
16892         * configure: added -V for version number option.
16894 Wed Dec 18 15:39:34 1991  K. Richard Pixley  (rich at cygnus.com)
16896         * DOC.configure, cfg-paper.texi: revised, updated, and texinfo'd.
16897           renamed from DOC.configure to cfg-paper.texi.
16899 Mon Dec 16 23:05:19 1991  K. Richard Pixley  (rich at rtl.cygnus.com)
16901         * configure, config.subr, config.sub: config.subr is now
16902           config.sub again.
16904 Fri Dec 13 01:17:06 1991  K. Richard Pixley  (rich at cygnus.com)
16906         * configure.texi: new file, in progress.
16908         * Makefile.in: build info file and install the man page for
16909           configure.
16911         * configure.man: new file, first cut.
16913         * configure: find config.subr again now that configuration "none"
16914           has gone.  removed all traces of the -ansi option.  removed all
16915           traces of the -languages option.
16917         * config.subr: resync from rms.
16919 1991-12-11  K. Richard Pixley  (rich at rtl.cygnus.com)
16921         * configure, config.sub, config.subr: merge config.sub into
16922           config.subr, call the result config.subr, remove config.sub, use
16923           config.subr.
16925         * Makefile.in: revised install for dir.info.
16927 1991-12-10  K. Richard Pixley  (rich at rtl.cygnus.com)
16929         * configure.in: add decstation host makefile frag.
16931         * Makefile.in: BISON now bison -y again.  also install-gcc on
16932           install.  clean-gdbm on clean.  infodir belongs in datadir.
16933           Make directories for info install.  Build dir.info here then
16934           install it.
16936 1991-12-09  K. Richard Pixley  (rich at rtl.cygnus.com)
16938         * Makefile.in: fix for bad directory tests.
16940 1991-12-07  K. Richard Pixley  (rich at rtl.cygnus.com)
16942         * configure: \{1,2\} appears to be a sysv'ism.  Use a different
16943           regexp.  -srcdir relative was being handled incorrectly.
16945         * Makefile.in: unwrapped some for loops so that parallel makes
16946           work again and so one can focus one's attention on a particular
16947           package.
16949 1991-12-06  K. Richard Pixley  (rich at rtl.cygnus.com)
16951         * configure: added PWD as a stand in for `pwd` (for speed). use
16952           elif wherever possible.  make -srcdir work without -objdir.
16953           -objdir= commented out.
16955 1991-12-05  K. Richard Pixley  (rich at rtl.cygnus.com)
16957         * configure: +options become --options.  -subdirs commented out.
16958           added -host, -datadir.  Renamed -destdir to -prefix.  Comment in
16959           Makefile now at top of generated Makefile.  Removed cvs log
16960           entries.  added -srcdir.  create .gdbinit only if there is one
16961           in ${srcdir}.
16963         * Makefile.in: idestdir and ddestdir go away.  Added copyrights
16964           and shift gpl to v2.  Added ChangeLog if it didn't exist. docdir
16965           and mandir now keyed off datadir by default.
16967 1991-11-22  K. Richard Pixley  (rich at rtl.cygnus.com)
16969         * Freshly created ChangeLog.
16972 Local Variables:
16973 mode: change-log
16974 left-margin: 8
16975 fill-column: 76
16976 version-control: never
16977 End: