Automatic date update in version.in
[binutils-gdb.git] / ChangeLog
blob73c3a00688160222e28f9f2d5f5ae2867efbc96c
1 2022-10-10  Nick Clifton  <nickc@redhat.com>
3         * src-release.sh: Add "-r <date>" option to create reproducible
4         tarballs based upon a fixed timestamp of <date>.
5         * binutils/README-how-to-make-a-release: Add a line showing how to
6         use -r <date> when creating a binutils release.
8 2022-10-04  Nick Clifton  <nickc@redhat.com>
10         * README-maintainer-mode: Add a minimum version of dejagnu
11         requirement.
13 2022-09-08  Nick Clifton  <nickc@redhat.com>
15         * README-maintainer-mode: Update minimum version  of gettext
16         required.
18 2022-07-08  Nick Clifton  <nickc@redhat.com>
20         * 2.39 branch created.
22 2022-07-04  Nick Clifton  <nickc@redhat.com>
24         * libiberty: Synchronize with GCC.  Bring in:
25         2022-07-01  Nick Clifton  <nickc@redhat.com>
27         PR demangler/105039
28         * rust-demangle.c (demangle_const): Add recursion limit.
30         2022-06-26  Simon Marchi  <simon.marchi@efficios.com>
32         * configure.ac: Add AC_CONFIG_MACRO_DIRS call.
33         * configure: Re-generate.
35 2022-04-12  Nick Clifton  <nickc@redhat.com>
37         * zlib: Rebase to the 1.2.12 release.
39 2022-04-08  Simon Marchi  <simon.marchi@efficios.com>
41         * configure.ac: Add AC_SUBST(PKG_CONFIG_PATH).
42         * configure: Re-generate.
43         * Makefile.tpl (HOST_EXPORTS): Pass PKG_CONFIG_PATH.
44         (PKG_CONFIG_PATH): New.
45         * Makefile.in: Re-generate.
47 2022-03-15  Jose E. Marchesi  <jose.marchesi@oracle.com>
49         * gprofng/src/gp-collect-app.cc (collect::check_args): Use
50         fallthrough comment instead of attribute.
52 2022-03-11  Vladimir Mezentsev  <vladimir.mezentsev@oracle.com>
54         * Makefile.def: Add gprofng module.
55         * configure.ac: Add --enable-gprofng option.
56         * src-release.sh: Add gprofng.
57         * Makefile.in: Regenerate.
58         * configure: Regenerate.
59         * gprofng: New directory.
61 2022-01-22  Nick Clifton  <nickc@redhat.com>
63         * 2.38 release branch created.
65 2022-01-17  Nick Clifton  <nickc@redhat.com>
67         Update config.[guess|sub] from upstream:
69         2022-01-09  Idan Horowitz  <idan.horowitz@gmail.com>
71         config.guess: recognize SerenityOS
72         * config.guess (*:SerenityOS:*:*): Recognize.
73         (timestamp): Update.
75         2022-01-03  Bernhard Voelker  <mail@bernhard-voelker.de>
77         Fix GPLv3 license headers to use a comma instead of semicolon
78         See: https://www.gnu.org/licenses/gpl-3.0.html#howto
80         Update license headers automatically using the following script:
82           $ git grep -l 'Foundation; either version 3' \
83             | xargs sed -i '/Foundation; either version 3/ s/n; e/n, e/'
85         * config.guess: Adjust via the above command.
86         (timestamp): Update.
87         * config.sub: Likewise.
88         * doc/config.guess.1: Regenerate.
89         * doc/config.sub.1: Likewise.
91         2022-01-01  Dmitry V. Levin  <ldv@altlinux.org>
93         Update copyright years
94         * config.guess: Update copyright years.
95         * config.sub: Likewise.
97         2021-12-25  Dmitry V. Levin  <ldv@altlinux.org>
99         config.sub: alias armh to armv7l
100         ALT uses armh as an alias for armv7l-alt-linux-gnueabihf since 2012.
102         * config.sub (armh-unknown|armh-alt): Set cpu, vendor, and basic_os.
103         (timestamp): Update.
105         2021-12-24  Dmitry V. Levin  <ldv@altlinux.org>
107         config.sub: alias aarch64le to aarch64
108         Apparently, QNX reports aarch64 as aarch64le on little-endian machines.
110         * config.sub (aarch64le-*): Set cpu to aarch64.
111         (timestamp): Update.
113         2021-12-13  Dmitry V. Levin  <ldv@altlinux.org>
115         config.sub: fix typo in timestamp
116         * config.sub: Fix timestamp.
118         2021-11-30  Andreas F. Borchert  <github@andreas-borchert.de>
120         config.guess: x86_64-pc-solaris2.11 is not properly recognized
121         config.guess guesses Solaris 11 to run on a 32-bit platform
122         despite Solaris 11 no longer supporting any 32-bit platform.
124         See the following code at lines 434 to 445:
126         | SUN_ARCH=i386
127         | # If there is a compiler, see if it is configured for 64-bit objects.
128         | # Note that the Sun cc does not turn __LP64__ into 1 like gcc does.
129         | # This test works for both compilers.
130         | if test "$CC_FOR_BUILD" != no_compiler_found; then
131         |     if (echo '#ifdef __amd64'; echo IS_64BIT_ARCH; echo '#endif') | \
132         |         (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \
133         |         grep IS_64BIT_ARCH >/dev/null
134         |     then
135         |         SUN_ARCH=x86_64
136         |     fi
137         | fi
139         If "cc" is installed, i.e. the Oracle Studio compiler, this one is
140         chosen for $CC_FOR_BUILD.  This compiler, the gcc provided by Oracle
141         and also gcc bootstrapped from sources on that platform with a default
142         configuration will by default generate 32-bit binaries -- even on
143         a 64-bit platform.  And __amd64 will not be defined for compilations
144         targeting a 32-bit platform.  This is different from the corresponding
145         behaviour on GNU/Linux systems where the local platform is targeted by
146         default.
148         Thus, as long as you do not add "-m64" or if you have a custom-built
149         gcc which defaults to 64 bit, you will get 32-bit binaries on Solaris
150         despite living on a 64-bit platform.
152         * config.guess (i86pc:SunOS:5.*:* || i86xen:SunOS:5.*:*): Adapt the
153         test by adding the "-m64" flag.  This will work properly for Solaris
154         10 as well (the last Solaris release that supported x86 32-bit
155         platforms).
157         2021-10-27  Jordi Sanfeliu  <jordi@fibranet.cat>
159         Recognize Fiwix
160         $ make check
161         cd testsuite && bash config-guess.sh && rm uname
162         PASS: config.guess checks (137 tests)
163         cd testsuite && bash config-sub.sh
164         PASS: config.sub checks (882 tests)
165         PASS: config.sub idempotency checks (819 tests)
166         PASS: config.sub canonicalise each config.guess testcase (137 tests)
168         * config.guess (i*86:Fiwix:*:*): Recognize.
169         * config.sub (fiwix*): Likewise.
171         2021-10-18  Kinshuk Dua  <kinshukdua@gmail.com>
173         config.sub: Fix typo in comment
174         Fixes: 5e531d391852a54e7fab2d8ff55625fca514b305
176         2021-08-14  Nick Bowler  <nbowler@draconx.ca>
178         config.sub: work around command assignment bug in some shells
179         When combining variable assignments with a shell command, some older
180         shells (notably heirloom-sh and presumably also Solaris 10 /bin/sh)
181         have a bug which causes the assignment to alter the current execution
182         environment whenever the command is a shell built-in.  For example:
184           % dash -c 'x=good; x=bad echo >/dev/null; echo $x'
185           good
187           % jsh -c 'x=good; x=bad echo >/dev/null; echo $x'
188           bad
190         The config.sub script contains a few commands of the form:
192           IFS=- read ...
194         which triggers this bug, causing the IFS assignment to persist for the
195         remainder of the script.  This can cause misbehaviour in certain cases,
196         for example:
198           % jsh config.sub i386-linux-gnu
199           config.sub: test: unknown operator gnu
201           % jsh config.sub i386-gnu/linux
202           sed: can't read s|gnu/linux|gnu|: No such file or directory
203           Invalid configuration `i386-gnu/linux': OS `' not recognized
205         * config.sub: Save and restore IFS explicitly to avoid shell bugs.
206         * doc/config.sub.1: Regenerate.
208         2021-08-04  Jeremy Soller  <jackpot51@gmail.com>
210         config.sub: add Linux Relibc Target
211         $ make check
212         cd testsuite && bash config-guess.sh && rm uname
213         PASS: config.guess checks (136 tests)
214         cd testsuite && bash config-sub.sh
215         PASS: config.sub checks (881 tests)
216         PASS: config.sub idempotency checks (818 tests)
217         PASS: config.sub canonicalise each config.guess testcase (136 tests)
219         * config.sub (relibc*): Recognize.
220         * doc/config.sub.1: Regenerate.
221         * testsuite/config-sub.data (x86_64-linux-relibc): New test.
223         2021-07-06  Stephanos Ioannidis  <root@stephanos.io>
225         config.sub: add Zephyr RTOS support
226         This adds the Zephyr RTOS targets in preparation for implementing the
227         Zephyr RTOS-specific toolchain support.
229         $ make check
230         cd testsuite && bash config-guess.sh && rm uname
231         PASS: config.guess checks (136 tests)
232         cd testsuite && bash config-sub.sh
233         PASS: config.sub checks (880 tests)
234         PASS: config.sub idempotency checks (817 tests)
235         PASS: config.sub canonicalise each config.guess testcase (136 tests)
237         * config.sub (zephyr*): Recognize.
238         * doc/config.sub.1: Regenerate.
239         * testsuite/config-sub.data: Add testcases for *-zephyr.
241         2021-07-03  Ozkan Sezer  <sezero@users.sourceforge.net>
243         config.sub: disable shellcheck SC2006 / SC2268 warnings
244         This is in line with the recent config.guess change in commit
245         12fcf67c9108f4c4b581eaa302088782f0ee40ea
247         * config.sub (shellcheck disable): Add SC2006,SC2268.
249         Suggested-by: Jacob Bachmeyer <jcb@gnu.org>
251         2021-07-03  Ozkan Sezer  <sezero@users.sourceforge.net>
253         config.sub: normalize the quoting in the `echo FOO | sed ...`
254         Some cases quote the argument to echo and some do not.  At runtime
255         it probably does not matter because the substituted values will never
256         contain whitespace, but quoting them all would make shellcheck more
257         useful.
259         * config.sub: Consistently quote the argument of echo.
260         * doc/config.sub.1: Regenerate.
262         Suggested-by: Jacob Bachmeyer <jcb@gnu.org>
264         2021-07-02  Ozkan Sezer  <sezero@users.sourceforge.net>
266         config.sub: replace POSIX $( ) with classic ` ` throughout
267         This is in line with the recent config.guess change in commit
268         d70c4fa934de164178054c3a60aaa0024ed07c91.
270         The patch was generated using patch-6.gawk script introduced in that
271         commit.
273         * config.sub: Revert POSIX command substitutions to classic form.
275         2021-06-04  Vineet Gupta  <Vineet.Gupta1@synopsys.com>
277         Recognize arc32
278         This is the 32-bit variant of ARCv3 ISA (which is not compatible with the
279         32-bit ARCv2 ISA)
281         | make check
282         | cd testsuite && bash config-guess.sh && rm uname
283         | PASS: config.guess checks (136 tests)
284         | cd testsuite && bash config-sub.sh
285         | PASS: config.sub checks (864 tests)
286         | PASS: config.sub idempotency checks (801 tests)
287         | PASS: config.sub canonicalise each config.guess testcase (136 tests)
289         * config.guess (arc32:Linux:*:*): Recognize.
290         * config.sub (arc32): Likewise.
292         2021-05-27  Jacob Bachmeyer  <jcb@gnu.org>
294         Remove automatic patch generators
295         These tools have served their purposes and need not be kept outside of
296         the repository history any longer.  This patch as a diff also collects
297         the contents of the various tools in one convenient place.
299         * patch-1.gawk: Remove.
300         * patch-3.gawk: Likewise.
301         * patch-6.gawk: Likewise.
303         2021-05-26  Jacob Bachmeyer  <jcb@gnu.org>
305         config.guess: manual fixups after previous automatic patch
306         The tool could not handle command substitutions that span lines, but
307         fortunately there were only two such substitutions in the script.
309         The test for which universe is active on Pyramid is rewritten into a
310         case block because it was the only use of a command substitution as an
311         argument to the test command, which would require quoting.
313         * config.guess: Rewrite "if" for Pyramid systems to "case".
315         2021-05-26  Jacob Bachmeyer  <jcb@gnu.org>
317         config.guess: replace POSIX $( ) with classic ` ` throughout
318         The previous replacement of backticks with POSIX command substitutions
319         was ill-considered and illogical: this script recognizes many archaic
320         machine types that probably never had POSIX shells, therefore it needs
321         to be able to run successfully under pre-POSIX shells.
323         This patch was generated using the included GNU Awk program.
325         * config.guess: Revert POSIX command substitutions to classic form.
326         * patch-6.gawk: Store the tool that produced the automated patch.
328         2021-05-26  Jacob Bachmeyer  <jcb@gnu.org>
330         config.guess: manual fixup after previous automated patches
331         This patch provides the special handling for the GNU system.  As these
332         were two small and unique edits, they were not included in the scripts.
334         This patch also cleans up other minor issues that must be addressed
335         before reverting to classic command substitutions and updates
336         "shellcheck" directives to account for changes in this script and the
337         change in "shellcheck" towards reporting individual portability issues.
339         2021-05-26  Jacob Bachmeyer  <jcb@gnu.org>
341         config.guess: automatic fixups after previous automated patch
342         This patch was generated using the following command:
344           sed -i config.guess \
345               -e '/="[^"]\+"\(-\|$\)/s/="\([^"([:space:])]\+\)"/=\1/' \
346               -e '/="[^"]\+"[[:alnum:]]/s/="\$\([^([:space:])]\+\)"/=${\1}/' \
347               -e \
348         '/\$(echo[^|]\+|/s/\([^[:space:]]\)[[:space:]]*|[[:space:]]*sed/\1 | sed/g'
350         * config.guess: Remove unneeded quotes in other variable assignments,
351         standardize spacing for "echo ... | sed" substitutions.
353         2021-05-26  Jacob Bachmeyer  <jcb@gnu.org>
355         config.guess: remove unneeded quotes and factor command substitutions
356         This is further cleanup and simplifies some constructs that can confuse
357         Emacs' syntax highlighting while generally reducing required quoting.
359         This patch was generated using the included GNU Awk program.
361         * config.guess: Remove unneeded variable quotes and factor out command
362         substitutions when setting GUESS.
363         * patch-3.gawk: Store the tool that produced the automated patch.
365         2021-05-25  Jacob Bachmeyer  <jcb@gnu.org>
367         config.guess: manual fixups after previous automatic patch
368         * config.guess: Adjust a few "leftover" cases that the tool could not
369         easily recognize and fixes comment indentation in a few other special
370         cases.
372         2021-05-25  Jacob Bachmeyer  <jcb@gnu.org>
374         config.guess: use intermediate variable with uname results
375         This will allow quoting to be significantly simplified in another
376         pass through the file.
378         This patch was generated using the included GNU Awk program.
380         * config.guess: Use GUESS variable to hold results of uname analysis.
381         * patch-1.gawk: Store the tool that produced the automated patch.
383         2021-05-25  Jacob Bachmeyer  <jcb@gnu.org>
385         config.guess: introduce intermediate variable with uname results
386         This will allow quoting to be significantly simplified in another
387         pass through the file.
389         * config.guess: Introduce GUESS variable to hold results of uname analysis.
391         2021-05-24  Dmitry V. Levin  <ldv@altlinux.org>
393         config.guess: fix shellcheck warning SC2154
394         While, according to Plan 9 documentation, the environment variable
395         $cputype is set to the name of the kernel's CPU's architecture,
396         shellcheck warns that cputype is referenced but not assigned.
397         Be on the safe side and do not use cputype if it is not defined
398         or empty.
400         * config.guess (*:Plan9:*:*): Fix shellcheck warning SC2154.
402         2021-05-24  Dmitry V. Levin  <ldv@altlinux.org>
404         config.guess: remove redundant quotes in case commands
405         According to the GNU Autoconf Portable Shell Programming manual,
406         the Bourne shell does not systematically split variables and back-quoted
407         expressions, in particular on the right-hand side of assignments and in
408         the argument of 'case'.
410         The change is made automatically using the following command:
411         $ sed -E -i 's/(\<case )"(\$[^"]+)"( in\>)/\1\2\3/' config.guess
413         * config.guess: Simplify case commands by removing quotes around the
414         argument.
416         Suggested-by: Jacob Bachmeyer <jcb@gnu.org>
418         2021-05-24  Dmitry V. Levin  <ldv@altlinux.org>
420         config.guess: simplify exit status workaround on alphaev67-dec-osf5.1
421         Commit 29865ea8a5622cdd80b7a69a0afa78004b4cd311 introduced an exit trap
422         reset before exiting to avoid a spurious non-zero exit status on
423         alphaev67-dec-osf5.1.  Simplify that code a bit by moving the exit trap
424         reset around.
426         * config.guess (alpha:OSF1:*:*): Reset exit trap earlier.
427         * doc/config.guess.1: Regenerate.
429 2021-10-29  Eli Zaretskii  <eliz@gnu.org>
431         * gdb/doc/gdb.texinfo (Command Options): (Data): Document
432         '-memory-tag-violations'.  Update the example.
434 2021-09-28  Andrew Burgess  <andrew.burgess@embecosm.com>
436         * src-release.sh (GDB_SUPPPORT_DIRS): Add libbacktrace.
438 2021-09-27  Nick Alcock  <nick.alcock@oracle.com>
440         PR libctf/27967
441         * libtool.m4 (LT_PATH_NM): Try BSDization flags with a user-provided
442         NM, if there is one.  Run nm on itself, not on /dev/null, to avoid
443         errors from nms that refuse to work on non-regular files.  Remove
444         other workarounds for this problem.  Strip out blank lines from the
445         nm output.
447 2021-09-27  Nick Alcock  <nick.alcock@oracle.com>
449         PR libctf/27967
450         * libtool.m4 (lt_cv_sys_global_symbol_pipe): Augment symcode for
451         Solaris 11.
453 2021-07-03  Nick Clifton  <nickc@redhat.com>
455         * 2.37 release branch created.
457 2021-07-03  Nick Clifton  <nickc@redhat.com>
459         * libiberty: Sync with gcc.  Bring in:
460         2021-06-30  Gerald Pfeifer  <gerald@pfeifer.com>
462         * make-temp-file.c (usrtmp): Remove.
463         (choose_tmpdir): Remove use of usrtmp.
465         2021-06-28  Indu Bhagat  <indu.bhagat@oracle.com>
467         * simple-object.c (handle_lto_debug_sections): Copy over .BTF section.
469         2021-06-28  Indu Bhagat  <indu.bhagat@oracle.com>
470             David Faust  <david.faust@oracle.com>
471             Jose E. Marchesi  <jose.marchesi@oracle.com>
472             Weimin Pan  <weimin.pan@oracle.com>
474         * simple-object.c (handle_lto_debug_sections): Copy over .ctf
475         sections.
477         2021-06-05  John David Anglin  <danglin@gcc.gnu.org>
479         PR target/100734
480         * configure.ac: Use libiberty snprintf and vsnprintf on
481         hppa*-*-hpux*.
482         * configure: Regenerate.
484         2021-05-06  Tom Tromey  <tom@tromey.com>
486         * hashtab.c (htab_eq_string): New function.
488         2021-05-04  Eric Botcazou  <ebotcazou@adacore.com>
490         * configure.ac: Make test for variables more robust.
491         * configure: Regenerate.
493         2021-05-03  H.J. Lu  <hjl.tools@gmail.com>
495         PR bootstrap/99703
496         * configure: Regenerated.
498         2021-04-21  Andreas Schwab  <schwab@linux-m68k.org>
500         PR demangler/100177
501         * rust-demangle.c (demangle_const_char): Properly print the
502         character value.
504         2021-03-31  Patrick Palka  <ppalka@redhat.com>
506         PR c++/88115
507         * cp-demangle.c (d_dump, d_make_comp, d_expression_1)
508         (d_count_templates_scopes): Handle DEMANGLE_COMPONENT_VENDOR_EXPR.
509         (d_print_comp_inner): Likewise.
510         <case DEMANGLE_COMPONENT_EXTENDED_OPERATOR>: Revert r11-4926
511         change.
512         <case DEMANGLE_COMPONENT_UNARY>: Likewise.
513         * testsuite/demangle-expected: Adjust __alignof__ tests.
515         2021-03-16  Nick Clifton  <nickc@redhat.com>
517         * sha1.c (sha1_process_bytes): Use memmove in place of memcpy.
519         2021-02-20  Mike Frysinger  <vapier@gentoo.org>
521         * Makefile.in (ACLOCAL, ACLOCAL_AMFLAGS, $(srcdir)/aclocal.m4): Define.
522         (configure_deps): Rename to ...
523         (aclocal_deps): ... this.  Replace aclocal.m4 with acinclude.m4.
524         ($(srcdir)/configure): Replace $(configure_deps) with
525         $(srcdir)/aclocal.m4.
526         * aclocal.m4: Move libiberty macros to acinclude.m4, then regenerate.
527         * acinclude.m4: New file.
528         * configure: Regenerate.
530         2021-02-19  Ayush Mittal  <ayush.m@samsung.com>
532         * argv.c (expandargv): free allocated buffer if read fails.
534         2021-02-01  Martin Sebor  <msebor@redhat.com>
536         * dyn-string.c (dyn_string_insert_cstr): Use memcpy instead of strncpy
537         to avoid -Wstringop-truncation.
539 2021-05-29  Mike Frysinger  <vapier@gentoo.org>
541         * configure.ac: Add gnulib to configdirs for sim.
542         * configure: Regenerate.
544 2021-05-24  Maciej W. Rozycki  <macro@orcam.me.uk>
546         * MAINTAINERS: Update path to readline config.{sub,guess} files.
548 2021-05-24  Maciej W. Rozycki  <macro@orcam.me.uk>
550         * config.guess: Import from upstream.
551         * config.sub: Likewise.
553 2021-05-18  Mike Frysinger  <vapier@gentoo.org>
555         * Makefile.def: Add configure-sim dependency on all-gnulib.
556         * Makefile.in: Regenerated.
558 2021-05-04  Nick Clifton  <nickc@redhat.com>
560         * configure.ac (AC_PROG_CC): Replace with AC_PROG_CC_C99.
561         * configure: Regenerate.
563 2021-03-18  Nick Alcock  <nick.alcock@oracle.com>
565         PR libctf/27482
566         * Makefile.def: Add install-bfd dependencies for install-libctf and
567         install-ld, and install-strip-bfd dependencies for
568         install-strip-libctf and install-strip-ld; move the install-ld
569         dependency on install-libctf to join it.
570         * Makefile.in: Regenerated.
572 2021-03-12  Mike Frysinger  <vapier@gentoo.org>
574         * Makefile.def: Remove all-sim dependency on configure-gdb.
575         * Makefile.in: Regenerated.
577 2021-02-28  H.J. Lu  <hongjiu.lu@intel.com>
579         PR binutils/26766
580         * Makefile.tpl (PGO_BUILD_TRAINING_FLAGS_TO_PASS): Add
581         PGO_BUILD_TRAINING=yes.
582         (PGO_BUILD_TRAINING_MFLAGS): New.
583         (all): Pass $(PGO_BUILD_TRAINING_MFLAGS) to the PGO build.
585 2021-02-09  Alan Modra  <amodra@gmail.com>
587         * configure.ac: Delete arm*-*-symbianelf* entry.
588         * configure: Regenerate.
590 2021-01-26  Nick Alcock  <nick.alcock@oracle.com>
592         * Makefile.def: Add install-libctf dependency to install-ld.
593         * Makefile.in: Regenerated.
595 2021-01-12  Mike Frysinger  <vapier@gentoo.org>
597         * src-release.sh (do_proto_toplev): Rewrite indentation.
599 2021-01-11  H.J. Lu  <hongjiu.lu@intel.com>
601         PR binutils/26766
602         * configure.ac:
603         * configure: Regenerated.
605 2021-01-11  H.J. Lu  <hongjiu.lu@intel.com>
607         PR ld/27173
608         * configure: Regenerated.
609         * libtool.m4 (_LT_CMD_OLD_ARCHIVE): Check if AR works with
610         --plugin and rc before enabling --plugin.
612 2021-01-09  H.J. Lu  <hongjiu.lu@intel.com>
614         PR binutils/26766
615         * Makefile.tpl (BUILD_CFLAGS): New.
616         (CFLAGS): Append $(BUILD_CFLAGS).
617         (CXXFLAGS): Likewise.
618         (PGO_BUILD_GEN_FLAGS_TO_PASS): New.
619         (PGO_BUILD_TRAINING_CFLAGS): Likewise.
620         (PGO_BUILD_TRAINING_CXXFLAGS): Likewise.
621         (PGO_BUILD_TRAINING_FLAGS_TO_PASS): Likewise.
622         (PGO_BUILD_TRAINING_MFLAGS): Likewise.
623         (PGO_BUILD_USE_FLAGS_TO_PASS): Likewise.
624         (PGO-TRAINING-TARGETS): Likewise.
625         (PGO_BUILD_TRAINING): Likewise.
626         (all): Add '+' to the command line for recursive make.  Support
627         the PGO build.
628         * configure.ac: Add --enable-pgo-build[=lto].
629         AC_SUBST PGO_BUILD_GEN_CFLAGS, PGO_BUILD_USE_CFLAGS and
630         PGO_BUILD_LTO_CFLAGS.  Enable the PGO build in Makefile.
631         * Makefile.in: Regenerated.
632         * configure: Likewise.
634 2021-01-09  H.J. Lu  <hongjiu.lu@intel.com>
636         * Makefile.tpl (AR): Add @AR_PLUGIN_OPTION@
637         (RANLIB): Add @RANLIB_PLUGIN_OPTION@.
638         * configure.ac: Include config/gcc-plugin.m4.
639         AC_SUBST AR_PLUGIN_OPTION and RANLIB_PLUGIN_OPTION.
640         * libtool.m4 (_LT_CMD_OLD_ARCHIVE): Pass --plugin to AR and
641         RANLIB if possible.
642         * Makefile.in: Regenerated.
643         * configure: Likewise.
645 2021-01-09  Nick Clifton  <nickc@redhat.com>
647         * 2.36 release branch crated.
649 2021-01-07  Samuel Thibault  <samuel.thibault@gnu.org>
651         * libtool.m4: Match gnu* along with other GNU systems.
653 2021-01-07  Alan Modra  <amodra@gmail.com>
655         * config.sub: Accept OS of eabi* and gnueabi*.
657 2021-01-05  Nick Alcock  <nick.alcock@oracle.com>
659         * Makefile.def (libctf): No longer no_check.  Checking depends on
660         all-ld.
661         * Makefile.in: Regenerated.
663 2021-01-05  Nick Clifton  <nickc@redhat.com>
665         * libiberty: Sync with gcc.  Bring in:
666         2021-01-04  Martin Liska  <mliska@suse.cz>
668         * strverscmp.c: Convert to utf8 from iso8859.
670         2020-12-22  Jason Merrill  <jason@redhat.com>
672         PR c++/67343
673         * cp-demangle.h (struct d_info): Add unresolved_name_state.
674         * cp-demangle.c (d_prefix): Add subst parm.
675         (d_nested_name): Pass it.
676         (d_unresolved_name): Split out from...
677         (d_expression_1): ...here.
678         (d_demangle_callback): Maybe retry with old sr mangling.
679         * testsuite/demangle-expected: Add test.
681         2020-12-21  Jason Merrill  <jason@redhat.com>
683         * cp-demangle.c (d_expression_1): Recognize qualified-id
684         on RHS of dt/pt.
685         * testsuite/demangle-expected: Add test.
687         2020-12-21  Jason Merrill  <jason@redhat.com>
689         * cp-demangle.c (d_unqualified_name): Clear is_expression.
690         * testsuite/demangle-expected: Add tests.
692         2020-11-25  Matthew Malcomson  <matthew.malcomson@arm.com>
694         * configure: Regenerate.
695         * configure.ac: Avoid using sanitizer.
697         2020-11-13  Eduard-Mihai Burtescu  <eddyb@lyken.rs>
699         * rust-demangle.c (struct rust_demangler): Add
700         skipping_printing and bound_lifetime_depth fields.
701         (eat): Add (v0-only).
702         (parse_integer_62): Add (v0-only).
703         (parse_opt_integer_62): Add (v0-only).
704         (parse_disambiguator): Add (v0-only).
705         (struct rust_mangled_ident): Add punycode{,_len} fields.
706         (parse_ident): Support v0 identifiers.
707         (print_str): Respect skipping_printing.
708         (print_uint64): Add (v0-only).
709         (print_uint64_hex): Add (v0-only).
710         (print_ident): Respect skipping_printing,
711         Support v0 identifiers.
712         (print_lifetime_from_index): Add (v0-only).
713         (demangle_binder): Add (v0-only).
714         (demangle_path): Add (v0-only).
715         (demangle_generic_arg): Add (v0-only).
716         (demangle_type): Add (v0-only).
717         (demangle_path_maybe_open_generics): Add (v0-only).
718         (demangle_dyn_trait): Add (v0-only).
719         (demangle_const): Add (v0-only).
720         (demangle_const_uint): Add (v0-only).
721         (basic_type): Add (v0-only).
722         (rust_demangle_callback): Support v0 symbols.
723         * testsuite/rust-demangle-expected: Add v0 testcases.
725         2020-11-13  Seija Kijin  <doremylover456@gmail.com>
727         * strstr.c (strstr): Make implementation ANSI/POSIX compliant.
729         2020-11-11  Patrick Palka  <ppalka@redhat.com>
731         PR c++/88115
732         * cp-demangle.c (d_print_comp_inner)
733         <case DEMANGLE_COMPONENT_EXTENDED_OPERATOR>: Don't print the
734         "operator " prefix for __alignof__.
735         <case DEMANGLE_COMPONENT_UNARY>: Always print parens around the
736         operand of __alignof__.
737         * testsuite/demangle-expected: Test demangling for __alignof__.
739         2020-11-09  Christophe Lyon  <christophe.lyon@linaro.org>
741         * pex-win32.c (pex_win32_exec_child): Initialize orig_err.
743         2020-10-06  Martin Liska  <mliska@suse.cz>
745         PR lto/97290
746         * simple-object-elf.c (simple_object_elf_copy_lto_debug_sections):
747         Use sh_link of a .symtab_shndx section.
749 2021-01-05  Alan Modra  <amodra@gmail.com>
751         * config.guess: Import from upstream.
752         * config.sub: Likewise.
754 2020-12-16  Martin Liska  <mliska@suse.cz>
755             Tom de Vries  <tdevries@suse.de>
757         * gdb/debuginfod-support.c (struct user_data): Remove has_printed
758         field.  Add meter field.
759         (progressfn): Print progress using meter.
761 2020-12-02  Enze Li  <lienze2010@hotmail.com>
763         * .gitignore: Add gnu global outputs.
765 2020-12-02  Simon Marchi  <simon.marchi@polymtl.ca>
767         * .gitignore: Sync with gcc.
769 2020-10-26  Andreas Rammhold <andreas@rammhold.de>
771         * src-release.sh: Use sha256sum instead of md5sum.
773 2020-10-14  Andrew Burgess  <andrew.burgess@embecosm.com>
775         * Makefile.in: Rebuild.
776         * Makefile.def: Make distclean-gnulib depend on distclean-gdb and
777         distclean-gdbserver.
779 2020-07-24  Aaron Merey  <amerey@redhat.com>
781         * configure: Rebuild.
782         * configure.ac: Remove AC_DEBUGINFOD.
784 2020-07-04  Nick Clifton  <nickc@redhat.com>
786         Binutils 2.35 branch created.
788 2020-04-21  Stephen Casner  <casner@acm.org>
790         PR 25830
791         * configure.ac (noconfigdirs): Exclude gdb & gprof for pdp11.
792         * configure: Rebuild.
794 2020-03-12  Tom Tromey  <tom@tromey.com>
796         * Makefile.in: Rebuild.
797         * Makefile.def (gdbserver): Depend on gdbsupport.
799 2020-03-12  Tom Tromey  <tom@tromey.com>
801         * Makefile.in: Rebuild.
802         * Makefile.def (gdbsupport): Don't depend on bfd.
804 2020-03-12  Tom Tromey  <tom@tromey.com>
806         * Makefile.in: Rebuild.
807         * Makefile.def (gdbsupport): Depend on intl.
809 2020-02-17  Tom Tromey  <tom@tromey.com>
811         * configure: Rebuild.
812         * configure.ac (configdirs): Add gnulib and gdbsupport when building
813         gdbserver.
815 2020-02-14  Tom Tromey  <tom@tromey.com>
817         * Makefile.in: Rebuild.
818         * Makefile.def: Make gdbserver require gnulib and libiberty.
820 2020-02-07  Tom Tromey  <tom@tromey.com>
821             Pedro Alves  <palves@redhat.com>
823         * src-release.sh (GDB_SUPPORT_DIRS): Add gdbserver.
824         * gdbserver: New directory, moved from gdb/gdbserver.
825         * configure.ac (host_tools): Add gdbserver.
826         Only build gdbserver on certain systems.
827         * Makefile.in, configure: Rebuild.
828         * Makefile.def (host_modules, dependencies): Add gdbserver.
829         * MAINTAINERS: Add gdbserver.
831 2020-01-28  Sergio Durigan Junior  <sergiodj@redhat.com>
833         * src-release.sh (getver): Look for gdbsupport's
834         create-version.sh script at the current directory if tool is
835         "gdb".
837 2020-01-19  Simon Marchi  <simon.marchi@polymtl.ca>
839         * remote-sim.c (gdbsim_target::wait): Return
840         sim_data->remote_sim_ptid instead of inferior_ptid.
842 2020-01-18  Nick Clifton  <nickc@redhat.com>
844         Binutils 2.34 branch created.
846 2020-01-18  Nick Clifton  <nickc@redhat.com>
848         Synchronize top level configure files with master version:
850         2020-01-01  Ben Elliston  <bje@gnu.org>
852         * config.guess: Update copyright years.
853         * config.sub: Likewise.
855         2019-12-21  Ben Elliston  <bje@gnu.org>
857         * config.guess (set_cc_for_build): Prevent multiple calls by
858         checking if $tmp is already set. We can't check CC_FOR_BUILD as
859         the user may set it externally. Thanks to Torbjörn Granlund for
860         the bug report.
862         2019-12-21  Torbjörn Granlund  <tg@gmplib.org>
864         * config.guess (alpha:Linux:*:*): Guard against missing
865         /proc/cpuinfo by redirecting standard error to /dev/null.
867         2019-09-12  Daniel Bittman  <danielbittman1@gmail.com>
869         * config.guess (*:Twizzler:*:*): New.
870         * config.sub (-twizzler*): New.
872         2019-07-24  Ben Elliston  <bje@gnu.org>
874         * config.guess (mips:OSF1:*.*): Whitespace cleanup.
876         2019-06-30  Ben Elliston  <bje@gnu.org>
878         * config.sub (case $os): Match nsk* and powerunix. Don't later
879         match nsk* and set os=nsk which removes the OS version number.
881         2019-06-30  Ben Elliston  <bje@gnu.org>
883         * config.sub: Recognise os108*.
885         2019-06-26  Ben Elliston  <bje@gnu.org>
887         * config.sub (hp300): Set $os to hpux.
889         2019-06-26  Ben Elliston  <bje@gnu.org>
891         * config.sub (vsta): Move into alphabetical order.
893         2019-06-10  Ben Elliston  <bje@gnu.org>
895         * config.guess (*:OS108:*:*): Recognise new OS.
897         2019-05-28  Ben Elliston  <bje@gnu.org>
899         * config.guess (*:Darwin:*:*): Run xcode-select to determine if a
900         system compiler is installed. If not, do not run set_cc_for_build,
901         as the default cc will open a dialog box asking to install
902         Xcode. If no C compiler is available, guess based on uname -p and
903         uname -m.
905         2019-05-28  Ben Elliston  <bje@gnu.org>
907         * config.guess (*:Darwin:*:*): Simplify UNAME_PROCESSOR.
909 2020-01-17  Simon Marchi  <simon.marchi@efficios.com>
911         * Makefile.def: Add dependencies of all-gdbsupport on all-bfd.
912         * Makefile.in: Re-generate.
914 2020-01-14  Tom Tromey  <tom@tromey.com>
916         * src-release.sh (GDB_SUPPORT_DIRS): Add gdbsupport.
917         * MAINTAINERS: Add gdbsupport.
918         * configure: Rebuild.
919         * configure.ac (configdirs): Add gdbsupport.
920         * gdbsupport: New directory, move from gdb/gdbsupport.
921         * Makefile.def (host_modules, dependencies): Add gnulib.
922         * Makefile.in: Rebuild.
924 2020-01-09  Aaron Merey  <amerey@redhat.com>
926         * config/debuginfod.m4: New file. Add macro AC_DEBUGINFOD. Adds
927         new configure option --with-debuginfod.
928         * configure: Regenerate.
929         * configure.ac: Call AC_DEBUGINFOD.
931 2019-12-26  Christian Biesinger  <cbiesinger@google.com>
933         * .gitignore: Add perf.data and perf.data.old.
935 2019-10-17  Sergio Durigan Junior  <sergiodj@redhat.com>
937         * src-release.sh (GDB_SUPPORT_DIRS): Add libctf.
939 2019-10-17  Alan Modra  <amodra@gmail.com>
941         PR 29
942         * src-release.sh (getver): Replace "head -1" with "head -n 1".
944 2019-07-30  Nick Alcock  <nick.alcock@oracle.com>
946         * Makefile.def (host_modules): libctf is no longer no_install.
947         * Makefile.in: Regenerated.
949 2019-07-13  Nick Alcock  <nick.alcock@oracle.com>
951         * Makefile.def (dependencies): all-ld depends on all-libctf.
952         * Makefile.in: Regenerated.
954 2019-09-09  Phil Blundell  <pb@pbcl.net>
956         binutils 2.33 branch created
958 2019-08-19  Tom Tromey  <tom@tromey.com>
960         * configure: Rebuild.
961         * configure.ac: Add --with-static-standard-libraries.
963 2019-08-09  Nick Clifton  <nickc@redhat.com>
965         * libiberty: Sync with gcc.  Bring in:
966         2019-08-08  Martin Liska  <mliska@suse.cz>
968         PR bootstrap/91352
969         * lrealpath.c (is_valid_fd): New function.
971         2019-07-24  Martin Liska  <mliska@suse.cz>
973         PR lto/91228
974         * simple-object-elf.c (simple_object_elf_copy_lto_debug_sections):
975         Find first '\0' starting from gnu_lto + 1.
977         2019-07-12  Ren Kimura  <rkx1209dev@gmail.com>
979         * simple-object-elf.c (simple_object_elf_match): Check zero value shstrndx.
980         This fixes a Bug 90924.
982         2019-07-22  Martin Liska  <mliska@suse.cz>
984         * simple-object-elf.c (simple_object_elf_copy_lto_debug_sections):
985         Do not search for gnu_lto_v1, but search for first '\0'.
987         2019-07-18  Eduard-Mihai Burtescu  <eddyb@lyken.rs>
989         * cplus-dem.c: Include rust-demangle.h.
990         * rust-demangle.c: Include rust-demangle.h.
991         * rust-demangle.h: New file.
993         2019-05-31  Michael Forney  <mforney@mforney.org>
995         * cp-demangle.c: Don't define CP_DYNAMIC_ARRAYS if __STDC_NO_VLA__
996         is non-zero.
998         2019-04-30  Ben L  <bobsayshilol@live.co.uk>
1000         * d-demangle.c (dlang_parse_assocarray): Correctly handle error result.
1001         * testsuite/d-demangle-expected: Add testcase.
1003         * d-demangle.c (dlang_parse_tuple): Correctly handle error result.
1004         * testsuite/d-demangle-expected: Add testcase.
1006         * d-demangle.c (dlang_parse_structlit): Correctly handle error result.
1007         * testsuite/d-demangle-expected: Add testcase.
1009         * d-demangle.c (dlang_parse_arrayliteral): Correctly handle error result.
1010         * testsuite/d-demangle-expected: Add testcase.
1012         * d-demangle.c (dlang_parse_integer): Fix stack underflow.
1013         * testsuite/d-demangle-expected: Add testcase.
1015         * cp-demangle (d_print_comp_inner): Guard against a NULL 'typed_name'.
1016         * testsuite/demangle-expected: Add testcase.
1018         * cp-demangle.c (d_encoding): Guard against NULL return values from
1019         d_right (dc).
1020         * testsuite/demangle-expected: Add testcase.
1022         2019-04-29  Ben L  <bobsayshilol@live.co.uk>
1024         * cp-demangle.c (d_expression_1): Don't peek ahead unless the current
1025         char is valid.
1026         * testsuite/demangle-expected: Add testcase.
1028         2019-04-10  Nick Clifton  <nickc@redhat.com>
1030         PR 89394
1031         * cp-demangle.c (cplus_demangle_fill_name): Reject negative
1032         lengths.
1033         (d_count_templates_scopes): Replace num_templates and num_scopes
1034         parameters with a struct d_print_info pointer parameter.  Adjust
1035         body of the function accordingly.  Add recursion counter and check
1036         that the recursion limit is not reached.
1037         (d_print_init): Pass dpi parameter to d_count_templates_scopes.
1038         Reset recursion counter afterwards, unless the recursion limit was
1039         reached.
1041 2019-07-13  Joel Brobecker  <brobecker@adacore.com>
1043         * src-release (getver): If $tool/gdbsupport/create-version.sh
1044         exists, use that to determine the version number.
1046 2019-06-21  Andreas Schwab  <schwab@linux-m68k.org>
1048         * src-release.sh (GDB_SUPPORT_DIRS): Add gnulib.
1050 2019-06-14  Tom Tromey  <tom@tromey.com>
1052         * MAINTAINERS: Add gnulib.
1053         * gnulib: New directory, move from gdb/gnulib.
1054         * configure.ac (host_libs): Add gnulib.
1055         * configure: Rebuild.
1056         * Makefile.def (host_modules, dependencies): Add gnulib.
1057         * Makefile.in: Rebuild.
1059 2019-06-03  Nick Clifton  <nickc@redhat.com>
1061         Revert:
1062         2019-05-29  Nick Clifton  <nickc@redhat.com>
1064         * configure.ac (noconfigdirs): Add libctf if the target does not use
1065         the ELF file format.
1066         * configure: Regenerate.
1068 2019-05-29  Nick Clifton  <nickc@redhat.com>
1070         * src-release.sh (do_proto_toplev): Add libctf to list of
1071         directories that can be disabled.
1073 2019-05-29  Nick Clifton  <nickc@redhat.com>
1075         * configure.ac (noconfigdirs): Add libctf if the target does not use
1076         the ELF file format.
1077         * configure: Regenerate.
1079 2019-05-28  Nick Alcock  <nick.alcock@oracle.com>
1081         * Makefile.def (dependencies): configure-libctf depends on all-bfd
1082         and all its deps.
1083         * Makefile.in: Regenerated.
1085 2019-05-28  Nick Alcock  <nick.alcock@oracle.com>
1087         * MAINTAINERS: Add libctf.
1089 2019-05-28  Nick Alcock  <nick.alcock@oracle.com>
1091         * Makefile.def (host_modules): Add libctf.
1092         * Makefile.def (dependencies): Likewise.
1093         libctf depends on zlib, libiberty, and bfd.
1094         * Makefile.in: Regenerated.
1095         * configure.ac (host_libs): Add libctf.
1096         * configure: Regenerated.
1098 2019-05-23  Jose E. Marchesi  <jose.marchesi@oracle.com>
1100         * config.guess: Synchronize with config project master sources.
1101         * config.sub: Likewise.
1102         * readline/support/config.guess: Likewise.
1103         * readline/support/config.sub: Likewise.
1105 2019-04-10  Nick Clifton  <nickc@redhat.com>
1107         * libiberty: Sync with gcc.  Bring in:
1108         2019-04-10  Nick Clifton  <nickc@redhat.com>
1110         PR 89394
1111         * cp-demangle.c (cplus_demangle_fill_name): Reject negative
1112         lengths.
1113         (d_count_templates_scopes): Replace num_templates and num_scopes
1114         parameters with a struct d_print_info pointer parameter.  Adjust
1115         body of the function accordingly.  Add recursion counter and check
1116         that the recursion limit is not reached.
1117         (d_print_init): Pass dpi parameter to d_count_templates_scopes.
1118         Reset recursion counter afterwards, unless the recursion limit was
1119         reached.
1121 2018-06-24  Nick Clifton  <nickc@redhat.com>
1123         2.32 branch created.
1125 2019-01-14  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
1127         Merge from GCC:
1128         PR target/88535
1129         * config.guess: Import upstream version 2019-01-03.
1130         * config.sub: Import upstream version 2019-01-01.
1132 2019-01-10  Nick Clifton  <nickc@redhat.com>
1134         * libiberty: Sync with gcc.  Bring in:
1135         2019-01-09  Sandra Loosemore  <sandra@codesourcery.com>
1137         PR other/16615
1139         * cp-demangle.c: Mechanically replace "can not" with "cannot".
1140         * floatformat.c: Likewise.
1141         * strerror.c: Likewise.
1143         2018-12-22  Jason Merrill  <jason@redhat.com>
1145         Remove support for demangling GCC 2.x era mangling schemes.
1146         * cplus-dem.c: Remove cplus_mangle_opname, cplus_demangle_opname,
1147         internal_cplus_demangle, and all subroutines.
1148         (libiberty_demanglers): Remove entries for ancient GNU (pre-3.0),
1149         Lucid, ARM, HP, and EDG demangling styles.
1150         (cplus_demangle): Remove 'work' variable.  Don't call
1151         internal_cplus_demangle.
1153 2019-01-03  Дилян Палаузов  <dilyan.palauzov@aegee.org>
1155         * configure.ac: Don't configure readline if --with-system-readline is
1156         used.
1157         * configure: Re-generate.
1159 2018-10-31  Joseph Myers  <joseph@codesourcery.com>
1161         Merge from GCC:
1162         PR bootstrap/82856
1163         * multilib.am: New file.  From automake.
1165 2018-09-12  Sergio Durigan Junior  <sergiodj@redhat.com>
1167         * src-release.sh (GDB_SUPPORT_DIRS): Add "contrib".
1169 2018-07-16  Nick Clifton  <nickc@redhat.com>
1171         * src-release.sh (DEVO_SUPPORT): Add test-driver and ar-lib.
1173 2018-07-06  Sebastian Huber  <sebastian.huber@embedded-brains.de>
1175         * config.sub: Sync with upstream version 2018-07-03.
1177 2018-07-05  Sebastian Huber  <sebastian.huber@embedded-brains.de>
1179         * config.guess: Sync with upstream version 2018-06-26.
1180         * config.sub: Sync with upstream version 2018-07-02.
1182 2018-06-29  Alexandre Oliva <oliva@adacore.com>
1184         * configure.ac: Introduce support for @unless/@endunless.
1185         * Makefile.tpl (dep-kind): Rewrite with cond; return
1186         postbootstrap in some cases.
1187         (make-postboot-dep, postboot-targets): New.
1188         (dependencies): Do not output postbootstrap dependencies at
1189         first.  Output non-target ones changed for configure to depend
1190         on stage_last @if gcc-bootstrap, and the original deps @unless
1191         gcc-bootstrap.
1192         * configure.in, Makefile.in: Rebuilt.
1194 2018-06-24  Nick Clifton  <nickc@redhat.com>
1196         * configure: Regenerate.
1198 2018-06-19  Simon Marchi  <simon.marchi@ericsson.com>
1200         * libtool.m4: Use AC_LANG_SOURCE.
1201         * configure.ac: Remove AC_PREREQ, use AC_LANG_SOURCE.
1202         * README-maintainer-mode: Update version requirements.
1203         * ar-lib: New file.
1204         * test-driver: New file.
1205         * configure: Re-generate.
1207 2018-06-18  Eric Botcazou  <ebotcazou@adacore.com>
1209         * Makefile.def (fortran): Add check-target-libgomp-fortran.
1210         * Makefile.tpl (check-target-libgomp-fortran): New phony target.
1211         * Makefile.in: Regenerate.
1213         * configure: Regenerate.
1215 2018-06-18  Simon Marchi  <simon.marchi@ericsson.com>
1217         * configure.ac: Sync with GCC, remove MPX-related things.
1219 2018-05-01  Nick Clifton  <nickc@redhat.com>
1221         * config.guess: Synchronize with config project master sources.
1222         * config.sub: Likewise.
1224 2018-05-01  Francois H. Theron  <francois.theron@netronome.com>
1226         * configure.ac: Added "nfp" target.
1227         * configure: Regenerate.
1229 2018-02-13  Maciej W. Rozycki  <macro@mips.com>
1231         * configure.ac <wasm32-*-*> (noconfigdirs): Add `ld'.
1232         * configure: Regenerate.
1234 2018-01-30  Nick Clifton  <nickc@redhat.com>
1236         * src-release.sh (do_proto_toplev): Add patterns for more junk files
1237         to delete before creating the tarball.
1239 2018-01-29  Nick Clifton  <nickc@redhat.com>
1241         * src-release.sh (do_proto_toplev): Strip patch remnant files from
1242         the sources before creating the tarball.
1244 2018-01-13  Nick Clifton  <nickc@redhat.com>
1246         * src-release.sh: Update copyright notice.  Change reference to devo
1247         to be a reference to root.
1249 2018-01-10  Nick Clifton  <nickc@redhat.com>
1251         * config-ml.in: Sync with gcc sources.
1252         * config.guess: Likewise.
1253         * config.sub: Likewise.
1254         * configure.ac: Likewise.
1255         * configure: Regenerate.
1257 2017-12-14  Nick Clifton  <nickc@redhat.com>
1259         * COPYING.LIBGLOSS: Update address of FSF in copyright notice.
1261 2017-12-12  Stafford Horne  <shorne@gmail.com>
1263         * configure.ac: Remove logic adding gdb to noconfigsdirs for or1k.
1264         * configure: Regenerate.
1266 2017-09-15  Nick Clifton  <nickc@redhat.com>
1268         * src-release.sh (LZIPPROG): New define.  Provides the name of the
1269         lzip program.
1270         (do_lz): New function.  Compresses a tarball using the lzip
1271         program.
1272         (do_compress): Add support for lzip compression.
1273         (usage): Mention -l option.
1274         (build_release): Support -l option to invoke lzip compression.
1276 2017-09-15  Alan Modra  <amodra@gmail.com>
1278         * src-release.sh (do_proto_toplev): Revert last patch.  Enable or
1279         disable binutils, gas, gdb, gold, gprof, ld, libdecnumber, readline,
1280         and sim depending on $tool and $support_files.  Echo configure line.
1282 2017-09-14  Matt Rice <ratmice@gmail.com>
1284         * src-release.sh (do_proto_toplev): Enable gold during release process.
1286 2017-04-13  Andrew Jenner  <andrew@codesourcery.com>
1288         * config.sub: Sync with master version in config project.
1290 2017-04-03  Andrew Jenner  <andrew@codesourcery.com>
1292         * config.sub: Handle ia16 in $basic_machine.
1294         bfd/
1295         * config.bfd: Handle ia16.
1297         gas/
1298         * configure.tgt: Handle ia16.
1300         ld/
1301         * configure.tgt: Handle ia16.
1303 2017-03-22  Nick Clifton  <nickc@redhat.com>
1305         * config.sub: Sync with master version in config project.
1306         * config.guess: Likewise.
1308 2017-01-23  Nick Clifton  <nickc@redhat.com>
1310         * configure.ac: Update year in copyright notice.
1311         Sync from FSF GCC mainline, bringing in the following patches.
1312         * Makefile.def: Likewise.
1313         * Makefile.tpl: Likewise.
1314         * configure: Regenerate.
1315         * Makefile.in: Regenerate.
1317         2016-12-21  Jakub Jelinek  <jakub@redhat.com>
1319         * configure.ac: Don't bootstrap libmpx unless --with-build-config
1320         includes bootstrap-mpx.
1322         2016-12-01  Matthias Klose  <doko@ubuntu.com>
1324         * configure.ac: Don't use pkg-config to check for bdw-gc.
1326         2016-11-30  Matthias Klose  <doko@ubuntu.com>
1328         * Makefile.def: Remove reference to boehm-gc target module.
1329         * configure.ac: Include pkg.m4, check for --with-target-bdw-gc
1330         options and for the bdw-gc pkg-config module.
1332         2016-11-15  Matthias Klose  <doko@ubuntu.com>
1334         * config-ml.in: Remove references to GCJ.
1335         * configure.ac: Likewise.
1337         2016-09-30  Jakub Jelinek  <jakub@redhat.com>
1339         * configure.ac: Add target-libffi to target_libraries.
1340         Readd libgcj target disablings, modified to only target-libffi.
1341         Readd target addition of go to unsupported languages.
1343         2016-09-30  Andrew Haley  <aph@redhat.com>
1345         * Makefile.def: Remove libjava.
1346         * Makefile.tpl: Likewise.
1347         * configure.ac: Likewise.
1349         2016-09-26  Anton Kolesov  <Anton.Kolesov@synopsys.com>
1351         * configure.ac: Disable "sim" directory for arc*-*-*.
1353         2016-09-12  Maciej W. Rozycki  <macro@imgtec.com>
1355         * configure.ac: Check for the minimum in-tree MPFR version
1356         handled.
1358 2016-12-31  Alan Modra  <amodra@gmail.com>
1360         * config.sub: Import from upstream.
1362 2016-12-08  Alan Modra  <amodra@gmail.com>
1364         * configure: Regenerate.
1366 2016-12-02  Josh Conner  <joshconner@google.com>
1368         * configure.ac: Add fuchsia to targets that use ELF.
1369         * configure: Regenerated.
1371 2016-11-07  Doug Evans  <dje@google.com>
1373         * config.sub: Sync with upstream version 2016-11-03.
1374         git://git.sv.gnu.org/config.git
1375         * config.guess: Sync with upstream version 2016-10-02.
1377 2016-09-27  Simon Marchi  <simon.marchi@polymtl.ca>
1379         * .gitignore: Add archives and make stamps.
1381 2016-07-20  Yan-Ting Lin  <currygt52@gmail.com>
1383         * configure.ac (nds32*-*-*): Remove entry to enable gdb.
1384         * configure: Regenerated.
1386 2016-06-28  Walter Lee  <walt@tilera.com>
1388         * configure.ac (tilepro-*-*): Add gdb to noconfigdirs.
1389         * configure: Regenerate.
1391 2016-05-28  Alan Modra  <amodra@gmail.com>
1393         * Makefile.tpl (configure): Depend on m4 files included.
1394         * Makefile.in: Regenerate.
1396 2016-05-27  Nick Clifton  <nickc@redhat.com>
1398         * config.guess (Alpha OSF1): Fix typo introduced during the most
1399         recent synchronization update.
1401 2016-05-23  Nick Clifton  <nickc@redhat.com>
1403         * Import these patches from the gcc mainline:
1405         2016-05-16  Jakub Sejdak  <jakub.sejdak@phoesys.com>
1407         * config.guess: Import version 2016-04-02 (newest).
1408         * config.sub: Import version 2016-05-10 (newest).
1410 2016-04-19  Nick Clifton  <nickc@redhat.com>
1412         * Import this patch from the GCC mainline:
1414         2016-04-13  Segher Boessenkool  <segher@kernel.crashing.org>
1416         PR bootstrap/70173
1417         * Makefile.tpl (local-distclean): Delete the libcc1, gnattools,
1418         and gotools directories.  Delete the stage_final file.
1419         * Makefile.in: Regenerate.
1421 2016-03-17  Cary Coutant  <ccoutant@gmail.com>
1423         * configure.ac: Add mips and s390 to the gold target check.
1424         * configure: Regenerate.
1426 2016-02-10  Nick Clifton  <nickc@redhat.com>
1428         Import these patches from the GCC mainline:
1430         2016-01-12  Andris Pavenis  <andris.pavenis@iki.fi>
1432         * configure.ac: Enable LTO for DJGPP
1433         * configure: Regenerate
1435         2016-01-24  Mikhail Maltsev  <maltsevm@gmail.com>
1437         PR bootstrap/69329
1438         * Makefile.tpl (BASE_FLAGS_TO_PASS): Add LSAN_OPTIONS.
1439         * Makefile.in: Regenerate.
1441         2016-01-25  Aditya Kumar  <aditya.k7@samsung.com>
1442                     Sebastian Pop  <s.pop@samsung.com>
1444         * Makefile.in: Regenerate.
1445         * Makefile.tpl: Export ISLVER.
1446         * configure: Regenerate.
1447         * config/isl.m4: Detect isl-0.15.
1449         2016-01-29  Sebastian Pop  <s.pop@samsung.com>
1451         * config/isl.m4: Add comments about isl-0.16.
1452         * configure: Regenerate.
1454 2016-01-12  H.J. Lu  <hongjiu.lu@intel.com>
1456         Sync with GCC
1457         2015-11-26  David Edelsohn  <dje.gcc@gmail.com>
1459         * m4/libtool.m4 (export_symbols_cmds) [AIX]: Add global TLS "L"
1460         symbols.
1462         2016-01-12  Bernd Edlinger  <bernd.edlinger@hotmail.de>
1464         PR bootstrap/69134
1465         * Makefile.def (mpfr): Disable assembler.
1466         * Makefile.in: Regenerate.
1468 2016-01-11  Nick Clifton  <nickc@redhat.com>
1470         Import the following changes from the GCC mainline:
1472         2015-11-13  Tsvetkova Alexandra  <aleksandra.tsvetkova@intel.com>
1474         * configure.ac: Enable libmpx by default.
1475         * configure: Regenerated.
1477         2015-11-19  Martin Liska  <mliska@suse.cz>
1479         * .gitignore: Add .clang-format to ignored files.
1480         * Makefile.tpl: Add clang-format.
1481         * Makefile.in: Regenerate.
1483         2015-12-01  Andreas Tobler  <andreast@gcc.gnu.org>
1485         PR libffi/65726
1486         * Makefile.def (lang_env_dependencies): Make libffi depend
1487         on cxx.
1488         * Makefile.in: Regenerate.
1490         2015-12-02  Ian Lance Taylor  <iant@google.com>
1492         PR go/66147
1493         * Makefile.tpl (HOST_EXPORTS): Add XGCC_FLAGS_FOR_TARGET.
1494         * Makefile.in: Regenerate.
1496         2015-12-17  Nathan Sidwell  <nathan@acm.org>
1498         * config/isl.m4 (ISL_CHECK_VERSION): Add gmp libs.
1499         * configure: Regenerate.
1501         2015-12-17  Sebastian Pop  <s.pop@samsung.com>
1503         * Makefile.in: Replace ISL with isl.
1504         * Makefile.tpl: Same.
1505         * config/isl.m4: Same.
1506         * configure.ac: Same.
1507         * contrib/download_prerequisites: Same.
1508         * configure: Regenerate.
1510         2016-01-01  Ben Elliston  <bje@gnu.org>
1512         * config.guess: Import version 2016-01-01.
1513         * config.sub: Likewise.
1515 2015-11-20  Tristan Gingold  <gingold@adacore.com>
1517         * configure.ac: Add aarch64-*-darwin* and arm-*-darwin*.
1518         * configure: Regenerate.
1520 2015-10-21  Nick Clifton  <nickc@redhat.com>
1522         PR gas/19109
1523         * configure.ac: Note the 'none' is an acceptable argument to
1524         --enable-compressed-debug-sections.
1525         * configure: Regenerate.
1527 2015-10-20  H.J. Lu  <hongjiu.lu@intel.com>
1529         PR gas/19109
1530         * configure.ac: Add
1531         --enable-compressed-debug-sections={all,gas,gold,ld}.
1532         * configure: Regenerated.
1534 2015-09-30  Nick Clifton  <nickc@redhat.com>
1536         Import the following patches from the GCC mainline:
1538         2015-08-23  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
1540         PR libfortran/54572
1541         * Makefile.def: Make libgfortran depend on libbacktrace.
1542         * Makefile.in: Regenerate.
1544         2015-08-12  Tom de Vries  <tom@codesourcery.com>
1546         PR other/67092
1547         PR other/67098
1548         * configure.ac: Remove --with_host_libstdcxx support.
1549         * configure: Regenerate.
1551         2015-08-10  Thomas Schwinge  <thomas@codesourcery.com>
1552             Jakub Jelinek  <jakub@redhat.com>
1554         * configure.ac (noconfigdirs): Don't add "target-libgomp" for target
1555         nvptx*-*-*.
1556         * configure: Regenerate.
1558 2015-08-07  H.J. Lu  <hongjiu.lu@intel.com>
1560         Sync with GCC
1561         2015-07-28  Ben Elliston  <bje@gnu.org>
1563         * config.sub, config.guess: Import from upstream.
1565 2015-08-06  Yaakov Selkowitz  <yselkowi@redhat.com>
1567         * Makefile.def (libiconv): Define bootstrap=true.
1568         Mark pdf/html/info as missing.
1569         (configure-gcc): Depend on all-libiconv.
1570         (all-gcc): Ditto.
1571         (configure-libcpp): Ditto.
1572         (all-libcpp): Ditto.
1573         (configure-intl): Ditto.
1574         (all-intl): Ditto.
1575         * Makefile.in: Regenerate.
1577 2015-07-27  H.J. Lu  <hongjiu.lu@intel.com>
1579         Sync with GCC
1580         2015-07-24  Michael Darling  <darlingm@gmail.com>
1582         PR other/66259
1583         * config-ml.in: Reflects renaming of configure.in to configure.ac
1584         * configure: Likewise
1585         * configure.ac: Likewise
1587 2015-07-14  H.J. Lu  <hongjiu.lu@intel.com>
1589         * Makefile.in: Regenerated.
1591         Sync with GCC
1592         2015-05-21  Jason Merrill  <jason@redhat.com>
1594         * Makefile.tpl: Update comments.
1596         2015-04-22  Bernhard Reutner-Fischer  <aldot@gcc.gnu.org>
1598         * Makefile.tpl: Remove surplus whitespace throughout.
1600         2015-03-25  Martin Liska  <mliska@suse.cz>
1601                     Yury Gribov  <y.gribov@samsung.com>
1603         * Makefile.tpl: Fix ln source location for vimrc file.
1605 2015-07-14  H.J. Lu  <hongjiu.lu@intel.com>
1607         Sync with GCC
1608         2015-05-16  James Bowman  <james.bowman@ftdichip.com>
1610         * configure.ac: FT32 target added.
1611         * configure: Regenerate.
1613 2015-07-14  H.J. Lu  <hongjiu.lu@intel.com>
1615         Sync with GCC
1616         2015-06-02  Jason Merrill  <jason@redhat.com>
1618         PR bootstrap/66319
1619         * configure.ac: Use -std=gnu++98.
1621         2015-05-28  Mike Frysinger  <vapier@gentoo.org>
1623         * configure.ac (--vtable-verify): Use AS_HELP_STRING for help.
1624         * configure: Regenerate.
1626         2015-05-11  Paulo Matos  <paulo@matos-sorge.com>
1628         * configure.ac: Fix typo.
1629         * configure: Regenerate.
1631         2015-05-03  Matthias Klose  <doko@ubuntu.com>
1633         * configure.ac: Match $host configured with triplets.
1634         * configure: Regenerate.
1636         2015-04-17  Jakub Jelinek  <jakub@redhat.com>
1638         PR bootstrap/62077
1639         * configure.ac (--enable-stage1-checking): Default to
1640         release,misc,gimple,rtlflag,tree,types if --disable-checking
1641         or --enable-checking is not specified and DEV-PHASE is not
1642         experimental.
1643         * configure: Regenerated.
1645         2015-03-27  Uros Bizjak  <ubizjak@gmail.com>
1647         Install back PR target/47230 fix (Revert the revert).
1649 2015-06-30  H.J. Lu  <hongjiu.lu@intel.com>
1651         * configure.ac (ospace_frag): Enable for i?86*-*-elfiamcu
1652         target.
1653         * configure: Regenerate.
1655 2015-05-13  John David Anglin  <dave.anglin@bell.net>
1657         * configure.ac: Disable configuration of GDB for HPUX targets.
1658         * configure: Regenerate.
1660 2015-05-01  H.J. Lu  <hongjiu.lu@intel.com>
1662         PR ld/18355
1663         * Makefile.def: Add extra_configure_flags to host zlib.
1664         * configure.ac (extra_host_zlib_configure_flags): New.  Set
1665         to --enable-host-shared When bfd is to be built as shared
1666         library.  AC_SUBST.
1667         * Makefile.in: Regenerated.
1669 2015-04-15  Mike Frysinger  <vapier@gentoo.org>
1670             Hans-Peter Nilsson  <hp@axis.com>
1672         Adjust src-release.sh for sim using the gdb create-version.sh.
1673         * src-release.sh (tar_compress): If there's a fifth parameter,
1674         use that in the getver call instead of $tool.
1675         (sim_release): Pass gdb as fifth parameter to tar_compress.
1676         (SIM_SUPPORT_DIRS): Add gdb/common/create-version.sh.
1678 2015-04-14  Max Ostapenko  <m.ostapenko@partner.samsung.com>
1680         * Makefile.tpl (EXTRA_HOST_EXPORTS): New variables.
1681         (EXTRA_BOOTSTRAP_FLAGS): Likewise.
1682         (check-[+module+]): Add EXTRA_HOST_EXPORTS and EXTRA_BOOTSTRAP_FLAGS.
1683         * Makefile.in: Regenerate.
1685 2015-04-01  H.J. Lu  <hongjiu.lu@intel.com>
1687         * configure.ac: Add --with-system-zlib.
1688         * configure: Regenerated.
1690 2015-03-31  H.J. Lu  <hongjiu.lu@intel.com>
1692         * src-release.sh: Don't configure with  --with-target-subdir=.
1693         --disable-multilib.
1695 2015-03-31  H.J. Lu  <hongjiu.lu@intel.com>
1697         * src-release.sh (DEVO_SUPPORT): Replace src-release with
1698         src-release.sh.
1700 2015-03-30  Ed Schouten  <ed@nuxi.nl>
1702         * config.sub: Update from upstream, to 2015-03-04 version.
1703         * config.guess: Likewise.
1705 2015-03-30  H.J. Lu  <hongjiu.lu@intel.com>
1707         * Makefile.def (dependencies): Add all-zlib to all-bfd.
1708         * Makefile.in: Regenerated.
1710 2015-03-28  H.J. Lu  <hongjiu.lu@intel.com>
1712         * src-release.sh (do_proto_toplev): Configure with --target
1713         --with-target-subdir and --disable-multilib.
1714         (BINUTILS_SUPPORT_DIRS): Add zlib.
1715         (GAS_SUPPORT_DIRS): Likewise.
1716         (GDB_SUPPORT_DIRS): Likewise.
1717         (SIM_SUPPORT_DIRS): Likewise.
1719 2015-03-17  H.J. Lu  <hongjiu.lu@intel.com>
1721         * configure.ac (target_configdirs): Exclude target-zlib if
1722         target-libjava isn't built.
1723         * configure: Regenerated.
1725 2015-03-17  H.J. Lu  <hongjiu.lu@intel.com>
1727         Sync with GCC
1728         2014-06-13  Thomas Schwinge  <thomas@codesourcery.com>
1730         * config-ml.in: Robustify ac_configure_args parsing.
1732 2015-03-16  H.J. Lu  <hongjiu.lu@intel.com>
1734         * Makefile.def: Updated from GCC trunk.
1735         * Makefile.tpl: Likewise.
1736         * configure.ac: Likewise.
1737         * Makefile.in: Regenerated.
1738         * configure: Likewise.
1740 2015-01-28  James Bowman  <james.bowman@ftdichip.com>
1742         * configure.ac: Add FT32 support.
1743         * configure: Regenerate.
1745 2015-01-12  Anthony Green  <green@moxielogic.com>
1747         * configure.ac: Don't disable gprof for moxie.
1748         * configure: Rebuild.
1750 2015-01-03  Andrew Pinski  <apinski@cavium.com>
1752         * Makefile.def (flags_to_pass): Pass OBJCOPY_FOR_TARGET also.
1753         * Makefile.tpl (HOST_EXPORTS): Add OBJCOPY_FOR_TARGET.
1754         (BASE_TARGET_EXPORTS): Add OBJCOPY.
1755         (OBJCOPY_FOR_TARGET): New variable.
1756         (EXTRA_TARGET_FLAGS): Add OBJCOPY.
1757         * Makefile.in: Regenerate.
1758         * configure.ac: Check for already installed target objcopy.
1759         Also GCC_TARGET_TOOL on objcopy.
1760         * configure: Regenerate.
1762 2015-01-02  Hans-Peter Nilsson  <hp@bitrange.com>
1764         * config.sub: Update from upstream, to 2015-01-01 version.
1765         * config.guess: Ditto.
1767 2014-12-06  Eric Botcazou  <ebotcazou@adacore.com>
1769         * config.sub: Update from upstream config repo.
1771 2014-11-24  H.J. Lu  <hongjiu.lu@intel.com>
1773         * libtool.m4: Updated from GCC trunk.
1775 2014-11-16  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
1777         * config.guess: Update from upstream config repo.
1778         * config.sub: Ditto.
1780 2014-11-16  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
1782         * move-if-change: Update from upstream gnulib.
1784 2014-11-16  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
1786         * compile: Sync with upstream Automake.
1787         * depcomp: Ditto.
1788         * install-sh: Ditto.
1789         * missing: Ditto.
1790         * mkinstalldirs: Ditto.
1791         * ylwrap: Ditto.
1793 2014-10-15  Tristan Gingold  <gingold@adacore.com>
1795         * src-release.sh (do_proto_toplev): Configure with --target.
1797 2014-10-03  Jing Yu  <jingyu@google.com>
1799         * configure.ac: Add aarch64 to list of targets that support gold.
1800         * configure: Regenerate.
1802 2014-09-12  Andrew Bennett  <andrew.bennett@imgtec.com>
1804         * configure.ac: Add mips*-img-elf* target triple.
1805         * configure: Regenerate.
1807 2014-09-06  Kuan-Lin Chen  <kuanlinchentw@gmail.com>
1808         * configure: Disable gdb for nds32*-*-* until supported.
1809         * configure.ac: Disable gdb for nds32*-*-* until supported.
1811 2014-09-05  Joel Brobecker  <brobecker@adacore.com>
1813         * configure: Regenerate.
1815 2014-08-27  Will Newton  <will.newton@linaro.org>
1817         * src-release.sh: New file.
1818         * src-release: Remove file.
1820 2014-07-27  Joel Sherrill <joel.sherrill@oarcorp.com>
1822         GDB not supported for or1k*-*-rtems*
1823         * configure.ac (or1k*-*-rtems*): gdb not supported.  The ordering
1824         of the stanzas results in this not being caught by or1k*-*-* later.
1825         * configure. Regenerated.
1827 2014-07-25  Samuel Bronson  <naesten@gmail.com>
1829         * .gitattributes: New file for use with git-merge-changelog.
1831 2014-07-21  Joel Sherrill  <joel.sherrill@oarcorp.com>
1833         Disable gdb for or1k*-*-* until supported
1834         * configure.ac (or1k*-*-*): Disable gdb.
1835         * configure: Regenerated.
1837 2014-05-14  Sandra Loosemore  <sandra@codesourcery.com>
1839         * configure.ac (target_makefile_frag): Set for nios2-*-elf*.
1840         * configure: Regenerated.
1842 2014-03-26  Jakub Jelinek  <jakub@redhat.com>
1844         PR sanitizer/56781
1845         * Makefile.def: Set bootstrap=true; for host fixincludes.
1846         * configure.ac: Don't bootstrap host fixincludes unless
1847         --with-build-config=bootstrap-{a,ub}san.
1848         * Makefile.in: Regenerated.
1849         * configure: Regenerated.
1851 2014-03-21  Jakub Jelinek  <jakub@redhat.com>
1853         * configure.ac: Move BUILD_CONFIG set up earlier.  Add
1854         --enable-vtable-verify option parsing.  Don't add
1855         target-libsanitizer to bootstrap_target_libs unless
1856         --with-build-config=bootstrap-asan or
1857         --with-build-config=bootstrap-ubsan.  Don't add target-libvtv
1858         to bootstrap_target_libs unless --enable-vtable-verify.
1859         * configure: Regenerated.
1861 2014-03-07  Jakub Jelinek  <jakub@redhat.com>
1863         PR bootstrap/58572
1864         * Makefile.tpl (POSTSTAGE1_CXX_EXPORT): Use -isystem instead of
1865         -I for libstdc++-v3 includes if $(LEAN).
1866         * Makefile.in: Regenerated.
1868 2014-02-24  Walter Lee  <walt@tilera.com>
1870         * configure.ac (tilepro-*-*) Change to tilepro*-*-*.
1871         (tilegx-*-*): Change to tilegx*-*-*.
1872         * configure: Regenerate.
1874 2014-05-01  Richard Sandiford  <rdsandiford@googlemail.com>
1876         * config.sub, config.guess: Import from upstream.
1878 2014-04-04  Eric Botcazou  <ebotcazou@adacore.com>
1880         PR bootstrap/60620
1881         * Makefile.def (dependencies): Make gnattools depend on libstdc++-v3.
1882         * Makefile.in: Regenerate.
1884 2014-03-28  Yaakov Selkowitz  <yselkowitz@users.sourceforge.net>
1886         * Makefile.def (dependencies): Make all-ld depend on all-binutils
1887         for WINDRES_FOR_TARGET in default-manifest.o rule.
1888         * Makefile.in: Regenerate.
1890 2014-02-04  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
1892         PR target/59788
1893         * ltmain.sh (opt_duplicate_compiler_generated_deps): Enable on
1894         *solaris2*.
1896 2013-12-19  Keven Boell  <keven.boell@intel.com>
1898         * cp-namespace.c (cp_lookup_nested_symbol): Enable
1899         nested lookups for fortran modules.
1900         * dwarf2read.c (read_module): Add fortran module to
1901         the symbol table.
1902         (add_partial_symbol, add_partial_module): Add fortran
1903         module to the partial symbol table.
1904         (new_symbol_full): Create full symbol for fortran module.
1905         * f-exp.y (yylex): Add new module domain to be parsed.
1906         * symtab.h: New domain for fortran modules.
1908 2013-12-19  Keven Boell  <keven.boell@intel.com>
1910         * f-exp.y (yylex): Add domain array to enable lookup
1911         in multiple domains. Loop over lookup domains and try
1912         to find requested symbol. Add STRUCT_DOMAIN to lookup
1913         domains to be able to query for user defined types.
1915 2013-12-13  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
1917         * configure.ac: Add user-friendly check for native x86_64-linux
1918         multilibs.
1919         * configure: Regenerate.
1921 2013-11-23  Alan Modra  <amodra@gmail.com>
1923         * config.sub, config.guess: Import from upstream.
1925 2013-11-07  Thomas Schwinge  <thomas@codesourcery.com>
1927         * Makefile.in: Regenerate.
1929         * Makefile.tpl: Fix typo.
1930         * Makefile.in: Regenerate partially.
1932 2013-11-04  Balaji V. Iyer  <balaji.v.iyer@intel.com>
1934         * configure.ac: Added libcilkrts to noconfig list when C++ is not
1935         supported.
1936         * configure: Regenerated.
1938 2013-10-30  Jason Merrill  <jason@redhat.com>
1940         * Makefile.tpl (STAGE1_CONFIGURE_FLAGS): Pass
1941         --disable-build-format-warnings.
1943 2013-10-29  Balaji V. Iyer  <balaji.v.iyer@intel.com>
1945         * Makefile.def: Add libcilkrts to target_modules.  Make libcilkrts
1946         depend on libstdc++ and libgcc.
1947         * configure: Regenerate.
1948         * configure.ac: Added libcilkrts to target binaries.  Also, restrict
1949         libcilkrts for POSIX and i*86, and x86_64 architectures.
1950         * Makefile.in: Added libcilkrts related fields to support building it.
1952 2013-10-26  Jeff Law  <law@redhat.com>
1954         * Makefile.def (target_modules): Remove libmudflap
1955         (languages): Remove check-target-libmudflap).
1956         * Makefile.in: Rebuilt.
1957         * Makefile.tpl (check-target-libmudflap-c++): Remove.
1958         * configure.ac (target_libraries): Remove target-libmudflap.
1959         Remove checks which disabled libmudflap on some systems.
1960         * configure: Rebuilt.
1961         * libmudflap: Directory removed.
1963 2013-10-16  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
1965         * configure.ac: Update from GCC.
1966         * configure: Regenerate.
1968 2013-10-15  Hans-Peter Nilsson  <hp@axis.com>
1970         * src-release (do-proto-toplevel): Support subdir-path-prefixed
1971         files in SUPPORT_FILES.
1972         (SIM_SUPPORT_DIRS): New variable.
1973         (sim.tar.bz2): New rule.
1975 2013-10-08  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
1977         * configure.ac: Update from GCC.
1978         * configure: Regenerate.
1980 2013-10-01  Jeff Johnston  <jjohnstn@redhat.com>
1982         * COPYING.NEWLIB: Update with new copyright.
1984 2013-09-21  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
1986         * configure.ac: Update from GCC.
1987         * configure: Regenerate.
1989 2013-09-20  Alan Modra  <amodra@gmail.com>
1991         * libtool.m4 (_LT_ENABLE_LOCK <ld -m flags>): Remove non-canonical
1992         ppc host match.  Support little-endian powerpc linux hosts.
1994 2013-08-16  Joel Brobecker  <brobecker@adacore.com>
1996         * src-release (VER): When using $(TOOL)/common/create-version.sh,
1997         strip the "-cvs" suffix from the version number if present.
1999 2013-08-12  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
2001         * configure.ac: Sync with GCC repo.
2002         * Makefile.def: Ditto.
2003         * configure: Regenerate.
2004         * Makefile.in: Ditto.
2006 2013-07-22  Joel Brobecker  <brobecker@adacore.com>
2008         * src-release (VER): Use $(TOOL)/common/create-version.sh
2009         if it exists.
2011 2013-06-22  Richard Sandiford  <rdsandiford@googlemail.com>
2013         * configure.ac (mips*-*-bsd*, mips*-*-ultrix*, mips*-*-osf*)
2014         (mips*-*-ecoff*, mips*-*-pe*, mips*-*-irix* [v4 and earlier])
2015         (mips*-*-lnews*, mips*-*-riscos*): Add gas and ld to noconfigdirs.
2016         * configure: Regenerate.
2018 2013-06-01  George Thomas <george.thomas@atmel.com>
2020         * include/opcode/avr.h: Rename AVR_ISA_XCH to AVR_ISA_RMW. Remove
2021         from AVR_ISA_XMEGA and add new AVR_ISA_XMEGAU
2023 2013-05-06  Sandra Loosemore  <sandra@codesourcery.com>
2025         * COPYING.NEWLIB: Add Altera Corporation copyright.
2027 2013-04-29  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
2029         * config.guess: Update from config repo.
2030         * config.sub: Ditto.
2032 2013-04-22  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
2034         * Makefile.def: Sync with GCC.
2035         * Makefile.in: Regenerate.
2037 2013-04-22  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
2039         * configure.ac: Sync with GCC.
2040         * configure: Regenerate.
2042 2013-03-22  Mike Frysinger  <vapier@gentoo.org>
2044         * src-release (VER): Change bfd/configure.in sed to use the new
2045         `bfd/configure --version` output.
2047 2013-02-15  Yufeng Zhang  <yufeng.zhang@arm.com>
2049         * configure.ac: Sync with GCC repo.
2050         * configure: Ditto.
2052 2013-02-05  Ian Lance Taylor  <iant@google.com>
2054         PR go/55969
2055         * configure.ac: Disable libgo on some systems where it does not
2056         work.
2057         * configure: Rebuild.
2059 2013-02-05  Alan Modra  <amodra@gmail.com>
2061         * configure: Regenerate after syncing config/.
2063 2013-01-15  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
2065         * configure.ac: Sync with GCC repo.
2066         * configure: Ditto.
2067         * Makefile.def: Ditto.
2068         * Makefile.in: Ditto.
2070 2013-01-11  Joel Brobecker  <brobecker@adacore.com>
2072         Sync with GCC, merge:
2074         2013-01-09  Jason Merrill  <jason@redhat.com>
2076         * .gitignore: Import from gdb repository.
2078 2013-01-11  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
2080         * config.sub: Update from config repo.
2082 2013-01-11  Eric Botcazou  <ebotcazou@adacore.com>
2084         * Makefile.tpl (BOOT_ADAFLAGS): Remove -gnata.
2085         * Makefile.in: Regenerate.
2087 2013-01-09  H.J. Lu  <hongjiu.lu@intel.com>
2089         * Makefile.def (configure-gcc): Depend on all-gmp.
2090         (all-gcc): Remove dependency on all-gmp.
2091         * Makefile.in: Regenerated.
2093 2013-01-08  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
2095         * config.guess: Update from config repo.
2096         * config.sub: Ditto.
2098 2013-01-07  Jeff Johnston  <jjohnstn@redhat.com>
2100         * COPYING.LIBGLOSS: Remove license for mips/lsi33k-stub.h which no longer
2101         exists and replace the new bfin license in its location.
2103 2013-01-07  H.J. Lu  <hongjiu.lu@intel.com>
2105         PR gas/14899
2106         * Makefile.def (dependencies): Make all-binutils, all-gprof,
2107         all-ld and all-gold depend on all-gas.
2108         * Makefile.in: Regenerated.
2110 2012-12-29  Ben Elliston  <bje@gnu.org>
2112         * config.guess: Update to 2012-12-29 version.
2113         * config.sub: Likewise.
2115 2012-12-20  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
2117         * Makefile.def (install-target-libgo): Depend on
2118         install-target-libatomic. Merged from GCC repo.
2119         * Makefile.in: Regenerate.
2121 2012-12-17  Jeff Johnston  <jjohnstn@redhat.com>
2123         * COPYING.LIBGLOSS: Add license for bfin libgloss.
2125 2012-12-16  Thomas Schwinge  <thomas@codesourcery.com>
2127         * configure.ac (ENABLE_GOLD): Consider *-*-gnu* targets ELF.
2128         * configure: Regenerate.
2130 2012-12-11  H.J. Lu  <hongjiu.lu@intel.com>
2132         * Makefile.def (target_modules): Add bootstrap=true and
2133         raw_cxx=true to libsanitizer.
2134         * configure.ac (bootstrap_target_libs): Add libsanitizer.
2135         * Makefile.in: Regenerated.
2136         * configure: Likewise.
2138 2012-12-08  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
2140         * config.sub: Merge from config repo.
2142 2012-11-30  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
2144         * configure.ac: Merge from GCC.
2145         * Makefile.tpl: Ditto.
2146         * Makefile.in: Ditto.
2147         * configure: Ditto.
2149 2012-11-28  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
2151         * configure.ac (noconfigdirs): Merge from GCC.
2152         * configure: Regenerate.
2154 2012-11-19  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
2156         * config.sub (arm): Merge from upstream: Handle armv[6-8] targets.
2158 2012-11-14  Roland McGrath  <mcgrathr@google.com>
2160         * configure.ac (ENABLE_GOLD): Consider *-*-nacl* targets ELF.
2161         * configure: Regenerate.
2163 2012-11-13  Richard Henderson  <rth@redhat.com>
2165         * configure.ac: Move libsanitizer logic to subdirectory.
2166         * configure: Regenerate.
2168 2012-11-13  Dodji Seketeli  <dodji@redhat.com>
2170         * configure.ac: Enable libsanitizer just on x86 linux for now.
2171         * configure: Re-generate.
2173 2012-11-13  David Edelsohn  <dje.gcc@gmail.com>
2175         * configure.ac: Merge libquadmath sections.
2176         * configure: Regenerate.
2178 2012-11-12  Wei Mi <wmi@google.com>
2180         * configure.ac: Add libsanitizer to target_libraries.
2181         * Makefile.def: Ditto.
2182         * configure: Regenerate.
2183         * Makefile.in: Regenerate.
2185 2012-11-03  H.J. Lu  <hongjiu.lu@intel.com>
2187         * configure: Regenerated.
2189 2012-11-03  Robert Mason  <rbmj@verizon.net>
2191         * configure.ac: add --disable-libstdcxx configure option
2192         and handle defaulted state only for VxWorks, ARM-wince-pe and AVR.
2194 2012-10-24  Corinna Vinschen  <corinna@vinschen.de>
2196         * configure.ac (FLAGS_FOR_TARGET,target=cygwin): Fix for building
2197         against Mingw64 w32api.
2198         * configure: Regenerate.
2200 2012-10-23  Eric Botcazou  <ebotcazou@adacore.com>
2202         PR bootstrap/54820
2203         * configure.ac (have_static_libs): Force 'no' for GCC version < 4.5.
2204         * configure: Regenerate.
2206 2012-10-22  Eric Botcazou  <ebotcazou@adacore.com>
2208         PR bootstrap/54820
2209         * Makefile.tpl (STAGE1_FLAGS_TO_PASS): New variable.
2210         (all-[+prefix+][+module+]): Pass stage1_args to sub-makes.
2211         (all-stage[+id+]-[+prefix+][+module+]): Likewise, if prev is false.
2212         (clean-stage[+id+]-[+prefix+][+module+]): Likewise, if prev is false.
2213         (host_modules): Set stage1_args to STAGE1_FLAGS_TO_PASS.
2214         * Makefile.in: Regenerate.
2215         * configure.ac (have_static_libs): New variable and associated check.
2216         (stage1-ldflags): Move to after stage1_libs and set to -static-libstdc++
2217         -static-libgcc if stage1_libs is empty and have_static_libs is yes.
2218         * configure: Regenerate.
2220 2012-10-10  David Holsgrove  <david.holsgrove@xilinx.com>
2222         * config.guess, config.sub: Include updated version from
2223         config-patches.  Adds microblaze little endian support.
2225 2012-09-28  Ian Lance Taylor  <iant@google.com>
2227         * Makefile.def: Make all-target-libgo depend on
2228         all-target-libbacktrace.
2229         * Makefile.in: Rebuild.
2231 2012-09-26  Ian Lance Taylor  <iant@google.com>
2233         * Makefile.def: Make all-gcc depend on all-libbacktrace.
2234         * Makefile.in: Rebuild.
2236 2012-09-06  Diego Novillo  <dnovillo@google.com>
2238         * configure.ac: Bump minimum GMP version to 4.2.3.
2239         * configure: Re-generate.
2241 2012-09-05  Georg-Johann Lay  <avr@gjlay.de>
2243         PR target/54461
2244         * configure.ac (noconfigdirs,target=avr-*-*): Add target-newlib,
2245         target-libgloss if not configured --with-avrlibc=no.
2246         * configure: Regenerate.
2248 2012-09-04  Jason Merrill  <jason@redhat.com>
2250         * configure.ac: Fix --enable-languages=all.
2252 2012-09-03  Richard Guenther  <rguenther@suse.de>
2254         PR bootstrap/54138
2255         * configure.ac: Re-organize ISL / CLOOG checks to allow
2256         disabling with either --without-isl or --without-cloog.
2257         * configure: Regenerated.
2259 2012-09-03  Georg-Johann Lay  <avr@gjlay.de>
2261         * configure.ac (noconfigdirs,target=avr): Add target-libquadmath.
2262         * configure: Regenerate.
2264 2012-09-21  Steve Ellcey  <sellcey@mips.com>
2266         * configure.ac: Add mips*-mti-elf* target.
2267         * configure: Regenerate.
2269 2012-09-19  Ian Lance Taylor  <iant@google.com>
2271         * configure.ac (host_libs): Add libbacktrace.
2272         (target_libraries): Add libbacktrace.
2273         * Makefile.def (host_modules): Add libbacktrace.
2274         (target_modules): Likewise.
2275         * configure, Makefile.in: Rebuild.
2277 2012-09-15  Jiong Wang  <jiwang@tilera.com>
2279         * configure.ac (ENABLE_GOLD): support tilegx*
2280         * configure: rebuild
2282 2012-09-14  David Edelsohn  <dje.gcc@gmail.com>
2284         PR target/38607
2285         Merge upstream change.
2286         * libtool.m4 (_LT_COMPILER_PIC): Add -fPIC to GCC and GXX for AIX.
2288         * configure.ac: Add target-libquadmath to noconfigdirs for AIX.
2289         Add libgomp*.o to compare_exclusions for AIX.
2290         * configure: Regenerate.
2292 2012-08-26  H.J. Lu  <hongjiu.lu@intel.com>
2294         PR binutils/4970
2295         * Makefile.def (host_modules): Rmove lib_path=.libs from bfd
2296         and opcodes.
2297         * Makefile.in: Regenerated.
2299 2012-08-14   Diego Novillo  <dnovillo@google.com>
2301         Merge from cxx-conversion branch.
2303         * Makefile.tpl (STAGE[+id+]_CXXFLAGS): Remove
2304         POSTSTAGE1_CONFIGURE_FLAGS.
2305         * Makefile.in: Regenerate.
2306         * configure.ac (ENABLE_BUILD_WITH_CXX): Remove.  Update all users.
2307         Force C++ when bootstrapping.
2308         * configure: Regenerate.
2310 2012-07-06  Richard Guenther  <rguenther@suse.de>
2312         * Makefile.def (cloog): Pass $(HOST_GMPINC) and $(HOST_ISLINC)
2313         as CPPFLAGS, pass path to built gmp as LDFLAGS, always use
2314         --with-gmp=system.
2315         * Makefile.in: Regenerated.
2316         * configure: Likewise.
2318 2012-07-06  Richard Guenther  <rguenther@suse.de>
2320         * configure.ac (extra_isl_gmp_configure_flags): Initialize and subst.
2321         * Makefile.def (isl): Use extra_isl_gmp_configure_flags and
2322         supply V=1 as extra_make_flags.
2323         * configure: Regenerated.
2324         * Makefile.in: Likewise.
2326 2012-07-03  Richard Guenther  <rguenther@suse.de>
2328         * Makfile.def (isl): Remove not necessary extra_exports and
2329         extra_make_flags.
2330         (cloog): Use $$CPPFLAGS instead of ${CPPFLAGS}.
2331         * Makefile.in: Regenerated.
2333 2012-07-03  Richard Guenther  <rguenther@suse.de>
2335         * Makefile.def (cloog): Add V=1 to extra_make_flags.
2336         * configure.ac: If either the ISL or the CLooG check failed
2337         do not try to build in-tree versions.
2338         * Makefile.in: Regenerated.
2339         * configure: Regenerated.
2341 2012-07-02  Richard Guenther  <rguenther@suse.de>
2342         Michael Matz  <matz@suse.de>
2343         Tobias Grosser <tobias@grosser.es>
2344         Sebastian Pop <sebpop@gmail.com>
2346         * Makefile.def: Add ISL host module, remove PPL host module.
2347         Adjust ClooG host module to use the proper ISL.
2348         * Makefile.tpl: Pass ISL include flags instead of PPL ones.
2349         * configure.ac: Include config/isl.m4.  Add ISL host library,
2350         remove PPL.  Remove PPL configury, add ISL configury, adjust
2351         ClooG configury.
2352         * Makefile.in: Regenerated.
2353         * configure: Likewise.
2355 2012-07-02  Richard Guenther  <rguenther@suse.de>
2357         Merge from graphite branch
2358         2011-07-21  Tobias Grosser  <tobias@grosser.es>
2360         * configure: Regenerated.
2361         * config/cloog.m4: Remove support for CLooG-ppl and CLooG-parma,
2362         both cloog.org and legacy versions. The only supported version will
2363         be CLooG with the isl backend.
2365         2011-07-21  Tobias Grosser  <tobias@grosser.es>
2367         * configure: Regenerated.
2368         * configure.ac: Require cloog isl 0.17.0
2370         2011-07-21  Tobias Grosser  <tobias@grosser.es>
2372         * configure: Regenerated.
2373         * config/cloog.m4: Do not define CLOOG_ORG
2375 2012-06-29  Steven Bosscher  <steven@gcc.gnu.org>
2377         * configure.ac: Skip C if explicitly selected.
2378         * configure: Regenerate.
2380 2012-06-28  Christophe Lyon <christophe.lyon@st.com>
2382         * configure.ac (CFLAGS_FOR_TARGET, CXXFLAGS_FOR_TARGET): Make sure
2383         they contain -O2.
2384         * configure: Regenerate.
2386 2012-06-20  Jason Merrill  <jason@redhat.com>
2388         * Makefile.tpl (check-target-libgomp-c++): New.
2389         (check-target-libitm-c++): New.
2390         * Makefile.def (c++): Add them.
2391         * Makefile.in: Regenerate.
2393 2012-05-16  Olivier Hainque  <hainque@adacore.com>
2395         * Makefile.tpl (gcc-no-fixedincludes): Rename into ...
2396         (gcc-install-no-fixedincludes): Now forwarder to local target in gcc/
2397         (install-no-fixedincludes): Adjust accordingly.
2398         * Makefile.in: Regenerate.
2400 2012-05-09  Nick Clifton  <nickc@redhat.com>
2401             Paul Smith  <psmith@gnu.org>
2403         PR bootstrap/50461
2404         * configure.ac (mpfr-dir): When using in-tree MPFR sources
2405         allow for the fact that from release v3.1.0 of MPFR the source
2406         files were moved into a src sub-directory.
2407         * configure: Regenerate.
2409 2012-05-07  Janne Blomqvist  <jb@gcc.gnu.org>
2411         * configure.ac: Bump minimum MPFR version to 2.4.0.
2412         * configure: Regenerated.
2414 2012-05-01  Richard Henderson  <rth@redhat.com>
2416         * Makefile.def (libatomic): New target_module.
2417         * configure.ac (target_libraries): Add libatomic.
2418         (noconfigdirs): Check if libatomic is supported.
2419         * Makefile.in, configure: Rebuild.
2421 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
2423         Merge upstream change
2424         * libtool.m4 (_LT_ENABLE_LOCK): Support x32.
2426 2011-11-21  Andreas Tobler  <andreast@fgznet.ch>
2428         * libtool.m4: Additional FreeBSD 10 fixes.
2430 2012-06-28  Christophe Lyon <christophe.lyon@st.com>
2432         * configure.ac (CFLAGS_FOR_TARGET, CXXFLAGS_FOR_TARGET): Make sure
2433         they contain -O2.
2434         * configure: Regenerate.
2436 2012-05-14  Catherine Moore  <clm@codesourcery.com>
2438         * NEWS:  Mention PowerPC VLE port.
2440 2012-05-11  Mike Frysinger  <vapier@gentoo.org>
2442         * MAINTAINERS (config/): Move to intl/ section.
2443         (compile; depcomp; install-sh; missing; ylwrap): Likewise.
2445 2012-05-09  Nick Clifton  <nickc@redhat.com>
2446             Paul Smith  <psmith@gnu.org>
2448         PR bootstrap/50461
2449         * configure.ac (mpfr-dir): When using in-tree MPFR sources
2450         allow for the fact that from release v3.1.0 of MPFR the source
2451         files were moved into a src sub-directory.
2452         * configure: Regenerate.
2454 2012-05-02  Roland McGrath  <mcgrathr@google.com>
2456         * configure.ac (ENABLE_GOLD): Consider *-*-nacl* targets ELF.
2457         * configure: Regenerate.
2459 2012-04-25  Joel Brobecker  <brobecker@adacore.com>
2461         * config.sub: Update to 2012-04-18 version from official repo.
2463 2012-03-19  Tristan Gingold  <gingold@adacore.com>
2465         * configure.ac (ia64*-*-*vms*): Add support for ld.
2466         * configure: Regenerate.
2468 2012-03-14  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
2470         * configure.ac (enable_libgomp): Remove *-*-irix6*.
2471         (unsupported_languages): Remove mips-sgi-irix6.*.
2472         (noconfigdirs): Don't add ${libgcj} for mips*-*-irix6*.
2473         (with_stabs): Remove.
2474         * configure: Regenerate.
2476 2012-03-12  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
2478         * configure.ac (enable_libgomp): Remove *-*-osf*.
2479         (with_stabs): Remove alpha*-*-osf*.
2480         * configure: Regenerate.
2482 2012-03-09  Jeff Johnston  <jjohnstn@redhat.com>
2484         * COPYING.NEWLIB: Modify DJ Delorie license to include
2485         modification rights in clause as permitted by DJ Delorie.
2486         * COPYING.LIBGLOSS: Ditto.
2488 2012-03-09  Jeff Johnston  <jjohnstn@redhat.com>
2490         * COPYING.NEWLIB: Remove two unused licenses.
2492 2012-03-05  Tristan Gingold  <gingold@adacore.com>
2494         * configure.ac: Enable gdb and readline for ia64*-*-*vms*.
2495         * configure: Regenerate.
2497 2012-02-21  Joern Rennecke  <joern.rennecke@embecosm.com>
2499         * COPYING.NEWLIB: Add Adapteva notice.
2500         * COPYING.LIBGLOSS: Add Adapteva notice.
2502 2011-12-18  Eric Botcazou  <ebotcazou@adacore.com>
2504         * configure: Regenerate.
2506 2011-12-15  Jeff Johnston  <jjohnstn@redhat.com>
2508         * COPYING.LIBGLOSS: Add GPL with exception license.
2510 2011-11-09  Roland McGrath  <mcgrathr@google.com>
2512         * configure.ac: Add tool checks for READELF and READELF_FOR_TARGET.
2513         * configure: Rebuild.
2514         * Makefile.def (flags_to_pass): Add READELF_FOR_TARGET.
2515         * Makefile.tpl (READELF, READELF_FOR_TARGET): New variables.
2516         (HOST_EXPORTS): Add READELF, READELF_FOR_TARGET.
2517         (BASE_FLAGS_TO_PASS): Add READELF_FOR_TARGET.
2518         (BASE_TARGET_EXPORTS, EXTRA_HOST_FLAGS, EXTRA_TARGET_FLAGS):
2519         Add READELF.
2520         * Makefile.in: Rebuild.
2522 2011-11-08  Richard Henderson  <rth@redhat.com>
2524         * configure.ac: Test for libitm directory present first.
2526         * configure.ac: Adjust srcdir for running libitm/configure.tgt.
2528         * configure.ac: Test libitm/configure.tgt to disable libitm.
2529         * configure: Rebuild.
2531 2011-11-02  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
2533         * Makefile.tpl (EXTRA_GCC_FLAGS): Remove LIBGCC2_CFLAGS,
2534         LIBGCC2_DEBUG_CFLAGS, LIBGCC2_INCLUDES.
2535         * Makefile.in: Regenerate.
2537 2011-11-01  DJ Delorie  <dj@redhat.com>
2539         * configure.ac (rl78-*-*) New case.
2540         * configure: Regenerate.
2542 2011-11-01  DJ Delorie  <dj@redhat.com>
2544         * config.sub: Update to version 2011-10-29 (added rl78)
2546 2011-10-27  Nick Clifton  <nickc@redhat.com>
2548         * config.sub: Import these changes from the config project:
2550         2011-10-08  Joern Rennecke  <joern.rennecke@embecosm.com>
2551             Ben Elliston  <bje@gnu.org>
2553         * config.sub (epiphany): New.
2555         2011-09-09  Linas Vepstas  <linasvepstas@gmail.com>
2556             Ben Elliston  <bje@gnu.org>
2558         * config.sub (hexagon, hexagon-*): New.
2560         2011-08-23  Roland McGrath  <mcgrathr@google.com>
2562         * config.sub: Rename 32eb to be32, 32el to le32, 64el to le64, and
2563         64eb to be64.
2565         2011-08-16  Roland McGrath  <mcgrathr@google.com>
2567         * config.sub (32eb, 32el, 64eb, 64el): New (pseudo-)CPUs.
2568         (nacl): Grok as alias for 32el-unknown-nacl.
2570 2011-08-19  Joel Brobecker  <brobecker@adacore.com>
2572         * src-release (GDB_SUPPORT_DIRS): Add 'cpu'.
2574 2011-08-14  Yao Qi  <yao@codesourcery.com>
2576         Merge from gcc:
2578         2011-08-14  Yao Qi  <yao@codesourcery.com>
2579         * configure.ac (tic6x-*-*): Remove gdb from noconfigdirs.
2580         * configure: Regenerate.
2582 2011-07-26  Ian Lance Taylor  <iant@google.com>
2584         Merge from gcc:
2586         2011-07-26  Ian Lance Taylor  <iant@google.com>
2587         * configure.ac: Set have_compiler based on whether gcc directory
2588         exists, rather than on whether gcc is in configdirs.
2589         * configure: Rebuild.
2591         2011-07-20  David Edelsohn  <dje.gcc@gmail.com>
2592         * Makefile.tpl (POSTSTAGE1_CONFIGURE_FLAGS): Add libsupc++ to
2593         link directories.
2594         * Makefile.in: Rebuild.
2596         2011-07-20  Ian Lance Taylor  <iant@google.com>
2597         PR bootstrap/49787
2598         * configure.ac: Move --enable-bootstrap handling earlier in file.
2599         If --enable-bootstrap and either --enable-build-with-cxx or
2600         --enable-build-poststage1-with-cxx, enable C++ automatically.
2601         * configure: Rebuild.
2603         2011-07-19  Ian Lance Taylor  <iant@google.com>
2604         * configure.ac: Add --enable-build-poststage1-with-cxx.  If set,
2605         make C++ a boot_language.  Set and substitute
2606         POSTSTAGE1_CONFIGURE_FLAGS.
2607         * Makefile.tpl (POSTSTAGE1_CONFIGURE_FLAGS): New variable.
2608         (STAGE[+id+]_CONFIGURE_FLAGS): Add $(POSTSTAGE1_CONFIGURE_FLAGS).
2609         * configure, Makefile.in: Rebuild.
2611         2011-07-16  Jason Merrill  <jason@redhat.com>
2612         * Makefile.def (language=c++): Add check-c++0x and
2613         check-target-libmudflap-c++.
2614         * Makefile.tpl (check-target-libmudflap-c++): New.
2615         * Makefile.in: Regenerate.
2617         2011-07-16  Matthias Klose  <doko@ubuntu.com>
2618         * Makefile.tpl (EXTRA_CONFIGARGS_LIBJAVA): Define.
2619         * Makefile.def (target_modules/libjava): Pass
2620         $(EXTRA_CONFIGARGS_LIBJAVA).
2621         * configure.ac: Pass --disable-static in EXTRA_CONFIGARGS_LIBJAVA,
2622         if not configured with --enable-static-libjava.
2623         * Makefile.in: Regenerate.
2624         * configure: Likewise.
2626         2011-06-22  Hans-Peter Nilsson  <hp@axis.com>
2627         PR regression/47836
2628         PR bootstrap/23656
2629         PR other/47733
2630         PR bootstrap/49247
2631         PR c/48825
2632         * configure.ac (target_libraries): Remove target-libiberty.
2633         Remove case-statement setting skipdirs=target-libiberty for
2634         multiple targets.  Remove checking target_configdirs and
2635         removing target-libiberty but keeping target-libgcc if
2636         otherwise empty.
2637         * Makefile.def (target_modules): Don't add libiberty.
2638         (dependencies): Remove all traces of target-libiberty.
2639         * configure, Makefile.in: Regenerate.
2641 2011-07-22  Jason Merrill  <jason@redhat.com>
2643         * Makefile.def (language=c++): Add check-c++0x and
2644         check-target-libmudflap-c++.
2645         * Makefile.tpl (check-target-libmudflap-c++): New.
2646         * Makefile.in: Regenerate.
2648 2011-07-18  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
2650         * configure: Regenerate.
2652 2011-07-07  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
2654         PR target/39150
2655         * configure.ac (i[3456789]86-*-solaris2*): Also accept
2656         x86_64-*-solaris2.1[0-9]*.
2657         * configure: Regenerate.
2659 2011-06-13  Walter Lee <walt@tilera.com>
2661         * configure.ac (tilepro-*-*) New case.
2662         (tilegx-*-*): Likewise.
2663         * configure: Regenerate.
2665 2011-06-06  Nick Clifton  <nickc@redhat.com>
2667         * config.sub: Sync from upstream.
2669 2011-05-08  Doug Kwan  <dougkwan@google.com>
2671         Merge from gcc:
2673         2011-05-08  Doug Kwan  <dougkwan@google.com>
2675                 * configure.ac: Propagate LDFLAGS_FOR_TARGET.
2676                 * configure: Regenerated.
2677                 * Makefile.tpl (LDFLAGS_FOR_TARGET): Use LDFLAGS_FOR_TARGET
2678                 value from configure.
2679                 * Makefile.in: Regenerated.
2681 2011-05-05  Joseph Myers  <joseph@codesourcery.com>
2683         * configure.ac (alpha*-dec-osf*, i[[3456789]]86-*-rdos*,
2684         sh*-*-pe|mips*-*-pe|arm-wince-pe, sparc-*-sunos4*, *-*-aix*,
2685         *-*-beos*, *-*-chorusos, *-*-dragonfly*, *-*-freebsd*, *-*-linux*
2686         | *-*-gnu* | *-*-k*bsd*-gnu | *-*-kopensolaris*-gnu, *-*-lynxos*,
2687         *-*-mingw*, *-*-netbsd*, *-*-netware*, *-*-tpf*, *-*-uclinux*,
2688         *-*-vxworks*): Disable newlib and libgloss in separate case
2689         statement.
2690         (i[[3456789]]86-*-linux*): Move logic allowing newlib to be built
2691         to separate case statement.
2692         (*-*-chorusos, *-*-dragonfly*, *-*-freebsd*, *-*-netbsd*,
2693         *-*-netware*, *-*-tpf*, *-*-uclinux*, *-*-vxworks*,
2694         alpha*-dec-osf*, alpha*-*-linux*, am33_2.0-*-linux*, sh-*-linux*,
2695         sh*-*-pe|mips*-*-pe|*arm-wince-pe, arm-*-coff, arm-*-elf* |
2696         arm*-*-eabi*, arm*-*-linux-gnueabi, arm*-*-symbianelf*, avr-*-*,
2697         bfin-*-*, cris-*-* | crisv32-*-*, frv-*-*, i[[3456789]]86-*-coff |
2698         i[[3456789]]86-*-elf, i[[3456789]]86-w64-mingw*,
2699         i[[3456789]]86-*-mingw*, x86_64-*-mingw*,
2700         i[[3456789]]86-*-interix*, i[[3456789]]86-*-beos*,
2701         i[[3456789]]86-*-rdos*, m32r-*-*,
2702         m68hc11-*-*|m6811-*-*|m68hc12-*-*|m6812-*-*, m68k-*-elf*, m68*-*-*
2703         | fido-*-*, powerpc-*-aix*, powerpc-*-beos*, powerpc-*-eabi,
2704         powerpc-*-eabi* | powerpcle-*-eabi* | powerpc-*-rtems*,
2705         rs6000-*-lynxos*, rs6000-*-aix*, mips*-*-linux*, sparclet-*-aout*
2706         | sparc86x-*-*, sparc-*-elf*, sparc64-*-elf*, sparclite-*-*,
2707         sparc-*-sunos4*, sparc-*-solaris* | sparc64-*-solaris* |
2708         sparcv9-*-solaris*, *-*-linux* | *-*-gnu* | *-*-k*bsd*-gnu |
2709         *-*-kopensolaris*-gnu, *-*-lynxos*, *-*-*): Don't disable newlib
2710         and libgloss in main case over targets.  Remove most empty cases
2711         in main case over targets.
2712         * configure: Regenerate.
2714 2011-05-04  Joseph Myers  <joseph@codesourcery.com>
2716         * configure.ac: Remove code setting special library locations for
2717         hppa*64*-*-hpux11*.  Remove code setting compiler for
2718         sparc-sun-solaris2*.
2719         * configure: Regenerate.
2721 2011-05-04  Joseph Myers  <joseph@codesourcery.com>
2723         * configure.ac: Separate libgloss_dir settings from general case
2724         over targets.
2725         * configure: Regenerate.
2727 2011-04-28  Joseph Myers  <joseph@codesourcery.com>
2729         * configure.ac (*-*-dragonfly*, *-*-freebsd*, *-*-netbsd*,
2730         alpha*-dec-osf*, alpha*-*-linux*, alpha*-*-*, sh-*-linux*,
2731         arm-*-elf* | arm*-*-eabi*, arm*-*-linux-gnueabi, frv-*-*): Remove
2732         cases in libgcj-disabling case statement.
2733         (hppa*64*-*-linux*): Set unsupported_languages instead of
2734         disabling target-zlib.
2735         (hppa*64*-*-*): Restrict case in libgcj-disabling case statement
2736         to hppa*64*-*-hpux*.
2737         (hppa*-*-*): Restrict case in libgcj-disabling case statement to
2738         hppa*-*-hpux*.
2739         (ia64*-*-elf*, ia64*-**-hpux*, i[[3456789]]86-*-elf,
2740         i[[3456789]]86-*-linux*, *-*-cygwin*, i[[3456789]]86-*-interix*,
2741         i[[3456789]]86-*-solaris2*, m32r-*-*, m68k-*-elf*, m68*-*-* |
2742         fido-*-*, powerpc-*-eabi, powerpc-*-eabi* | powerpcle-*-eabi* |
2743         powerpc-*-rtems*, mips*-*-linux*, mips*-*-*, sh-*-* | sh64-*-*,
2744         sparc-*-elf*, sparc64-*-elf*, sparc-*-solaris* |
2745         sparc64-*-solaris* | sparcv9-*-solaris*, *-*-linux* | *-*-gnu* |
2746         *-*-k*bsd*-gnu | *-*-kopensolaris*-gnu, *-*-*): Remove cases in
2747         libgcj-disabling case statement.
2748         * configure: Regenerate.
2750 2011-04-28  Joseph Myers  <joseph@codesourcery.com>
2752         * configure.ac: Disable Java for targets not supporting libffi.
2753         (*-*-chorusos, *-*-kaos*, am33_2.0-*-linux*, sh*-*-pe|mips*-*-pe):
2754         Remove cases in Java-disabling statement.
2755         (*arm-wince-pe): Change to arm-wince-pe.
2756         (arc-*-*, arm-*-coff, arm-*-pe*, arm-*-riscix*, avr-*-*): Remove
2757         cases in Java-disabling statement.
2758         (bfin-*-*): Don't disable Java again.
2759         (c4x-*-* | tic4x-*-*, tic54x-*-*, cr16-*-*, d10v-*-*, d30v-*-*,
2760         fr30-*-elf*, moxie-*-*, h8300*-*-*, h8500-*-*, hppa1.1-*-osf* |
2761         hppa1.1-*-bsd*, hppa*-*-*elf* | hppa*-*-lites* | hppa*-*-openbsd*,
2762         hppa*-*-pro*, i960-*-*, i[[3456789]]86-*-coff,
2763         i[[3456789]]86-*-pe, i[[3456789]]86-*-sco3.2v5*,
2764         i[[3456789]]86-*-sco*, i[[3456789]]86-*-sysv4*,
2765         i[[3456789]]86-*-beos*, i[[3456789]]86-*-rdos*,
2766         m68hc11-*-*|m6811-*-*|m68hc12-*-*|m6812-*-*): Remove cases in
2767         Java-disabling statement.
2768         (mmix-*-*): Don't disable Java again.
2769         (mt-*-*, powerpc*-*-winnt* | powerpc*-*-pe*, powerpcle-*-solaris*,
2770         powerpc-*-beos*, rs6000-*-lynxos*, rs6000-*-*, m68k-apollo-*,
2771         microblaze*, mips*-sde-elf*, mips*-*-irix5*, mips*-*-bsd*,
2772         sparclet-*-aout* | sparc86x-*-*, sparclite-*-*, sparc-*-sunos4*,
2773         tic6x-*-*, v810-*-*, vax-*-*): Remove cases in Java-disabling
2774         statement.
2775         * configure: Regenerate.
2777 2011-04-28  Joseph Myers  <joseph@codesourcery.com>
2779         Merge from GCC:
2781         2011-04-18  Jack Howarth  <howarth@bromo.med.uc.edu>
2783         PR lto/48086
2784         * configure.ac: Re-enable LTO on *-apple-darwin9*.
2785         * configure: Regenerate.
2787 2011-04-28  Joseph Myers  <joseph@codesourcery.com>
2789         * configure.ac: Separate cases disabling Java and Java libraries
2790         from general case over targets.
2791         * configure: Regenerate.
2793 2011-04-06  Joseph Myers  <joseph@codesourcery.com>
2795         * configure.ac (build_tools): Remove build-byacc.
2796         (host_libs): Remove mmalloc.
2797         (host_tools): Remove byacc make patch prms send-pr ash bash bzip2
2798         autoconf automake libtool diff rcs fileutils shellutils time
2799         textutils wdiff find uudecode hello tar gzip indent recode release
2800         sed perl gawk findutils gettext zip.
2801         (libgcj): Remove target-qthreads.
2802         (target_tools): Remove target-examples target-gperf.
2803         (YACC): Don't handle building byacc.
2804         * configure: Regenerate.
2805         * Makefile.def (ash, autoconf, automake, bash, byacc, bzip2, diff,
2806         dosutils, examples, fileutils, find, findutils, gawk, gettext,
2807         gnuserv, gperf, gzip, hello, indent, libtool, make, mmalloc,
2808         patch, perl, prms, qthreads, rcs, recode, release, sed, send-pr,
2809         shellutils, tar, textutils, time, uudecode, wdiff, zip): Don't
2810         handle building components.
2811         * Makefile.in: Regenerate.
2813 2011-04-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2815         * config.sub: Sync from upstream.
2817 2011-04-01  Joseph Myers  <joseph@codesourcery.com>
2819         * configure.ac (avr-*-*): Add comment about why libssp is disabled.
2820         (microblaze*): Don't disable libssp.
2821         * configure: Regenerate.
2823 2011-04-01  Joseph Myers  <joseph@codesourcery.com>
2825         * configure.ac: Remove code setting CONFIG_SHELL, config_shell and
2826         moveifchange.
2827         * configure: Regenerate.
2828         * Makefile.tpl: Use @SHELL@ not @config_shell@.
2829         * Makefile.in: Regenerate.
2831 2011-04-01  Joseph Myers  <joseph@codesourcery.com>
2833         * configure.ac (*-*-sysv4*): Don't enable libgomp.
2834         (alpha*-*-*vms*, i[[34567]]86-*-sco3.2v5*, mn10300-*-*,
2835         powerpc-*-chorusos*, powerpc*-*-eabi*, powerpc*-*-sysv*,
2836         powerpc*-*-kaos*, s390x-ibm-tpf*, sparc64-*-elf*, v850*-*-*,
2837         xtensa*-*-elf*, *-*-beos*, *-*-elf*, *-*-netware*, *-*-rtems*,
2838         *-*-sysv[[45]]*, *-*-vxworks*, *-wrs-windiss): Remove
2839         md_exec_prefix cases.
2840         * configure: Regenerate.
2842 2011-04-01  Joseph Myers  <joseph@codesourcery.com>
2844         * configure.ac: Separate cases disabling target-libssp,
2845         target-libiberty, target-libstdc++-v3 and Fortran from general
2846         case over targets.
2847         * configure: Regenerate.
2849 2011-04-01  Joseph Myers  <joseph@codesourcery.com>
2851         * configure.ac (*-*-chorusos): Don't disable libgcj.
2852         (*-*-freebsd[[12]] | *-*-freebsd[[12]].* | *-*-freebsd*aout*):
2853         Remove case.
2854         (*-*-kaos*): Don't disable GCC libraries, zlib or fastjar.
2855         (arm-*-coff): Don't disable libgcj.
2856         (arm*-*-linux-gnueabi): Remove useless assignment.
2857         (arm-*-riscix*): Don't disable libgcj.
2858         (bfin-*-*): Don't enable target-bsp and target-cygmon depending on
2859         configuration.
2860         (c4x-*-* | tic4x-*-*): Don't disable GCC libraries.
2861         (c54x*-*-*): Remove case.
2862         (tic54x-*-*): Don't disable GCC or GCC libraries.
2863         (cris-*-* | crisv32-*-*): Don't handle *-*-aout.  Change *-*-elf
2864         to *.
2865         (d10v-*-*): Don't disable GCC libraries.
2866         (d30v-*-*): Don't disable libgcj.
2867         (h8500-*-*): Don't disable GCC libraries.
2868         (i960-*-*): Don't disable libgcj.
2869         (i[[3456789]]86-*-linux*): Don't handle *-*-*libc1*.
2870         (i[[3456789]]86-*-sco3.2v5*, i[[3456789]]86-*-sco*,
2871         i[[3456789]]86-*-sysv4*, i[[3456789]]86-*-beos*): Don't disable
2872         libgcj.
2873         (m68k-*-coff*): Remove case.
2874         (mmix-*-*): Don't disable libgloss on host.
2875         (mn10200-*-*, mn10300-*-*): Remove cases.
2876         (powerpc*-*-winnt* | powerpc*-*-pe*, powerpcle-*-solaris*,
2877         powerpc-*-beos*, m68k-apollo-*, mips*-*-irix5*, mips*-*-bsd*):
2878         Don't disable libgcj.
2879         (romp-*-*): Remove case.
2880         (sparclite-*-*, sparc-*-sunos4*): Don't disable libgcj.
2881         (sparc-*-solaris2.[[0-6]] | sparc-*-solaris2.[[0-6]].*): Remove
2882         case.
2883         (v810-*-*): Don't disable GCC libraries.
2884         (v850*-*-*, vax-*-vms, xtensa*-*-*): Remove cases.
2885         (ip2k-*-*): Don't disable GCC libraries.
2886         * configure: Regenerate.
2888 2011-03-28  Joseph Myers  <joseph@codesourcery.com>
2890         * configure.ac (i[[3456789]]86-*-msdosdjgpp*): Don't disable
2891         libffi on host.
2892         (x86_64-*-mingw*, i[[3456789]]86-*-mingw32*): Don't disable newlib
2893         on host.
2894         (c54x*-*-* | tic54x-*-*): Don't disable newlib on host.
2895         * configure: Regenerate.
2897 2011-03-26  John Marino  <binutils@marino.st>
2899         * configure.ac: Add support for *-*-dragonfly*
2900         * configure: Regenerate.
2902 2011-03-25  Joseph Myers  <joseph@codesourcery.com>
2904         * configure.ac (native_only): Remove.
2905         (i[[3456789]]86-*-msdosdjgpp*): Don't disable expect dejagnu
2906         send-pr uudecode guile gnuserv on host.
2907         (x86_64-*-mingw*): Don't disable expect dejagnu autoconf automake
2908         send-pr rcs guile perl texinfo libtool on host.
2909         (i[[3456789]]86-*-mingw32*): Don't disable expect dejagnu autoconf
2910         automake send-pr rcs guile perl texinfo libtool on host.
2911         (*-*-cygwin*, *-*-netbsd*): Remove host cases.
2912         (*-*-kaos*): Don't disable target-examples target-gperf on target.
2913         (alpha*-dec-osf*): Don't disable fileutils on target.
2914         (sh*-*-pe|mips*-*-pe|*arm-wince-pe): Don't disable target-examples
2915         texinfo send-pr expect dejagnu on target.
2916         (arm-*-elf* | arm*-*-eabi*, arm*-*-linux-gnueabi): Don't disable
2917         target-qthreads on target.
2918         (hppa*-hp-hpux11*, hppa*-*-*): Don't disable shellutils on target.
2919         (ia64*-*-elf*, ia64*-*-*vms*): Don't disable mmalloc on target.
2920         (i[[3456789]]86-w64-mingw*, i[[3456789]]86-*-mingw*,
2921         x86_64-*-mingw*): Don't disable expect on target.
2922         (*-*-cygwin*): Don't disable target-gperf on target.
2923         (powerpc*-*-winnt* | powerpc*-*-pe*): Don't disable make expect
2924         gnuserv on target.
2925         (powerpcle-*-solaris*): Don't disable make expect gnuserv on
2926         target.
2927         * configure: Regenerate.
2929 2011-03-25  Joseph Myers  <joseph@codesourcery.com>
2931         * configure.ac (target_tools): Remove target-groff.
2932         (native_only): Remove target-groff.
2933         (hppa*64*-*-*): Don't disable byacc.
2934         (i[[3456789]]86-*-mingw32*): Remove commented-out noconfigdirs
2935         setting.
2936         (*-*-kaos*): Don't skip target-librx and target-groff.
2937         (*-*-netware*): Don't skip target-libmudflap.
2938         (*-*-tpf*): Don't skip target-libmudflap.
2939         (sh*-*-pe|mips*-*-pe|*arm-wince-pe): Don't condition configured
2940         directories on the host.
2941         (ia64*-*-*vms*): Don't skip tix.
2942         (sh-*-* | sh64-*-*): Don't condition skipped directories on the
2943         host.
2944         * configure: Regenerate.
2946 2011-03-24  Paolo Bonzini  <pbonzini@redhat.com>
2948         * configure.ac: Remove references to mt-mep, mt-netware,
2949         mt-wince.
2950         * Makefile.def: Add all-utils soft dependencies.
2951         * Makefile.tpl: Remove GDB_NLM_DEPS.
2952         * configure: Regenerate.
2953         * Makefile.in: Regenerate.
2955 2011-03-24  Paolo Bonzini  <bonzini@gnu.org>
2957         Sync from GCC:
2959         2011-03-24  Paolo Bonzini  <bonzini@gnu.org>
2961         * configure.ac: Do not include mh-x86omitfp.
2962         * configure: Regenerate.
2964         2011-03-24  Paolo Bonzini  <bonzini@gnu.org>
2966         * configure.ac: Remove empty cases.
2967         * configure: Regenerate.
2969         2011-03-24  Paolo Bonzini  <bonzini@gnu.org>
2971         * Makefile.def: Add dependency from termcap to gdb.
2972         * Makefile.in: Regenerate.
2974         2011-03-24  Paolo Bonzini  <bonzini@gnu.org>
2976         * configure.ac: Remove all mentions of mh-sysv4 and mh-solaris.
2977         * configure: Regenerate.
2978         * Makefile.def: Remove all mentions of X11_FLAGS_TO_PASS.
2979         * Makefile.tpl: Likewise.
2980         * Makefile.in: Regenerate.
2982         2011-03-24  Paolo Bonzini  <bonzini@gnu.org>
2984         * configure.ac: Remove all mentions of tentative_cc.
2985         * configure: Regenerate.
2987         2011-03-16  Jack Howarth  <howarth@bromo.med.uc.edu>
2989         PR lto/48086
2990         * configure.ac: Re-enable LTO on *-apple-darwin9.
2991         * configure: Regenerate.
2993 2011-03-24  Joseph Myers  <joseph@codesourcery.com>
2995         * configure.ac (i[[3456789]]86-*-vsta, i[[3456789]]86-*-go32*,
2996         i[[3456789]]86-*-beos*, powerpc-*-beos*, m68k-hp-hpux*,
2997         m68k-apollo-sysv*, m68k-apollo-bsd*, m88k-dg-dgux*,
2998         m88k-harris-cxux*, m88k-motorola-sysv*, mips*-dec-ultrix*,
2999         mips*-nec-sysv4*, mips*-sgi-irix4*, mips*-*-sysv4*, mips*-*-sysv*,
3000         i370-ibm-opened*, i[[3456789]]86-*-sysv5*, i[[3456789]]86-*-dgux*,
3001         i[[3456789]]86-ncr-sysv4.3*, i[[3456789]]86-ncr-sysv4*,
3002         i[[3456789]]86-*-sco3.2v5*, i[[3456789]]86-*-sco*,
3003         i[[3456789]]86-*-udk*, vax-*-ultrix2*, m68k-sun-sunos*,
3004         hppa*-*-hiux*, *-*-hiux*, rs6000-*-lynxos*, *-*-sysv4*,
3005         *-*-rhapsody*): Remove host cases.
3006         * configure: Regenerate.
3008 2011-03-24  Joseph Myers  <joseph@codesourcery.com>
3010         * configure.ac (ppc*-*-pe): Remove host case.
3011         (strongarm-*-coff | xscale-*-coff, strongarm-*-elf* |
3012         xscale-*-elf*, thumb-*-coff, thumb-*-elf, thumb-*-pe, ep9312-*-elf
3013         | ep9312-*-coff, parisc*64*-*-linux*, ppc*-*-pe): Remove target
3014         cases.
3015         * configure: Regenerate.
3017 2011-03-24  Joseph Myers  <joseph@codesourcery.com>
3019         * config.sub: Update to version 2011-03-23.
3021 2011-03-22  Joseph Myers  <joseph@codesourcery.com>
3023         * configure.ac (arm-semi-aof, crx-*-*, parisc*-*-linux*,
3024         i370-*-opened*, i[[3456789]]86-moss-msdos | i[[3456789]]86-*-moss*
3025         | i[[3456789]]86-*-uwin*, mcore-*-pe*): Remove empty cases.
3026         * configure: Regenerate.
3028 2011-03-22  Joseph Myers  <joseph@codesourcery.com>
3030         * config-ml.in: Don't handle arc-*-elf*.
3031         * configure.ac (arc-*-*, crx-*-*, i[[3456789]]86-*-pe,
3032         m68hc11-*-*|m6811-*-*|m68hc12-*-*|m6812-*-*, mcore-*-pe*): Don't
3033         handle GCC libraries.
3034         * configure: Regenerate.
3036 2011-03-21  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
3038         PR bootstrap/48120:
3039         * configure.ac (pwllib): Use LIBS instead of LDFLAGS.
3040         Add -lstdc++ -lm to LIBS.
3041         * configure: Regenerate.
3043 2011-03-18  David Edelsohn  <dje.gcc@gmail.com>
3045         * config.guess: Update to version 2011-02-02
3046         * config.sub: Update to version 2011-02-24
3048 2011-03-03  Sebastian Pop  <sebastian.pop@amd.com>
3050         * configure.ac: Adjust test of with_ppl.
3051         * configure: Regenerated.
3053 2011-03-02  Sebastian Pop  <sebastian.pop@amd.com>
3055         * configure.ac: Add -lpwl to ppllibs.
3056         * config/cloog.m4: Add -lisl to clooglibs.
3057         * configure: Regenerated.
3059 2011-02-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3061         Import from Libtool and gnulib:
3063         2011-01-27  Gerald Pfeifer  <gerald@pfeifer.com>
3065         Prepare for supporting FreeBSD 10.
3066         * config.rpath: Remove handling of freebsd1* which soon would
3067         match FreeBSD 10.0.
3069         2011-01-20  Gerald Pfeifer  <gerald@pfeifer.com>  (tiny change)
3071         Remove support for FreeBSD 1.x.
3072         * libtool.m4 (_LT_LINKER_SHLIBS)
3073         (_LT_SYS_DYNAMIC_LINKER): Remove handling of freebsd1* which
3074         soon would incorrectly match FreeBSD 10.0.
3076 2011-02-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3078         PR binutils/12283
3079         * MAINTAINERS (mkinstalldirs): Comes from Automake.
3080         (move-if-change): Comes from gnulib.
3081         * move-if-change: Import version from gnulib.
3083 2011-02-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3085         Sync from GCC:
3087         2011-02-12  Alexandre Oliva  <aoliva@redhat.com>
3089         PR lto/47225
3090         * Makefile.def (lto-plugin): Double dash for enable-shared.
3091         (configure-gcc): Depend on all-lto-plugin.
3092         * Makefile.in: Rebuilt.
3094         2011-02-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3096         * configure.ac: Remove extra bracket.
3097         * configure: Regenerate.
3099         2011-02-06  Kai Tietz  <kai.tietz@onevision.com>
3101         PR lto/47225
3102         * Makefile.def: Add dependency for install-gcc
3103         on install-lto-plugin.
3104         * Makfile.in: Regenerated
3106         2011-01-25  Jakub Jelinek  <jakub@redhat.com>
3108         * configure.ac: If with_ppl is no, move setting with_cloog=no
3109         after CLOOG_REQUESTED check.
3110         * configure: Regenerated.
3112         2011-01-25  Sebastian Pop  <sebastian.pop@amd.com>
3114         * configure.ac: Call AC_MSG_ERROR when PPL 0.11 is not present and
3115         CLooG has been requested.
3116         * configure: Regenerated.
3118         2011-01-25  Sebastian Pop  <sebastian.pop@amd.com>
3120         * configure: Regenerated.
3121         * configure.ac: Check for version 0.11 (or later revision) of PPL.
3123         2011-01-25  Tobias Grosser  <grosser@fim.uni-passau.de>
3125         * configure: Regenerated.
3126         * configure.ac: Use CLOOG_CHECK_VERSION(0,16,1).
3128         2011-01-07  Jan Hubicka  <jh@suse.cz>
3130         PR lto/47225
3131         * Makefile.in: Regenerate.
3132         * Makefile.def (lto-plugin): Always pass enable-shared to the plugin
3133         configure.
3135 2011-01-31  Alexandre Oliva  <aoliva@redhat.com>
3137         PR libgcj/44341
3138         * configure.ac: Discard --with-* flags for host when configuring
3139         target libraries for cross build.
3140         * configure: Rebuilt.
3142 2011-01-21  Andreas Schwab  <schwab@redhat.com>
3144         Sync from GCC:
3146         2011-01-21  Andreas Schwab  <schwab@redhat.com>
3148         * configure.ac: Use AS_HELP_STRING throughout.
3149         * configure: Regenerate.
3151         2011-01-18  Jie Zhang  <jie.zhang@analog.com>
3153         * configure.ac (bfin-*-*): Remove gdb from noconfigdirs.
3154         * configure: Regenerate.
3156 2010-12-10  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
3158         * ltmain.sh (relink): Use absolute path when hardcoding with -L.
3160 2011-01-13  Joel Brobecker  <brobecker@adacore.com>
3162         * configure.ac: Remove readline, mmalloc, and gdb from noconfigdirs
3163         for ia64-hpux.
3164         * configure: Regenerate.
3166 2011-01-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3168         Sync from GCC:
3169         2010-12-22  Hariharan Sandanagobalane  <hariharan@picochip.com>
3171         * configure.ac: (picochip): Disable libiberty.
3172         * configure: Regenerate.
3174 2010-12-18  Jeff Johnston  <jjohnstn@redhat.com>
3176         * COPYING.LIBGLOSS: Remove the GPL for fr30 target.
3178 2010-12-10  Ian Lance Taylor  <iant@google.com>
3180         PR bootstrap/46819
3181         * configure.ac: For --disable-libgcj clear libgcj_saved.
3182         * configure: Rebuild.
3184 2010-12-10  Tobias Burnus  <burnus@net-b.de>
3186         PR fortran/46540
3187         * configure.ac: Add --disable-libquadmath and
3188         --disable-libquadmath-support.
3189         * configure: Regenerate.
3191 2010-12-10  Tristan Gingold  <gingold@adacore.com>
3193         * src-release (ETC_SUPPORT): add gnu-oids.texi
3195 2010-12-03  Hans-Peter Nilsson  <hp@axis.com>
3197         PR libffi/46792
3198         * configure.ac (cris-*-elf, crisv32-*-elf): Disable target-libffi.
3199         * configure: Regenerate.
3201 2010-12-02  Ian Lance Taylor  <iant@google.com>
3203         * configure.ac: Always set default for poststage1_ldflags to
3204         -static-libstdc++ -static-libgcc.
3206 2010-12-02  Jeff Johnston  <jjohnstn@redhat.com>
3208         * COPYING.NEWLIB: Add National Semiconductor notice.
3210 2010-11-29  Andreas Schwab  <schwab@redhat.com>
3212         * configure.ac: Move comment to remove extra space in last argument
3213         of GCC_TARGET_TOOL.
3215 2010-11-26  Alexandre Oliva  <aoliva@redhat.com>
3217         PR other/46026
3218         * configure.ac (CXX_FOR_TARGET): Add -funconfigured-libstdc++-v3.
3219         * Makefile.def (CXX_FOR_TARGET): Removed from flags_to_pass.
3220         * Makefile.tpl (CXX_FOR_TARGET_FLAG_TO_PASS): New.
3221         (BASE_FLAGS_TO_PASS): Use it.
3222         * configure: Rebuilt.
3223         * Makefile.in: Rebuilt.
3225 2010-11-23  H.J. Lu  <hongjiu.lu@intel.com>
3227         PR binutils/12258
3228         * configure.ac: Correct comments for --enable-gold/--enable-ld.
3229         Properly check default linker.
3230         * configure: Regnerated.
3232 2010-11-23  Matthias Klose  <doko@ubuntu.com>
3234         * configure.ac: For --enable-gold, handle value `default' instead of
3235         `both*'.   New configure option --{en,dis}able-ld.
3236         * configure: Regenerate.
3238 2010-11-20  Ian Lance Taylor  <iant@google.com>
3240         * configure.ac: Only disable a language library if no language needs
3241         it.  Don't let --disable-libgcj uncondtionally disable libffi.
3242         * configure: Rebuild.
3244 2010-11-20  Paolo Bonzini  <bonzini@gnu.org>
3246         * configure: Regenerate.
3248 2010-11-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3250         PR other/46202
3251         * configure.ac: Fix just-built in-tree STRIP name to be
3252         binutils/strip-new.
3253         * configure: Regenerate.
3254         * Makefile.def (install-strip-gcc, install-strip-binutils)
3255         (install-strip-opcodes, install-strip-ld, install-strip-itcl)
3256         (install-strip-sid): Mirror dependencies on non-strip variants
3257         of these targets on the respective -strip prerequisites.
3258         * Makefile.tpl (install-strip, install-strip-host)
3259         (install-strip-target): New targets.
3260         (install-strip-[+module+], install-strip-target-[+module+]):
3261         New targets.
3262         * Makefile.in: Regenerate.
3264 2010-11-19  Ian Lance Taylor  <iant@google.com>
3265             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3267         * configure.ac: Add target-libgo to target_libraries.  Set
3268         and substitute GOC_FOR_BUILD and GOC_FOR_TARGET.
3269         * Makefile.tpl (BUILD_EXPORTS): Add GOC and GOCFLAGS.
3270         (HOST_EXPORTS): Add GOC.
3271         (BASE_TARGET_EXPORTS): Add GOC.
3272         (GOC_FOR_BUILD, GOCFLAGS, GOC_FOR_TARGET): New variables.
3273         (GOCFLAGS_FOR_TARGET): New variable.
3274         (EXTRA_HOST_FLAGS): Add GOC.
3275         (EXTRA_TARGET_FLAGS): Add GOC and GOCFLAGS.
3276         * Makefile.def (target_modules): Add libgo.
3277         (flags_to_pass): Add GOC_FOR_TARGET and GOCFLAGS_FOR_TARGET.
3278         (dependencies): Add dependency from configure-target-libgo to
3279         configure-target-libffi and all-target-libstdc++-v3.  Add
3280         dependencies from all-target-libgo to all-target-libffi.
3281         (languages): Add go.
3282         * configure: Rebuild.
3283         * Makefile.in: Rebuild.
3285 2010-11-19  Ian Lance Taylor  <iant@google.com>
3287         * config-ml.in: Add Go support: treat GOC and GOCFLAGS like other
3288         compiler/flag environment variables.
3290 2010-11-18  Ian Lance Taylor  <iant@google.com>
3292         * configure.ac: Check for lang_requires_boot_languages in
3293         config-lang.in files.
3294         * configure: Rebuild.
3296 2010-11-17  Mike Frysinger  <vapier@gentoo.org>
3298         * .gitignore: New file.
3300 2010-11-16  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
3301             Tobias Burnus  <burnus@net-b.de>
3303         PR fortran/32049
3304         * Makefile.def: Add libquadmath; build it with language=fortran.
3305         * configure.ac: Add libquadmath.
3306         * Makefile.tpl: Handle multiple libs in check-[+language+].
3307         * Makefile.in: Regenerate.
3308         * configure: Regenerate.
3310 2010-11-15  Andreas Schwab  <schwab@redhat.com>
3312         * configure.ac: Fix spelling in option names.
3313         * configure: Regenerated.
3315 2010-11-13  Georg-Johann Lay  <georgjohann@web.de>
3317         PR bootstrap/39622
3318         * configure.ac (FLAGS_FOR_TARGET): Add include-fixed path.
3319         * configure: Regenerated.
3321 2010-11-12  Tobias Grosser  <grosser@fim.uni-passau.de>
3323         * config/cloog.m4: Add -enable-cloog-backend=(isl|ppl|ppl-legacy) to
3324         define the cloog backend to use. Furthermore, only pass the ppllibs to
3325         the configure checks, if necessary.
3326         * configure: Regenerate.
3328 2010-11-12  Tobias Grosser  <grosser@fim.uni-passau.de>
3330         * config/cloog.m4: Use CLooG predefined macro to check for CLooG PPL.
3331         * configure: regenerate
3333 2010-11-12  Tobias Grosser  <grosser@fim.uni-passau.de>
3335         * config/cloog.m4: Fix typo.  verison -> version.
3336         * configure: Regenerate.
3338 2010-11-12  Tobias Grosser  <grosser@fim.uni-passau.de>
3340         * config/cloog.m4: Pass ppl libraries to the CLooG version check.
3341         * configure: Regenerate.
3343 2010-11-11  Andreas Simbuerger  <simbuerg@fim.uni-passau.de>
3345         * configure.ac: Support official CLooG.org versions.
3346         * configure: Regenerate.
3347         * config/cloog.m4: New.
3349 2010-11-05  Michael Eager  <eager@eagercon.com>
3351         * COPYING.LIBGLOSS: Correct typo in microblaze.
3352         * COPYING.NEWLIB: Same.
3354 2010-11-04  Iain Sandoe  <iains@gcc.gnu.org>
3356         * configure.ac (*-*-darwin*): Use mh-darwin for all Darwin variants.
3357         * configure: Regenerate.
3359 2010-11-03  Ian Lance Taylor  <iant@google.com>
3360             Dave Korn  <dave.korn.cygwin@gmail.com>
3362         PR lto/46273
3363         * configure.ac: Remove libelf tests.  Build lto-plugin on ELF always
3364         and on other supported platforms whenever LTO is enabled.
3365         * configure: Rebuild.
3367 2010-11-02  Alan Modra  <amodra@gmail.com>
3369         PR binutils/12110
3370         * configure.ac: Error when source path contains spaces.
3371         * configure: Regenerate.
3373 2010-10-20  Ian Lance Taylor  <iant@google.com>
3375         * Makefile.def (target_modules): Set lib_path to src/.libs for
3376         libstdc++-v3 module.
3377         * Makefile.tpl: Fix typo in TARGET_LIB_PATH comment.
3378         * Makefile.in: Rebuild.
3380 2010-10-08  Bernd Schmidt  <bernds@codesourcery.com>
3381             Joseph Myers  <joseph@codesourcery.com>
3383         * COPYING.LIBGLOSS: Add National Semiconductor and CodeSourcery
3384         notices.
3385         * COPYING.NEWLIB: Add Texas Instruments notice.
3387 2010-10-07  Dave Korn  <dave.korn.cygwin@gmail.com>
3389         * configure.ac (build_lto_plugin): New shell variable.
3390         (--enable-lto): Turn on by default for all non-ELF platforms that
3391         have had LTO support added so far.  Set build_lto_plugin appropriately
3392         for both ELF and non-ELF.
3393         (configdirs): Add lto-plugin or not based on build_lto_plugin.
3394         * configure: Regenerate.
3396 2010-10-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3398         PR bootstrap/45326
3399         PR bootstrap/45174
3400         * configure.ac: Honor initial values of $build_configargs,
3401         $host_configargs, $target_configargs.  Mark the precious, so
3402         environment settings get recorded.
3403         * configure: Regenerate.
3405 2010-10-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3407         Sync from GCC:
3409         2010-09-30  Michael Eager  <eager@eagercon.com>
3411         * configure.ac (microblaze): Add target-libssp to noconfigdirs.
3412         * configure: Regenerate.
3414         2010-09-21  Iain Sandoe  <iains@gcc.gnu.org>
3416         * configure.ac (enable-lto): Add Darwin to the list of supported lto
3417         targets and amend comment.
3418         * configure: Regenerate.
3420         2010-09-03  Jack Howarth <howarth@bromo.med.uc.edu>
3422         * configure.ac: Enable LTO by default on Darwin.
3423         * configure: Regenerate.
3425         2010-07-23  Marc Glisse <marc.glisse@normalesup.org>
3427         PR bootstrap/44455
3428         * configure.ac (extra_mpfr_configure_flags): Copy from
3429         extra_mpc_gmp_configure_flags.
3430         * configure: Re-generated.
3432 2010-09-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3434         Sync from GCC:
3436         PR bootstrap/45796
3437         * Makefile.def (info-gcc, dvi-gcc, pdf-gcc, html-gcc):
3438         Depend on all-build-libiberty.
3439         * Makefile.in: Regenerate.
3441 2010-09-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3443         Sync from GCC:
3445         PR bootstrap/44621
3446         * configure.ac: Fix unportable shell quoting.
3447         * configure: Regenerate.
3449 2010-07-26  Naveen.H.S  <naveen.S@kpitcummins.com>
3451         * configure.ac: Support all v850 targets.
3452         * configure: Regenerate.
3454 2010-07-17  Jack Howarth  <howarth@bromo.med.uc.edu>
3456         PR target/44862
3457         * Makefile.tpl (POSTSTAGE1_CXX_EXPORT):
3458         Provide -B option to allow for link spec %s substitutions for
3459         libstdc++.a on darwin.
3460         * Makefile.in: Regenerate.
3462 2010-06-10  Alexandre Oliva  <aoliva@redhat.com>
3464         * Makefile.def (configure-gcc): Depend on all-libelf.
3465         * Makefile.in: Rebuild.
3467 2010-06-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3469         * config.sub, config.guess: Update from upstream sources.
3471 2010-06-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3473         Sync from GCC:
3475         2010-05-05  Sebastian Pop  <sebastian.pop@amd.com>
3476         * configure.ac: Allow all the versions greater than 0.10 of PPL.
3477         * configure: Regenerated.
3479         2010-04-20  Eric Botcazou  <ebotcazou@adacore.com>
3480         * configure.ac (BUILD_CONFIG): Redirect output to /dev/null.
3481         * configure: Regenerate.
3483         2010-04-17  Ralf Cors<E9>pius  <ralf.corsepius@rtems.org>
3484         * configure.ac (*-*-rtems*): Add target-libiberty to $skipdirs.
3485         * configure: Regenerate.
3487         2010-04-16  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
3488         * configure.ac: Check for elf_getshdrstrndx or elf_getshstrndx
3489         separately.
3490         * configure: Regenerate.
3492         2010-04-13  Steve Ellcey  <sje@cup.hp.com>
3493         * configure: Regenerate after change to elf.m4.
3495         2010-04-02  Sebastian Pop  <sebastian.pop@amd.com>
3496         * configure.ac: Add brackets around AC_TRY_COMPILE alternative.
3497         * configure: Regenerated.
3499         2010-04-02  Sebastian Pop  <sebastian.pop@amd.com>
3500         * configure.ac: Print "buggy but acceptable" when CLooG
3501         revision is less than 9.
3502         * configure: Regenerated.
3504 2010-05-26  Dave Korn  <dave.korn.cygwin@gmail.com>
3506         Merge from gcc:
3508         2010-05-18  Steven Bosscher  <steven@gcc.gnu.org>
3509         * configure.ac (--enable-lto): All *-apple-darwin* now support LTO.
3510         * configure: Regenerate.
3512         2010-05-07  Steven Bosscher  <steven@gcc.gnu.org>
3513         * configure.ac (--enable-lto): Add x86_64-apple-darwin* as
3514         a platform that supports LTO.
3515         * configure: Regenerate.
3517         2010-04-27  Dave Korn  <dave.korn.cygwin@gmail.com>
3518         PR lto/42776
3519         * configure.ac (--enable-lto): Refactor handling so libelf tests
3520         are only performed inside then-clause of ACX_ELF_TARGET_IFELSE,
3521         and allow LTO to be explicitly enabled on non-ELF platforms that
3522         are known to support it inside else-clause.
3523         * configure: Regenerate.
3525 2010-04-27  Roland McGrath  <roland@redhat.com>
3526             H.J. Lu  <hongjiu.lu@intel.com>
3528         * configure.ac (--enable-gold): Support both, both/gold and
3529         both/bfd to add gold to configdirs without removing ld.
3530         * configure: Regenerated.
3532         * Makefile.def: Add install-gold dependency to install-ld.
3533         * Makefile.in: Regenerated.
3535 2010-04-14  Tristan Gingold  <gingold@adacore.com>
3537         * configure.ac (alpha*-*-*vms*): Remove ld from noconfigdirs.
3538         * configure: Regenerate.
3540 2010-04-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3542         Merge from gcc:
3543         PR bootstrap/43615
3544         PR bootstrap/43328
3545         Revert:
3546         2010-03-31  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3547         * configure.ac: Do not pass --enable-multilib nor
3548         --disable-multilib in baseargs.  Accept explicitly passed
3549         --enable_multilib.
3550         * configure: Regenerate.
3552 2010-03-31  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3554         PR bootstrap/43328
3555         * configure.ac: Do not pass --enable-multilib nor
3556         --disable-multilib in baseargs.  Accept explicitly passed
3557         --enable_multilib.
3558         * configure: Regenerate.
3560 2010-03-23  Joseph Myers  <joseph@codesourcery.com>
3562         * configure.ac (tic6x-*-*): New case.
3563         * configure: Regenerate.
3565 2010-03-23  Joseph Myers  <joseph@codesourcery.com>
3567         Merge from gcc:
3568         2010-03-19  Jack Howarth <howarth@bromo.med.uc.edu>
3569         PR ada/42554
3570         * configure.ac: Only pass -c to ranlib for darwin9 and earlier.
3571         * configure: Regenerate.
3573 2010-03-23  Joseph Myers  <joseph@codesourcery.com>
3575         * config.sub: Update to version 2010-03-22.
3576         * config.guess: Update to version 2009-12-30.
3578 2010-03-14  Joseph Myers  <joseph@codesourcery.com>
3580         Merge from gcc:
3581         2010-01-11  Richard Guenther  <rguenther@suse.de>
3582         PR lto/41569
3583         * Makefile.def (all-lto-plugin): Depend on all-gcc.
3584         * Makefile.in: Regenerated.
3586 2010-03-01  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
3588         PR libstdc++/32499
3589         * configure.ac (RANLIB): Default to true.
3590         (STRIP): Likewise.
3591         (RANLIB_FOR_TARGET): Remove superfluous : argument.
3592         * configure: Regenerate.
3594 2010-02-17  Nick Clifton  <nickc@redhat.com>
3596         PR 11238
3597         * Makefile.tpl (local-distclean): Also remove config.cache files in
3598         sub-directories as there may not be Makefiles present in the
3599         sub-directories.
3600         * Makefile.tpl: Use "-exec rm {}" rather than "-delete" to delete
3601         the config.cache files found by the find command.
3603         * Makefile.in: Regenerate.
3604         * configure.ac: Revert previous delta.
3605         * configure: Regenerate.
3607 2010-02-15  Nick Clifton  <nickc@redhat.com>
3609         PR 11238
3610         * configure.ac: Delete config.cache files in sub-directories when
3611         deleting Makefiles.
3612         * configure: Regenerate.
3614 2010-02-15  Nick Clifton  <nickc@redhat.com>
3616         * configure.ac: Sync from gcc.
3617         * configure: Regenerate.
3619 2010-01-31  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3621         Sync from gcc:
3622         * configure.ac: Add "recommended" version checks for GMP/MPC.
3623         Update recommended GMP/MPFR/MPC versions.
3624         * configure: Regenerate.
3626 2010-01-25  Joern Rennecke  <amylaar@spamcop.net>
3628         gcc PR libstdc++/36101, gcc PR libstdc++/42813
3629         * configure.ac (bootstrap_target_libs): Make inclusion of
3630         target-libgomp conditional on libgomb being in target_configdirs.
3631         * configure: Regenerate.
3633 2010-01-23  Joern Rennecke  <amylaar@spamcop.net>
3635         gcc PR libstdc++/36101, gcc PR libstdc++/42813
3636         * configure.ac (bootstrap_target_libs): Include target-libgomp.
3637         * configure: Regenerate.
3639 2010-01-22  Joern Rennecke  <amylaar@spamcop.net>
3641         gcc PR libstdc++/36101, gcc PR libstdc++/42813
3642         * configure.ac (target_configdirs): Substitute.
3643         * Makefile.def: Bootstrap target module libgomp.
3644         Add dependency of all-target-libstdc++-v3 on configure-target-libgomp.
3645         * Makefile.tpl (TARGET_CONFIGDIRS): New makefile variable.
3646         (BASE_TARGET_EXPORTS): Export TARGET_CONFIGDIRS.
3647         * configure, Makefile.in: Regenerate.
3649 2009-12-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3651         * libtool.m4: Sync from git Libtool.
3652         * ltmain.sh: Likewise.
3653         * ltoptions.m4: Likewise.
3654         * ltversion.m4: Likewise.
3655         * lt~obsolete.m4: Likewise.
3657 2010-01-07  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3658             Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
3660         PR bootstrap/42424
3661         * configure.ac: Include libtool m4 files.
3662         (_LT_CHECK_OBJDIR): Call it.
3663         (extra_mpc_mpfr_configure_flags, extra_mpc_gmp_configure_flags,
3664         gmplibs, ppllibs, clooglibs): Use $lt_cv_objdir.
3666         * configure: Regenerate.
3668 2010-01-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3670         PR bootstrap/41818
3671         * Makefile.tpl (BASE_TARGET_EXPORTS): Only add TARGET_LIB_PATH
3672         to $(RPATH_ENVVAR) if bootstrapping.  Fix typo in comment.
3673         * Makefile.in: Regenerate.
3675 2009-12-18  Ben Elliston  <bje@au.ibm.com>
3677         * config.sub, config.guess: Update from upstream sources.
3679 2009-12-17  Jeff Johnston  <jjohnstn@redhat.com>
3681         * COPYING.NEWLIB: Update copyright date.
3682         * COPYING.LIBGLOSS: Ditto.
3684 2009-12-07  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3686         PR middle-end/30447
3687         PR middle-end/30789
3688         PR other/40302
3690         * configure.ac: Require MPC.
3691         * configure: Regenerate.
3693         * configure.ac: Update minimum MPC version to 0.8.
3694         * configure: Regenerate.
3696 2009-11-20  Paolo Bonzini  <bonzini@gnu.org>
3698         * config.guess: Sync with upstream and gcc.
3699         * config.sub: Sync with upstream and gcc.
3701 2009-11-16  Alexandre Oliva  <aoliva@redhat.com>
3703         * Makefile.def: Restore host and target settings for gmp.
3704         * Makefile.in: Rebuild.
3706 2009-11-16  Alexandre Oliva  <aoliva@redhat.com>
3708         * configure.ac: Add libelf to host_libs.  Enable in-tree configury
3709         of ppl and cloog.  Fix in-tree configury of libelf, skip tests.
3710         Fix portability of test of C++ as bootstrap language.  Add
3711         ppl/src/ppl-config.o to the bootstrap compare exclusion list.
3712         * configure: Rebuild.
3713         * Makefile.def: Drop host and target settings from gmp, mpfr, ppl,
3714         and cloog.  Fix in-tree ppl configuration.  Introduce libelf
3715         in-tree building.
3716         * Makefile.tpl (POSTSTAGE1_CXX_EXPORT): New.
3717         (POSTSTAGE1_HOST_EXPORTS): Use it.
3718         (STAGE[+id+]_CXXFLAGS): New.
3719         (BASE_FLAGS_TO_PASS): Pass it down.
3720         (configure-stage[+id+]-[+prefix+][+module+]): Use it.  Add
3721         extra_exports.
3722         (all-stage[+id+]-[+prefix+][+module+]): Likewise.
3723         (configure-[+prefix+][+module+], all-[+prefix+][+module+]): Add
3724         extra_exports.
3725         * Makefile.in: Rebuild.
3727 2009-11-06  Ozkan Sezer  <sezeroz@gmail.com>
3729         * configure.ac (FLAGS_FOR_TARGET):  Add -L and -isystem
3730         paths for *-w64-mingw* and x86_64-*mingw*.
3731         * configure: Regenerated.
3733 2009-10-30  Kai Tietz  <kai.tietz@onevision.com>
3735         * configure.ac: Disable target-winsup & co for
3736         x86_64-*-mingw* and *-w64-mingw* targets.
3737         * configure: Regenerated.
3739 2009-10-23  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
3741         * configure.ac (CLooG test): Use = with test.
3742         * configure: Regenerate.
3744 2009-10-22  Richard Guenther  <rguenther@suse.de>
3746         * configure.ac: Do not set LIBS for ppl/cloog checks.  Disable
3747         cloog if the ppl version check failed.  Move flags saving
3748         before setting in libelf check.
3749         * configure: Regenerate.
3751 2009-10-21  Richard Guenther  <rguenther@suse.de>
3753         * configure.ac: Adjust the ppl and cloog configure to work as
3754         documented.  Disable cloog if ppl was disabled.  Omit the version
3755         checks if they were disabled.
3756         * configure: Re-generate.
3758 2009-10-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3760         * configure.ac: Add 'lto' to enable_languages, not
3761         new_enable_languages, and only if not already present.
3762         * configure: Regenerate.
3764 2009-10-06  Ian Lance Taylor  <iant@google.com>
3766         * Makefile.def: check-gold depends upon all-gas.
3767         * Makefile.in: Rebuild.
3769 2009-10-03  2009-02-05  Rafael Avila de Espindola  <espindola@google.com>
3771         * Makefile.def: all-lto-plugin depends on all-libiberty.
3772         set bootstrap=true for lto-plugin.
3773         Add lto-plugin.
3774         * Makefile.in: Regenerate.
3775         * configure.ac (host_libs): Add lto-plugin.
3776         * configure: Regenerate.
3778 2009-10-03  Diego Novillo  <dnovillo@google.com>
3780         * Makefile.tpl (HOST_EXPORTS): Add LIBELFLIBS and LIBELFINC.
3781         (HOST_LIBELFLIBS): Define.
3782         (HOST_LIBELFINC): Define.
3783         * Makefile.in: Regenerate.
3784         * configure.ac: Add --enable-lto.
3785         Add --with-libelf, --with-libelf-include and --with-libelf-lib.
3786         If --enable-lto is used, add 'lto' to new_enable_languages.
3787         If --enable-lto is used and gold is enabled, add
3788         lto-plugin to configdirs.
3789         * configure: Regenerate.
3791 2009-10-03  Simon Baldwin  <simonb@google.com>
3793         * configure.ac: If --with-system-zlib, suppress local zlib and
3794         pass --with-system-zlib to subdir configure scripts.
3795         * configure: Regenerate.
3797 2009-10-01  Loren J. Rittle <ljrittle@acm.org>
3798             Paolo Bonzini  <bonzini@gnu.org>
3800         * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Use $$s rather than
3801         $(srcdir).
3802         * Makefile.in: Rebuilt.
3804 2009-09-29  Paolo Bonzini  <bonzini@gnu.org>
3806         Sync from gcc:
3807         2009-09-26  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3809         * configure.ac: Update minimum MPC version to 0.7.
3810         * configure: Regenerate.
3812 2009-09-25  Nick Clifton  <nickc@redhat.com>
3814         * configure.ac: Pass any --cache-file=/dev/null option on to
3815         subconfigures.
3816         * configure: Regenerate.
3818 2009-09-23  Nick Clifton  <nickc@redhat.com>
3820         * config.sub, config.guess: Update from upstream sources.
3822 2009-09-22  Loren J. Rittle <ljrittle@acm.org>
3824         * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Remove stray $$r/.
3825         * Makefile.in: Rebuilt.
3827 2009-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3829         PR bootstrap/32272
3830         * configure.ac: Error out if $srcdir isn't '.' but contains
3831         host-${host_noncanonical}.
3832         * configure: Regenerate.
3834 2009-09-21  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3836         * configure.ac: If bootstrapping a combined tree with
3837         --enable-gold, require c++ in stage1_languages.
3838         * configure: Regenerate.
3840         * configure.ac: Also add target_libs of stage1_languages to
3841         bootstrap_target_libs.
3842         * configure: Regenerate.
3844         * configure.ac: Diagnose --enable-build-with-cxx bootstrap
3845         with --enable-languages not containing c++.
3846         * configure: Regenerate.
3848 2009-09-16  Jie Zhang  <jie.zhang@analog.com>
3850         * configure.ac: Disable java and boehm-gc for bfin-*-*.
3851         * configure: Regenerate.
3853 2009-09-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3855         * configure.ac: Do not use $extrasub for replacing @if/@endif
3856         parts in Makefile; instead, use additional arguments to
3857         AC_CONFIG_COMMANDS to do the replacement manually, with several
3858         sed invocations, to avoid HP-UX sed command limits.
3859         * configure: Regenerate.
3861 2009-09-04  Alexandre Oliva  <aoliva@redhat.com>
3863         * configure.ac (with-build-config): Document.  Handle without.
3864         Handle missing argument.
3865         * configure: Rebuilt.
3867 2009-09-03  Alexandre Oliva  <aoliva@redhat.com>
3869         * configure.ac (--with-build-config): New.  Set BUILD_CONFIG.
3870         Default to bootstrap-debug only if compare-debug works.
3871         * configure: Rebuilt.
3872         * Makefile.tpl: Make BUILD_CONFIG configure-configurable.
3873         * Makefile.in: Rebuilt.
3875 2009-09-01  Alexandre Oliva  <aoliva@redhat.com>
3877         * Makefile.tpl (BUILD_CONFIG): Default to bootstrap-debug.
3878         * Makefile.in: Rebuilt.
3880 2009-09-02  Paolo Bonzini  <bonzini@gnu.org>
3882         * Makefile.tpl (AWK): Fix typo.
3883         * Makefile.in: Regenerate.
3885 2009-09-02  Paolo Bonzini  <bonzini@gnu.org>
3887         * configure.ac: Detect awk and sed.
3888         * Makefile.def (flags_to_pass): Add AWK and SED.
3889         * Makefile.tpl (AWK, SED): New.
3890         (BASE_FLAGS_TO_PASS): Add AWK and SED.
3891         * configure: Regenerate.
3892         * Makefile.in: Regenerate.
3894 2009-09-01  Tristan Gingold  <gingold@adacore.com>
3896         * setup.com: Ported to Itanium VMS.  Can also build using DCL scripts.
3897         Remove logical names.
3899 2009-08-31  Dave Korn  <dave.korn.cygwin@gmail.com>
3901         * ltmain.sh (func_normal_abspath): New function.
3902         (func_relative_path): Likewise.
3903         (func_mode_help): Document new -bindir option for link mode.
3904         (func_mode_link): Add new -bindir option, and use it to place
3905         output DLL if specified.
3907 2009-08-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3909         * configure.ac (AC_PREREQ): Bump to 2.64.
3911 2009-08-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3913         * README-maintainer-mode: Point directly to upstream locations
3914         for autoconf, automake, libtool, gettext, instead of copies on
3915         sources.redhat.com.  Document required versions.
3916         * configure.ac: Do not substitute datarootdir, htmldir,
3917         pdfdir, docdir.  Do not process --with-datarootdir,
3918         --with-htmldir, --with-pdfdir, --with-docdir.
3919         * configure: Regenerate.
3921         * configure: Regenerate.
3923         * compile: Sync from Automake 1.11.
3924         * depcomp: Likewise.
3925         * install-sh: Likewise.
3926         * missing: Likewise.
3927         * mkinstalldirs: Likewise.
3928         * ylwrap: Likewise.
3930 2009-08-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3932         * configure.ac: Call AC_DISABLE_OPTION_CHECKING.
3933         (baseargs): Add --disable-option-checking.
3934         * configure: Regenerate.
3936         * Makefile.def (configure-target-libiberty): Depend on
3937         all-binutils and all-ld.
3938         (configure-target-newlib): Likewise.
3939         * Makefile.in: Regenerate.
3941 2009-08-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3943         Sync with GCC, merge:
3945         2009-07-31  Christian Bruel  <christian.bruel@st.com>
3947         * configure.ac (sh*-*-elf): Don't add target-libgloss to noconfigdirs.
3948         * configure: Regenerate.
3950         2009-07-06  Ian Lance Taylor  <iant@google.com>
3952         * configure.ac: Add missing comma in AC_ARG_WITH(boot-libs).
3953         * configure: Rebuild.
3955         2009-06-26  Steve Ellcey  <sje@cup.hp.com>
3957         PR bootstrap/40338
3958         * configure.ac (comparestring): Create new variable.
3959         * Makefile.tpl (comparestring): Use to skip some comparisions.
3960         * configure: Regenerate.
3961         * Makefile.in: Regenerate.
3963         2009-06-23  Ian Lance Taylor  <iant@google.com>
3965         * configure.ac: Add --enable-build-with-cxx.  When set, add c++ to
3966         boot_languages.  Only bootstrap target libraries listed in
3967         target_libs for some boot language.  Add --with-stage1-ldflags,
3968         --with-stage1-libs, --with-boot-ldflags, --with-boot-libs.  Remove
3969         with_host_libstdcxx from ppllibs.  Only add -fkeep-inline-functions
3970         if not building with C++.
3971         * Makefile.def: For target_module libstdc++-v3, set bootstrap=true.
3972         * Makefile.tpl (STAGE1_LDFLAGS, STAGE1_LIBS): New variables.
3973         (POSTSTAGE1_LDFLAGS, POSTSTAGE1_LIBS): New variables.
3974         (HOST_EXPORTS): Add STAGE1_LDFLAGS to LDFLAGS.  Export HOST_LIBS.
3975         (POSTSTAGE1_HOST_EXPORTS): Set CXX and CXX_FOR_BUILD.  Add
3976         POSTSTAGE1_LDFLAGS to LDFLAGS.  Export HOST_LIBS.
3977         (POSTSTAGE1_FLAGS_TO_PASS): Likewise.
3978         * configure, Makefile.in: Rebuild.
3980         2009-06-08  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3982         * configure.ac: Detect MPC in default directory.
3983         * configure: Regenerate.
3985         2009-06-02  Richard Sandiford  <r.sandiford@uk.ibm.com>
3987         * configure.ac (powerpc-*-aix*, rs6000-*-aix*): Add target-newlib
3988         to noconfdirs.
3989         * configure: Regenerate.
3991         2009-05-29  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3993         * Makefile.def: Add MPC support and dependencies.
3994         * configure.ac: Likewise.  Reorganize GMP/MPFR checks.
3996         * Makefile.in, configure: Regenerate.
3998         2009-05-24  Nicolas Roche  <roche@adacore.com>
4000         * Makefile.tpl (compare-target): Skip ./ada/*tools directories.
4001         * Makefile.in: Regenerate.
4003         2009-05-21  Dave Korn  <dave.korn.cygwin@gmail.com>
4005         * configure.ac (cygwin noconfigdirs):  Remove libgcj.
4006         * configure:  Regenerate.
4008         2009-05-07  Dave Korn  <dave.korn.cygwin@gmail.com>
4010         * configure.ac ($with_ppl):  Default to no if not supplied.
4011         ($with_cloog):  Likewise.
4012         configure:  Regenerate.
4014         2009-04-24  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4016         PR bootstrap/39739
4017         * configure.ac (extra_mpfr_configure_flags): Set and AC_SUBST.
4018         * Makefile.def (module=mpfr): Use extra_mpfr_configure_flags.
4020         * configure, Makefile.in: Regenerate.
4022         2009-04-14  Jakub Jelinek  <jakub@redhat.com>
4024         * configure.ac: Change copyright header to refer to version
4025         3 of the GNU General Public License and to point readers at the
4026         COPYING3 file and the FSF's license web page.
4027         * Makefile.def: Likewise.
4028         * Makefile.tpl: Likewise.
4029         * Makefile.in: Regenerate.
4031         2009-04-09  Jack Howarth  <howarth@bromo.med.uc.edu>
4033         * configure.ac: Restore match for darwin9 or later. Use double
4034         brackets since regeneration eats one pair.
4035         * configure: Regenerate.
4037 2009-08-18  Christopher Faylor  <me+cygwin@cgf.cx>
4039         * MAINTAINERS: Perform some obvious fixups.
4041 2009-08-17  Ben Elliston  <bje@au.ibm.com>
4043         * config.sub, config.guess: Update from upstream sources.
4045 2009-08-06  Michael Eager <eager@eagercon.com>
4047         * configure.ac: Add Microblaze target.
4048         * configure: Regenerate.
4050 2009-07-02  Tristan Gingold  <gingold@adacore.com>
4052         * configure.ac: Do not exclude gas for i386-*-darwin.
4053         Add a case for x86_64-*-darwin.
4054         * configure: Regenerate.
4056 2009-06-26  Doug Evans  <dje@sebabeach.org>
4058         * Makefile.def (host_modules): Add cgen.
4059         * Makefile.in: Regenerate.
4060         * configure.ac (host_tools): Add cgen.
4061         * configure: Regenerate.
4063 2009-06-17  Michael Eager <eager@eagercon.com>
4065         * COPYING.LIBGLOSS: Add Xilinx license.
4067 2009-06-15  Ryan Mansfield  <rmansfield@qnx.com>
4069         * configure.ac: Define is_elf for QNX Neutrino targets.
4070         * configure: Regenerate.
4072 2009-06-03  Jerome Guitton  <guitton@adacore.com>
4073             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4075         * Makefile.tpl (all): Avoid a trailing backslash.
4076         * Makefile.in: Regenerate.
4078 2009-06-03  Ben Elliston  <bje@au.ibm.com>
4080         * config.sub, config.guess: Update from upstream sources.
4082 2009-06-02  Alexandre Oliva  <aoliva@redhat.com>
4084         * Makefile.tpl ([+compare-target+]): Compare all stage
4085         directories, rather than just gcc.
4086         * Makefile.in: Rebuilt.
4088 2009-05-28  Doug Kwan  <dougkwan@google.com>
4090         * configure.ac: Support gold for target arm*-*-*.
4091         * configure: Regenerate.
4093 2009-05-27  Alexandre Oliva  <aoliva@redhat.com>
4095         * Makefile.tpl (all): Avoid harmless warning in make all when
4096         gcc-bootstrap is enabled but stage_last does not exist.
4097         * Makefile.in: Rebuilt.
4099 2009-05-25  Tristan Gingold  <gingold@adacore.com>
4101         * setup.com: Complete the file with configuration and build.
4103 2009-05-18  Alexandre Oliva  <aoliva@redhat.com>
4105         PR other/40159
4106         * Makefile.tpl (all): Don't assume gcc-bootstrap and
4107         gcc-no-bootstrap are mutually exclusive.
4108         * Makefile.in: Rebuilt.
4110 2009-05-18  Alexandre Oliva  <aoliva@redhat.com>
4112         PR other/40159
4113         * Makefile.tpl (all): Don't end with unconditional success.
4114         * Makefile.in: Rebuilt.
4116 2009-05-12  Alexandre Oliva  <aoliva@redhat.com>
4118         PR target/37137
4119         * Makefile.def (flags_to_pass): Remove redundant and incomplete
4120         STAGE1_CFLAGS, STAGE2_CFLAGS, STAGE3_CFLAGS, and STAGE4_CFLAGS.
4121         Add FLAGS_FOR_TARGET and BUILD_CONFIG.
4122         (bootstrap_stage): Remove bootstrap-debug custom stages.  Turn
4123         stage_configureflags, stage_cflags and stage_libcflags into
4124         explicit Makefile macros.
4125         * Makefile.tpl (HOST_EXPORTS, EXTRA_HOST_FLAGS): Pass GCJ and
4126         GFORTRAN.
4127         (POSTSTAGE1_HOST_EXPORTS): Add XGCC_FLAGS_FOR_TARGET and TFLAGS to
4128         CC.  Set CC_FOR_BUILD from CC.
4129         (BASE_TARGET_EXPORTS, RAW_CXX_TARGET_EXPORTS,
4130         NORMAL_TARGET_EXPORTS): Move SYSROOT_CFLAGS_FOR_TARGET and
4131         DEBUG_PREFIX_CFLAGS_FOR_TARGET from CFLAGS and CXXFLAGS to
4132         XGCC_FLAGS_FOR_TARGET.  Add it along with TFLAGS to CC, CXX, GCJ,
4133         and GFORTRAN.
4134         (TFLAGS, STAGE_CFLAGS, STAGE_TFLAGS, STAGE_CONFIGURE_FLAGS): New.
4135         (_LIBCFLAGS): Renamed to _TFLAGS.
4136         (do-compare-debug, do-compare3-debug): Drop.
4137         (CC, GCC_FOR_TARGET, CXX_FOR_TARGET, RAW_CXX_FOR_TARGET,
4138         GCJ_FOR_TARGET, GFORTRAN_FOR_TARGET): Remove FLAGS_FOR_TARGET.
4139         (FLAGS_FOR_TARGET, SYSROOT_CFLAGS_FOR_TARGET,
4140         DEBUG_PREFIX_CFLAGS_FOR_TARGET): Move down.
4141         (XGCC_FLAGS_FOR_TARGET): New.
4142         (BASE_FLAGS_TO_PASS): Pass STAGEid_CFLAGS, STAGEid_TFLAGS and TFLAGS.
4143         (EXTRA_HOST_FLAGS): Pass GCJ and GFORTRAN.
4144         (POSTSTAGE1_FLAGS_TO_PASS): Move SYSROOT_CFLAGS_FOR_TARGET and
4145         DEBUG_PREFIX_CFLAGS_FOR_TARGET from CFLAGS, CXXFLAGS, LIBCFLAGS,
4146         LIBCXXFLAGS to XGCC_FLAGS_FOR_TARGET.    Add it along with TFLAGS
4147         to CC, CXX, GCJ, and GFORTRAN.  Pass XGCC_FLAGS_FOR_TARGET and
4148         TFLAGS.
4149         (BUILD_CONFIG): Include if requested.
4150         (all): Set TFLAGS on bootstrap.
4151         (configure-stageid-prefixmodule): Pass TFLAGS, adjust FLAGS.
4152         (all-stageid-prefixmodule): Likewise.
4153         (do-clean, distclean-stageid): Set TFLAGS.
4154         (restrap): Fix whitespace.
4155         * Makefile.in: Rebuilt.
4157 2009-04-25  Eric Botcazou  <ebotcazou@adacore.com>
4159         * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Add GNATBIND.
4160         (POSTSTAGE1_FLAGS_TO_PASS): Pick up exported value for GNATBIND.
4161         * Makefile.in: Regenerate.
4163 2009-04-24  Eli Zaretskii  <eliz@gnu.org>
4165         * config.guess (pc:*:*:*): Return i586-pc-msdosdjgpp, for
4166         consistency with config.sub.  (Update from upstream sources.)
4168 2009-04-21  Joseph Myers  <joseph@codesourcery.com>
4170         * texinfo/texinfo.tex: Update to version 2009-03-28.05.
4172 2009-04-17  Ben Elliston  <bje@au.ibm.com>
4174         * config.sub, config.guess: Update from upstream sources.
4176 2009-04-15  Anthony Green  <green@moxielogic.com>
4178         * configure.ac: Add moxie support.
4179         * configure: Rebuilt.
4181 2009-04-09  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4183         * configure.ac: Bump minimum GMP/MPFR versions to 4.2 and 2.3.1.
4184         * configure: Regenerate.
4186 2009-04-09  H.J. Lu  <hongjiu.lu@intel.com>
4188         PR gas/10039
4189         * configure.ac: Require texinfo 4.7.
4190         * configure: Regenerated.
4192 2009-04-09  Steve Ellcey  <sje@cup.hp.com>
4194         * Makefil.def (languages): New entries.
4195         * Makefile.tpl (check-gcc-*): New generic target.
4196         * Makefile.in: Regenerate.
4198 2009-03-27  Eli Zaretskii  <eliz@gnu.org>
4200         * djunpack.bat: Use ".." quoting in Sed command, for the sake of
4201         Windows builds of Sed.
4203 2009-03-18  Tom Tromey  <tromey@redhat.com>
4205         * configure: Rebuild.
4206         * configure.ac (host_libs): Add libiconv.
4207         * Makefile.in: Rebuild.
4208         * Makefile.def (host_modules): Add libiconv.
4209         (configure-gdb, all-gdb): Depend on libiconv.
4211 2009-03-16  Tristan Gingold  <gingold@adacore.com>
4213         * configure.ac: Treat gdb as supported on x86_64-darwin.
4214         * configure: Regenerate.
4216 2009-03-16  Joseph Myers  <joseph@codesourcery.com>
4218         Merge from GCC:
4220         2009-03-16  Joseph Myers  <joseph@codesourcery.com>
4222         * configure.ac (--with-host-libstdcxx): New option.
4223         * configure: Regenerate.
4225         2009-01-29  Robert Millan  <rmh@aybabtu.com>
4227         * configure.ac: Recognize GNU/kOpenSolaris (*-*-kopensolaris*-gnu).
4228         * configure: Regenerate.
4230         2009-01-12  Sebastian Pop <sebastian.pop@amd.com>
4232         PR tree-optimization/38515
4233         * configure.ac (cloog-polylib): Removed.
4234         (with_ppl, with_cloog): Test for "no".
4235         * configure: Regenerated.
4237 2009-03-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4239         Backport from git Libtool:
4241         2009-01-19  Robert Millan  <rmh@aybabtu.com>
4242         Support GNU/kOpenSolaris.
4243         * libltdl/m4/libtool.m4 (_LT_SYS_DYNAMIC_LINKER)
4244         (_LT_CHECK_MAGIC_METHOD, _LT_COMPILER_PIC, _LT_LINKER_SHLIBS)
4245         (_LT_LANG_CXX_CONFIG) [kopensolaris*-gnu]: Recognize
4246         GNU/kOpenSolaris.
4248 2009-02-05  Andreas Schwab  <schwab@suse.de>
4250         * Makefile.tpl (stage_last): Define $r and $s before using
4251         $(RECURSE_FLAGS_TO_PASS).
4252         * Makefile.in: Regenerate
4254 2009-01-21  Jeff Johnston  <jjohnstn@redhat.com>
4256         * COPYING.NEWLIB: Add ARM license.
4258 2009-01-16  Alan Modra  <amodra@bigpond.net.au>
4260         * Makefile.def (configure-opcodes): Depend on configure-libiberty.
4261         (all-opcodes): Depend on all-libiberty.
4262         * Makefile.in: Regenerate.
4264 2009-01-15  Douglas B Rupp  <rupp@gnat.com>
4266         * configure.ac (ia64*-*-*vms*): Add case with no gdb or ld support.
4267         * configure: Regenerate.
4269 2008-12-18  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4271         Backport link test fix from upstream Libtool:
4273         * libltdl.m4 (_LT_SYS_DYNAMIC_LINKER, _LT_LINKER_SHLIBS):
4274         Add cache variables to tests that require the linker to work.
4275         For shlibpath_overrides_runpath, this also changes the semantics
4276         to let the result from the C compiler take precedence.
4277         compiler take precedence.
4279 2008-12-02  Ben Elliston  <bje@au.ibm.com>
4281         * config.sub, config.guess: Update from upstream sources.
4283 2008-12-17  Jeff Johnston  <jjohnstn@redhat.com>
4285         * COPYING.NEWLIB: Updated.
4286         * COPYING.LIBGLOSS: Ditto.
4288 2008-12-16  Paolo Bonzini  <bonzini@gnu.org>
4290         Sync with GCC:
4292         2008-12-12  Sebastian Pop  <sebastian.pop@amd.com>
4294         * configure.ac (ppllibs): Add by default the lib flags.
4295         * configure: Regenerate.
4297         2008-12-04  Jack Howarth  <howarth@bromo.med.uc.edu>
4299         * configure.ac: Add double brackets on darwin[912].
4300         * configure: Regenerate.
4302         2008-12-02  Jack Howarth  <howarth@bromo.med.uc.edu>
4304         * configure.ac: Expand to darwin10 and later.
4305         * configure: Regenerate.
4307 2008-12-02  Andreas Schwab  <schwab@suse.de>
4309         * Makefile.def: configure-target-boehm-gc depends on
4310         all-target-libstdc++-v3.
4311         * Makefile.in: Regenerate.
4313 2008-12-02  Ben Elliston  <bje@au.ibm.com>
4315         * config.sub, config.guess: Update from upstream sources.
4317 2008-11-27  Joseph Myers  <joseph@codesourcery.com>
4319         Merge from GCC:
4321         2007-12-02  Matthias Klose  <doko@ubuntu.com>
4323         * config-ml.in: Remove 64bit configure tests.
4325         2008-05-14  Rafael Espindola  <espindola@google.com>
4327         * config-ml.in: don't handle --enable-shared and --enable-static.
4329         2008-09-02  Sebastian Pop  <sebastian.pop@amd.com>
4330             Tobias Grosser  <grosser@fim.uni-passau.de>
4331             Jan Sjodin  <jan.sjodin@amd.com>
4332             Harsha Jagasia  <harsha.jagasia@amd.com>
4333             Dwarakanath Rajagopal  <dwarak.rajagopal@amd.com>
4334             Konrad Trifunovic  <konrad.trifunovic@inria.fr>
4335             Adrien Eliche  <aeliche@isty.uvsq.fr>
4337         Merge from graphite branch.
4338         * configure: Regenerate.
4339         * Makefile.in: Regenerate.
4340         * configure.ac (host_libs): Add ppl and cloog.
4341         Add checks for PPL and CLooG.
4342         * Makefile.def (ppl, cloog): Added modules and dependences.
4343         * Makefile.tpl (PPLLIBS, PPLINC, CLOOGLIBS, CLOOGINC): New.
4344         (HOST_PPLLIBS, HOST_PPLINC, HOST_CLOOGLIBS, HOST_CLOOGINC): New.
4346         2008-09-03  Richard Guenther  <rguenther@suse.de>
4348         * configure.ac: Always pass -DCLOOG_PPL_BACKEND to the
4349         cloog test.
4350         * configure: Re-generate.
4352         2008-09-03  Sebastian Pop  <sebastian.pop@amd.com>
4354         * configure.ac (--with-cloog-polylib): New.
4355         (--disable-cloog-version-check): New.
4356         (--disable-ppl-version-check): New.
4357         * configure: Re-generate.
4359         2008-09-05  Richard Guenther  <rguenther@suse.de>
4361         * configure.ac: Initialize clooglibs to -lcloog.
4362         * configure: Re-generate.
4364         2008-10-13  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4366         * configure.ac (MPFR check): Bump minimum version to 2.3.0 and
4367         recommended version to 2.3.2.
4369         * configure: Regenerate.
4371         2008-10-31  Ben Elliston  <bje@au.ibm.com>
4373         * configure.ac (spu-*-*): Remove special case.
4374         * configure: Regenerate.
4376         Complete comment text from GCC version of:
4378         2008-08-31  Aaron W. LaFramboise  <aaronavay62@aaronwl.com>
4380         * configure.ac (RPATH_ENVVAR): Use PATH on Windows.
4381         (GCC_SHLIB_SUBDIR): New.
4382         * Makefile.tpl (HOST_LIB_PATH_gcc): Use GCC_SHLIB_SUBDIR.
4383         * configure: Regenerate.
4384         * Makefile.in: Regenerate.
4386 2008-11-27  Tristan Gingold  <gingold@adacore.com>
4388         * configure.ac: Build gdb for i?86-*-darwin*
4389         * configure: Regenerated.
4391 2008-11-14  Daniel Jacobowitz  <dan@codesourcery.com>
4393         PR bootstrap/38014
4394         PR bootstrap/37923
4396         Revert:
4398         2008-10-24  Daniel Jacobowitz  <dan@codesourcery.com>
4400         * Makefile.tpl (HOST_EXPORTS): Correct CPPFLAGS typo.
4401         * Makefile.in: Regenerated.
4403         2008-10-22  Daniel Jacobowitz  <dan@codesourcery.com>
4405         PR gdb/921
4406         PR gdb/1646
4407         PR gdb/2175
4408         PR gdb/2176
4410         * Makefile.def (flags_to_pass): Add CPPFLAGS_FOR_BUILD and CPPFLAGS.
4411         * Makefile.tpl (BUILD_EXPORTS): Set CPPFLAGS.
4412         (EXTRA_BUILD_FLAGS): Correct typo.  Pass CPPFLAGS.
4413         (HOST_EXPORTS): Pass CPPFLAGS.
4414         (CPPFLAGS_FOR_BUILD, CPPFLAGS, CPPFLAGS_FOR_TARGET): Define.
4415         (LDFLAGS_FOR_TARGET): Initialize from configure script.
4416         (EXTRA_TARGET_FLAGS): Set CPPFLAGS.
4417         * Makefile.in, configure: Regenerated.
4418         * configure.ac: Set CPPFLAGS_FOR_TARGET, LDFLAGS_FOR_TARGET,
4419         and CPPFLAGS_FOR_BUILD.
4421 2008-10-29  Stefan Schulze Frielinghaus  <xxschulz@de.ibm.com>
4423         * configure.ac [spu-*-*]: Do not set skipdirs.
4424         * configure: Re-generate.
4426 2008-10-24  Daniel Jacobowitz  <dan@codesourcery.com>
4428         * Makefile.tpl (HOST_EXPORTS): Correct CPPFLAGS typo.
4429         * Makefile.in: Regenerated.
4431 2008-10-22  Daniel Jacobowitz  <dan@codesourcery.com>
4433         PR gdb/921
4434         PR gdb/1646
4435         PR gdb/2175
4436         PR gdb/2176
4438         * Makefile.def (flags_to_pass): Add CPPFLAGS_FOR_BUILD and CPPFLAGS.
4439         * Makefile.tpl (BUILD_EXPORTS): Set CPPFLAGS.
4440         (EXTRA_BUILD_FLAGS): Correct typo.  Pass CPPFLAGS.
4441         (HOST_EXPORTS): Pass CPPFLAGS.
4442         (CPPFLAGS_FOR_BUILD, CPPFLAGS, CPPFLAGS_FOR_TARGET): Define.
4443         (LDFLAGS_FOR_TARGET): Initialize from configure script.
4444         (EXTRA_TARGET_FLAGS): Set CPPFLAGS.
4445         * Makefile.in, configure: Regenerated.
4446         * configure.ac: Set CPPFLAGS_FOR_TARGET, LDFLAGS_FOR_TARGET,
4447         and CPPFLAGS_FOR_BUILD.
4449 2008-09-29  Peter O'Gorman  <pogma@thewrittenword.com>
4451         * libtool.m4: Update to libtool 2.2.6.
4452         * lt~obsolete.m4: Update to libtool 2.2.6.
4453         * ltmain.sh: Update to libtool 2.2.6.
4454         * ltsugar.m4: Update to libtool 2.2.6.
4455         * ltversion.m4: Update to libtool 2.2.6.
4456         * ltoptions.m4: Update to libtool 2.2.6.
4457         * ltgcc.m4: Update to match changes from libtool 2.2.6.
4459 2008-08-31  Aaron W. LaFramboise  <aaronavay62@aaronwl.com>
4461         * configure.ac (RPATH_ENVVAR): Use PATH on Windows.
4462         (GCC_SHLIB_SUBDIR): New.
4463         * Makefile.tpl (HOST_LIB_PATH_gcc): Use GCC_SHLIB_SUBDIR.
4464         * configure: Regenerate.
4465         * Makefile.in: Regenerate.
4467 2008-08-28  Tristan Gingold  <gingold@adacore.com>
4469         * configure.ac (powerpc-*-darwin*, i?86-*-darwin*,x86_64-*-darwin9):
4470         Enable bfd, binutils and opcodes.
4471         * configure: Regenerate.
4473 2008-08-16  Nicolas Roche  <roche@adacore.com>
4475         * Makefile.tpl: Add BOOT_ADAFLAGS.
4476         * Makefile.in: Regenerate.
4478 2008-08-16  Richard Sandiford  <rdsandiford@googlemail.com>
4480         * configure.ac (mips*-*-*linux*, mips*-*-gnu*): Use mt-mips-gnu.
4481         * configure: Regenerate.
4483 2008-07-30 Paolo Bonzini  <bonzini@gnu.org>
4485         Sync with gcc:
4486         2008-07-30 Paolo Bonzini  <bonzini@gnu.org>
4488         * configure.ac: Add makefile fragments for hpux.
4489         * Makefile.def (flags_to_pass): Add ADA_CFLAGS.
4490         * Makefile.tpl (HOST_EXPORTS): Pass ADA_CFLAGS.
4491         * configure: Regenerate.
4492         * Makefile.in: Regenerate.
4494         2008-06-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4496         * Makefile.tpl ($(srcdir)/configure): Update dependencies.
4497         * Makefile.in: Regenerate.
4498         * configure: Regenerate.
4500 2008-06-18  Ian Lance Taylor  <iant@google.com>
4502         * src-release (BINUTILS_SUPPORT_DIRS): Remove mkdep and depcomp.
4504         * src-release (BINUTILS_SUPPORT_DIRS): Add depcomp.
4506 2008-06-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4508         * configure: Regenerate.
4510 2008-06-16  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4512         * configure.ac: Set TOPLEVEL_CONFIGURE_ARGUMENTS early, when
4513         "$@" is still intact with both Autoconf 2.59 and 2.62.
4514         * configure: Regenerate.
4516 2008-06-16  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4518         * Makefile.tpl: Fix comment errors.
4519         * Makefile.in: Regenerate.
4521 2008-06-13  Julian Brown  <julian@codesourcery.com>
4523         * configure.ac (arm*-*-linux-gnueabi): Don't disable building
4524         of libobjc for ARM EABI Linux.
4525         * configure: Regenerate.
4527 2008-06-12  David S. Miller  <davem@davemloft.net>
4528             David Edelsohn  <edelsohn@gnu.org>
4530         * configure.ac: Add powerpc*-*-* to gold supported targets.
4531         * configure: Regenerate.
4533 2008-06-08  Joseph Myers  <joseph@codesourcery.com>
4535         PR tree-optimization/36218
4536         * Makefile.def (flags_to_pass): Add LDFLAGS_FOR_BUILD.
4537         * Makefile.tpl (EXTRA_BUILD_FLAGS): Define.
4538         (all prefix="build-"): Pass them to build-system sub-makes.
4539         * Makefile.in: Regenerate.
4541 2008-05-16  Daniel Jacobowitz  <dan@codesourcery.com>
4543         * src-release (DEVO_SUPPORT): Add ChangeLog, MAINTAINERS,
4544         README-maintainer-mode, lt~obsolete.m4, ltgcc.m4, depcomp,
4545         mkdep, and compile.  Update comments.
4546         (ETC_SUPPORT): Add ChangeLog and update comments.
4548 2008-05-11  Ian Lance Taylor  <iant@google.com>
4550         * src-release (BINUTILS_SUPPORT_DIRS): Add elfcpp and gold.
4552 2008-04-18  Paolo Bonzini  <bonzini@gnu.org>
4554         Sync with gcc:
4555         2008-04-18  Paolo Bonzini  <bonzini@gnu.org>
4557         PR bootstrap/35457
4558         * configure.ac: Include override.m4.
4559         * configure: Regenerate.
4561         2008-04-18  Paolo Bonzini  <bonzini@gnu.org>
4563         * Makefile.tpl (restrap): Call `make all' using double-colon rules.
4564         * Makefile.in: Regenerate.
4566         2008-04-11  Eric B. Weddington  <eweddington@cso.atmel.com>
4568         * configure.ac: Do not build libssp for the AVR.
4569         * configure: Regenerate.
4571 2008-04-18  Nick Clifton  <nickc@redhat.com>
4573         * MAINTAINERS: Replace reference to configure.in with reference to
4574         configure.ac.
4576 2008-04-18  M R Swami Reddy <MR.Swami.Reddy@nsc.com>
4578         * configure.ac (cr16-*-*): Add case for cr16 target and include gdb
4579         as nonconfigurable directories list.
4580         * configure: Regenerate.
4582 2008-04-14  David S. Miller  <davem@davemloft.net>
4584         * configure.ac: Add sparc*-*-* to gold supported targets.
4585         * configure: Regenerate.
4587 2008-04-14  Ben Elliston  <bje@au.ibm.com>
4589         * config.sub, config.guess: Update from upstream sources.
4591 2008-04-12  Hans-Peter Nilsson  <hp@axis.com>
4593         * Makefile.tpl <gcc>: Error early unless at least GNU make 3.80.
4594         * Makefile.in: Regenerate.
4596 2008-04-07  Ian Lance Taylor  <iant@google.com>
4598         * Makefile.def: check-gold depends upon all-binutils.
4599         * Makefile.in: Regenerate.
4601 2008-04-04  Nick Clifton  <nickc@redhat.com>
4603         PR binutils/4334
4604         * configure.ac: Run ACX_CHECK_CYGWIN_CAT_WORKS for cygwin hosted
4605         builds.
4606         * configure: Regenerate.
4608 2008-04-04  NightStrike  <NightStrike@gmail.com>
4610         PR other/35151
4611         * configure.ac: Combine rules for mingw32 and mingw64.
4612         * configure: Regenerate.
4614 2008-03-27  Paolo Bonzini  <bonzini@gnu.org>
4616         * Makefile.tpl (PICFLAG, PICFLAG_FOR_TARGET): Remove.
4617         * Makefile.in: Regenerate.
4619 2008-03-20  Ian Lance Taylor  <iant@google.com>
4621         * configure.ac: Add support for --enable-gold.
4622         * Makefile.def: Add gold as a directory like ld.
4623         * configure, Makefile.in: Regenerate.
4625 2008-03-19  Andreas Krebbel  <krebbel1@de.ibm.com>
4627         * opcodes/s390-mkopc.c (s390_opcode_cpu_val): S390_OPCODE_Z10 added.
4628         (s390_cond_extensions): Reduced extensions to the compare related.
4629         (main): z10 cpu type option added.
4630         (expandConditionalJump): Renamed to ...
4631         (insertExpandedMnemonic): ... this.
4633         * opcodes/s390-opc.c: Re-group the operand format makros.
4634         (INSTR_RIE_RRPU, INSTR_RIE_RRP0, INSTR_RIE_RUPI,
4635         INSTR_RIE_R0PI, INSTR_RIE_RUPU, INSTR_RIE_R0PU, INSTR_RIE_R0IU,
4636         INSTR_RIE_R0I0, INSTR_RIE_R0UU, INSTR_RIE_R0U0,
4637         INSTR_RIE_RRUUU, INSTR_RIS_RURDI, INSTR_RIS_R0RDI, INSTR_RIS_RURDU,
4638         INSTR_RIS_R0RDU, INSTR_RRF_U0RR, INSTR_RRF_00RR, INSTR_RRS_RRRDU,
4639         INSTR_RRS_RRRD0, INSTR_RXY_URRD, INSTR_SIY_IRD, INSTR_SIL_RDI,
4640         INSTR_SIL_RDU): New instruction formats added.
4641         (MASK_RIE_RRPU, MASK_RIE_RRP0, MASK_RIE_RUPI, MASK_RIE_R0PI,
4642         MASK_RIE_RUPU, MASK_RIE_R0PU, MASK_RIE_R0IU, MASK_RIE_R0I0,
4643         MASK_RIE_R0UU, MASK_RIE_R0U0, MASK_RIE_RRUUU, MASK_RIS_RURDI,
4644         MASK_RIS_R0RDI, MASK_RIS_RURDU, MASK_RIS_R0RDU, MASK_RRF_U0RR,
4645         MASK_RRF_00RR, MASK_RRS_RRRDU, MASK_RRS_RRRD0, MASK_RXY_URRD,
4646         MASK_SIY_IRD, MASK_SIL_RDI, MASK_SIL_RDU): New instruction format
4647         masks added.
4648         (s390_opformats): New formats added "ris", "rrs", "sil".
4649         * opcodes/s390-opc.txt: Add the conditional jumps with the
4650         extensions removed from automatic expansion in s390-mkopc.c manually.
4651         (asi - trtre): Add new System z10 EC instructions.
4652         * include/opcode/s390.h (s390_opcode_cpu_val): S390_OPCODE_Z10 added.
4654 2008-03-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4656         * configure.ac: m4_include config/proginstall.m4.
4657         * configure: Regenerate.
4659 2008-03-16  Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4661         Backport from upstream Libtool:
4663         2007-10-12  Eric Blake  <ebb9@byu.net>
4665         Deal with Autoconf 2.62's semantic change in m4_append.
4666         * ltsugar.m4 (lt_append): Replace broken versions of
4667         m4_append.
4668         (lt_if_append_uniq): Don't require separator to be overquoted,
4669         and avoid broken m4_append.
4670         (lt_dict_add): Fix typo.
4671         * libtool.m4 (_LT_DECL): Don't overquote separator.
4673 2008-03-13  David Edelsohn  <edelsohn@gnu.org>
4675         * config.rpath: Add AIX 6 support.
4677 2008-03-13  Paolo Bonzini  <bonzini@gnu.org>
4679         * Makefile.def (stageprofile).  Remove -fprofile-generate
4680         from stage_libcflags.
4681         * Makefile.in: Regenerate.
4683 2008-03-13  Ben Elliston  <bje@au.ibm.com>
4685         * config.sub, config.guess: Update from upstream sources.
4687 2008-03-06  Florian Krohm  <fkrohm@us.ibm.com>
4689         * s390-opc.c (INSTR_RSL_R0RD): Fix operands.
4690         * s390-opc.txt (cmpsc): Duplicate entry removed.
4691         (dxr, sqdr, sqer, cxfbr, cdfbr, cefbr, lzer, lzdr, lzxr,
4692         cegbr, cdgbr, cxgbr, cegr, cdgr, cxgr, cxfr, cdfr, cefr, fixr, fidr,
4693         fier, cu42, cu41): Fix operand format.
4695 2008-02-20  Paolo Bonzini  <bonzini@gnu.org>
4697         PR bootstrap/32009
4698         PR bootstrap/32161
4700         * configure.ac (CFLAGS_FOR_TARGET, CXXFLAGS_FOR_TARGET): Compute here.
4701         * configure: Regenerate.
4703         * Makefile.def: Define stage_libcflags for all bootstrap stages.
4704         * Makefile.tpl (BOOT_LIBCFLAGS, STAGE2_LIBCFLAGS, STAGE3_LIBCFLAGS,
4705         STAGE4_LIBCFLAGS): New.
4706         (CFLAGS_FOR_TARGET, CXXFLAGS_FOR_TARGET): Subst from autoconf, without
4707         $(SYSROOT_CFLAGS_FOR_TARGET) and $(DEBUG_PREFIX_CFLAGS_FOR_TARGET).
4708         (BASE_TARGET_EXPORTS): Append them here to C{,XX}FLAGS.
4709         (EXTRA_TARGET_FLAGS): Append them here to {LIB,}C{,XX}FLAGS.
4710         (configure-stage[+id+]-[+prefix+][+module+]): Pass stage_libcflags
4711         for target modules.  Don't export LIBCFLAGS.
4712         (all-stage[+id+]-[+prefix+][+module+]): Pass stage_libcflags; pass
4713         $(BASE_FLAGS_TO_PASS) where [+args+] was passed, and [+args+] after
4714         the overridden CFLAGS_FOR_TARGET and CXXFLAGS_FOR_TARGET.
4715         (invocations of `all'): Replace $(TARGET_FLAGS_TO_PASS) with
4716         $(EXTRA_TARGET_FLAGS), $(FLAGS_TO_PASS) with $(EXTRA_HOST_FLAGS).
4717         * Makefile.in: Regenerate.
4719 2008-02-16  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4721         PR libgcj/33085
4722         * libtool.m4 (_LT_COMPILER_PIC) [ mingw, cygwin ] <GCJ>:
4723         Do not use -DDLL_EXPORT.  Backport from upstream.
4725 2008-02-14  Nick Clifton  <nickc@redhat.com>
4727         Import this patch from gcc:
4728         2008-01-24  David Edelsohn  <edelsohn@gnu.org>
4730         * libtool.m4: Backport AIX 6 support from ToT Libtool.
4732 2008-02-02  Hans-Peter Nilsson  <hp@axis.com>
4734         * configure.ac: Enable fortran for cris-*-elf and crisv32-*-elf.
4735         * configure: Regenerate.
4737 2008-01-31  Marc Gauthier  <marc@tensilica.com>
4739         * configure.ac (xtensa*-*-*): Recognize processor variants.
4740         * configure: Regenerate.
4742 2008-01-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4744         PR bootstrap/34922
4745         * configure.ac (PARSE_ARGS): Push suitable setting of
4746         ac_subdirs_all, for `./configure --help=recursive'.
4747         Handle `+' in generic toplevel directory disabling.
4748         * configure: Regenerate.
4750 2008-01-23  Ben Elliston  <bje@au.ibm.com>
4752         * config.sub, config.guess: Update from upstream sources.
4754 2008-01-08  Ben Elliston  <bje@au.ibm.com>
4756         * config.sub, config.guess: Update from upstream sources.
4758 2007-12-19  Jeff Johnston  <jjohnstn@redhat.com>
4760         * COPYING.LIBGLOSS: Update default copyright.
4762 2007-12-19  Jeff Johnston  <jjohnstn@redhat.com>
4764         * COPYING.NEWLIB: Update default copyright.
4766 2007-12-17  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4768         * configure.ac: Change required MPFR from 2.2.0 -> 2.2.1.
4769         Change recommended MPFR from 2.2.1 > 2.3.0.
4770         * configure: Regenerate.
4772 2007-12-13  Richard Sandiford  <rsandifo@nildram.co.uk>
4774         * Makefile.tpl (CFLAGS_FOR_TARGET): Add -g.
4775         (CXXFLAGS_FOR_TARGET): Add -O2 -g.
4776         * Makefile.in: Regenerate.
4778 2007-12-10  Andreas Tobler  <a.tobler@schweiz.org>
4780         * configure.ac: Enable libjava for x86_64-*-darwin9.
4781         * configure: Regenerate.
4783 2007-12-05  Ben Elliston  <bje@au.ibm.com>
4785         * config.sub, config.guess: Update from upstream sources.
4787 2007-11-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4789         * config-ml.in: Robustify against white space in absolute file
4790         names.
4792         * config-ml.in (multi-clean): Substitute ${Makefile}.
4793         Remove superfluous ${Makefile} in list.
4795 2007-10-23  Daniel Jacobowitz  <dan@codesourcery.com>
4797         * Makefile.def (dependencies): Make configure-gdb depend on
4798         all-intl.
4799         * Makefile.in: Regenerated.
4801 2007-10-15  Patrick Mansfield <patmans@us.ibm.com>
4803         * Makefile.def: To avoid problems running with parallel makes,
4804         build newlib before libgloss so that target specific header
4805         files are availble.
4806         * Makefile.in: Regenerate.
4808 2007-10-11  Daniel Jacobowitz  <dan@codesourcery.com>
4810         * Makefile.def (dependencies): Add all-gdb -> all-libdecnumber.
4811         * Makefile.in: Regenerate.
4813 2007-10-11  Daniel Jacobowitz  <dan@codesourcery.com>
4815         * src-release (GDB_SUPPORT_DIRS): Add libdecnumber.
4816         * libdecnumber: New directory, imported from GCC.
4818 2007-10-08  Mike Frysinger  <vapier@gentoo.org>
4820         * configure.ac (CFLAGS_FOR_BUILD, CXXFLAGS_FOR_BUILD,
4821         LDFLAGS_FOR_BUILD): Default them to host flags only for $host = $build.
4822         Set default CXXFLAGS_FOR_BUILD to CXXFLAGS, not CFLAGS.  Set default
4823         LDFLAGS_FOR_BUILD to LDFLAGS, not CFLAGS.
4824         * configure: Regenerate.
4826 2007-10-01  Paolo Bonzini  <bonzini@gnu.org>
4828         * Makefile.tpl (AR_FOR_BUILD, AS_FOR_BUILD, CXX_FOR_BUILD,
4829         DLLTOOL_FOR_BUILD, GCJ_FOR_BUILD, GFORTRAN_FOR_BUILD,
4830         LDFLAGS_FOR_BUILD, LD_FOR_BUILD, NM_FOR_BUILD, RANLIB_FOR_BUILD,
4831         WINDMC_FOR_BUILD, WINDRES_FOR_BUILD): Use autoconf substitutions.
4832         * configure.ac: Default them to host tools for $host = $build.
4833         Subst them.
4835         * configure: Regenerate.
4836         * Makefile.in: Regenerate.
4838 2007-09-20  Richard Sandiford  <rsandifo@nildram.co.uk>
4840         * configure.ac (mipsisa*-*-elfoabi*): New stanza.
4841         * configure: Regenerate.
4843 2007-09-19  Benjamin Kosnik  <bkoz@redhat.com>
4845         * configure.ac (TOPLEVEL_CONFIGURE_ARGUMENTS): Move libgomp before
4846         libstdc++.
4847         * Makefile.def: Add libgomp config as a maybe dependency for libstdc++.
4848         * configure: Regenerate.
4849         * Makefile.in: Regenerate.
4851 2007-09-17  Andreas Schwab  <schwab@suse.de>
4853         * configure.ac: Raise minimum makeinfo version to 4.6.
4854         * configure: Regenerate.
4856 2007-09-15  Alan Modra  <amodra@bigpond.net.au>
4858         * configure.ac: Correct makeinfo version check.
4859         * configure: Regenerate.
4861 2007-09-14  Richard Sandiford  <richard@codesourcery.com>
4863         * configure.ac (mips*-sde-elf*): New stanza.  Add target-libiberty
4864         to $skipdirs and only disable gprof for newlib.  Use the normal
4865         mips*-elf* handling in other respects.
4866         * configure: Regnerate.
4868 2007-09-12  David Daney  <ddaney@avtrex.com>
4870         * configure.ac: Remove mips64*-*-linux* noconfigdirs section, thus
4871         enabling libgcj.
4872         * configure: Regenerate.
4874 2007-09-12  Richard Guenther  <rguenther@suse.de>
4876         * configure.ac (--enable-stage1-checking): If neither --enable-checking
4877         nor --disable-checking is provided also turn on yes and types
4878         checking for stage1.
4879         * configure: Re-generate.
4881 2007-09-11  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
4883         PR target/33281
4884         * configure.ac: Use config/mh-mingw on mingw.
4885         * configure: Regenerate.
4887 2007-09-10  Rask Ingemann Lambertsen  <rask@sygehus.dk>
4889         PR other/32154
4890         * configure.ac: For libgloss targets, point the linker to the linker
4891         script, startup code and simulator library.
4892         * configure: Regenerate.
4894 2007-09-09  Andrew Haley  <aph@redhat.com>
4896         * configure.ac (noconfigdirs): Remove target-libffi and
4897         target-libjava.
4899 2007-08-29  Nick Clifton  <nickc@redhat.com>
4901         * config.sub, config.guess: Update from upstream sources.
4903 2007-08-21  Richard Guenther  <rguenther@suse.de>
4905         * configure.ac: Add types checking to stage1 checking flags.
4906         * configure: Regenerate.
4908 2007-08-18  Paul Brook  <paul@codesourcery.com>
4909             Joseph Myers  <joseph@codesourcery.com>
4911         * Makefile.tpl (DEBUG_PREFIX_CFLAGS_FOR_TARGET): New.
4912         (CFLAGS_FOR_TARGET, CXXFLAGS_FOR_TARGET): Include it.
4913         * Makefile.in: Regenerate.
4914         * configure.ac (--with-debug-prefix-map): New.
4915         * configure: Regenerate.
4917 2007-08-17  Richard Sandiford  <richard@codesourcery.com>
4918             Nigel Stephens  <nigel@mips.com>
4920         * configure.ac (mips*-sde-elf*): New stanza.  Use config/mt-sde
4921         as target_makefile_frag.
4922         * configure: Regenerate.
4924 2007-08-16  Alexandre Oliva  <aoliva@redhat.com>
4926         * Makefile.def (STAGE2_CFLAGS, STAGE3_CFLAGS, STAGE4_CFLAGS):
4927         Add to flags_to_pass.  Adjust uses of BOOT_CFLAGS.
4928         (bootstrap2-debug, bootstrap-debug): New bootstrap stages.
4929         * Makefile.tpl (STAGE2_CFLAGS, STAGE3_CFLAGS, STAGE4_CFLAGS): New.
4930         (do-compare, do-compare3, do-compare-debug): New.
4931         ([+compare-target+]): Use them.
4933 2007-08-16  Alexandre Oliva  <aoliva@redhat.com>
4935         * Makefile.def (STAGE2_CFLAGS, STAGE3_CFLAGS, STAGE4_CFLAGS):
4936         Add to flags_to_pass.  Adjust uses of BOOT_CFLAGS.
4937         (bootstrap2-debug, bootstrap-debug): New bootstrap stages.
4938         * Makefile.tpl (STAGE2_CFLAGS, STAGE3_CFLAGS, STAGE4_CFLAGS): New.
4939         (do-compare, do-compare3, do-compare-debug): New.
4940         ([+compare-target+]): Use them.
4942 2007-08-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4943             Ben Elliston  <bje@au.ibm.com>
4945         * configure.ac (TOPLEVEL_CONFIGURE_ARGUMENTS, baseargs): Pass
4946         --silent if $silent.
4947         * configure: Regenerate.
4949 2007-08-12  Daniel Jacobowitz  <dan@codesourcery.com>
4951         * src-release (DEVO_SUPPORT): Add COPYING3 and COPYING3.LIB.
4953 2007-07-17  Nick Clifton  <nickc@redhat.com>
4955         * COPYING3: New file.  Contains version 3 of the GNU General
4956         Public License.
4957         * COPYING3.LIB: New file.  Contains version 3 of the GNU
4958         Lesser General Public License.
4960 2007-07-11  Bernd Schmidt  <bernd.schmidt@analog.com>
4962         * configure.ac: Fix my previous change to really match GCC.
4963         * configure: Regenerate.
4965 2007-07-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4967         * configure.ac: Rewrite 'configure --help' strings to look nicer.
4968         * configure: Regenerate.
4970 2007-07-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4972         * configure.ac: Add some missing m4 quotation.
4973         * configure: Regenerate.
4975 2007-07-09  Kai Tietz   <kai.tietz@onevision.com>
4977         * Makefile.def: Add windmc tool to build.
4978         * Makefile.tpl: Likewise.
4979         * configure.ac: Likewise.
4980         * Makefile.in: Regenerate.
4981         * configure: Regenerate.
4983 2007-07-05  H.J. Lu  <hongjiu.lu@intel.com>
4985         * lt~obsolete.m4: New. Import from 20070318 libtool.
4987 2007-06-29  Bernd Schmidt  <bernd.schmidt@analog.com>
4989         * configure.ac: Don't add target-libmudflap to noconfigdirs for
4990         uclinux and linux-uclibc targets.
4991         * configure: Regenerate.
4993 2007-06-28  DJ Delorie  <dj@redhat.com>
4995         * configure.ac (arm*-*-linux-gnueabi): Don't build libgloss if we're
4996         not building newlib.
4997         * configure: Regenerated.
4999 2007-06-22  Daniel Jacobowitz  <dan@codesourcery.com>
5001         * src-release (DEVO_SUPPORT): Correct typos.
5003 2007-06-18  Daniel Jacobowitz  <dan@codesourcery.com>
5005         * Makefile.def: Add dependency from configure-gdb to all-bfd.
5006         * Makefile.in: Regenerated.
5008 2007-06-14  Paolo Bonzini  <bonzini@gnu.org>
5010         * Makefile.tpl (cleanstrap): Don't delete the toplevel Makefile.
5011         (distclean-stage[+id+]): Possibly delete stage_last.
5012         * Makefile.in: Regenerate.
5014 2007-06-07  Ben Elliston  <bje@au.ibm.com>
5016         * config.sub, config.guess: Update from upstream sources.
5018 2007-06-07  Ben Elliston  <bje@au.ibm.com>
5020         * Makefile.tpl: Fix spelling error.
5021         * Makefile.in: Regenerate.
5023 2007-06-04  Paolo Bonzini  <bonzini@gnu.org>
5025         Sync with gcc:
5026         2007-05-30  Jakub Jelinek  <jakub@redhat.com>
5028         PR bootstrap/29382
5029         * configure.ac: Don't use -fkeep-inline-functions for GCC < 3.3.1.
5030         * configure: Rebuilt.
5032 2007-06-01  Steve Ellcey  <sje@cup.hp.com>
5034         * libtool.m4 (LT_CMD_MAX_LEN): Try using getconf to set
5035         lt_cv_sys_max_cmd_len.
5037 2007-05-31  Paolo Bonzini  <bonzini@gnu.org>
5039         * ltgcc.m4: Update from GCC.
5041 2007-05-25  Andreas Tobler  <a.tobler@schweiz.org>
5043         * ltmain.sh: Fix Darwin verstring, remove ${wl}.
5045 2007-05-24  Steve Ellcey  <sje@cup.hp.com>
5047         * ltmain.sh: Update from GCC.
5048         * libtool.m4: Update from GCC.
5049         * ltsugar.m4: New. Update from GCC.
5050         * ltversion.m4: New. Update from GCC.
5051         * ltoptions.m4: New. Update from GCC.
5052         * ltconfig: Remove.
5053         * ltcf-c.sh: Remove.
5054         * ltcf-cxx.sh: Remove.
5055         * ltcf-gcj.sh: Remove.
5056         * src-release: Update with new libtool file list.
5058 2007-05-16  Paolo Bonzini  <bonzini@gnu.org>
5060         * Makefile.def (bootstrap_stage): Replace stage_make_flags with
5061         stage_cflags.
5062         * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS, POSTSTAGE1_FLAGS_TO_PASS):
5063         Remove CFLAGS/LIBCFLAGS.
5064         (configure-stage[+id+]-[+prefix+][+module+],
5065         all-stage[+id+]-[+prefix+][+module+]): Pass it from [+stage_cflags+].
5066         * Makefile.in: Regenerate.
5068 2007-04-14  Steve Ellcey  <sje@cup.hp.com>
5070         * config-ml.in: Update from GCC.
5072 2007-04-09  Daniel Jacobowitz  <dan@codesourcery.com>
5074         * src-release (do-proto-toplev): Process the support directories before
5075         the tool directory.
5077 2007-03-21  Richard Sandiford  <richard@codesourcery.com>
5079         * configure.ac (TOPLEVEL_CONFIGURE_ARGUMENTS): Fix m4 quoting
5080         of glob.  Quote arguments with single quotes too.
5081         * configure: Regenerate.
5083 2007-03-12  Brooks Moses  <brooks.moses@codesourcery.com>
5085         * Makefile.def (fixincludes): Remove unneeded "missing" lines.
5086         * Makefile.in: Regenerate
5088 2007-03-07  Andreas Schwab  <schwab@suse.de>
5090         * configure: Regenerate.
5092 2007-03-01  Brooks Moses  <brooks.moses@codesourcery.com>
5094         * configure.ac: Add "--with-pdfdir" configure option,
5095         which defines pdfdir variable.
5096         * Makefile.def (target=fixincludes): Add install-pdf to
5097         missing targets.
5098         (recursive_targets): Add install-pdf target.
5099         (flags_to_pass): Add pdfdir.
5100         * Makefile.tpl: Add pdfdir handling, add do-install-pdf
5101         target.
5102         * configure: Regenerate
5103         * Makefile.in: Regenerate
5105 2007-02-28  Eric Christopher  <echristo@apple.com>
5107         Revert:
5108         2006-12-07  Mike Stump  <mrs@apple.com>
5110         * Makefile.def (dependencies): Add dependency for
5111         install-target-libssp and install-target-libgomp on
5112         install-gcc.
5113         * Makefile.in: Regenerate.
5115 2007-02-27  Matt Kraai  <kraai@ftbfs.org>
5117         * configure: Regenerate.
5118         * configure.ac: Move statements after variable declarations.
5120 2007-02-19  Joseph Myers  <joseph@codesourcery.com>
5122         * configure.ac: Adjust for loop syntax.
5123         * configure: Regenerate.
5125 2007-02-18  Alexandre Oliva  <aoliva@redhat.com>
5127         * configure: Rebuilt.
5129 2007-02-18  Alexandre Oliva  <aoliva@redhat.com>
5131         * configure.ac: Drop multiple occurrences of --enable-languages,
5132         and fix its quoting.
5133         * configure: Rebuilt.
5135 2007-02-17  Mark Mitchell  <mark@codesourcery.com>
5136             Nathan Sidwell  <nathan@codesourcery.com>
5137             Vladimir Prus  <vladimir@codesourcery.com
5138             Joseph Myers  <joseph@codesourcery.com>
5140         * configure.ac (TOPLEVEL_CONFIGURE_ARGUMENTS): Fix quoting.
5141         * configure: Regenerate.
5143 2007-02-13  Daniel Jacobowitz  <dan@codesourcery.com>
5145         * configure.ac (target_libraries): Move libgcc before libiberty.
5146         * configure: Regenerated.
5148 2007-02-13  Paolo Bonzini  <bonzini@gnu.org>
5150         * configure: Regenerate again?
5152 2007-02-13  Paolo Bonzini  <bonzini@gnu.org>
5154         * configure: Reapply PR30748 fix which was lost in the previous commit.
5156 2007-02-13  Daniel Jacobowitz  <dan@codesourcery.com>
5157             Paolo Bonzini  <bonzini@gnu.org>
5159         PR bootstrap/30753
5160         * configure.ac: Remove obsolete build / host tests.  Use AC_PROG_CC
5161         unconditionally.  Use AC_PROG_CXX.  Use ACX_TOOL_DIRS to find $prefix.
5162         * configure: Regenerated.
5164 2007-02-10  Paolo Bonzini  <bonzini@gnu.org>
5166         * configure: Regenerate.
5168 2007-02-09  Daniel Jacobowitz  <dan@codesourcery.com>
5170         PR bootstrap/30748
5171         * configure.ac: Correct syntax for Solaris ksh.
5172         * configure: Regenerated.
5174 2007-02-09  Paolo Bonzini  <bonzini@gnu.org>
5176         * Makefile.def: Sync with GCC.
5177         * Makefile.tpl: Sync with GCC.
5178         * Makefile.in: Regenerate.
5179         * configure: Regenerate.
5181 2007-02-09  Daniel Jacobowitz  <dan@codesourcery.com>
5183         * Makefile.tpl (build_alias, host_alias, target_alias): Use
5184         noncanonical equivalents.
5185         * configure.in: Rename to...
5186         * configure.ac: ...this.  Update AC_PREREQ.  Prevent error for
5187         AS_FOR_TARGET.  Set build_noncanonical, host_noncanonical, and
5188         target_noncanonical.  Use them.  Rewrite removal of configure
5189         arguments for autoconf 2.59.  Discard variable settings.  Force
5190         program_transform_name for native tools.
5192         * Makefile.in: Regenerated.
5193         * configure: Regenerated with autoconf 2.59.
5195         * src-release (DEVO_SUPPORT, do-proto-toplev): Expect configure.ac.
5197 2007-02-08  Jeff Johnston  <jjohnstn@redhat.com>
5199         * COPYING.LIBGLOSS: Reformat default Red Hat
5200         license to fit within 80 columns.
5201         * COPYING.NEWLIB: Ditto.
5203 2007-02-05  Dave Brolley  <brolley@redhat.com>
5205         * Contribute the following changes:
5206         2006-11-28  DJ Delorie  <dj@redhat.com>
5208         * configure.in: Fix typo for mep's target_makefile_frag.
5209         * configure: Regenerated.
5211         2005-04-22  Richard Sandiford  <rsandifo@redhat.com>
5213         * configure.in (mep*): Add -mlibrary to FLAGS_FOR_TARGET.
5214         * configure: Regenerate.
5216         2001-09-19  DJ Delorie  <dj@redhat.com>
5218         * configure.in (target_makefile_frag): use mt-mep
5220         2001-06-12  Don Howard  <dhoward@redhat.com>
5222         * configure.in: Remove gdb from MeP skip list.
5224         2001-04-05  DJ Delorie  <dj@redhat.com>
5226         * configure.in (noconfigdirs): Remove gcc from MeP skip list.
5228         2001-03-20  Ben Elliston  <bje@redhat.com>
5230         * configure.in (noconfigdirs): Add gcc and gdb for MeP.
5232         2001-03-19  Ben Elliston  <bje@redhat.com>
5234         * config.sub (mep, mep-*): Add.
5236 2007-01-31  Andreas Schwab  <schwab@suse.de>
5238         * Makefile.tpl (LDFLAGS): Substitute it.
5239         * Makefile.in: Regenerate.
5241 2007-01-11  Paolo Bonzini  <bonzini@gnu.org>
5243         * configure.in: Change == to = in test command.
5244         * configure: Regenerate.
5246 2007-01-11  Paolo Bonzini  <bonzini@gnu.org>
5247             Nick Clifton  <nickc@redhat.com>
5248             Kaveh R. Ghazi  <ghazi@caip.rutgets.edu>
5250         * configure.in (build_configargs, host_configargs, target_configargs):
5251         Remove build/host/target parameters.
5252         (host_libs): Add gmp and mpfr.
5253         (GMP tests): Reorganize to allow in-tree GMP/MPFR.
5254         * Makefile.def (gmp, mpfr): New.
5255         (gcc): Remove target.
5256         * Makefile.tpl (build_os, build_vendor, host_os, host_vendor,
5257         target_os, target_vendor): New.
5258         (configure): Add host_alias/target_alias arguments.  Adjust invocations.
5259         * configure: Regenerate.
5260         * Makefile.in: Regenerate.
5262 2007-01-11  Matt Fago  <fago@earthlink.net>
5264         * configure.in: Try to link to functions only in mpfr 2.2.x
5265         to improve robustness of configure tests.
5266         * configure: Regenerate.
5268 2007-01-08  Kai Tietz   <kai.tietz@onevision.com>
5270         * configure.in: Add support for an x86_64-mingw* target.
5271         * configure: Regenerate.
5273 2007-01-05  Daniel Jacobowitz  <dan@codesourcery.com>
5275         * Makefile.tpl (all-target): Correct @if conditional for target
5276         modules.
5277         * configure.in: Omit libiberty if building only target libgcc.
5278         * configure, Makefile.in: Regenerated.
5280 2007-01-04  Paolo Bonzini  <bonzini@gnu.org>
5282         * configure.in: Use DEV-PHASE to detect the default for --enable-werror.
5283         * configure: Regenerate.
5285 2007-01-03  Daniel Jacobowitz  <dan@codesourcery.com>
5287         * Makefile.def (target_modules): Add libgcc.
5288         (lang_env_dependencies): Remove default items.  Use no_c and no_gcc.
5289         * Makefile.tpl (clean-target-libgcc): Delete.
5290         (configure-target-[+module+]): Emit --disable-bootstrap dependencies
5291         on gcc even for bootstrapped modules.  Rewrite handling of
5292         lang_env_dependencies to loop over target_modules.
5293         * configure.in (target_libraries): Add target-libgcc.
5294         * Makefile.in, configure: Regenerated.
5296 2006-12-29  Paolo Bonzini  <bonzini@gnu.org>
5298         Sync with gcc:
5299         2006-12-29  Paolo Bonzini  <bonzini@gnu.org>
5301         * configure.in: Reorganize recognition of languages.  Add
5302         --enable-stage1-languages.  Show supported languages for the chosen
5303         target rather than all recognized languages.
5304         * configure: Regenerate.
5306         2006-12-29  Paolo Bonzini  <bonzini@gnu.org>
5308         * Makefile.tpl (GCC_STRAP_TARGETS, all-prebootstrap): Remove.
5309         * Makefile.in: Regenerate.
5311         2006-12-29  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
5313         * configure.in: Warn that MPFR 2.2.0 is buggy.
5314         * configure: Regenerate.
5316 2006-12-27  Ian Lance Taylor  <iant@google.com>
5318         * configure.in: When removing Makefiles to force a reconfigure, also
5319         remove prev-DIR*/Makefile.
5320         * configure: Regenerate.
5322 2006-12-23  Kazu Hirata  <kazu@codesourcery.com>
5324         * config.bfd: Recognize fido.
5326 2006-12-19  Paolo Bonzini  <bonzini@gnu.org>
5328         Sync with gcc:
5330         2006-12-19  Paolo Bonzini  <bonzini@gnu.org>
5332         * configure.in: Remove "$build" case for powerpc-*-darwin* since
5333         it only affects bootstrap and could be tested on "$host" as well.
5334         * configure: Regenerate.
5335         * config/mh-ppc-darwin: Add to the stage1 cflags here.
5337         2006-12-19  Paolo Bonzini  <bonzini@gnu.org>
5339         PR bootstrap/29544
5340         * Makefile.def (flags_to_pass): Add STAGE1_CHECKING.
5341         (bootstrap_stage): Add STAGE1_CHECKING to stage1 configure flags,
5342         move here comment from Makefile.tpl.
5343         * Makefile.tpl: Move some definitions higher in the file.
5344         (STAGE1_CHECKING): New.
5345         * configure.in: Add --enable-stage1-checking.
5346         * configure: Regenerate.
5347         * Makefile.in: Regenerate.
5349         2006-12-03  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
5351         * configure.in: Update error message for missing GMP/MPFR.
5353         * configure: Regenerate.
5355         2006-12-02  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
5357         * configure.in: Update MPFR version in error message.
5359         * configure: Regenerate.
5361         2006-11-26  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
5363         * configure.in (--with-mpfr-dir, --with-gmp-dir): Remove flags.
5364         (--with-mpfr-include, --with-mpfr-lib, --with-gmp-include,
5365         --with-gmp-lib): New flags.
5367         * configure: Regenerate.
5369 2006-12-12  Andreas Tobler  <a.tobler@schweiz.org>
5371         PR bootstrap/30134
5372         * configure.in: Correct x86 darwin support for libjava to powerpc
5373         and i?86 only.
5374         * configure: Regenerate.
5376 2006-12-11  Alan Modra  <amodra@bigpond.net.au>
5378         * configure.in:  Handle spu makefile frag.
5379         * Makefile.tpl (MAINT): Define
5380         (MAINTAINER_MODE_FALSE, MAINTAINER_MODE_TRUE): Define.
5381         * configure: Regenerate.
5382         * Makefile.in: Regenerate.
5384 2006-12-11  Ben Elliston  <bje@au.ibm.com>
5386         * config.sub, config.guess: Update from upstream sources.
5388 2006-12-11  Ben Elliston  <bje@au.ibm.com>
5390         * configure.in: Sync with GCC (spu-*-*).
5391         * configure: Sync with GCC.
5393 2006-12-07  Mike Stump  <mrs@apple.com>
5395         * Makefile.def (dependencies): Add dependency for
5396         install-target-libssp and install-target-libgomp on
5397         install-gcc.
5398         * Makefile.in: Regenerate.
5400 2006-11-16  Paolo Bonzini  <bonzini@gnu.org>
5402         * Makefile.tpl (clean-target-libgcc): Test for gcc Makefile presence.
5403         (unstage): Test for stage_last presence.
5405         PR bootstrap/29802
5406         * Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Add HOST_SUBDIR in STAGE_PREFIX.
5407         * Makefile.in: Regenerate.
5409 2006-11-14  DJ Delorie  <dj@redhat.com>
5411         * Makefile.tpl (clean-stage*): Sync with GCC (clean).
5412         * Makefile.in: Sync with GCC.
5413         * configure.in: Sync with GCC (mpfr, gmp).
5414         * configure: Sync with GCC.
5416 2006-11-08  Jie Zhang  <jie.zhang@analog.com>
5418         * configure.in: Remove target-libgloss from noconfigdirs for
5419         bfin-*-*.
5420         * configure: Regenerated.
5422 2006-10-27  Jeff Johnston  <jjohnstn@redhat.com>
5424         * COPYING.NEWLIB: Add spu license.
5425         * COPYING.LIBGLOSS: Ditto.
5427 2006-10-17  Brooks Moses  <bmoses@stanford.edu>
5429         * Makefile.def: Added pdf target handling.
5430         * Makefile.tpl: Added pdf target handling.
5431         * Makefile.in: Regenerated.
5433 2006-10-11  Jeff Johnston  <jjohnstn@redhat.com>
5435         * COPYING.NEWLIB: Updated.
5436         * COPYING.LIBGLOSS: Ditto.
5438 2006-09-27  Dave Brolley  <brolley@redhat.com>
5440         * configure.in (RUNTEST): Look for 'runtest' in the source tree by using
5441         $s instead of $r.
5442         * configure: Regenerated.
5444 2006-09-26  Ben Elliston  <bje@au.ibm.com>
5446         * config.sub, config.guess: Update from upstream sources.
5448 2006-09-20  Thiemo Seufer  <ths@mips.com>
5450         * configure.in: Remove redundant handling of mips*-dec-bsd*. Likewise
5451         for mipstx39-*-*. Disable libgloss for mips64*-*-linux*.
5452         * configure: Regenerate.
5454 2006-08-30  Corinna Vinschen  <corinna@vinschen.de>
5456         * configure.in: Never build newlib for a Mingw host.
5457         Never build newlib as Mingw target library.
5458         Test the existence of winsup/cygwin for building a Cygwin newlib,
5459         rather than just winsup.
5460         Add winsup/mingw and winsup/w32api paths to FLAGS_FOR_TARGET if
5461         building a Mingw target.
5462         * configure: Regenerate.
5464 2006-08-15  Thiemo Seufer  <ths@mips.com>
5465             Nigel Stephens  <nigel@mips.com>
5466             David Ung  <davidu@mips.com>
5468         * config.sub: Add support for sde as alias of mipsisa32-sde-elf.
5470 2006-07-25  Paolo Bonzini  <bonzini@gnu.org>
5472         Sync from GCC:
5473         2006-07-04  Eric Botcazou  <ebotcazou@libertysurf.fr>
5475         PR bootstrap/18058
5476         * configure.in: Add -fkeep-inline-functions to CFLAGS for stage 1
5477         if the bootstrap compiler is a GCC version that supports it.
5478         * configure: Regenerate.
5480 2006-07-22  Daniel Jacobowitz  <dan@codesourcery.com>
5482         * configure.in: Allow mingw32 and cygwin targets to build cross-gdb.
5483         * configure: Regenerated.
5485 2006-07-18  Paolo Bonzini  <bonzini@gnu.org>
5487         * Makefile.tpl (configure-stageN-MODULE): Pass --with-build-libsubdir
5488         for stages after the first.
5490 2006-07-17  Jakub Jelinek  <jakub@redhat.com>
5492         * Makefile.def: Add dependencies for configure-opcodes
5493         on configure-intl and all-opcodes on all-intl.
5494         * Makefile.in: Regenerated.
5496 2006-07-04  Peter O'Gorman  <peter@pogma.com>
5498         * ltconfig: chmod 644 before ranlib during install.
5500 2006-07-03  Paolo Bonzini  <bonzini@gnu.org>
5502         * configure.in: Fix thinkos in previous check-in.
5503         * configure: Regenerate.
5505 2006-07-03  Paolo Bonzini  <bonzini@gnu.org>
5507         Sync from gcc:
5509         2007-07-03  Paolo Bonzini  <bonzini@gnu.org>
5511         PR other/27063
5512         * configure.in: Test subdir_requires and give an appropriate
5513         error message.
5514         * configure: Regenerate.
5516         2006-06-16  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
5518         PR target/27540
5519         * configure.in: Only enable libgomp on IRIX 6.
5520         * configure: Regenerate.
5522 2006-06-20  David Ayers  <d.ayers@inode.at>
5524         PR bootstrap/28072
5525         * configure.in: Add target-boehm-gc to noconfigdirs depending on
5526         whether target-libjava is being configured instead of whether the
5527         java front end is enabled.
5528         * configure: Regenerate.
5530 2006-06-15  Mark Shinwell  <shinwell@codesourcery.com>
5532         * include/elf/arm.h: Correct names of R_ARM_LDC_G{0,1,2}
5533         to R_ARM_LDC_SB_G{0,1,2} respectively.
5535 2006-06-15  Paolo Bonzini  <bonzini@gnu.org>
5537         * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Export CFLAGS and LDFLAGS
5538         too.
5539         * Makefile.in: Regenerate.
5541 2006-06-13  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
5543         Sync from gcc:
5545         2006-06-12  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
5546         * configure.in: Don't enable libgomp on hpux10.
5547         * configure: Rebuilt.
5549 2006-06-13  David Ayers  <d.ayers@inode.at>
5551         Sync from gcc:
5553         2006-06-12  David Ayers  <d.ayers@inode.at>
5555         PR bootstrap/27963
5556         PR target/19970
5557         * configure.in: Remove target-boehm-gc from noconfigdirs where
5558         ${libgcj} is specified.
5559         * configure: Regenerate.
5561 2006-06-08  Jeff Johnston  <jjohnstn@redhat.com>
5563         Sync from gcc:
5565         2005-01-12  David Edelsohn  <edelsohn@gnu.org>
5566                     Andreas Schwab  <schwab@suse.de>
5568         PR bootstrap/18033
5569         * config-ml.in: Eval option if surrounded by single quotes.
5571 2006-06-07  Carlos O'Donell  <carlos@codesourcery.com>
5573         Sync from gcc:
5575         2006-06-06  David Ayers  <d.ayers@inode.at>
5577         PR libobjc/13946
5578         * Makefile.def: Add dependencies for libobjc which boehm-gc.
5579         * Makefile.in: Regenerate.
5580         * configure.in: Add --enable-objc-gc at toplevel and have it
5581         enable boehm-gc for Objective-C.
5582         Remove target-boehm-gc from libgcj.
5583         Add target-boehm-gc to target_libraries.
5584         Add target-boehm-gc to noconfigdirs where ${libgcj}
5585         is specified.
5586         Assert that boehm-gc is supported when requested for Objective-C.
5587         Only build boehm-gc if needed either for Java or Objective-C.
5588         * configure: Regenerate.
5590         2006-06-05  Paolo Bonzini  <bonzini@gnu.org>
5592         PR 27674
5593         * Makefile.tpl (configure-[+prefix+][+module+],
5594         all-[+prefix+][+module+]): Depend on stage_current if bootstrapping.
5595         Remove rule to unstage bootstrapped modules.
5596         (stage_current): New.
5597         * Makefile.in: Regenerate.
5599         2006-05-20  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
5600         Andreas Tobler  <a.tobler@schweiz.ch>
5602         * configure.in:  Enable libgcj for hppa*-hp-hpux11*.
5603         * configure: Rebuilt.
5605         Revert
5606         2006-01-31  Richard Guenther  <rguenther@suse.de>
5607         Paolo Bonzini  <bonzini@gnu.org>
5609         * Makefile.def (target_modules): Add libgcc-math target module.
5610         * configure.in (target_libraries): Add libgcc-math target library.
5611         (--enable-libgcc-math): New configure switch.
5612         * Makefile.in: Re-generate.
5613         * configure: Re-generate.
5615 2006-06-05  Jeff Johnston  <jjohnstn@redhat.com>
5617         * config-ml.in: Alter CCASFLAGS to include special
5618         multilib options the same as is done for CFLAGS.
5620 2006-05-31  Daniel Jacobowitz  <dan@codesourcery.com>
5622         * Makefile.def: Added dependencies from sim and gdb on intl, and
5623         added configure dependencies to everything with an all dependency
5624         on intl.
5625         * gettext.m4: Removed.
5626         * src-release (DEVO_SUPPORT): Don't mention gettext.m4.
5627         (GDB_SUPPORT_DIRS): Add intl.
5628         * Makefile.in: Regenerated.
5630 2006-05-25  Daniel Jacobowitz  <dan@codesourcery.com>
5632         * src-release (DEVO_SUPPORT): Add config.rpath.
5634 2006-05-25  Paolo Bonzini  <bonzini@gnu.org>
5636         * Makefile.def (bfd, opcodes): Fix lib_path.
5637         * Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Replace ADAC with ADAFLAGS.
5638         (restrap): Move under "@if gcc-bootstrap".  Fix typo.
5639         * Makefile.in: Regenerate.
5641 2006-05-24  Mark Shinwell  <shinwell@codesourcery.com>
5643         * configure.in: Enable gprof for cross builds.
5644         * configure: Regenerate.
5646 2006-05-17  Daniel Jacobowitz  <dan@codesourcery.com>
5648         * src-release (MAKEINFOFLAGS): Define.
5649         (do-proto-toplev): Pass MAKEINFOFLAGS to submakes.
5651 2006-05-14  Ben Elliston  <bje@au.ibm.com>
5653         * config.sub, config.guess: Update from upstream sources.
5655 2006-05-12  Ben Elliston  <bje@au.ibm.com>
5657         * config.sub, config.guess: Update from upstream sources.
5659 2006-05-04  Steve Ellcey  <sje@cup.hp.com>
5661         * blt, iwidgets, mmalloc: Remove directories.
5663 2006-05-01  DJ Delorie  <dj@redhat.com>
5665         * configure.in: Restore CFLAGS if GMP isn't present.
5666         * configure: Regenerate.
5668 2006-04-18  DJ Delorie  <dj@redhat.com>
5670         * configure.in (m32c): Build libstdc++-v3.  Pass flags to
5671         reference libgloss so that libssp can be built in a combined
5672         tree.
5673         * configure: Regenerate.
5675 2006-04-10  Ben Elliston  <bje@au.ibm.com>
5677         * contrib: Remove directory.
5679 2006-04-06  Carlos O'Donell <carlos@codesourcery.com>
5681         * Makefile.tpl: Add install-html target.
5682         * Makefile.def: Add install-html target.
5683         * Makefile.in: Regenerate.
5684         * configure.in: Add --with-datarootdir, --with-docdir,
5685         and --with-htmldir options.
5686         * configure: Regenerate.
5688 2006-03-31  Ben Elliston  <bje@au.ibm.com>
5690         PR binutils/1860
5691         * configure.in: Require makeinfo 4.4 or higher.
5692         * configure: Regenerate.
5694 2006-03-14  Paolo Bonzini  <bonzini@gnu.org>
5696         * Makefile.in: Regenerate.
5698 2006-03-14  Paolo Bonzini  <bonzini@gnu.org>
5700         Sync with gcc:
5701         2006-03-10  Aldy Hernandez  <aldyh@redhat.com>
5703         * configure.in: Handle --disable-<component> generically.
5704         * configure: Regenerate.
5706         2006-02-21 Rafael Avila de Espindola <rafael.espindola@gmail.com>
5708         * Makefile.tpl  (BUILD_CONFIGDIRS): Remove.
5709         (TARGET_CONFIGDIRS): Remove.
5710         * configure.in: Remove AC_SUBST(target_configdirs).
5711         * Makefile.in, configure: Regenerated.
5714 2006-03-01  H.J. Lu  <hongjiu.lu@intel.com>
5716         PR libgcj/17311
5717         * ltmain.sh: Don't use "$finalize_rpath" for compile.
5719 2006-02-20  Paolo Bonzini  <bonzini@gnu.org>
5721         PR bootstrap/25670
5723         * Makefile.tpl ([+compare-target+]): Print explanation messages.
5725         * Makefile.def (ADAFLAGS, BOOT_ADAFLAGS, LANGUAGES): New flags_to_pass.
5726         * Makefile.tpl (BASE_FLAGS_TO_PASS): Support optional flags_to_pass.
5727         (EXTRA_GCC_FLAGS): Remove ADAFLAGS, BOOT_ADAFLAGS, LANGUAGES,
5728         BUILD_PREFIX, BUILD_PREFIX_1.
5729         * configure.in: (BUILD_PREFIX, BUILD_PREFIX_1): Don't substitute.
5731         * Makefile.def (bootstrap stage 1): Pass LIBCFLAGS too.
5732         * Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Override LIBCFLAGS too.
5734         * Makefile.tpl (configure-stage[+id+]-[+prefix+][+module+],
5735         all-stage[+id+]-[+prefix+][+module+], : Use $(current_stage) instead
5736         of `cat stage_current`.  Always provide the `r' and `s' variables.
5737         (clean-stage[+id+]-[+prefix+][+module+]): Likewise, and make it into
5738         a single shell execution.
5739         (configure-[+prefix+][+module+], all-[+prefix+][+module+]): For
5740         bootstrapped modules, make the stage1 module if the build was not
5741         started yet, else build the current stage.
5742         (all-host, all-target): Omit bootstrapped modules (if bootstrapping).
5743         (all-build, all-host, all-target, [+make_target+]-host,
5744         [+make_target+]-target): Do not use \-continued lines.
5745         (target modules): Depend on stage_last, not all-gcc, if bootstrapping.
5746         (current_stage, restrap, stage_last): New.
5748         * Makefile.in: Regenerate.
5749         * configure: Regenerate.
5751 2006-02-14  Paolo Bonzini  <bonzini@gnu.org>
5753         Sync from gcc:
5755         2006-01-31  Richard Guenther  <rguenther@suse.de>
5756                     Paolo Bonzini  <bonzini@gnu.org>
5758         * Makefile.def (target_modules): Add libgcc-math target module.
5759         * configure.in (target_libraries): Add libgcc-math target library.
5760         (--enable-libgcc-math): New configure switch.
5761         * Makefile.in: Re-generate.
5762         * configure: Re-generate.
5763         * libgcc-math: New toplevel directory.
5765         2006-01-18  Richard Henderson  <rth@redhat.com>
5766                     Jakub Jelinek  <jakub@redhat.com>
5767                     Diego Novillo  <dnovillo@redhat.com>
5769         * libgomp: New directory.
5770         * Makefile.def: Add target_module libgomp.
5771         * Makefile.in: Regenerate.
5772         * configure.in (target_libraries): Add target-libgomp.
5773         * configure: Regenerate.
5775 2006-02-14  Paolo Bonzini  <bonzini@gnu.org>
5776             Andreas Schwab  <schwab@suse.de>
5778         * configure: Regenerate.
5780 2006-01-16  Paolo Bonzini  <bonzini@gnu.org>
5782         * configure.in: Set with_gnu_as, with_gnu_ld, with_newlib earlier.
5783         Set md_exec_prefix.  Use ACX_CHECK_INSTALLED_TARGET_TOOL to find
5784         the assembler, linker and binutils.
5785         * configure: Regenerate.
5787 2006-01-16  Nick Clifton  <nickc@redhat.com>
5789         * config.sub, config.guess: Sync from config repository.
5791 2006-01-05  Alexandre Oliva  <aoliva@redhat.com>
5793         * Makefile.tpl (clean-stage[+id+]-[+prefix+][+module+]): Remove
5794         @ from continuation.
5795         * Makefile.in: Rebuilt.
5797 2006-01-04  Paolo Bonzini  <bonzini@gnu.org>
5799         Sync from gcc:
5801         2006-01-04  Paolo Bonzini  <bonzini@gnu.org>
5803         PR bootstrap/24252
5805         * Makefile.def (flags_to_pass): Add STAGE1_CFLAGS and STAGE1_LANGUAGES.
5806         * Makefile.tpl (OBJDUMP): New.
5807         (EXTRA_HOST_FLAGS): Add it.
5808         (EXTRA_GCC_FLAGS): Remove flags already specified in flags_to_pass.
5810         * Makefile.tpl (stage[+id+]-start, stage[+id+]-end): Do not try
5811         to use symbolic links between directories.  Avoid race conditions
5812         or make them harmless.
5813         * configure.in: Do not try to use symbolic links between directories.
5815         * Makefile.def (LEAN): Pass.
5816         * Makefile.tpl (LEAN): Define.
5817         (stage[+id+]-start): Accept that the previous directory does not
5818         exist, if the bootstrap is lean.
5819         (stage[+id+]-bubble): Invoke lean bootstrap commands after
5820         stage[+id+]-start.  Use a makefile variable and an `if' instead of a
5821         configure substitution.
5822         ([+compare-target+]): Likewise.
5823         ([+bootstrap-target+]-lean): New.
5824         * configure.in: Remove lean bootstrap support from here.
5826         * Makefile.in: Regenerate.
5827         * configure: Regenerate.
5829         2006-01-02  Andreas Schwab  <schwab@suse.de>
5831         * configure.in: When reconfiguring remove Makefile in
5832         all stage directories.
5833         * configure: Regenerate.
5835 2005-12-27  Leif Ekblad  <leif@rdos.net>
5837         * configure.in: Add support for RDOS target.
5838         * configure: Regenerate.
5840 2005-12-27  Nick Clifton  <nickc@redhat.com>
5842         PR binutils/1990
5843         * libtool.m4: Synchronize with version in GCC sources.
5845 2005-12-20  Paolo Bonzini  <bonzini@gnu.org>
5847         Revert Ada-related part of the previous change.
5849         * Makefile.def (ADAFLAGS, BOOT_ADAFLAGS, ADAFLAGS_FOR_TARGET):
5850         Do not pass.
5851         * Makefile.tpl (BOOT_ADAFLAGS): Do not define.
5852         * Makefile.in: Regenerate.
5853         * configure.in: Do not include mt-ppc-aix target fragment.
5854         * configure: Regenerate.
5856 2005-12-19  Paolo Bonzini  <bonzini@gnu.org>
5858         * configure.in: Select appropriate fragments for PowerPC/AIX.
5859         * configure: Regenerate.
5861         * Makefile.def (flags_to_pass): Add ADAFLAGS, BOOT_ADAFLAGS,
5862         BOOT_CFLAGS, BOOT_LDFLAGS.
5863         * Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Handle BOOT_ADAFLAGS,
5864         BOOT_CFLAGS, BOOT_LDFLAGS.
5865         (TARGET_FLAGS_TO_PASS): Handle ADAFLAGS_FOR_TARGET.
5866         (stage[+id+]-bubble): Pass flags recursively to the comparison target.
5867         (stage): Fail if we cannot complete the work.
5868         * Makefile.in: Regenerate.
5870 2005-12-16  Jeff Johnston  <jjohnstn@redhat.com>
5872         * COPYING.NEWLIB: Update copyright year for default
5873         copyright.
5875 2005-12-15  Paolo Bonzini  <bonzini@gnu.org>
5877         * Makefile.tpl (all, do-[+make_target+], do-check, install,
5878         install-host-nogcc): Don't invoke $(stage) at the end.
5879         * Makefile.in: Regenerate.
5881 2005-12-14  Paolo Bonzini  <bonzini@gnu.org>
5883         * configure.in: Flip the top-level bootstrap switch.
5884         * configure: Regenerate.
5886         Merge from gcc:
5888         2005-12-14  Daniel Jacobowitz  <dan@codesourcery.com>
5890         * Makefile.tpl: Throughout the file, use : $(MAKE) along with
5891         $(stage) and $(unstage).
5892         (EXTRA_TARGET_FLAGS): Correct double-quoting.
5893         (all): Remove stray semicolon.
5894         (local-distclean): Don't handle multilib.tmp and multilib.out.
5895         (install.all): Set $s for consistency.
5896         (configure-[+prefix+][+module+]): Instead of [+deps+], handle
5897         check_multilibs setting.  Always make the install directory.
5898         (configure-stage[+id+]-[+prefix+][+module+]): Likewise.
5899         Correct @if/@endif.
5900         (all-stage[+id+]-[+prefix+][+module+]): Correct @if/@endif.
5901         ($(TARGET_SUBDIR)/[+module+]/multilib.out): Remove.
5902         (stage[+id+]-start, stage[+id+]-end): Stage $(TARGET_SUBDIR).
5903         (multilib.out): Remove.
5904         * Makefile.in: Regenerated.
5906 2005-12-12  Nathan Sidwell  <nathan@codesourcery.com>
5908         * config.sub: Replace ms1 arch with mt.  Allow ms1 as alias.
5909         * configure.in: Replace ms1 arch with mt.
5910         * configure: Rebuilt.
5912 2005-12-05  Paolo Bonzini  <bonzini@gnu.org>
5914         Sync with gcc:
5916 2005-12-12  Nathan Sidwell  <nathan@codesourcery.com>
5918         * config.sub: Replace ms1 arch with mt.  Allow ms1 as alias.
5919         * configure.in: Replace ms1 arch with mt.
5920         * configure: Rebuilt.
5922 2005-12-05  Paolo Bonzini  <bonzini@gnu.org>
5924         Sync with gcc:
5926         2005-12-05  Paolo Bonzini  <bonzini@gnu.org>
5928         * configure.in (CONFIGURED_BISON, CONFIGURED_YACC, CONFIGURED_M4,
5929         CONFIGURED_FLEX, CONFIGURED_LEX, CONFIGURED_MAKEINFO): Remove
5930         "CONFIGURED_" from the AC_CHECK_PROGS invocation.  Move below.
5931         Find in-tree tools if available.
5932         (EXPECT, RUNTEST, LIPO, STRIP): Find them and substitute them.
5933         (CONFIGURED_*_FOR_TARGET): Don't set nor substitute.
5934         (*_FOR_TARGET): Set them with GCC_TARGET_TOOL.
5935         (COMPILER_*_FOR_TARGET): New.
5936         * Makefile.tpl (HOST_EXPORTS): Add *_FOR_TARGET symbols that gcc needs.
5937         (BASE_TARGET_EXPORTS): Use COMPILER_*_FOR_TARGET symbols.
5938         (CONFIGURED_*, USUAL_*): Remove.
5939         (BISON, YACC, FLEX, LEX, M4, MAKEINFO, EXPECT, RUNTEST, LIPO,
5940         STRIP): Use autoconf substitutions.
5941         (COMPILER_AS_FOR_TARGET, COMPILER_LD_FOR_TARGET,
5942         COMPILER_NM_FOR_TARGET): New.
5943         (EXTRA_HOST_FLAGS): Pass LIPO and STRIP.
5945         (all): Make all-host and all-target in parallel.
5946         (do-[+make_target+], do-check, install, [+compare-target+]): Ensure
5947         that $$r and $$s are set before invoking a recursive make.
5948         (stage[+id+]-bubble): Likewise, and invoke the comparison at the end.
5949         ([+bootstrap-target+]): Inline most of the `all' target.
5951         2005-11-29  Ben Elliston  <bje@au.ibm.com>
5953         * Makefile.tpl (clean-target-libgcc): Invoke clean-target-libgcc
5954         from the gcc build directory.
5955         * Makefile.in: Regenerate.
5957         2005-11-29  Ben Elliston  <bje@au.ibm.com>
5959         * Makefile.def: Add new libdecnumber host_module.  Make all-gcc
5960         depend on all-libdecnumber.
5961         * configure.in (host_libs): Include libdecnumber.
5962         * Makefile.in: Regenerate.
5963         * configure: Likewise.
5965         2005-11-21  Kean Johnston  <jkj@sco.com>
5967         * config.sub, config.guess: Sync from upstream sources.
5969 2005-11-11  Daniel Jacobowitz  <dan@codesourcery.com>
5971         * Makefile.def: Remove gdb dependencies for gdbtk.
5972         * Makefile.tpl (CONFIGURE_GDB_TK, INSTALL_GDB_TK): New variables.
5973         (configure-gdb, install-gdb): New rules.
5974         * configure.in: Set CONFIGURE_GDB_TK and INSTALL_GDB_TK.
5975         * Makefile.in, configure: Regenerated.
5977 2005-10-22  Paolo Bonzini  <bonzini@gnu.org>
5979         PR bootstrap/24297
5980         * Makefile.tpl (do-[+make-target+], do-check, install,
5981         stage[+id+]-bubble, [+compare-target+]): Ensure $$r and $$s
5982         are set before recursing.
5983         * Makefile.in: Regenerate.
5985 2005-10-20  Eric Botcazou  <ebotcazou@adacore.com>
5987         PR bootstrap/18939
5988         * Makefile.def (gcc) <target>: Fix thinko.
5989         * Makefile.in: Regenerate.
5991 2005-10-17  Bernd Schmidt  <bernd.schmidt@analog.com>
5993         * configure.in (bfin-*-*): Use test, not brackets, in if statement.
5994         * configure: Regenerate.
5996 2005-10-09  Kazu Hirata  <kazu@codesourcery.com>
5998         * configure.in (arm-*-linux-gnueabi): Add to noconfigdirs
5999         target-libffi, target-qthreads, target-libjava, and
6000         targetlibobjc.
6001         * configure: Regenerate.
6003 2005-10-06  Daniel Jacobowitz  <dan@codesourcery.com>
6005         * Makefile.def (flags_to_pass): Add OBJDUMP_FOR_TARGET.
6006         * Makefile.tpl (BASE_TARGET_EXPORTS): Add OBJDUMP.
6007         (OBJDUMP_FOR_TARGET, CONFIGURED_OBJDUMP_FOR_TARGET)
6008         (USUAL_OBJDUMP_FOR_TARGET): New.
6009         (EXTRA_TARGET_FLAGS): Add OBJDUMP.
6010         * configure.in: Check for $OBJDUMP_FOR_TARGET.
6011         * configure, Makefile.in: Regenerated.
6013 2005-10-05  Paolo Bonzini  <bonzini@gnu.org>
6015         * Makefile.tpl (all) [gcc-no-bootstrap]: Make prebootstrap packages
6016         before other host packages.
6018 2005-10-05  Paolo Bonzini  <bonzini@gnu.org>
6020         PR bootstrap/22340
6022         * configure.in (default_target): Remove.
6023         * Makefile.tpl (all): Do not use prerequisites as subroutines
6024         (all) [gcc-bootstrap]: Bootstrap gcc first if it was not done yet.
6025         (do-[+make_target+], check, install, [+bootstrap_target+]): Do not
6026         use prerequisites as subroutines.
6027         (check-host, check-target): New.
6028         (bootstrap configure & all targets): Do not use stage*-start
6029         if the directory layout is already ok.
6030         (non-bootstrap configure & all targets): Prepend a $(unstage).
6031         (stage[+id+]-bubble): Do that here.  Do not use NOTPARALLEL.
6032         (NOTPARALLEL): Remove.
6033         (unstage, stage variables): New variables.
6034         (unstage, stage targets): Simply expand to those variables.
6036         * configure: Regenerate.
6037         * Makefile.in: Regenerate.
6039 2005-10-04  James E Wilson  <wilson@specifix.com>
6041         * Makefile.def (lang_env_dependencies): Add libmudflap.
6042         * Makefile.in: Regenerate.
6044 2005-10-03  Catherine Moore  <clm@cm00re.com>
6046         * configure.in (bfin-*-*): Support bfin.
6047         * configure: Regenerated.
6049 2005-09-30  H.J. Lu  <hongjiu.lu@intel.com>
6051         * configure.in (*-*-darwin*): Build bfd, binutils and opcodes.
6052         * configure: Regenerated.
6054 2005-09-28  Geoffrey Keating  <geoffk@apple.com>
6056         * Makefile.tpl (BASE_TARGET_EXPORTS): Add LIPO, STRIP.
6057         (LIPO_FOR_TARGET): New.
6058         (CONFIGURED_LIPO_FOR_TARGET): New.
6059         (USUAL_LIPO_FOR_TARGET): New.
6060         (STRIP_FOR_TARGET): New.
6061         (CONFIGURED_STRIP_FOR_TARGET): New.
6062         (USUAL_STRIP_FOR_TARGET): New.
6063         * Makefile.def (flags_to_pass): Add LIPO_FOR_TARGET and
6064         STRIP_FOR_TARGET.
6065         * configure.in: Set LIPO_FOR_TARGET, STRIP_FOR_TARGET,
6066         CONFIGURED_LIPO_FOR_TARGET, CONFIGURED_STRIP_FOR_TARGET.
6067         * Makefile.in: Regenerate.
6068         * configure: Regenerate.
6070 2005-09-19  David Edelsohn  <edelsohn@gnu.org>
6072         * configure.in (powerpc-*-aix*): Add target-libssp to noconfigdirs.
6073         (rs6000-*-aix*): Same.
6074         * configure: Regenerate.
6076 2005-09-14  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
6078         * configure.in: Recognize f95 in the --enable-languages option,
6079         and substitute it for fortran, issuing a warning.
6080         * configure: Regenerate.
6082 2005-09-07  Ben Elliston  <bje@au.ibm.com>
6084         Import from Autoconf sources:
6086         2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
6087         * move-if-change: Don't output "$2 is unchanged"; suggested by Ben
6088         Elliston.  Handle weird characters correctly.
6090 2005-08-30  Phil Edwards  <phil@codesourcery.com>
6092         * configure.in (*-*-vxworks*):  Add target-libstdc++-v3 to noconfigdirs.
6093         * configure:  Regenerated.
6095 2005-08-20  Richard Earnshaw  <richard.earnshaw@arm.com>
6097         * Makefile.def (libssp): Add to lang_env_dependencies.
6098         * Makefile.in: Regenerate.
6100 2005-08-17  Christian Groessler  <chris@groessler.org>
6102         * Makefile.tpl: (USUAL_CC_FOR_TARGET): Add missing trailing slash.
6103         * Makefile.in: Regenerate.
6105 2005-08-12  Paolo Bonzini  <bonzini@gnu.org>
6107         * configure.in: Replace NCN_STRICT_CHECK_TOOL with
6108         NCN_STRICT_CHECK_TOOLS, and likewise for NCN_STRICT_CHECK_TARGET_TOOLS.
6109         Look for alternate names of the target cc and c++
6110         * configure: Regenerate.
6112 2005-08-08  Paolo Bonzini  <bonzini@gnu.org>
6114         * configure.in (CC_FOR_TARGET, CXX_FOR_TARGET, GCJ_FOR_TARGET,
6115         GCC_FOR_TARGET, RAW_CXX_FOR_TARGET, GFORTRAN_FOR_TARGET): Find
6116         them with NCN_STRICT_CHECK_TARGET_TOOL, like the other target
6117         tools; remove code to manually set them.
6118         (Target tools): Look in the environment for them.
6119         * Makefile.tpl (CC_FOR_TARGET, CXX_FOR_TARGET, GCJ_FOR_TARGET,
6120         GCC_FOR_TARGET, RAW_CXX_FOR_TARGET, GFORTRAN_FOR_TARGET): Redefine.
6121         (AS_FOR_TARGET, LD_FOR_TARGET, NM_FOR_TARGET): Look into gcc
6122         build directory.
6123         (CONFIGURED_CC_FOR_TARGET, CONFIGURED_CXX_FOR_TARGET,
6124         CONFIGURED_GCJ_FOR_TARGET, CONFIGURED_GCC_FOR_TARGET,
6125         CONFIGURED_GFORTRAN_FOR_TARGET, USUAL_CC_FOR_TARGET,
6126         USUAL_CXX_FOR_TARGET, USUAL_GCJ_FOR_TARGET, USUAL_GCC_FOR_TARGET,
6127         USUAL_RAW_CXX_FOR_TARGET, USUAL_GFORTRAN_FOR_TARGET): New.
6128         (CXX_FOR_TARGET_FOR_RECURSIVE_MAKE,
6129         RAW_CXX_FOR_TARGET_FOR_RECURSIVE_MAKE, RECURSE_FLAGS): Delete.
6130         * configure: Regenerate.
6131         * Makefile.in: Regenerate.
6133 2005-07-27  Mark Mitchell  <mark@codesourcery.com>
6135         * Makefile.tpl (EXTRA_TARGET_FLAGS): Set LDFLAGS=LDFLAGS_FOR_TARGET.
6136         * Makefile.def (flags_to_pass): Add LDFLAGS_FOR_TARGET.
6137         * Makefile.in: Regenerated.
6139 2005-07-26  Mark Mitchell  <mark@codesourcery.com>
6141         * Makefile.tpl (SYSROOT_CFLAGS_FOR_TARGET): New variable.
6142         (CFLAGS_FOR_TARGET): Use it.
6143         (CXXFLAGS_FOR_TARGET): Likewise.
6144         * Makefile.in: Regenerated.
6145         * configure.in (--with-build-sysroot): New option.
6146         * configure: Regenerated.
6148 2005-07-24  Paolo Bonzini  <bonzini@gnu.org>
6150         * Makefile.tpl: Wrap install between unstage and stage
6151         * Makefile.in: Regenerate.
6153 2005-07-16  Kelley Cook  <kcook@gcc.gnu.org>
6155         * all files: Update FSF address.
6157 2005-07-14  Jim Blandy  <jimb@redhat.com>
6159         * configure.in: Add cases for Renesas m32c.
6160         * configure: Regenerated.
6162 2005-07-14  Kelley Cook  <kcook@gcc.gnu.org>
6164         * COPYING, compile, config-ml.in, config.guess,
6165         config.sub, install-sh, missing, mkinstalldirs,
6166         symlink-tree, ylwrap: Sync from upstream sources.
6168 2005-07-13  Eric Christopher  <echristo@redhat.com>
6170         * configure.in: Add toplevel noconfigdir support for tpf.
6171         * configure: Regenerate.
6173 2005-07-11  Jakub Jelinek  <jakub@redhat.com>
6175         * Makefile.def (target_modules): Add libssp.
6176         * configure.in (target_libraries): Add target-libssp.
6177         * configure: Rebuilt.
6178         * Makefile.in: Rebuilt.
6180 2005-07-11  Paolo Bonzini  <bonzini@gnu.org>
6182         PR ada/22340
6184         * Makefile.def: Sync with gcc.
6185         * Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Fix pasto.
6186         * Makefile.in: Regenerate.
6188 2005-07-07  Andreas Schwab  <schwab@suse.de>
6190         * Makefile.def (flags_to_pass): Add CFLAGS_FOR_BUILD.
6191         * Makefile.tpl (EXTRA_GCC_FLAGS): Don't pass CFLAGS_FOR_BUILD here.
6192         * Makefile.in: Regenerated.
6194 2005-07-07  Kazu Hirata  <kazu@codesourcery.com>
6196         * configure.in: Add --enable-libssp and --disable-libssp.
6197         * configure: Regenerate with autoconf-2.13.
6199 2005-07-06  Geoffrey Keating  <geoffk@apple.com>
6201         * configure.in: Don't build sim or rda when targetting darwin.
6202         * configure: Regenerate.
6204 2005-07-04  Ben Elliston  <bje@gnu.org>
6206         * src-release (do-proto-toplev): Remove dejagnu bits.
6207         (DEJAGNU_SUPPORT_DIRS): Remove.
6208         (dejagnu.tar.bz2, dejagnu.tar): Likewise.
6209         (GDBD_SUPPORT_DIRS): Likewise.
6210         (gdb+dejagnu.tar.bz2, gdb+dejagnu.tar): Likewise.
6211         (INSIGHTD_SUPPORT_DIRS): Likewise.
6212         (insight+dejagnu.tar.bz2, insight+dejagnu.tar): Likewise.
6214 2005-06-30  Ben Elliston  <bje@gnu.org>
6216         * setup.com (mpw): Remove unused directive.
6218 2005-06-22  Paolo Bonzini  <bonzini@gnu.org>
6220         * Makefile.def (stagefeedback): Come after profile.
6221         Define profiledbootstrap target.
6222         * Makefile.tpl (profiledbootstrap): Remove.
6223         (stageprofile-end): Zap stagefeedback.
6224         (stagefeedback-start): Copy all .gcda files, not only GCC's.
6225         * Makefile.in: Regenerate.
6227 2005-06-13  Zack Weinberg  <zack@codesourcery.com>
6229         * depcomp: Update from automake CVS.  Add 'ia64hp' stanza.
6230         In 'cpp' stanza, support '#line' as well as '# '.
6232 2005-06-07  Hans-Peter Nilsson  <hp@axis.com>
6234         * configure.in (unsupported_languages): New macro.
6235         <mmix-knuth-mmixware>: Set unsupported_languages.  Name explicit
6236         non-ported target libraries in noconfigdirs.
6237         <cris-*, crisv32-*> Ditto, except for non-aout, non-elf,
6238         non-linux-gnu.  Remove libgcj_ex_libffi.
6239         <lang_frag loop>: Set add_this_lang=no if the language is in
6240         unsupported_languages.
6241         * configure: Regenerate.
6243 2005-06-04  Tobias Schl"uter  <tobias.schlueter@physik.uni-muenchen.de>
6245         * configure.in: Fix typo in handling of --with-mpfr-dir.
6246         * configure: Regenerate.
6248 2005-06-02  Jim Blandy  <jimb@redhat.com>
6250         * config.sub: Add cases for the Renesas m32c.  (This patch has been
6251         accepted into the master sources.)
6253 2005-06-02  Aldy Hernandez  <aldyh@redhat.com>
6254             Michael Snyder  <msnyder@redhat.com>
6255             Stan Cox  <scox@redhat.com>
6257         * configure.in: Set noconfigdirs for ms1.
6259         * configure: Regenerate.
6261 2005-05-25  Paolo Bonzini  <bonzini@gnu.org>
6263         * Makefile.tpl (stage[+id+]-start): Iterate over target module as well.
6264         (Dependencies): Consider target modules for bootstrap dependencies.
6265         Make target bootstrap modules depend on each stage's gcc.
6266         * Makefile.in: Regenerate.
6268 2005-05-20  Paolo Bonzini  <bonzini@gnu.org>
6270         * Makefile.def (configure-gcc): Depend on binutils having been built.
6271         (all-gcc): No need to do it here.
6272         * Makefile.in: Regenerate.
6274 2005-05-19  Paul Brook  <paul@codesourcery.com>
6276         * configure.in: Rewrite misleading error message when requested
6277         language cannot be built.
6278         * configure: Regenerate.
6280 2005-05-15  Daniel Jacobowitz  <dan@codesourcery.com>
6282         * ylwrap: Import from Automake 1.9.5.
6284 2005-05-04  Mike Stump  <mrs@apple.com>
6286         * configure.in: Always pass --target to target configures as
6287         otherwise rebuilds that do --recheck will fail.
6288         * configure: Rebuilt.
6290 2005-05-04  Paolo Bonzini  <bonzini@gnu.org>
6292         * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Rename from
6293         STAGE_HOST_EXPORTS.
6294         (configure, all): Add bootstrap support.
6295         (Host modules, target modules): Pass post-stage1 flags and exports.
6296         (Top-level bootstrap): Remove bootstrap rules, expanded elsewhere.
6297         * Makefile.in: Regenerate.
6299 2005-04-29  Paolo Bonzini  <bonzini@gnu.org>
6301         Sync from gcc:
6303         2005-04-22  Bernd Schmidt  <bernd.schmidt@analog.com>
6305         * config.sub: Update from master copy.
6307         2005-04-19  Hans-Peter Nilsson  <hp@axis.com>
6309         * configure.in <crisv32-*-*, cris-*-*>: New local variable
6310         libgcj_ex_libffi.  Have specific match for *-*-linux*.  Separate
6311         matches for "*-*-aout" and "*-*-elf".  Don't disable libffi for
6312         "*-*-elf" and "*-*-linux*".
6313         * configure: Regenerate.
6315 2005-04-06  Paolo Bonzini  <bonzini@gnu.org>
6317         * Makefile.tpl (BUILD_CONFIGARGS): Include --with-build-subdir.
6318         (TARGET_CONFIGARGS): Include --with-target-subdir.
6319         (configure, all): New macros.  Use them throughout.
6321 2005-04-05  Paolo Bonzini  <bonzini@gnu.org>
6323         * Makefile.tpl: Sync with gcc.
6324         * Makefile.in: Regenerate.
6326 2005-03-30  J"orn Rennecke <joern.rennecke@st.com>
6328         * config/mh-mingw32: Delete.
6329         * configure.in: Don't use it.
6330         * configure: Regenerate.
6332 2005-03-31  Paolo Bonzini  <bonzini@gnu.org>
6334         * Makefile.def (bfd, opcodes, libstdc++-v3, libmudflap): Set lib_path.
6335         * Makefile.tpl (SET_LIB_PATH, REALLY_SET_LIB_PATH): Remove.
6336         (HOST_EXPORTS, STAGE_HOST_EXPORTS, TARGET_EXPORTS): Set $(RPATH_ENVVAR).
6337         (HOST_LIB_PATH): Generate from Makefile.def.
6338         (TARGET_LIB_PATH): Likewise.
6339         (Old bootstrap targets): Include TARGET_LIB_PATH into RPATH_ENVVAR.
6340         * Makefile.in: Regenerate.
6341         * configure.in (set_lib_path, SET_LIB_PATH, SET_GCC_LIB_PATH): Remove.
6342         (RPATH_ENVVAR): Include Darwin case.
6343         * configure: Regenerate.
6345 2005-03-25  Paolo Bonzini  <bonzini@gnu.org>
6347         * configure.in (RPATH_ENVVAR): Set to DYLD_LIBRARY_PATH on Darwin.
6348         * configure: Regenerate.
6350 2005-03-21  Zack Weinberg  <zack@codesourcery.com>
6352         * Makefile.def: Remove libstdcxx_incdir, libsubdir, gxx_include_dir,
6353         gcc_version, and gcc_version_trigger from set of flags to pass.
6354         * Makefile.tpl: Remove definitions of above variables.
6355         (config.status): Remove dependency on $(gcc_version_trigger).
6356         * Makefile.in: Regenerate.
6357         * configure.in: Do not reference config/gcc-version.m4 nor
6358         config/gxx-include-dir.m4.  Do not invoke TL_AC_GCC_VERSION nor
6359         TL_AC_GXX_INCLUDE_DIR.  Do not set gcc_version_trigger.
6360         * configure: Regenerate.
6362 2005-03-16  Manfred Hollstein  <manfred.h@gmx.net>
6363             Andrew Pinski <pinskia@physics.uc.edu>
6365         * Makefile.tpl (check-[+module+]): Fix shell statement inside if ... fi.
6366         * Makefile.in: Regenerate.
6368 2005-03-01  Alexandre Oliva  <aoliva@redhat.com>
6370         PR libgcj/20160
6371         * ltmain.sh: Avoid creating archives with components that have
6372         duplicate basenames.
6374 2005-02-28  Andrew Pinski  <pinskia@physics.uc.edu>
6376         PR bootstrap/20250
6377         * Makefile.tpl (HOST target installs): Fix copy and pasto, use install
6378         instead of check.
6379         * Makefile.in: Regenerate.
6381 2005-02-28  Paolo Bonzini  <bonzini@gnu.org>
6383         Sync from gcc.
6385         2005-02-28  Paolo Bonzini  <bonzini@gnu.org>
6387         PR bootstrap/17383
6388         * Makefile.def (target_modules): Remove "stage", now unnecessary.
6389         * Makefile.tpl (HOST_SUBDIR): New substitution.
6390         (STAGE_HOST_EXPORTS, EXPECT, HOST_LIB_PATH, USUAL_AR_FOR_TARGET,
6391         USUAL_AS_FOR_TARGET, USUAL_DLLTOOL_FOR_TARGET, USUAL_GCC_FOR_TARGET,
6392         USUAL_LD_FOR_TARGET, USUAL_NM_FOR_TARGET, USUAL_OBJDUMP_FOR_TARGET,
6393         USUAL_RANLIB_FOR_TARGET, USUAL_WINDRES_FOR_TARGET): Use it.
6394         (Host modules, Bootstrapped modules): Use it.
6395         (Build modules, Target modules): Do not create symlink trees,
6396         always configure out-of-srcdir.
6397         (distclean): Try removing $(host_subdir) with rm before using rm -rf.
6398         * configure.in (FLAGS_FOR_TARGET, CC_FOR_TARGET, GCJ_FOR_TARGET,
6399         GFORTRAN_FOR_TARGET, CXX_FOR_TARGET, RAW_CXX_FOR_TARGET): Use
6400         $(HOST_SUBDIR).  Create a symlink for host_subdir.
6402         * Makefile.in: Regenerate.
6403         * configure: Regenerate.
6405         Merged from libada-gnattools-branch:
6406         2004-11-28  Nathanael Nerode  <neroden@gcc.gnu.org>
6408         * Makefile.def: Add gnattools as a module, depending on target-libada.
6409         * Makefile.in: Regenerate.
6410         * configure.in: Include gnattools in host_tools; disable it if ada
6411         is disabled.
6412         * configure: Regenerate.
6414 2005-02-23  Nick Clifton  <nickc@redhat.com>
6416         * configure: Regenerate.
6418 2005-02-22  Paul Schlie  <schlie@comcast.net>
6420         * configure.in: Allow darwin targeted ports to build tk, itcl and
6421         libgui.
6423 2005-02-21  Eric Botcazou  <ebotcazou@libertysurf.fr>
6425         PR libgcj/10353
6426         * configure.in (noconfigdirs) <sparc-*-solaris2.[0-6]>: Add libgcj.
6427         * configure: Regenerate.
6429 2005-02-08  Andrew Cagney  <cagney@gnu.org>
6431         * MAINTAINERS: Delete reference to dejagnu/ and mmalloc/ from the
6432         gdb/ section.  Update GDB's URL.
6434 2005-01-31  Andrew Cagney  <cagney@gnu.org>
6436         * gettext.m4: Only set ENABLE_NLS when gettext is present.
6438 2005-01-29  Hans-Peter Nilsson  <hp@axis.com>
6440         * configure.in (noconfigdirs) <crisv32-*-*>: Match like cris-*-*.
6441         <crisv32-*-*, cris-*-*>: Only disable target-newlib and
6442         target-libgloss when not *-*-elf and *-*-aout.
6443         * configure: Regenerate.
6445 2005-01-27  Andrew Cagney  <cagney@gnu.org>
6447         * gettext.m4: Don't use NONE as a default for CATOBJEXT.
6449 2005-01-24  Andrew Cagney  <cagney@gnu.org>
6451         * gettext.m4: Only fall back to ../intl/ when it's present.
6453 2005-01-17  Kelley Cook  <kcook@gcc.gnu.org>
6455         * install-sh, config.sub: Import from upstream.
6457 2005-01-17  Kelley Cook  <kcook@gcc.gnu.org>
6459         PR bootstrap/18222
6460         * Makefile.def: Pass CPPFLAGS_FOR_TARGET.
6461         * Makefile.tpl: Define target CPPFLAGS on CPPFLAGS_FOR_TARGET.
6462         * Makefile.in: Regenerate.
6464 2005-01-03  Paolo Bonzini  <bonzini@gnu.org>
6466         Revert 2004-12-28 Makefile changes, a better fix will be
6467         applied to mainline and src after GCC 4.0 branches.
6469 2004-12-28  Paolo Bonzini  <bonzini@gnu.org>
6471         PR bootstrap/17383
6473         * Makefile.def (target_modules): Remove stage parameter,
6474         it is always true now.
6475         * Makefile.tpl (configure-build-[+module+],
6476         configure-target-[+module+]): Always build symlink tree
6477         for the directory and for include.  BUILD_SUBDIR and
6478         TARGET_SUBDIR cannot be . anymore.
6479         * Makefile.in: Regenerate.
6481 2004-12-25  David Edelsohn  <edelsohn@gnu.org>
6483         Revert 2004-12-08 Makefile changes.
6485 2004-12-16  Andrew Stubbs  <andrew.stubbs@st.com>
6487         * configure.in (sh64-*-*): Reenable gprof.
6488         * configure: Regenerate.
6490 2004-12-09  Jim Blandy  <jimb@redhat.com>
6492         * MAINTAINERS: List 'depcomp' as part of automake.
6494 2004-12-08  David Edelsohn  <edelsohn@gnu.org>
6496         * Makefile.def (flags_to_pass): Add PICFLAG_FOR_TARGET.
6497         * Makefile.tpl (EXTRA_HOST_FLAGS): Add PICFLAG.
6498         (EXTRA_TARGET_FLAGS): Add PICFLAG.
6499         * Makefile.in: Regenerate.
6501 2004-12-07  Matt Kraai  <kraai@ftbfs.org>
6503         * Makefile.tpl: Generate normal dependencies if the LHS module is
6504         not bootstrapped.
6505         * Makefile.in: Regenerate.
6507 2004-12-03  Richard Sandiford  <rsandifo@redhat.com>
6509         * configure.in: Include config/gxx-include-dir.m4.  Use
6510         TL_AC_GXX_INCLUDE_DIR.  Remove some now-redundant AC_SUBSTs.
6511         * configure: Regenerate.
6513 2004-12-03  Richard Sandiford  <rsandifo@redhat.com>
6515         * config.if: Delete.
6516         * configure.in: Set libstdcxx_incdir directly.
6517         * configure: Regenerate.
6518         * MAINTAINERS: Remove mention of config.if.
6519         * src-release (DEVO_SUPPORT): Remove config.if.
6521 2004-12-02  Eric Christopher  <echristo@redhat.com>
6523         * Makefile.tpl (clean-target-libgcc): Add stmp-dirs to list
6524         of things to remove.
6525         * Makefile.in: Regenerate.
6527 2004-12-02  Richard Sandiford  <rsandifo@redhat.com>
6529         * configure.in: Clear gcc_version_trigger if the file doesn't exist.
6530         * configure: Regenerate.
6532 2004-12-02  Richard Sandiford  <rsandifo@redhat.com>
6534         * configure.in: Include config/gcc-version.m4.  Use TL_AC_GCC_VERSION
6535         to set gcc_version_trigger.  Remove some now-redundant AC_SUBSTs.
6536         * configure: Regenerate.
6538 2004-11-26  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
6540         * configure.in (hppa*-*-linux*): Don't add libgcj to noconfigdirs.
6541         (hppa*64*-*-*): Delete incorrect comment.
6542         * configure: Rebuilt.
6544 2004-11-15  Kelley Cook  <kcook@gcc.gnu.org>
6546         * install-sh, compile: Import from automake.
6548 2004-11-15  Kelley Cook  <kcook@gcc.gnu.org>
6550         * config.guess, config.sub:  Import from savannnah.
6552 2004-11-12  Mike Stump  <mrs@apple.com>
6554         * Makefile.def: Add html support.
6555         * Makefile.tpl: Likewise.
6556         * Makefile.in: Regenerate.
6558 2004-11-11  Geoffrey Keating  <geoffk@apple.com>
6560         PR 18423
6561         * configure.in: Remove all instances of build-fixincludes from
6562         noconfigdirs.
6563         (build_configargs): Supply --target to subdirectories.
6564         * configure: Regenerate.
6566         * Makefile.def: Make gcc install depend on fixincludes install.
6567         * Makefile.in: Regenerate.
6569 2004-11-08  Hans-Peter Nilsson  <hp@bitrange.com>
6571         * configure.in (noconfigdirs) [mmix-*-*]: Disable
6572         target-libgfortran.
6573         * configure: Regenerate.
6575 2004-11-07  David Edelsohn  <edelsohn@gnu.org>
6577         * config-ml.in: Pass FCFLAGS for multilibs, handle GFORTRAN
6578         like CC.
6580 2004-11-05  Paolo Bonzini  <bonzini@gnu.org>
6582         * Makefile.def (host fixincludes): Specify missing targets.
6583         * Makefile.in: Regenerate.
6585 2004-11-04  H.J. Lu  <hongjiu.lu@intel.com>
6587         PR other/17783
6588         * configure.in: Set up LD_LIBRARY_PATH by default for gcc.
6589         * configure: Regenerated.
6591 2004-11-04  Daniel Jacobowitz  <dan@debian.org>
6593         * configure.in (arm-*-oabi*, thumb-*-oabi*): Remove.
6594         * configure: Regenerated.
6596 2004-10-28  Eric B. Weddington  <ericw@evcohs.com>
6598         PR target/18151
6599         * configure.in (case ${target}): Do not build fixincludes for avr.
6600         * configure: Regenerated.
6602 2004-10-26  Paolo Bonzini  <bonzini@gnu.org>
6604         * configure.in (case ${target}): Do not build fixincludes
6605         on platforms where it is not used.
6606         * configure: Regenerated.
6608 2004-10-23  Daniel Jacobowitz  <dan@debian.org>
6610         * configure.in: Use an absolute path to install-sh.
6611         * configure: Regenerated.
6613 2004-10-19  Andrew Cagney  <cagney@gnu.org>
6615         * src-release (do-djunpack, do-md5sum): Install the generated file
6616         directly into the proto-toplev/ directory.
6618 2004-10-19  Andrew Cagney  <cagney@gnu.org>
6620         * src-release (GDB_SUPPORT_DIRS): Remove utils and intl.
6622 2004-10-12  Kelley Cook  <kcook@gcc.gnu.org>
6624         * configure.in (*-*-cygwin*): Supress warning if newlib not present.
6625         * configure: Regenerate.
6627 2004-10-06  Paolo Bonzini  <bonzini@gnu.org>
6629         Fix wrong conflict resolution in:
6631         2004-08-16  Paolo Bonzini  <bonzini@gnu.org>
6633         * Makefile.in: Regenerate.
6634         * Makefile.tpl (Autogenerated `all-*' targets): Invoke $(TARGET-*)
6635         in the recursive `make', instead of hardwiring `all'.
6636         (Autogenerated TARGET-* variables): New.
6638 2004-10-05  Ulrich Weigand  <uweigand@de.ibm.com>
6640         Merged from GCC / libtool upstream:
6641         2004-10-02  P.J. Darcy  <darcypj@us.ibm.com>
6642         * ltcf-c.sh (tpf*): Add ld_shlibs=yes.
6643         * ltcf-cxx.sh (tpf*): Likewise.
6644         * ltconfig (tpf*): Add TPF OS configuration support.
6646 2004-09-30  Tomer Levi  <Tomer.Levi@nsc.com>
6648         * configure.in: Enable target-libgloss for crx-*-*.
6649         * configure: Regenerate.
6651 2004-09-24  Michael Roth  <mroth@nessie.de>
6653         * configure.in (--without-headers): Add missing double quotes.
6654         * configure: Regenerate.
6656 2004-09-24  Kelley Cook <kcook@gcc.gnu.org>
6658         * ylwrap: Revert to previous version.
6660 2004-09-23  H.J. Lu  <hongjiu.lu@intel.com>
6662         PR bootstrap/17369
6663         * Makefile.tpl (REALLY_SET_LIB_PATH): Add @SET_GCC_LIB_PATH@.
6664         (HOST_EXPORTS]): Add @SET_GCC_LIB_PATH@. Set and export
6665         SET_GCC_LIB_PATH_CMD.
6666         (BASE_TARGET_EXPORTS): Likewise.
6667         * Makefile.in: Regenerated.
6669         * configure.in (SET_GCC_LIB_PATH): Set and substitute.
6670         * configure: Regenerated.
6672 2004-09-23  Kelley Cook  <kcook@gcc.gnu.org>
6674         * config.guess: New upstream version
6675         * compile, depcomp, install-sh, ylwrap: Likewise.
6677 2004-09-19  Roger Sayle  <roger@eyesopen.com>
6679         * config/mh-x86omitfp: New host makefile fragment.  Add
6680         -fomit-frame-pointer to the default BOOT_CFLAGS.
6681         * configure.in: Use it to speed up bootstrap on some IA-32 hosts.
6682         * configure: Regenerate.
6684 2004-09-15  Andrew Pinski  <pinskia@physics.uc.edu>
6686         PR target/11572
6687         * configure.in (*-*-darwin*): Renable libobjc.
6688         * configure: Regenerate.
6690 2004-09-09  Daniel Berlin  <dberlin@dberlin.org>
6692         * Makefile.def: Remove libbanshee.
6693         * Makefile.tpl: Ditto.
6694         * configure.in: Ditto.
6695         * Makefile.in: Regen.
6696         * configure: Ditto.
6698 2004-09-07  Paolo Bonzini  <bonzini@gnu.org>
6700         * missing: Import latest version from master repository.
6702 2004-09-04  Nick Clifton  <nickc@redhat.com>
6704         * config.sub: Import latest version from master repository.
6705         * config.guess: Likewise.
6706         This includes these changes:
6708         2004-08-27  Hans-Peter Nilsson  <hp@axis.com>
6710         * config.sub: Handle crisv32, alias etraxfs.
6711         * config.guess (crisv32:Linux:*:*): Handle.
6713         2004-08-13  Brad Smith  <brad@comstyle.com>
6715         * config.guess (*:OpenBSD:*:*): Remove defunct MIPS machines.
6716         (sgi:OpenBSD:*:*): Emit mips64, not mipseb.
6718         2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
6720         * config.guess (*:Darwin:*:*): If uname -p reports "unknown",
6721         assume the processor is a powerpc.  This is because coreutils
6722         uname (at least versions 4.5.7 through 5.2.1) outputs "unknown"
6723         in this case, due to a MacOS X bug that causes
6724         sysctl ((int[]) {CTL_HW, HW_MACHINE_ARCH}, 2, buffer, &bufsize, 0, 0)
6725         to return a negative number.
6726         Problem reported by Petter Reinholdtsen in:
6727         http://lists.gnu.org/archive/html/bug-gnu-utils/2003-02/msg00201.html
6729         2004-07-19  Ben Elliston  <bje@gnu.org>
6731         * config.guess (S7501:*:4.0:3.0): Handle NCR System V UNIX machine.
6733         2004-06-24  Ben Elliston  <bje@gnu.org>
6735         * config.guess: Update copyright years.
6736         * config.sub: Likewise.
6738         2004-06-22  Robert Millan  <robertmh@gnu.org>
6740         * config.guess (*:FreeBSD:*:*): Remove check for glibc (unneeded
6741         since GNU/kFreeBSD systems match *:GNU/*:*:* instead).
6743         2004-06-22  Stanley F. Quayle <stan@stanq.com>
6745         * config.guess (*:*VMS:*:*): New entry. Replaces
6746         Alpha:OpenVMS:*. Recognize and advertise all VMS flavors as dec
6747         manufacturer.
6749         2004-06-22  Ben Elliston  <bje@gnu.org>
6751         * config.guess: Cray fixes from Wendy Palm <wendyp@cray.com>.
6752         * config.sub: Likewise.
6754         2004-06-22  Ben Elliston  <bje@gnu.org>
6756         Reported by Hans-Peter Nilsson <hp@bitrange.com>:
6757         * config.sub: Correctly handle mmix-knuth and mmix-knuth-mmixware.
6759         2004-06-11  Ben Elliston  <bje@gnu.org>
6761         * config.guess (pegasos:OpenBSD:*:*): Remove.
6763         2004-06-11  Ben Elliston  <bje@gnu.org>
6765         From Wouter Verhelst <wouter@grep.be>:
6766         * config.guess (M68*:*:R3V[5678]:*): Detect R3V8.
6768         2004-06-11  Ben Elliston  <bje@gnu.org>
6770         * config.guess (luna88k:OpenBSD:*:*): New.
6772         2004-03-12  Kazuhiro Inaoka  <inaoka.kazuhiro@renesas.com>
6774         * config.guess (m32r*:Linux:*:*): New case.
6775         * config.sub: Handle m32rle.
6777         2004-03-12  Ben Elliston  <bje@wasabisystems.com>
6779         From Jens Petersen  <petersen@redhat.com>:
6780         * config.sub: Handle sparcv8.
6782         2004-03-03  Ben Elliston  <bje@wasabisystems.com>
6784         From Tom Smith <smith@cag.lkg.hp.com>:
6785         * config.guess: Version suffixes are equally significant on Tru64
6786         V4.* and V5.*, so do not ignore them on V5.*.  Handle a version
6787         prefix of "P" (patched kernel).
6789         2004-02-23  Tal Agmon  <Tal.Agmon@nsc.com>
6791         * config.sub: Add support for National Semiconductor CRX target.
6793 2004-09-03  Jan Beulich  <jbeulich@novell.com>
6795         * configure.in: Remove target-libstdc++-v3 from noconfigdirs for
6796         *-*-netware, but add target-libmudflap.
6797         Consolidate *-*-netware targets (of which really only i?86 exists)
6798         into a single entry.
6799         * configure: Likewise.
6801 2004-09-01  Paolo Bonzini  <bonzini@gnu.org>
6803         * Makefile.tpl (sorry): Remove.
6804         (clean-stage[+id+], clean-stage[+id+]-module): New targets.
6805         (cleanstrap targets): Depend on distclean, not distclean-stage1.
6806         (do-clean): Clean per-stage directories too.
6807         (do-distclean): Run distclean-stage1 too.
6808         (.NOTPARALLEL): Enable during toplevel bootstrap.
6809         (stage[+id+]-bubble): Enable parallel execution during
6810         the recursive invocation.
6811         * Makefile.in: Regenerate.
6813         Sync from gcc (moving the Makefile.in change to Makefile.tpl):
6815         2004-08-31  Robert Bowdidge <bowdidge@apple.com>
6817         * Makefile.in: Move BOOT_CFLAGS above host makefile fragment include.
6818         * configure.in: add test for powerpc-*-darwin* to specify makefile frag
6819         * configure: regenerate
6820         * config/mh-ppc-darwin: create file, override BOOT_CFLAGS for
6821         -mdynamic-no-pic
6823 2004-08-31  Paolo Bonzini  <bonzini@gnu.org>
6825         * Makefile.tpl: Move BOOT_CFLAGS above host makefile fragment
6826         include.
6827         * configure.in: Fix indentation.
6828         * configure: Regenerate.
6830 2004-08-31  Paolo Bonzini  <bonzini@gnu.org>
6832         * Makefile.def (build_modules): Add fixincludes.
6833         (dependencies): Make gcc depend on fixincludes.
6834         * configure.in (build_tools): Add fixincludes.
6835         (build_configdirs): Always include build_libs.
6836         * Makefile.in: Regenerate.
6837         * configure: Regenerate.
6839 2004-08-30  Paolo Bonzini  <bonzini@gnu.org>
6841         * Makefile.def (bootstrap stages): Add 'lean' parameter.
6842         * Makefile.tpl (configure-stageN-*, all-stageN-*): Turned into
6843         phony targets; do not generate timestamp files.
6844         (distclean-stageN): Remove references to their timestamp files.
6845         (restageN, touch-stageN): Remove.
6846         (stageN-bubble): Rewritten.
6847         (compare): Support lean bootstraps.
6848         * Makefile.in: Regenerate.
6850         * configure.in: Only warn when bootstrapping but
6851         build != host or build != target.  Support lean bootstraps.
6852         * configure: Regenerate.
6854         Sync from gcc:
6855         2004-08-26  Phil Edwards  <phil@codesourcery.com>
6857         * configure.in:  Give a better error message if GMP/MPFR are missing
6858         and a language needing them has been requested.
6859         * configure:  Regenerated.
6861         2004-08-25  Phil Edwards  <phil@codesourcery.com>
6863         * configure.in:  Print a list of available language front-ends if
6864         a requested one is missing.  Tidy stray tab characters.
6865         * configure:  Regenerated.
6867 2004-08-17  Paolo Bonzini  <bonzini@gnu.org>
6869         * Makefile.in: Regenerate.
6870         * configure: Regenerate.
6872         * Makefile.def (bootstrap-stage): Rename extra_*_flags to
6873         stage_*_flags.
6874         * Makefile.tpl (configure-[+module+], all-[+module+]): Exit
6875         for bootstrapped modules if toplevel bootstrap is going.
6876         (GCC bootstrap): Generate per-stage targets for all bootstrapped
6877         modules.  Adjust for changes in Makefile.def.  Enable several
6878         rules even in non-bootstrap mode, just to avoid peppering the
6879         template with unnecessary "@if/@endif gcc-bootstrap" pairs.
6880         (stage-[+prev+]-bubble): Remove.
6882         * Makefile.def (Dependencies): Depend on all-build-bison,
6883         all-build-flex, all-build-byacc, all-build-texinfo, rather
6884         than the host variations.
6885         * Makefile.tpl (BUILD_DIR_PREFIX): Remove.  Replace throughout
6886         with BUILD_SUBDIR.
6887         (BISON): Update for recent Bisons.
6888         (YACC): Fix typo.
6889         (cross): Depend on all-build.
6890         (all): Do not depend on all-build.
6891         (prebootstrap): Remove.
6892         (dep-kind): Accept separate prefixes for MODULE and ON variables.
6893         (Prebootstrap dependencies): Add them to the per-stage targets
6894         and to all-prebootstrap.
6895         * configure.in (build_configdirs): Always enable build_tools.
6896         (BUILD_DIR_PREFIX): Remove.
6898         * Makefile.def (gcc): Add target variable.
6899         (gdb, expect, guile, tk, tix): Replace with_x with extra_make_flags.
6900         * Makefile.tpl (Autogenerated `all-*' targets): Invoke $(TARGET-*)
6901         in the recursive `make', instead of hardwiring `all'.
6902         (Autogenerated TARGET-* variables): New.
6904 2004-08-17  Robert Millan  <robertmh@gnu.org>
6906         * configure.in: In noconfigdirs check, match GNU/k*BSD with GNU/Linux
6907         (instead of FreeBSD).
6908         * configure: Regenerate.
6910 2004-08-12  Nathanael Nerode  <neroden@gcc.gnu.org>
6912         * Makefile.def, configure.in, src-release: Remove useless, bogus
6913         references to tix.
6914         * Makefile.in, configure: Regenerate.
6916         * src-release: Stop distributing mmalloc with gdb (which doesn't
6917         use it).
6918         * Makefile.def: GDB doesn't depend on mmalloc anymore.
6919         * Makefile.in: Regenerate.
6921 2004-08-09  Mark Mitchell  <mark@codesourcery.com>
6923         * configure.in (arm*-*-eabi*): New target.
6924         * configure: Regenerate.
6926 2004-08-01  Robert Millan  <robertmh@gnu.org>
6928         * configure.in: Turn mt-linux into mt-gnu. Use mt-gnu and enable
6929         libmudflap for all GNU-based systems (with Glibc).
6930         * configure: Regenerate.
6932 2004-08-06  Paolo Bonzini  <bonzini@gnu.org>
6934         * Makefile.def (bfd, opcodes, gcc, zlib): Mark as bootstrap module.
6935         (bison, byacc, flex, texinfo): Do not mark as bootstrap module.
6936         (Dependencies): New section.
6937         * Makefile.tpl (Dependencies): Generate from Makefile.def.
6938         (configure-target-[+module+]): Depend on maybe-all-gcc
6939         (all-prebootstrap): New name of all-bootstrap.  Changed throughout.
6940         (toplevel profiledbootstrap): Fix dependencies.
6941         * Makefile.in: Regenerate.
6943 2004-08-03  Mark Mitchell  <mark@codesourcery.com>
6945         * configure.in (arm*-*-symbianelf*): Add ${libgcj} and
6946         target-libiberty to noconfigdirs.
6948 2004-08-03  Paul Brook  <paul@codesourcery.com>
6950         * configure.in: Check for MPFR as well as GMP.
6951         * configure: Regenerate.
6953 2004-08-03 Paolo Bonzini <bonzini@gnu.org>
6955         * Makefile.def (host-modules): Add gcc.
6956         * Makefile.in: Regenerate.
6957         * Makefile.tpl (sorry): New rule.
6958         (configure-host, all-host, [+make_target+]-host, do-check,
6959         install-host): Do not add gcc as a special case.
6960         (host modules): Add a small special-casing for gcc.  Export
6961         extra_make_flags through the environment.
6962         (maybe-configure-gcc, configure-gcc, maybe-all-gcc, all-gcc,
6963         maybe-check-gcc, check-gcc, maybe-install-gcc, install-gcc,
6964         other recursive targets for gcc): Remove.
6966         (all, do-[+make_target+], do-check): Wrap between unstage and stage.
6967         (stage, unstage): New rules.
6968         (stage[+id+]-start, stage[+id+]-end, [+compare-target+],
6969         distclean-stage[+id+]): Use stage_current.
6970         ([+bootstrap-target+], profiledbootstrap): Do not invoke manually
6971         the stage*-start rules.
6973 2004-07-19  Robert Millan  <robertmh@gnu.org>
6975         Synced from gcc:
6977         2004-04-26  Robert Millan  <robertmh@gnu.org>
6979         Add patches from libtool CVS.
6980         * libtool.m4: Add kfreebsd*-gnu and knetbsd*-gnu.
6981         * ltconfig: Likewise.
6982         * ltcf-c.sh: Likewise.
6983         * ltcf-cxx.sh: Likewise.
6984         * ltcf-gcj.sh: Likewise.
6986 2004-07-12  Paolo Bonzini  <bonzini@gnu.org>
6988         * configure.in: Add noconfigdirs for crx-*-*.
6989         * configure: Regenerate.
6991 2004-07-12  Paolo Bonzini  <bonzini@gnu.org>
6993         Synced from gcc:
6995         2004-07-09  Loren J. Rittle <ljrittle@acm.org>
6997         * configure.in: Build libmudflap by default on FreeBSD.
6998         * configure: Regenerated.
7000         2004-07-09  Mark Mitchell  <mark@codesourcery.com>
7002         * configure.in: Do not build libmudflap by default on non-GNU/Linux
7003         systems.
7004         * configure: Regenerated.
7006         2004-07-08 John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
7008         PR target/16344
7009         * Makefile.tpl (profiledbootstrap): Build runtime libraries with
7010         feedback based compiler.
7011         * Makefile.in: Rebuilt.
7013         2004-07-05  Phil Edwards  <phil@codesourcery.com>
7015         * configure.in:  Do not prepend $srcdir to /dev/null in
7016         makefile fragments.
7017         * configure:  Regenerate.
7019 2004-07-08  Alexandre Oliva  <aoliva@redhat.com>
7021         * Makefile.def (host_modules): Set bootstrap=true for flex.
7022         * Makefile.tpl (all-gcc): Depend on texinfo and flex.
7023         * Makefile.in: Rebuilt.
7025 2004-07-01  Paolo Bonzini  <bonzini@gnu.org>
7027         * Makefile.def (build_modules): Add bison, byacc, flex,
7028         m4, texinfo.
7029         (flags_to_pass): Add FLEX.
7030         * Makefile.tpl (BUILD_DIR_PREFIX, BASE_EXPORTS): New.
7031         (BUILD_EXPORTS, HOST_EXPORTS, BASE_TARGET_EXPORTS): Include it.
7032         (DEFAULT_YACC, USUAL_YACC, DEFAULT_LEX, USUAL_LEX, DEFAULT_M4,
7033         DEFAULT_MAKEINFO): Remove.
7034         (CONFIGURED_YACC, CONFIGURED_FLEX, CONFIGURED_BISON,
7035         CONFIGURED_LEX, CONFIGURED_M4, CONFIGURED_MAKEINFO): Substitute.
7036         (YACC, FLEX, BISON, LEX, M4, MAKEINFO): Define to look into
7037         objdir or else use configured tool.
7038         (all-build): New.
7039         (all): Depend on it.
7040         (Build module dependencies): Add.
7041         * Makefile.in: Regenerate.
7042         * configure.in: Better support for multiple build modules,
7043         matching what is done for host/target modules.  Do not look
7044         for "plausible" locations of build tools if Canadian cross.
7045         Use autoconf's AC_PROG_CC to find a C compiler.  Define
7046         BUILD_DIR_PREFIX.  Look for flex, makeinfo and m4.
7047         * configure: Regenerate.
7049 2004-06-22  Paolo Bonzini  <bonzini@gnu.org>
7051         * Makefile.tpl (HOST_EXPORTS): Fix pasto.
7052         * Makefile.in: Regenerate.
7054 2004-06-22  Paolo Bonzini  <bonzini@gnu.org>
7056         * Makefile.tpl (configure-build-[+module+],
7057         configure-[+module+], configure-target-[+module+]): Pass
7058         [+extra_configure_args+].
7059         (all-build-[+module+], all-[+module+], check-[+module+],
7060         install-[+module+], [+make_target+]-[+module+],
7061         all-target-[+module+], check-target-[+module+],
7062         install-target-[+module+], [+make_target+]-target-[+module+]):
7063         Pass [+extra_make_args+].
7064         (HOST_EXPORTS): Include the former GCC_HOST_EXPORTS.
7065         (GCC_HOST_EXPORTS): Remove.
7066         (configure-gcc, all-gcc, GCC_STRAP_TARGETS, profiledbootstrap,
7067         cross, check-gcc, check-gcc-c++, install-gcc,
7068         gcc-no-fixedincludes, [+make_target+]-gcc, stage[+id+]-bubble):
7069         Replace GCC_HOST_EXPORTS with HOST_EXPORTS.
7070         * Makefile.in: Regenerate.
7072 2004-06-21  Christopher Faylor  <cgf@alum.bu.edu>
7074         * configure.in: Check for srcdir/winsup rather than build directory
7075         winsup.
7076         * configure: Regenerate.
7078 2004-06-17  Corinna Vinschen  <vinschen@redhat.com>
7080         * configure.in: Don't build Cygwin native newlib if winsup
7081         directory is missing.  Emit warning instead.
7082         * configure: Regenerate.
7084 2004-06-09  Paolo Bonzini  <bonzini@gnu.org>
7086         * Makefile.tpl (touch-stage[+id+]): New.
7087         (restage[+prev+]): Depend on touch-stage[+id+].
7089         * Makefile.tpl (RECURSE_FLAGS_TO_PASS): New.
7090         Use it throughout.
7092         * Makefile.def: Add profile and feedback bootstrap stages.
7093         Remove next field from bootstrap stages.
7094         * Makefile.tpl (LN, LN_S): Substitute.
7095         (stageN-start, stageN-end): Use double-colon rules, to
7096         provide a hook for additional setup commands.
7097         (distclean-stageN-gcc, restageN): Create dependencies from
7098         [+prev+], not from [+next+].
7099         (stageN-bubble): Add commands for successive stages from
7100         [+prev+], using double-colon rules.
7101         (all-stageN-gcc): Fix typo.
7102         (stagefeedback-start, profiledbootstrap): New.
7103         * Makefile.in: Regenerate.
7104         * configure.in: Call ACX_PROG_LN.
7105         * configure: Regenerate.
7107 2004-06-03  Paolo Bonzini  <bonzini@gnu.org>
7109         * configure.in: Fix --enable-bootstrap breakage introduced in trees
7110         without gcc.
7111         * configure: Regenerate.
7113 2004-06-01  Paolo Bonzini  <bonzini@gnu.org>
7115         * Makefile.tpl: Fix typo.
7116         * Makefile.in: Regenerate.
7118 2004-06-01  Paolo Bonzini <bonzini@gnu.org>
7120         * configure.in: Remove new- prefix from toplevel
7121         bootstrap targets.
7122         * configure: Regenerate.
7124 2004-06-01  Paolo Bonzini <bonzini@gnu.org>
7126         Merge this patch from the gcc tree:
7128         2004-05-30  Andreas Jaeger  <aj@suse.de>
7129                     Jim Wilson <wilson@specifixinc.com>
7131         * config-ml.in: Pass FFLAGS and ADAFLAGS for multilibs, handle F77
7132         like CC.
7134 2004-06-01  Paolo Bonzini  <bonzini@gnu.org>
7136         * Makefile.tpl (all.normal): Rename to all.
7137         (all): Replace with a rule to pick the default
7138         target from configure.
7139         (all-gcc, configure-gcc): Use conditionals to
7140         do nothing when toplevel bootstrap is going on.
7141         (GCC directory bootstrap) [gcc-bootstrap]: Disable.
7142         (Toplevel bootstrap) [gcc-no-bootstrap]: Disable.
7143         * configure.in: Support --enable-bootstrap.
7145         * Makefile.def: Remove new- prefix from toplevel
7146         bootstrap targets.
7147         * Makefile.tpl: Likewise.
7149         * Makefile.def: Add bootstrap_stage 4.  Add bootstrap2
7150         target.
7152         * Makefile.tpl (Toplevel bootstrap): Pass $(BASE_FLAGS_TO_PASS)
7153         $(RECURSE_FLAGS) to recursive invocation of make.
7155         * Makefile.in: Regenerate.
7156         * configure: Regenerate.
7158 2004-05-27  Daniel Jacobowitz  <dan@debian.org>
7160         * configure.in: Fix sed invocation for GFORTRAN_FOR_TARGET.
7161         * configure: Regenerate.
7163 2004-05-25  Daniel Jacobowitz  <drow@false.org>
7165         * Makefile.tpl (BUILD_EXPORTS, HOST_EXPORTS, GCC_HOST_EXPORTS)
7166         (STAGE_HOST_EXPORTS, BASE_TARGET_EXPORTS, RAW_CXX_TARGET_EXPORTS)
7167         (NORMAL_TARGET_EXPORTS): New macros.  Use them in all the recursive
7168         targets.
7169         * Makefile.in: Regenerate.
7171 2005-05-24  Paolo Bonzini <bonzini@gnu.org>
7173         * configure.in: Test the ability to symlink directories.
7174         * configure: Regenerate.
7176         * Makefile.def (bootstrap-stage): New definitions.
7177         * Makefile.tpl (configure-stage1-gcc,
7178         configure-stage2-gcc, configure-stage3-gcc,
7179         all-stage1-gcc, all-stage2-gcc, all-stage3-gcc,
7180         new-bootstrap, new-cleanstrap, new-restage1, new-restage2,
7181         new-restage3, compare): Autogenerate, see Makefile.in
7182         entry for behavioral changes.
7183         (distclean-stage1, new-stage1-start, new-stage1-end,
7184         new-stage1-bubble, distclean-stage2, new-stage2-start,
7185         new-stage2-end, new-stage2-bubble, distclean-stage3,
7186         new-stage3-start, new-stage3-end): New autogenerated targets.
7187         (objext, prebootstrap, BOOT_CFLAGS,
7188         POSTSTAGE1_FLAGS_TO_PASS): Move above the autogenerated
7189         targets.
7191         * Makefile.in: Regenerate.
7192         (distclean-stage1, new-stage1-start, new-stage1-end,
7193         new-stage1-bubble, distclean-stage2, new-stage2-start,
7194         new-stage2-end, new-stage2-bubble, distclean-stage3,
7195         new-stage3-start, new-stage3-end): New targets.
7196         (all-stage1-gcc): Move prebootstrap dependency from here...
7197         (configure-stage1-gcc): ...to here.
7198         (new-bootstrap): Use bubble targets.
7199         (new-cleanstrap, new-restage1, new-restage2, new-restage3):
7200         Use per-stage distclean targets.
7201         (configure-stage1-gcc, configure-stage2-gcc,
7202         configure-stage3-gcc, all-stage1-gcc,
7203         all-stage2-gcc, all-stage3-gcc, new-bootstrap):
7204         Use new-stageN-start to prepare the tree.
7206 2004-05-23  Paolo Bonzini  <bonzini@gnu.org>
7208         * Makefile.def (host_modules): add libcpp.
7209         * Makefile.tpl: Add dependencies on and for libcpp.
7210         * Makefile.in: Regenerate.
7211         * configure.in: Add libcpp host module.
7212         * configure: Regenerate.
7214 2004-05-17  Zack Weinberg  <zack@codesourcery.com>
7216         * Makefile.def, Makefile.tpl, configure.in: Remove all mention
7217         of libf2c.
7218         * configure, Makefile.in: Regenerate.
7220 2004-05-13  Diego Novillo  <dnovillo@redhat.com>
7222         Merge from tree-ssa-20020619-branch.
7224         * Makefile.def: Add libbanshee, libmudflap and libgfortran.
7225         * Makefile.tpl (BUILD_CONFIGDIRS): Add libbanshee.
7226         (HOST_GMPLIBS): Define.
7227         (HOST_GMPINC): Define.
7228         (TARGET_LIB_PATH): Add libmudflap.
7229         (GFORTRAN_FOR_TARGET): Define.
7230         (configure-build*): Export GFORTRAN.
7231         (configure-gcc): Export GMPLIBS and GMPINC.
7232         (all-gcc): Add maybe-all-libbanshee.
7233         (configure-target-libgfortran): Define.
7234         * Makefile.in: Regenerate.
7235         * configure.in (host_libs): Add libbanshee.
7236         (target_libraries): Add target-libmudflap and target-libgfortran.
7237         Add --with-libbanshee.
7238         Handle --disable-libmudflap.
7239         (*-*-freebsd*): Use with_gmp.
7240         Add $(libgcj) to noconfigdirs.
7241         * configure: Regenerate.
7242         * depcomp: New file.
7243         * MAINTAINERS: Add tree-ssa maintainers.
7245 2004-04-28  Paolo Bonzini  <bonzini@gnu.org>
7247         * config/acx.m4: Fix fastcompare support for new-bootstrap.
7248         * configure: Regenerate.
7250 2004-04-27  Paolo Bonzini  <bonzini@gnu.org>
7252         Revert:
7253         2004-04-26  Paolo Bonzini  <bonzini@gnu.org>
7255         * Makefile.def (flags_to_pass): Remove *dir variables that
7256         are passed to the modules via TOPLEVEL_CONFIGURE_ARGUMENTS,
7257         as well as prefix and exec_prefix.
7258         * Makefile.in: Regenerate.
7260 2004-04-26  Paolo Bonzini  <bonzini@gnu.org>
7262         * Makefile.def (host_modules): Mark with the bootstrap
7263         flag packages on which gcc depends.
7264         * Makefile.tpl (all-bootstrap): Use it.
7265         * Makefile.in: Regenerate.
7267 2004-04-26  Paolo Bonzini  <bonzini@gnu.org>
7269         * Makefile.def (flags_to_pass): Remove *dir variables that
7270         are passed to the modules via TOPLEVEL_CONFIGURE_ARGUMENTS,
7271         as well as prefix and exec_prefix.
7272         * Makefile.in: Regenerate.
7274 2004-04-26  Paolo Bonzini  <bonzini@gnu.org>
7276         * configure.in: Invoke ACX_PROG_CMP_IGNORE_INITIAL.
7277         * configure: Regenerate.
7278         * config/acx.m4: Mutuate ACX_PROG_CMP_IGNORE_INITIAL from gcc.
7279         * gcc/Makefile.tpl (compare): Use the result of the test.
7280         * gcc/Makefile.in: Regenerate.
7282 2004-04-23  Paolo Bonzini  <bonzini@gnu.org>
7284         * Makefile.tpl (all-stage1-gcc, all-stage2-gcc, all-stage3-gcc):
7285         Always relocate gcc and prev-gcc to the original names, even
7286         if the build fails.
7287         (new-cleanstrap, new-restage1, new-restage2, new-restage3):
7288         New targets.
7290 2004-04-19  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
7292         * configure.in (mips*-*-irix5*): Enable ld.
7293         * configure: Regenerate.
7295 2004-04-15  James E Wilson  <wilson@specifixinc.com>
7297         * Makefile.tpl (configure-[+module+], configure-gcc,
7298         configure-stage1-gcc, configure-stage2-gcc, configure-stage3-gcc):
7299         Set and export LDFLAGS.
7300         * Makefile.in: Regenerate.
7302 2004-04-09  Nathanael Nerode  <neroden@gcc.gnu.org>
7304         PR bootstrap/14871
7305         * Makefile.tpl: If we don't have built-in-tree target tools,
7306         use the ones found by configure rather than hacking around with
7307         program_transform_name.
7308         * configure.in: Give Makefile.tpl the information necessary
7309         to do that.
7310         * Makefile.in: Regenerate.
7311         * configure: Regenerate.
7313 2004-04-06  Nathanael Nerode  <neroden@gcc.gnu.org>
7315         PR bootstrap/14760
7316         * configure.in: When computing baseargs, strip *all* copies of
7317         offending options.  Also, don't match/substitute the trailing space,
7318         so that this actually works when two similar options are separated by
7319         only one space.
7320         * configure: Regenerate.
7322 2004-04-06  David Edelsohn  <edelsohn@gnu.org>
7324         * configure.in (powerpc-*-aix*): Remove target-libada from noconfigdirs.
7325         (rs6000-*-aix*): Same.
7326         * configure: Regenerate.
7328 2004-03-25  Stan Shebs  <shebs@apple.com>
7330         Remove MPW support, no longer used.
7331         * mpw-README, mpw-build.in, mpw-config.in, mpw-configure,
7332         mpw-install: Remove files.
7333         * src-release (DEVO_SUPPORT): Remove names of removed files.
7334         * MAINTAINERS: Likewise.
7336 2004-03-24  Nathanael Nerode  <neroden@gcc.gnu.org>
7338         * Makefile.tpl (top level bootstrap support): Remove now-unneeded
7339         STRICT_WARN, WARN_CFLAGS flags passed down to make.
7340         * Makefile.in: Regenerate.
7342         * configure.in (top level bootstrap support): Rework --enable-werror
7343         to set @stage2_werror_flag@.
7344         * configure: Regenerate.
7345         * Makefile.tpl (top level bootstrap support): Pass
7346         @stage2_werror_flag@ down to configure in stages 2 and 3.
7347         * Makefile.in: Regenerate.
7349 2004-03-23  Nathanael Nerode  <neroden@gcc.gnu.org>
7351         * Makefile.tpl (new-bootstrap): Set CC and CC_FOR_BUILD in configure
7352         for stages 2 and 3 as well as in make.  As a consequence, remove
7353         OUTPUT_OPTION (now detected by configure) from the flags passed down
7354         to make.
7355         * Makefile.in: Regenerate.
7357         * Makefile.tpl (new-bootstrap): Fix typo.
7358         * Makefile.in: Regenerate.
7360 2004-03-22  Nathanael Nerode  <neroden@gcc.gnu.org>
7362         * Makefile.tpl: Rearrange by moving recursive_targets rules
7363         into their proper sections.
7364         * Makefile.tpl (top level bootstrap support): Move disabling
7365         of coverage flags from 'make' to 'configure'; improve comments.
7366         * Makefile.in: Regenerate.
7368         * Makefile.tpl (experimental top level bootstrap) Move stage1
7369         language setting from all- target to configure- target; disable
7370         intermodule optimization in stage 1; prevent gratuitous rebuilds
7371         of stage 1.
7372         * Makefile.in: Regenerate.
7373         * configure.in: Comma-separate stage 1 language list for top
7374         level bootstrap.
7375         * configure: Regenerate.
7377         * Makefile.tpl: Clean up experimental top level bootstrap support:
7378         note known problems; set CONFIG_SHELL; don't set BUILD_CC; relocate
7379         prev-gcc in configure- targets as well as all- targets.
7380         * Makefile.in: Regenerate.
7382 2004-03-17  Paolo Bonzini  <bonzini@gnu.org>
7384         * configure.in: Remove symbolic link section.
7385         * configure: Regenerate.
7386         * Makefile.tpl (links): Remove.
7387         * Makefile.in: Regenerate.
7389 2004-03-15  Paolo Bonzini  <bonzini@gnu.org>
7390             Nathanael Nerode  <neroden@gcc.gnu.org>
7392         * configure.in (DEFAULT_YACC, DEFAULT_M4, DEFAULT_LEX):
7393         Set with AC_CHECK_PROGS.
7394         * configure.in: Fix comment typo from last patch.
7395         * configure: Regenerate.
7397 2004-03-15  Nathanael Nerode  <neroden@gcc.gnu.org>
7399         * Makefile.tpl: Introduce experimental top level bootstrap support.
7400         * Makefile.in: Regenerate.
7401         * configure.in: Introduce support for top level bootstrap.
7402         * configure: Regenerate.
7404 2004-03-12  Eric Botcazou  <ebotcazou@gcc.gnu.org>
7405             Paolo Bonzini  <bonzini@gnu.org>
7407         PR bootstrap/14522
7408         * configure.in: Cope with shells that do not support unquoted ^
7409         * configure: Regenerate.
7411 2004-03-11  Eric Botcazou  <ebotcazou@gcc.gnu.org>
7412             Paolo Bonzini  <bonzini@gnu.org>
7414         PR bootstrap/14522
7415         * configure.in: Cope with shell that do not support nesting
7416         quotes inside quoted backquote substitutions.
7417         * configure: Regenerate.
7419 2004-03-10  Andrew Pinski  <pinskia@physics.uc.edu>
7421         PR bootstrap/14522
7422         * configure.in: Fix escaping of $.
7423         * configure: Regenerate.
7425 2004-03-11  Nathanael Nerode  <neroden@gcc.gnu.org>
7427         * configure: Regenerate.
7429 2004-03-08  Paolo Bonzini  <bonzini@gnu.org>
7431         PR ada/14131
7432         Move language detection to the top level.
7433         * configure.in: Find default values for the tools as
7434         soon as possible.  Disable ada if GNAT is not found.
7435         Emit error message about missing languages.  Expand
7436         --enable-languages=all for the gcc subdirectory.
7438 2004-03-01  Richard Sandiford  <rsandifo@redhat.com>
7440         * configure.in (mips64*-*-linux*): Override mips*-*-linux* case
7441         and disable libgcj.
7442         * configure: Regenerated.
7444 2004-02-28  Nathanael Nerode  <neroden@gcc.gnu.org>
7446         PR bootstrap/7087
7447         * Makefile.tpl: Guard XFOO sed statements better.
7448         * Makefile.tpl: Add dependency for configure-target-libada.
7449         * Makefile.in: Regenerate (incidentally fixes broken
7450         commit when libada-branch was merged).
7452 2004-02-28  Andrew Cagney  <cagney@redhat.com>
7454         * src-release (CVS_NAMES): Define.
7455         (do-tar, do-tar): Prune $(CVS_NAMES).
7457 2004-02-23  Andrew Cagney  <cagney@redhat.com>
7459         * texinfo/texinfo.tex: Update from version 2003-02-03.16 to
7460         2004-02-19.09.
7462 2004-02-19  Nathanael Nerode  <neroden@gcc.gnu.org>
7464         PR bootstrap/11932
7465         * mkinstalldirs, install-sh: Import from automake CVS HEAD.
7467 2004-02-19  Andrew Cagney  <cagney@redhat.com>
7469         * config.guess: Update from version 2003-06-12 to 2004-02-16.
7470         * config.sub: Update from version 2003-06-13 to 2004-02-16.
7472 2004-02-11  David Edelsohn  <edelsohn@gnu.org>
7474         * configure.in (powerpc-*-aix*): Add target-libada to noconfigdirs.
7475         (rs6000-*-aix*): Same.
7476         * configure: Regenerate.
7478 2004-02-11  Kelley Cook  <kcook@gcc.gnu.org>
7480         * configure.in (host): Add in missing $noconfigdirs to defines.
7481         * configure: Regenerate.
7483 2004-02-10  Arnaud Charlet  <charlet@act-europe.fr>,
7484             Nathanael Nerode  <neroden@gcc.gnu.org>
7486         PR ada/6637, PR ada/5911
7487         Merge with libada-branch:
7488         * configure.in, Makefile.tpl, Makefile.def: Add target-libada,
7489         with appropriate dependencies. Add --enable-libada configure switch.
7490         * configure, Makefile.in: Regenerate.
7492 2004-02-05  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
7494         * configure.in: Don't pass --with-stabs on IRIX 5 either.
7495         * configure: Regenerate.
7497 2004-02-02  Jeff Johnston  <jjohnstn@redhat.com>
7499         * COPYING.NEWLIB: Update Red Hat license to 2004.
7501 2004-01-23  DJ Delorie  <dj@redhat.com>
7503         * Makefile.def (target_modules) [libiberty]: Don't stage.
7504         * Makefile.in: Rebuilt.
7506 2004-01-23  Jeff Johnston  <jjohnstn@redhat.com>
7508         * COPYING.NEWLIB: Update to include copyrights for new
7509         iconv code.
7511 2004-01-15  Andrew Cagney  <cagney@redhat.com>
7513         * src-release: Update copyright year.
7514         (do-proto-toplev): Configure using i686-pc-linux-gnu.
7515         (NEWLIB_SUPPORT_DIRS): Delete macro.
7516         (newlib.tar.bz2): Delete rule.
7518 2004-01-14  Loren J. Rittle <ljrittle@acm.org>
7520         * Makefile.def (target_modules) [libtermcap, libiberty, zlib]: Stage.
7521         * Makefile.tpl (configure-target-[+module+]): Support stage.
7522         * Makefile.in: Rebuilt.
7524 2003-01-14  Maciej W. Rozycki  <macro@ds2.pg.gda.pl>
7526         * gettext.m4: Quote names of macros to be defined by AC_DEFUN
7527         throughout.
7529 2004-01-04  Nathanael Nerode  <neroden@gcc.gnu.org>
7531         * configure.in: Use ./config.cache, not config.cache.
7532         * configure: Regenerate.
7533         * Makefile.tpl: Special-casing not needed for GCC any more.
7534         * Makefile.in: Regenerate.
7536         * configure.in: Don't share a cache file for host dirs.
7537         * configure: Regenerate.
7539         * config-ml.in: Don't mess with the cache file.
7541 2004-01-03  Nathanael Nerode  <neroden@gcc.gnu.org>
7543         * Makefile.tpl: Make GCC use a separate config.cache.
7544         * Makefile.in: Regenerate.
7546         PR bootstrap/11932, PR bootstrap/11933
7547         (I don't know if it will fix either of them, but it relates
7548         to them.)
7549         * configure.in: Don't use shared config.cache for target
7550         directories.
7551         * configure: Regenerate.
7553 2003-12-31  Roger Sayle  <roger@eyesopen.com>
7555         * configure.in (ia64*-*-hpux*): Disable building java libraries.
7556         * configure: Regenerated.
7558 2003-12-21  Bernardo Innocenti  <bernie@develer.com>
7560         * configure.in (*-*-uclinux): Exclude newlib, libgloss and rda.
7561         * configure: Regenerated.
7563 2003-12-19  Nathanael Nerode  <neroden@gcc.gnu.org>
7565         Port change over from GCC:
7566         2003-11-20  Kelley Cook  <kcook@gcc.gnu.org>
7567         * Makefile.tpl (BASE_FLAGS_TO_PASS): Pass along CONFIG_SHELL.
7568         (configure-build-[+module+], configure-[+module+]): Likewise.
7569         (configure-target-[+module+], configure-gcc, config.status): Likewise.
7570         * Makefile.in: Regenerate.
7572 2003-12-08  Thomas Fitzsimmons  <fitzsim@redhat.com>
7574         * configure.in (raw_libstdcxx_flags): Remove the leading space.
7575         * configure: Regenerate.
7577 2003-11-27  Jeff Johnston  <jjohnstn@redhat.com>
7579         * COPYING.NEWLIB: Add license info for long long routines added to
7580         stdlib.
7582 2003-11-14  Arnaud Charlet  <charlet@act-europe.fr>
7584         * Makefile.tpl (EXTRA_GCC_FLAGS): Pass BOOT_ADAFLAGS.
7585         * Makefile.in: Regenerate.
7587 2003-10-20  Phil Edwards  <phil@codesourcery.com>
7589         * configure.in (*-*-vxworks):  Add target-libiberty to noconfdirs.
7590         * configure:  Regenerate.
7592 2003-10-13  Nathanael Nerode  <neroden@gcc.gnu.org>
7594         * Makefile.tpl: Make GCC_FLAGS_TO_PASS a superset of
7595         HOST_FLAGS_TO_PASS.
7596         * Makefile.in: Regenerate.
7598 2003-10-05  Mohan Embar  <gnustuff@thisiscool.com>
7600         * configure.in: Allow explicit specification of CFLAGS_FOR_BUILD.
7601         * configure: Rebuilt
7602         * Makefile.tpl: Use CFLAGS_FOR_BUILD computed by configure
7603         * Makefile.in: Rebuilt
7605 2003-10-03  H.J. Lu  <hongjiu.lu@intel.com>
7607         * ltconfig (sys_lib_search_path_spec): Fix a typo for HPUX.
7609 2003-10-01  Phil Edwards  <pme@gcc.gnu.org>
7611         * config-ml.in:  Use ac_configure_args directly instead of
7612         ml_arguments.  Only set ml_norecursion if --no[-]recursion is
7613         actually seen.
7615 2003-10-01  Eric Botcazou  <ebotcazou@libertysurf.fr>
7617         * config-ml.in: Propagate INSTALL variables.
7619 2003-09-21  Daniel Jacobowitz  <drow@mvista.com>
7621         * configure.in: Pass a computed --program-transform-name
7622         to subconfigures.
7623         * configure: Regenerated.
7625 2003-09-20  Nathanael Nerode  <neroden@gcc.gnu.org>
7627         * Makefile.tpl: Don't pass down obsolete ENQUIRE variable.
7628         * Makefile.in: Regenerate.
7630         * Makefile.tpl: Don't pass (unused) DLLTOOL or WINDRES to gcc.
7631         * Makefile.in: Regenerate.
7633 2003-09-17  Daniel Jacobowitz  <drow@mvista.com>
7635         * configure.in (TOPLEVEL_CONFIGURE_ARGUMENTS, baseargs): Fix
7636         quoting.
7637         * configure: Regenerated.
7639 2003-09-12  Michael Chastain  <mec@shout.net>
7641         Fix PR gdb/857.
7642         * src-release (do-proto-topleve): Remove junk files
7643         intl/config.cache, intl/config.status,
7644         intl/config.h, intl/stamp-h.
7646 2003-09-14  Andrew Cagney  <cagney@redhat.com>
7648         * src-release (dejagnu.tar): New target.
7649         (dejagnu.tar.bz2): Recursively call "gdb-taz" rule.
7650         (do-djunpack): Use $(PACKAGE) for the package name.
7652 2003-09-04  DJ Delorie  <dj@redhat.com>
7654         * configure: Regenerate.
7656 2003-09-04  Robert Millan  <robertmh@gnu.org>
7658         * configure.in: Match GNU/KFreeBSD with new kfreebsd*-gnu triplet.
7660 2003-09-02  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
7662         * configure.in: Ensure arguments to sed are properly spaced.
7663         * configure: Regenerate.
7665 2003-08-28  Daniel Jacobowitz  <drow@mvista.com>
7667         Merge from gcc:
7668         2003-07-20  Phil Edwards  <pme@gcc.gnu.org>
7669         * install-sh:  Update to newer upstream versions (associated with
7670         aclocal 1.7).
7671         * missing:  Likewise, plus $1Help2man -> $1 typo fix.
7673 2003-08-27  Daniel Jacobowitz  <drow@mvista.com>
7675         * configure.in: Set RAW_CXX_FOR_TARGET if unset.
7676         * configure: Regenerated.
7678 2003-08-23  Phil Edwards  <pme@gcc.gnu.org>
7680         * configure.in:  Use newline instead of semicolon when assuming
7681         shell arguments in a for loop.
7682         * configure:  Regenerated.
7684 2003-08-20  Geoffrey Keating  <geoffk@apple.com>
7686         PR 8180
7687         * configure.in: When testing with_libs and with_headers, treat
7688         'no' as unset.  Based on a patch by Dan Kegel <dank@kegel.com>.
7689         * configure: Regenerate.
7691         * configure.in (TOPLEVEL_CONFIGURE_ARGUMENTS): Quote properly for
7692         make, shell, etc.
7693         (baseargs): Likewise.
7694         * configure: Regenerate.
7696 2003-08-19  Geoffrey Keating  <geoffk@apple.com>
7698         * configure.in: Disable libgcj for darwin not on powerpc.
7699         * configure: Rebuild.
7701 2003-08-15  Michael Chastain  <mec@shout.net>
7703         * src-release (do-proto-toplev): Remove junk files
7704         dejagnu/example/calc/config.status,
7705         dejagnu/example/calc/config.log.
7707 2003-08-14  Alexandre Duret-Lutz  <adl@gnu.org>
7709         * config-ml.in, symlink-tree: Add license.
7711 2003-08-01  Nathanael Nerode  <neroden@gcc.gnu.org>
7713         Merge from gcc:
7715         2003-08-01  Matt Kraai  <kraai@alumni.cmu.edu>
7716         * Makefile.tpl (check, check-c++): Express dependencies using
7717         dependencies rather than commands.
7718         * Makefile.in: Regenerate.
7720         2003-07-31  Geoffrey Keating  <geoffk@apple.com>
7721         * Makefile.tpl (libsubdir): Use gcc instead of gcc-lib.
7722         * Makefile.in: Update.
7724 2003-08-01  Andrew Cagney  <cagney@redhat.com>
7726         * configure.in (noconfigdirs): Do not add GDB when m32r-*-*.
7727         * configure: Ditto.
7729 2003-07-30  Andreas Tobler  <a.tobler@schweiz.ch>
7731         * configure.in: Enable libgcj for darwin.
7732         * configure: Rebuild.
7734 2003-07-29  Nathanael Nerode  <neroden@gcc.gnu.org>
7736         * mkinstalldirs: Import autoconf 2.57 / automake 1.7 version.
7738 2003-07-27  Nathanael Nerode  <neroden@gcc.gnu.org>
7740         * Makefile.tpl: Use 'mkinstalldirs' rather than 'mkdir' when
7741         creating target and build subdirs to build all parent dirs as needed.
7742         * Makefile.in: Rebuild.
7743         * configure.in: Don't build dirs explicitly here.
7744         * configure: Rebuild.
7746 2003-07-22  Alexandre Oliva  <aoliva@redhat.com>
7748         * Makefile.tpl (all-make): Depend on intl.
7749         * Makefile.in: Rebuilt.
7751 2003-07-16  Nathanael Nerode  <neroden@gcc.gnu.org>
7753         * config.if: Remove unused libc_interface determination.
7755 2003-07-14  Nathanael Nerode  <neroden@gcc.gnu.org>
7757         * Makefile.in: Regenerate, correctly this time.
7759 2003-07-13  Nathanael Nerode  <neroden@gcc.gnu.org>
7761         * Makefile.tpl: Set INSTALL and friends using autoconf.  Remove
7762         unused INSTALL_PROGRAM_ARGS.
7763         * configure.in: Use AC_PROG_INSTALL.
7764         * Makefile.in: Regenerate.
7765         * configure: Regenerate.
7767 2003-07-10  Alexandre Oliva  <aoliva@redhat.com>
7769         * configure: Rebuilt.
7770         2001-09-26  Alexandre Oliva  <aoliva@redhat.com>
7771         * configure.in (noconfigdirs) [am33_2.0-*-linux*]: Don't build
7772         newlib nor libgloss.
7773         Wed May  9 10:07:19 2001  Alexandre Oliva  <aoliva@redhat.com>
7774         * configure.in (am33_2.0-*-linux*): Added.
7776 2003-07-09  Bob Wilson  <bob.wilson@acm.org>
7778         * configure.in: Add ${libgcj} to noconfigdirs for xtensa-*-* targets.
7779         * configure: Regenerate.
7781 2003-07-06  H.J. Lu <hongjiu.lu@intel.com>
7783         * config-ml.in: Replace PWD with PWD_COMMAND.
7784         * Makefile.tpl: Likewise.
7785         * Makefile.in: Regenerated.
7787 2003-06-27  Nathanael Nerode  <neroden@gcc.gnu.org>
7789         * configure.in: Clean up config-lang.in handling.  Delete
7790         useless assignment to "subdirs".
7791         * configure: Regenerate.
7793 2003-06-26  Nathanael Nerode  <neroden@gcc.gnu.org>
7795         * configure.in: Rename 'target_libs' to 'target_libraries'.
7796         Remove useless reference to 'target_libs'.
7797         * configure: Regenerate.
7799 2003-06-23  Keith Seitz  <kseitz@sources.redhat.com>
7801         * Makefile.tpl: Add maybe-configure-itcl to configure-gdb.
7802         * Makefile.in: Regenerate.
7804 2003-06-23  Nathanael Nerode  <neroden@gcc.gnu.org>
7806         * Makefile.def: Introduce flags_to_pass.
7807         * Makefile.tpl: Generate BASE_FLAGS_TO_PASS using it.
7808         * Makefile.in: Regenerate.
7810 2003-06-23  Hans-Peter Nilsson  <hp@bitrange.com>
7812         * configure.in (noconfigdirs) <cris-*-*>: Disable target-newlib
7813         and target-libgloss.
7814         <d30v-*-*, fr30-*-*, i960-*-*, m32r-*-*>: Disable gdb.
7815         <h8300*-*-*>: Disable libf2c and ${libgcj}.
7816         * configure: Regenerate.
7818 2003-06-17  Benjamin Kosnik  <bkoz@redhat.com>
7820         * configure.in: Update testsuite_flags to new location.
7821         * configure. Regenerate.
7823 2003-06-18  Nathanael Nerode  <neroden@gcc.gnu.org>
7825         * Makefile.tpl: Remove BUILD_CC stuff.
7826         * Makefile.in: Regenerate.
7828 2003-06-14  H.J. Lu <hongjiu.lu@intel.com>
7830         * config.guess: Update to 2003-06-12 version.
7831         * config.sub: Update to 2003-06-13 version.
7833 2003-06-12  Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
7835         * MAINTAINERS: Add myself as MIPS co-maintainer.
7837 2003-06-12  H.J. Lu <hongjiu.lu@intel.com>
7839         * config.guess: Update to 2003-06-06 version.
7840         * config.sub: Update to 2003-06-06 version.
7842 2003-06-11  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
7844         * configure.in: Don't pass --with-stabs for mips*-sgi-irix6*o32.
7845         * configure. Regenerate.
7847 2003-06-10  Nathanael Nerode  <neroden@gcc.gnu.org>
7849         * configure.in: Disable serial configure by default.
7850         * configure: Regenerate.
7851         * Makefile.tpl: Abolish .NOTPARALLEL.
7852         * Makefile.in: Regenerate.
7854         * Makefile.tpl: Replace {build,host,target}_canonical by
7855         {build,host,target}.
7856         * Makefile.in: Regenerate.
7858         * Makefile.tpl: Fix stupid pasto.
7859         * Makefile.in: Regenerate.
7861 2003-06-09  Nathanael Nerode  <neroden@gcc.gnu.org>
7863         * Makefile.tpl: Remove bogus conditional.
7864         * Makefile.in: Regenerate.
7866 2003-06-03  Nathanael Nerode  <neroden@gcc.gnu.org>
7868         * Makefile.tpl: Make 'recursive targets' using autogen rather
7869         than shell loop.  Remove duplicate 'clean' targets and false
7870         comments.
7871         * Makefile.def: Add systematic dependencies to 'recursive' targets.
7872         Add systematic method of specifying missing targets in subdirs.
7873         Add copyright boilerplate.
7874         * Makefile.in: Regenerate.
7875         * configure.in: Add 'recursive targets' to maybe list.
7876         * configure: Regenerate.
7878         * Makefile.tpl: Rename [+target+] to [+make_target+].
7879         * Makefile.def: Rename 'target' to 'make_target'.
7881 2003-05-30  Nick Clifton  <nickc@redhat.com>
7883         * README-maintainer-mode: Update URL for locating blessed config
7884         tools.
7886 2003-05-29  Robert Millan  <rmh@debian.org>
7888         * ltconfig: Import this patch and modify for use with current
7889         version of ltconfig:
7891         2003-05-21  Bruno Haible  <bruno@clisp.org>
7893         * libtool.m4 (AC_LIBTOOL_SYS_DYNAMIC_LINKER): Add support for
7894         GNU/FreeBSD.
7896 2003-05-28  DJ Delorie  <dj@redhat.com>
7898         * Makefile.tpl: Make maybe-check-gcc .PHONY.
7899         * Makefile.in: Regenerate.
7901 2003-05-28  Jeff Johnston  <jjohnstn@redhat.com>
7903         * COPYING.NEWLIB: Add license info for newlib/libc/sys/linux/stdlib.
7905 2003-05-21  DJ Delorie  <dj@redhat.com>
7907         * Makefile.tpl (configure-target-libiberty): Depend only on gcc, not
7908         newlib or libgloss.
7909         * Makefile.in: Regenerate.
7911 2003-05-21  DJ Delorie  <dj@redhat.com>
7913         * Makefile.tpl: Add missing empty maybe-check-gcc target.
7914         * Makefile.in: Regenerate.
7916 2003-05-20  Maciej W. Rozycki  <macro@ds2.pg.gda.pl>
7918         * configure.in: Use curly braces in the definition of tooldir.
7919         * configure: Regenerate.
7921 2003-05-19  Nathanael Nerode  <neroden@gcc.gnu.org>
7923         * configure.in: Switch more things to use maybe dependencies.
7924         * Makefile.tpl: Switch more things to use maybe dependencies.
7925         Factor out common code from autogen IF statements.
7926         * configure: Regenerate.
7927         * Makefile.in: Regenerate.
7929 2003-05-14  Kelley Cook  <kelleycook@wideopenwest.com>
7931         * configure.in: Accept i[3456789]86 for machine type.
7932         * configure: Regenerate.
7934 2003-05-18  Nathanael Nerode  <neroden@gcc.gnu.org>
7936         * configure.in: Switch more things to use maybe dependencies.
7937         Rearrange a little.  Use GCC_TOPLEV_SUBDIRS.
7938         * configure: Regenerate.
7939         * Makefile.tpl: Switch more things to use maybe dependencies.
7940         * Makefile.in: Regenerate.
7942 2003-05-16  Andreas Schwab  <schwab@suse.de>
7944         * Makefile.tpl (install-opcodes): Define.
7945         * Makefile.in: Rebuild.
7947 2003-05-13  Andreas Jaeger  <aj@suse.de>
7949         * config.guess: Update to 2003-05-09 version.
7950         * config.sub: Update to 2003-05-09 version.
7952 2003-05-13  Michael Eager <eager@mvista.com>
7954         * configure.in: Correct sed script so that options in quotes are not
7955         deleted.
7956         * configure: Rebuild.
7958 2003-05-12  Corinna Vinschen  <corinna@vinschen.de>
7960         * configure.in (FLAGS_FOR_TARGET): Remove $$s/newlib/libc/sys/cygwin
7961         and $$s/newlib/libc/sys/cygwin32 include paths.
7962         * configure: Ditto.
7964 2003-05-05  H.J. Lu <hjl@gnu.org>
7966         * config-ml.in: Restored from gcc repository.
7968 2003-05-02  Chris Demetriou  <cgd@broadcom.com>
7970         * Makefile.tpl: Require "makeinfo" from texinfo 4.2 or later.
7971         * Makefile.in: Regenerate.
7973 2003-04-27  Daniel Jacobowitz  <drow@mvista.com>
7975         * src-release (DEVO_SUPPORT): Add src-release, Makefile.tpl,
7976         and Makefile.def.
7978 2003-04-27  Daniel Jacobowitz  <drow@mvista.com>
7980         * Makefile.tpl: Clean $(BUILD_SUBDIR).
7981         * Makefile.in: Regenerated.
7983 2003-04-18  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
7985         * Makefile.tpl (MAKEINFOFLAGS): Default to --split-size=5000000.
7986         * Makefile.in: Regenerate.
7988 2003-04-18  Jakub Jelinek  <jakub@redhat.com>
7990         * configure.in (powerpc64*-*-linux*): Remove.
7991         * configure: Rebuilt.
7993 2003-04-17  Phil Edwards  <pme@gcc.gnu.org>
7995         * Makefile.tpl (GCC_STRAP_TARGETS):  New variable containing all the
7996         previous bootstrap targets, plus bubblestrap, quickstrap, cleanstrap,
7997         and restrap.
7998         * Makefile.in:  Regenerate.
8000 2003-04-16  Richard Earnshaw  <rearnsha@arm.com>
8002         * configure.in (arm-*-netbsdelf*): Enable building java libraries.
8003         * configure: Regenerated.
8005 2003-04-11  Alexandre Oliva  <aoliva@redhat.com>
8007         * libtool.m4 (lt_cv_deplibs_check_method): Use pass_all on mips*.
8008         * */configure: Rebuilt.
8010 2003-03-14  Nathanael Nerode  <neroden@gcc.gnu.org>
8012         * Makefile.tpl: Move .NOEXPORT, MAKEOVERRIDES back down.
8013         * Makefile.in: Regenerate.
8015 2003-03-14  Michael Chastain  <mec@shout.net>
8017         * Makefile.in: Regenerate with correct Makefile.def.
8019 2003-03-12  Nathanael Nerode  <neroden@gcc.gnu.org>
8021         * Makefile.tpl: Move .NOEXPORT, MAKEOVERRIDES up.  Delete unused
8022         Make macro.
8023         * Makefile.in: Regenerate.
8024         * configure.in: Clean up gxx_include_dir logic.
8025         * configure: Regenerate.
8027 2003-03-09  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>
8029         * configure.in (gxx_include_dir): Fix typo.
8030         * configure: Regenerated.
8032 2003-03-06  Andrew Cagney  <cagney@redhat.com>
8034         * texinfo/texinfo.tex: Import version 2003-02-03.16.
8036 2003-03-04  Daniel Jacobowitz  <drow@mvista.com>
8038         * configure.in: Include $(build_tooldir)/sys-include in
8039         FLAGS_FOR_TARGET.
8040         * configure: Regenerated.
8042 2003-03-04  Nathanael Nerode  <neroden@gcc.gnu.org>
8044         * Makefile.tpl: Reindent.
8045         * Makefile.in: Regenerate.
8046         * configure.in: Reindent.  Don't set unused variables.
8047         * configure: Regenerate.
8049         * Makefile.tpl: Always pass down RANLIB.
8050         * Makefile.in: Regenerate.
8052         * Makefile.tpl: Don't set unused enable_shared, enable_threads macros.
8053         * Makefile.in: Regenerate.
8054         * configure.in: Remove unused logic relating to --enable-shared
8055         and --enable-threads.  Remove bogus comments.  Remove redundant
8056         noconfigdirs.
8057         * configure: Regenerate.
8059         * configure.in: Replace ${libstdcxx_version} by its value.
8060         Remove reference to mh-dgux.
8061         * configure: Regenerate.
8063 2003-02-28  Nathanael Nerode  <neroden@gcc.gnu.org>
8065         * Makefile.tpl: Rearrange.
8066         * Makefile.in: Regenerate.
8068 2003-02-25  Nick Clifton  <nickc@redhat.com>
8070         * configure: Remove site-file supprot - it is obsolete.
8072 2003-02-24  Uwe Stieber <uwe@wwws.de>
8074         * configure.in: Add support for kaOS as cross build target system.
8075         * configure: Regenerated.
8077 2003-02-20  Sean McNeil  <sean@blue.mcneil.com>
8079         * Makefile.tpl: Add definition of CPPFLAGS to pass into
8080         configure-target-* as some target builds may require additional
8081         flags for preprocessor tests.
8082         * Makefile.in: Regenerated.
8084 2003-02-19  Alexandre Oliva  <aoliva@redhat.com>
8086         * libtool.m4 (LD): Append -melf* option to LD on IRIX with GNU ld.
8087         * ltconfig: Handle it.
8088         * ltcf-cxx.sh: Use with_gnu_ld passed as a shell variable instead of
8089         auto-detecting it.
8091 2003-02-19  Alexandre Oliva  <aoliva@redhat.com>
8093         * ltcf-cxx.sh: Replace $linker_flags with $compiler_flags wherever
8094         it is used as argument to $CC.
8095         * ltcf-gcj.sh: Likewise.
8097 2003-02-19  Alexandre Oliva  <aoliva@redhat.com>
8099         * configure.in: Introduce --enable-maintainer-mode.
8100         * configure: Rebuilt.
8101         * Makefile.tpl (Makefile.in, configure): Enable dependencies only
8102         for maintainer mode.
8103         * Makefile.in: Rebuilt.
8105 2003-02-19  Andrew Cagney <ac131313@redhat.com>
8107         * configure: Regenerate using autoconf 2.13.
8109 2003-02-19  Alan Modra  <amodra@bigpond.net.au>
8111         * config.guess: Import latest version.
8112         * config.sub: Import latest version.
8114 2003-02-18  Jason Merrill  <jason@redhat.com>
8116         * Makefile.tpl (check-c++): Allow parallelism.
8118 2003-02-17  Andrew Cagney  <ac131313@redhat.com>
8120         * configure: Regenerate using autoconf 000227.
8122 2003-02-15  Geoffrey Keating  <geoffk@apple.com>
8124         * configure.in (*-*-darwin*): Rename from powerpc*-*-darwin*,
8125         don't configure target-libobjc.
8126         * configure: Regenerate.
8128 2003-02-14  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
8130         * Makefile.tpl (RANLIB): Define.
8131         * Makefile.in: Regenerate.
8133 2003-02-06  Keith R Seitz  <keiths@redhat.com>
8135         * Makefile.def: Remove "snavigator", "grep", and "db" modules.
8136         * Makefile.tpl: Remove "all-snavigator" and "all-grep".
8137         * Makefile.in: Regenerated.
8138         * configure.in: Remove all traces of snavigator, db, and grep.
8139         * configure: Regenerated.
8141 2003-01-31  Frank Ch. Eigler  <fche@redhat.com>
8143         * Makefile.tpl (all-sid): Add libiberty/bfd/opcodes dependencies.
8144         * Makefile.in: Regenerated.
8146 2003-01-30  Alexandre Oliva  <aoliva@redhat.com>
8148         * config.if: Copy from GCC.
8150 2003-01-27  Phil Edwards  <pme@gcc.gnu.org>
8152         * configure.in:  Revert 24Jan change.
8153         * configure:  Regenerate.
8155 2003-01-23  Nathanael Nerode  <neroden@gcc.gnu.org>
8157         * configure.in: Revert previous change.
8158         * configure: Regenerate.
8160 2003-01-23  Nathanael Nerode  <neroden@gcc.gnu.org>
8162         * configure.in: Make rda native-only.
8163         * configure: Regenerate.
8165 2003-01-19  Nathanael Nerode  <neroden@gcc.gnu.org>
8167         * configure.in: Add missing \.
8168         * configure: Rebuilt.
8170 2003-01-17  Jakub Jelinek  <jakub@redhat.com>
8172         * configure.in (baseargs): Avoid using \| in sed regular
8173         expressions.
8174         * configure: Rebuilt.
8176 2003-01-16  Jakub Jelinek  <jakub@redhat.com>
8178         * configure.in (baseargs): Remove all supported forms of
8179         --cache-file, --srcdir, --host, --build and --target options
8180         from argument lists.
8181         * configure: Rebuilt.
8183 2003-01-15  Alexandre Oliva  <aoliva@redhat.com>
8185         * configure.in (noconfigdirs): Don't skip gas on IRIX 6.
8186         * configure: Rebuilt.
8188 2003-01-09  Nathanael Nerode  <neroden@gcc.gnu.org>
8190         * configure.in: Substitute TOPLEVEL_CONFIGURE_ARGUMENTS.
8191         * Makefile.tpl: Pass TOPLEVEL_CONFIGURE_ARGUMENTS to gcc.
8192         * Makefile.in: Regenerate.
8193         * configure: Regenerate.
8195 2003-01-09  Christian Cornelssen  <ccorn@cs.tu-berlin.de>
8197         * Makefile.tpl (BASE_FLAGS_TO_PASS): Also pass DESTDIR.
8198         (install-info, dir.info): Prepend $(DESTDIR) to $(infodir).
8199         * Makefile.in: Regenerate.
8201 2003-01-09  Alexandre Oliva  <aoliva@redhat.com>
8203         * configure.in: Remove Makefile in build, host and target modules
8204         unless configure was run with --no-recursion.
8205         * configure: Rebuilt.
8207 2003-01-08  Chris Demetriou  <cgd@broadcom.com>
8209         * config.guess: Update to 2003-01-03 version.
8210         * config.sub: Update to 2003-01-03 version.
8212 2003-01-07  Christopher Faylor  <cgf@redhat.com>
8214         * configure: Regenerate with proper autoconf 2.13.
8216 2003-01-07  Christopher Faylor  <cgf@redhat.com>
8218         * configure.in: Add AC_PREREQ for consistency.
8219         * configure: Regenerate.
8221 2003-01-06  Andrew Cagney  <ac131313@redhat.com>
8223         * configure.in (GDB_TK): Add tcl directories conditional on
8224         gdb/gdbtk directory being present.
8225         * configure: Regenerate.
8227 2003-01-04 John David Anglin  <dave.anglin@nrc.ca>
8229         * configure.in (LD): Improve test for gcc.  Try to set LD to the ld used
8230         by gcc if LD is not defined and we are not doing a Canadian Cross.
8231         * configure: Rebuilt.
8233 2003-01-01  Daniel Jacobowitz  <drow@mvista.com>
8235         * src-release (ETC_SUPPORT): Add fdl.texi and texi2pod.pl.
8237 2002-12-31  Tom Tromey  <tromey@redhat.com>
8239         * Makefile.in: Rebuilt.
8240         * Makefile.def (target_modules) [libffi]: Allow installation.
8242 2002-12-31  Andreas Schwab  <schwab@suse.de>
8244         * configure.in: Fix use of $program_transform_name.
8245         * configure: Regenerated.
8247 2002-12-30  Daniel Jacobowitz  <drow@mvista.com>
8249         * configure.in (baseargs): Don't remove first configure argument.
8250         * configure: Regenerated.
8252 2002-12-29  Alexandre Oliva  <aoliva@redhat.com>
8254         * Makefile.tpl (local-distclean): Don't remove...
8255         (multilib.ts): ... this.  Moved into...
8256         (multilib.out): ... this.  Don't use sub-make.
8257         ($(BUILD_SUBDIR)/[+module+]/Makefile, [+module+]/Makefile,
8258         $(TARGET_SUBDIR)/[+module+]/Makefile, gcc/Makefile): Moved into...
8259         (configure-build-[+module+], configure-[+module+],
8260         configure-target-[+module+], configure-gcc): ... these.  Test
8261         for Makefile existence.  Drop config.status from dependencies.
8262         * Makefile.in: Rebuilt.
8263         * configure.in: Move gcc-version-trigger to the end of
8264         ac_configure_args.  Add comments to maybedep.tmp and
8265         serdep.tmp.  Introduce --disable-serial-configure.  Remove
8266         nonopt from baseargs, matching and removing corresponding
8267         whitespace while at it.
8268         * configure: Rebuilt.
8270 2002-12-28  Alexandre Oliva  <aoliva@redhat.com>
8272         * configure.in (host_configargs): Replace reference to
8273         no-longer-defined buildopts with --build=${build_alias}.
8274         * configure: Rebuilt.
8276 2002-12-28  Alexandre Oliva  <aoliva@redhat.com>
8278         * Makefile.tpl ($(NOTPARALLEL)): Move to the end.  Bring uses of
8279         program_transform_name to standard idiom.
8280         (AUTOGEN, AUTOCONF): Define.
8281         (Makefile.in): Use $(AUTOGEN).
8282         (Makefile): Depend on config.status, and use autoconf-style rule to
8283         build it.  Move original commands to...
8284         (config.status): ... this new target.
8285         (configure): Add $(srcdir).  Depend on config/acx.m4.  Use
8286         $(AUTOCONF).
8287         * Makefile.in: Rebuilt.
8289 2002-12-28  Nathanael Nerode  <neroden@gcc.gnu.org>
8291         * Makefile.tpl: Fix dramatic bustage due to change in
8292         program_transform_name.
8293         * Makefile.in: Regenerate.
8295         * configure.in: Remove unnecessary PATH setting.
8296         * configure: Regnerate.
8298         * configure.in: Don't default to unprefixed tools unless
8299         the native tools will work.
8300         * configure: Regenerate.
8302         * configure.in: Convert to autoconf script.  Blow away lots
8303         of now-redundant Makefile fragments.
8304         * configure: Generate using Autoconf.
8305         * Makefile.tpl: Rewrite to reflect autoconfiscation.
8306         * Makefile.in: Regenerate.
8308 2002-12-27  Nathanael Nerode  <neroden@gcc.gnu.org>
8310         * configure: Remove unneeded 'export's.  Make CC_FOR_TARGET,
8311         CXX_FOR_TARGET, GCJ_FOR_TARGET substituted in configure.in only.
8313         * ChangeLog: Move a couple of entries from here to winsup/cygwin,
8314         where they belong.
8316 2002-12-24  Andreas Schwab  <schwab@suse.de>
8318         * Makefile.tpl (multilib.out): Fix missing space.
8319         * Makefile.in: Regenerate.
8321 2002-12-23  Nathanael Nerode  <neroden@gcc.gnu.org>
8323         * Makefile.tpl: Use shared multilib.out.  Use move-if-change for it.
8324         Convert (cd foo; make) to (cd foo && make).  Clean up multilib.out.
8325         * Makefile.in: Regenerate.
8326         * configure.in: Remove unnecessary leftovers.
8328 2002-12-21  Geoffrey Keating  <geoffk@apple.com>
8330         * configure.in (extra_ranlibflags_for_target): New variable.
8331         (*-*-darwin): Add -c to ranlib commands.
8332         * configure (tooldir): Handle extra_ranlibflags_for_target.
8334 2002-12-20  Jeff Johnston  <jjohnstn@redhat.com>
8336         * COPYING.NEWLIB: Updated.
8337         * COPYING.LIBGLOSS: Ditto.
8339 2002-12-19  Nathanael Nerode  <neroden@gcc.gnu.org>
8341         * Makefile.tpl: Revert HJL's change.
8342         * Makefile.in: Regenerated.
8343         * configure.in: Put build_prefix before $(BUILD_SUBDIR) here, and
8344         always.
8346 2002-12-19  Andreas Schwab  <schwab@suse.de>
8348         * Makefile.tpl, configure.in: Substitute libstdcxx_incdir.
8349         * Makefile.in: Regenerate.
8351 2002-12-18  H.J. Lu <hjl@gnu.org>
8353         * Makefile.tpl: Add @build_prefix@ before $(BUILD_SUBDIR).
8354         * Makefile.in: Regenerated.
8356         * configure.in (build_prefix): New. Substitute.
8358 2002-12-18  Nathanael Nerode  <neroden@gcc.gnu.org>
8360         * Makefile.tpl: Don't let real targets depend on phony targets.
8361         * Makefile.in: Regenerate.
8363         * Makefile.tpl (do-info): Depend on maybe-all-texinfo, not all-texinfo.
8364         * Makefile.in: Regenerate.
8366 2002-12-16  Jason Merrill  <jason@redhat.com>
8368         * Makefile.tpl (all-gcc): Use 'make quickstrap' if there was a
8369         previous 'make bootstrap'.
8370         * Makefile.in: Regenerate.
8372 2002-12-17  Hans-Peter Nilsson  <hp@bitrange.com>
8374         * configure.in (noconfigdirs) [mmix-*-*]: Disable libgloss and gdb.
8376 2002-12-13  Jason Merrill  <jason@redhat.com>
8378         * Makefile.tpl (check-gcc-c++): Renamed from check-c++.  Don't run
8379         library tests.
8380         (check-c++): Just depend on it and check-target-libstdc++-v3.
8381         * Makefile.in: Regenerate.
8383 2002-12-13  Nathanael Nerode  <neroden@gcc.gnu.org>
8385         * configure.in, Makefile.tpl, Makefile.def: Remove tclX.
8386         * Makefile.in: Regenerate.
8388 2002-12-12  Jeff Johnston  <jjohnstn@redhat.com>
8390         * COPYING.NEWLIB: Update list of alternate Regent of California
8391         licenses and discuss official revoking of advertising clause.
8392         * COPYING.LIBGLOSS: Ditto.
8394 2002-12-12  Alexandre Oliva  <aoliva@redhat.com>
8396         * Makefile.tpl (configure-target-rda): Depend on $(ALL_GCC_C).
8397         * Makefile.in: Rebuilt.
8399 2002-12-10  Nathanael Nerode  <neroden@gcc.gnu.org>
8401         * configure: Fix bug put in by gremlins.
8403         * Makefile.tpl: Substitute more autoconfily.
8404         * configure: Substitute more autoconfily.
8405         * Makefile.in: Regenerate.
8407 2002-12-08  Andrew Cagney  <ac131313@redhat.com>
8409         * Makefile.tpl (all-sim): Depend on maybe-configure-gdb.
8410         * Makefile.in (all-sim): Ditto.
8412 2002-12-06  DJ Delorie  <dj@redhat.com>
8414         * Makefile.tpl: Change configure dependencies to not have real
8415         targets depend on phony targets.
8417 2002-12-05  Nathanael Nerode  <neroden@gcc.gnu.org>
8419         * configure.in: Revert unintentional change.
8421         * src-release: Configure host subdirs.
8423         * Makefile.tpl: Change dependency for */multilib.out so that
8424         it works when gcc isn't in the tree.
8426         * configure.in: Substitute more.
8427         * configure: Run subconfigures from the Makefile.
8428         * Makefile.tpl: Run subconfigures from the Makefile; add a few
8429         convenience targets.  Make sure gcc isn't rebuilt after bootstrap.
8431 2002-12-03  Nathanael Nerode  <neroden@gcc.gnu.org>
8433         * Makefile.tpl: Add targets for configuring host subdirs in Makefile,
8434         and corresponding dependencies.
8435         * Makefile.in: Regenerate.
8437         * configure.in (host_tools): Order binutils, gas and ld for
8438         convenience in running the testsuites.
8440         * Makefile.tpl: Introduce rules to serialize subconfigure runs.
8441         * Makefile.in: Regenerate.
8442         * configure.in: Introduce rules to serialize subconfigure runs.
8444         * configure.in: Introduce BASE_CC_FOR_TARGET.
8445         * Makefile.tpl: Reorganize and comment.  Introduce HOST_CONFIGARGS.
8446         Realize configure-build-* targets.  Realize configure-target-* targets.
8447         * Makefile.in: Regenerate.
8449 2002-12-02  Nathanael Nerode  <neroden@gcc.gnu.org>
8451         * configure: Move gcc_version_trigger stuff from here...
8452         * configure.in: ...to here.
8454         * configure.in: Separate subconfigure options added by this file from
8455         options given by the user.  Add machinery to put args for host
8456         subconfigures into the Makefile.
8458         * Makefile.tpl: Remove 'vault' targets.
8459         * Makefile.tpl: Reorder and comment dependencies.
8460         * Makefile.in: Regenerate.
8462 2002-11-28  Geoffrey Keating  <geoffk@apple.com>
8464         * configure.in: Move host-specific darwin noconfigdirs into
8465         the host-specific section.
8467 2002-12-02  Nathanael Nerode  <neroden@gcc.gnu.org>
8469         * Makefile.tpl: Restore bkorb's style patch, accidentally lost
8470         during replay.
8471         * Makefile.in: Regenerate.
8473         (finishing slow-motion replay)
8474         * configure: Remove skip-this-dir support.
8475         * Makefile.tpl: Remove skip-this-dir support.
8477         * Makefile.tpl: Remove leftover support for non-autoconfiscated
8478         subdirectories.
8479         * Makefile.in: Regenerate.
8481         * Makefile.tpl: Strip out useless setting of 'dir'.
8482         * Makefile.in: Regenerate.
8484 2002-12-02  Nathanael Nerode  <neroden@gcc.gnu.org>
8486         (finishing slow-motion replay)
8487         * configure.in: Fix deeply stupid bug.
8489         * configure.in: Introduce RAW_CXX_FOR_TARGET and simplify embedded
8490         shell code in CXX_FOR_TARGET
8491         * Makefile.def: Introduce raw_cxx.
8492         * Makefile.tpl: Use raw_cxx to select between CXX_FOR_TARGET and
8493         RAW_CXX_FOR_TARGET.
8494         * Makefile.in: Regenerate.
8496 2002-12-02  Nathanael Nerode  <neroden@gcc.gnu.org>
8498         (finishing slow-motion replay)
8499         * Makefile.tpl: Remove unnecessary ifs.
8500         * Makefile.in: Regenerate.
8502         * Makefile.tpl: Implement soft dependency machinery.  Maybe-ize
8503         dependencies.  Maybe-ize build-libiberty.  Create dummy install
8504         targets for 'no_install' modules.
8505         * configure: Move GDB_TK substitution to configure.in.  Move
8506         build_modules stuff to configure.in.
8507         * configure.in: Implement soft dependency machinery.  Maybe-ize
8508         GDB_TK, rearrange slightly.  Move build_modules stuff from configure.
8509         * Makefile.in: Regenerate.
8511 2002-12-01  Nathanael Nerode  <neroden@gcc.gnu.org>
8513         (continuing slow-motion replay)
8514         * Makefile.tpl: Make all-target, install-target behave similarly
8515         to all, install (only hitting configured targets).  Eliminate
8516         unused macro defintions.
8518         * Makefile.tpl: Add all-gcc: all-build-libiberty dependency when
8519         build != host.
8521         * Makefile.tpl: Add all-gcc: all-libiberty dependency.
8523         * ltcf-c.sh, ltcf-gcj.sh, Makefile.tpl: Correct BUILD/HOST confusion.
8525         * configure.in: Produce lists of subdir targets we're actually
8526         configuring.  Remove references to "dosrel".
8527         * Makefile.tpl: Let configure set which subdir targets are hit.
8528         Remove install-cross; clean up install; remove ALL.  Remove
8529         references to "dosrel".  Remove "EXTRA_TARGET_HOST" hackery.
8530         Autogenerate host module targets.  Remove empty dependency lines
8531         and redundant dependency; rearrange slightly.
8532         * Makefile.def: Add host-side libtermcap, utils.
8534         * Makefile.in: Regenerate.
8536 2002-12-01  Nathanael Nerode  <neroden@gcc.gnu.org>
8538         (Continuing slow-motion replay)
8539         * Makefile.def: Add list of recursive targets to autogenerate.
8540         Add build_modules.
8541         * Makefile.tpl: Autogenerate do-* targets.  Autogenerate *-target-*
8542         targets.  Autogenerate *-build-* targets.
8543         * Makefile.in: Regenerate.
8545 2002-11-30  Nathanael Nerode  <neroden@gcc.gnu.org>
8547         (Continuing slow-motion replay)
8548         * configure: More autoconf-style substitutions.
8549         * Makefile.tpl: More autoconf-style substitutions.
8550         * Makefile.in: Regenerate.
8552 2002-11-30  Nathanael Nerode  <neroden@gcc.gnu.org>
8554         (Continuing slow-motion replay)
8555         * configure: Substitute more variables in a more autoconf-friendly
8556         way.  Simplify slightly.
8557         * Makefile.tpl: Make more variables substitutable in an
8558         autoconf-friendly way.
8559         * Makefile.in: Regenerate.
8561 2002-11-29  Nathanael Nerode  <neroden@gcc.gnu.org>
8563         (Continuing slow-motion replay)
8564         * configure.in (v810*): Remove special setting of tools.
8566         * configure: Add support for extra required flags for ar or nm.
8567         * configure.in (aix4.3+): Use above support for target-specific
8568         issues, rather than using config/mt-aix43.
8570 2002-11-29  Nathanael Nerode  <neroden@gcc.gnu.org>
8572         (Starting slow-motion replay merge from gcc 3.4 b-i-b branch)
8573         * configure: Remove 'removing', which doesn't work.  Replace $subdir
8574         with . everywhere.  Replace $subdirs with ''.  Replace $makesrcdir
8575         with $srcdir.  Reformat indentation.  Substitute some variables
8576         formerly hard-coded in the Makefile for build=host.
8577         * Makefile.tpl: Autogenerate more; make more autoconf-friendly.
8578         * Makefile.def: Autogenerate more.
8579         * Makefile.in: Regenerate.
8581 2002-11-13  Bruce Korb  <bkorb@gnu.org>
8583         * Makefile.tpl: syntactic cleanup
8585 2002-11-04  Kevin Buettner  <kevinb@redhat.com>
8587         * Makefile.def (host_modules): Add rda.
8588         * Makefile.in: Regenerate.
8589         * configure.in (target_tool): Add target-rda to list.
8591 2002-10-25  Phil Edwards  <pme@gcc.gnu.org>
8593         * Makefile.tpl (bootstrap):  Add bubblestrap, quickstrap, cleanstrap,
8594         and restrap targets to this rule.
8595         * Makefile.in:  Regenerate.
8597 2002-10-24  Hans-Peter Nilsson  <hp@bitrange.com>
8599         * configure.in (i[3456]86-*-linux*): Add check to disable
8600         ${libgcj} for glibc1.
8602 2002-10-07  Svein E. Seldal  <Svein.Seldal@solidas.com>
8604         * configure.in: Add tic4x target.
8606 2002-10-03  Nathanael Nerode  <neroden@gcc.gnu.org>
8608         * Makefile.tpl: Make SET_LIB_PATH substitution more autoconfy.
8609         * Makefile.tpl: Make RPATH_ENVVAR substitution more autoconfy.
8610         * configure.in: Make SET_LIB_PATH substitution more autoconfy.
8611         * configure.in: Make RPATH_ENVVAR substitution more autoconfy.
8612         * Makefile.in: Regenerate.
8614 2002-10-02  Nathanael Nerode  <neroden@gcc.gnu.org>
8616         * Makefile.tpl: Eliminate reference to all-gui, all-libproc.
8617         * Makefile.in: Regenerate.
8619         * Makefile.def: Remove order dependency comments.
8620         * Makefile.tpl: Add explicit install-install dependencies.
8621         * Makefile.in: Regenerate.
8623         * Makefile.tpl: Remove material now in src-release.  (Finally!)
8624         * Makefile.in: Regenerate.
8626         * configure: Restore my original patch by syncing with gcc version.
8628         * Bring following over from gcc:
8630 2002-09-30  Ulrich Weigand  <uweigand@de.ibm.com>
8632         * configure.in (s390*-*-linux*): Enable libgcj.
8634 2002-10-02  Nathanael Nerode  <neroden@gcc.gnu.org>
8636         * Makefile.in: Regenerate.  This really ought to fix things. :sigh:
8638 2002-10-02  Alan Modra  <amodra@bigpond.net.au>
8640         * configure: Move stray lines back to where they belong.
8642 2002-10-01  Nathanael Nerode  <neroden@gcc.gnu.org>
8644         * Makefile.tpl: Insert configure-target target, for src-release.
8646         * configure: Finish reverting change which Andrew Cagney started
8647         reverting.  Should fix bustage.
8649         * src-release (BINUTILS_SUPPORT_DIRS): Add cpu directory.
8650         * src-release: New file.  Contains material for making net
8651         releases for gdb, binutils, et al., formerly in Makefile.in.
8653 2002-09-30  Nick Clifton  <nickc@redhat.com>
8655         * cpu: New top level directory.  Intended to hold input files for
8656         CGEN which have FSF copyright assignment.
8657         * Makefile.in (BINUTILS_SUPPORT_DIRS): Add cpu directory.
8659 2002-09-29  Andrew Cagney  <ac131313@redhat.com>
8661         Revert below (note that src does not contain Makefile.tpl):
8662         * Makefile.tpl: Make subsituted variables more autoconfy.
8663         * Makefile.in: Regenerate.
8665 2002-09-29  Nathanael Nerode  <neroden@gcc.gnu.org>
8667         * configure: Revert accidentally applied changes.
8669         * Makefile.tpl: Make more autoconf-friendly.
8670         * Makefile.in: Regenerate.
8671         * configure: Make substitution more autoconf-like.
8673 2002-09-28  Richard Earnshaw  <rearnsha@arm.com>
8675         * configure.in (arm-*-coff, strongarm-*-coff, xscale-*-coff): Use a
8676         single entry to handle all these.
8677         (arm-*-elf, strongarm-*-elf, xscale-*-elf): Likewise.  Also enable
8678         libjava on arm-*-elf.
8680 2002-09-27  Geoffrey Keating  <geoffk@apple.com>
8682         * configure.in (powerpc-*-darwin*): Don't configure BFD, TK, or the
8683         things that depend on them.
8685 2002-09-25  Nathanael Nerode  <neroden@gcc.gnu.org>
8687         * Makefile.tpl: Make subsituted variables more autoconfy.
8688         * Makefile.in: Regenerate.
8689         * configure: Make seds more autoconfy.
8691 2002-09-25  Nathanael Nerode  <neroden@gcc.gnu.org>
8693         * Makefile.tpl: Rewrite substituted lines to look autoconfy.
8694         * Makefile.in: Regenerate.
8695         * configure.in: Rewrite sed statements to look autoconfy.
8697         * Makefile.tpl: Autogenerate *-target-* lists, dependencies of
8698         all-target-foo on configure-target-foo.
8699         * Makefile.def: Ditto.
8700         * Makefile.in: Rebuild.
8702 2002-09-22  Nathanael Nerode  <neroden@gcc.gnu.org>
8704         * Makefile.def: New file.
8705         * Makefile.tpl: New file.
8706         * Makefile.in: Generate from Makefile.tpl with 'autogen Makefile.def'.
8708         * configure.in: Minor rearrangement.  Simplify tests.
8710 2002-09-23  Jason Thorpe  <thorpej@wasabisystems.com>
8712         * configure.in (with_headers): Skip copy if value is "yes".
8713         (with_libs): Likewise.
8715 2002-09-20  Nathanael Nerode  <neroden@gcc.gnu.org>
8717         * configure.in (*-*-netbsd*): Use noconfigdirs, not skipdirs.
8718         * configure.in (sh*-*-pe*): Ditto.
8719         * configure.in (mips*-*-pe*): Ditto.
8720         * configure.in (*arm-wince-pe): Ditto.
8722         * configure.in: Rearrange.
8724 2002-09-12  Nick Clifton  <nickc@redhat.com>
8726         * Import these changes from the config master repository:
8728         2002-09-05  Svein E. Seldal  <Svein.Seldal@solidas.com>
8730                 * config.sub: Add tic4x target.
8732         2002-09-03  Ben Elliston  <bje@redhat.com>
8734                 * config.guess: Detect NSR-D machines for nsr-tandem-nsk.
8735                 Reported by <Duncan_Stodart@insession.com>.
8737 2002-09-10  Jeff Johnston  <jjohnstn@redhat.com>
8739         * COPYING.NEWLIB: More updates.
8741 2002-09-09  Jeff Johnston  <jjohnstn@redhat.com>
8743         * COPYING.NEWLIB: Update.
8745 2002-08-23  Andrew Cagney  <ac131313@redhat.com>
8747         * texinfo/texinfo.tex: Import version 2002-06-04.06.
8749         * config.guess: Import version 2002-08-23.
8750         * config.sub: Import version 2002-08-22.
8752 2002-08-20  Alexandre Oliva  <aoliva@redhat.com>
8754         * Makefile.in (GCC_FOR_TARGET): Prepend STAGE_CC_WRAPPER.
8755         * configure.in (CC_FOR_TARGET, GCJ_FOR_TARGET, CXX_FOR_TARGET,
8756         CXX_FOR_TARGET_FOR_RECURSIVE_MAKE): Likewise.
8758 2002-08-06  Federico G. Schwindt <fgsch@olimpo.com.br>
8760         * configure.in (hppa*-*-openbsd*): Treat like hppa*-*-*elf*.
8762 2002-08-04  H.J. Lu  (hjl@gnu.org)
8764         * configure.in (mips*-*-linux*): Don't skip target-libffi.
8766 2002-07-31  Alan Modra  <amodra@bigpond.net.au>
8768         * configure.in: Move generic linux case to end.  Copy generic
8769         linux noconfigdirs to mips*-*-linux* entry and new
8770         powerpc64*-*-linux* entry.  Add target-libffi for the latter.
8772 2002-07-19  Chris Demetriou  <cgd@broadcom.com>
8774         * MAINTAINERS: Clarify on config.guess and config.sub, and add
8775         one instance of them which was missed to the list to update.
8777 2002-07-16  Chris Demetriou  <cgd@broadcom.com>
8779         * config.guess: Update to 2002-07-09 version.
8780         * config.sub: Update to 2002-07-03 version.
8782 2002-07-11  Nathanael Nerode  <neroden@gcc.gnu.org>
8784         * configure.in: Remove two redundant tests.
8786 2002-07-11  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
8788         * configure.in (mips*-*-irix6*o32): Enable stabs.
8790 2002-07-08  Nathanael Nerode  <neroden@gcc.gnu.org>
8792         * configure.in: Don't build grez.
8793         * Makefile.in: Ditto.
8795         * Makefile.in: Remove references to bsp, cygmon, libstub.
8796         * configure.in: Ditto.
8798         * configure.in: Remove leftover reference to gdbtest.
8800 2002-07-08  Phil Edwards  <pme@gcc.gnu.org>
8802         * configure.in (gxx_include_dir):  Change to match versioned
8803         C++ headers if --enable-version-specific-runtime-libs is used.
8805 2002-07-04  Steve Ellcey  <sje@cup.hp.com>
8807         * ltcf-cxx.sh (hpux*): Modify to support ia64-*-hpux*.
8809 2002-07-03  Nathanael Nerode  <neroden@gcc.gnu.org>
8811         * configure.in: Make --without-x work.
8813 2002-07-03  Nick Clifton  <nickc@cambridge.redhat.com>
8815         * contrib: New directory.  Created to contain a copy of the
8816         texi2pod.pl script so that it is in the same place as the version in
8817         the FSF GCC sources.
8819 2002-07-02  Nathanael Nerode  <neroden@gcc.gnu.org>
8821         * configure.in: Rearrange target Makefile fragment collection.
8823         * Makefile.in: Don't try to build gdbtest, tgas, ispell, inet, or
8824         cvs[src].
8825         * configure.in: Ditto.
8827 2002-07-01  Nathanael Nerode <neroden@gcc.gnu.org>
8829         * Makefile.in: Eliminate 'apache' targets.
8830         * configure.in: Eliminate 'apache' targets.
8832         * configure.in: Eliminate redundant tests.  Reorganize.
8834         * Makefile.in: Eliminate last reference to LIBGCC1_TEST.
8836         * config-ml.in: Eliminate references to Cygnus configure.
8838         * Makefile.in: Eliminate references to building emacs.
8840 2002-07-01  Denis Chertykov  <denisc@overta.ru>
8842         * configure.in: Add support for ip2k.
8844 2002-06-24  Ben Elliston  <bje@redhat.com>
8846         * configure.in (host_tools): Remove cgen.
8848         * Makefile.in (all-cgen): Remove; runs from its source directory.
8849         (check-cgen, install-cgen, clean-cgen): Likewise.
8850         (all-opcodes): No not depend on all-cgen.
8851         (all-sim): Likewise.
8853 2002-06-22  Nathanael Nerode  <neroden@twcny.rr.com>
8855         * configure.in: Fix AIX configury bug.
8857 2002-06-19  Nathanael Nerode  <neroden@twcny.rr.com>
8859         * configure.in: Replace ${topsrcdir} with ${srcdir}.
8861         * configure.in: Move definition of libstdcxx_flags right above
8862         usage, rather than way earlier.
8864         * configure.in: Pull definition of is_cross_compiler earlier.
8866         * configure.in: Rearrange a little.
8868         * configure.in: Remove references to librx.
8869         * Makefile.in: Remove references to librx.
8871 2002-06-19  Nathanael Nerode  <neroden@twcny.rr.com>
8873         * configure.in: Eliminate ${gasdir} variable.
8875 2002-06-18  Dave Brolley  <brolley@redhat.com>
8877         * configure.in: Add support for frv.
8878         * config.sub: Add support for frv.
8880 2002-06-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
8882         * Makefile.in (CFLAGS_FOR_TARGET): Add -O2.
8884 2002-06-08  Jason Thorpe  <thorpej@wasabisystems.com>
8886         * configure.in (vax-*-netbsd*): Re-enable gas.
8888 2002-05-31  Nathanael Nerode  <neroden@twcny.rr.com>
8890         * Makefile.in: Replace HOST_PREFIX, HOST_PREFIX_1 with BUILD_PREFIX,
8891         BUILD_PREFIX_1, to correct nomenclature.
8892         * configure: Likewise.
8894         * Makefile.in: Eliminate version-specific references to tcl8.1, tk8.1.
8895         * configure.in: Eliminate version-specific references to tcl8.1, tk8.1.
8897 2002-05-31  Olaf Hering  <olh@suse.de>
8899         * config-ml.in: Propogate DESTDIR also.
8901 2002-05-29  Jason Thorpe  <thorpej@wasabisystems.com>
8903         * configure.in (vax-*-netbsd*): Don't build gas for this
8904         platform.
8906 2002-05-28  Marek Michalkiewicz  <marekm@amelek.gda.pl>
8908         * configure.in (noconfigdirs): Don't compile libiberty, libstdcxx
8909         and libgcj for AVR.
8911 2002-05-28  Nick Clifton  <nickc@cambridge.redhat.com>
8913         * config.sub: Add DLX target.
8915 2002-05-22  Jason Thorpe  <thorpej@wasabisystems.com>
8917         * config.guess: Update to 2002-05-22 version.
8918         * config.sub: Likewise.
8920 2002-05-16  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
8922         * Makefile.in: Allow for PWDCMD to override hardcoded pwd.
8923         * config-ml.in: Likewise.
8924         * configure: Likewise.
8925         * configure.in: Likewise.
8927 2002-05-13  Nathanael Nerode  <neroden@twcny.rr.com>
8929         * configure.in: Simplify makefile fragment collection.
8931         * configure.in: Remove code to build emacs.
8933         * configure.in : Remove --srcdir argument from targargs and buildargs
8934         (it's always overridden in the Makefile anyway).  Rearrange a bit.
8936         * configure: Move some logic to configure.in.
8937         * configure.in: Move some logic from configure.
8939 2002-05-07  Jeff Johnston  <jjohnstn@redhat.com>
8941         * COPYING.LIBGLOSS: New file.
8943 2002-05-07  Federico G. Schwindt <fgsch@olimpo.com.br>
8945         * Makefile.in: Honour DESTDIR.
8947 2002-05-05  Alexandre Oliva  <aoliva@redhat.com>
8949         * configure.in (noconfigdirs): Don't disable libgcj on
8950         sparc64-*-solaris* and sparcv9-*-solaris*.
8952 2002-05-03  Alexandre Oliva  <aoliva@redhat.com>
8954         * configure.in: Revert 2002-04-18's patch; fixed in libjava.
8956 2002-05-03  Thomas Fitzsimmons  <fitzsim@redhat.com>
8958         * configure.in (FLAGS_FOR_TARGET): Do not add
8959         -B$$r/$(TARGET_SUBDIR)/newlib/ when compiling newlib natively
8960         on i[3456]86-*-linux*.
8962 2002-05-01  Thomas Fitzsimmons  <fitzsim@redhat.com>
8964         * configure.in (noconfigdirs): Replace [ ] with test.
8966         * configure.in (noconfigdirs): Do not add target-newlib if
8967         target == i[3456]86-*-linux*, and host == target.
8969 2002-04-29  Mark Mitchell  <mark@codesourcery.com>
8971         * config.guess: Updated to 2002-04-26's version.
8972         * config.sub: Updated to 2002-04-26's version.
8974 2002-04-29  Nathanael Nerode  <neroden@doctormoo.dyndns.org>
8976         * configure.in: delete reference to absent file
8978         * configure.in: replace '[' with 'test'
8980         * configure.in: Eliminate references to gash.
8981         * Makefile.in: Eliminate references to gash.
8983         * configure.in: remove useless references to 'pic' makefile fragments.
8985         * configure.in: (*-*-windows*) Finish removing.
8987         * configure.in: Eliminate redundant test for libgui.
8989 2002-04-26  Joel Sherrill  <joel@OARcorp.com>
8991         * configure.in (h8300*-*-rtems*): Disable libf2c and libgcj.
8992         (sparc-*-elf*, sparc64-*-elf*): Disable libgcj.
8994 2002-04-19  Nathanael Nerode  <neroden@twcny.rr.com>
8996         * configure.in: remove references to dead files
8998 2002-04-18  Tom Tromey  <tromey@redhat.com>
9000         * configure.in: Disallow configuring libgcj when it is already
9001         installed and we're using Solaris 2.8 linker.  Do enable libgcj on
9002         Solaris 2.8 by default.  For PR libgcj/6158.
9004 2002-04-17  Nathanael Nerode  <neroden@twcny.rr.com>
9006         * configure.in:  Move default CC setting out of config/mh-* fragments
9007         directly into here.
9009 2002-04-17  Nathanael Nerode  <neroden@twcny.rr.com>
9011         * configure.in: don't even try to configure or make a subdirectory
9012         if there's no configure script for it.
9014 2002-04-15  Mark Mitchell  <mark@codesourcery.com>
9016         * MAINTAINERS: Remove chill maintainers.
9017         * Makefile.in (CHILLFLAGS): Remove.
9018         (CHILL_LIB): Remove.
9019         (TARGET_CONFIGDIRS): Remove libchill.
9020         (CHILL_FOR_TARGET): Remove.
9021         (BASE_FLAGS_TO_PASS): Don't pass CHILLFLAGS, CHILL_FOR_TARGET, or
9022         CHILL_LIB.
9023         (CONFIGURE_TARGET_MODULES): Remove configure-target-libchill.
9024         (CHECK_TARGET_MODULES): Likewise.
9025         (INSTALL_TARGET_MODULES): Likewise.
9026         (CLEAN_TARGET_MODULES): Likewise.
9027         (configure-target-libchill): Remove.
9028         (all-target-libchill): Remove.
9029         * configure.in (target_libs): Remove target-libchill.
9030         Do not compute CHILL_FOR_TARGET.
9031         * libchill: Remove directory.
9033 2002-04-15  DJ Delorie  <dj@redhat.com>
9035         * Makefile.in, configure.in, configure: Sync with gcc, entries
9036         follow...
9038 2002-04-08  Tom Tromey  <tromey@redhat.com>
9040         * configure.in: Add FLAGS_FOR_TARGET to GCJ_FOR_TARGET.
9041         Fixes PR libgcj/6068.
9043 2002-03-30  Krister Walfridsson  <cato@df.lth.se>
9045         * configure.in (i*86-*-netbsdelf*): Don't disable libgcj.
9047 2002-03-27  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
9049         * configure.in (alpha*-dec-osf*): Enable libgcj.
9051 2002-03-24  Nick Clifton  <nickc@cambridge.redhat.com>
9053         Fix for: PR bootstrap/3591, target/5676
9054         * configure.in (mcore-pe): Disable the configuration of
9055         libstdc++-v3 since exceptions are not supported.
9057 2002-03-20  Anthony Green  <green@redhat.com>
9059         * configure.in: Enable libgcj for xscale-elf target.
9061 2002-02-28  Alexandre Oliva  <aoliva@redhat.com>
9063         * configure.in (libstdcxx_flags): Don't add libstdc++-v3 flags for
9064         libjava.
9065         (CXX_FOR_TARGET): Explain why -shared-libgcc here.
9067 2002-02-22  Alexandre Oliva  <aoliva@redhat.com>
9069         * configure.in (CXX_FOR_TARGET): Add -shared-libgcc for
9070         libstdc++-v3 and libjava.
9072 2002-02-11  Adam Megacz <adam@xwt.org>
9074         * gcc/Makefile.in: Removed libstdc++-v3 dependancy for libjava and
9075         boehm-gc
9077 2002-02-09  Alexandre Oliva  <aoliva@redhat.com>
9079         * config.guess: Updated to 2002-01-30's version.
9080         * config.sub: Updated to 2002-02-01's version.
9081         Contribute sh64-elf.
9082         2000-12-01  Alexandre Oliva  <aoliva@redhat.com>
9083         * configure.in: Added sh64-*-*.
9085 2002-01-17  H.J. Lu <hjl@gnu.org>
9087         * Makefile.in (all-fastjar): Also depend on all-libiberty.
9088         (all-target-fastjar): Also depend on all-target-libiberty.
9090 Wed Dec  5 07:33:45 2001  Douglas B. Rupp  <rupp@gnat.com>
9092         * configure, configure.in: Use temp file for long sed commands.
9094 2001-11-14  Hans-Peter Nilsson  <hp@bitrange.com>
9096         * configure.in (noconfigdirs) [h8300*-*-*, h8500-*-*]: Disable
9097         libf2c.
9099 2001-11-03  Hans-Peter Nilsson  <hp@bitrange.com>
9101         * configure.in (noconfigdirs) [mmix-*-*]: Disable libgcj.
9103 2001-10-11  Hans-Peter Nilsson  <hp@axis.com>
9105         * configure.in (noconfigdirs) [cris-*-*]: Disable libgcj.
9107 2001-10-02  Joseph S. Myers  <jsm28@cam.ac.uk>
9109         * configure: Handle temporary files securely using mkdir.
9111 2001-09-26  Will Cohen <wcohen@redhat.com>
9113         * configure.in (*-*-linux*): Disable configuration of target-newlib
9114         and target-libgloss.
9116 2001-09-26  Alexandre Oliva  <aoliva@redhat.com>
9118         * Makefile.in (EXTRA_TARGET_FLAGS): Pass RANLIB_FOR_TARGET for
9119         RANLIB.
9121 2001-08-11  Graham Stott  <grahams@redhat.com>
9123         * Makefile.in (check-c++): Add missing semicolon.
9125 2001-07-25  Andrew Haley  <aph@cambridge.redhat.com>
9127         * configure.in (sh-*-linux*): New.
9129 2001-07-12  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
9131         * configure.in (noconfigdirs): Don't compile libiberty, libstdcxx
9132         and libgcj on m68hc11/m68hc12.
9134 2001-06-27  H.J. Lu  (hjl@gnu.org)
9136         * Makefile (CFLAGS_FOR_BUILD): New.
9137         (EXTRA_GCC_FLAGS): Add CFLAGS_FOR_BUILD.
9139 2001-06-01  Hans-Peter Nilsson  <hp@axis.com>
9141         * configure.in (libstdcxx_flags): Do not try to execute
9142         libstdc++-v3/testsuite_flags until it exists.
9144 2001-05-18  Benjamin Kosnik  <bkoz@redhat.com>
9146         * configure.in (libstdcxx_flags): Remove reference to libstdc++.INC.
9148 2001-05-09  Jeffrey Oldham  <oldham@codesourcery.com>
9150         * ltcf-cxx.sh: Add -nostdlib to IRIX 6 archive_cmds.
9152 Mon Apr 23 09:15:03 2001  Anthony Green  <green@redhat.com>
9154         * configure.in: Move *-chorusos target case to the proper switch.
9155         Disable libgcj.
9157 2001-04-13  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>
9159         * Makefile.in (STAGE1_CFLAGS): Pass down.
9161 2001-04-13  Alan Modra  <amodra@one.net.au>
9163         * config.guess: Add hppa64-linux support.  Note for next import that
9164         this is already in the master file.
9165         * configure.in: Likewise.  Accept `parisc' alias for `hppa'.
9167 2001-03-22  Colin Howell  <chowell@redhat.com>
9169         * Makefile.in (DO_X): Do not backslash single-quotes in
9170         backquotes (two places).
9172 2001-03-18  Laurynas Biveinis  <lauras@softhome.net>
9174         * Makefile.in (DO_X): Quote nested quotes.
9176 2001-03-15  Laurynas Biveinis  <lauras@softhome.net>
9178         * Makefile.in (DO_X): Use double quotes for quoting
9179         "RANLIB=$${RANLIB}".
9181 2001-03-09  Nicola Pero <n.pero@mi.flashnet.it>
9183         * configure.in: Only use `lang_requires' for languages athat are
9184         actually enabled.
9186 2001-03-07  Tom Tromey  <tromey@redhat.com>
9188         * configure.in: Allow config-lang.in to set `lang_requires' to list
9189         of other required languages.
9191 2001-03-06  Laurynas Biveinis  <lauras@softhome.net>
9193         * Makefile.in: Remove RANLIB definition. Use RANLIB
9194         in RANLIB_FOR_TARGET, EXTRA_HOST_FLAGS, EXTRA_TARGET_FLAGS,
9195         EXTRA_GCC_FLAGS, $(DO_X) targets only when the RANLIB is set.
9197 2001-02-28  Benjamin Kosnik  <bkoz@redhat.com>
9198             Alexandre Oliva  <aoliva@redhat.com>
9200         * Makefile.in (check-c++): Use tabs, not spaces.
9202 2001-02-19  Benjamin Kosnik  <bkoz@redhat.com>
9204         * Makefile.in (check-c++): New rule.
9206         * configure.in (target_libs): Remove libg++.
9207         (noconfigdirs): Remove libg++.
9208         (noconfigdirs): Same.
9209         (noconfigdirs): Same.
9210         (noconfigdirs): Same.
9212         * config-ml.in: Remove libg++ references.
9214         * Makefile.in (TARGET_CONFIGDIRS): Remove libio, libstdc++, libg++.
9215         (ALL_TARGET_MODULES): Same.
9216         (configure-target-libg++): Remove.
9217         (all-target-libg++): Remove.
9218         (configure-target-libio): Remove.
9219         (all-target-libio): Remove.
9220         (check-target-libio): Remove.
9221         (.PHONY): Remove.
9222         (libg++.tar.bz2): Remove.
9223         (all-target-cygmon): Remove libio.
9224         (all-target-libstdc++): Remove.
9225         (configure-target-libstdc++): Remove.
9226         (TARGET_LIB_PATH): Remove libstdc++.
9227         (ALL_GCC_CXX): Remove libstdc++.
9228         (all-target-gperf): Correct.
9230 2001-02-15  Anthony Green  <green@redhat.com>
9232         * configure: Introduce GCJ_FOR_TARGET.
9233         * configure.in: Ditto.
9234         * Makefile.in: Ditto.
9236 2001-02-08  Chandrakala Chavva <cchavva@redhat.com>
9238         * configure.in: for *-chorusos, don't config target-newlib and
9239         target-libgloss.
9241 2001-02-04  Mark Mitchell  <mark@codesourcery.com>
9243         Remove V2 C++ library.
9244         * configure.in: Remove --enable-libstdcxx_v3 support.
9246 2001-01-27  Richard Henderson  <rth@redhat.com>
9248         * configure.in (target_makefile_frag) [alpha*-*]: Use mt-alphaieee.
9250 2001-01-26  Tom Tromey  <tromey@redhat.com>
9252         * configure.in: Allow libgcj to be built on Sparc Solaris.
9254 2001-01-23  Bryce McKinlay  <bryce@albatross.co.nz>
9256         * configure.in: Enable libgcj on several additional platforms.
9258 2001-01-22  Bryce McKinlay  <bryce@albatross.co.nz>
9260         * configure.in: Enable libgcj for linux targets.
9262 2001-01-09  Mike Stump  <mrs@wrs.com>
9264         * Makefile.in (CONFIGURE_TARGET_MODULES): Pass back configuration
9265         failures of subdirectories.
9267 2001-01-02  Laurynas Biveinis  <lauras@softhome.net>
9269         * configure: handle DOS-style absolute paths.
9271 2001-01-02  Laurynas Biveinis  <lauras@softhome.net>
9273         * configure.in: remove supported directories from $noconfigdirs for DJGPP.
9275 2000-12-18  Benjamin Kosnik  <bkoz@redhat.com>
9277         * Makefile.in (BASE_FLAGS_TO_PASS): Alphabetize.
9278         (libstdcxx_incdir): Pass down.
9279         * config.if: Remove expired bits for cxx_interface, add stub.
9280         (libstdcxx_incdir): Add variable for g++ include directory.
9281         * configure.in (gxx_include_dir): Use it.
9283 2000-12-15  Andreas Jaeger  <aj@suse.de>
9285         * configure.in: Handle lang_dirs.
9287 2000-12-13  Anthony Green  <green@redhat.com>
9289         * configure.in: Disable libgcj for any target not specifically
9290         listed.  Disable libgcj for x86 and Alpha Linux until compatible
9291         with g++ abi.
9293 2000-12-13  Mike Stump  <mrs@wrs.com>
9295         * Makefile.in (local-distclean): Also remove fastjar.
9297 2000-12-10  Anthony Green  <green@redhat.com>
9299         * configure.in: Define libgcj.  Disable libgcj target libraries for
9300         most targets.
9302 2000-12-09  Alexandre Petit-Bianco  <apbianco@cygnus.com>
9304         * configure.in (target_libs): Revert 2000-12-08 patch.
9305         (noconfigdirs): Added target-libjava.
9307 2000-12-09  Laurynas Biveinis  <lauras@softhome.net>
9309         * Makefile.in: handle DOS-style absolute paths.
9311 2000-12-08  Alexandre Petit-Bianco  <apbianco@cygnus.com>
9313         * Makefile.in (TARGET_CONFIGDIRS): Wrong place. Removed note about
9314         libjava.
9315         * configure.in (target_libs): Removed `target-libjava'.
9317 2000-12-08  Alexandre Petit-Bianco  <apbianco@cygnus.com>
9319         * Makefile.in (TARGET_CONFIGDIRS): Added note about libjava.
9320         (ALL_MODULES): Added fastjar.
9321         (NATIVE_CHECK_MODULES, INSTALL_MODULES, CLEAN_MODULES): Likewise.
9322         (all-target-libjava): all-fastjar replaces all-zip.
9323         (all-fastjar): Added.
9324         (configure-target-fastjar, all-target-fastjar): Likewise.
9325         * configure.in (host_tools): Added fastjar.
9327 2000-12-07  Mike Stump  <mrs@wrs.com>
9329         * Makefile.in (local-distclean): Remove leftover built files.
9331 2000-11-16  Fred Fish  <fnf@be.com>
9333         * configure.in (enable_libstdcxx_v3): Fix typo,
9334         libstd++ -> libstdc++.
9336 2000-11-13  Joseph S. Myers  <jsm28@cam.ac.uk>
9338         * configure: Provide the original toplevel configure arguments
9339         (including $0) to subprocesses in the environment rather than
9340         through gcc/configargs.h.
9342 2000-11-12  Mark Mitchell  <mark@codesourcery.com>
9344         * configure: Turn on libstdc++ V3 by default.
9346 2000-10-16  Michael Meissner  <meissner@redhat.com>
9348         * configure (gcc/configargs.h): Only create if there is a build GCC
9349         directory created.
9351 2000-10-05  Phil Edwards  <pme@gcc.gnu.org>
9353         * configure: Save configure arguments to gcc/configargs.h.
9355 2000-10-04  Andris Pavenis  <pavenis@latnet.lv>
9357         * Makefile.in (bootstrap): avoid recursion if subdir missing
9358         (cross): ditto
9359         (do-proto-toplev): ditto
9361 Wed Sep 13 11:11:29 2000  Jeffrey A Law  (law@cygnus.com)
9363         * configure.in: Do not build byacc for hppa64.  Provide paths to the
9364         X11 libraries for hppa64.
9366 2000-09-02  Anthony Green  <green@cygnus.com>
9368         * Makefile.in (all-gcc): Depend on all-zlib.
9369         (CLEAN_MODULES): Add clean-zlib.
9370         (ALL_MODULES): Add all-zlib.
9371         * configure.in (host_libs): Add zlib.
9373 2000-08-25  Alexandre Oliva  <aoliva@redhat.com>
9375         * configure.in (FLAGS_FOR_TARGET): Use $target_configdirs and
9376         $targargs to tell whether newlib is going to be built.
9378         * configure.in [disable-libstdcxx-v3] (libstdcxx_flags): Search
9379         $$r/TARGET_SUBDIR/libio for _G_config.h.
9381 2000-08-14  Zack Weinberg  <zack@wolery.cumb.org>
9383         * configure.in (libstdcxx_flags): Remove -isystem $$s/libio/stdio.
9385         * configure: Make enable_threads and enable_shared defaults
9386         explicit.  Substitute enable_threads into generated Makefiles.
9387         * configure.in: Accept *-*-linux* not just *-*-linux-gnu*.
9388         * libtool.m4: Accept *-*-linux* not just *-*-linux-gnu*.
9390 2000-08-02  Manfred Hollstein  <manfredh@redhat.com>
9392         * configure.in: Re-enable all references to libg++ and librx.
9394 2002-04-09  Loren James Rittle  <rittle@labs.mot.com>
9396         * configure.in: Add *-*-freebsd* configurations.
9398 2002-04-07  Andrew Cagney  <ac131313@redhat.com>
9400         * Makefile.in (do-tar-bz2): Delete rule.  Replace with ...
9401         (do-tar, do-bz2): New rules.
9402         (taz): Update.  Replace do-tar-bz2 with do-tar and do-bz2.
9403         (gdb-tar): New rule.
9404         (gdb-taz): Rewrite.  Use gdb-tar and do-bz2.
9405         (insight_dejagnu.tar): New rule.
9406         (insight.tar): New rule.
9407         (gdb+dejagnu.tar): New rule.
9408         (gdb.tar): New rule.
9410 2002-04-07  Andrew Cagney  <ac131313@redhat.com>
9412         * MAINTAINERS: Update dejagnu/
9414 2002-03-16  Alexandre Oliva  <aoliva@redhat.com>
9416         * ltmain.sh (relink_command): Fix typo in previous change.
9418 2002-03-15  Alexandre Oliva  <aoliva@redhat.com>
9420         * ltmain.sh (taglist): Initialized.  Don't let `CC' tag out of it.
9421         (relink_command): Added --tag flags.
9422         (mode=install): If relinking fails; error out.
9424 2002-03-12  Richard Henderson  <rth@redhat.com>
9426         * Makefile.in (NOTPARALLEL): New.  Use it instead of explicit
9427         .NOTPARALLEL tag.
9428         (do-check): Rename from check.
9429         (check): Allow parallel check.
9431 2002-03-11  Richard Henderson  <rth@redhat.com>
9433         * Makefile.in (.NOTPARALLEL): Add fake tag.
9435 2002-03-07  H.J. Lu  (hjl@gnu.org)
9437         * configure.in: Enable gprof for mips*-*-linux*.
9439 2002-02-28  Alexandre Oliva  <aoliva@redhat.com>
9441         * configure.in (libstdcxx_flags): Don't add libstdc++-v3 flags for
9442         libjava.
9443         (CXX_FOR_TARGET): Add -shared-libgcc for libstdc++-v3 and libjava.
9445 2002-02-24  Andrew Cagney  <ac131313@redhat.com>
9447         * texinfo/texinfo.tex: Update to version 2002-02-14.08.
9449 2002-02-23  Daniel Jacobowitz  <drow@mvista.com>
9451         * config.guess: Import from master sources, rev 1.232.
9452         * config.sub: Import from master sources, rev 1.246.
9454 2002-02-23  Alexandre Oliva  <aoliva@redhat.com>
9456         * Makefile.in (MAKEINFO): Don't assume makeinfo will be built just
9457         because its Makefile is there; test for the executable instead.
9459 2002-02-09  Alexandre Oliva  <aoliva@redhat.com>
9461         Contribute sh64-elf.
9462         2000-12-01  Alexandre Oliva  <aoliva@redhat.com>
9463         * configure.in: Added sh64-*-*.
9465 2002-02-04  Jeff Johnston  <jjohnstn@redhat.com>
9467         * COPYING.NEWLIB: Remove advertising clause from
9468         Berkeley and Red Hat licenses.
9470 2002-02-01  Mo DeJong  <supermo@bayarea.net>
9472         * Makefile.in: Add all-tix to deps for all-snavigator
9473         so that tix is built when building snavigator.
9475 2002-02-01  Ben Elliston  <bje@redhat.com>
9477         * config.guess: Import from master sources, rev 1.229.
9478         * config.sub: Import from master sources, rev 1.240.
9480 2002-01-27  Daniel Jacobowitz  <drow@mvista.com>
9482         From Steve Ellcey <sje@cup.hp.com>:
9483         * libtool.m4 (HPUX_IA64_MODE): Set to 32 or 64 based on ABI.
9484         (lt_cv_deplibs_check_method, lt_cv_file_magic_cmd,
9485         lt_cv_file_magic_test_file): Set to appropriate values for HP-UX
9486         IA64.
9487         * ltcf-c.sh (archive_cmds, hardcode_*): Ditto.
9488         * ltconfig (shlibpath_*, dynamic_linker, library_names_spec,
9489         soname_spec, sys_lib_search_path_spec): Ditto.
9491 2002-01-26  Jason Thorpe  <thorpej@wasabisystems.com>
9493         * configure.in (*-*-netbsd*): New.  Skip target-newlib,
9494         target-libiberty, and target-libgloss.  Skip Java-related
9495         libraries if not supported for NetBSD on target CPU.
9497 2002-01-23  Nick Clifton  <nickc@cambridge.redhat.com>
9499         * configure.in: Import StrongARM and XScale target_configdirs from
9500         FSF GCC version.
9502 2002-01-16  H.J. Lu  (hjl@gnu.org)
9504         * config.guess: Import from master sources, rev 1.225.
9505         * config.sub: Import from master sources, rev 1.238.
9507         * MAINTAINERS: Updated notes on config.guess and config.sub.
9509 2002-01-11  Steve Ellcey  <sje@cup.hp.com>
9511         * configure.in (ia64*-*-hpux*): New target for IA64 HP-UX,
9512         ld and gdb are not supported.
9514 2002-01-07  Jeff Johnston  <jjohnstn@redhat.com>
9516         * Change reference to Cygnus Solutions to be Red Hat.
9518 2002-01-07  Jeff Johnston  <jjohnstn@redhat.com>
9520         * COPYING.NEWLIB: Update generic copyright date.
9522 2002-01-07  Mark Salter  <msalter@redhat.com>
9524         * configure.in: Remove target-bsp and target-cygmon from arm builds.
9525           Allow target-libgloss to be built for arm, strongarm, and xscale.
9527 2002-01-03  Ben Elliston  <bje@redhat.com>
9529         * MAINTAINERS: Update URL for config.* scripts.
9531 2001-12-18  Alan Modra  <amodra@bigpond.net.au>
9533         * config.sub: Import latest version.
9534         * config.guess: Likewise.
9536 2001-12-13  Thomas Fitzsimmons  <fitzsim@redhat.com>
9538         * configure.in (FLAGS_FOR_TARGET): Remove -nostdinc and -isystem
9539         options for i[3456]86-pc-linux* native builds.
9541 2001-12-05  Laurent Guerby  <guerby@acm.org>
9543         * MAINTAINERS: gcc adopts symlink-tree, refer more to
9544         libiberty.
9546         Import this patch from gcc:
9548         2000-12-09  Laurynas Biveinis  <lauras@softhome.net>
9550             * symlink-tree: handle DOS-style absolute paths.
9552 2001-11-28  DJ Delorie <dj@redhat.com>
9553             Zack Weinberg  <zack@codesourcery.com>
9555         When build != host, create libiberty for the build machine.
9557         * Makefile.in (TARGET_CONFIGARGS, BUILD_CONFIGARGS): Replace
9558         CONFIG_ARGUMENTS.
9559         (ALL_BUILD_MODULES_LIST, BUILD_CONFIGDIRS, BUILD_SUBDIR):
9560         New variables.
9561         (ALL_BUILD_MODULES, CONFIGURE_BUILD_MODULES): New variables
9562         and rules.
9563         (all.normal): Depend on ALL_BUILD_MODULES.
9564         (CONFIGURE_TARGET_MODULES rule): Use TARGET_CONFIGARGS.
9565         (all-build-libiberty): Depend on configure-build-libiberty.
9567         * configure: Calculate and substitute proper value for
9568         ALL_BUILD_MODULES.
9569         * configure.in: Create the build subdirectory.
9570         Calculate and substitute TARGET_CONFIGARGS (formerly
9571         CONFIG_ARGUMENTS); also BUILD_SUBDIR and BUILD_CONFIGARGS (new).
9573 2001-11-26  Geoffrey Keating  <geoffk@redhat.com>
9575         * config.sub: Update to version 1.232 on subversion.
9577 2001-11-20  Nick Clifton  <nickc@cambridge.redhat.com>
9579         * Makefile.in (do-proto-toplev): Use msgfmt to generate .gmo
9580         files from .po files for a distribution.
9582 2001-11-19  Hans-Peter Nilsson  <hp@bitrange.com>
9584         * COPYING.NEWLIB: Mention preserved notice in specific parts.
9586 2001-11-13  Jeff Holcomb  <jeffh@redhat.com>
9588         Merged from net gcc:
9589         2001-07-30  Jeff Sturm  <jsturm@one-pont.com>
9590         * ltcf-c.sh: Use $objext, not $ac_objext.
9591         2001-07-27  Mark Kettenis  <kettenis@gnu.org>
9592         * ltcf-cxx.sh: Add support for GNU.
9593         2001-07-22  Timothy Wall  <twall@redhat.com>
9594         * ltcf-c.sh: Don't disable shared libraries for AIX5/IA64.  Preserve
9595         default settings if using GNU tools with that configuration.
9596         * ltcf-cxx.sh: Ditto.
9597         * ltcf-gcj.sh: Ditto.
9598         2001-07-21  Michael Chastain  <chastain@redhat.com>
9599         * ltconfig: Set max_cmd_len to a maximum of 512Kb, as it seems some
9600         HPUX 11.0 systems have trouble with 1MB.  Mark as gcc-local.
9601         * ltmain.sh: Mark as gcc-local.
9603 2001-11-13  Jeff Holcomb  <jeffh@redhat.com>
9605         * Makefile.in (all-bison): Revert 2001-10-24.
9606         Don't depend on texinfo.
9608 2001-11-12  Hans-Peter Nilsson  <hp@bitrange.com>
9610         * COPYING.NEWLIB: Add BSD-style license/copyright blurb for my work.
9612 2001-11-08  Phil Edwards  <pedwards@disaster.jaj.com>
9614         * configure.in (--enable-languages): Be more permissive about
9615         syntax.  Check for empty lists better.  Warn about $LANGUAGES.
9617 2001-11-06  Hans-Peter Nilsson  <hp@bitrange.com>
9619         * Makefile.in (MAKEINFO): Use "missing" for makeinfo older than 4.0.
9621 2001-10-24  Jeff Holcomb  <jeffh@redhat.com>
9623         Makefile.in (all-bison): Don't depend on texinfo.
9625 2001-10-03  Alan Modra  <amodra@bigpond.net.au>
9627         * gettext.m4: Test po/POTFILES.in exists before trying to read.
9629 2001-09-29  Alexandre Oliva  <aoliva@redhat.com>
9631         * Makefile.in (configure-target-gperf): Depend on $(ALL_GCC_CXX).
9633 2001-09-28  Hans-Peter Nilsson  <hp@axis.com>
9635         * config.sub, config.guess: Import latest from subversions.
9637 2001-09-21  Alexandre Oliva  <aoliva@redhat.com>
9639         * Makefile.in (AS_FOR_TARGET, LD_FOR_TARGET,
9640         DLLTOOL_FOR_TARGET, WINDRES_FOR_TARGET, AR_FOR_TARGET,
9641         RANLIB_FOR_TARGET, NM_FOR_TARGET): Don't use double quotes to
9642         avoid quotes nesting problems.
9643         (NATIVE_CHECK_MODULES): Ditto, just for consistency.
9644         (DO_X): Export only variables that are set.
9646 2001-09-19  Ben Elliston  <bje@redhat.com>
9648         * configure.in (sparc-sun-solaris2*): Don't use /usr/bin/which on
9649         Solaris when testing for the /usr/ucb/cc compiler; it has incorrect
9650         semantics.  Use the shell built-in "type" command instead.
9652 2001-09-15  Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
9654         * config.sub: Reverted the earlier change, this version is not the
9655         master file.
9657 2001-09-14  Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
9659         * config.sub: Change machine triplets from mipsel*-* to mips*el-*.
9660         Add support for mips64.
9662 2001-09-03  Jeff Holcomb  <jeffh@redhat.com>
9664         * configure.in: Enable libstdc++-v3 for h8300 targets.
9666 2001-08-30  Eric Christopher  <echristo@redhat.com>
9667             Jason Eckhardt  <jle@redhat.com>
9669         * config.sub: Add support for mipsisa32.
9671 2001-08-30  Eric Christopher  <echristo@redhat.com>
9673         * config.sub, config.guess: Import latest from subversions.
9675 2001-08-20  Alan Modra  <amodra@bigpond.net.au>
9677         * config.sub, config.guess: Import latest from subversions.
9679 2001-07-26  DJ Delorie  <dj@redhat.com>
9681         * MAINTAINERS: Clarify libiberty merge rules and procedures.
9683 2001-06-19  Alan Modra  <amodra@bigpond.net.au>
9685         * Makefile.in: Revert 2001-06-17.
9686         (VER): If AM_INIT_AUTOMAKE uses BFD_VERSION, get version from bfd/.
9688 2001-06-17  H.J. Lu <hjl@gnu.org>
9690         * Makefile.in (gas.tar.bz2): Pass TOOL=bfd PACKAGE=gas to make.
9691         (gas+binutils.tar.bz2): Likewise.
9692         (binutils.tar.bz2): Pass TOOL=bfd PACKAGE=binutils to make.
9694 Fri Jun  8 11:14:02 2001  Andrew Cagney  <cagney@b1.cygnus.com>
9696         * Makefile.in (VER): When present, extract the version number from
9697         the file version.in.
9699 2001-06-08  Alexandre Oliva  <aoliva@redhat.com>, Jeff Sturm  <jsturm@one-point.com>
9701         * Makefile.in (AS_FOR_TARGET, LD_FOR_TARGET, NM_FOR_TARGET): If
9702         gcc/xgcc is built, use -print-prog-name to find out the program
9703         name to use.
9705 2001-06-04  Mark Mitchell  <mark@codesourcery.com>
9707         * ltcf-c.sh (archive_cmds, archive_expsym_cmds) [solaris,
9708         with_gcc]: Use `gcc -shared' to build a shared library.
9710 2001-06-04  John David Anglin  <dave@hiauly1.hia.nrc.ca>
9712         * ltcf-c.sh (archive_cmd) [hpux, with_gcc]: Use gcc to link shared
9713         archives.
9715 2001-05-28  Simon Patarin <simon.patarin@inria.fr>
9717         * ltcf-cxx.sh (osf3/osf4/osf5): Support creation of C++  shared
9718         libraries when using g++ with native linker.
9720 2001-05-28  Alexandre Oliva  <aoliva@redhat.com>
9722         * ltconfig, ltmain.sh: Upgrade to libtool 1.4a 1.641.2.256.
9724 2001-05-24  Tom Rix <trix@redhat.com>
9726         * configure.in : enable ld for aix
9728 2001-05-22  Alexandre Oliva  <aoliva@redhat.com>
9730         * ltcf-cxx.sh (allow_undefined_flag, no_undefined_flag)
9731         [aix4*|aix5*]: Prepend blank.
9733 2001-05-20  Alexandre Oliva  <aoliva@redhat.com>
9735         * ltconfig, ltmain.sh, libtool.m4, ltcf-c.sh, ltcf-cxx.sh,
9736         ltcf-gcj.sh: Upgraded to libtool 1.4a 1.641.2.254.  Rebuilt a number
9737         of subdir/configure scripts to use the new libtool.m4.
9739 2001-05-14  H.J. Lu <hjl@gnu.org>
9741         * config.if (libc_interface): Set to -libc6.2- for cross
9742         compiling to Linux/glibc 2.2.
9744 2001-05-03  Alexandre Oliva  <aoliva@redhat.com>
9746         * configure.in (noconfigdirs) [*-cygwin*, *-mingw*, *-beos]: Disable
9747         libgcj.
9749 2001-04-26  Alexandre Oliva  <aoliva@redhat.com>
9751         * configure.in (noconfigdirs): Don't reset it from scratch in the
9752         target case; only append to it.
9754 2001-04-26  Alexandre Oliva  <aoliva@redhat.com>
9756         * configure.in (noconfigdirs) [hppa*-*-*, mips*-*-irix6*,
9757         sparc-*-solaris2.8]: Disable ${libgcj}.
9759 2001-04-25  Alexandre Oliva  <aoliva@redhat.com>
9761         * configure.in (libgcj_saved): Copy from $libgcj.
9762         (libgcj): Zero out if --enable-libgcj; add to noconfigdirs is
9763         --disable-libgcj.
9765 2001-04-20  Alexandre Oliva  <aoliva@redhat.com>
9767         * ltconfig, ltmain.sh, ltcf-cxx.sh: Upgraded to libtool 1.4a
9768         1.641.2.228.
9770 2001-04-12  Alexandre Oliva  <aoliva@redhat.com>
9772         * ltconfig, ltmain.sh, libtool.m4, ltcf-c.sh, ltcf-cxx.sh,
9773         ltcf-gcj.sh: Upgraded to libtool 1.4a 1.641.2.226.
9775 2001-04-01  Alexandre Oliva  <aoliva@redhat.com>
9777         * Makefile.in (CXX_FOR_TARGET_FOR_RECURSIVE_MAKE, RECURSE_FLAGS):
9778         New macros.
9779         (bootstrap, cross): Use RECURSE_FLAGS.
9780         * configure.in: Subst CXX_FOR_TARGET_FOR_RECURSIVE_MAKE.
9782 2001-03-27  Alexandre Oliva  <aoliva@redhat.com>
9784         * configure.in (CXX_FOR_TARGET): Use xgcc for libstdc++-v3.
9786 2001-03-23  Nick Clifton  <nickc@redhat.com>
9788         * README-maintainer-mode: Add note about inability to use "make
9789         distclean" in maintainer mode.
9791 2001-03-22  Alexandre Oliva  <aoliva@redhat.com>
9793         Re-installed:
9794         2001-01-02  Laurynas Biveinis  <lauras@softhome.net>
9795         * ltcf-c.sh: Clear ac_cv_prog_cc_pic for DJGPP.  Do not add
9796         '-DPIC' to ac_cv_prog_cc_pic for DJGPP.
9797         * ltcf-cxx.sh: Likewise.
9798         * ltcf-gcj.sh: Likewise.
9800 2001-03-22  Philip Blundell  <philb@gnu.org>
9802         * config.sub, config.guess: Import latest from subversions.
9804 2001-03-22  Alexandre Oliva  <aoliva@redhat.com>
9806         * ltconfig, ltmain.sh, libtool.m4, ltcf-c.sh, ltcf-cxx.sh,
9807         ltcf-gcj.sh: Upgraded to libtool 1.4a 1.641.2.198.
9809 2001-03-20  Michael Chastain  <chastain@redhat.com>
9811         * Makefile.in: all-m4 depends on all-texinfo.
9813 2001-03-08  Alexandre Oliva  <aoliva@redhat.com>
9815         * Makefile.in (ALL_GCC, ALL_GCC_C, ALL_GCC_CXX): Set before use.
9817 2001-02-22  Jeff Johnston <jjohnstn@redhat.com>
9819         * COPYING.NEWLIB: Remove DJ Delorie's address because it is no
9820         longer valid.
9822 2001-02-16  Nick Clifton  <nickc@redhat.com>
9824         * configure.in (noconfigdirs): Allow configuration of texinfo
9825         for Cygwin hosts.
9827 2001-02-09  Martin Schwidefsky  <schwidefsky@de.ibm.com>
9829         * config.guess: Add linux target for S/390.
9830         * config.sub: Likewise.
9831         * configure.in: Likewise.
9833 2001-02-06  Ben Elliston  <bje@redhat.com>
9835         * configure: Output host type to stdout, not stderr.
9837 2001-02-04  Michael Sokolov  <msokolov@ivan.Harhan.ORG>
9839         * config.guess: Import from subversions.gnu.org (revision 1.181).
9840         * config.sub: Import from subversions.gnu.org (revision 1.199).
9842 2001-01-30  Alan Modra  <alan@linuxcare.com.au>
9844         * config.guess: Handle hppa64-linux systems.
9846 2001-01-27  Michael Sokolov  <msokolov@ivan.Harhan.ORG>
9848         * ltcf-cxx.sh (ac_cv_prog_cc_pic_works, ac_cv_prog_cc_static_works):
9849         Don't unset, it's non-portable and no longer necessary, set to empty
9850         instead.
9852 2001-01-27  Michael Sokolov  <msokolov@ivan.Harhan.ORG>,  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>
9854         * ltconfig: Shell portability fix for the tagname validity check.
9856 2001-01-27  Michael Sokolov  <msokolov@ivan.Harhan.ORG>
9858         * ltcf-cxx.sh: Use parentheses around eval $ac_compile.
9860 2001-01-27  Alexandre Oliva  <aoliva@redhat.com>
9862         * ltcf-c.sh (ld_shlibs) [aix5*]: Disable on unknown CPU types.
9863         * ltcf-cxx.sh, ltcf-gcj.sh: Likewise.
9865 2001-01-24  Alexandre Oliva  <aoliva@redhat.com>
9867         * ltmain.sh (TAG disable-shared, TAG disable-static): Make sure we
9868         keep at least one of build_libtool_libs or build_old_libs set to
9869         yes.
9871 2001-01-24  Alexandre Oliva  <aoliva@redhat.com>
9873         * ltcf-gcj.sh (lt_simple_link_test_code): Remove stray `(0)'.
9874         * libtool.m4 (_AC_LIBTOOL_GCJ): Pass $CPPFLAGS on.
9876 2000-11-07  Philip Blundell  <pb@futuretv.com>
9878         * Makefile.in (ETC_SUPPORT): Also add configbuild.* and configdev.*.
9880 2000-11-03  Philip Blundell  <pb@futuretv.com>
9882         * Makefile.in (ETC_SUPPORT): Add configure.texi and associated info
9883         files.
9885 2001-01-15  Jeff Johnston  <jjohnstn@redhat.com>
9887         * COPYING.NEWLIB: Put into source repository.
9889 2001-01-15  Ben Elliston  <bje@redhat.com>
9891         * configure.in (host_tools): Add sid.
9892         Always configure cgen.
9893         * Makefile.in (all-sid): New target.
9894         (check-sid, clean-sid, install-sid): Likewise.
9896 2001-01-07  Andreas Jaeger  <aj@suse.de>
9898         * config.sub, config.guess: Update from subversions.
9900 2000-12-12  Alexandre Oliva  <aoliva@redhat.com>
9902         * configure.in: Disable language-specific target libraries for
9903         languages that aren't enabled.
9905 2000-11-24  Nick Clifton  <nickc@redhat.com>
9907         * configure.in (xscale-elf): Add target.
9908         (xscale-coff): Add target.
9909         (c4x, c5x, tic54x): Move after ARM targets.
9911 2000-11-23  Alexandre Oliva  <aoliva@redhat.com>
9913         * ltcf-gcj.sh: Added file, required by 2000-11-18 merge.
9915 2000-11-20  Ian Lance Taylor  <ian@zembu.com>
9917         * ltcf-cxx.sh: Added file, required by 2000-11-18 merge.
9919 2000-11-18  Alexandre Oliva  <aoliva@redhat.com>
9921         * Makefile.in: Merge with GCC and libgcj.
9922         (ALL_GCC_C, ALL_GCC_CXX): New macros.  Use them as dependencies of
9923         configure-target-<library> when their configure scripts need the C
9924         or C++ library to have already been built to work properly.
9925         (do_proto_toplev): Set them to an empty string.
9927 2000-11-18  Alexandre Oliva  <aoliva@redhat.com>
9929         * Makefile.in (HOST_LIB_PATH, TARGET_LIB_PATH): New macros.
9930         (REALLY_SET_LIB_PATH): Use them.
9932 2000-11-06  Christopher Faylor <cgf@cygnus.com>
9934         * config.sub: Add support for Sun Chorus
9936 2000-11-02  Per Lundberg  <plundis@chaosdev.org>
9938         * config.sub: Add support for the *-storm-chaos OS.
9940 2000-10-30  Stephane Carrez  <stcarrez@worldnet.fr>
9942         * configure.in (noconfigdirs): Don't compile some
9943         of the libraries for 68HC11 & 68hc12 targets.
9945 2000-09-30  Alexandre Oliva  <aoliva@redhat.com>
9947         * ltconfig, ltmain.sh, libtool.m4: Updated from libtool
9948         multi-language branch, to work around Solaris' /bin/sh bug.  Rebuilt
9949         all affected `configure' scripts.
9951 2000-09-25  Alexandre Oliva  <aoliva@redhat.com>
9953         * Makefile.in (DEVO_SUPPORT): Added gettext.m4, libtool.m4 and
9954         ltcf-c.sh.
9956 2000-09-12  Philip Blundell  <philb@gnu.org>
9958         * config.sub, config.guess: Update from subversions.
9960 2000-09-06  Alexandre Oliva  <aoliva@redhat.com>
9962         * Makefile.in (all-zlib): Added dummy target.
9964         * ltconfig, ltmain.sh, libtool.m4, ltcf-c.sh: Updated from libtool
9965         multi-language branch.
9967 2000-09-05  Alexandre Oliva  <aoliva@redhat.com>
9969         * Makefile.in (all-bootstrap): Added all-texinfo and all-zlib.
9970         (bootstrap*): Depend on all-bootstrap.
9972 2000-09-02  Alexandre Oliva  <aoliva@redhat.com>, DJ Delorie  <dj@redhat.com>
9974         * configure.in (FLAGS_FOR_TARGET): Use -nostdinc even for Canadian
9975         crosses, but add gcc/include to the header search path for them.
9977 2000-08-31  Alexandre Oliva  <aoliva@redhat.com>
9979         * ltconfig, ltmain.sh: Updated from libtool multi-language branch.
9980         * libtool.m4, ltcf-c.sh: Copied from libtool multi-language branch.
9981         * gettext.m4: New file, extracted from aclocal.m4.
9983 2000-08-22  Alexandre Oliva  <aoliva@redhat.com>
9985         * config-ml.in (CC, CXX): Avoid trailing whitespace.
9986         (LD_LIBRARY_PATH, SHLIB_PATH): Adjust for multilibs and export to
9987         sub-configures.
9989 2000-08-20  Doug Evans  <dje@casey.transmeta.com>
9991         * Makefile.in (ALL_MODULES): Add all-cgen.
9992         (CROSS_CHECK_MODULES,INSTALL_MODULES,CLEAN_MODULES): Similarily.
9993         (all-cgen): New target.
9994         (all-opcodes,all-sim): Depend on all-cgen.
9995         * configure.in (host_tools): Add cgen.
9996         Only configure cgen if --enable-cgen-maint.
9998 2000-08-17  Alexandre Oliva  <aoliva@redhat.com>
10000         * config-ml.in (CC, CXX): Don't introduce a leading space.
10002 2000-08-16  Alexandre Oliva  <aoliva@redhat.com>
10004         * configure.in (libstdcxx_flags): Use
10005         libstdc++-v3/src/libstdc++.INC.
10007 2000-08-15  Alexandre Oliva  <aoliva@redhat.com>
10009         * configure.in (libstdcxx_flags): Use libstdc++-v3/src/INCLUDES.
10011 2000-08-11  Jason Merrill  <jason@redhat.com>
10013         * configure.in (CC_FOR_TARGET, CHILL_FOR_TARGET,
10014         CXX_FOR_TARGET): Add -B$$r/gcc/ here.
10015         (FLAGS_FOR_TARGET): Not here.
10016         (CHILL_FOR_TARGET, CXX_FOR_TARGET): Don't check the list of languages.
10018 2000-08-07  DJ Delorie  <dj@redhat.com>
10020         * configure.in (FLAGS_FOR_TARGET): invert test for xgcc, should mean
10021         "if we're also building gcc, and it's a gcc that will run on the
10022         build machine, we want to use its includes instead of the system's
10023         default includes".
10025 2000-08-03  Alexandre Oliva  <aoliva@redhat.com>
10027         * configure.in (libstdcxx_flags): Don't use `"'.
10029         * config-ml.in: Adjust multilib search paths to the
10030         appropriate multilib tree.
10032 2000-08-02  Alexandre Oliva  <aoliva@redhat.com>
10034         * configure.in (CHILL_FOR_TARGET, CXX_FOR_TARGET): Convert blanks to
10035         commas in $LANGUAGES.
10037 2000-08-01  Alexandre Oliva  <aoliva@redhat.com>
10039         * configure.in (qCXX_FOR_TARGET): Use echo instead of expr.
10041 2000-07-31  Alexandre Oliva  <aoliva@redhat.com>
10043         * configure.in (qCXX_FOR_TARGET): Quote `&' characters in
10044         CXX_FOR_TARGET for sed.
10046 2000-07-30  Alexandre Oliva  <aoliva@redhat.com>
10048         * configure.in (CC_FOR_TARGET, CHILL_FOR_TARGET, CXX_FOR_TARGET):
10049         Do not override if already set in the environment or in configure.
10050         Don't duplicate $(FLAGS_FOR_TARGET) if it already appears in them.
10051         (FLAGS_FOR_TARGET): Don't use host directories on Canadian crosses.
10053 2000-07-27  Alexandre Oliva  <aoliva@redhat.com>
10055         * Makefile.in (FLAGS_FOR_TARGET): New macro.
10056         (GCC_FOR_TARGET): Use it.
10057         (CC_FOR_TARGET, CXX_FOR_TARGET, CHILL_FOR_TARGET): Now defined...
10058         * configure.in: ... here.
10059         (FLAGS_FOR_TARGET): Define.  Add ld build dir to -L path.
10060         (libstdcxx_flags): Define and append to CXX_FOR_TARGET.
10062 2000-07-24  Alexandre Oliva  <aoliva@redhat.com>
10064         * Makefile.in (configure-target-libf2c): Depend on $(ALL_GCC).
10065         (configure-target-libchill, configure-target-libobjc): Likewise.
10067         * configure.in: Use the same cache file for all target libs.
10068         * config-ml.in: But different cache files per multilib variant.
10070 2000-07-23  Michael Sokolov  <msokolov@ivan.Harhan.ORG>
10072         * configure (topsrcdir): Don't use dirname.
10074 2000-07-20  Jason Merrill  <jason@redhat.com>
10076         * configure.in: Remove all references to libg++ and librx.
10078         * configure, configure.in, Makefile.in: Unify gcc and binutils.
10080 2000-07-20  Hans-Peter Nilsson  <hp@axis.com>
10082         * config.sub: Update to subversions version 2000-07-06.
10084 2000-07-12  Andrew Haley  <aph@cygnus.com>
10086         * configure.in (host_makefile_frag): Use mh-ia64pic on IA-64 hosts.
10087         (target_makefile_frag): Use mt-ia64pic on IA-64 targets.
10089 2000-07-07  Phil Edwards  <pme@sourceware.cygnus.com>
10091         * symlink-tree:  Check number of arguments.
10093 2000-06-06  Andrew Cagney  <cagney@b1.cygnus.com>
10095         * texinfo/texinfo.tex: Update to version 2000-05-28.15.
10097 2000-07-05  Jim Wilson  <wilson@cygnus.com>
10099         * Makefile.in (CXX_FOR_TARGET): Add libstdc++ to the library
10100         search path for a g++ extracted from the build tree.  This
10101         will allow link tests run by configure scripts in
10102         subdirectories to succeed.
10104 2000-07-01  Koundinya K  <kk@ddeorg.soft.net>
10106         * ltconfig: Add support for mips-dde-sysv4.2MP
10108 2000-06-28  Corinna Vinschen  <vinschen@cygnus.com>
10110         * ltconfig: Check for host_os beeing one of `cygwin', `mingw' or
10111         `os2'. Force ac_cv_exeext to be ".exe" in that case.
10113 2000-06-19  Timothy Wall  <twall@cygnus.com>
10115         * configure.in (noconfigdirs): Set noconfigdirs for tic54x target.
10116         * config.sub: Add tic54x target.
10118 2000-06-07  Phillip Thomas  <pthomas@suse.de>
10120         * README-maintainer-mode: New file: Contains notes on using
10121         --enable-maintainer-mode with binutils.
10123 2000-05-29  Andrew Cagney  <cagney@b1.cygnus.com>
10125         * texinfo/texinfo.tex: Update. Version from makeinfo 4.0.
10127 2000-05-30  Andrew Cagney  <cagney@b1.cygnus.com>
10129         * config.sub: Import CVS version 1.167 Tue May 30 09:00:07 2000.
10130         * config.guess: Import CVS version 1.148 Tue May 30 09:00:06 2000
10132 20000-05-21  H.J. Lu  (hjl@gnu.org)
10134         * Makefile.in (CC_FOR_TARGET): Make sure as/ld in the gcc
10135         directory are used if they exist. Make sure
10136         $(build_tooldir)/include is searched for header files,
10137         $(build_tooldir)/lib/ for library files.
10138         (GCC_FOR_TARGET): Likewise.
10139         (CXX_FOR_TARGET): Likewise.
10141 2000-05-18  Jeffrey A Law  (law@cygnus.com)
10143         * configure.in (hppa*64*-*-*): Do build ld for this configuration.
10145 2000-05-17  Alexandre Oliva  <aoliva@cygnus.com>
10147         * Makefile.in (configure-target-libiberty): Depend on
10148         configure-target-newlib.
10150 2000-05-16  Alexandre Oliva  <aoliva@cygnus.com>
10152         * configure.in, Makefile.in: Merge all libffi-related
10153         configury stuff from the libgcj tree.
10155 2000-05-16  Andrew Cagney  <cagney@b1.cygnus.com>
10157         Thu Apr 27 11:01:48 2000 Andrew Cagney <cagney@b1.cygnus.com>:
10158         * Makefile.in (do-tar-bz2, do-md5sum): Skip CVS directories.
10160 2000-05-16  Andrew Cagney  <cagney@b1.cygnus.com>
10162         Wed Apr 26 17:03:53 2000 Andrew Cagney <cagney@b1.cygnus.com>:
10163         * Makefile.in (do-djunpack): New target. Update djunpack.bat with
10164         current version information.  Add to proto-toplev directory.
10165         (gdb-taz): Build do-djunpack.
10167 2000-05-15  David Edelsohn  <edelsohn@gnu.org>
10169         * configure.in: Special case powerpc*-*-aix* target_makefile_frag.
10171 2000-05-13 Alexandre Oliva  <oliva@lsd.ic.unicamp.br>
10173         * ltmain.sh: Preserve in relink_command any environment
10174         variables that may affect the linker behavior.
10176 2000-05-12  Jeffrey A Law  (law@cygnus.com)
10178         * config.sub (basic_machine): Recognize hppa64 as a valid cpu type.
10180 2000-05-10  Jim Wilson  <wilson@cygnus.com>
10182         * configure.in (ia64*-*-elf*): Add gdb and friends to noconfigdirs.
10184 2000-05-08  Eli Zaretskii  <eliz@is.elta.co.il>
10186         * djunpack.bat: Change the Sed script to replace @V@ in fnchange.lst
10187         with the version name.
10189 2000-05-01  Benjamin Kosnik  <bkoz@cygnus.com>
10191         * config.if: Tweak.
10193 2000-04-23  Eli Zaretskii  <eliz@is.elta.co.il>
10195         * djunpack.bat: New file.
10197 2000-04-19  Andrew Cagney  <cagney@b1.cygnus.com>
10199         * Makefile.in (taz, gdb-taz, gas.tar.bz2, binutils.tar.bz2,
10200         gas+binutils.tar.bz2, libg++.tar.bz2, gnats.tar.bz2, gdb.tar.bz2,
10201         dejagnu.tar.bz2, gdb+dejagnu.tar.bz2, insight.tar.bz2,
10202         insight+dejagnu.tar.bz2, newlib.tar.bz2): Pass MD5PROG to sub-make.
10204 2000-04-16  Dave Pitts  <dpitts@cozx.com>
10206         * config.sub (case $basic_machine): Change default for "ibm-*"
10207         to "openedition".
10209 2000-04-12  Andrew Cagney  <cagney@b1.cygnus.com>
10211         * Makefile.in (gdb-taz): New target.  GDB specific archive.
10212         (do-md5sum): New target.
10213         (MD5PROG): Define.
10214         (PACKAGE): Default to TOOL.
10215         (VER): Default to a shell script.
10216         (taz): Rewrite target.  Move real work to do-proto-toplev.  Include
10217         md5 checksum generation.
10218         (do-proto-toplev): New target. Create $(PACKAGE)-$(VER) link.
10219         (do-tar-bz2): Delete creation of $(PACKAGE)-$(VER) link.
10220         (gdb.tar.bz2, dejagnu.tar.bz2, gdb+dejagnu.tar.bz2,
10221         insight.tar.bz2): Use gdb-taz to create archive.
10223 2000-04-07  Andrew Cagney  <cagney@b1.cygnus.com>
10225         * configure (warn_cflags): Delete.
10227 2000-04-05  Benjamin Kosnik  <bkoz@cygnus.com>
10228             Martin v. Loewis  <martin@loewis.home.cs.tu-berlin.de>
10230         * configure.in (enable_libstdcxx_v3): Add.
10231         (target_libs): Add bits here to switch between libstdc++-v2 and
10232         libstdc++-v3.
10233         * config.if: And this file too.
10234         * Makefile.in: Add libstdc++-v3 targets.
10236 2000-04-05  Michael Meissner  <meissner@redhat.com>
10238         * config.sub (d30v): Add d30v as a basic machine type.
10240 2000-03-29  Jason Merrill  <jason@casey.cygnus.com>
10242         * configure.in: -linux-gnu*, not -linux-gnu.
10244 2000-03-03  Andrew Cagney  <cagney@b1.cygnus.com>
10246         * Makefile.in (taz): Set PACKAGE to TOOL when not defined.
10247         (do-tar-bz2): Replace TOOL with PACKAGE.
10248         (gdb.tar.bz2): Remove GDBTK from GDB package.
10249         (gdb+dejagnu.tar.bz2, insight.tar.bz2, insight+dejagnu.tar.bz2,
10250         dejagnu.tar.bz2): New packages.
10252 2000-02-27  Andreas Jaeger  <aj@suse.de>
10254         * configure.in: Add entry for mips*-*-linux*, move catch all
10255         *-*-*linux* entry below this one.
10257 2000-02-27  Ian Lance Taylor  <ian@zembu.com>
10259         * ltconfig, ltmain.sh: Update to libtool 1.3.4.
10261 2000-02-24  Nick Clifton  <nickc@cygnus.com>
10263         * config.sub: Support an OS of "wince".
10265 2000-02-24  Andrew Cagney  <cagney@b1.cygnus.com>
10267         * config.guess, config.sub: Updated to match config's 2000-02-15
10268         version.
10270 2000-02-23  Linas Vepstas <linas@linas.org>
10272         * config.sub: Add support for Linux/IBM 370.
10273         * configure.in: Likewise.
10275 2000-02-22  Nick Clifton  <nickc@cygnus.com>
10277         * configure.in: Add mips-pe, sh-pe and arm-wince-pe targets.
10279 2000-02-20  Christopher Faylor <cgf@cygnus.com>
10281         * config.guess: Guess "cygwin" rather than "cygwin32".
10283 2000-02-16  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
10285         * configure (gcc_version): When setting, narrow search to
10286         lines containing `version_string'.
10288 2000-02-15  Denis Chertykov  <denisc@overta.ru>
10290         * config.sub: Add support for avr target.
10292 2000-02-01  Hans-Peter Nilsson  <hp@bitrange.com>
10294         * config.sub: Add mmix-knuth-mmixware.
10296 2000-01-27  Christopher Faylor <cgf@redhat.com>
10298         * Makefile.in (CC_FOR_TARGET): Add new winsup directory
10299         structure stuff to -L library search.
10300         (CXX_FOR_TARGET): Ditto.
10301         (CROSS_CHECK_MODULES): Fix spelling mistake.
10303 2000-01-24  Mark Mitchell  <mark@codesourcery.com>
10305         * Makefile.in (CXX_FOR_TARGET): Use g++, not xgcc, to invoke
10306         the C++ compiler.
10308 2000-01-12  Richard Henderson  <rth@cygnus.com>
10310         * configure.in: Don't build some bits for beos.
10312 2000-01-12  Joel Sherrill (joel@OARcorp.com)
10314         * Makefile.in (CC_FOR_TARGET): Use newlib libraries as well
10315         as include files.
10317 2000-01-06  Geoff Keating  <geoffk@cygnus.com>
10319         * configure.in: Use mt-aix43 to handle *_TARGET defs,
10320         not mh-aix43.
10322 1999-12-14  Richard Henderson  <rth@cygnus.com>
10324         * config.guess (alpha-osf, alpha-linux): Detect ev67.
10325         * config.sub: Accept alphaev[78], alphaev8.
10327 1999-12-03  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>
10329         * config.guess, config.sub: Update from autoconf.
10331 Tue Nov 23 00:57:41 1999  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
10333         * config-ml.in (sparc*-*-*): Disable sparcv9 support if the
10334         necessary libraries are missing.
10336 1999-10-25  Andreas Schwab  <schwab@suse.de>
10338         * configure: Fix quoting inside arguments of eval.
10340 1999-10-21  Nick Clifton  <nickc@cygnus.com>
10342         * config-ml.in: Allow suppression of some ARM multilibs.
10344 Tue Sep  7 23:33:57 1999  Linas Vepstas  <linas@linas.org>
10346         * config.guess: Add OS/390 match pattern.
10347         * config.sub: Add mvs, openedition targets.
10348         * configure.in (i370-ibm-opened*): New.
10350 1999-09-04  Steve Chamberlain  <sac@pobox.com>
10352         * config.sub: Add support for configuring for pj.
10354 1999-08-31  Nick Clifton  <nickc@cygnus.com>
10356         * config.sub (maybe_os): Add support for configuring for fr30.
10358 1999-08-25  Nick Clifton  <nickc@cygnus.com>
10360         * configure.in: Do not configure or build ld for AIX
10361         platforms.  ld is known to be broken on these platforms.
10363 Wed Aug 25 01:12:25 1999  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
10365         * config-ml.in: Pass compiler flag corresponding to multidirs to
10366         subdir configures.
10368 1999-08-09  Ian Lance Taylor  <ian@zembu.com>
10370         * Makefile.in (LDFLAGS): Define.
10372 1999-08-08  Mumit Khan  <khan@xraylith.wisc.edu>
10374         * configure.in (i[3456]-*-mingw32*): Don't put gprof in
10375         noconfigdirs.
10376         (*-*-cygwin*): Likewise.
10378 1999-08-08  Ian Lance Taylor  <ian@zembu.com>
10380         * mkdep: New file.
10381         * Makefile.in (GAS_SUPPORT_DIRS): Add mkdep.
10382         (BINUTILS_SUPPORT_DIRS): Add mkdep.
10384         From Eli Zaretskii <eliz@is.elta.co.il>:
10385         * configure (tmpfile): Change cONf$$ to cNf$$ to avoid an overly
10386         long file name when using DJGPP on MS-DOS.
10388 Wed Aug  4 02:07:14 1999  Jeffrey A Law  (law@cygnus.com)
10390         * config.sub (vxworks case): Use os=-vxworks, not os=vxworks.
10392 1999-07-30  Alan Modra  <alan@spri.levels.unisa.edu.au>
10394         * Makefile.in (check-target-libio): Remove all-target-libstdc++
10395         dependency as this causes "make check" to globally "make all"
10397 Tue Jun 22 23:45:18 1999  Tom Tromey  <tromey@cygnus.com>
10399         * configure.in (target_libs): Added target-zlib.
10400         * Makefile.in (ALL_TARGET_MODULES): Added zlib.
10401         (CONFIGURE_TARGET_MODULES): Likewise.
10402         (CHECK_TARGET_MODULES): Likewise.
10403         (INSTALL_TARGET_MODULES): Likewise.
10404         (CLEAN_TARGET_MODULES): Likewise.
10405         (configure-target-zlib): New target.
10406         (all-target-zlib): Likewise.
10407         (all-target-libjava): Depend on all-target-zlib.
10408         (configure-target-libjava): Depend on configure-target-zlib.
10410         * Makefile.in (configure-target-libjava): Depend on
10411         configure-target-newlib.
10412         (configure-target-boehm-gc): New target.
10413         (configure-target-qthreads): New target.
10415         * configure.in (target_libs): Added target-qthreads.
10416         * Makefile.in (ALL_TARGET_MODULES): Added qthreads.
10417         (CONFIGURE_TARGET_MODULES): Likewise.
10418         (CHECK_TARGET_MODULES): Likewise.
10419         (INSTALL_TARGET_MODULES): Likewise.
10420         (CLEAN_TARGET_MODULES): Likewise.
10421         (all-target-qthreads): New target.
10422         (configure-target-libjava): Depend on configure-target-qthreads.
10423         (all-target-libjava): Depend on all-target-qthreads.
10425         * Makefile.in (ALL_TARGET_MODULES): Added libjava, boehm-gc.
10426         (CONFIGURE_TARGET_MODULES): Likewise.
10427         (CHECK_TARGET_MODULES): Likewise.
10428         (INSTALL_TARGET_MODULES): Likewise.
10429         (CLEAN_TARGET_MODULES): Likewise.
10430         (all-target-libjava): New target.
10431         (all-target-boehm-gc): Likewise.
10432         * configure.in (target_libs): Added libjava, boehm-gc.
10434 1999-07-22  Ian Lance Taylor  <ian@zembu.com>
10436         * Makefile.in (binutils.tar.bz2): Don't pass makeall.bat and
10437         configure.bat in SUPPORT_FILES.
10438         (gas+binutils.tar.bz2): Likewise.
10440         * makeall.bat: Remove; obsolete.
10442 1999-07-21  Ian Lance Taylor  <ian@zembu.com>
10444         From Mark Elbrecht:
10445         * configure.bat: Remove; obsolete.
10447 1999-07-11  Ian Lance Taylor  <ian@zembu.com>
10449         * configure: Add -W -Wall to the default CFLAGS when compiling with
10450         gcc.
10452 Thu Jul  8 12:32:23 1999  John David Anglin <dave@hiauly1.hia.nrc.ca>
10454         * configure.in: Build ld, binutils & gas for hppa*-*-linux-gnu*.
10456 1999-06-30  Mark Mitchell  <mark@codesourcery.com>
10458         * configure.in: Build ld on IRIX6.
10460 1999-06-12  Ian Lance Taylor  <ian@zembu.com>
10462         * Makefile.in: Change distribution targets to use bzip2 instead of
10463         gzip.
10464         (TEXINFO_SUPPORT): Set to just texinfo/texinfo.tex.
10465         (taz): Don't use texinfo/gpl.texinfo or texinfo/lgpl.texinfo.
10467 1999-06-04  Nick Clifton  <nickc@cygnus.com>
10469         * config.sub: Add mcore target.
10471 1999-05-30  Cort Dougan  <cort@cs.nmt.edu>
10473         * config.guess (ppc-*-linux-gnu): Also use ld emul elf32ppclinux.
10475 1999-05-25  H.J. Lu  (hjl@gnu.org)
10477         * config.guess (dummy): Changed to $dummy.
10479 1999-05-24  Nick Clifton  <nickc@cygnus.com>
10481         * config.sub: Tidied up case statements.
10483 1999-05-22  Ben Elliston  <bje@cygnus.com>
10485         * config.guess: Handle NEC UX/4800. Contributed by Jiro Takabatake
10486         <jiro@din.or.jp>.
10488         * config.guess: Merge with FSF version. Future changes will be
10489         more accurately recorded in this ChangeLog.
10490         * config.sub: Likewise.
10492 1999-05-20   Stephen L Moshier  <moshier@world.std.com>
10494          * Makefile.in (GCC_FOR_TARGET): Add -I$(build_tooldir)/include.
10496 1999-04-30  Tom Tromey  <tromey@cygnus.com>
10498         * ltmain.sh: [mode link] Always use CC given by ltconfig.
10500 1999-04-23  Tom Tromey  <tromey@cygnus.com>
10502         * ltconfig, ltmain.sh: Update to libtool 1.2f.
10504 1999-04-20  Drew Moseley  <dmoseley@cygnus.com>
10506         * configure.in (noconfigdirs): Don't build libstub for arm-elf targets.
10507         (noconfigdirs): Don't build any bsp stuff for for arm-oabi targets.
10508         Bad merge removed these two changes.
10510 Tue Apr 13 22:50:54 1999  Donn Terry (donn@interix.com)
10511                           Martin Heller (Ing.-Buero_Heller@t-online.de)
10513         * config.guess (interix Alpha): Add.
10515 1999-04-11  Richard Henderson  <rth@cygnus.com>
10517         * configure.in (i?86-*-beos*): Do config gperf; don't config
10518         gdb, newlib, or libgloss.
10520 1999-04-11  Alexandre Oliva  <oliva@dcc.unicamp.br>
10522         * config-ml.in: On mips*-*-*, if multidirs contains mabi=64, try to
10523         link a trivial program with -mabi=64.  If it fails, remove mabi=64
10524         from multidirs.
10526 1999-04-10  Philipp Thomas  (kthomas@gwdg.de)
10528         * config.sub: Set basic_machine to i586 when target_alias = k6-*.
10530 1999-04-08  Nick Clifton  <nickc@cygnus.com>
10532         * config.sub: Add support for mcore targets.
10534 1999-04-07  Michael Meissner  <meissner@cygnus.com>
10536         * configure.in (d30v-*): Use config/mt-d30v as makefile fragment,
10537         not mt-ospace, in order to shut up assembler warning about using
10538         symbols that are named the same as registers.
10540 1999-04-07  Drew Moseley  <dmoseley@cygnus.com>
10542         * Makefile.in (all-target-cygmon): Added all-target-bsp to the
10543         dependency list for all-target-cygmon.
10545 1999-04-05  Doug Evans  <devans@casey.cygnus.com>
10547         * config-ml.in: Check $host, not $target, for selective multilibs.
10548         (arm-*-*): Allow disabling of biendian, h/w fp, 26 bit apcs,
10549         thumb interworking, and underscore prefix multilibs.
10551 1999-04-04  Ian Lance Taylor  <ian@zembu.com>
10553         * missing: Update to version from current automake.
10555 Fri Apr  2 15:11:32 1999  H.J. Lu  (hjl@gnu.org)
10557         * configure (gxx_include_dir): Removed.
10559         * configure.in (gxx_include_dir): Handle it.
10560         * Makefile.in: Likewise.
10562 1999-03-29  Gavin Romig-Koch  <gavin@cygnus.com>
10564         * config.sub (mips64vr4111,mips64vr4111el) Add.
10566 1999-03-21  Ben Elliston  <bje@cygnus.com>
10568         * config.guess: Correct typo for detecting ELF on FreeBSD.
10570 Thu Mar 18 00:17:50 1999  Mark Elbrecht <snowball3@usa.net>
10572         * configure.in (pc-msdosdjgpp): Set host_makefile_frag to
10573         config/mh-djgpp.
10575 Thu Mar 11 18:37:23 1999  Drew Moseley  <dmoseley@cygnus.com>
10577         * Makefile.in (all-target-bsp): Added all-gcc all-binutils and
10578         all-target-newlib to dependency list for all-target-bsp.
10580 Thu Mar 11 01:19:31 1999  Mumit Khan  <khan@xraylith.wisc.edu>
10582         * config.sub: Add i386-uwin support.
10583         * config.guess: Likewise.
10585 Thu Mar 11 01:07:55 1999  Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
10587         * configure.in: cleanup, add mh-*pic handling for arm, special
10588         case powerpc*-*-aix*
10590 Wed Mar 10 18:35:07 1999  Jeff Johnston  <jjohnstn@cygnus.com>
10592         * configure.in (noconfigdirs): Removed target-libgloss so libnosys.a
10593         can be built.
10595 Wed Mar 10 17:39:09 1999  Drew Moseley  <dmoseley@cygnus.com>
10597         * configure.in: Added bsp support to arm-*-coff and arm-*-elf
10598         targets.
10600 1999-03-02  Nick Clifton  <nickc@cygnus.com>
10602         * config.sub: Rename CYGNUS LOCAL to EGCS LOCAL
10604 1999-02-28  Geoffrey Noer  <noer@cygnus.com>
10606         * config.sub: Check for "cygwin*" rather than "cygwin32*"
10608 1999-02-24  Nick Clifton  <nickc@cygnus.com>
10610         * config.sub: Fix typo in arm recognition.
10612 1999-02-24  Drew Moseley  <dmoseley@cygnus.com>
10614         * configure.in (noconfigdirs): Changed target_configdirs to
10615         include target-bsp only for m68k-*-elf* and m68k-*-coff*
10616         rather than m68k-*-* since it is not known to work on
10617         m68k-aout. Ditto for arm-*-*oabi.
10619 1999-02-24  Stan Shebs  <shebs@andros.cygnus.com>
10621         * configure.in (*-*-windows*): Remove, no longer used.
10623 1999-02-19  Ben Elliston <bje@cygnus.com>
10625         * config.guess: Automatically recognise ELF on FreeBSD. From Niall
10626         Smart and improved by Andrew Cagney.
10628 1999-02-18  Marc Espie <espie@cvs.openbsd.org>
10630         * config.guess: Recognize openbsd-*-hppa.
10632 1999-02-17  H.J. Lu  (hjl@gnu.org)
10634         * Makefile.in (REALLY_SET_LIB_PATH): Append $$$(RPATH_ENVVAR)
10635         only if it is not empty.
10637 1999-02-17  Nick Clifton  <nickc@cygnus.com>
10639         Patch from: Scott Bambrough <scottb@corelcomputer.com>
10641         * config.guess: Modified to recognize uname's armv* syntax.
10643         * config.sub: Modified to recognize uname's armv* syntax.
10645 1999-02-17  Mark Salter  <msalter@cygnus.com>
10647         * configure.in: Added target-bsp for sparclite.
10649 1999-02-08  Richard Henderson  <rth@cygnus.com>
10651         * config.sub: Recognize alphapca5[67] and up to alphaev8.
10653 1999-02-08  Nick Clifton  <nickc@cygnus.com>
10655         * configure.in: Add support for strongarm port.
10656         * config.sub: Add support for strongarm target.
10658 1999-02-07  Mumit Khan  <khan@xraylith.wisc.edu>
10660         * configure.in (*-*-cygwin32*): Use config/mh-cygwin instead of
10661         the old name config/mh-cygwin32.
10662         Enable texinfo.
10664 1999-02-04  Ian Lance Taylor  <ian@cygnus.com>
10666         * configure.in: Do build ld for ix86 Solaris.
10668 1999-02-02  Jim Wilson  <wilson@cygnus.com>
10670         * Makefile.in (EXTRA_GCC_FLAGS):  Set AR to $AR instead of
10671         $AR_FOR_TARGET.  Likewise for RANLIB.
10673 1999-02-02  Catherine Moore  <clm@cygnus.com>
10675         * config.sub (oabi):  Recognize.
10676         * configure.in (arm-*-oabi):  Handle.
10678 1999-01-30  Robert Lipe  (robertlipe@usa.net)
10680         * config.guess: Improve detection of i686 on UnixWare 7.
10682 1999-01-30  Mumit Khan  <khan@xraylith.wisc.edu>
10684         * config.guess: Add support for i386-pc-interix.
10685         * config.sub: Likewise.
10686         * configure.in: Likewise.
10688 1999-01-18  Christopher Faylor <cgf@cygnus.com>
10690         * Makefile.in: Remove unneeded all-target-libio from
10691         from all-target-winsup target since it is now unneeded.
10692         Add all-target-libtermcap in its place since it is now
10693         needed.
10695 1998-12-30  Christopher Faylor <cgf@cygnus.com>
10697         * configure.in: makefile stub for cygwin target is probably
10698         unnecessary.  Remove it for now.
10700 1998-12-30  Christopher Faylor <cgf@cygnus.com>
10702         * configure.in: libtermcap.a should be built when cygwin is the
10703         target as well as the host.
10704         * config.guess: Allow mixed case in cygwin uname output.
10705         * Makefile.in: Add libtermcap target.
10707 1998-12-23  Jeffrey A Law  (law@cygnus.com)
10709         * config.sub: Clean up handling of hppa2.0.
10711 1998-12-22  Rodney Brown  (rodneybrown@pmsc.com)
10713         * config.guess: Use C code to identify more HP machines.
10715 Thu Dec 17 01:22:30 1998  Jeffrey A Law  (law@cygnus.com)
10717         * config.sub: Handle hppa2.0.
10719 Tue Dec 15 17:02:58 1998  Bob Manson  <manson@charmed.cygnus.com>
10721         * configure.in: Add cygmon for x86-coff and x86-elf. Configure
10722         cygmon for all sparclite targets, regardless of object format.
10724 1998-12-15  Mark Salter  <msalter@cygnus.com>
10726         * configure.in: Added target-bsp for several target architectures.
10728         * Makefile.in: Added rules for bsp.
10730 Fri Dec  4 01:34:02 1998  Jeffrey A Law  (law@cygnus.com)
10732         * config.guess: Improve detection of hppa2.0 processors.
10734 Fri Dec  4 01:33:05 1998  Niall Smart <nialls@euristix.ie>
10736         * config.guess: Recognize FreeBSD using ELF automatically.
10738 1998-11-26  Manfred Hollstein  <manfred@s-direktnet.de>
10740         * configure (skip-this-dir): Add handling for new shell script, which
10741         might be created by a sub-directory's configure to indicate, this particular
10742         directory is "unwanted".
10743         * Makefile.in ($(CONFIGURE_TARGET_MODULES)): Likewise.
10745 Wed Nov 18 18:28:45 1998  Geoffrey Noer  <noer@cygnus.com>
10747         * ltconfig: import from libtool, after changing libtool to
10748         account for the cygwin name change.
10750 Wed Nov 18 18:09:14 1998  Geoffrey Noer  <noer@cygnus.com>
10752         * Makefile.in: CC_FOR_TARGET and CXX_FOR_TARGET should also
10753         include newlib/libc/sys/cygwin and newlib/libc/sys/cygwin32.
10755 Wed Nov 18 20:13:29 1998  Christopher Faylor <cgf@cygnus.com>
10757         * configure.in: Add libtermcap to list of cygwin dependencies.
10759 1998-11-17  Geoffrey Noer  <noer@cygnus.com>
10761         * Makefile.in: modify CC_FOR_TARGET and CXX_FOR_TARGET so that
10762         they include winsup/include when it's a cygwin target.
10764 1998-11-12  Tom Tromey  <tromey@cygnus.com>
10766         * configure.in (host_tools): Added zip.
10767         * Makefile.in (all-target-libjava): Depend on all-zip.
10768         (all-zip): New target.
10769         (ALL_MODULES): Added all-zip.
10770         (NATIVE_CHECK_MODULES): Added check-zip.
10771         (INSTALL_MODULES): Added install-zip.
10772         (CLEAN_MODULES): Added clean-zip.
10774 1998-11-12  Geoffrey Noer  <noer@cygnus.com>
10776         * Makefile.in: lose "32" from comment about cygwin.
10778 1998-11-05  Nick Clifton  <nickc@cygnus.com>
10780         * configure.in: Use -Os to build target libraries for the fr30.
10782 1998-11-04  Dave Brolley  <brolley@cygnus.com>
10784         * config.sub: Add fr30.
10786 1998-11-02  Geoffrey Noer  <noer@cygnus.com>
10788         * configure.in: drop "32" from config/mh-cygwin32.  Check
10789         cygwin* instead of cygwin32*.
10790         * config.sub: Check cygwin* instead of cygwin32*.
10792 1998-10-22  Robert Lipe  <robertl@dgii.com>
10794         * config.guess: Match any version of Unixware7.
10796 1998-10-20  Syd Polk  <spolk@cygnus.com>
10798         * Makefile.in configure.in: Add the ability to use tcl8.1 and tk8.1
10799         if desired.
10801 1998-10-18  Jeffrey A Law  (law@cygnus.com)
10803         * config.if (cxx_interface, libstdcxx_interface): Do not try to set
10804         these if the appropriate directories and files to not exist.
10806 1998-10-14  Jeffrey A Law  (law@cygnus.com)
10808         * Makefile.in (DEVO_SUPPORT): Add config.if.
10810 1998-10-13  Manfred Hollstein  <manfred@s-direktnet.de>
10812         * configure: Add pattern to replace "build_tooldir"'s
10813         definition in the generated Makefile with "tooldir"'s
10814         actual value.
10816 Tue Oct 13 09:17:06 1998  Jeffrey A Law  (law@cygnus.com)
10818         * config.sub: Bring back lost sparcv9.
10820         * Makefile.in (all-snvavigator): Remove all-flexlm dependency.
10822 Mon Oct 12 12:09:44 1998  Jeffrey A Law  (law@cygnus.com)
10824         * Makefile.in (CHILL_FOR_TARGET): Mirror recent changes to
10825         CC_FOR_TARGET and friends.
10827 Mon Oct 12 12:09:30 1998  Alexandre Oliva  <oliva@dcc.unicamp.br>
10829         * Makefile.in (build_tooldir): New variable, same as tooldir.
10830         (CC_FOR_TARGET, GCC_FOR_TARGET, CXX_FOR_TARGET): Add
10831         -B$(build_tooldir)/bin/.
10832         (BASE_FLAGS_TO_PASS): Pass build_tooldir down.
10834 Wed Sep 30 22:20:50 1998  Robert Lipe  <robertl@dgii.com>
10836         * config.sub: Add support for i[34567]86-pc-udk.
10837         * configure.in: Likewise.
10839 Wed Sep 30 19:23:48 1998  Geoffrey Noer  <noer@cygnus.com>
10841         * Makefile.in: add bzip2 package building bits for user
10842         tools module
10843         * configure.in: ditto
10845 Wed Sep 30 03:00:05 1998  Jeffrey A Law  (law@cygnus.com)
10847         * Makefile.in (TARGET_CONFIGDIRS): Add libobjc.
10848         (ALL_TARGET_MODULES): Add all-target-libobjc.
10849         (CONFIGURE_TARGET_MODULES, CHECK_TARGET_MODULES): Similarly.
10850         (INSTALL_TARGET_MODULES, CLEAN_TARGET_MODULES): Similarly.
10851         (all-target-libchill): Add dependencies.
10852         * configure.in (target_libs): Add libchill.
10854 1998-09-30  Manfred Hollstein  <manfred@s-direktnet.de>
10856         * configure.in (target_subdir): Remove duplicate line.
10858 Tue Sep 29 22:45:41 1998  Felix Lee  <flee@cygnus.com>
10860         * Makefile.in (all-automake): fix dependencies.
10862 Mon Sep 28 04:04:27 1998  Jeffrey A Law  (law@cygnus.com)
10864         * configure.in: Minor cleanups for building in the $(target_alias)
10865         subdir.
10867 1998-09-22  Jim Wilson  <wilson@cygnus.com>
10869         * Makefile.in (bootstrap): Set r and s before make all.  Use
10870         BASE_FLAGS_TO_PASS in make all.
10871         (cross): Likewise.
10873 1998-09-20  Mark Mitchell  <mark@markmitchell.com>
10875         * Makefile.in (bootstrap): Pass TARGET_FLAGS_TO_PASS to `make all'.
10877 Sun Sep 20 00:13:02 1998  Richard Henderson  <rth@cygnus.com>
10879         * config.sub: Fix typo in last change.
10881 1998-09-19  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
10883         * config.sub: Add support for C4x target.
10884         * configure.in: Likewise.
10886 1998-09-13  David S. Miller  <davem@pierdol.cobaltmicro.com>
10888         * config.sub: Recognize sparcv9 just like sparc64.
10890 Wed Sep  9 15:44:52 1998  Robert Lipe  <robertl@dgii.com>
10892         * config.guess: Match "Pent II" or "PentII" for OpenServer.
10894 Tue Sep  8 01:18:39 1998  Jeffrey A Law  (law@cygnus.com)
10896         * config.guess: Correctly identify Pentium II sco boxes.
10898         * config.guess: Fix "tr" code.  From Weiwen Liu.
10900 Sat Sep  5 13:56:52 1998  John Hughes  <john@Calva.COM>
10902         * configure.in: Do not assume x86-svr4 or x86-unixware can handle
10903         stabs.
10905 Sat Sep  5 02:12:02 1998  Jeffrey A Law  (law@cygnus.com)
10907         * Makefile.in (TARGET_CONFIGDIRS): Add libchill.
10908         (ALL_TARGET_MODULES): Add all-target-libchill.
10909         (CONFIGURE_TARGET_MODULES, CHECK_TARGET_MODULES): Similarly.
10910         (INSTALL_TARGET_MODULES, CLEAN_TARGET_MODULES): Similarly.
10911         (all-target-libchill): Add dependencies.
10912         * configure.in (target_libs): Add libchill.
10914 Sun Aug 30 22:27:02 1998  Lutz Wohlrab <lutz.wohlrab@informatik.tu-chemnitz.de>
10916         * config.guess: Avoid assumptions about "tr" behaves when
10917         LANG is set to something other than English.
10919 Sun Aug 30 22:14:44 1998  H.J. Lu  (hjl@gnu.org)
10921         * configure (gxx_include_dir): Changed to
10922         '${prefix}/include/g++'-${libstdcxx_interface}.
10924         * config.if: New to determine the interfaces.
10926 Sun Aug 30 21:15:19 1998  Mark Klein (mklein@dis.com)
10928         * config.guess: Detect and handle MPE/IX.
10929         * config.sub: Deal with MPE/IX.
10931 Sat Aug 29 14:32:55 1998  David Edelsohn  <edelsohn@mhpcc.edu>
10933         * configure.in: Use mh-aix43.
10935 1998-07-29  Manfred Hollstein  <manfred@s-direktnet.de>
10937         * configure: Fix --without/--disable cases for gxx-include-dir.
10939 Fri Aug 28 12:28:26 1998  Per Bothner  <bothner@cygnus.com>
10941         * mdata-sh:  Imported.  Needed for automake support.
10943 Thu Aug 13 12:49:29 1998  H.J. Lu  <hjl@gnu.org>
10945         * Makefile.in (taz): Try "chmod -R og=u ." before
10946         "chmod og=u `find . -print`".
10948 Fri Jul 31 09:38:33 1998  Catherine Moore  <clm@cygnus.com>
10950         * configure.in: Add arm-elf and thumb-elf support.
10952 Mon Jul 27 16:23:58 1998  Doug Evans  <devans@canuck.cygnus.com>
10954         * Makefile.in: Undo previous patch.
10956 Fri Jul 24 19:55:24 1998  Doug Evans  <devans@canuck.cygnus.com>
10958         * Makefile.in (INSTALL_TARGET): Move EXTRA_TARGET_HOST_INSTALL_MODULES
10959         to here ...
10960         (install-no-fixedincludes): and here
10961         (INSTALL_MODULES): ... from here.
10963 Fri Jul 24 17:01:42 1998  Ian Lance Taylor  <ian@cygnus.com>
10965         * config.sub: Merge with FSF.
10967         * config.guess: Merge with FSF.
10969 Fri Jul 24 08:43:36 1998  Doug Evans  <devans@canuck.cygnus.com>
10971         * configure (extraconfigdirs): New variable.
10972         (SUBDIRS): Add extraconfigdirs and recurse on them too.
10973         * Makefile.in (all): Move higher in file.
10974         (EXTRA_TARGET_HOST_ALL_MODULES): New variable.
10975         (EXTRA_TARGET_HOST_{INSTALL,CHECK}_MODULES): New variables.
10976         (ALL_MODULES): Add EXTRA_TARGET_HOST_ALL_MODULES.
10977         (CROSS_CHECK_MODULES): Add EXTRA_TARGET_HOST_CHECK_MODULES.
10978         (INSTALL_MODULES): Add EXTRA_TARGET_HOST_INSTALL_MODULES.
10980 1998-07-23  Brendan Kehoe  <brendan@cygnus.com>
10982         * Makefile.in (all-target-libjava): Depend on all-gcc and
10983         all-target-newlib.
10984         (configure-target-libjava): Depend on $(ALL_GCC).
10986 Sat Jul 18 14:32:43 CDT 1998  Robert Lipe  <robertl@dgii.com>
10988         * config.guess: (*-pc-sco3.2v5) Add detection for Pentium II.
10989         (*-pc-unixware7) Add detection for Pentium II, Pentium Pro.
10991 Fri Jul 17 13:30:18 1998  Ian Lance Taylor  <ian@cygnus.com>
10993         * ylwrap: Change absolute path checks to check for DOS style path
10994         names.
10996         * ylwrap: Don't use a full path name if the source file is in the
10997         same directory.  From hjl@lucon.org (H.J. Lu).
10999         * config-ml.in: Default to being verbose, to match Feb 18 change to
11000         configure.
11002 Thu Jul 16 12:29:51 1998  Ian Lance Taylor  <ian@cygnus.com>
11004         Brought over from egcs:
11006         Sat Jun 27 22:46:32 1998  Jeffrey A Law  (law@cygnus.com)
11008         * configure.in (target_subdir): Set to ${target_alias} instead
11009         of "libraries".
11011         Mon Sep  1 16:45:44 1997  Jim Wilson  <wilson@cygnus.com>
11013         * configure.in (target_subdir): Set to libraries if enable_multilib.
11015 Wed Jul 15 01:00:54 1998  Ian Lance Taylor  <ian@cygnus.com>
11017         * Makefile.in ($(CONFIGURE_TARGET_MODULES)): If there are any
11018         multilibs, force reconfiguration the first time we create
11019         multilib.out in a subdirectory, in case TARGET_SUBDIR is `.'.
11021 Tue Jul 14 23:41:03 1998  Ian Lance Taylor  <ian@cygnus.com>
11023         * configure.in: Strip any --no option from CONFIG_ARGUMENTS, to
11024         avoid confusion with --no-recursion.
11026 Tue Jul 14 15:37:41 1998  Geoffrey Noer  <noer@cygnus.com>
11028         * configure.in: Win32 hosts shouldn't use install -x
11029         * install-sh: remove -x option, and special .exe-handling
11030         hack.
11032 Tue Jul 14 15:28:41 1998  Richard Henderson  <rth@cygnus.com>
11034         * config.guess: Recognize i586-pc-beos.
11035         * configure.in: Don't build some bits for beos.
11037 Tue Jul 14 13:22:18 1998  Ian Lance Taylor  <ian@cygnus.com>
11039         * configure: If CC is set but CFLAGS is not, and CC is gcc, make
11040         CFLAGS default to -O2.
11042         * ltmain.sh: Add some hacks to make SunOS --enable-shared work
11043         when using GNU ld.
11045 Fri Jul 10 13:18:23 1998  Ian Lance Taylor  <ian@cygnus.com>
11047         * ltmain.sh: Correct install when using a different shell.
11049 Tue Jul  7 15:24:38 1998  Ian Lance Taylor  <ian@cygnus.com>
11051         * ltconfig, ltmain.sh: Update to libtool 1.2b.
11053 Thu Jul  2 13:57:36 1998  Klaus Kaempf  <kkaempf@rmi.de>
11055         * makefile.vms: Update to build binutils/makefile.vms.  Add install
11056         target.
11058 Wed Jul  1 16:45:21 1998  Ian Lance Taylor  <ian@cygnus.com>
11060         * ltconfig: Update to correct AIX handling.
11062 Sat Jun 27 22:46:32 1998  Jeffrey A Law  (law@cygnus.com)
11064         * Makefile.in (BASE_FLAGS_TO_PASS): Add TARGET_SUBDIR.
11066         * configure.in (target_subdir): Set to ${target_alias} instead
11067         of "libraries".
11069 1998-06-26  Manfred Hollstein  <manfred@s-direktnet.de>
11071         * Makefile.in (BASE_FLAGS_TO_PASS): Add gcc_version_trigger.
11072         (Makefile): Depend on $(gcc_version_trigger).
11074         * configure (gcc_version): Change default initializer to empty
11075         string.
11076         (gcc_version_trigger): New variable; pass this variable down
11077         to subdir configures to enable them checking gcc's version
11078         themselves. Emit make macros for both gcc_version vars.
11079         (topsrcdir): Initialize reliably.
11080         (recursion line): Remove --with-gcc-version=${gcc_version}.
11082 1998-06-24  Manfred Hollstein  <manfred@s-direktnet.de>
11084         * configure (enable_version_specific_runtime_libs): Implement new flag
11085         --enable-version-specific-runtime-libs which installs C++ runtime stuff
11086         in $(libsubdir); emit definition in each generated Makefile.
11087         (gxx_include_dir): Initialize depending on
11088         $enable_version_specific_runtime_libs.
11090 1998-06-24  Manfred Hollstein  <manfred@s-direktnet.de>
11092         * configure (gcc_version): Initialize properly depending on
11093         how and where configure is started.
11094         (recursion line): Pass a --with-gcc-version=${gcc_version}
11095         to configures in subdirs.
11097 Wed Jun 24 16:01:59 1998  John Metzler  <jmetzler@cygnus.com>
11099         * configure.in (noconfigdirs): Add configure pattern for mips tx39
11100         cygmon
11102 Tue Jun 23 22:42:32 1998  Mark Alexander  <marka@cygnus.com>
11104         * configure.in: Add cygmon and libstub support for mn10200.
11106 1998-06-19  Manfred Hollstein  <manfred@s-direktnet.de>
11108         * configure (gcc_version): Add new variable describing the
11109         particular gcc version we're building.
11110         * Makefile.in (libsubdir): Add new macro for the directory
11111         in which the compiler finds executables, libraries, etc.
11112         (BASE_FLAGS_TO_PASS): Pass down gcc_version, target_alias
11113         and libsubdir.
11115 Fri Jun 19 02:36:59 1998  Alexandre Oliva <oliva@dcc.unicamp.br>
11117         * Makefile.in (local-clean): Remove *.log.
11118         (warning.log): Built with warn_summary from build.log.
11119         (mail-report.log): Run test_summary.
11120         (mail-report-with-warnings.log): Run test_summary including
11121         warning.log in the report.
11123 Thu Jun 18 11:26:03 1998  Robert Lipe  <robertl@dgii.com>
11125         * config.guess: Detection of Pentium II for *-sco-3.2v5*.
11127 Mon Jun 15 14:53:54 1998  Andrew Cagney  <cagney@b1.cygnus.com>
11129         * Makefile.in (grep): Grep no longer depends on libiberty.
11131 Fri Jun 12 14:03:34 1998  Syd Polk  <spolk@cygnus.com>
11133         * Makefile.in: all-snavigator needs all-libgui.
11135 Thu Jun 11 19:43:47 1998  Mark Alexander  <marka@cygnus.com>
11137         * configure.in: Add cygmon and libstub support for mn10300.
11139 Wed Jun 10 11:19:47 1998  Ian Lance Taylor  <ian@cygnus.com>
11141         * missing: Update to version from automake 1.3.
11143         * ltmain.sh: On installation, don't get confused if the same name
11144         appears more than once in the list of library names.
11146 Wed Jun  3 14:51:42 1998  Ian Lance Taylor  <ian@cygnus.com>
11148         * config.sub: Accept m68060 and m5200 as CPU names.
11150 Mon Jun  1 17:25:16 1998  Ian Lance Taylor  <ian@cygnus.com>
11152         * configure: Use && rather than using -a in test, because odd
11153         strings can confuse test.
11154         * configure.in: Likewise.
11156 Thu May 28 19:31:13 1998  Ian Lance Taylor  <ian@cygnus.com>
11158         * ltconfig, ltmain.sh: Bring in Visual C++ support.
11160 Sat May 23 23:44:13 1998  Alexandre Oliva <oliva@dcc.unicamp.br>
11162         * Makefile.in (boostrap2-lean, bootstrap3-lean,
11163         bootstrap4-lean): New targets.
11165 Mon May 11 23:55:56 1998  Jeffrey A Law  (law@cygnus.com)
11167         * mpw-* Delete.  Not used.
11169 Mon May 11 23:11:34 1998  Jeffrey A Law  (law@cygnus.com)
11171         * COPYING.LIB: Update FSF address.
11173 Fri May  8 01:30:20 1998  Ian Lance Taylor  <ian@cygnus.com>
11175         * ltconfig, ltmain.sh: Update to libtool 1.2a.
11177         * Makefile.in (GASB_SUPPORT_DIRS): Remove intl; already included via
11178         GAS_SUPPORT_DIRS.
11180 Thu May  7 17:27:35 1998  Ian Lance Taylor  <ian@cygnus.com>
11182         * ltconfig, ltmain.sh: Avoid producing a version number if
11183         -version-info was not used.
11185 Tue May  5 18:02:24 1998  Ian Lance Taylor  <ian@cygnus.com>
11187         * configure.in: Add --with-newlib to CONFIG_ARGUMENTS if we are
11188         building with newlib.
11190 1998-04-30  Paul Eggert  <eggert@twinsun.com>
11192         * Makefile.in (EXTRA_GCC_FLAGS): Remove backslash at end;
11193         Solaris `make' causes it to continue to next definition.
11195 Tue Apr 28 16:24:24 1998  Jason Molenda  (crash@bugshack.cygnus.com)
11197         * Makefile.in (install-gdbtk): Call this 'install-gdb' so that
11198         the right GUI libraries and files are installed along with GDB.
11200 Tue Apr 28 18:11:24 1998  Ian Lance Taylor  <ian@cygnus.com>
11202         * configure.in: Change alpha to alpha* in several places.
11204 Tue Apr 28 07:42:00 1998  Mark Alexander  <marka@cygnus.com>
11206         * config.sub: Recognize sparc86x.
11208 Tue Apr 28 07:35:02 1998  Michael Meissner  <meissner@cygnus.com>
11210         * configure.in (--enable-target-optspace): Remove debug echo.
11212 Thu Apr 23 21:31:16 1998  Jim Wilson  <wilson@cygnus.com>
11214         * configure: Set CXXFLAGS from CXXFLAGS, not CFLAGS.
11216 Thu Apr 23 12:26:38 1998  Ian Lance Taylor  <ian@cygnus.com>
11218         * ltconfig: Update cygwin32 support.
11220         * Makefile.in (GAS_SUPPORT_DIRS): Add intl.
11221         (BINUTILS_SUPPORT_DIRS, GASB_SUPPORT_DIRS): Likewise.
11222         (GDB_SUPPORT_DIRS): Likewise.
11224 Wed Apr 22 12:30:10 1998  Michael Meissner  <meissner@cygnus.com>
11226         * configure.in (target_makefile_frag): If --enable-target-optspace,
11227         use -Os to compile target libraries rather than -O2.  Default to
11228         using -Os for d10v and m32r if --{enable,disable}-target-optspace is
11229         not used.
11230         * configure.in (target_cflags): Ditto for d30v.
11232 Tue Apr 21 23:06:54 1998  Tom Tromey  <tromey@cygnus.com>
11234         * Makefile.in (all-bfd): Depend on all-intl.
11235         (all-binutils): Likewise.
11236         (all-gas): Likewise.
11237         (all-gprof): Likewise.
11238         (all-ld): Likewise.
11240 1998-04-19  Brendan Kehoe  <brendan@cygnus.com>
11242         * configure.in (host_tools): Fix typo, lbtool -> libtool.
11244 Fri Apr 17 16:20:42 1998  Ian Lance Taylor  <ian@cygnus.com>
11246         * Makefile.in (all-bfd): Depend upon all-libiberty.
11248         * ltconfig, ltmain.sh: Bring in newer cygwin32 support.
11250 Fri Apr 17 12:22:22 1998  Bob Manson  <manson@charmed.cygnus.com>
11252         * Makefile.in: Add libstub.
11254         * configure.in: Ditto. Build libstub for targets that have cygmon
11255         support.
11257 Tue Apr 14 18:01:55 1998  Ian Lance Taylor  <ian@cygnus.com>
11259         * configure.in: Don't set PICFLAG on ix86-cygwin32.
11261 Tue Apr 14 12:24:45 1998  J. Kean Johnston  <jkj@sco.com>
11263         * configure.in: Recognise i[3456]96-*-sysv5* as a valid host, and
11264         use mh-sysv5 if specified.  Support gprof on SCO Open Server.
11266 Tue Apr 14 11:33:51 1998  Krister Walfridsson <cato@df.lth.se>
11268         * configure: Define DEFAULT_M4 by searching PATH.
11269         * Makfile.in: Use DEFAULT_M4.
11271 Mon Apr 13 15:37:24 1998  Ian Lance Taylor  <ian@cygnus.com>
11273         * ltconfig: Add cygwin32 support.
11275         * Makefile.in, configure.in: Add libtool as a native only directory
11276         to configure and build.
11278 Sun Apr 12 20:58:46 1998  Jeffrey A Law  (law@cygnus.com)
11280         * Makefile.in (INSTALL_MODULES): Remove texinfo.
11282 Wed Apr  8 13:18:56 1998  Philippe De Muyter  <phdm@macqel.be>
11284         * Makefile.in (EXTRA_GCC_FLAGS): XFOO lines shortened.
11286 Thu Apr  2 14:48:44 1998  Geoffrey Noer  <noer@cygnus.com>
11288         * Makefile.in: add ash make rules
11289         * configure.in: add ash to native_only and host_tools lists
11291 Thu Mar 26 12:53:20 1998  Tom Tromey  <tromey@cygnus.com>
11293         * Makefile.in (all-gettext, all-intl): New targets.
11294         (ALL_MODULES): Added all-gettext, all-intl.
11295         (CROSS_CHECK_MODULES): Added check-gettext, check-intl.
11296         (INSTALL_MODULES): Added install-gettext, install-intl.
11297         (CLEAN_MODULES): Added clean-gettext, clean-intl.
11299         * configure.in (host_tools): Added gettext.
11300         (native_only): Likewise.
11301         (noconfigdirs) [various cases]: Likewise.
11302         (host_libs): Added intl.
11304 Thu Mar 26 15:00:11 1998  Keith Seitz  <keiths@onions.cygnus.com>
11306         * configure: Do not disable building gdbtk for cygwin32 hosts.
11308 Wed Mar 25 10:04:18 1998  Nick Clifton  <nickc@cygnus.com>
11310         * configure.in: Add thumb-coff target.
11311         * config.sub: Add thumb-coff target.
11313 Wed Mar 25 11:49:12 1998  Jason Molenda  (crash@bugshack.cygnus.com)
11315         * Makefile.in: Revert yesterday's change.
11316         (all-target-winsup):  all-target-librx stays out of here.
11318 Tue Mar 24 16:58:29 1998  Jason Molenda  (crash@bugshack.cygnus.com)
11320         * Makefile.in (TARGET_CONFIGDIRS, ALL_TARGET_MODULES,
11321         CONFIGURE_TARGET_MODULES, CHECK_TARGET_MODULES,
11322         INSTALL_TARGET_MODULES, CLEAN_TARGET_MODULES, all-target-winsup):
11323         Remove references to librx and libg++.
11325 Tue Mar 24 18:28:12 1998  Eric Mumpower  <nocturne@cygnus.com>
11327         * Makefile.in (BASE_FLAGS_TO_PASS): Pass $(lispdir) down to
11328         recursive makes
11330 Tue Mar 24 11:37:45 1998  Ian Lance Taylor  <ian@cygnus.com>
11332         * Makefile.in (CC_FOR_TARGET): Use $(TARGET_SUBDIR) when passing -B
11333         for newlib directory.
11334         (CXX_FOR_TARGET): Likewise.
11336 Mon Mar 23 11:30:21 1998  Jeffrey A Law  (law@cygnus.com)
11338         * ltconfig: Update after libtool/ltconfig.in change for
11339         hpux11.
11341 Fri Mar 20 18:51:43 1998  Ian Lance Taylor  <ian@cygnus.com>
11343         * ltconfig, ltmain.sh: Update to libtool 1.2.
11345 Fri Mar 20 09:32:14 1998  Manfred Hollstein  <manfred@s-direktnet.de>
11347         * Makefile.in (install-gcc): Don't specify LANGUAGES here.
11348         (install-gcc-cross): Instead, override LANGUAGES here.
11350 1998-03-18  Dave Love  <d.love@dl.ac.uk>
11352         * Makefile.in ($(CONFIGURE_TARGET_MODULES)): Set CONFIG_SITE to a
11353         non-existent file since /dev/null loses with bash 2.0/autoconf 2.12.
11355 Wed Mar 18 09:24:59 1998  Nick Clifton  <nickc@cygnus.com>
11357         * configure.in: Add Thumb-pe target.
11359 Tue Mar 17 16:59:00 1998  Syd Polk <spolk@cygnus.com>
11361         * Makefile.in - changed sn targets to snavigator
11362         * configure.in - changed sn targets to snavigator
11364 Tue Mar 17 10:33:28 1998  Manfred Hollstein  <manfred@s-direktnet.de>
11366         * config-ml.in: After building symlink tree call make distclean
11367         if a Makefile got linked into ${ml_dir}/${ml_libdir}; this happens
11368         to be the case for libiberty.
11370 Tue Mar 17 10:22:37 1998  H.J. Lu  (hjl@gnu.ai.mit.edu)
11372         * configure: When making link, also check the current
11373         directory. The configure scripts may create one.
11375 Fri Mar  6 01:02:03 1998  Richard Henderson  <rth@cygnus.com>
11377         * config.sub: Accept alphapca56 and alphaev6 properly.
11379 Fri Mar  6 00:14:55 1998  Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
11381         * configure.in: Revert 3 Jan change for powerpc-linux-gnulibc1.
11383 Mon Feb 23 15:09:18 1998  Bruno Haible <bruno@linuix.mathematik.uni-karlsruhe.de
11385         * config.sub (sco5): Fix typo.
11387 Mon Feb 23 14:46:06 1998  Ian Lance Taylor  <ian@cygnus.com>
11389         * Makefile.in (INSTALL_MODULES): Move install-tcl before
11390         install-itcl.
11391         (install-itcl): Remove dependency on install-tcl.
11393 Mon Feb 23 09:53:28 1998  Mark Alexander  <marka@cygnus.com>
11395         * configure.in: Remove libgloss from noconfigdirs for MN10300.
11397 Thu Feb 19 13:40:41 1998  Ian Lance Taylor  <ian@cygnus.com>
11399         * configure.in: Don't build libgui for a cygwin32 target when not on
11400         a cygwin32 host.
11402 Wed Feb 18 12:29:00 1998  Jason Molenda  (crash@bugshack.cygnus.com)
11404         * configure (redirect): Set to null, so default behavior of
11405         configure is now --verbose.
11407 1998-02-16  Dave Love  <d.love@dl.ac.uk>
11409         * Makefile.in ($(CONFIGURE_TARGET_MODULES)): Run configure with
11410         CONFIG_SITE=/dev/null to forestall lossage with site configuration.
11412 Mon Feb 16 12:23:53 1998  Manfred Hollstein  <Manfred.Hollstein@ks.sel.alcatel.de>
11414         * Makefile.in (BASE_FLAGS_TO_PASS, EXTRA_TARGET_FLAGS): Really add
11415         this change to sync Makefile.in with its ChangeLog entries.
11417 Thu Feb 12 15:03:08 1998  H.J. Lu  <hjl@gnu.org>
11419         * ltmain.sh (mkdir): Check that the directory doesn't exist
11420         before we exit with error, so that we don't get races during
11421         parallel builds.
11423 Sat Feb  7 15:19:18 1998  Ian Lance Taylor  <ian@cygnus.com>
11425         * ltconfig, ltmain.sh: Update from libtool 1.0i.
11427 Fri Feb  6 01:33:52 1998  Manfred Hollstein  <manfred@s-direktnet.de>
11429         * Makefile.in (BASE_FLAGS_TO_PASS): Don't pass PICFLAG and
11430         PICFLAG_FOR_TARGET.
11431         (EXTRA_TARGET_FLAGS): Don't pass PICFLAG_FOR_TARGET.
11433         * configure: Emit a definition for the new macro enable_shared
11434         into each Makefile.
11436 Thu Feb  5 17:01:12 1998  Jason Molenda  (crash@bugshack.cygnus.com)
11438         * configure.in (host_tools, native_only): Add libtool.
11440 Wed Feb  4 16:53:58 1998  Geoffrey Noer  <noer@cygnus.com>
11442         * configure.in: add target-gperf to noconfigdirs for Cygwin32.
11443         Fix typo in ming config comment.
11445 Wed Feb  4 18:56:13 1998  Ian Lance Taylor  <ian@cygnus.com>
11447         * ltconfig, ltmain.sh: Update from libtool 1.0h.
11449 Mon Feb  2 19:38:19 1998  Ian Lance Taylor  <ian@cygnus.com>
11451         * config.sub: Add tic30 cases, and map c30 to tic30.
11453 Sun Feb  1 02:40:41 1998  Richard Henderson  <rth@cygnus.com>
11455         * Makefile.in (TARGET_CONFIGDIRS): Add libf2c.
11456         (ALL_TARGET_MODULES, CONFIGURE_TARGET_MODULES): Similarly
11457         (CHECK_TARGET_MODULES, INSTALL_TARGET_MODULES): Similarly
11458         (CLEAN_TARGET_MODULES): Similarly
11459         (all-target-libf2c): Add dependences.
11460         * configure.in (target_libs): Add libf2c.
11462 Fri Jan 30 17:18:32 1998  Geoffrey Noer  <noer@cygnus.com>
11464         * configure.in: Remove expect from noconfigdirs when target
11465         is cygwin32.  OK to build expect and dejagnu with Canadian
11466         Cross.
11468 Wed Jan 28 12:58:49 1998  Ian Lance Taylor  <ian@cygnus.com>
11470         * configure.in: Do build expect, dejagnu, and cvssrc for a cygwin32
11471         host.
11473         * config.guess: Use ${UNAME_MACHINE} rather than i386 for cygwin32
11474         and mingw32.
11476 Wed Jan 28 10:26:37 1998  Manfred Hollstein  <manfred@s-direktnet.de>
11478         * Makefile.in (BASE_FLAGS_TO_PASS): Remove passing $(local_prefix)
11479         here as it is not defined in the toplevel Makefile.
11481 Tue Jan 27 23:25:06 1998  Manfred Hollstein  <manfred@s-direktnet.de>
11483         * configure (package_makefile_rules_frag): New variable, which names
11484         a file with generic rules, ...
11485         Change comment to mention we now have FIVE parts.
11486         * configure: Undo last change.
11488 Tue Jan 27 23:15:55 1998  Lassi A. Tuura  <lat@iki.fi>
11490         * config.guess: More accurate determination of HP processor types.
11491         * config.sub: More accurate determination of HP processor types.
11493 Sat Jan 24 01:59:45 1998  Manfred Hollstein  <manfred@s-direktnet.de>
11495         * configure (package_makefile_frag): Move inserting the
11496         ${package_makefile_frag} to where it should be according
11497         to the comment.
11499 Fri Jan 23 00:29:28 1998  Philip Blundell  <pb@nexus.co.uk>
11501         * config.guess: Add support for Linux/ARM.
11503 Thu Jan 22 15:14:01 1998  Fred Fish  <fnf@cygnus.com>
11505         * .cvsignore: Remove *-info and *-install since they match
11506         release-info and mpw-install, which we don't want to just ignore.
11508 Thu Jan 22 01:38:33 1998  Richard Henderson  <rth@cygnus.com>
11510         * configure.in: Revert 3 Jan change for alpha-linux-gnulibc1.
11512 Sat Jan 17 21:28:08 1998  Pieter Nagel <pnagel@epiuse.co.za>
11514         * Makefile.in (FLAGS_TO_PASS): Pass down gcc_include_dir and
11515         local_prefix to sub-make invocations.
11517 Sat Jan 17 21:04:59 1998 H.J. Lu  (hjl@gnu.org)
11519         * configure.in: Check makefile fragments in the source
11520         directory.
11522 Fri Jan 16 00:41:37 1998  Alexandre Oliva <oliva@dcc.unicamp.br>
11524         * configure.in: Check whether host and target makefile
11525         fragments exist before adding them to *_makefile_frag.
11527 Wed Jan 14 23:39:10 1998  Bob Manson  <manson@charmed.cygnus.com>
11529         * configure.in (target_configdirs): Add cygmon for sparc64-elf.
11531 Wed Jan 14 12:48:07 1998  Keith Seitz  <keiths@pizza.cygnus.com>
11533         * configure.in: Make sure we only replace RPATH_ENVVAR on
11534         lines which begin with RPATH_ENVVAR, i.e. add "^" to the
11535         regexp to sed.
11537         * Makefile.in (BASE_FLAGS_TO_PASS): Pass RRPATH_ENVVAR down
11538         to sub-makes.
11540 1998-01-13  Lee Iverson   (leei@ai.sri.com)
11542         * config-ml.in (multi-do): LDFLAGS must include multilib
11543         designator.
11545 Tue Jan 13 01:13:24 1998   Robert Lipe (robertl@dgii.com)
11547         * config.guess: Recognize i[3456]-i586-UnixWare7-sysv5.
11549 Sun Jan  4 01:06:55 1998  Mumit Khan  <khan@xraylith.wisc.edu>
11551         * config.sub: Add mingw32 support.
11552         * configure.in: Likewise.
11554 Sat Jan  3 12:11:05 1998 Franz Sirl <franz.sirl-kernel@lauterbach.com>
11556         * configure.in: Finalize support for {alpha|powerpc}*-*-linux-gnulibc1
11558 Sun Dec 28 11:28:58 1997  Jeffrey A Law  (law@cygnus.com)
11560         * Makefile.in (INSTALL_TARGET): Do install-gcc first.
11561         * configure (gxx_include_dir): Provide a definition for subdirs
11562         which do not use autoconf.
11564 Wed Dec 24 22:46:55 1997  Jeffrey A Law  (law@cygnus.com)
11566         * config.guess: Sync with egcs.  Picks up new alpha support,
11567         BeOS & some additional linux support.
11569 Tue Dec 23 12:44:24 1997  Jeffrey A Law  (law@cygnus.com)
11571         * config.guess: HP 9000/803 is a PA1.1 machine.
11573 Mon Dec 22 02:39:24 1997  Richard Henderson  <rth@cygnus.com>
11575         * configure.in: It's alpha*-...
11577 Sun Dec 21 16:53:12 1997  H.J. Lu  (hjl@gnu.ai.mit.edu)
11579         * configure.in (host_makefile_frag, target_makefile_frag):
11580         Handle multiple config files.
11581         (alpha-*-linux*): Treat alpha-*-linux* as alpha-*-linux* and
11582         alpha-*-*.
11584 Thu Dec 18 13:13:03 1997  Doug Evans  <devans@canuck.cygnus.com>
11586         * mkdep: New file.
11588 Wed Dec 17 09:53:02 1997  Michael Meissner  <meissner@cygnus.com>
11590         * configure.in (d30v-*-*): Allow configuring of libide, vmake, etc.
11592 Tue Dec 16 17:36:05 1997  Ian Lance Taylor  <ian@cygnus.com>
11594         * Makefile.in: Add libgui directory.
11595         (GDB_TK): Add all-libgui.
11596         * configure.in: Add libgui directory.
11597         * configure: Add all-libgui to GDB_TK.
11599 Mon Dec 15 16:12:28 1997  Nick Clifton  <nickc@cygnus.com>
11601         * config-ml.in (multidirs): Add m32r to multilib list.
11603 Fri Dec 12 10:43:31 1997  Brendan Kehoe  <brendan@canuck.cygnus.com>
11605         * Makefile.in (all-target-gperf): Change dependency to
11606         all-target-libstdc++.
11608 Thu Dec 11 23:30:51 1997  Fred Fish  <fnf@ninemoons.com>
11610         * config.guess: Add BeOS support.
11612 Wed Dec 10 15:10:38 1997  Ian Lance Taylor  <ian@cygnus.com>
11614         Source directory cvs renamed to cvssrc:
11615         * configure.in (host_tools): Change cvs to cvssrc.
11616         (native_only): Likewise.
11617         (noconfigdirs) [various cases]: Likewise.
11618         * Makefile.in (ALL_MODULES): Change all-cvs to all-cvssrc.
11619         (CROSS_CHECK_MODULES): Change check-cvs to check-cvssrc.
11620         (INSTALL_MODULES): Change install-cvs to install-cvssrc.
11621         (CLEAN_MODULES): Change clean-cvs to clean-cvssrc.
11622         (all-cvssrc): Rename target from all-cvs.
11624 Wed Dec  3 07:55:59 1997  Jeffrey A Law  (law@cygnus.com)
11626         * configure (gxx_include_dir): Fix thinko.
11628 Tue Dec  2 10:55:34 1997  Jeffrey A Law  (law@cygnus.com)
11630         * Makefile.in (INSTALL_TARGET_CROSS): Define.
11631         (install-cross, install-gcc-cross): New targets.
11633 Tue Dec  2 10:08:31 1997  Nick Clifton  <nickc@cygnus.com>
11635         * configure.in (noconfigdirs): Add support for Thumb target.
11637         * config.sub (maybe_os): Add support for Thumb target.
11639 Sun Nov 30 16:12:27 1997  Bob Manson  <manson@charmed.cygnus.com>
11641         * Makefile.in: Add rules for cygmon.
11643         * configure.in: Build cygmon for sparc-elf and sparclite-aout.
11645 Thu Nov 27 01:31:30 1997  Jeffrey A Law  (law@cygnus.com)
11647         * Makefile.in (INSTALL_TARGET): Do install-gcc first.
11648         * configure (gxx_include_dir): Provide a definition for subdirs
11649         which do not use autoconf.
11651 Wed Nov 26 11:53:33 1997  Keith Seitz  <keiths@onions.cygnus.com>
11653         * Makefile.in, configure, configure.in, ChangeLog: merge with foundry's
11654         11/18/97 build
11656 Wed Nov 26 16:08:50 1997  Jeffrey A Law  (law@cygnus.com)
11658         * From Franz Sirl.
11659         * config.guess (powerpc*-*-linux): Handle glibc2 beta release
11660         found on RedHat Linux systems.
11662 Fri Nov 21 09:51:01 1997  Jeffrey A Law  (law@cygnus.com)
11664         * config.guess (alpha stuff): Merge with FSF to avoid incorrect
11665         guesses.
11667 Thu Nov 13 11:38:37 1997  Jeffrey A Law  (law@cygnus.com)
11669         * configure.in (i[3456]86-ncr-sysv4.3*): Tweak.
11671 Mon Nov 10 15:23:21 1997  H.J. Lu  <hjl@gnu.ai.mit.edu>
11673         * ltmain.sh: If mkdir fails, check whether the directory was created
11674         anyhow by some other process.
11676 Mon Nov 10 14:38:03 1997  Michael Meissner  <meissner@cygnus.com>
11678         * configure.in (d30v-*-*): Configure all directories.
11680 Sun Nov  9 17:36:20 1997  Michael Meissner  <meissner@cygnus.com>
11682         * configure.in (d30v-*-*): Configure newlib, libiberty directories
11683         for the D30V.
11685 Sat Nov  8 14:42:59 1997  Michael Meissner  <meissner@cygnus.com>
11687         * configure.in (d30v-*-*): Configure target-libgloss on the D30V.
11689 Fri Nov  7 10:34:09 1997  Rob Savoye  <rob@darkstar.cygnus.com>
11691         * include/libiberty.h: Add extern "C" { so it can be used with C++
11692         progrms.
11693         * include/remote-sim.h:  Add extern "C" { so it can be used with C++
11694         programs.
11696 Thu Oct 30 11:09:29 1997  Michael Meissner  <meissner@cygnus.com>
11698         * configure.in (d30v-*-*): Configure GCC now.
11700 Mon Oct 27 13:17:24 1997  Stan Shebs  <shebs@andros.cygnus.com>
11702         * configure.in: Remove a "second pass" of tweaking noconfigdirs,
11703         is no longer needed.
11705 Mon Oct 27 12:03:53 1997  Jason Merrill  <jason@yorick.cygnus.com>
11707         * Makefile.in: check-target-libio depends on all-target-libstdc++.
11709 Sun Oct 26 11:48:27 1997  Manfred Hollstein  (manfred@s-direktnet.de)
11711         * Makefile.in (bootstrap-lean): Combined with `normal' bootstrap
11712         targets using "$@" to provide support for similar but not identical
11713         targets without having to duplicate code.
11715 Mon Oct 20 15:28:49 1997  Klaus K"ampf  <kkaempf@progis.de>
11717         * makefile.vms: Fix to work with DEC C.
11719 Tue Oct  7 23:58:57 1997  Gavin Koch  <gavin@cygnus.com>
11721         * config.sub: Add mips-tx39-elf to marketing names.
11723 Tue Oct  7 14:24:41 1997  Ian Lance Taylor  <ian@cygnus.com>
11725         * ltmain.sh: Handle symlinks in generated script.
11727 Wed Oct  1 13:11:27 1997  Ian Lance Taylor  <ian@cygnus.com>
11729         * configure: Handle autoconf style directory options: --bindir,
11730         --datadir, --includedir, --infodir, --libdir, --libexecdir,
11731         --mandir, --oldincludedir, --sbindir, --sharedstatedir,
11732         --sysconfdir.
11733         * Makefile.in (sbindir, libexecdir, sysconfdir): New variables.
11734         (sharedstatedir, localstatedir, oldincludedir): New variables.
11735         (BASE_FLAGS_TO_PASS): Pass down bindir, datadir, includedir,
11736         infodir, libdir, libexecdir, localstatedir, mandir, oldincludedir,
11737         sbindir, sharedstatedir, and sysconfdir.
11739 Mon Sep 29 00:38:08 1997 Aaron Jackson <jackson@negril.msrce.howard.edu>
11741         * Makefile.in (bootstrap-lean): New target.
11743 Wed Sep 24 18:06:27 1997  Stu Grossman  <grossman@babylon-5.cygnus.com>
11745         * configure.in (d30v):  Remove tcl, tk, expect, gdb, itcl, tix, db,
11746         sn, and gnuserv from noconfigdirs.
11748 Wed Sep 24 15:18:32 1997  Ian Lance Taylor  <ian@cygnus.com>
11750         * ltmain.sh: Tweak shell pattern to avoid bug in NetBSD /bin/sh.
11752 Thu Sep 18 23:58:27 1997  Jeffrey A Law  (law@cygnus.com)
11754         * Makefile.in (cross): New target.
11756 Thu Sep 18 21:43:23 1997  Alexandre Oliva  <oliva@dcc.unicamp.br>
11757                           Jeff Law         <law@cygnus.com>
11759         * Makefile.in (bootstrap2, bootstrap3): New targets.
11760         (all-bootstrap): Remove outdated and confusing target.
11761         (bootstrap, bootstrap2, bootstrap3): Don't pass BOOT_CFLAGS down.
11763 Thu Sep 18 15:37:42 1997  Andrew Cagney  <cagney@b1.cygnus.com>
11765         * configure (tooldir): enable_gdbtk=YES for cygwin32, NO for
11766         windows.  Consistent with gdb/configure.
11768 1997-09-15 02:37  Ulrich Drepper  <drepper@cygnus.com>
11770         * configure.in: Name Linux target fragment.
11772         * configure: Rewrite so that project Makefile fragment is inserted
11773         first and appears last in the resulting Makefile.
11775 Tue Sep 16 09:55:07 1997  Andrew Cagney  <cagney@b1.cygnus.com>
11777         * Makefile.in (install-itcl): Install tcl first.
11779 Fri Sep 12 16:19:20 1997  Geoffrey Noer  <noer@cygnus.com>
11781         * configure.in: remove bison from noconfigdirs for Cygwin32 host
11783 Thu Sep 11 16:40:46 1997  H.J. Lu  (hjl@gnu.ai.mit.edu)
11785         * Makefile.in (local-distclean): Also remove mh-frag mt-frag.
11787         * configure.in (skipdirs): Add target-librx for Linux.
11788         (alpha-*-linux*): Use config/mh-elfalphapic and config/mt-elfalphapic.
11790 Wed Sep 10 21:29:54 1997  Jeffrey A Law  (law@cygnus.com)
11792         * Makefile.in (bootstrap): New target.
11794 Wed Sep 10 15:19:22 1997  Jeffrey A Law  (law@cygnus.com)
11796         * config.sub: Accept 'amigados' for backward compatability.
11798 Mon Sep  8 20:46:20 1997  Ian Lance Taylor  <ian@cygnus.com>
11800         * config.guess: Merge with FSF.
11802 Sun Sep  7 23:18:32 1997  Fred Fish  <fnf@ninemoons.com>
11804         * config.sub: Change 'amigados' to 'amigaos' to match current usage.
11806 Sun Sep  7 15:55:28 1997  Gavin Koch  <gavin@cygnus.com>
11808         * config.sub: Add "marketing-names" patch.
11810 Fri Sep  5 16:11:28 1997  Joel Sherrill  (joel@OARcorp.com)
11812         * configure.in (*-*-rtems*): Do not build libgloss for rtems.
11814 Fri Sep  5 12:27:17 1997  Jeffrey A Law  (law@cygnus.com)
11816         * config.sub: Handle v850-elf.
11818 Wed Sep  3 22:01:58 1997  Fred Fish  <fnf@ninemoons.com>
11820         * .cvsignore (*-install): Remove.
11822 Wed Sep  3 12:15:24 1997  Chris Provenzano  <proven@cygnus.com>
11824         * ltconfig: Set CONFIG_SHELL in libtool.
11825         * ltmain.sh: Use CONFIG_SHELL instead of /bin/sh
11827 Mon Sep  1 16:45:44 1997  Jim Wilson  <wilson@cygnus.com>
11829         * configure.in (target_subdir): Set to libraries if enable_multilib.
11831 Wed Aug 27 16:15:11 1997  Jim Wilson  <wilson@cygnus.com>
11833         * config.guess: Update from gcc directory.
11835 Tue Aug 26 16:46:46 1997  Andrew Cagney  <cagney@b1.cygnus.com>
11837         * Makefile.in (all-sim): Depends on all-readline.
11839 Wed Aug 20 19:57:37 1997  Jason Merrill  <jason@yorick.cygnus.com>
11841         * Makefile.in (BISON, YACC): Use $$s.
11842         (all-bison): Depend on all-texinfo.
11844 Tue Aug 19 01:41:32 1997  Jason Merrill  <jason@yorick.cygnus.com>
11846         * Makefile.in (BISON): Add -L flag.
11847         (YACC): Likewise.
11849 Mon Aug 18 11:30:50 1997  Nick Clifton  <nickc@cygnus.com>
11851         * configure.in (noconfigdirs): Add support for v850e target.
11853         * config.sub (maybe_os): Add support for v850e target.
11855 Mon Aug 18 11:30:50 1997  Nick Clifton  <nickc@cygnus.com>
11857         * configure.in (noconfigdirs): Add support for v850ea target.
11859         * config.sub (maybe_os): Add support for v850ea target.
11861 Mon Aug 18 09:24:06 1997  Gavin Koch  <gavin@cygnus.com>
11863         * config.sub: Add mipstx39.  Delete r3900.
11865 Mon Aug 18 17:20:10 1997  Jason Molenda  (crash@godzilla.cygnus.co.jp)
11867         * Makefile.in (all-autoconf): Depends on all-texinfo.
11869 Fri Aug 15 23:09:26 1997  Michael Meissner  <meissner@cygnus.com>
11871         * config-ml.in ({powerpc,rs6000}*-*-*): Update to current AIX and
11872         eabi targets.
11874 Thu Aug 14 14:42:17 1997  Ian Lance Taylor  <ian@cygnus.com>
11876         * configure: Get CFLAGS and CXXFLAGS from Makefile, if possible.
11878         * configure: When handling a Canadian Cross, handle YACC as well as
11879         BISON.  Just set BISON to bison.  When setting YACC, prefer bison.
11880         * Makefile.in (all-bison): Depend upon all-texinfo.
11882 Tue Aug 12 20:09:48 1997  Jason Merrill  <jason@yorick.cygnus.com>
11884         * Makefile.in (BISON): bison, not byacc or bison -y.
11885         (YACC): bison -y or byacc or yacc.
11886         (various): Add *-bison as appropriate.
11887         (taz): No need to mess with BISON anymore.
11889 Tue Aug 12 22:33:08 1997  Ian Lance Taylor  <ian@cygnus.com>
11891         * configure: If OSTYPE matches *win32*, try to find a good value for
11892         CONFIG_SHELL.
11894 Sun Aug 10 14:41:11 1997  Ian Lance Taylor  <ian@cygnus.com>
11896         * Makefile.in (taz): Get the version number from AM_INIT_AUTOMAKE in
11897         configure.in if it is present.
11899 Sat Aug  9 00:58:01 1997  Ian Lance Taylor  <ian@cygnus.com>
11901         * Makefile.in (LD_FOR_TARGET): Change ld.new to ld-new.
11903 Fri Aug  8 16:30:13 1997  Doug Evans  <dje@canuck.cygnus.com>
11905         * config.sub: Recognize `arc' cpu.
11906         * configure.in: Likewise.
11907         * config-ml.in: Likewise.
11909 Thu Aug  7 11:02:34 1997  Ian Lance Taylor  <ian@cygnus.com>
11911         * Makefile.in ($(INSTALL_X11_MODULES)): Depend upon installdirs.
11913 Wed Aug  6 16:27:29 1997  Chris Provenzano  <proven@cygnus.com>
11915         * configure: Changed sed delimiter from ':' to '|' when
11916         attempting to substitute ${config_shell} for SHELL. On
11917         NT ${config_shell} may contain a ':' in it.
11919 Wed Aug  6 12:29:05 1997  Jason Merrill  <jason@yorick.cygnus.com>
11921         * Makefile.in (EXTRA_GCC_FLAGS): Fix for non-bash shells.
11923 Wed Aug  6 00:42:35 1997  Ian Lance Taylor  <ian@cygnus.com>
11925         * Makefile.in (AS_FOR_TARGET): Change as.new to as-new.
11927 Tue Aug  5 14:08:51 1997  Ian Lance Taylor  <ian@cygnus.com>
11929         * Makefile.in (NM_FOR_TARGET): Change nm.new to nm-new.
11931         * ylwrap: If the program is a relative path, force it to be
11932         absolute.
11934 Tue Aug  5 12:12:44 1997  Andrew Cagney  <cagney@b1.cygnus.com>
11936         * configure (tooldir): Set BISON to `bison -y' and not just bison.
11938 Mon Aug  4 22:59:02 1997  Andrew Cagney  <cagney@b1.cygnus.com>
11940         * Makefile.in (CC_FOR_TARGET): When winsup/Makefile present,
11941         correctly specify the target build directory $(TARGET_SUBDIR)/winsup
11942         for libraries.
11944 Mon Aug  4 12:40:24 1997  Jason Merrill  <jason@yorick.cygnus.com>
11946         * Makefile.in (EXTRA_GCC_FLAGS): Fix handling of macros with values
11947         separated by spaces.
11949 Thu Jul 31 19:49:49 1997  Ian Lance Taylor  <ian@cygnus.com>
11951         * ylwrap: New file.
11952         * Makefile.in (DEVO_SUPPORT): Add ylwrap.
11954         * ltmain.sh: Handle /bin/sh at start of install program.
11956         * Makefile.in (DEVO_SUPPORT): Add ltconfig, ltmain.sh, and missing.
11958         * ltconfig, ltmain.sh: New files, from libtool 1.0.
11959         * missing: New file, from automake 1.2.
11961 Thu Jul 24 12:57:56 1997  Ian Lance Taylor  <ian@cygnus.com>
11963         * Makefile.in: Treat tix like tk, putting it in X11_MODULES.  Add
11964         check-tk to CHECK_X11_MODULES.
11966 Wed Jul 23 17:03:29 1997  Ian Lance Taylor  <ian@cygnus.com>
11968         * config.sub: Merge with FSF.
11970 Tue Jul 22 19:08:29 1997  Ian Lance Taylor  <ian@cygnus.com>
11972         * config.guess: Merge with FSF.
11974 Tue Jul 22 14:50:42 1997  Robert Hoehne <robert.hoehne@Mathematik.TU-Chemnitz.DE>
11976         * configure: Treat msdosdjgpp like go32.
11977         * configure.in: Likewise.  Don't remove gprof for go32.
11979         * configure: Change Makefile.tem2 to Makefile.tm2.
11981 Mon Jul 21 10:31:26 1997  Stephen Peters  <speters@cygnus.com>
11983         * configure.in (noconfigdirs): For alpha-dec-osf*, don't ignore grep.
11985 Tue Jul 15 14:33:03 1997  Brendan Kehoe  <brendan@lisa.cygnus.com>
11987         * install-sh (chmodcmd): Set to null if the DST directory already
11988         exists.  Same as Nov 11th change.
11990 Mon Jul 14 11:01:15 1997  Martin M. Hunt  <hunt@cygnus.com>
11992         * configure (GDB_TK): Needs itcl and tix.
11994 Mon Jul 14 00:32:10 1997  Jason Merrill  <jason@yorick.cygnus.com>
11996         * config.guess: Update from FSF.
11998 Fri Jul 11 11:57:11 1997  Martin M. Hunt  <hunt@cygnus.com>
12000         * Makefile.in (GDB_TK): Depend on itcl and tix.
12002 Fri Jul  4 13:25:31 1997  Ian Lance Taylor  <ian@cygnus.com>
12004         * Makefile.in (INSTALL_PROGRAM_ARGS): New variable.
12005         (INSTALL_PROGRAM): Use $(INSTALL_PROGRAM_ARGS).
12006         (INSTALL_SCRIPT): New variable.
12007         (BASE_FLAGS_TO_PASS): Pass down INSTALL_SCRIPT.
12008         * configure.in: If host is *-*-cygwin32*, set INSTALL_PROGRAM_ARGS
12009         to -x.
12010         * install-sh: Add support for -x option.
12012 Mon Jun 30 15:51:30 1997  Ian Lance Taylor  <ian@cygnus.com>
12014         * configure.in, Makefile.in: Treat tix like itcl.
12016 Thu Jun 26 13:59:19 1997  Ian Lance Taylor  <ian@cygnus.com>
12018         * Makefile.in (WINDRES): New variable.
12019         (WINDRES_FOR_TARGET): New variable.
12020         (BASE_FLAGS_TO_PASS): Add WINDRES_FOR_TARGET.
12021         (EXTRA_HOST_FLAGS): Add WINDRES.
12022         (EXTRA_TARGET_FLAGS): Add WINDRES.
12023         (EXTRA_GCC_FLAGS): Add WINDRES.
12024         ($(DO_X)): Pass down WINDRES.
12025         ($(CONFIGURE_TARGET_MODULES)): Set WINDRES when configuring.
12026         * configure: Treat WINDRES like DLLTOOL, and WINDRES_FOR_TARGET like
12027         DLLTOOL_FOR_TARGET.
12029 Wed Jun 25 15:01:26 1997  Felix Lee  <flee@cygnus.com>
12031         * configure.in: configure sim before gdb for win32-x-ppc
12033 Wed Jun 25 12:18:54 1997  Brendan Kehoe  <brendan@lisa.cygnus.com>
12035         Move gperf into the toplevel, from libg++.
12036         * configure.in (target_tools): Add target-gperf.
12037         (native_only): Add target-gperf.
12038         * Makefile.in (all-target-gperf): New target, depend on
12039         all-target-libg++.
12040         (configure-target-gperf): Empty rule.
12041         (ALL_TARGET_MODULES): Add all-target-gperf.
12042         (CONFIGURE_TARGET_MODULES): Add configure-target-gperf.
12043         (CHECK_TARGET_MODULES): Add check-target-gperf.
12044         (INSTALL_TARGET_MODULES): Add install-target-gperf.
12045         (CLEAN_TARGET_MODULES): Add clean-target-gperf.
12047 Mon Jun 23 10:51:53 1997  Jeffrey A Law  (law@cygnus.com)
12049         * config.sub (mn10200): Recognize new basic machine.
12051 Thu Jun 19 14:16:42 1997  Brendan Kehoe  <brendan@lisa.cygnus.com>
12053         * configure.in: Don't set ENABLE_MULTILIB, so we'll be passing
12054         --enable-multilib down to subdirs; setting TARGET_SUBDIR was enough.
12056 Tue Jun 17 15:31:20 1997  Brendan Kehoe  <brendan@lisa.cygnus.com>
12058         * configure.in: If we're building mips-sgi-irix6* native, turn on
12059         ENABLE_MULTILIB and set TARGET_SUBDIR.
12061 Tue Jun 17 12:20:59 1997  Tom Tromey  <tromey@cygnus.com>
12063         * Makefile.in (all-sn): Depend on all-grep.
12065 Mon Jun 16 11:11:10 1997  Ian Lance Taylor  <ian@cygnus.com>
12067         * configure.in: Use mh-ppcpic and mt-ppcpic for powerpc*-* targets.
12069         * configure: Set CFLAGS and CXXFLAGS, and substitute them into
12070         Makefile.  From Jeff Makey <jeff@cts.com>.
12071         * Makefile.in: Add comment for CFLAGS and CXXFLAGS.
12073         * Makefile.in (DISTBISONFILES): Remove.
12074         (taz): Don't futz with DISTBISONFILES.  Change BISON to use
12075         $(DEFAULT_YACC).
12077         * configure.in: Build itl, db, sn, etc., when building for native
12078         cygwin32.
12080         * Makefile.in (LD): New variable.
12081         (EXTRA_HOST_FLAGS): Pass down LD.
12082         ($(DO_X)): Likewise.
12084 Mon Jun 16 11:10:35 1997  Philip Blundell  <Philip.Blundell@pobox.com>
12086         * Makefile.in (INSTALL): Use $(SHELL) when executing install-sh.
12088 Fri Jun 13 10:22:56 1997  Bob Manson  <manson@charmed.cygnus.com>
12090         * configure.in (targargs): Strip out any supplied --build argument
12091         before adding our own. Always add --build.
12093 Thu Jun 12 21:12:28 1997  Bob Manson  <manson@charmed.cygnus.com>
12095         * configure.in (targargs): Pass --build if we're doing
12096         a cross-compile.
12098 Fri Jun  6 21:38:40 1997  Rob Savoye  <rob@chinadoll.cygnus.com>
12100         * configure: Use '|' instead of ":" as the separator in
12101         sed. Otherwise sed chokes on NT path names with drive
12102         designators. Also look for "?:*" as the leading characters in an
12103         absolute pathname.
12105 Mon Jun  2 13:05:20 1997  Gavin Koch  <gavin@cygnus.com>
12107         * config.sub: Support for r3900.
12109 Wed May 21 17:33:31 1997  Ian Lance Taylor  <ian@cygnus.com>
12111         * configure.in: Use install-sh, not install.sh.
12113 Wed May 14 16:06:51 1997  Ian Lance Taylor  <ian@cygnus.com>
12115         * Makefile.in (taz): Improve check for BISON so it doesn't try to
12116         apply it twice.
12118 Fri May  9 17:22:05 1997  Ian Lance Taylor  <ian@cygnus.com>
12120         * Makefile.in (INSTALL_MODULES): Put install-opcodes before
12121         install-binutils.
12123 Thu May  8 17:29:50 1997  Ian Lance Taylor  <ian@cygnus.com>
12125         * Makefile.in: Add automake targets.
12126         * configure.in (host_tools): Add automake.
12128 Tue May  6 15:49:52 1997  Ian Lance Taylor  <ian@cygnus.com>
12130         * configure: Default CXX to c++, not gcc.
12131         * Makefile.in (CXX): Set to c++, not gcc.
12132         (CXX_FOR_TARGET): When cross, transform c++, not gcc.
12134 Thu May  1 10:11:43 1997  Geoffrey Noer  <noer@cygnus.com>
12136         * install-sh: try appending a .exe if source file doesn't
12137         exist
12139 Wed Apr 30 12:05:36 1997  Jason Merrill  <jason@yorick.cygnus.com>
12141         * configure.in: Turn on multilib by default.
12142         (cross_only): Remove target-libiberty.
12144         * Makefile.in (all-gcc): Don't depend on libiberty.
12146 Mon Apr 28 18:39:45 1997  Michael Snyder  <msnyder@cleaver.cygnus.com>
12148         * config.guess: improve algorithm for recognizing Gnu Hurd x86.
12150 Thu Apr 24 19:30:07 1997  Ian Lance Taylor  <ian@cygnus.com>
12152         * Makefile.in (DEVO_SUPPORT): Add mpw-install.
12153         (DISTBISONFILES): Add ld/Makefile.in
12155 Tue Apr 22 17:17:28 1997  Geoffrey Noer  <noer@pizza.cygnus.com>
12157         * configure.in: if target is cygwin32 but host isn't cygwin32,
12158         don't configure gdb tcl tk expect, not just gdb.
12160 Mon Apr 21 13:33:39 1997  Tom Tromey  <tromey@cygnus.com>
12162         * configure.in: Added gnuserv everywhere sn appears.
12164         * Makefile.in (ALL_MODULES): Added all-gnuserv.
12165         (CROSS_CHECK_MODULES): Added check-gnuserv.
12166         (INSTALL_MODULES): Added install-gnuserv.
12167         (CLEAN_MODULES): Added clean-gnuserv.
12168         (all-gnuserv): New target.
12170 Thu Apr 17 13:57:06 1997  Per Fogelstrom  <pefo@openbsd.org>
12172         * config.guess: Fixes for MIPS OpenBSD systems.
12174 Tue Apr 15 12:21:07 1997  Ian Lance Taylor  <ian@cygnus.com>
12176         * Makefile.in (INSTALL_XFORM): Remove.
12177         (BASE_FLAGS_TO_PASS): Remove INSTALL_XFORM.
12179         * mkinstalldirs: New file, copied from automake.
12180         * Makefile.in (installdirs): Rename from install-dirs.  Use
12181         mkinstalldirs.  Change all users.
12182         (DEVO_SUPPORT): Add mkinstalldirs.
12184 Mon Apr 14 11:21:38 1997  Ian Lance Taylor  <ian@cygnus.com>
12186         * install-sh: Rename from install.sh.
12187         * Makefile.in (INSTALL): Change install.sh to install-sh.
12188         (DEVO_SUPPORT): Likewise.
12190         * configure: Use ${config_shell} with ${moveifchange}.  From Thomas
12191         Graichen <graichen@rzpd.de>.
12193 Fri Apr 11 16:37:10 1997  Niklas Hallqvist  <niklas@appli.se>
12195         * config.guess: Recognize OpenBSD systems correctly.
12197 Fri Apr 11 17:07:04 1997  Jason Molenda  (crash@godzilla.cygnus.co.jp)
12199         * README, Makefile.in (ETC_SUPPORT): Remove references to
12200         cfg-paper*, configure.{texi,man,info*}._
12202 Sun Apr  6 18:47:57 1997  Andrew Cagney  <cagney@kremvax.cygnus.com>
12204         * Makefile.in (all.normal): Ensure that gcc is built after all
12205         the x11 - ie gdb - targets.
12207 Tue Apr  1 16:28:50 1997  Klaus Kaempf  <kkaempf@progis.de>
12209         * makefile.vms: Don't run conf-a-gas.
12211 Mon Mar 31 16:26:55 1997  Joel Sherrill  <joel@oarcorp.com>
12213         * configure.in (hppa1.1-*-rtems*): New target, like hppa-*-*elf*.
12215 Sun Mar 30 12:38:27 1997  Fred Fish  <fnf@cygnus.com>
12217         * configure.in: Remove noconfigdirs case since gdb also
12218         configures and builds for tic80-coff.
12220 Fri Mar 28 18:28:52 1997  Ian Lance Taylor  <ian@cygnus.com>
12222         * configure: Set cache_file to config.cache.
12223         * Makefile.in (local-distclean): Remove config.cache.
12225 Wed Mar 26 18:49:39 1997  Ian Lance Taylor  <ian@cygnus.com>
12227         * COPYING: Update FSF address.
12229 Wed Mar 26 10:38:25 1997  Michael Meissner  <meissner@cygnus.com>
12231         * configure.in (tic80-*-*): Remove G++ libraries and libgloss from
12232         noconfigdirs.
12234 Mon Mar 24 15:02:39 1997  Ian Lance Taylor  <ian@cygnus.com>
12236         * Makefile.in (install-dirs): Don't crash if prefix, and hence
12237         MAKEDIRS, is empty.
12239 Mon Mar 24 12:40:55 1997  Doug Evans  <dje@canuck.cygnus.com>
12241         * config.sub: Tweak mn10300 entry.
12243 Fri Mar 21 15:35:27 1997  Michael Meissner  <meissner@cygnus.com>
12245         * configure.in (host_tools): Put sim before gdb, so gdb's
12246         configure.tgt can determine if the simulator was configured.
12248 Sun Mar 16 16:07:08 1997  Fred Fish  <fnf@cygnus.com>
12250         * config.sub: Move BeOS $os case to be with other Cygnus
12251         local cases.
12253 Sun Mar 16 01:34:55 1997  Martin Hunt <hunt@cygnus.com>
12255         * config.sub: Remove misplaced comment that broke Linux.
12257 Sat Mar 15 22:50:15 1997  Fred Fish  <fnf@cygnus.com>
12259         * config.sub: Add BeOS support.
12261 Mon Mar 10 13:30:11 1997  Tom Tromey  <tromey@cygnus.com>
12263         * Makefile.in (CHECK_X11_MODULES): Don't run check-tk.
12265 Wed Mar  5 12:09:29 1997  Martin  <hunt@cygnus.com>
12267         * configure.in (noconfigdirs): Remove tcl and tk from
12268         noconfigdirs for cygwin32 builds.
12270 Fri Feb 28 18:20:15 1997  Fred Fish  <fnf@cygnus.com>
12272         * configure.in (tic80-*-*): Remove ld from noconfigdirs.
12274 Thu Feb 27 14:57:26 1997  Ken Raeburn  <raeburn@cygnus.com>
12276         * Makefile.in (GAS_SUPPORT_DIRS, BINUTILS_SUPPORT_DIRS): Remove
12277         make-all.com, use makefile.vms instead.
12279 Tue Feb 25 18:46:14 1997  Stan Shebs  <shebs@andros.cygnus.com>
12281         * config.sub: Accept -lnews*.
12283 Tue Feb 25 13:19:14 1997  Andrew Cagney  <cagney@kremvax.tpgi.com.au>
12285         * configure.in (noconfigdirs): Disable target-newlib,
12286         target-examples and target-libiberty for d30v.
12288 Fri Feb 21 17:56:25 1997  Martin M. Hunt  <hunt@pizza.cygnus.com>
12290         * configure.in (noconfigdirs): Enable ld for d30v.
12292 Fri Feb 21 20:58:51 1997  Michael Meissner  <meissner@cygnus.com>
12294         * configure.in (tic80-*-*): Build compiler.
12296 Sun Feb 16 15:41:09 1997  Andrew Cagney  <cagney@critters.cygnus.com>
12298         * configure.in (d30v-*): Remove sim directory from list of
12299         unsupported d30v directories
12301 Tue Feb 18 17:32:42 1997  Martin M. Hunt  <hunt@pizza.cygnus.com>
12303         * config.sub, configure.in: Add d30v target cpu.
12305 Thu Feb 13 22:04:44 1997  Klaus Kaempf  <kkaempf@progis.de>
12307         * makefile.vms: New file.
12308         * make-all.com: Remove.
12310 Wed Feb 12 12:54:18 1997  Jim Wilson  <wilson@cygnus.com>
12312         * Makefile.in (EXTRA_GCC_FLAGS): Add LIBGCC2_DEBUG_CFLAGS.
12314 Sat Feb  8 20:36:49 1997  Michael Meissner  <meissner@cygnus.com>
12316         * Makefile.in (all-itcl): The rule is all-itcl, not all-tcl.
12318 Tue Feb  4 11:39:29 1997  Tom Tromey  <tromey@cygnus.com>
12320         * Makefile.in (ALL_MODULES): Added all-db.
12321         (CROSS_CHECK_MODULES): Addec check-db.
12322         (INSTALL_MODULES): Added install-db.
12323         (CLEAN_MODULES): Added clean-db.
12325 Mon Feb  3 13:29:36 1997  Ian Lance Taylor  <ian@cygnus.com>
12327         * config.guess: Merge with latest FSF sources.
12329 Tue Jan 28 09:20:37 1997  Tom Tromey  <tromey@cygnus.com>
12331         * Makefile.in (ALL_MODULES): Added all-itcl.
12332         (CROSS_CHECK_MODULES): Added check-itcl.
12333         (INSTALL_MODULES): Added install-itcl.
12334         (CLEAN_MODULES): Added clean-itcl.
12336 Thu Jan 23 01:44:27 1997  Geoffrey Noer  <noer@cygnus.com>
12338         * configure.in: build gdb for mn10200
12340 Fri Jan 17 15:32:15 1997  Doug Evans  <dje@canuck.cygnus.com>
12342         * Makefile.in (all-target-winsup): Depend on all-target-libio.
12344 Mon Jan 13 22:46:54 1997  Michael Meissner  <meissner@tiktok.cygnus.com>
12346         * configure.in (tic80-*-*): Turn off most targets right now.
12348 Fri Jan  3 16:04:03 1997  Ian Lance Taylor  <ian@cygnus.com>
12350         * Makefile.in (MAKEINFO): Check for the existence of the Makefile,
12351         rather than the makeinfo program.
12352         (do-info): Depend upon all-texinfo.
12354 Tue Dec 31 16:00:31 1996  Ian Lance Taylor  <ian@cygnus.com>
12356         * configure.in: Remove uses of config/mh-linux.
12358         * config.sub, config.guess: Merge with latest FSF sources.
12360 Fri Dec 27 23:04:33 1996  Fred Fish  <fnf@cygnus.com>
12362         * config.sub (case $basic_machine): Add tic80 entries.
12364 Fri Dec 27 12:07:59 1996  Ian Lance Taylor  <ian@cygnus.com>
12366         * config.sub, config.guess: Merge with latest FSF sources.
12368 Wed Dec 18 22:46:39 1996  Stan Shebs  <shebs@andros.cygnus.com>
12370         * mpw-build.in: Build ld before gcc, use NewFolderRecursive.
12371         * mpw-config.in: Test for NewFolderRecursive.
12372         * mpw-install: Use symbolic name for startup filename.
12373         * mpw-README: Add various additional details.
12375 Wed Dec 18 13:11:46 1996  Jim Wilson  <wilson@cygnus.com>
12377         * configure.in (mips*-sgi-irix6*): Remove binutils from noconfigdirs.
12379 Wed Dec 18 10:29:31 1996  Jeffrey A Law  (law@cygnus.com)
12381         * configure.in: Do build gcc and the target libraries for
12382         the mn10200.
12384 Wed Dec  4 16:53:05 1996  Geoffrey Noer  <noer@cygnus.com>
12386         * configure.in: don't avoid building gdb for mn10300 any more
12387         * Makefile.in: double-quote GCC_FOR_TARGET line in EXTRA_GCC_FLAGS
12388         instead of single-quoting it.
12390 Tue Dec  3 23:26:50 1996  Jason Merrill  <jason@yorick.cygnus.com>
12392         * configure.in: Don't use --with-stabs on IRIX 6.
12394 Tue Dec  3 09:05:25 1996  Doug Evans  <dje@canuck.cygnus.com>
12396         * configure.in (m32r): Build gdb, libg++ now.
12398 Sun Dec  1 00:18:59 1996  Peter Schauer  (pes@regent.e-technik.tu-muenchen.de)
12400         * configure.in (mips*-sgi-irix6*):  Remove gdb and related
12401         directories from noconfigdirs.
12403 Tue Nov 26 11:45:33 1996  Kim Knuttila  <krk@cygnus.com>
12405         * config.sub (basic_machine): added mips16 configuration
12407 Sat Nov 23 19:26:22 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12409         * config.sub: Handle d10v-unknown.
12411 Sat Nov 23 10:23:01 1996  Gavin Koch  <gavin@cygnus.com>
12413         * config.sub: Handle v850-unknown.
12415 Thu Nov 21 16:19:44 1996  Geoffrey Noer  <noer@cygnus.com>
12417         * Makefile.in: add findutils
12418         * configure.in: add findutils to list of host_tools
12420 Wed Nov 20 10:09:01 1996  Jeffrey A Law  (law@cygnus.com)
12422         * config.sub: Handle mn10200 and mn10300.
12424 Tue Nov 19 16:35:14 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12426         * configure.in (d10v-*): Do not build librx.
12428 Mon Nov 18 13:28:41 1996  Jeffrey A Law  (law@cygnus.com)
12430         * configure.in (mn10300): Build everything except gdb & libgloss.
12432 Wed Nov 13 14:59:46 1996  Per Bothner  <bothner@deneb.cygnus.com>
12434         * config.guess:  Patch for Dansk Data Elektronik servers,
12435         from Niels Skou Olsen <nso@dde.dk>.
12437         For ncr, use /bin/uname rather than uname, since GNU uname does not
12438         support -p.  Suggested by Mark Mitchell <mmitchell@usa.net>.
12440         Patch for MIPS R4000 running System V,
12441         from Eric S. Raymond <esr@snark.thyrsus.com>.
12443         Fix thinko for nextstep.
12445         Patch for OSF1 in i?86, from Dan Murphy <dlm@osf.org> via Harlan Stenn.
12447         Sat Jun 24 18:58:17 1995  Morten Welinder  <terra+@cs.cmu.edu>
12448         * config.guess: Guess mips-dec-mach_bsd4.3.
12450         Thu Oct 10 04:07:04 1996  Harlan Stenn <harlan@pfcs.com>
12451         * config.guess (i?86-ncr-sysv*):  Emit just enough of the minor
12452         release numbers.
12453         * config.guess (mips-mips-riscos*):  Emit just enough of the
12454         release number.
12456         Tue Oct  8 10:37:22 1996  Frank Vance <fvance@waii.com>
12457         * config.guess (sparc-auspex-sunos*):  Added.
12458         (f300-fujitsu-*): Added.
12460         Wed Sep 25 22:00:35 1996  Jeff Woolsey <woolsey@jlw.com>
12461         * config.guess:  Recognize a Tadpole as a sparc.
12463 Wed Nov 13 00:53:09 1996  David J. MacKenzie  <djm@churchy.gnu.ai.mit.edu>
12465         * config.guess: Don't assume that NextStep version is either 2 or
12466         3.  NextStep 4 (aka OpenStep 4) has come out now.
12468 Mon Nov 11 23:52:03 1996  David J. MacKenzie  <djm@churchy.gnu.ai.mit.edu>
12470         * config.guess: Support Cray T90 that reports itself as "CRAY TS".
12471         From Rik Faith <faith@cs.unc.edu>.
12473 Fri Nov  8 11:34:58 1996  David J. MacKenzie  <djm@geech.gnu.ai.mit.edu>
12475         * config.sub: Contributions from bug-gnu-utils to:
12476         Support plain "hppa" (no version given) architecture, reported by
12477         OpenStep.
12478         OpenBSD like NetBSD.
12479         LynxOs is not a hardware supplier.
12481         * config.guess: Contributions from bug-gnu-utils to add support for:
12482         OpenBSD like NetBSD.
12483         Stratus systems.
12484         More Pyramid systems.
12485         i[n>4]86 Intel chips.
12486         M680[n>4]0 Motorola chips.
12487         Use unknown instead of lynx for hardware manufacturer.
12489 Mon Nov 11 10:09:08 1996  Brendan Kehoe  <brendan@lisa.cygnus.com>
12491         * install.sh (chmodcmd): Set to null if the DST directory already
12492         exists.
12494 Mon Nov 11 10:43:41 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12496         * configure.in (powerpc*-{eabi,elf,linux,rtem,sysv,solaris}*): Do
12497         not use mt-ppc target Makefile fragment any more.
12499 Sun Nov  3 19:17:07 1996  Stu Grossman  (grossman@critters.cygnus.com)
12501         * configure.in (*-*-windows):  Exclude everything but those dirs
12502         needed to build windows.
12504 Tue Oct 29 16:41:31 1996  Doug Evans  <dje@canuck.cygnus.com>
12506         * Makefile.in (all-target-winsup): Depend on all-target-librx.
12508 Mon Oct 28 17:32:46 1996  Stu Grossman  (grossman@critters.cygnus.com)
12510         * configure.in:  Exclude mmalloc from i386-windows.
12512 Thu Oct 24 09:22:46 1996  Stu Grossman  (grossman@critters.cygnus.com)
12514         * Undo my previous change.
12516 Thu Oct 24 12:12:04 1996  Ian Lance Taylor  <ian@cygnus.com>
12518         * Makefile.in (EXTRA_GCC_FLAGS): Pass down GCC_FOR_TARGET
12519         unconditionally.
12520         (MAKEOVERRIDES): Define (revert this part of October 18 change).
12522 Thu Oct 24 09:02:07 1996  Stu Grossman  (grossman@critters.cygnus.com)
12524         * Makefile.in (FLAGS_TO_PASS):  Add $(HOST_FLAGS) to allow the
12525         host to add it's own flags.
12527 Tue Oct 22 15:20:26 1996  Ian Lance Taylor  <ian@cygnus.com>
12529         * configure: Handle GCC_FOR_TARGET like CC_FOR_TARGET.
12531 Fri Oct 18 13:37:13 1996  Ian Lance Taylor  <ian@cygnus.com>
12533         * Makefile.in (CC_FOR_TARGET): Check for xgcc, not Makefile.
12534         (CXX_FOR_TARGET): Likewise.
12535         (GCC_FOR_TARGET): Define.
12536         (BASE_FLAGS_TO_PASS): Remove GCC_FOR_TARGET.
12537         (EXTRA_GCC_FLAGS): Define GCC_FOR_TARGET based on whether
12538         CC_FOR_TARGET was specified on the command line.
12539         (MAKEOVERRIDES): Don't define.
12541 Thu Oct 17 10:27:56 1996  Doug Evans  <dje@canuck.cygnus.com>
12543         * configure.in (m32r): Fix spelling of libg++ libs.
12545 Thu Oct 10 10:37:17 1996  Stan Shebs  <shebs@andros.cygnus.com>
12547         * config.sub (-apple*): Remove, now redundant.
12549 Thu Oct 10 12:30:54 1996  Ian Lance Taylor  <ian@cygnus.com>
12551         * configure: Don't get confused by CPU-VENDOR-linux-gnu.
12553         * configure: Rework yesterday's sed script patch.
12555         * config.sub: Merge with FSF.
12557 Wed Oct  9 17:24:59 1996  Per Bothner  <bothner@deneb.cygnus.com>
12559         * config.guess:  Merge from FSF.
12561         1996-09-12  Richard Stallman  <rms@ethanol.gnu.ai.mit.edu>
12562         * config.guess: Use pc instead of unknown, for pc clone systems.
12563         Change linux to linux-gnu.
12565         Mon Jul 15 23:51:11 1996  Karl Heuer  <kwzh@gnu.ai.mit.edu>
12566         * config.guess: Avoid non-portable tr syntax.
12568 Wed Oct  9 06:06:46 1996  Jeffrey A Law  (law@cygnus.com)
12570         * test-build.mk (HOLES): Add "xargs" for gdb.
12572         * configure: Avoid hpux10.20 sed bug.
12574 Tue Oct  8 08:32:48 1996  Stu Grossman  (grossman@critters.cygnus.com)
12576         * configure.in:  Add support for windows host
12577         (that is a build done under the Microsoft build environment).
12579 Tue Oct  8 10:39:08 1996  Ian Lance Taylor  <ian@cygnus.com>
12581         * Makefile.in: Replace all uses of srcroot with s, to shrink
12582         command line lengths.
12584         Patches from Geoffrey Noer <noer@cygnus.com>:
12585         * configure.in: If configuring for newlib, pass --with-newlib to
12586         subdirectories.
12587         * Makefile.in (CC_FOR_TARGET): If winsup/Makefile exists, pass a
12588         -Bnewlib/ and -Lwinsup to gcc.
12589         (CXX_FOR_TARGET): Likewise.
12591 Mon Oct  7 10:59:35 1996  Ian Lance Taylor  <ian@cygnus.com>
12593         * Makefile.in (ETC_SUPPORT): Add configure.
12595 Fri Oct  4 12:22:58 1996  Angela Marie Thomas (angela@cygnus.com)
12597         * configure.in: Use config/mh-dgux386 for i[345]86-dg-dgux
12598         host configuration file.
12600 Thu Oct  3 09:28:25 1996  Jeffrey A Law  (law@cygnus.com)
12602         * configure.in: Break mn10x00 support into separate
12603         mn10200 and mn10300 configurations.
12604         * config.sub: Likewise.
12606 Wed Oct  2 22:27:52 1996  Jeffrey A Law  (law@cygnus.com)
12608         * configure.in: Add lots of stuff to noconfigdirs for
12609         the mn10x00 targets.
12611         * config.sub, configure.in: Add mn10x00 support.
12613 Wed Oct  2 15:52:36 1996  Klaus Kaempf  <kkaempf@progis.de>
12615         * make-all.com: Call conf-a-gas, not config-a-gas.
12617 Tue Oct  1 01:28:41 1996  James G. Smith  <jsmith@cygnus.co.uk>
12619         * configure.in (noconfigdirs): Don't build libgloss for arm-coff
12620         targets.
12622 Mon Sep 30 14:24:01 1996  Stan Shebs  <shebs@andros.cygnus.com>
12624         * mpw-README: Add much more detail for native PowerMac.
12625         * mpw-install: New file.
12626         * mpw-configure: Add --norecursion and --help options.
12627         * mpw-config.in: Translate readme and install files when
12628         copying to objdir.
12629         * mpw-build.in: Don't always depend on byacc and flex.
12630         (install-only-top): New action.
12632 Fri Sep 27 17:39:44 1996  Stu Grossman  (grossman@critters.cygnus.com)
12634         * configure.in:  You can now configure GDB for the v850.
12636 Tue Sep 24 19:05:12 1996  Stan Shebs  <shebs@andros.cygnus.com>
12638         * configure.in (noconfigdirs): Don't configure any C++ dirs
12639         if targeting D10V.
12641 Tue Sep 17 12:15:31 1996  Ian Lance Taylor  <ian@cygnus.com>
12643         * config.sub: Recognize mips64vr5000.
12645 Mon Sep 16 17:00:52 1996  Ian Lance Taylor  <ian@cygnus.com>
12647         * configure.in: Use a single line for host_tools and native_only.
12649 Mon Sep  9 12:21:30 1996  Doug Evans  <dje@canuck.cygnus.com>
12651         * config.sub, configure.in: Add entries for m32r.
12653 Thu Sep  5 13:52:47 1996  Tom Tromey  <tromey@creche.cygnus.com>
12655         * Makefile.in (inet-install): Don't run install-gzip.
12657 Wed Sep  4 17:26:13 1996  Stu Grossman  (grossman@critters.cygnus.com)
12659         * configure.in:  Don't config lots of things for *-*-windows*.
12661 Sat Aug 31 11:45:57 1996  Stan Shebs  <shebs@andros.cygnus.com>
12663         * mpw-config.in: Test for mpw-true, true, and null-command scripts.
12664         (host_libs, host_tools): Copy from configure.in.
12665         * mpw-configure: Don't complain about directories not found.
12667 Thu Aug 29 16:44:58 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12669         * configure.in (i[345]86): Recognize i686 for pentium pro.
12670         (i[3456]86-*-dgux*): Use config/mh-sysv for the host configuration
12671         file.
12673         * config.guess (i[345]86): Ditto.
12675 Mon Aug 26 18:34:42 1996  Martin M. Hunt  <hunt@pizza.cygnus.com>
12677         * configure.in (noconfigdirs): Removed gdb for D10V.
12679 Thu Aug 22 17:13:52 1996  Jeffrey A Law  (law@cygnus.com)
12681         * configure.in: Remove ld, target-libio, target-libg++, and
12682         target-libstdc++ from noconfigdirs.
12684 Wed Aug 21 18:56:38 1996  Fred Fish  <fnf@cygnus.com>
12686         * configure: Fix three locations where shell scripts were
12687         being run directly rather than with config_shell.
12689 Tue Aug 20 13:08:47 1996  J.T. Conklin  <jtc@hippo.cygnus.com>
12691         * configure.in (v850-*-*): Set up initial $noconfigdirs.
12692         * config.sub (basic_machine): Recognize v850.
12694 Thu Aug 15 12:19:33 1996  Stan Shebs  <shebs@andros.cygnus.com>
12696         * mpw-configure: Handle multiple enable/disable options and
12697         pass them down recursively, handle -c and -s flags appropriately
12698         depending on choice of compiler, add escape mechanism for
12699         quoted arguments to gC.
12701 Mon Aug 12 13:15:13 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12703         * configure.in (powerpc*-*-*): For eabi, system V.4, Linux, and
12704         solaris targets, use config/mt-ppc to set C{,XX}FLAGS_FOR_TARGETS
12705         so that -mrelocatable-lib and -mno-eabi are used.
12707         * Makefile.in (CONFIGURE_TARGET_MODULES): If target compiler does
12708         not support --print-multi-lib, don't abort.
12710 Thu Aug  8 12:18:59 1996  Klaus Kaempf  <kkaempf@progis.de>
12712         * make-all.com: Run config-a-gas.
12713         * setup.com: Don't copy subdirectory files around.
12715 Tue Jul 30 17:49:31 1996  Brendan Kehoe  <brendan@cygnus.com>
12717         * configure.in (*-*-ose): Remove exclusion of libgloss for this
12718         target, it now compiles correctly.
12720 Sat Jul 27 15:10:43 1996  Stan Shebs  <shebs@andros.cygnus.com>
12722         * mpw-config.in: Generate Mac include for elf/dwarf2.h.
12724 Tue Jul 23 10:47:04 1996  Martin M. Hunt  <hunt@pizza.cygnus.com>
12726         * configure.in (d10v-*-*): Remove ld from $noconfigdirs.
12728 Mon Jul 22 13:28:51 1996  Brendan Kehoe  <brendan@lisa.cygnus.com>
12730         * configure.in (native_only): Add prms.
12732 Mon Jul 22 12:27:58 1996  Ian Lance Taylor  <ian@cygnus.com>
12734         * Makefile.in (GAS_SUPPORT_DIRS): Add make-all.com and setup.com.
12735         (BINUTILS_SUPPORT_DIRS): Likewise.
12737 Thu Jul 18 12:55:40 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12739         * configure.in (d10v-*-*): Don't configure ld or gdb until the
12740         d10v support is added.
12742 Wed Jul 17 14:33:09 1996  Martin M. Hunt  <hunt@pizza.cygnus.com>
12744         * configure.in (d10v-*-*): New target.
12746 Mon Jul 15 11:53:00 1996  Jeffrey A Law  (law@cygnus.com)
12748         * config.guess (HP 9000/811): Recognize this as a PA1.1
12749         machine.
12751 Fri Jul 12 23:21:17 1996  Ken Raeburn  <raeburn@cygnus.com>
12753         * Makefile.in (do-tar-gz): New target, split out from tail end of
12754         taz target.  Run each command separately, don't use pipes.
12755         (taz): Use it.
12757 Fri Jul 12 12:08:04 1996  Stan Shebs  <shebs@andros.cygnus.com>
12759         * mpw-configure: Look for g-mpw-make.sed in config/mpw.
12760         * mpw-build.in: No builds should depend on building byacc or flex,
12761         they are assumed to be installed already.
12763 Fri Jul 12 09:52:52 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12765         * Makefile.in (CONFIGURE_TARGET_MODULES): Set r environment
12766         variable that CC_FOR_TARGET needs.
12768 Thu Jul 11 10:09:45 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12770         * Makefile.in (CONFIGURE_TARGET_MODULES): Determine if the multlib
12771         options have changed since the last time the subdirectory was
12772         configured, and if it has, reconfigure.
12773         (CLEAN_TARGET_MODULES): Delete multilib.out and tmpmulti.out, which
12774         CONFIGURE_TARGET_MODULES uses to remember the old multilib options.
12776 Wed Jul 10 18:56:59 1996  Doug Evans  <dje@canuck.cygnus.com>
12778         * Makefile.in (ALL_MODULES,CROSS_CHECK_MODULES,INSTALL_MODULES,
12779         CLEAN_MODULES): Add bash.
12780         (all-bash): New target.
12782 Mon Jul  8 17:33:14 1996  Jim Wilson  <wilson@cygnus.com>
12784         * configure.in (mips-sgi-irix6*): Use mh-irix6 instead of mh-irix5.
12786 Mon Jul  1 13:31:35 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12788         * config.sub (basic_machine): Recognize d10v as a valid processor.
12790 Fri Jun 28 12:14:35 1996  Stan Shebs  <shebs@andros.cygnus.com>
12792         * mpw-configure: Add support for --bindir.
12793         * mpw-build.in: Use a GCC-specific build script for GCC actions.
12795 Wed Jun 26 17:20:12 1996  Geoffrey Noer  <noer@cygnus.com>
12797         * configure.in: add bash, time, gawk to list of hosttools and things
12798         to only build for native toolchains
12800 Tue Jun 25 23:09:03 1996  Jason Molenda  (crash@godzilla.cygnus.co.jp)
12802         * Makefile.in (docdir): Remove.
12804 Tue Jun 25 19:00:08 1996  Jason Molenda  (crash@godzilla.cygnus.co.jp)
12806         * Makefile.in (datadir): Set to $(prefix)/share.
12808 Mon Jun 24 23:26:07 1996  Geoffrey Noer  <noer@cygnus.com>
12810         * configure.in: build diff and patch for cygwin32-hosted
12811         toolchains.
12813 Mon Jun 24 15:01:12 1996  Joel Sherrill  <joel@merlin.gcs.redstone.army.mil>
12815         * config.sub: Accept -rtems*.
12817 Sun Jun 23 22:41:54 1996  Geoffrey Noer  <noer@cygnus.com>
12819         * configure.in: enable dosrel for cygwin32-hosted builds,
12820                 remove diff from the list of things not buildable
12821                 via Canadian Cross
12823 Sat Jun 22 11:39:01 1996  Jason Merrill  <jason@yorick.cygnus.com>
12825         * Makefile.in (TARGET_SUBDIR): Move comment to previous line so we
12826         don't get ". ".
12828 Fri Jun 21 17:24:48 1996  Jim Wilson  <wilson@cygnus.com>
12830         * configure.in (mips*-sgi-irix6*): Set noconfigdirs appropriately.
12832 Thu Jun 20 16:57:40 1996  Ken Raeburn  <raeburn@cygnus.com>
12834         * Makefile.in (taz): Handle case where tex3patch didn't even get
12835         checked out.  Also, if it was found, put the symlink in a new util
12836         subdirectory.
12838 Thu Jun 20 12:20:33 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12840         * config.guess (*:Linux:*:*): Add support for PowerPC Linux.
12842 Tue Jun 18 14:24:12 1996  Klaus Kaempf  (kkaempf@progis.de)
12844         * config.sub: Recognize -openvms.
12845         * configure.in (alpha*-*-*vms*): Set noconfigdirs.
12846         * make-all.com, setup.com: New files.
12848 Mon Jun 17 16:34:46 1996  Jason Merrill  <jason@yorick.cygnus.com>
12850         * Makefile.in (taz): tex3patch moved to texinfo/util.
12852 Sat Jun 15 17:13:25 1996  Geoffrey Noer <noer@cygnus.com>
12854         * configure: enable_gdbtk=no for cygwin32-hosted toolchains
12855         * configure.in: remove make from disable-if-Can-Cross list
12856                 enable gdb if ${host} and ${target} are cygwin32
12858 Fri Jun  7 18:16:52 1996  Harlan Stenn <harlan@pfcs.com>
12860         * config.guess (i?86-ncr-sysv*):  Emit minor release numbers.
12861         Recognize the NCR 4850 machine and NCR Pentium-based platforms.
12863 Wed Jun  5 00:09:17 1996  Per Bothner  <bothner@wombat.gnu.ai.mit.edu>
12865         * config.guess:  Combine mips-mips-riscos cases, and use cpp to
12866         distinguish sysv/svr4/bsd variants.
12867         Based on a patch from Harlan Stenn <harlan@pfcs.com>.
12869 Fri Jun  7 14:24:49 1996  Tom Tromey  <tromey@creche.cygnus.com>
12871         * configure.in: Added copyright notice.
12872         * move-if-change: Added copyright notice.
12874 Thu Jun  6 16:27:05 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12876         * configure.in (powerpcle-*-solaris*): Until we get shared
12877         libraries working, don't build gdb, sim, make, tcl, tk, or
12878         expect.
12880 Tue Jun  4 20:41:45 1996  Per Bothner  <bothner@deneb.cygnus.com>
12882         * config.guess:  Merge with FSF:
12884         Mon Jun  3 08:49:14 1996  Karl Heuer  <kwzh@gnu.ai.mit.edu>
12885         * config.guess (*:Linux:*:*): Add guess for sparc-unknown-linux.
12887         Fri May 24 18:34:53 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
12888         * config.guess (AViiON:dgux:*:*): Fix typo in recognizing mc88110.
12890         Fri Apr 12 20:03:59 1996  Per Bothner  <bothner@spiff.gnu.ai.mit.edu>
12891         * config.guess:  Combine two OSF1 rules.
12892         Also recognize field test versions.  From mjr@zk3.dec.com.
12893         * config.guess (dgux):  Use /usr/bin/uname rather than uname,
12894         because GNU uname does not support -p.  From pmr@pajato.com.
12896 Tue Jun  4 11:07:25 1996  Tom Tromey  <tromey@csk3.cygnus.com>
12898         * Makefile.in (MAKEDIRS): Removed $(tooldir).
12900 Tue May 28 12:30:50 1996  Stan Shebs  <shebs@andros.cygnus.com>
12902         * mpw-README: Document GCCIncludes.
12904 Sun May 26 15:16:27 1996  Fred Fish  <fnf@cygnus.com>
12906         * configure.in (alpha-*-linux*): Set enable_shared to yes.
12908 Tue May 21 15:41:39 1996  Stan Shebs  <shebs@andros.cygnus.com>
12910         * mpw-configure: Handle --enable-FOO and --disable-FOO.
12912 Mon May 20 10:12:29 1996  Geoffrey Noer  <noer@cygnus.com>
12914         * configure.in (*-*-cygwin32): Configure make.
12916 Tue May  7 14:19:42 1996  Tom Tromey  <tromey@snuffle.cygnus.com>
12918         * Makefile.in (inet-install): Quote value of INSTALL_MODULES.
12920 Fri May  3 08:57:17 1996  Tom Tromey  <tromey@lisa.cygnus.com>
12922         * Makefile.in (all-inet): Depend on all-perl.
12924         * Makefile.in (inet-install): New target.
12926         * Makefile.in (all-inet): Depend on all-tcl.
12927         (all-inet): Depend on all-send-pr.
12929 Tue Apr 30 13:55:51 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12931         * configure.in (powerpcle-*-solaris*): Turn off tk and tcl
12932         temporarily.
12934 Thu Apr 25 11:48:20 1996  Ian Lance Taylor  <ian@cygnus.com>
12936         * configure.in: Don't configure --with-gnu-ld on AIX.
12938 Thu Apr 25 06:33:36 1996  Michael Meissner  <meissner@wogglebug.tiac.net>
12940         * configure.in (powerpcle-*-solaris*): Turn off gdb temporarily.
12942 Tue Apr 23 09:07:39 1996  Tom Tromey  <tromey@creche.cygnus.com>
12944         * Makefile.in (ALL_MODULES): Added all-inet.
12945         (CROSS_CHECK_MODULES): Added check-inet.
12946         (INSTALL_MODULES): Added install-inet.
12947         (CLEAN_MODULES): Added clean-inet.
12948         (all-indent): New target.
12950         * configure.in (host_tools): Added inet.
12951         (native_only): Added inet.
12952         (noconfigdirs): Added inet.
12954 Fri Apr 19 15:35:29 1996  Ian Lance Taylor  <ian@cygnus.com>
12956         * configure.in: Don't configure libgloss if we are not configuring
12957         newlib.
12959 Wed Apr 17 19:30:01 1996  Rob Savoye  <rob@chinadoll.cygnus.com>
12961         * configure.in: Don't configure libgloss for unsupported
12962         architectures.
12964 Tue Apr 16 11:17:05 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12966         * Makefile.in (CLEAN_MODULES): Add clean-apache.
12968 Mon Apr 15 15:09:05 1996  Tom Tromey  <tromey@creche.cygnus.com>
12970         * Makefile.in (ALL_MODULES): Include all-apache.
12971         (CROSS_CHECK_MODULES): Include check-apache.
12972         (INSTALL_MODULES): Include install-apache.
12973         (all-apache): New target.
12975         * configure.in: Added apache everywhere perl is seen.
12977 Mon Apr 15 14:59:13 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12979         * Makefile.in: Add support for clean-{module} and
12980         clean-target-{module} rules.
12982 Wed Apr 10 21:37:41 PDT 1996  Marilyn E. Sander <msander@cygnus.com>
12984         * configure.in (*-*-ose) do not build libgloss.
12986 Mon Apr  8 16:16:20 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12988         * config.guess (prep*:SunOS:5.*:*): Turn into
12989         powerpele-unknown-solaris2.
12991 Mon Apr  8 14:45:41 1996  Ian Lance Taylor  <ian@cygnus.com>
12993         * configure.in: Permit --enable-shared to specify a list of
12994         directories.
12996 Fri Apr  5 08:17:57 1996  Jason Molenda  (crash@phydeaux.cygnus.com)
12998         * configure.in (host==solaris): Pass only the first word of $CC
12999         to /usr/bin/which when checking if we're using /usr/ccs/bin/cc.
13001 Fri Apr  5 03:16:13 1996  Jason Molenda  (crash@phydeaux.cygnus.com)
13003         * Makefile.in (BASE_FLAGS_TO_PASS): pass down $(MAKE).
13005 Thu Mar 28 14:11:11 1996  Tom Tromey  <tromey@creche.cygnus.com>
13007         * Makefile.in (ALL_MODULES): Include all-perl.
13008         (CROSS_CHECK_MODULES): Include check-perl.
13009         (INSTALL_MODULES): Include install-perl.
13010         (ALL_X11_MODULES): Include all-guile.
13011         (CHECK_X11_MODULES): Include check-guile.
13012         (INSTALL_X11_MODULES): Include install-guile.
13013         (all-perl): New target.
13014         (all-guile): New target.
13016         * configure.in (host_tools): Include perl and guile.
13017         (native_only): Include perl and guile.
13018         (noconfigdirs): Don't build guile and perl; no ports have been
13019         done.
13021 Tue Mar 26 21:18:50 1996  Andrew Cagney  <cagney@kremvax.highland.com.au>
13023         * configure (--enable-*): Handle quoted option lists such as
13024         --enable-sim-cflags='-g0 -O' better.
13026 Thu Mar 21 11:53:08 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
13028         * Makefile.in ({,inst}all-target): New rule so we can make and
13029         install all of the target directories easily.
13031 Wed Mar 20 18:10:57 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
13033         * configure.in: Add missing global flag in sed substitution when
13034         deleting `target-' from ${configdirs}.
13036 Thu Mar 14 19:15:06 1996  Ian Lance Taylor  <ian@cygnus.com>
13038         * Makefile.in (DO_X): Don't get confused if CC contains `=' in an
13039         option.
13041         * configure.in (mips*-nec-sysvr4*): Use a host_makefile_frag of
13042         config/mh-necv4.
13044         * install.sh: Correct misspelling of transformbasename.
13046         * config.guess: Recognize mips-*-sysv*.
13048 Mon Mar 11 15:36:42 1996  Dawn Perchik  <dawn@critters.cygnus.com>
13050         * config.sub: Recognize mon960.
13052 Sun Mar 10 13:18:38 1996  Ian Lance Taylor  <ian@cygnus.com>
13054         * configure: Restore Canadian Cross handling of BISON and LEX,
13055         removed in Feb 20 change.
13057 Fri Mar  8 20:07:09 1996  Per Bothner  <bothner@kalessin.cygnus.com>
13059         * README:  Suggestions from Torbjorn Granlund <tege@matematik.su.se>:
13060         Mention make install.  Remove the old copyright date as well the
13061         clumsy and rather pointless copyright on the README file.
13063 Fri Mar  8 17:51:35 1996  Ian Lance Taylor  <ian@cygnus.com>
13065         * Makefile.in ($(CONFIGURE_TARGET_MODULES)): If there is a
13066         Makefile after running symlink-tree, then run `make distclean' to
13067         avoid clobbering any generated files in srcdir.
13069 Tue Mar  5 08:21:44 1996  J.T. Conklin  <jtc@rtl.cygnus.com>
13071         * configure.in (m68k-*-netbsd*): Build everything now.
13073 Wed Feb 28 12:25:46 1996  Jason Merrill  <jason@yorick.cygnus.com>
13075         * Makefile.in (taz): Fix quoting.
13077 Tue Feb 27 11:33:57 1996  Doug Evans  <dje@charmed.cygnus.com>
13079         * configure.in (sparclet-*-*): Build everything now.
13081 Tue Feb 27 14:31:51 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
13083         * configure.in (m68k-*-linux*): New host.
13085 Mon Feb 26 14:32:44 1996  Ian Lance Taylor  <ian@cygnus.com>
13087         * configure: Check for bison before byacc.
13089 Tue Feb 20 23:12:35 1996  Stu Grossman  (grossman@critters.cygnus.com)
13091         * Makefile.in configure:  Change the way LEX and BISON/YACC are
13092         set.  configure now defines DEFAULT_LEX and DEFAULT_YACC by
13093         searching PATH.  These are used as fallbacks by Makefile.in if
13094         flex/bison/byacc aren't in objdir.
13096 Mon Feb 19 11:45:30 1996  Ian Lance Taylor  <ian@cygnus.com>
13098         * Makefile.in: Make everything which depends upon all-bfd also
13099         depend upon all-opcodes, in case --with-commonbfdlib is used.
13101 Thu Feb 15 19:50:50 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
13103         * configure.in (host *-*-cygwin32): Don't build gdb if we are
13104         building NT native compilers on Unix.
13106 Thu Feb 15 17:42:25 1996  Ian Lance Taylor  <ian@cygnus.com>
13108         * configure.in: Don't get CC from the host Makefile fragment if we
13109         can find gcc in PATH, or if this is a Canadian Cross.  Move the
13110         Solaris test for /usr/ucb/cc to the post target script, just after
13111         the compiler sanity test.
13113 Wed Feb 14 16:57:40 1996  Ian Lance Taylor  <ian@cygnus.com>
13115         * config.sub: Merge with FSF.
13117 Tue Feb 13 14:27:48 1996  Ian Lance Taylor  <ian@cygnus.com>
13119         * Makefile.in (RPATH_ENVVAR): New variable.
13120         (REALLY_SET_LIB_PATH): Use it.
13121         * configure.in: On HP/UX, set RPATH_ENVVAR to SHLIB_PATH.
13123 Mon Feb 12 15:28:49 1996  Doug Evans  <dje@charmed.cygnus.com>
13125         * config.sub, configure.in: Recognize sparclet cpu.
13127 Mon Feb 12 15:33:59 1996  Christian Bauernfeind <chrisbfd@theorie3.physik.uni-erlangen.de>
13129         * config.guess:  Support m68k-cbm-sysv4.
13131 Sat Feb 10 12:06:42 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
13133         * config.guess (*:Linux:*:*): Guess m68k-unknown-linux and
13134         m68k-unknown-linuxaout from linker help string.  Put quotes around
13135         $ld_help_string.
13137 Thu Dec  7 09:03:24 1995  Tom Horsley  <Tom.Horsley@mail.hcsc.com>
13139         * config.guess (powerpc-harris-powerunix): Add guess for port
13140         to new target.
13142 Thu Feb  8 15:37:52 1996  Brendan Kehoe  <brendan@lisa.cygnus.com>
13144         * config.guess (UNAME_VERSION): Recognize X4.x as an OSF version.
13146 Mon Feb  5 16:36:51 1996  Ian Lance Taylor  <ian@cygnus.com>
13148         * configure.in: If --enable-shared was used, set SET_LIB_PATH to
13149         $(REALLY_SET_LIB_PATH) in Makefile.
13150         * Makefile.in (SET_LIB_PATH): New variable.
13151         (REALLY_SET_LIB_PATH): New variable.
13152         ($(DO_X)): Use $(SET_LIB_PATH).
13153         (install.all, gcc-no-fixedincludes, $(ALL_MODULES)): Likewise.
13154         ($(NATIVE_CHECK_MODULES), $(CROSS_CHECK_MODULES)): Likewise.
13155         ($(INSTALL_MODULES), $(CONFIGURE_TARGET_MODULES)): Likewise.
13156         ($(ALL_TARGET_MODULES), $(CHECK_TARGET_MODULES)): Likewise.
13157         ($(INSTALL_TARGET_MODULES), $(ALL_X11_MODULES)): Likewise.
13158         ($(CHECK_X11_MODULES), $(INSTALL_X11_MODULES)): Likewise.
13159         (all-gcc, all-bootstrap, check-gcc, install-gcc): Likewise.
13160         (install-dosrel): Likewise.
13161         (all-opcodes): Depend upon all-libiberty.
13163 Sun Feb  4 16:51:11 1996  Steve Chamberlain  <sac@slash.cygnus.com>
13165         * config.guess (*:CYGWIN*): New
13167 Sat Feb  3 10:42:35 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
13169         * Makefile.in (all-target-winsup): All all-target-libiberty.
13171 Fri Feb  2 17:58:56 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
13173         * configure.in (noconfigdirs): Add missing # in front of comment.
13175 Thu Feb  1 14:38:13 1996  Geoffrey Noer  <noer@cygnus.com>
13177         * configure.in: add second pass to things added to noconfigdirs
13178         so *-gm-magic can exclude libgloss properly.
13180 Thu Feb  1 11:10:16 1996  Stan Shebs  <shebs@andros.cygnus.com>
13182         * mpw-configure (extralibs_name, rez_name): Set correctly
13183         for MWC68K compiler.
13185         * mpw-README: Add more info on the necessary build tools.
13187 Thu Feb  1 10:22:38 1996  Steve Chamberlain  <sac@slash.cygnus.com>
13189         * configure.in, config.sub: Recognize cygwin32.
13191 Wed Jan 31 14:17:10 1996  Richard Henderson  <rth@tamu.edu>
13193         * config.guess, config.sub: Recognize A/UX.
13195 Wed Jan 31 13:52:14 1996  Ian Lance Taylor  <ian@cygnus.com>
13197         * config.sub: Merge with gcc/config.sub.
13199 Thu Jan 25 11:01:10 1996  Raymond Jou  <rjou@mexican.cygnus.com>
13201         * mpw-build.in (do-binutils): Add build of stamps.
13203 Thu Jan 25 17:05:26 1996  James G. Smith  <jsmith@cygnus.co.uk>
13205         * config.sub: Add recognition for mips64vr4100*-* targets.
13207 Wed Jan 24 12:47:55 1996  Brendan Kehoe  <brendan@lisa.cygnus.com>
13209         * test-build.mk: Add checking of `hpux9' rather than just `hpux'.
13210         Add creation of gconfigargs with `--enable-shared' turned on.
13211         ($(host)-stamp-stage2-configured): Pass $(gconfigargs).
13212         ($(host)-stamp-stage3-configured): Likewise.
13213         (HOLES): Add chatr and ldd.
13214         (i386-ncr-sysv4.3*): Add use of /usr/ccs/bin in the PATH and HOLE_DIRS.
13216 Wed Jan 24 20:32:30 1996  Torbjorn Granlund  <tege@noisy.matematik.su.se>
13218         * configure: Pass --nfp to recursive configures.
13220 Mon Jan 22 10:41:56 1996  Steve Chamberlain  <sac@slash.cygnus.com>
13222         * Makefile.in (DLLTOOL): New.
13223         (DLLTOOL_FOR_TARGET): New.
13224         (EXTRA_HOST_FLAGS): Pass down DLLTOOL.
13225         (EXTRA_TARGET_FLAGS): Ditto.
13226         (EXTRA_GCC_FLAGS): Ditto.
13227         (CONFIGURE_TARGET_MODULES): Ditto.
13228         (DO_X): Ditto.
13229         * configure: Add DLLTOOL.
13231 Fri Jan 19 13:30:15 1996  Stan Shebs  <shebs@andros.cygnus.com>
13233         SCO OpenServer 5 changes from Robert Lipe <robertl@dgii.com>:
13234         * configure.in (i[345]86-*-sco3.2v5*): Use mh-sysv instead of
13235         mh-sco, since old workarounds no longer needed, and don't
13236         build ld, since libraries have weak symbols in COFF.
13238 Sun Jan 14 23:01:31 1996  Fred Fish  <fnf@cygnus.com>
13240         * Makefile.in (CONFIGURE_TARGET_MODULES): Add missing ';'.
13242 Fri Jan 12 15:25:35 1996  Ian Lance Taylor  <ian@cygnus.com>
13244         * configure.in: Make sure that ${CC} can be used to compile an
13245         executable.
13247 Sat Jan  6 07:23:33 1996  Michael Meissner  <meissner@wogglebug.tiac.net>
13249         * Makefile.in (all-gdb): Depend on $(GDB_TK).
13250         * configure (GDB_TK): Set GDB_TK to either "all-tcl all-tk" or
13251         nothing depending on whether gdbtk is being built.
13253 Wed Jan  3 17:54:41 1996  Doug Evans  <dje@canuck.cygnus.com>
13255         * Makefile.in (newlib.tar.gz): Delete building of newlib's info files.
13257 Mon Jan  1 19:09:14 1996  Brendan Kehoe  <brendan@rtl.cygnus.com>
13259         * configure.in (noconfigdirs): Put ld or gas in this early, if the
13260         user specifically used --with-gnu-ld=no or --with-gnu-as=no.
13262 Sat Dec 30 16:08:57 1995  Doug Evans  <dje@canuck.cygnus.com>
13264         * config-ml.in: Add support for
13265         --disable-{softfloat,m68881,m68000,m68020} on m68*-*-*.
13266         Simplify setting of multidirs from --disable-foo.
13268 Fri Dec 29 07:56:11 1995  Michael Meissner  <meissner@tiktok.cygnus.com>
13270         * Makefile.in (EXTRA_GCC_FLAGS): If any of the make variables
13271         LANGUAGES, BOOT_CFLAGS, STMP_FIXPROTO, LIMITS_H_TEST,
13272         LIBGCC1_TEST, LIBGCC2_CFLAGS, LIBGCC2_INCLUDES, and ENQUIRE are
13273         non-empty, pass them on to the  GCC make.
13274         (all-bootstrap): New rule that is like all-gcc, except it executes
13275         the GCC bootstrap rule instead of the GCC all rule.
13277 Wed Dec 27 15:51:48 1995  Doug Evans  <dje@canuck.cygnus.com>
13279         * config-ml.in (ml_realsrcdir): New, to account for ${subdir}.
13281 Tue Dec 26 11:45:31 1995  Michael Meissner  <meissner@tiktok.cygnus.com>
13283         * config.guess (AViiON:dgux:*:*): Update from FSF to add pentium
13284         DG/UX support.
13286 Fri Dec 15 10:01:27 1995  Stan Cox  <coxs@dg-rtp.dg.com>
13288         * config.sub (i*86*) Change [345] to [3456]
13290 Wed Dec 20 17:41:40 1995  Brendan Kehoe  <brendan@lisa.cygnus.com>
13292         * configure.in (noconfigdirs): Add gas or ld if --with-gnu-as=no or
13293         --with-gnu-ld=no.
13295 Wed Dec 20 15:15:35 1995  Michael Meissner  <meissner@tiktok.cygnus.com>
13297         * config-ml.in (rs6000*, powerpc*): Add switches to control which
13298         AIX multilibs get built.
13300 Mon Dec 18 17:55:46 1995  Jason Molenda  (crash@phydeaux.cygnus.com)
13302         * configure.in (i386-win32): Don't build expect if we're not
13303         building the tcl subdir.
13305 Mon Dec 18 11:47:19 1995  Stan Shebs  <shebs@andros.cygnus.com>
13307         * Makefile.in: (configure-target-examples, all-target-examples):
13308         New targets, configure and build example programs.
13310 Fri Dec 15 16:13:03 1995  Stan Shebs  <shebs@andros.cygnus.com>
13312         * mpw-configure: If an mpw-config.in generated a file mk.sed,
13313         use it as input to sedit the generated MPW makefile.
13314         * mpw-README: Add a suggestion about Gestalt.h.
13316 Wed Dec 13 16:43:51 1995  Ian Lance Taylor  <ian@cygnus.com>
13318         * config.sub: Accept *-*-ieee*.
13320 Tue Dec 12 11:52:57 1995  Ian Lance Taylor  <ian@cygnus.com>
13322         * Makefile.in (local-distclean): Remove $(TARGET_SUBDIR).  From
13323         Ronald F. Guilmette <rfg@monkeys.com>.
13325 Mon Dec 11 15:31:58 1995  Jason Molenda  (crash@phydeaux.cygnus.com)
13327         * configure.in (host==powerpc-pe): Add many directories to noconfigdirs
13328         for powerpc-pe native.
13329         (target==i386-win32): add tcl, make to noconfigdirs if canadian cross.
13330         (target==powerpc-pe): duplicate i386-win32 entry.
13332 Sat Dec  9 14:58:28 1995  Jim Wilson  <wilson@chestnut.cygnus.com>
13334         * configure.in (noconfigdirs): Exclude target-newlib for all versions
13335         of vxworks, not just vxworks5.1.
13337 Mon Dec  4 12:05:40 1995  Stan Shebs  <shebs@andros.cygnus.com>
13339         * mpw-configure: Add support for exec-prefix.
13341 Mon Dec  4 10:22:50 1995  Jeffrey A. Law  <law@rtl.cygnus.com>
13343         * config.guess: Recognize HP model 816 machines as having
13344         a PA1.1 processor.
13346 Mon Dec  4 12:38:15 1995  Ian Lance Taylor  <ian@cygnus.com>
13348         * configure: Ignore new autoconf configure options.
13350 Thu Nov 30 16:57:33 1995  Per Bothner  <bothner@wombat.gnu.ai.mit.edu>
13352         * config.guess:  Recognize Pentium under SCO.
13353         From Robert Lipe <robertl@arnet.com>.
13355 Wed Nov 29 13:49:08 1995  J.T. Conklin  <jtc@rtl.cygnus.com>
13357         * configure.in (noconfigdirs): Disable target-libio on v810-*-*.
13359 Wed Nov 29 12:12:01 1995  Ian Lance Taylor  <ian@cygnus.com>
13361         * configure.in: Don't configure gas for alpha-dec-osf*.
13363 Tue Nov 28 17:16:48 1995  Ian Lance Taylor  <ian@cygnus.com>
13365         * configure.in: Default to --with-stabs for some targets for which
13366         it makes sense: mips*-*-*, alpha*-*-osf*, i[345]86*-*-sysv4* and
13367         i[345]86*-*-unixware*.
13369 Mon Nov 27 13:44:15 1995  Ian Lance Taylor  <ian@cygnus.com>
13371         * config-ml.in: Get list of multidirs using gcc --print-multi-lib
13372         rather than basing it on the target.  Simplify handling of options
13373         controlling which directories to configure.  Remove extraneous
13374         slash in multi-clean target.
13376 Fri Nov 24 17:29:29 1995  Doug Evans  <dje@deneb.cygnus.com>
13378         * config-ml.in: Prefix more variables with ml_ so they don't collide
13379         with configure's.
13381 Wed Nov 22 11:27:02 1995  Ian Lance Taylor  <ian@cygnus.com>
13383         * configure: Don't turn -v into --v.
13385 Tue Nov 21 16:48:02 1995  Doug Evans  <dje@deneb.cygnus.com>
13387         * configure.in (targargs): Fix typo.
13389         * Makefile.in (DEVO_SUPPORT): Add symlink-tree.
13391 Tue Nov 21 14:08:28 1995  Ian Lance Taylor  <ian@cygnus.com>
13393         * configure.in: Strip --host and --target options from
13394         CONFIG_ARGUMENTS, and always configure for --host only.  Add
13395         --with-cross-host option when building with a cross-compiler.
13396         * configure: Canonicalize the arguments put into config.status by
13397         always using `=' for an option with an argument.  Pass a presumed
13398         --host or --target explicitly.
13400 Fri Nov 17 17:50:30 1995  Stan Shebs  <shebs@andros.cygnus.com>
13402         * config.sub: Merge -macos*, -magic*, -pe*, and -win32 cases
13403         into general OS recognition case.
13405 Fri Nov 17 17:42:25 1995  Jason Molenda  (crash@phydeaux.cygnus.com)
13407         * configure.in (target_configdirs): add target-winsup only
13408         for win32 target systems.
13410 Thu Nov 16 14:04:47 1995  Ian Lance Taylor  <ian@cygnus.com>
13412         * Makefile.in (all-target-libgloss): Depend upon
13413         configure-target-newlib, since when libgloss is built it looks to
13414         see if the newlib directory exists.
13416 Wed Nov 15 14:47:52 1995  Ken Raeburn  <raeburn@cygnus.com>
13418         * Makefile.in (DEVO_SUPPORT): Use config-ml.in instead of
13419         cfg-ml-*.in.
13421 Wed Nov 15 11:45:23 1995  Ian Lance Taylor  <ian@cygnus.com>
13423         * configure: Handle LD and LD_FOR_TARGET when configuring a
13424         Canadian Cross.
13426 Tue Nov 14 14:56:11 1995  Jason Molenda  (crash@phydeaux.cygnus.com)
13428         * configure.in (target_libs): add target-winsup.
13429         (target==i386-win32): add patch diff flex make to $noconfigdirs.
13430         (target==ppcle-pe): remove ld from $noconfigdirs.
13432 Tue Nov 14 01:25:50 1995  Doug Evans  <dje@canuck.cygnus.com>
13434         * Makefile.in (CONFIGURE_TARGET_MODULES): Pass --with-target-subdir.
13435         Preserve relative path names in $srcdir.  Build symlink tree if
13436         configuring cross target dir and srcdir=. (= no VPATH support).
13437         (configure-target-libg++): Depend on configure-target-librx.
13438         * cfg-ml-com.in, cfg-ml-pos.in: Deleted.
13439         * config-ml.in: New file.
13440         * symlink-tree: New file.
13441         * configure: Ensure srcdir="." if that's what it is.
13443 Mon Nov 13 12:34:20 1995  Stan Shebs  <shebs@andros.cygnus.com>
13445         * mpw-README: Clarify some phrasing, add notes about CodeWarrior
13446         includes and FLEX_SKELETON setting.
13447         * mpw-configure (--with-gnu-ld): New option, controls whether
13448         to use PPCLink or ld with PowerMac GCC.
13449         * mpw-build.in (all-grez, do-grez, install-grez): New targets.
13450         * mpw-config.in: Configure grez if targeting Mac.
13452         * config.sub: Accept pmac and pmac-mpw as names for PowerMacs,
13453         accept mpw and mac-mpw as names for m68k Macs, change macos7 to
13454         just macos.
13455         * configure.in: Configure grez resource compiler if targeting Mac.
13456         * Makefile.in (all-grez, install-grez): New targets.
13458 Wed Nov  8 17:33:51 1995  Jason Merrill  <jason@yorick.cygnus.com>
13460         * configure: CXX defaults to gcc, not g++.  If we find
13461         gcc in the path, set CC to gcc -O2.
13463 Tue Nov  7 15:45:17 1995  Ian Lance Taylor  <ian@cygnus.com>
13465         * configure: Default ${build} correctly.  Avoid picking up extra
13466         spaces when reading CC and CXX from Makefile.  When doing a
13467         Canadian Cross, use plausible default values for numerous
13468         variables.
13469         * configure.in: When doing a Canadian Cross, don't try to
13470         configure tools whose configure script can't handle it.
13472 Mon Nov  6 19:32:17 1995  Jim Wilson  <wilson@chestnut.cygnus.com>
13474         * cfg-ml-com.in (sh-*-*): Add m2 and ml/m2 to multidirs.
13476 Sun Nov  5 00:15:41 1995  Per Bothner  <bothner@kalessin.cygnus.com>
13478         * configure:  Remove dubious bug reporting address.
13480 Fri Nov  3 08:17:54 1995  Per Bothner  <bothner@kalessin.cygnus.com>
13482         * Makefile.in ($(CONFIGURE_TARGET_MODULES)):  If subdir has
13483         configure script, run that instead of this directory's configure.
13484         In either case, print a message that we're configuring the sub-dir.
13486 Thu Nov  2 23:23:36 1995  Per Bothner  <bothner@kalessin.cygnus.com>
13488         * configure.in: Before checking for the existence of various files,
13489         use sed to filter out "target-".
13491 Thu Nov  2 13:24:56 1995  Ian Lance Taylor  <ian@cygnus.com>
13493         * Makefile.in (DO_X): Split rule to decrease command line length
13494         for systems with small ARG_MAX values.  From phdm@info.ucl.ac.be
13495         (Philippe De Muyter).
13497 Wed Nov  1 15:18:35 1995  Jason Molenda  (crash@phydeaux.cygnus.com)
13499         * Makefile.in (all-patch): depend on all-libiberty.
13501 Wed Nov  1 12:23:20 1995  Ian Lance Taylor  <ian@cygnus.com>
13503         * configure.in: If the only directory in target_configdirs which
13504         actually exists is libiberty, then set target_configdirs to empty,
13505         to avoid trying to build a target libiberty in a gas or gdb
13506         distribution.
13508 Tue Oct 31 17:52:39 1995  J.T. Conklin  <jtc@slave.cygnus.com>
13510         * configure.in (host_makefile_frag): Use m68k-sun-sunos* instead
13511         of m68k-sun-* when selecting mh-sun3 to avoid matching NetBSD/sun3
13512         systems.
13514 Tue Oct 31 16:57:32 1995  Jim Wilson  <wilson@chestnut.cygnus.com>
13516         * configure.in (copy_dirs): Use sys-include instead of include
13517         for --with-headers option.
13519 Tue Oct 31 10:29:36 1995  steve chamberlain  <sac@slash.cygnus.com>
13521         * Makefile.in, configure.in: Make winsup builds work with
13522         new scheme.
13524 Mon Oct 30 18:57:09 1995  Ian Lance Taylor  <ian@cygnus.com>
13526         * configure.in: Build the linker on AIX.
13528 Mon Oct 30 12:27:16 1995  Per Bothner  <bothner@kalessin.cygnus.com>
13530         * Makefile.in (CC_FOR_TARGET, CXX_FOR_TARGET):  Add $(TARGET_SUBDIR)
13531         where needed.
13533 Mon Oct 30 12:45:25 1995  Doug Evans  <dje@cygnus.com>
13535         * Makefile.in (all-gcc): Fix typo.
13537 Sat Oct 28 10:27:59 1995  Per Bothner  <bothner@kalessin.cygnus.com>
13539         * Makefile.in ($(CHECK_TARGET_MODULES)):  Fix typo.
13541 Fri Oct 27 23:14:12 1995  Per Bothner  <bothner@kalessin.cygnus.com>
13543         * configure.in:  Rename libFOO to target-libFOO, and xiberty
13544         to target-xiberty, to provide more flexibility.
13545         (target_subdir):  Define.  Create if cross.
13546         Set TARGET_SUBDIR in Makefile to ${target_subdir}.
13547         * Makefile.in:  Rename all-libFOO -> all-target-libFOO, all-xiberty
13548         -> all-target-libiberty, configure-libFOO -> configure-target-libFOO,
13549         check-libFOO -> check-target-libFOO, etc.
13550         ($(DO_X)):  Iterate over TARGET_CONFIGDIRS after SUBDIRS.
13551         ($(CONFIGURE_TARGET_MODULES), $(CHECK_TARGET_MODULES),
13552         $(ALL_TARGET_MODULES), $(INSTALL_TARGET_MODULES)): Update accordingly.
13553         (configure-target-XXX):  Depend on $(ALL_GCC), not all-gcc, to
13554         allow ALL_GCC="" to only configure.
13555         (DEVO_SUPPORT):  Add cfg-ml-com.in and cfg-ml-pos.in.
13556         (ETC_SUPPORT, ETC_SUPPORT_PFX):  Merge;  update 'taz' accordingly.
13557         (LIBGXX_SUPPORT_DIRS):  Remove xiberty.
13559 Sat Oct 28 01:53:49 1995  Ken Raeburn  <raeburn@cygnus.com>
13561         * Makefile.in (taz): Build "info" in etc explicitly.
13563 Fri Oct 27 09:32:30 1995  Stu Grossman  (grossman@cygnus.com)
13565         * configure.in:  Make sure that CC is undefined (as opposed to
13566         null) if toplevel/config/mh-{host} doesn't define it.  Fixes a
13567         problem with autoconf trying to configure on a host without GCC.
13569 Thu Oct 26 22:35:01 1995  Stan Shebs  <shebs@andros.cygnus.com>
13571         * mpw-configure: Set host alias from choice of host compiler,
13572         only use generic MPW Makefile sed if present, edit a file
13573         named "hacked_Makefile.in" instead of "Makefile.in" if present.
13574         * mpw-README: Add problem notes about CW6 and CW7.
13576 Thu Oct 26 05:45:10 1995  Ken Raeburn  <raeburn@kr-pc.cygnus.com>
13578         * Makefile.in (taz): Use ";" instead of ";;".
13580 Wed Oct 25 15:18:24 1995  Per Bothner  <bothner@kalessin.cygnus.com>
13582         * Makefile.in (taz):  Grep for '^diststuff:' or '^info:' in
13583         sub-directory Makefiles, instead of using DISTSTUFFDIRS and
13584         DISTDOCDIRS.
13585         (DISTSTUFFDIRS, DISTDOCDIRS):  Removed - no longer used.
13586         (newlib.tar.gz):  Don't pass DISTDOCDIRS to recursive make.
13588 Wed Oct 25 14:43:55 1995  Per Bothner  <bothner@kalessin.cygnus.com>
13590         * Makefile.in (DISTDOCDIRS):  Remove ld gprof bnutils gas libg++ gdb
13591         and gnats, because they are now subsumed by DISTSTUFFDIRS.
13592         Move bfd to DISTSTUFFDIRS.
13594 Tue Oct 24 18:19:09 1995  Jason Molenda  (crash@phydeaux.cygnus.com)
13596         * Makefile.in (X11_LIB): Removed.
13597         (X11_FLAGS_TO_PASS): pass only X11_EXTRA_CFLAGS and X11_EXTRA_LIBS.
13599         * configure.in (host_makefile_frag): mh-aix & mh-sun removed.
13601 Sun Oct 22 13:04:42 1995  Michael Meissner  <meissner@tiktok.cygnus.com>
13603         * cfg-ml-com.in (powerpc*): Shorten some of the multilib directory
13604         names.
13606 Fri Oct 20 18:02:10 1995  Michael Meissner  <meissner@tiktok.cygnus.com>
13608         * cfg-ml-com.in (powerpc*-eabi*): Add mcall-aixdesc varients.
13610 Thu Oct 19 10:40:57 1995  steve chamberlain  <sac@slash.cygnus.com>
13612         * configure.in (i[345]86-*-win32): Always build newlib.
13613         Don't configure cvs, autoconf or texinfo.
13614         * Makefile.in (LD_FOR_TARGET): New.
13615         (BASE_FLAGS_TO_PASS, EXTRA_TARGET_FLAGS, CONFIGURE_TARGET_MODULES):
13616         Pass down LD_FOR_TARGET.
13618 Wed Oct 18 15:53:56 1995  steve chamberlain  <sac@slash.cygnus.com>
13620         * winsup: New directory.
13621         * Makefile.in: Build winsup.
13622         * configure.in: Winsup is configured when target is win32.
13623         Can only build win32 target GDB when native.
13625 Mon Oct 16 09:42:31 1995  Jeffrey A Law  (law@cygnus.com)
13627         * config.guess: Recognize HP model 819 machines as having
13628         a PA 1.1 processor.
13630 Mon Oct 16 10:49:43 1995  Ian Lance Taylor  <ian@cygnus.com>
13632         * configure: Fix sed loop which substitutes for CC and CXX to
13633         avoid bug found in various sed implementations.
13635 Wed Oct 11 16:16:20 1995  Michael Meissner  <meissner@tiktok.cygnus.com>
13637         * cfg-ml-com.in (powerpc-*-eabisim): Delete separate rule for
13638         simulator.  Use standard powerpc-*-eabi*.
13640 Mon Oct  9 17:21:56 1995  Ian Lance Taylor  <ian@cygnus.com>
13642         * configure.in: Stop putting gas and binutils in noconfigdirs for
13643         powerpc-*-aix* and rs6000-*-*.
13645 Mon Oct  9 12:38:40 1995  Michael Meissner  <meissner@cygnus.com>
13647         * cfg-ml-com.in (powerpc*-*-eabisim*): Add support for building
13648         -mcall-aixdesc libraries.
13650 Fri Oct  6 16:17:57 1995  Ken Raeburn  <raeburn@cygnus.com>
13652         Mon Sep 25 22:49:32 1995  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
13654         * config.sub (arm | armel | armeb): Fix shell syntax.
13656 Fri Oct  6 14:40:28 1995  Michael Meissner  <meissner@tiktok.cygnus.com>
13658         * cfg-ml-com.in ({powerpc,rs6000}-ibm-aix*): Add multilibs for
13659         -msoft-float and -mcpu=common support.
13660         (powerpc*-*-eabisim*): Add support for building -mcall-aix
13661         libraries.
13663 Thu Oct  5 13:26:37 1995  Brendan Kehoe  <brendan@lisa.cygnus.com>
13665         * configure.in: Allow configuration and build of emacs19 for the alpha.
13667 Wed Oct  4 22:05:36 1995  Jason Molenda  (crash@phydeaux.cygnus.com)
13669         * configure.in (CC): Get ^CC, not just any old CC, from
13670         ${host_makefile_frag}.
13672 Wed Oct  4 21:55:00 1995  Jason Molenda  (crash@phydeaux.cygnus.com)
13674         * configure.in (CC): Try to get CC from
13675         ${srcdir}/${host_makefile_frag}, not ${host_makefile_frag}.
13677 Wed Oct  4 21:44:12 1995  Jason Molenda  (crash@phydeaux.cygnus.com)
13679         * Makefile.in (TARGET_CONFIGDIRS): configure targetdirs
13680         only if it exists in $(srcdir).
13682 Wed Oct  4 11:52:31 1995  Ian Lance Taylor  <ian@cygnus.com>
13684         * configure: If CC and CXX are not set in the environment, set
13685         them, based on either an existing Makefile or on searching for gcc
13686         in PATH.  Substitute for CC and CXX in Makefile.
13687         * configure.in: Remove libm from target_libs.  Separate
13688         target_configdirs from configdirs.  If CC is not set in
13689         environment, try to get it from a host Makefile fragment.  Rewrite
13690         changes of configdirs to use skipdirs instead.  A few minor
13691         tweaks.  Take directories out of target_configdirs as they are
13692         taken out of configdirs.  Remove existing Makefile files from
13693         subdirectories.  Substitute for TARGET_CONFIGDIRS and
13694         CONFIG_ARGUMENTS in Makefile.
13695         * Makefile.in (TARGET_CONFIGDIRS): New variable, automatically set
13696         by configure.in.
13697         (CONFIG_ARGUMENTS): Likewise.
13698         (CONFIGURE_TARGET_MODULES): New variable.
13699         ($(DO_X)): Loop over TARGET_CONFIGDIRS as well as SUBDIRS.
13700         ($(CONFIGURE_TARGET_MODULES)): New target.
13701         (configure-libg++, configure-libio): New targets.
13702         (all-libg++): Depend upon configure-libg++.
13703         (all-libio): Depend upon configure-libio.
13704         (configure-libgloss, all-libgloss): New targets.
13705         (configure-libstdc++): New target.
13706         (all-libstdc++): Depend upon configure-libstdc++.
13707         (configure-librx, all-librx): New targets.
13708         (configure-newlib): New target.
13709         (all-newlib): Depend upon configure-newlib
13710         (configure-xiberty): New target.
13711         (all-xiberty): Depend upon configure-xiberty.
13713 Sat Sep 30 04:32:59 1995  Jason Molenda (crash@phydeaux.cygnus.com)
13715         * configure.in (host i[345]86-*-win32):  Expand the
13716         noconfigdirs again.
13718 Thu Sep 28 21:18:49 1995  Stan Shebs  <shebs@andros.cygnus.com>
13720         * mpw-configure: Fix sed command file name.
13722 Thu Sep 28 17:39:56 1995  steve chamberlain  <sac@slash.cygnus.com>
13724         * configure.in (host i[345]86-*-win32): Reduce the
13725         noconfigdirs again.
13727 Wed Sep 27 12:24:00 1995  Ian Lance Taylor  <ian@cygnus.com>
13729         * configure.in: Don't configure ld and gdb for powerpc*-*-winnt*
13730         or powerpc*-*-pe*, since they are not yet supported.
13732 Tue Sep 26 14:30:01 1995  Stan Shebs  <shebs@andros.cygnus.com>
13734         Add PowerMac support and many other enhancements.
13735         * mpw-configure: New option --cc to select compiler to use,
13736         paste options set according to --cc into the generated
13737         Makefile, generate the Makefile by sed'ing the Unix Makefile.in
13738         if mpw-make.sed is present.
13739         * mpw-config.in: Don't test for gC1, test for mpw-touch,
13740         add forward includes for PowerPC include files.
13741         * mpw-build.in: Build using Makefile.PPC if present.
13742         (do-byacc, etc): Remove separate version resource builds.
13743         (do-gas): Build "stamps" before "all".
13744         (do-gcc): Build "stamps-h" and "stamps-c" before "all".
13745         * mpw-README: Update to reflect --cc option, PowerMac support,
13746         and recently-reported compatibility problems.
13748 Fri Sep 22 12:15:42 1995  Doug Evans  <dje@deneb.cygnus.com>
13750         * cfg-ml-com.in (m68*-*-*): Only build multilibs for
13751         embedded m68k systems (-aout, -coff, -elf, -vxworks).
13752         (--with-multilib-top): Pass to recursive invocations.
13754 Tue Sep 19 13:51:05 1995  J.T. Conklin  <jtc@blues.cygnus.com>
13756         * configure.in (noconfigdirs): Disable libg++ and libstdc++ on
13757         v810-*-*.
13759 Mon Sep 18 23:08:26 1995  J.T. Conklin  <jtc@rtl.cygnus.com>
13761         * configure.in (noconfigdirs): Disable bfd, binutils, gas, gcc,
13762         gdb, ld and opcodes on v810-*-*.
13764 Tue Sep 12 18:03:31 1995  Ian Lance Taylor  <ian@cygnus.com>
13766         * Makefile.in (DO_X): Change do-realclean to do-maintainer-clean.
13767         (local-maintainer-clean): New target.
13768         (maintainer-clean): New target.
13769         (realclean): Just depend upon maintainer-clean.
13771 Fri Sep  8 17:11:14 1995  J.T. Conklin  <jtc@rtl.cygnus.com>
13773         * configure.in (noconfigdirs): Disable gdb on m68k-*-netbsd*.
13775 Fri Sep  8 16:46:29 1995  Ian Lance Taylor  <ian@cygnus.com>
13777         * configure.in: Build ld in mips*-*-bsd* case.
13779 Thu Sep  7 20:03:41 1995  Ken Raeburn  <raeburn@cygnus.com>
13781         * config.sub: Accept -lites* OS.  From Ian Dall.
13783 Fri Sep  1 08:06:58 1995  James G. Smith  <jsmith@beauty.cygnus.com>
13785         * config.sub: recognise mips64vr4300 and mips64vr4300el as valid
13786         targets.
13788 Wed Aug 30 21:06:50 1995  Jason Molenda  (crash@phydeaux.cygnus.com)
13790         * configure.in: treat i386-win32 canadian cross the same as
13791         i386-go32 canadian cross.
13793 Thu Aug 24 14:53:20 1995  Michael Meissner  <meissner@tiktok.cygnus.com>
13795         * cfg-ml-com.in (powerpc*-*-eabisim): Add support for PowerPC
13796         running under the simulator to build a reduced set of libraries.
13797         (powerpc-*-eabiaix): Add fine grained multilib support added to
13798         other powerpc targets yesterday.
13800 Wed Aug 23 09:41:56 1995  Michael Meissner  <meissner@tiktok.cygnus.com>
13802         * cfg-ml-com.in (powerpc*): Add support for -disable-biendian,
13803         -disable-softfloat, -disable-relocatable, -disable-aix, and
13804         -disable-sysv to control which multilib libraries get built.
13806 Thu Aug 17 16:03:41 1995  Ken Raeburn  <raeburn@kr-laptop.cygnus.com>
13808         * configure: Add Makefile.tem to list of files to remove in trap
13809         handler.
13811 Mon Aug 14 19:27:56 1995  Per Bothner  <bothner@kalessin.cygnus.com>
13813         * config.guess (*Linux*):  Add missing "exit"s.
13814         Also, need specific check for alpha-unknown-linux (uses COFF).
13816 Fri Aug 11 15:38:20 1995  Per Bothner  <bothner@kalessin.cygnus.com>
13818         * config.guess:  Merge with FSF:
13820         Wed Jun 28 17:57:27 1995  David Edelsohn  <edelsohn@mhpcc.edu>
13821         * config.guess (AIX4): More robust release numbering discovery.
13823         Thu Jun 22 19:01:24 1995  Kenneth Stailey  (kstailey@eagle.dol-esa.gov)
13824         * config.guess (i386-sequent-ptx): Properly get version number.
13826         Thu Jun 22 18:36:42 1995  Uwe Seimet  (seimet@iris1.chemie.uni-kl.de)
13827         * config.guess (mips:*:4*:UMIPS): New case.
13829 Mon Aug  7 09:21:35 1995  Doug Evans  <dje@canuck.cygnus.com>
13831         * configure.in (i386-go32 host): Fix typo (deja-gnu -> dejagnu).
13832         (i386-win32 host): Likewise.  Don't build readline.
13834 Sat Aug  5 09:51:49 1995  Fred Fish  <fnf@rtl.cygnus.com>
13836         * Makefile.in (GDBTK_SUPPORT_DIRS):  Define and pass as part of
13837         SUPPORT_FILES to submakes.
13839 Fri Aug  4 13:04:36 1995  Fred Fish  <fnf@cygnus.com>
13841         * Makefile.in (GDB_SUPPORT_DIRS): Add utils.
13842         (DEVO_SUPPORT): Add mpw-README, mpw-build.in, mpw-config.h and
13843         mpw-configure.
13845 Wed Aug  2 16:32:40 1995  Ken Raeburn  <raeburn@cygnus.com>
13847         * configure.in (appdirs): Use =, not ==, in test expression when
13848         trying to build the text to print in the warning message for
13849         Solaris users.
13851 Mon Jul 31 09:56:18 1995  steve chamberlain  <sac@slash.cygnus.com>
13853         * cfg-ml-com.in (z8k-*-coff): Add 'std' multilib build.
13855 Fri Jul 28 00:16:31 1995  Jeffrey A. Law  <law@rtl.cygnus.com>
13857         * config.guess: Recognize lynx-2.3.
13859 Thu Jul 27 15:47:59 1995  steve chamberlain  <sac@slash.cygnus.com>
13861         * config.sub (z8ksim): Deleted
13862         (z8k-*-coff): New, this is the one true name of the target.
13864 Thu Jul 27 14:33:33 1995  Doug Evans  <dje@canuck.cygnus.com>
13866         * cfg-ml-pos.in (dotdot): Work around SunOS sed bug.
13868 Thu Jul 27 13:31:05 1995  Fred Fish  (fnf@cygnus.com)
13870         * config.guess (*:Linux:*:*): First try asking the linker what the
13871         default object file format is (elf, aout, or coff).  Then if this
13872         fails, try previous methods.
13874 Thu Jul 27 11:28:17 1995  J.T. Conklin  <jtc@rtl.cygnus.com>
13876         * configure.in: Don't build newlib for *-*-vxworks5.1.
13878 Thu Jul 27 11:18:47 1995  Brendan Kehoe  <brendan@lisa.cygnus.com>
13880         * configure.in: Don't build newlib for a29k-*-vxworks5.1.
13881         * test-build.mk: Add setting of --with-headers for a29k-vxworks5.1.
13883 Tue Jul 25 21:25:39 1995  Doug Evans  <dje@canuck.cygnus.com>
13885         * cfg-ml-pos.in (MULTITOP): Trim excess trailing "/.".
13887 Fri Jul 21 10:41:12 1995  Doug Evans  <dje@canuck.cygnus.com>
13889         * cfg-ml-com.in: New file.
13890         * cfg-ml-pos.in: New file.
13892 Wed Jul 19 00:37:27 1995  Jeffrey A. Law  <law@rtl.cygnus.com>
13894         * COPYING.NEWLIB: Add HP free copyright to list.
13896 Tue Jul 18 10:58:51 1995  Michael Meissner  <meissner@tiktok.cygnus.com>
13898         * config.sub: Recognize -eabi* for the system, not just -eabi.
13900 Mon Jul  3 13:44:51 1995  Steve Chamberlain  <sac@slash.cygnus.com>
13902         * Makfile.in (DLLTOOL_FOR_TARGET): New name, pass it down.
13903         * config.sub, configure.in (win32): New target and host.
13905 Wed Jun 28 23:57:08 1995  Steve Chamberlain  <sac@slash.cygnus.com>
13907         * configure.in: Add i386-pe configuration.
13909 Fri Jun 23 14:28:44 1995  Stan Shebs  <shebs@andros.cygnus.com>
13911         * mpw-build.in (install): Install GDB after LD.
13913 Thu Jun 22 17:10:53 1995  Stan Shebs  <shebs@andros.cygnus.com>
13915         * mpw-config.in (elf/mips.h): Always forward-include, needed
13916         for GDB to build.
13918 Wed Jun 21 15:17:30 1995  Rob Savoye  <rob@darkstar.cygnus.com>
13920         * testsuite: New directory for customer acceptance and whole tool
13921         chain tests.
13923 Wed Jun 21 16:50:29 1995  Ken Raeburn  <raeburn@cujo.cygnus.com>
13925         * configure: If per-host line isn't found, but AC_OUTPUT is found
13926         and a configure script exists, run it instead.
13928 Thu Jun 15 21:09:24 1995  Per Bothner  <bothner@kalessin.cygnus.com>
13930         * config.guess:  Update from FSF, for alpha-dec-winnt3.5 and  Crays.
13932 Tue Jun 13 21:43:27 1995  Rob Savoye  <rob@darkstar.cygnus.com>
13934         * configure: Set build_{cpu,vendor,os,alias} to host values when
13935         --build isn't specified.
13937 Mon Jun  5 18:26:36 1995  Jason Merrill  <jason@phydeaux.cygnus.com>
13939         * Makefile.in (PICFLAG, PICFLAG_FOR_TARGET): New macros.
13940         (FLAGS_TO_PASS): Pass them.
13941         (EXTRA_TARGET_FLAGS): Ditto.
13943 Wed May 31 22:27:42 1995  Jim Wilson  <wilson@chestnut.cygnus.com>
13945         * Makefile.in (all-libg++): Depend on all-libstdc++.
13947 Thu May 25 22:40:59 1995  J.T. Conklin  <jtc@rtl.cygnus.com>
13949         * configure.in (noconfigdirs): Enable all packages for
13950           i386-unknown-netbsd.
13952 Sat May 20 13:22:31 1995  Angela Marie Thomas  <angela@cirdan.cygnus.com>
13954         * configure.in (noconfigdirs): Don't configure tk for i386-go32
13955         hosted builds (DOS builds)
13957 Thu May 18 18:08:49 1995  Ken Raeburn  <raeburn@kr-laptop.cygnus.com>
13959         Changes for ARM based on patches from Richard Earnshaw:
13960         * config.sub: Handle armeb and armel.
13961         * configure.in: Omit arm linker only for riscix.
13963 Thu May 11 17:23:26 1995  Per Bothner  <bothner@kalessin.cygnus.com>
13965         * config.guess:  Update from FSF.
13967 Tue May  9 15:52:05 1995  Michael Meissner  <meissner@cygnus.com>
13969         * config.sub: Recognize powerpcle as the little endian varient of
13970         the PowerPC.  Recgonize ppc as a PowerPC variant, and ppcle as a
13971         powerpcle variant.  Convert pentium into i586, not i486.  Add p5
13972         alias for i586.  Map new x86 variants p6, k5, nexgen into i586
13973         temporarily.
13975 Tue May  2 16:29:41 1995  Jeff Law  (law@snake.cs.utah.edu)
13977         * configure.in (hppa*-*-lites*): Treat like hppa*-*-*elf*.
13979 Sun Apr 30 21:38:09 1995  Jeff Law  (law@snake.cs.utah.edu)
13981         * config.sub: Accept -lites* as a basic system type.
13983 Thu Apr 27 11:33:29 1995  Michael Meissner  (meissner@cygnus.com)
13985         * config.guess (*:Linux:*:*): Check for whether the pre-BFD linker is
13986         installed, and if so return linuxoldld as the system name.
13988 Wed Apr 26 10:59:02 1995  Jeff Law  (law@snake.cs.utah.edu)
13990         * config.guess: Add hppa1.1-hp-lites support.
13992 Tue Apr 25 11:08:11 1995  Rob Savoye  <rob@darkstar.cygnus.com>
13994         * configure.in: Don't build newlib for m68k-vxworks5.1.
13996 Wed Apr 19 17:02:43 1995  Jim Wilson  <wilson@chestnut.cygnus.com>
13998         * configure.in (mips-sgi-irix6): Use mh-irix5.
14000 Fri Apr 14 15:21:17 1995  Doug Evans  <dje@chestnut.cygnus.com>
14002         * Makefile.in (all-gcc): Depend on all-ld (for libgcc1-test).
14004 Wed Apr 12 16:06:01 1995  Jason Merrill  <jason@phydeaux.cygnus.com>
14006         * test-build.mk: Enable building of shared libraries on IRIX 5 and
14007         OSF/1.  Fix compiler flags.
14008         * build-all.mk: Support Linux and OSF/1 3.0.  Fix compiler flags.
14010 Tue Apr 11 18:55:40 1995  Doug Evans  <dje@canuck.cygnus.com>
14012         * configure.in: Recognize --with-newlib.
14013         (sparc-*-sunos4*): Build sim, dejagnu, expect, tcl if cross target.
14015 Mon Apr 10 14:38:20 1995  Jason Molenda (crash@phydeaux.cygnus.com)
14017         * Makefile.in: move {all,check,install}-gdb from *_MODULES
14018         to *_X11_MODULES due to gdbtk needing X include files et al.
14020 Mon Apr 10 11:42:22 1995  Stan Shebs  <shebs@andros.cygnus.com>
14022         Merge in support for Mac MPW as a host.
14023         (Old change descriptions retained for informational value.)
14025         * mpw-config.in: Add generic include forwards for cpu-specific
14026         include files in aout and elf directories.
14028         * mpw-configure: Added copyright.
14029         * mpw-config.in: Check for presence of required build tools.
14030         (target_libs): Add newlib.
14031         (target_tools): Add examples.
14032         (Read Me): Generate as "Read Me for MPW" instead.
14033         * mpw-build.in: Base sub-builds on all-foo instead of do-foo.
14034         (all-byacc, do-byacc, all-flex, do-flex, do-newlib): New actions.
14035         (do-gas, do-gcc, do-gdb, do-ld): Build Version.r first.
14037         * mpw-configure: Remove subdir-specific makefile hackery,
14038         delete mk.tmp after using it.
14040         * mpw-build.in (all): Display start and end times.
14042         * mpw-configure (host_canonical): Set.
14043         (target_cpu): Always add to makefiles.
14044         (ARCHDEFS, EMUL): Add to makefile only if nonempty.
14045         (TM_FILE, XM_FILE, NM_FILE): No longer add to makefile.
14046         (mpw-mh-mpw): Look for in srcdir and srcroot.
14047         Use sed instead of mpw-edit-prefix to edit prefix definitions.
14049         * mpw-build.in: (install-only): New target.
14051         * mpw-configure (host_alias, target_alias): Rename from hostalias
14052         and targetalias, add into generated Makefile.
14053         (mk.tmp): If present, add into generated Makefile.
14054         * mpw-build.in (all-gas): Build config.h first before gas proper.
14056         * mpw-configure (config.status): Write only if changed.
14057         * mpw-config.in (readline): Configure it (not built, just used for
14058         definitions).
14060         * mpw-config.in (elf/mips.h): Add a forward include.
14062         * mpw-config.in: Forward-include most .h files in include into
14063         extra-include.
14064         (readline): Don't build.
14065         mpw-build.in (install): Install GDB.
14067         * mpw-configure (prefix, mpw_prefix): Handle it.
14068         * mpw-config.in (mmalloc, readline): Don't configure.
14069         * mpw-build.in (thisscript): Rename to ThisScript.
14070         Use mpw-build instead of BuildProgram everywhere.
14071         (mmalloc, readline): Don't build.
14072         * mpw-README: New file, basic documentation about the MPW port.
14074         * mpw-config.in: Use forward-include to create include files.
14076         * mpw-configure: Add more things to the top of each configured
14077         Makefile, including contents of config/mpw-mh-mpw.
14078         * mpw-config.in (extra-include): Create this directory and fill it
14079         with Posix-like include files when configuring.
14081         * config.sub (apple, mac, mpw): Add various aliases.
14083         * mpw-build.in: New file, top-level build script fragment for MPW.
14084         * mpw-configure: New file, configure script for MPW.
14085         * mpw-config.in: New file, config fragment for MPW.
14087 Fri Apr  7 19:33:16 1995  Jim Kingdon  (kingdon@lioth.cygnus.com)
14089         * configure.in (host_libs): Remove glob, since it is gone from the
14090         sources.
14092 Fri Mar 31 11:36:17 1995  Jason Molenda  (crash@phydeaux.cygnus.com)
14094         * Makefile.in: define empty GDB_NLM_DEPS var.
14096         * configure.in(target_makefile_frag): use config/mt-netware
14097         for netware targets.
14099 Thu Mar 30 13:51:43 1995  Ian Lance Taylor  <ian@cygnus.com>
14101         * config.sub: Merge in recent FSF changes.  Remove linux special
14102         cases.
14104 Tue Mar 28 14:47:34 1995  Jason Molenda (crash@phydeaux.cygnus.com)
14106         Revert this change:
14108         Tue Mar 30 10:03:09 1993  Ian Lance Taylor  (ian@cygnus.com)
14110                 * build-all.mk: Use CC=cc -Xs on Solaris.
14112 Tue Mar 21 10:43:32 1995  Jim Kingdon  (kingdon@lioth.cygnus.com)
14114         * glob/*: Removed.  Schauer's 24 Feb 1994 readline change made us
14115         stop using it.
14116         * Makefile.in: Nuke all references to glob subdirectory.
14118 Thu Mar 16 13:35:30 1995  Jason Merrill  <jason@phydeaux.cygnus.com>
14120         * configure.in: Fix --enable-shared logic in per-host.
14122 Mon Mar 13 12:33:15 1995  Ian Lance Taylor  <ian@cygnus.com>
14124         * configure.in (*-hp-hpux[78]*): Use mh-hpux8.
14126 Mon Mar  6 10:21:58 1995  Jim Kingdon  (kingdon@lioth.cygnus.com)
14128         * configure.in (noconfigdirs): Don't build gas on AIX, for
14129         powerpc*-*-aix* as well as for rs6000*-*-aix*.
14131 Wed Mar  1 12:51:53 1995  Ian Lance Taylor  <ian@cygnus.com>
14133         * configure: Fix --cache-file to work if the file argument is a
14134         relative path.
14136 Tue Feb 28 17:36:07 1995  Ian Lance Taylor  <ian@cygnus.com>
14138         * configure: If the --cache-file is used, pass it down to
14139         configure in subdirectories.
14141 Mon Feb 27 12:52:46 1995  Kung Hsu  <kung@mexican.cygnus.com>
14143         * config.sub: add vxworks29k configuration.
14145 Fri Feb 10 16:12:26 1995  Ken Raeburn  <raeburn@cujo.cygnus.com>
14147         * Makefile.in (taz): Do "diststuff" part quietly.
14149 Sun Feb  5 14:16:35 1995  Doug Evans  <dje@canuck.cygnus.com>
14151         * config.sub: Mini-merge with gcc/config.sub.
14153 Sat Feb  4 12:11:35 1995  Jim Wilson  <wilson@chestnut.cygnus.com>
14155         * config.guess (IRIX): Sed - to _.
14157 Fri Feb  3 11:54:42 1995  J.T. Conklin  <jtc@rtl.cygnus.com>
14159         * Makefile.in (source-vault, binary-vault): New targets.
14161 Thu Jan 26 13:00:11 1995  Michael Meissner  <meissner@cygnus.com>
14163         * config.sub: Recognize -eabi as a basic system type.
14165 Thu Jan 12 13:13:23 1995  Jason Merrill  <jason@phydeaux.cygnus.com>
14167         * configure.in (enable_shared stuff): Fix typo.
14169 Thu Jan 12 01:36:51 1995  deanm@medulla.LABS.TEK.COM (Dean Messing)
14171         * Makefile.in (BASE_FLAGS_TO_PASS): Fix typo in passing LIBCXXFLAGS*.
14173 Wed Jan 11 16:29:53 1995  Jason Merrill  <jason@phydeaux.cygnus.com>
14175         * Makefile.in (LIBCXXFLAGS_FOR_TARGET): Add -fno-implicit-templates.
14177 Mon Jan  9 12:48:01 1995  Jim Kingdon  <kingdon@lioth.cygnus.com>
14179         * configure.in (rs6000-*-*): Don't build gas.
14181 Wed Jan  4 23:53:49 1995  Ian Lance Taylor  <ian@tweedledumb.cygnus.com>
14183         * Makefile.in: Use /x/x/ instead of /brokensed/brokensed/, to
14184         reduce command line length.
14185         (AS_FOR_TARGET): Check for as.new, not Makefile.
14186         (NM_FOR_TARGET): Check for nm.new, not Makefile.
14188 Wed Jan  4 13:02:39 1995  Per Bothner  <bothner@kalessin.cygnus.com>
14190         * config.guess:  Merge from FSF.
14192 Thu Dec 15 17:11:37 1994  Ian Lance Taylor  <ian@sanguine.cygnus.com>
14194         * configure: Don't use $ when handling program_suffix.
14196 Mon Dec 12 12:09:37 1994  Stu Grossman  (grossman@cygnus.com)
14198         * configure.in:  Configure tk for hppa/hpux.
14200 Fri Dec  2 15:55:38 1994  Per Bothner  <bothner@kalessin.cygnus.com>
14202         * Makefile.in (LIBGXX_SUPPORT_DIRS):  Add libstdc++.
14204 Tue Nov 29 19:37:56 1994  Per Bothner  <bothner@kalessin.cygnus.com>
14206         * Makefile.in:  Move -fno-implicit-template from CXXFLAGS
14207         to LIBCXXFLAGS.  Tests are better run without it.
14209 Wed Nov 23 10:29:25 1994  Brendan Kehoe  (brendan@lisa.cygnus.com)
14211         * Makefile.in (all-ispell): Depend on all-emacs19 instead of all-emacs.
14213 Mon Nov 21 11:14:01 1994  J.T. Conklin  <jtc@rtl.cygnus.com>
14215         * configure.in (*-*-netware*): Don't configure xiberty.
14217 Mon Nov 14 08:49:15 1994  Stu Grossman  (grossman@cygnus.com)
14219         * configure.in:  Remove tk from native_only list.
14221 Fri Nov 11 15:31:26 1994  Bill Cox  (bill@rtl.cygnus.com)
14223         * build-all.mk: Add mips-ncd-elf target to sun4 targets
14224           for special NCD build.
14226 Mon Nov  7 20:58:17 1994  Ken Raeburn  <raeburn@cujo.cygnus.com>
14228         * Makefile.in (DEVO_SUPPORT): Remove configure.bat and
14229         makeall.bat, they're only useful for binutils snapshots.
14230         (binutils.tar.gz, gas+binutils.tar.gz): Add configure.bat and
14231         makeall.bat to specified SUPPORT_FILES.
14233 Mon Nov  7 17:25:18 1994  Bill Cox  (bill@cirdan.cygnus.com)
14235         * build-all.mk: Add Ericsson targets to sun4 and solaris
14236           hosts.  Add  BNR's sun4 target to solaris host, so their
14237           build-from-source will be tested in-house first.
14239 Sat Nov  5 18:43:30 1994  Jason Merrill  (jason@phydeaux.cygnus.com)
14241         * Makefile.in (LIBCFLAGS): New variable.
14242         (CFLAGS_FOR_TARGET): Ditto.
14243         (LIBCFLAGS_FOR_TARGET): Ditto.
14244         (LIBCXXFLAGS): Ditto.
14245         (CXXFLAGS_FOR_TARGET): Ditto.
14246         (LIBCXXFLAGS_FOR_TARGET): Ditto.
14247         (BASE_FLAGS_TO_PASS): Pass them.
14248         (EXTRA_TARGET_FLAGS): Ditto.
14250         * configure.in: Support --enable-shared.
14252 Sat Nov  5 15:44:00 1994  Per Bothner  <bothner@kalessin.cygnus.com>
14254         * configure.in (target_libs):  Include libstdc++ again.
14255         * config.guess:  Update from FSF (for FreeBSD).
14257 Thu Nov  3 16:32:30 1994  Ken Raeburn  <raeburn@cujo.cygnus.com>
14259         * Makefile.in (DEVO_SUPPORT): Include configure.bat and
14260         makeall.bat.
14261         (DISTDOCDIRS): Add `etc'.
14262         (ETC_SUPPORT_PFX): New variable.
14263         (taz): Include anything from etc starting with a word in
14264         ETC_SUPPORT_PFX.
14266 Wed Oct 26 16:19:35 1994  Ian Lance Taylor  <ian@sanguine.cygnus.com>
14268         * config.sub: Update for recent FSF changes.  Remove obsolete
14269         h8300hds entry.  Add -windows* and -osx as basic os.  Minor
14270         spacing changes.
14272 Thu Oct 20 18:41:56 1994  Per Bothner  <bothner@kalessin.cygnus.com>
14274         * configure.in (target_libs):  Remove libstdc++ for libg++-2.6.1.
14276         * config.guess:  Merge with FSF.
14277         * configure.in:  Match on i?86-ncr-sysv4.3, not i?86-ncr-sysv43.
14279 Thu Oct 20 19:26:56 1994  Ken Raeburn  <raeburn@cujo.cygnus.com>
14281         * configure: Since the "trap 0" handler will override the exit
14282         status on many systems, only use it for "exit 1", and make it set
14283         a non-zero exit status; reset it before "exit 0".  Also, check
14284         exit status of config.sub, and error out if it failed.
14286 Wed Oct 19 18:49:55 1994  Rob Savoye  (rob@cygnus.com)
14288         * Makefile.in: (ALL_TARGET_MODULES,INSTALL_TARGET_MODULES) Build
14289         and install libgloss.
14291 Tue Oct 18 15:25:24 1994  Ian Lance Taylor  <ian@sanguine.cygnus.com>
14293         * Makefile.in (all-binutils): Depend upon all-byacc.
14295         * configure.in: Don't build emacs on Irix 5.
14297 Mon Oct 17 16:22:12 1994  J.T. Conklin  (jtc@phishhead.cygnus.com)
14299         * configure.in (*-*-netware*): Add libio.
14301 Thu Oct 13 15:51:20 1994  Jason Merrill  (jason@phydeaux.cygnus.com)
14303         * Makefile.in (ALL_TARGET_MODULES): Add libstdc++.
14304         (CHECK_TARGET_MODULES): Ditto.
14305         (INSTALL_TARGET_MODULES): Ditto.
14306         (TARGET_LIBS): Ditto.
14307         (all-libstdc++): Note dependencies.
14309 Thu Oct 13 01:43:08 1994  Ken Raeburn  <raeburn@cujo.cygnus.com>
14311         * Makefile.in (BINUTILS_SUPPORT_DIRS): Add gas.
14313 Tue Oct 11 12:12:29 1994  Jason Merrill  (jason@phydeaux.cygnus.com)
14315         * Makefile.in (CXXFLAGS): Use -fno-implicit-templates instead of
14316         -fexternal-templates.
14318         * configure.in (target_libs): Add libstdc++.
14319         (noconfigdirs): Add libstdc++ as appropriate.
14321 Thu Oct  6 18:00:54 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14323         * config.guess:  Update from FSF.
14325 Tue Oct  4 12:05:42 1994  Ian Lance Taylor  <ian@sanguine.cygnus.com>
14327         * configure: Use ${config_shell} when running ${configsub}.
14329 Mon Oct  3 14:28:34 1994  Doug Evans  <dje@canuck.cygnus.com>
14331         * config.sub: No longer recognize h8300h.
14333 Mon Oct  3 12:40:54 1994  Ian Lance Taylor  <ian@sanguine.cygnus.com>
14335         * config.sub: Remove extraneous differences between config.sub and
14336         gcc/config.sub.
14338 Sat Oct  1 00:23:12 1994  Ken Raeburn  <raeburn@cujo.cygnus.com>
14340         * Makefile.in (DISTSTUFFDIRS): Add gas.
14342 Thu Sep 22 19:04:55 1994  Doug Evans  (dje@canuck.cygnus.com)
14344         * COPYING.NEWLIB: New file.
14346 Mon Sep 19 18:25:40 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14348         * config.guess (HP-UX):  Patch from Harlan Stenn
14349         <harlan@landmark.com> to also emit release level.
14351 Wed Sep  7 13:15:25 1994  Jim Wilson  (wilson@sphagnum.cygnus.com)
14353         * config.guess (sun4*:SunOS:*:*): Change '-JL' to '_JL'.
14355 Tue Sep  6 23:23:18 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14357         * config.sub:  Merge nextstep cleanup from FSF.
14359 Mon Sep  5 05:01:30 1994  Ken Raeburn  (raeburn@kr-pc.cygnus.com)
14361         * configure.in (arm-*-*): Don't configure ld for this target.
14363 Thu Sep  1 09:35:00 1994  J.T. Conklin  (jtc@phishhead.cygnus.com)
14365         * configure.in (*-*-netware): don't configure libg++, libio,
14366           librx, or newlib.
14368 Wed Aug 31 13:52:08 1994  Ian Lance Taylor  (ian@sanguine.cygnus.com)
14370         * configure.in (alpha-dec-osf*): Use osf*, not osf1*.  Don't
14371         configure ld--it works, but it doesn't support shared libraries.
14373 Sun Aug 28 18:13:45 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14375         * config.guess (*-unknown-freebsd*):  Get rid of possible
14376         trailing "(Release)" in version string.
14377         Patch from Paul Richards <paul@isl.cf.ac.uk>.
14379 Sat Aug 27 15:00:49 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14381         * config.guess:  Fix i486-ncr-sysv43 -> i486-ncr-sysv4.3.
14382         Fix type: *-next-neststep -> *-next-nextstep.
14384         * config.guess:  Merge from FSF:
14386         Fri Aug 26 18:45:25 1994  Philippe De Muyter (phdm@info.ucl.ac.be)
14388         * config.guess: Recognize powerpc-ibm-aix3.2.5.
14390         Wed Apr 20 06:36:32 1994  Philippe De Muyter  (phdm@info.ucl.ac.be)
14392         * config.guess: Recognize UnixWare 1.1 (UNAME_SYSTEM is SYSTEM_V
14393         instead of UNIX_SV for UnixWare 1.0).
14395 Sat Aug 27 01:56:30 1994  Stu Grossman  (grossman@cygnus.com)
14397         * Makefile.in (all-gdb):  Add dependencies on all-gcc and all-ld
14398         to make gdb/nlm/* build after the compiler and linker.
14400 Fri Aug 26 14:30:05 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14402         * config.guess (netbsd, freebsd, linux):  Accept any machine,
14403         not just i[34]86.
14404         (m68k-atari-sysv4):  Relocate to match FSF version.
14406         * config.guess:  More merges from the FSF:
14408         Add a space before function call or macro invocation.
14410         Tue May 10 16:53:55 1994  Roland McGrath (roland@churchy.gnu.ai.mit.edu)
14412         * config.guess: Add trap cmd to remove dummy.c and dummy when
14413         interrupted.
14415         Wed Apr 20 18:07:13 1994  Roland McGrath (roland@churchy.gnu.ai.mit.edu)
14417         * config.guess (dummy.c): Redirect stderr for `hostinfo' command.
14418         (dummy): Redirect stderr from compilation of dummy.c.
14420         Sat Apr  9 14:59:28 1994  Christian Kranz  (kranz@sent5.uni-duisburg.de)
14422         * config.guess: Distinguish between NeXTStep 2.1 and 3.x.
14424 Fri Aug 26 13:42:20 1994  Ken Raeburn  (raeburn@kr-laptop.cygnus.com)
14426         * configure: Accept and ignore --cache*, for compatibility with
14427         new autoconf.
14429 Fri Aug 26 13:05:27 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14431         * config.guess:  Merge from FSF:
14433         Thu Aug 25 20:28:51 1994  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
14435         * config.guess (Pyramid*:OSx*:*:*): New case.
14436         (PATH): Add /.attbin at end for finding uname.
14437         (dummy.c): Handle i860-alliant-bsd.  Follow whitespace conventions.
14439         Wed Aug 17 18:21:02 1994  Tor Egge  (tegge@pvv.unit.no)
14441         * config.guess (M88*:DolphinOS:*:*): New case.
14443         Thu Aug 11 17:00:13 1994  Stan Cox  (coxs@dg-rtp.dg.com)
14445         * config.guess (AViiON:dgux:*:*): Use TARGET_BINARY_INTERFACE
14446         to select whether to use ELF or COFF.
14448         Sun Jul 24 16:20:53 1994  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
14450         * config.guess: Recognize i860-stardent-sysv and i860-unknown-sysv.
14452         Sun May  1 10:23:10 1994  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
14454         * config.guess: Guess the OS version for HPUX.
14456         Tue Mar  1 21:53:03 1994  Karl Heuer  (kwzh@hal.gnu.ai.mit.edu)
14458         * config.guess (UNAME_VERSION): Recognize aix3.2.4 and aix3.2.5.
14460 Fri Aug 26 11:19:08 1994  Ian Lance Taylor  (ian@sanguine.cygnus.com)
14462         * configure.in: Recognize --with-headers, --with-libs, and
14463         --without-newlib.
14464         * Makefile.in (all-xiberty): Depend upon all-ld.
14466 Wed Aug 24 12:36:50 1994  Ian Lance Taylor  (ian@sanguine.cygnus.com)
14468         * configure.in: Change i[34]86 to i[345]86.
14470 Mon Aug 22 10:58:33 1994  Ian Lance Taylor  (ian@sanguine.cygnus.com)
14472         * configure (version): A few more tweaks to help message.
14474 Fri Aug 19 12:40:25 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14476         * Makefile.in:  Remove (for now) librx as a host library,
14477         now that we're building it for target.
14479 Fri Aug 19 10:49:17 1994  Ian Lance Taylor  (ian@sanguine.cygnus.com)
14481         * configure: Fix up help message; from karl@owl.hq.ileaf.com
14482         (Karl Berry).
14484 Tue Aug 16 16:11:08 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14486         * configure.in:  Also configure librx.
14488 Mon Aug 15 16:51:45 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14490         * Makefile.in:  Update various rules to reflect that librx
14491         is now needed for libg++.
14493 Fri Aug 12 18:07:21 1994  Ian Lance Taylor  (ian@sanguine.cygnus.com)
14495         * config.sub: Accept mips64orion and mips64orionel as a CPU name.
14497 Mon Aug  8 11:36:17 1994  Stan Shebs  (shebs@andros.cygnus.com)
14499         * configure.in: Configure the examples directory.
14501 Thu Aug  4 16:12:36 1994  Ian Lance Taylor  (ian@sanguine.cygnus.com)
14503         * configure: Simplify Jun 2 1994 change.
14505 Wed Aug  3 04:58:16 1994  D. V. Henkel-Wallace  (gumby@cygnus.com)
14507         * change CC to /usr/latest/bin/gcc for lynx host builds, since
14508         /bin/gcc isn't good enough to build gcc.
14510 Wed Jul 27 09:07:14 1994  Fred Fish  (fnf@cygnus.com)
14512         * Makefile.in (GDB_SUPPORT_FILES): Remove
14513         (setup-dirs-gdb, gdb.tar.gz, make-gdb.tar.gz):  Remove old rules.
14514         (gdb.tar.gz): Add new rule to use standard distribution building
14515         mechanism.
14517 Mon Jul 25 11:10:06 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
14519         * configure.in: Warn about use of /usr/ucb/cc on Solaris.  From
14520         Bill Cox <bill@cygnus.com>.
14522 Sat Jul 23 12:19:46 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14524         * config.guess:  Recognize ISC.  Patch from kwzh@gnu.ai.mit.edu.
14526 Fri Jul 22 17:53:59 1994  Stu Grossman  (grossman@cygnus.com)
14528         * configure:  Search current dir first in .gdbinit.
14530 Fri Jul 22 11:28:30 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14532         * config.sub:  Recognize freebsd (merged from gcc config.sub).
14534 Thu Jul 21 14:10:52 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14536         * config.sub:  Refer to NeXT's operating system as nextstep.
14538         * config.sub (case $basic_machine):  Re-order the cases, to match
14539         the order in the FSF version (which is mostly alphabethical).
14540         Merge in some additions and changes from the FSF.
14542 Sat Jul 16 12:03:08 1994  Stan Shebs  (shebs@andros.cygnus.com)
14544         * config.guess: Recognize m68k-atari-sysv4 and m88k-harris-csux7.
14545         * config.sub: Recognize cxux7.
14546         * configure.in: Use mh-cxux for m88k-harris-cxux*.
14548 Mon Jul 11 14:37:39 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14550         * config.sub:  Fix typo powerpc -> powerpc-*.
14552 Sat Jul  9 13:03:43 1994  Michael Tiemann  (tiemann@blues.cygnus.com)
14554         * Makefile.in: `all-emacs19' depends on `all-byacc'.
14556         * Makefile.in: Add all-emacs19 and install-emacs19 rules (in
14557         parallel with all-emacs and install-emacs).  Top-level command
14558         `make all-emacs19 CC=gcc' now behaves as `make all-emacs CC=gcc'.
14560 Thu Jun 30 16:53:42 1994  Ian Lance Taylor  (ian@sanguine.cygnus.com)
14562         * test-build.mk ($(host)-stamp-stage2-installed): Remove
14563         $(relbindir)/make before doing ``make install'', and use
14564         $(GNU_MAKE) while doing it.  Avoids problem on SunOS with
14565         installing over running make binary.
14566         ($(host)-stamp-stage3-installed): Likewise.
14568 Tue Jun 28 13:43:25 1994  Jim Kingdon  (kingdon@lioth.cygnus.com)
14570         * config.guess: Recognize Mach.
14572 Mon Jun 27 16:41:14 1994  Ian Lance Taylor  (ian@sanguine.cygnus.com)
14574         * configure: Check ${exec_prefixoption}, not ${exec_prefix}, to
14575         see whether --exec-prefix was used.
14577 Sun Jun 26 21:15:54 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14579         * README:  Explicitly mention libg++/README.  (Zoo's idea.)
14581 Tue Jun 21 12:45:55 1994  Jim Kingdon  (kingdon@lioth.cygnus.com)
14583         * Makefile.in: Add all-librx target similar to all-libproc.
14585 Wed Jun  8 23:11:55 1994  Stu Grossman  (grossman@cygnus.com)
14587         * config.guess:  Rearrange tests for Alpha-OSF1 to properly deal
14588         with post 1.2 uname bogosity.
14590 Thu Jun  9 00:27:59 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
14592         * configure: Remove temporary files on receipt of a signal.
14594 Tue Jun  7 12:06:24 1994  Ian Lance Taylor  (ian@cygnus.com)
14596         * configure: If there is a package_makefile_frag, remove
14597         ${subdir}/Makefile.tem after copying it in.
14599 Mon Jun  6 21:35:02 1994  D. V. Henkel-Wallace  (gumby@cygnus.com)
14601         * build_all.mk: support rs6000 lynx identifies itself as
14602         rs6000-lynx-lynxos2.2.2.  Also, use /usr/cygnus/progressive/bin/gcc
14603         since /bin/gcc is too feeble to compile a modern gcc.
14605 Mon Jun  6 16:06:34 1994  Karen Christiansen (karen@cirdan.cygnus.com)
14607         * brought devo/test-build.mk update-to-date with progressive/
14608           test-build.mk. Add lynx targets and hppa flag info.
14610 Sat Jun  4 17:23:54 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14612         * configure.in:  Use mh-ncrsvr43.  Patch from
14613         Tom McConnell <tmcconne@sedona.intel.com>.
14615 Fri Jun  3 17:47:24 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14617         * config.guess (i386-unknown-bsdi):  No longer need to
14618         check #if defined(__bsdi__) && defined(__i386__).
14620 Thu Jun  2 18:56:46 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
14622         * configure: Set program_transform_nameoption correctly.
14624 Thu Jun  2 10:57:06 1994  Karen Christiansen (karen@cirdan.cygnus.com)
14626         * brought build-all.mk update-to-date with progressive build-all.mk,
14627           added new targets and hppa info.
14629 Thu Jun  2 00:12:44 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
14631         * configure: If config.guess result is a prefix of the user
14632         specified target, assume a native build and use the user specified
14633         target as the host alias.  Remove SunOS patch suffix removal hack.
14634         * configure.in: Remove SunOS patch suffix removal hack.
14636         * Makefile.in (CROSS_CHECK_MODULES): Remove check-flex, since it's
14637         in NATIVE_CHECK_MODULES.
14639 Wed Jun  1 10:49:41 1994  Bill Cox  (bill@rtl.cygnus.com)
14641         * Makefile.in: Rename HOST_ONLY to NATIVE.
14642         * configure: Delete SunOs patch suffix from host_canonical
14643           and build_canonical variables that are prepended to Makefiles.
14644         * configure.in: Add comments for easier maintenance.
14646 Tue May 31 19:39:47 1994  Jim Kingdon  (kingdon@lioth.cygnus.com)
14648         * Makefile.in: Add all-libproc target similar to all-gui.
14650 Tue May 31 17:16:33 1994  Tom Lord  (lord@cygnus.com)
14652         * Makefile.in (CHECK_MODULES): split into
14653         HOST_ONLY_CHECK_MODULES and CROSS_CHECK_MODULES.
14655 Tue May 31 16:36:36 1994  Paul Eggert  (eggert@twinsun.com)
14657         * config.guess (i386-unknown-bsdi): New system to guess.
14659 Wed May 25 16:47:10 1994  Jim Kingdon  (kingdon@lioth.cygnus.com)
14661         * Makefile.in: Add all-gui target (but not yet build by "all").
14663 Thu May 26 08:53:19 1994  Bill Cox  (bill@rtl.cygnus.com)
14665         * config.sub: Move deletion of patch suffix from here...
14666         * configure.in: To here, at Ian's suggestion.  The top-
14667           level scripts might need to know of a patch level.
14669 Wed May 25 09:15:54 1994  Bill Cox  (bill@rtl.cygnus.com)
14671         * config.sub: Strip off patch suffix so rtl is recognized
14672           as a sunos4.1.3 machine, even though it's been patched.
14674 Fri May 20 08:25:49 1994  Steve Chamberlain  (sac@deneb.cygnus.com)
14676         * Makefile.in (INSTALL_LAST): Delete.
14677         (INSTALL_DOSREL): New.
14679 Thu May 19 17:12:12 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
14681         * configure.in: Use ld for i[34]86-*-sysv4* and sparc-*-solaris2*.
14682         Don't set use_gnu_ld to no for *-*-sysv4; that only controls
14683         whether we pass down --with-gnu-ld anyhow.
14685 Thu May 19 09:29:12 1994  Steve Chamberlain  (sac@cygnus.com)
14687         * Makefile.in (INSTALL_LAST): Change operation so it works
14688         on more flavors of make.
14689         * configure.in (go32): Don't build libg++ or libio.
14691 Fri May 13 13:28:34 1994  Steve Chamberlain  (sac@cygnus.com)
14693         * Makefile.in (Move HOST_PREFIX_1 and friends up so
14694         they can be overriden by templates.
14696 Sat May  7 16:46:44 1994  Steve Chamberlain  (sac@cygnus.com)
14698         * configure.in (target==go32): Don't build gdb.
14699         * dosrel: New directory.
14701 Fri May  6 14:19:25 1994  Steve Chamberlain  (sac@cygnus.com)
14703         * configure.in (host==go32): Configure dosrel too.
14704         * Makefile.in (INTALL_TARGET): Call INSTALL_LAST last.
14705         (HOST_CC, HOST_PREFIX, HOST_PREFIX_1): Undefine, they should
14706         be set by incoming names or templates.
14707         (INSTALL_LAST): New rule.
14709 Thu May  5 17:35:05 1994  Stan Shebs  (shebs@andros.cygnus.com)
14711         * config.sub (sparclitefrw, sparclitefrwcompat): Don't set the os.
14713 Thu May  5 20:06:45 1994  Ken Raeburn  (raeburn@cujo.cygnus.com)
14715         * configure.in (appdirs): New variable.  Currently empty, but will
14716         be used in gas distribution.  If nonempty, lists a set of
14717         directories at least one of which must get configured, or top
14718         level configuration is considered to have failed.
14719         (rs6000-*-lynxos*): Use new file name.
14721 Thu May  5 13:38:36 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
14723         Eliminate XTRAFLAGS.
14724         * Makefile.in (CC_FOR_TARGET): If newlib exists, refer to the
14725         newlib include files using -idirafter, and also use -nostdinc.
14726         (CXX_FOR_TARGET): Likewise.
14727         (XTRAFLAGS): Removed.
14728         (BASE_FLAGS_TO_PASS): Remove XTRAFLAGS_FOR_TARGET.
14729         (EXTRA_HOST_FLAGS): Remove XTRAFLAGS.
14730         (EXTRA_TARGET_FLAGS, EXTRA_GCC_FLAGS): Likewise.
14731         ($(DO_X)): Don't pass down XTRAFLAGS.
14733 Thu May  5 00:16:36 1994  Ken Raeburn  (raeburn@kr-pc.cygnus.com)
14735         * configure.in (mips*-dec-bsd*): New target; do build linker.
14736         (mips*-*-bsd*): New target; don't build linker.
14738 Wed May  4 20:10:10 1994  D. V. Henkel-Wallace  (gumby@cygnus.com)
14740         * configure.in: support rs6000-*-lynxos* configuration.
14741         support sunos4 as a cross target.
14743         * config.sub: look for lynx*, not lynx since the OS version may
14744         legitimately be part of the name.
14746 Tue May  3 21:48:11 1994  Ken Raeburn  (raeburn@cujo.cygnus.com)
14748         * configure.in (i[34]86-*-sco*): Move to be with other i386
14749         targets.
14750         (romp-*-*): New target.  Skip various binary utilities.
14751         (vax-*-*): New target.  Don't build newlib.
14752         (vax-*-vms): Renamed from *-*-vms.  Don't build opcodes or newlib.
14754 Thu Apr 28 15:03:05 1994  David J. Mackenzie  (djm@rtl.cygnus.com)
14756         * configure.in: Only set host_makefile_frag if config
14757         directory exists.
14759 Wed Apr 27 12:14:30 1994  David J. Mackenzie  (djm@rtl.cygnus.com)
14761         * install.sh: If $dstdir exists, don't check whether each
14762         component does.
14764 Tue Apr 26 18:11:33 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
14766         * test-build.mk (HOLES): Add sleep; used by rcs/src/conf.sh.
14768 Mon Apr 25 15:06:34 1994  Stan Shebs  (shebs@andros.cygnus.com)
14770         * configure.in (*-*-lynxos*): Don't configure newlib for either
14771         native or cross Lynx.
14773 Sat Apr 16 11:58:16 1994  Doug Evans  (dje@canuck.cygnus.com)
14775         * config.sub (sparc64-elf): Fix os.
14776         (z8k): Remove duplicate.
14778 Thu Apr 14 23:33:17 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
14780         * Makefile.in (gcc-no-fixedincludes): Touch gcc/include/fixed, not
14781         gcc/stmp-fixproto, to try to prevent fixproto from being run.
14783 Wed Apr 13 15:14:52 1994  Bill Cox  (bill@cygnus.com)
14785         * configure: Make file links cleanly even if Lynx fails on
14786           an NFS symlink (at least fail cleanly).
14788 Mon Apr 11 10:58:56 1994  Jim Wilson  (wilson@sphagnum.cygnus.com)
14790         * test-build.mk (CC): For mips-sgi-irix4, change -XNh1500 to
14791         -XNh2000.
14793 Sat Apr  9 15:10:45 1994  David J. Mackenzie  (djm@rtl.cygnus.com)
14795         * configure: Unknown options are fatal again.
14797 Fri Apr  8 12:01:41 1994  David J. Mackenzie  (djm@cygnus.com)
14799         * configure: Ignore --x-includes and --x-libraries, for Autoconf
14800         compatibility.
14802 Thu Apr  7 17:31:43 1994  Doug Evans  (dje@canuck.cygnus.com)
14804         * build-all.mk: Add `clean' target.
14806 Wed Apr  6 20:44:56 1994  Peter Schauer  (pes@regent.e-technik.tu-muenchen.de)
14808         * config.guess:  Add SINIX support.
14809         * configure.in:  Add mips-*-sysv4* support.
14811 Mon Apr  4 17:41:44 1994  Doug Evans  (dje@canuck.cygnus.com)
14813         * build-all.mk: Document all useful targets.
14814         If canonhost is sparc-sun-solaris2.3, change it to sparc-sun-solaris2.
14815         If canonhost is mips-sgi-irix4.0.5H, change it to mips-sgi-irix4.
14817 Thu Mar 31 04:55:57 1994  David J. Mackenzie  (djm@rtl.cygnus.com)
14819         * configure: Support --silent, --quiet.
14821 Wed Mar 30 21:37:38 1994  David J. Mackenzie  (djm@rtl.cygnus.com)
14823         * configure: Support --disable-FEATURE.
14825 Tue Mar 29 19:15:05 1994  Jim Kingdon  (kingdon@lioth.cygnus.com)
14827         * config.guess: Recognize NCR running SVR4.3.
14829 Mon Mar 28 14:55:15 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14831         * config.guess:  Make BSDI generate i386-unknown-bsd386.
14832         Patch from Paul Eggert <eggert@twinsun.com>.
14834 Mon Mar 28 12:54:52 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
14836         * configure.in (powerpc-*-aix*): Treat like rs6000-*-*.
14838 Sat Mar 26 11:25:48 1994  David J. Mackenzie  (djm@rtl.cygnus.com)
14840         * configure: Make unrecognized options give nonfatal warnings
14841         instead of fatal errors, and pass them to any subdirectory
14842         configures in case they recognize them.
14843         Make --x equivalent to --with-x.
14845 Fri Mar 25 21:52:10 1994  David J. Mackenzie  (djm@rtl.cygnus.com)
14847         * configure: Add --enable-* options.  Clean up usage message and
14848         some comments.
14850 Thu Mar 24 09:12:53 1994  Doug Evans  (dje@canuck.cygnus.com)
14852         * Makefile.in (NM_FOR_TARGET): Build tree version is now nm.new.
14854 Sun Mar 20 11:28:22 1994  Jeffrey A. Law  (law@snake.cs.utah.edu)
14856         * configure.in (hppa*-*-*): Enable binutils.
14858 Sat Mar 19 11:50:16 1994  Jim Kingdon  (kingdon@lioth.cygnus.com)
14860         * config.sub: Recognize cisco.
14862 Fri Mar 18 16:42:32 1994  Jason Merrill  (jason@deneb.cygnus.com)
14864         * Makefile.in (CXXFLAGS): Add -fexternal-templates.
14866 Tue Mar 15 11:25:55 1994  Jim Kingdon  (kingdon@lioth.cygnus.com)
14868         * config.guess: about target *-hitachi-hiuxwe2, don't print more
14869         than one configuration name.  Add comment.
14871 Sun Mar  6 23:13:38 1994  Hisashi MINAMINO  (minamino@sra.co.jp)
14873         * config.guess: about target *-hitachi-hiuxwe2, fixed
14874         machine guessing order.  [Hitachi's CPU_IS_HP_MC68K
14875         macro is incorrect.]
14877 Sun Mar 13 09:10:08 1994  Jim Kingdon  (kingdon@lioth.cygnus.com)
14879         * Makefile.in (TAGS): Just build TAGS in each subdirectory, rather
14880         than the "make ls" stuff which used to be here.
14882 Fri Mar 11 12:52:39 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14884         * config.guess:  Recognize i[34]86-unknown-freebsd.
14885         From Shawn M Carey <smcarey@rodan.syr.edu>.
14887 Thu Mar  3 14:24:21 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14889         * configure.in (noconfigdirs for alpha): Remove libg++ and libio.
14891 Wed Mar  2 13:28:48 1994  Jim Kingdon  (kingdon@deneb.cygnus.com)
14893         * config.guess: Check for ptx.
14895 Mon Feb 28 16:46:50 1994  Kung Hsu  (kung@mexican.cygnus.com)
14897         * config.sub: Add os9k checking.
14899 Thu Feb 24 07:09:04 1994  Jeffrey A. Law  (law@snake.cs.utah.edu)
14901         * config.guess: Handle OSF1 running on HPPA processors
14903 Fri Feb 18 14:14:00 1994  Ken Raeburn  (raeburn@rtl.cygnus.com)
14905         * configure: If subdir configure fails, print out a message with
14906         subdirectory name, in case subdir's configure code didn't identify
14907         itself.
14909 Fri Feb 18 12:50:15 1994  Doug Evans  (dje@cygnus.com)
14911         * configure.in: Remove embedded newlines from configdirs.
14912         Avoid mismatches of substrings.  Fix matching strings at end
14913         of configdirs.
14915 Fri Feb 11 15:33:33 1994  Stu Grossman  (grossman at cygnus.com)
14917         * config.guess:  Add Lynx/rs6000 config support.
14919 Tue Feb  8 13:41:09 1994  Ken Raeburn  (raeburn@rtl.cygnus.com)
14921         * configure.in (alpha-dec-osf1*, alpha*-*-*): Build gas.
14923 Mon Feb  7 15:42:36 1994  Jeffrey A. Law  (law@cygnus.com)
14925         * configure.in (hppa*-*-osf*): Treat this just like most other
14926         PA configurations (eg no binutils or ld).
14927         (hppa*-*-*elf*): These configurations have binutils and ld.
14929 Sun Feb  6 16:35:07 1994  Jeffrey A. Law  (law@snake.cs.utah.edu)
14931         * config.sub (hiux): Fix typo.  From m-kasahr@sramhc.sra.co.JP.
14933 Sat Feb  5 01:00:33 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
14935         * configure.in (rs6000-*-*): Build gas.
14937 Wed Feb  2 13:57:57 1994  Jeffrey A. Law  (law@snake.cs.utah.edu)
14939         * Makefile.in:  Avoid bug in losing hpux sed.
14941 Wed Feb  2 14:53:05 1994  Jim Kingdon  (kingdon@lioth.cygnus.com)
14943         * Makefile.in, test-build.mk: Remove MUNCH_NM; it was only needed
14944         for GDB and GDB has been fixed to not need it.
14946 Sun Jan 30 17:58:06 1994  Ken Raeburn  (raeburn@cujo.cygnus.com)
14948         * config.guess: Recognize vax hosts.
14950 Fri Jan 28 15:29:38 1994  Ken Raeburn  (raeburn@cujo.cygnus.com)
14952         * configure (while loop): Don't use "break 2" inside case
14953         statement -- the case statement isn't an enclosing loop.
14955 Mon Jan 24 18:40:06 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14957         * config.guess:  Clean up NeXT support, to allow nextstep
14958         on Intel machines.  Make OS be nextstep.
14960 Sun Jan 23 18:47:22 1994  Richard Kenner  (kenner@vlsi1.ultra.nyu.edu)
14962         * config.guess: Add alternate forms for Convex.
14964 Thu Jan 20 16:13:41 1994  Stu Grossman  (grossman at cygnus.com)
14966         * configure:  Completely rewrite option processing.  Take
14967         advantage of pattern-matching to avoid invoking test frequently.
14968         Also clean up host and target defaulting logic.
14970 Mon Jan 17 15:06:56 1994  Ken Raeburn  (raeburn@cujo.cygnus.com)
14972         * Makefile.in: Replace all occurrances of "rootme" with "r" and
14973         "$${rootme}" with "$$r", to increase the likelihood that the do-*
14974         commands (plus user environment) will fit SCO limits.
14976 Thu Jan  6 11:20:57 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
14978         * configure.in: Don't issue warnings about directories which are
14979         not being configured if -norecursion is set.  Correct test for
14980         --with-gnu-as and --with-gnu-ld to not get confused by substring
14981         matches.
14983         * configure.in: Don't build gas for alpha-dec-osf1*.
14985 Tue Jan  4 17:10:19 1994  Stu Grossman  (grossman at cygnus.com)
14987         * configure:  Back out Per's change of 12/19/1993.  It changes the
14988         behavior of configure in unexpected and confusing ways.
14990         Also, use different delim char when calculating
14991         program_transform_name so that the name can contain slashes.
14993 Sat Jan  1 13:45:31 1994  Rob Savoye  (rob@darkstar.cygnus.com)
14995         * configure.in, config.sub: Add support for VSTa micro-kernel.
14997 Sat Dec 25 20:00:47 1993  Jeffrey A. Law  (law@snake.cs.utah.edu)
14999         * configure.in: Nuke hacks which were used to get a special
15000         version of GAS for HPPA configurations.
15002 Sun Dec 19 20:40:44 1993  Per Bothner  (bothner@kalessin.cygnus.com)
15004         * configure:  If only ${target_alias} is given, use that
15005         as the default for ${host_alias}.
15006         * configure:  Add missing back-slashes before nested quotes.
15008 Wed Dec 15 18:07:18 1993  david d `zoo' zuhn  (zoo@andros.cygnus.com)
15010         * Makefile.in (BASE_FLAGS_TO_PASS): add YACC=$(BISON)
15012 Tue Dec 14 21:25:33 1993  Per Bothner  (bothner@cygnus.com)
15014         * config.guess:  Recognize some Tektronix configurations.
15015         From Kaveh R. Ghazi <ghazi@noc.rutgers.edu>.
15017 Sat Dec 11 11:18:00 1993  Steve Chamberlain  (sac@thepub.cygnus.com)
15019         * config.sub: Match any flavor of SH.
15021 Thu Dec  2 17:16:58 1993  Ken Raeburn  (raeburn@cujo.cygnus.com)
15023         * configure.in: Don't try to configure newlib for Alpha.
15025 Thu Dec  2 14:35:54 1993  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
15027         * configure.in: Don't build ld for Irix 5.  Don't build gas,
15028         libg++ or libio for any Alpha target.
15030         * configure.in (mips*-sgi-irix5*): New target; use mh-irix5.
15032 Wed Dec  1 17:00:33 1993  Jason Merrill  (jason@deneb.cygnus.com)
15034         * Makefile.in (GZIPPROG): Renamed from GZIP, which gzip uses for
15035         default arguments -- so it tried to compress itself.
15037 Tue Nov 30 13:45:15 1993  david d `zoo' zuhn  (zoo@andros.cygnus.com)
15039         * configure.in (notsupp): ensure that a space is always at the end
15040           of the configdirs list, since the grep checks for an explicit space
15042 Tue Nov 16 15:04:27 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
15044         * configure.in (target i386-sysv4.2): don't build ld, since static
15045           versions of many libraries are not available.
15047 Tue Nov 16 14:28:12 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
15049         * config.guess: Recognize Apollos (using environment variables).
15050         * configure.in: Don't configure ld, binutils, or gprof for Apollo.
15052 Thu Nov 11 12:03:50 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
15054         * config.guess: Recognize Sony news mips running newsos.
15056 Wed Nov 10 16:57:00 1993  Mark Eichin  (eichin@cygnus.com)
15058         * Makefile.in (all-cygnus, build-cygnus): "fi else" needs to be
15059         "fi ; else" for bash.
15061 Tue Nov  9 15:54:01 1993  Mark Eichin  (eichin@cygnus.com)
15063         * Makefile.in (BASE_FLAGS_TO_PASS): pass SHELL.
15065 Fri Nov  5 08:07:27 1993  D. V. Henkel-Wallace  (gumby@blues.cygnus.com)
15067         * config.sub: accept unixware as an alias for svr4.2.
15068         Fix some inconsistancies with the gcc version.
15070 Fri Nov  5 15:14:12 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
15072         * Makefile.in (DISTDOCDIRS):  Add gdb.
15074 Fri Nov  5 11:59:42 1993  Per Bothner  (bothner@kalessin.cygnus.com)
15076         * Makefile.in (DISTDOCDIRS):  Add libg++ and libio.
15078 Fri Nov  5 10:35:05 1993  Ken Raeburn  (raeburn@rover.cygnus.com)
15080         * Makefile.in (taz): Only build "info" in DISTDOCDIRS.
15081         (DISTDOCDIRS): Don't assume libg++ and gdb folks necessarily want
15082         this now.
15084 Thu Nov  4 18:58:23 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
15086         * config.sub: Accept hiux* as an OS name.
15088         * Makefile.in: Change RUNTEST_FLAGS back to RUNTESTFLAGS per
15089         etc/make-stds.texi.  The underscore came from gcc, and dje now
15090         agrees that RUNTESTFLAGS is the correct name.
15092 Thu Nov  4 10:49:01 1993  Per Bothner  (bothner@kalessin.cygnus.com)
15094         * install.sh:  Remove 'set -e'.  It makes any conditionals
15095         in the script useless.
15097         * config.guess: Automatically recognize arm-acorn-riscix
15098         Patch from Richard Earnshaw (rwe11@cl.cam.ac.uk).
15100 Thu Nov 04 08:08:04 1993  Jeffrey Wheat  (cassidy@cygnus.com)
15102         * Makefile.in: Change RUNTESTFLAGS to RUNTEST_FLAGS
15104 Wed Nov  3 22:09:46 1993  Ken Raeburn  (raeburn@rtl.cygnus.com)
15106         * Makefile.in (DISTDOCDIRS): New variable.
15107         (taz): Edit local Makefile.in sooner, instead of proto-toplev
15108         Makefile.in later.  Build "info" and "dvi" in DISTDOCDIRS.
15110 Wed Nov  3 21:31:52 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
15112         * configure.in (hppa target): check the source directory for the
15113           pagas sub-directory
15115 Wed Nov  3 11:12:22 1993  Doug Evans  (dje@canuck.cygnus.com)
15117         * config.sub: Allow -aout* and -elf*.
15119 Wed Nov  3 11:08:33 1993  Ken Raeburn  (raeburn@rtl.cygnus.com)
15121         * configure.in: Don't build ld on i386-solaris2, same as for
15122         sparc-solaris2.
15124 Tue Nov  2 14:21:25 1993  Per Bothner  (bothner@kalessin.cygnus.com)
15126         * Makefile.in (taz): Add texinfo/lgpl.texinfo (for libg++).
15128 Tue Nov  2 13:38:30 1993  Peter Schauer  (pes@regent.e-technik.tu-muenchen.de)
15130         * configure.in:  Configure gdb for alpha.
15132 Mon Nov  1 10:42:54 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
15134         * Makefile.in (CXXFLAGS): Add -O.
15136 Wed Oct 27 10:45:06 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
15138         * config.guess: added support for DG Aviion
15140 Tue Oct 26 14:37:37 1993  Ken Raeburn  (raeburn@rover.cygnus.com)
15142         * configure.in: Produce warning message for subdirectories not
15143         configurable for this host/target combination.  Don't try to
15144         configure gdb for vms.
15146 Mon Oct 25 11:22:15 1993  Ken Raeburn  (raeburn@rover.cygnus.com)
15148         * Makefile.in (taz): Replace "byacc" with "bison -y" in the
15149         appropriate files before making "diststuff".
15150         (DISTBISONFILES): New var: list of files to be edited.
15151         (DISTSTUFFDIRS): Add binutils.
15153 Fri Oct 22 20:32:15 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
15155         * config.sub: also handle mipsel and mips64el (for little endian mips)
15157 Fri Oct 22 07:59:20 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
15159         * configure.in: Add * to end of all OS names.
15161 Thu Oct 21 11:38:28 1993  Stan Shebs  (shebs@rtl.cygnus.com)
15163         * configure.in: Build newlib for LynxOS native.
15165 Wed Oct 20 09:56:12 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
15167         * config.guess: Add support for delta 88k running SVR3.
15169         * configure.in: Add comment about HP compiler vs. emacs.
15171 Tue Oct 19 16:02:22 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
15173         * configure.in: don't build ld on solaris2 (not a viable option
15174           due to bugs in getpwnam & getpwuid)
15176 Tue Oct 19 15:13:56 1993  Ken Raeburn  (raeburn@rtl.cygnus.com)
15178         * configure.in: Accept alpha-dec-osf1*, not just -osf1, since
15179         config.guess will produce a full version number.
15181 Tue Oct 19 15:58:01 1993  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
15183         * configure.in: Build linker and binutils for alpha-dec-osf1.
15185 Tue Oct 19 11:41:55 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
15187         * Makefile.in: Remove -O from CXXFLAGS for consistency with CFLAGS,
15188         and gdb/testsuite/Makefile.in.
15190 Sat Oct  9 18:39:07 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
15192         * configure.in: recognize mips*- instead of mips-
15194 Fri Oct  8 14:15:39 1993  Ken Raeburn  (raeburn@cygnus.com)
15196         * config.sub: Accept linux*coff and linux*elf as operating
15197         systems.
15199 Thu Oct  7 12:57:19 1993  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
15201         * config.sub: Recognize mips64, and mips3 as an alias for it.
15203 Wed Oct  6 13:54:21 1993  Peter Schauer  (pes@regent.e-technik.tu-muenchen.de)
15205         * configure.in: Remove alpha-dec-osf*, no longer necessary now that
15206         gdb knows how to handle OSF/1 shared libraries.
15208 Tue Oct  5 11:55:04 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
15210         * configure.in: Recognize hppa*-*-hiux* (currently synonym for hpux).
15211         * config.guess: Recognize Hitachi's HIUX.
15212         * config.sub: Recognize h3050r* and hppahitachi.
15213         Remove redundant cases for hp9k[23]*.
15215 Mon Oct  4 16:15:09 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
15217         * configure.in: default to '--with-gnu-as' and '--with-gnu-ld'
15218         if gas and ld are in the source tree and are in ${configdirs}.
15219         If ${use_gnu_as} or ${use_gnu_ld} are 'no', then don't set the
15220         --with options (but still pass them down on the command line,
15221         if they were explicitly specified).
15223 Fri Sep 24 19:11:13 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
15225         * configure: substitute SHELL value in Makefile.in with
15226         ${CONFIG_SHELL}
15228 Thu Sep 23 18:05:13 1993  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
15230         * configure.in: Build gas, ld, and binutils for *-*-sysv4* and
15231         *-*-solaris2* targets.
15233 Sun Sep 19 17:01:41 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
15235         * Makefile.in: define M4, and pass it down to sub-makes;
15236         all-autoconf now depends on all-m4
15238 Sat Sep 18 00:38:23 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
15240         * Makefile.in ({AR,RANLIB}_FOR_TARGET): make contingent on
15241         presence of {ar,ranlib} instead of a configured directory
15243 Wed Sep 15 08:41:44 1993  Jim Kingdon  (kingdon@cirdan.cygnus.com)
15245         * config.guess: Accept 34?? as well as 33?? for NCR.
15247 Mon Sep 13 12:28:43 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
15249         * configure.in: grab mt-hppa for HPPA targets; use 'gas ' instead
15250         of 'gas' in sed commands, since 'gash' is now in the tree as well.
15252 Fri Sep 10 11:23:52 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
15254         * configure: grab values for $(CC) and $(CXX) from the
15255         environment, so that someone can do "CC=gcc configure; make" and
15256         have it work right (matching the way that autoconf works now)
15258         * configure.in, Makefile.in: add support for gash, the tcl
15259         interface to Galaxy
15261         * config.guess: add NetBSD variants (hp300, x86)
15263 Thu Sep  9 16:48:52 1993  Jason Merrill  (jason@deneb.cygnus.com)
15265         * install.sh: Support -d option (in the manner of SunOS 4 install,
15266         as it is more deterministic than that of GNU install)
15267         (chmodcmd): Set file to mode 755 by default (should also do default
15268         chgrp and chown, but I don't feel like dealing with that now)
15270 Tue Sep  7 11:59:39 1993  Doug Evans  (dje@canuck.cygnus.com)
15272         * config.sub: Remove h8300hhms alias.
15274 Tue Aug 31 11:00:09 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
15276         * configure.in: Match *-*-solaris2* not *-sun-solaris2*.
15278 Mon Aug 30 18:29:10 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
15280         * Makefile.in (gcc-no-fixedincludes): touch stmp-fixproto as well
15281         as stmp-fixinc
15283 Wed Aug 25 16:35:59 1993  K. Richard Pixley  (rich@sendai.cygnus.com)
15285         * config.sub: recognize m88110-bug-coff.
15287 Tue Aug 24 10:23:24 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
15289         * Makefile.in (all-libio): all dependencies on the toolchain used
15290         to build this (gcc, gas, ld, etc)
15292 Fri Aug 20 17:24:24 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
15294         * config.guess: Deal with OSF/1 1.3 on alpha.
15296 Thu Aug 19 11:43:04 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
15298         * install.sh: add some 'else true' clauses for portability
15300         * configure.in: don't build libio for h8[35]00-*-* targets
15302 Tue Aug 17 19:02:31 1993  Per Bothner  (bothner@kalessin.cygnus.com)
15304         * Makefile.in:  Add support for new libio.
15306 Sun Aug 15 20:48:55 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
15308         * install.sh: If one command fails, don't try the rest.  Don't try
15309         to remove $dsttmp (via trap) unless we have already created it.
15310         If $src doesn't exist, detect it and exit with an error.
15312         * config.guess: Recognize BSD on hp300.
15314 Wed Aug 11 18:35:13 1993  Per Bothner  (bothner@kalessin.cygnus.com)
15316         * config.guess:  Map (9000/[34]??:HP-UX:*:*) to m68k-hp-hpux.
15317         Bug report from "Hamish (H.I.) Macdonald" <hamish@bnr.ca>.
15319 Wed Aug 11 15:37:51 1993  Jason Merrill  (jason@deneb.cygnus.com)
15321         * Makefile.in (all-send-pr): depends on all-prms
15323 Wed Aug 11 16:56:03 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
15325         * config.guess: Fix typo (9000/8??:4.3bsd -> 9000/7??:4.3bsd).
15327 Fri Aug  6 14:45:02 1993  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
15329         * config.guess: From michael@mercury.cs.mun.ca (Michael Rendell):
15330         Added test for mips-mips-riscos5.
15332 Thu Aug  5 15:45:08 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
15334         * configure.in: use mh-hp300 for 68k HP hosts
15336 Mon Aug  2 11:56:53 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
15338         * configure: add support for CONFIG_SHELL, so that you can use
15339         some alternate shell for evaluating configure scripts
15341 Sun Aug  1 11:36:27 1993  Fred Fish  (fnf@deneb.cygnus.com)
15343         * Makefile.in (make-gdb.tar.gz):  Sed bug reporting address
15344         in configure script to bug-gdb@prep.ai.mit.edu when building
15345         distribution archive.
15346         * Makefile.in (COMPRESS):  Remove def.
15347         * Makefile.in (gdb.tar.gz, make-gdb.tar.gz):  Renamed from
15348         gdb.tar.Z and make-gdb.tar.Z respectively.
15349         * Makefile.in (make-gdb.tar.gz):  Now only build gzip'd archive.
15350         * Makefile.in (make-gdb.tar.gz):  Minor changes to move closer
15351         to convergence with 'taz' target in Makefile.in.
15353 Fri Jul 30 12:34:57 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
15355         * install.sh (dsttmp): use trap to ensure that tmp files go
15356         away on error conditions
15358 Wed Jul 28 11:57:36 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
15360         * Makefile.in (BASE_FLAGS_TO_PASS): remove LOADLIBES
15362 Tue Jul 27 12:43:40 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
15364         * Makefile.in (install-dirs): Deal with a prefix like /gnu;
15365         its parent is '/' not ''.
15367         * Makefile.in (DEVO_SUPPORT): Add comments about ChangeLog.
15369 Fri Jul 23 09:53:37 1993  Jason Merrill  (jason@wahini.cygnus.com)
15371         * configure: if ${newsrcdir}/configure doesn't exist, don't assume
15372         that ${newsrcdir}/configure.in does.
15374 Tue Jul 20 11:28:50 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
15376         * test-build.mk: support for CONFIG_SHELL
15378 Mon Jul 19 21:54:46 1993  Fred Fish  (fnf@deneb.cygnus.com)
15380         * config.sub (netware):  Add as a basic system type.
15382 Wed Jul 14 12:03:11 1993  K. Richard Pixley  (rich@sendai.cygnus.com)
15384         * Makefile.in (Makefile): depend on configure.in.  Also drop the
15385           $(srcdir)/ from the dependency on Makefile.in.
15387 Tue Jul 13 20:10:58 1993  Doug Evans  (dje@canuck.cygnus.com)
15389         * config.sub: Recognize h8300hhms as h8300h-hitachi-hms.
15390         (h8300hhms is temporary until multi-libraries are implemented).
15391         * configure.in: Handle h8300h too.
15393 Sun Jul 11 17:35:27 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
15395         * config.guess: Recognize dpx/2 as m68k-bull-sysv3.
15397 Thu Jul  8 18:26:12 1993  John Gilmore  (gnu@cygnus.com)
15399         * configure:  Remove extraneous output when guessing host type.
15400         * config.guess:  Remove extraneous output when guessing using C
15401         compiler rather than uname, or when guessing fails.
15403 Wed Jul  7 17:58:14 1993  david d `zoo' zuhn  (zoo at rtl.cygnus.com)
15405         * Makefile.in: remove all.cross and install.cross targets
15407         * configure: remove CROSS=-DCROSS_COMPILE and ALL=all.cross
15408           definitions
15410 Tue Jul  6 10:39:44 1993  Steve Chamberlain  (sac@phydeaux.cygnus.com)
15412         * configure.in (target sh): Build gprof.
15414 Thu Jul  1 16:52:56 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15416         * config.sub: change -solaris to -solaris2
15418 Thu Jul  1 15:46:16 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
15420         * configure.in: Use config/mh-riscos for mips-*-sysv*.
15422 Wed Jun 30 09:31:58 1993  Ian Lance Taylor  (ian@cygnus.com)
15424         * configure: Correct error message for missing Makefile.in to
15425         print correct directory.
15427 Tue Jun 29 13:52:16 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15429         * install.sh: kludge around 386BSD shell bug
15431 Tue Jun 29 13:06:49 1993  Per Bothner  (bothner@rtl.cygnus.com)
15433         * config.guess:  Recognize NeXT.
15434         * config.guess:  Recognize i486-ncr-sysv4.
15435         * Makefile.in (taz):  rm $(TOOL)-$$VER before linking.
15437 Tue Jun 29 12:50:57 1993  Ian Lance Taylor  (ian@cygnus.com)
15439         * Makefile.in (MAKEINFOFLAGS): New variable.
15440         (FLAGS_TO_PASS): Pass MAKEINFO as MAKEINFO MAKEINFOFLAGS.
15441         * build-all.mk, test-build.mk: Pass down --no-split as
15442         MAKEINFOFLAGS when hosted on DOS.  Compile DOS hosted without -g.
15444 Thu Jun 24 13:39:11 1993  Per Bothner  (bothner@rtl.cygnus.com)
15446         * Makefile.in (DEVO_SUPPORT):  Add COPYING COPYING.LIB install.sh.
15448 Wed Jun 23 12:59:21 1993  Per Bothner  (bothner@rtl.cygnus.com)
15450         * Makefile.in (libg++.tar.z):  New rule.
15451         * Makefile.in (taz):  Replace 'configure -rm' by 'make distclean'.
15452         * Makefile.in (taz):  Only do a single chmod.
15454 Fri Jun 18 12:03:10 1993  david d `zoo' zuhn  (zoo at majipoor.cygnus.com)
15456         * install.sh: don't use dirname anymore (replaced with sed usage)
15458 Thu Jun 17 18:43:42 1993  Fred Fish  (fnf@cygnus.com)
15460         * Makefile.in:  Change extension for gzip'd files from '.z' to
15461         '.gz' per new FSF standard usage.
15463 Thu Jun 17 16:58:50 1993  david d `zoo' zuhn  (zoo at majipoor.cygnus.com)
15465         * configure: put quotes around the final value of program_transform_name
15467 Tue Jun 15 16:48:51 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15469         * Makefile.in: new install.sh support; update install-info rules
15471 Wed Jun  9 12:31:34 1993  Ian Lance Taylor  (ian@cygnus.com)
15473         * configure.in: Build diff for crosses, but not for go32 host.
15475         * configure.in: Build gprof only for native, and don't build it
15476         for mips-*-*, rs6000-*-*, or i[34]86-*-sco*.
15478 Mon Jun  7 13:12:11 1993  david d `zoo' zuhn  (zoo at deneb.cygnus.com)
15480         * configure.in: don't build gas,ld,binutils on for *-*-sysv4
15482 Mon Jun  7 11:40:11 1993  Brendan Kehoe  (brendan@lisa.cygnus.com)
15484         * configure.in (host_tools): Add prms.
15486 Fri Jun  4 13:30:42 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15488         * Makefile.in: install gcc, do installation of $(INSTALL_MODULES)
15489         with $(FLAGS_TO_PASS) on the command line
15491         * config.sub: Recognize lynx and lynxos
15493 Fri Jun  4 10:59:56 1993  Ian Lance Taylor  (ian@cygnus.com)
15495         * config.sub: Accept -ecoff*, not just -ecoff.
15497 Thu Jun  3 17:38:54 1993  Ken Raeburn  (raeburn@cambridge.cygnus.com)
15499         * Makefile.in (taz): Use .gz suffix instead of .z.
15500         (binutils.tar.gz, gas+binutils.tar.gz, gas.tar.gz): Fixed target
15501         names.
15503 Thu Jun  3 00:27:06 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15505         * Makefile.in (vault-install): add an 'else true' (for Ultrix)
15507 Wed Jun  2 18:19:16 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15509         * Makefile.in (install-no-fixedincludes):  install gcc last, so
15510         that rebuilds that might happen during 'make install' don't get
15511         bogus gcc include files
15513 Wed Jun  2 16:14:10 1993  Ken Raeburn  (raeburn@cambridge.cygnus.com)
15515         Change from Utah for HPPA support:
15516         * config.guess: Recognize hppa1.x-hp-bsd.
15518 Wed Jun  2 11:53:33 1993  Per Bothner  (bothner@rtl.cygnus.com)
15520         * config.guess:  Add support for Motorola Delta 68k, up to r3v7.
15521         Patch from pot@fly.cnuce.cnr.it (Francesco Potorti`).
15523 Tue Jun  1 17:48:42 1993  Rob Savoye  (rob at darkstar.cygnus.com)
15525         * config.sub: Add support for rom68k and bug boot monitors.
15527 Mon May 31 09:36:37 1993  Jim Kingdon  (kingdon@cygnus.com)
15529         * Makefile.in: Make all-opcodes depend on all-bfd.
15531 Thu May 27 08:05:31 1993  Ian Lance Taylor  (ian@cygnus.com)
15533         * config.guess: Added special check for i[34]86-univel-sysv4*.
15535 Wed May 26 16:33:40 1993  Ian Lance Taylor  (ian@cygnus.com)
15537         * config.guess: For i[34]86-unknown-sysv4 use UNAME_MACHINE for
15538         the processor rather than assuming i486.
15540 Wed May 26 09:40:18 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
15542         * config.guess: Recognize SunOS6 as Solaris3.
15544 Tue May 25 23:03:11 1993  Per Bothner  (bothner@cygnus.com)
15546         * config.guess:  Fix typo.  Avoid #elif (not in K&R 1).
15547         Recognize SunOS 5.* only (and not [6-9].*) as being Solaris2.
15549 Tue May 25 12:44:18 1993  Ian Lance Taylor  (ian@cygnus.com)
15551         * build-all.mk (all-cross): New target for Canadian Cross.
15552         Added Q2 go32 targets.
15553         * test-build.mk: Configure go32 cross sparclite-aout and
15554         mips-idt-ecoff -with-gnu-ld.  Moved build binary directory from
15555         PARTIAL_HOLE_DIRS to BUILD_HOLES_DIRS.
15557 Mon May 24 15:30:06 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15559         * configure.in: fix Alpha GDB typo; also, don't build DejaGnu for
15560         GO32 hosted toolchains
15562 Mon May 24 14:18:41 1993  Rob Savoye  (rob at darkstar.cygnus.com)
15564         * configure: change  so "-exec-prefix" gets passed down rather
15565         than "-exec_prefix" so autoconf generated Makefiles get the
15566         exec_prefix set right.
15568 Fri May 21 10:42:25 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15570         * config.guess: get the Solaris2 minor version number
15572         * Makefile.in: add standards.texi and make-stds.texi to ETC_SUPPORT
15574 Fri May 21 06:20:52 1993  Brendan Kehoe  (brendan@lisa.cygnus.com)
15576         * config.guess: Recognize some Sequent platforms.
15578 Thu May 20 14:33:48 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15580         * Makefile.in: added the vault-install target
15582         * configure.in: actually use the Sun3 makefile fragment that's in
15583         config, also added the release dir to configdirs
15585 Thu May 20 14:19:18 1993  Ken Raeburn  (raeburn@cambridge.cygnus.com)
15587         * Makefile.in (taz): Fix modes on stuff in $(TOOL) dir also.
15589 Tue May 18 20:26:41 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15591         * configure.in: remove some program from Alpha targetted toolchains
15593 Tue May 18 15:23:19 1993  Ken Raeburn  (raeburn@cygnus.com)
15595         * Makefile.in (DISTSTUFFDIRS): Renamed from PROTODIRS.  Add ld and
15596         gprof.
15597         (taz): Run "make diststuff" in those directories instead of "make
15598         proto-dir".  Look for "VERSION=" only at start of line in subdir
15599         Makefile.  Use "gzip -9" for compression.
15600         (TEXINFO_SUPPORT, DIST_SUPPORT, BINUTILS_SUPPORT_DIRS): New vars.
15601         (binutils.tar.z): New target.
15603 Mon May 17 17:01:15 1993  Ken Raeburn  (raeburn@deneb.cygnus.com)
15605         * Makefile.in (taz): Include gpl.texinfo.
15607 Fri May 14 06:48:38 1993  Ken Raeburn  (raeburn@deneb.cygnus.com)
15609         * Makefile.in (setup-dirs): Merged into "taz" target.
15610         (taz): Only do `proto-dir' stuff if a directory is actually needed
15611         for this target.
15613 Wed May 12 13:09:44 1993  Ian Lance Taylor  (ian@cygnus.com)
15615         * Makefile.in (MUNCH_NM): New variable, defined to be $(NM).
15616         (FLAGS_TO_PASS): Pass down MUNCH_NM.
15617         (HOST_CC, HOST_PREFIX, HOST_PREFIX_1): New variables.
15618         (EXTRA_GCC_FLAGS): Pass down HOST_* variables.
15619         (gcc-no-fixedincludes): Correct for current gcc Makefile.
15621 Tue May 11 10:14:25 1993  Fred Fish  (fnf@cygnus.com)
15623         * Makefile.in (make-gdb.tar.Z):  Add configure, config.guess,
15624         config.sub, and move-if-change to gdb testsuite distribution
15625         archive, so the testsuite can be extracted, configured, and
15626         run separately from the gdb distribution.  Blow away the Chill
15627         tests that require a Chill compiled executable, since GNU Chill
15628         is not yet publically available.
15630 Mon May 10 17:22:26 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15632         * test-build.mk: set environment variables in a single command,
15633         instead of a list of assignments and exports
15635         * config.guess: recognize Alpha/OSF1 systems
15637 Mon May 10 14:55:51 1993  K. Richard Pixley  (rich@rtl.cygnus.com)
15639         * configure: Change help message to prefer --options rather than
15640           -options.
15642 Mon May 10 05:58:35 1993  Ken Raeburn  (raeburn@kr-pc.cygnus.com)
15644         * config.sub: Convergent Tech. "miniframe" uses m68010, sez
15645         zippy@ecst.csuchico.edu.
15646         * config.guess: Recognize miniframe.
15648 Sun May  9 17:47:57 1993  Rob Savoye  (rob at darkstar.cygnus.com)
15650         * Makefile.in: Use srcroot to find runtest rather than rootme.
15651         Pass RUNTESTFLAGS and EXPECT down in BASE_FLAGS_TO_PASS.
15653 Fri May  7 14:55:59 1993  Ian Lance Taylor  (ian@cygnus.com)
15655         * test-build.mk: Extensive additions to support building on a
15656         machine other than the host.
15658 Wed May  5 08:35:04 1993  Ken Raeburn  (raeburn@deneb.cygnus.com)
15660         * configure (tooldir): Fix for i386-aix again.
15662 Mon May  3 19:00:27 1993  Per Bothner  (bothner@cygnus.com)
15664         * configure, Makefile.in:  Change definition of $(tooldir)
15665         to match the FSF.
15667 Fri Apr 30 15:55:21 1993  Fred Fish  (fnf@cygnus.com)
15669         * config.guess:  Recognize i[34]86/SVR4.
15671 Fri Apr 30 15:52:46 1993  Steve Chamberlain  (sac@thepub.cygnus.com)
15673         * Makefile.in (all-gdb): gdb depends on sim.
15675 Thu Apr 29 23:30:48 1993  Fred Fish  (fnf@cygnus.com)
15677         * Makefile.in (gdb.tar.Z):  Make prototype gdb testsuite directory
15678         at the same time we make the prototype gdb directory.
15679         * Makefile.in (make-gdb.tar.Z):  Make the testsuite distribution
15680         files at the same time as the gdb base release distribution.
15682 Thu Apr 29 12:50:37 1993  Ian Lance Taylor  (ian@cygnus.com)
15684         * Makefile.in (check): Use individual check targets rather than
15685         DO_X rule.
15686         (check-gcc): Added.
15688 Thu Apr 29 09:50:07 1993  Jim Kingdon  (kingdon@cygnus.com)
15690         * config.sub: Use sysv3.2 not sysv32 for canonical OS
15691         for System V release 3.2.
15693 Thu Apr 29 10:33:22 1993  Ken Raeburn  (raeburn@cambridge.cygnus.com)
15695         * config.sub: Recognize hppaosf.
15696         * configure.in: Do configure ld/binutils/gas for it.
15698 Tue Apr 27 06:25:34 1993  Ken Raeburn  (raeburn@kr-pc.cygnus.com)
15700         * configure (tooldir): Alter syntax used to set this, for systems
15701         where "\$" isn't handled right, like i386-aix.
15703 Thu Apr 22 08:17:35 1993  Ian Lance Taylor  (ian@cygnus.com)
15705         * configure: Pass program-transform-name, not
15706         program_transform_name, to recursive configures.
15708 Thu Apr 22 02:58:21 1993  Ken Raeburn  (raeburn@cygnus.com)
15710         * Makefile.in (gas+binutils.tar.z): New rule for building snapshots
15711         of gas+ld+binutils.
15713 Mon Apr 19 17:41:30 1993  Per Bothner  (bothner@cygnus.com)
15715         * config.guess:  Recognize AIX3.2 as distinct from 3.1.
15717 Sat Apr 17 17:19:50 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15719         * configure.in: rename m88k-motorola-m88kbcs to m88k-motorola-sysv
15721 Tue Apr 13 16:52:16 1993  Brendan Kehoe  (brendan@lisa.cygnus.com)
15723         * Makefile.in (PRMS): Set back to all-prms.
15725 Sat Apr 10 12:04:07 1993  Ian Lance Taylor  (ian@cygnus.com)
15727         * test-build.mk: Pass -with-gnu-as for known MIPS native and MIPS
15728         targets, rather than for MIPS hosts.
15730 Fri Apr  9 13:51:06 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15732         * configure.in: add comment for --with-x default values
15734         * config.guess: handle Motorola Delta88 box for SVR3 and SVR4.
15736         * Makefile.in: add check-* targets for each of the directories in
15737         the tree.  Add a definition of RUNTEST that will use the one we
15738         just built, if it exists.  Pass this down via FLAGS_TO_PASS.
15740 Thu Apr  8 09:21:30 1993  Ian Lance Taylor  (ian@cygnus.com)
15742         * configure.in: Removed obsolete references to bfd_target and
15743         target_makefile_frag.
15745         * build-all.mk: Set assorted targets for Q2.
15746         * config.sub: Recognize z8k-sim and h8300-hms.
15747         * test-build.mk: Really don't pass host to configure.
15748         (HOLES): Added uname.
15750 Wed Apr  7 15:48:19 1993  Ian Lance Taylor  (ian@cygnus.com)
15752         * configure: Handle an empty program-prefix, program-suffix or
15753         program-transform-name correctly.
15755 Tue Apr  6 13:48:41 1993  Ian Lance Taylor  (ian@cygnus.com)
15757         * build-all.mk: -G 8 no longer required for MIPS targets.
15758         * test-build.mk: Don't pass host argument to configure; make it
15759         guess.
15761 Tue Apr  6 10:36:53 1993  Fred Fish  (fnf@cygnus.com)
15763         * Makefile.in (gdb.tar.Z):  Fix for building gzip'd distribution.
15764         * Makefile.in (COMPRESS):  New macro, like GZIP.
15766 Fri Apr  2 09:02:31 1993  Ian Lance Taylor  (ian@cygnus.com)
15768         * test-build.mk: Use -with-gnu-as for mips-sgi-irix4 as well.
15770         * build-all.mk: Set GCC to gcc -O -G 8 for MIPS targets, since gcc
15771         with gas currently defaults to -G 0.
15773 Thu Apr  1 08:25:42 1993  Ian Lance Taylor  (ian@cygnus.com)
15775         * Makefile.in (all-flex): flex depends on byacc.
15777         * build-all.mk: If host not specified, use config.guess.  Pass TAG
15778         to test-build.mk as RELEASE_TAG.
15779         * test-build.mk (configargs): New variable containing arguments to
15780         pass to configure.  Set to -with-gnu-as on mips-dec-ultrix.
15781         (FLAGS_TO_PASS): Pass down RELEASE_TAG.
15783         * config.guess: Use /bin/uname when checking -X argument on SCO,
15784         to avoid invoking GNU uname which doesn't understand -X.
15786         * test-build.mk: Don't use /usr/unsupported/bin/as on AIX.
15788         * configure.in: Build gas for mips-*-*.
15790 Wed Mar 31 21:20:58 1993  K. Richard Pixley  (rich@rtl.cygnus.com)
15792         * Makefile.in (all.normal): insert missing backslash.
15794 Wed Mar 31 12:31:56 1993  Ian Lance Taylor  (ian@cygnus.com)
15796         * build-all.mk: Bump -XNh value to 1500 to match gcc requirements.
15798         * Makefile.in: Complete overhaul to merge many almost identical
15799         targets.
15801 Tue Mar 30 20:17:01 1993  Ken Raeburn  (raeburn@cambridge.cygnus.com)
15803         * Makefile.in (setup-dirs-gdb): Renamed from setup-dirs.
15804         (gdb.tar.Z): Adjusted.
15806         * Makefile.in (setup-dirs, taz): New targets; should be general
15807         enough to adapt for gdb sometime.  Build only .z file.
15808         (gas.tar.z): New target.
15810 Tue Mar 30 10:03:09 1993  Ian Lance Taylor  (ian@cygnus.com)
15812         * build-all.mk: Use CC=cc -Xs on Solaris.
15814 Thu Mar 25 15:14:30 1993  Fred Fish  (fnf@cygnus.com)
15816         * Makefile.in:  Incorporate changes suggested by wilson@cygnus.com
15817         for handling BISON for FSF releases.
15819 Thu Mar 25 06:19:48 1993  Ken Raeburn  (raeburn@kr-pc.cygnus.com)
15821         * configure: Actually implement the change zoo just documented.
15823 Wed Mar 24 13:02:44 1993  david d `zoo' zuhn  (zoo at poseidon.cygnus.com)
15825         * configure: when using config.guess, only set target_alias when
15826         it's not already been set (ie, on the command line)
15828 Mon Mar 22 23:07:39 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15830         * Makefile.in: add installcheck target, set PRMS to install-prms
15832 Sun Mar 21 16:46:12 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15834         * configure: add support for package_makefile_fragment, handle the
15835         case where a directory has a configure.in file but no Makefile.in
15836         more gracefully (with an actual understandable error message, even);
15837         add support for --without (and add this to the usage message); also
15838         explicitly add a --host=${host_alias} to the command line when
15839         config.guess is used
15841 Sun Mar 21 12:11:58 1993  Jim Wilson  (wilson@sphagnum.cygnus.com)
15843         * configure: Must use both --host and --target in recursive calls.
15845 Thu Mar 18 12:31:35 1993  Ian Lance Taylor  (ian@cygnus.com)
15847         * Makefile.in: Change deja-gnu to dejagnu.
15849 Mon Mar 15 15:44:35 1993  Ian Lance Taylor  (ian@cygnus.com)
15851         * configure.in (h8300-*-*, h8500-*-*): Don't build libg++.
15853 Fri Mar 12 18:30:14 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15855         * configure.in: canonicalize all instances to *-*-solaris2*,
15856         also strip out a number of tools to not build for go32 host
15858 Wed Mar 10 12:08:27 1993  K. Richard Pixley  (rich@rtl.cygnus.com)
15860         * config.guess: add GPL.
15862         * Makefile.in, config.guess, config.sub, configure: bump
15863           copyrights to 93.
15865 Wed Mar 10 07:12:48 1993  Ian Lance Taylor  (ian@cygnus.com)
15867         * Makefile.in (do-info): Removed obsolete check for existence of
15868         localenv file.
15870         * Makefile.in (MAKEOVERRIDES): Define to be empty.
15872 Wed Mar 10 03:11:56 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15874         * Makefile.in: a couple of 'else true' for decstation,
15875         support for TclX
15877         * configure.in: configure tclX too; don't remove Tk on RS/6000 anymore
15879 Tue Mar  9 16:06:12 1993  K. Richard Pixley  (rich@cygnus.com)
15881         * Makefile.in (setup-dirs): change invocation of make to $(MAKE).
15883 Mon Mar  8 14:52:11 1993  Ken Raeburn  (raeburn@cambridge)
15885         * config.guess: Recognize i386-ibm-aix (PS/2).
15886         * configure.in: Use config/mh-aix386 file for it.
15888 Mon Mar  8 11:12:43 1993  Ian Lance Taylor  (ian@cygnus.com)
15890         * Makefile.in (GCC_FOR_TARGET): Eliminated definition; use
15891         CC_FOR_TARGET instead.
15892         (BASE_FLAGS_TO_PASS): Pass GCC_FOR_TARGET=$(CC_FOR_TARGET).
15894 Wed Mar  3 16:00:28 1993  Steve Chamberlain  (sac@ok.cygnus.com)
15896         * Makefile.in: Add sim to list of directories sent with gdb
15898 Wed Mar  3 11:42:39 1993  Ken Raeburn  (raeburn@cygnus.com)
15900         * configure.in: Put back mips-dec-bsd* case.
15902 Tue Mar  2 21:15:58 1993  Fred Fish  (fnf@cygnus.com)
15904         (Ultrix 2.2 support from Michael Rendell <michael@mercury.cs.mun.ca>)
15905         * configure.in (vax-*-ultrix2*):  Add Ultrix 2.2 triplet.
15906         * config.guess:  Change 'VAX*:ULTRIX:*:*' to 'VAX*:ULTRIX*:*:*'.
15908 Tue Mar  2 18:11:03 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15910         * configure.in: remove no-op mips-dec-bsd* in "case $target"
15912         * Makefile.in (dir.info): only run gen-info-dir if it exists,
15913         (install-info): install dir.info only if it exists,
15914         (all-expect, install-expect): pass along X11_FLAGS_TO_PASS
15916 Tue Mar  2 09:01:30 1993  Ken Raeburn  (raeburn@cygnus.com)
15918         * configure.in: For vms target, skip bfd, ld, binutils.  Do build
15919         gas for mips-dec-bsd.
15921 Tue Mar  2 08:35:24 1993  Ian Lance Taylor  (ian@cygnus.com)
15923         * configure (makesrcdir): If ${srcdir} is relative and not ".",
15924         and ${subdir} is not ".", set makesrcdir based on ${invsubdir}.
15926 Tue Feb 23 14:18:28 1993  Mike Werner  (mtw@poseidon.cygnus.com)
15928         * configure.in: Added "dejagnu" to hosttools list.
15930 Mon Feb 22 23:28:38 1993  Per Bothner  (bothner@rtl.cygnus.com)
15932         * config.sub, configure.in, config.guess:  Add support
15933         for Bosx, an AIX variant from Bull.
15934         Patches from F.Pierresteguy@frcl.bull.fr.
15936 Sun Feb 21 11:15:22 1993  Mike Werner  (mtw@poseidon.cygnus.com)
15938         * devo/dejagnu: Initial creation of devo/dejagnu.
15939         Migrated dejagnu testcases and support files for testing software
15940         tools to reside as subdirectories, currently called "testsuite",
15941         within the directory of the software tool.  Migrated all programs,
15942         support libraries, etc. beloging to dejagnu proper from
15943         devo/deja-gnu to devo/dejagnu.  These files were moved "as is"
15944         with no modifications.  The changes to these files which will
15945         allow them to configure, build, and execute properly will be made
15946         in a future update.
15948 Fri Feb 19 20:19:39 1993  Brendan Kehoe  (brendan@lisa.cygnus.com)
15950         * Makefile.in: Change send_pr to send-pr.
15951         * configure.in: Likewise.
15952         * send_pr: Renamed directory to send-pr.
15954 Fri Feb 19 19:00:13 1993  Per Bothner  (bothner@cygnus.com)
15956         * Makefile.in:  Add some extra semi-colons (needed if SHELL=bash).
15958 Fri Feb 19 00:59:33 1993  John Gilmore  (gnu@cygnus.com)
15960         * README:  Update for gdb-4.8 release.
15961         * Makefile.in (gdb.tar.Z):  Add texinfo/tex3patch.  Build
15962         gdb-xxx.tar.z (gzip'd) file also.
15964 Thu Feb 18 09:16:17 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15966         * Makefile.in: make all-diff depend on all-libiberty
15968 Tue Feb 16 16:06:31 1993  K. Richard Pixley  (rich@cygnus.com)
15970         * config.guess: add vax-ultrix in the spirit of mips-ultrix.
15972 Tue Feb 16 05:57:15 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15974         * configure.in, Makefile.in: add hello, tar, gzip, recode, indent
15976 Tue Feb 16 00:58:20 1993  John Gilmore  (gnu@cygnus.com)
15978         * Makefile.in (DEVO_SUPPORT):  Remove etc directory
15979         (ETC_SUPPORT):  Only add the files GDB wants from etc/.
15980         (gdb.tar.Z):  Use ETC_SUPPORT.  Use byacc when building the file.
15982 Thu Feb 11 20:14:28 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15984         * Makefile.in:  makeinfo binary is in a new location
15986 Tue Feb  9 12:42:27 1993  Ian Lance Taylor  (ian@cygnus.com)
15988         * config.sub: Accept -ecoff as an OS.
15990         * Makefile.in: Various changes to eliminate a level of make
15991         recursion and reduce the required command line length.
15992         (BASE_FLAGS_TO_PASS): New variable holding flags passed to all
15993         sub-makes.
15994         (EXTRA_HOST_FLAGS, EXTRA_TARGET_FLAGS, EXTRA_GCC_FLAGS): New
15995         variables holding settings for specific sub-makes.
15996         (FLAGS_TO_PASS, TARGET_FLAGS_TO_PASS, GCC_FLAGS_TO_PASS): Rewrote
15997         in terms of BASE_FLAGS_TO_PASS.
15998         (TARGET_LIBS): New variable listing directories which use
15999         TARGET_FLAGS_TO_PASS.
16000         (subdir_do): Eliminated.
16001         (do-*): New set of targets to replace subdir_do.
16002         (various): All targets which used subdir_do now depend on do-*.
16003         (local-clean): Renamed from do_clean.
16004         (local-distclean): New target, dependency of distclean and
16005         realclean.
16006         (install-info): Don't create directories.  Depend on dir.info
16007         rather than calling make recursively.
16008         (install-dir.info): Eliminated.
16009         (install-info-dirs): Create all info directories here.
16010         (dir.info): Depend upon do-install-info.
16012         * test-build.mk (HOLES): Added false.
16014 Sat Feb  6 14:05:09 1993  Per Bothner  (bothner@rtl.cygnus.com)
16016         * config.guess:  Recognize BSDI and BSDJ (Jolitz 386bsd).
16018 Thu Feb  4 20:49:18 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16020         * Makefile.in (info): remove dependency on all-texinfo.  The
16021         problem was really in texinfo/C, not at this level.
16023 Thu Feb  4 13:38:41 1993  Ian Lance Taylor  (ian@cygnus.com)
16025         * Makefile.in (info): Added dependency on all-texinfo (PR 2112).
16027 Thu Feb  4 01:50:53 1993  John Gilmore  (gnu@cygnus.com)
16029         * Makefile.in (make-gdb.tar.Z):  Change BISON to 'bison -y' for
16030         GDB releases.
16032 Wed Feb  3 17:22:16 1993  Ken Raeburn  (raeburn@cambridge.cygnus.com)
16034         * configure: Include srcdir in message about target of link not
16035         being found.  Don't convert `-' to `_' in `with' options being
16036         passed to subdirs.
16038 Tue Feb  2 18:57:59 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16040         * configure.in: add uudecode to host_tools
16042         * Makefile.in: added {all,install}-uudecode targets, added them to
16043         the appropriate lists
16045 Tue Feb  2 11:45:53 1993  Ian Lance Taylor  (ian@cygnus.com)
16047         * Makefile.in (all-gcc): Added dependency on all-gas.
16049         * configure.in (mips-*-*): Build ld and binutils.
16051 Mon Feb  1 12:35:41 1993  K. Richard Pixley  (rich@rtl.cygnus.com)
16053         * configure: check return code from mkdir, print error message and
16054           exit on failure.
16056 Sat Jan 30 16:40:28 1993  John Gilmore  (gnu@cygnus.com)
16058         * Makefile.in (make-gdb.tar.Z):  New location for texinfo.tex.
16060 Thu Jan 28 15:09:59 1993  Ian Lance Taylor  (ian@cygnus.com)
16062         * test-build.mk (HOLES): Added tar, cpio and uudecode.
16064 Wed Jan 27 16:50:32 1993  Jim Wilson  (wilson@sphagnum.cygnus.com)
16066         * config.sub (h8500):  Recognize this as a cpu type.
16068 Sat Jan 23 20:32:01 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16070         * configure: source directory missing is no longer a warning
16072         * configure.in: recognize irix[34]* instead of irix[34]
16074         * Makefile.in: define and pass down X11_LIB
16076 Sat Jan 23 13:49:40 1993  Per Bothner  (bothner@cygnus.com)
16078         * guess-systype: Renamed to ...
16079         * config.guess:  ... by popular request.
16080         * configure.in, Makefile.in:  Update accordingly.
16082 Thu Jan 21 12:20:55 1993  Per Bothner  (bothner@cygnus.com)
16084         * guess-systype:  Patches from John Eaton <jwe@che.utexas.edu>:
16085         + Add Convex, Cray/Unicos, and Encore/Multimax support.
16086         + Execute ./dummy instead of assuming . is in PATH.
16088 Tue Jan 19 17:18:06 1993  Per Bothner  (bothner@cygnus.com)
16090         * guess-systype:  New shell script.  Attempts to guess the
16091         canonical host name of the executing host.
16092         Only a few hosts are supported so far.
16093         * configure:  Call guess-systype if no host is specified.
16095 Tue Jan 19 08:26:07 1993  Ian Lance Taylor  (ian@cygnus.com)
16097         * Makefile.in (gcc-no-fixedincludes): Made to work with current
16098         gcc Makefile.
16101 Fri Jan 15 10:27:02 1993  Ian Lance Taylor  (ian@cygnus.com)
16103         * Makefile.in (GCC_FLAGS_TO_PASS): New variable.
16104         (all-gcc, install-gcc, subdir_do): Use it.
16106 Wed Jan 13 17:06:45 1993  Jim Wilson  (wilson@sphagnum.cygnus.com)
16108         * Makefile.in: Rename uninstalled gcc driver from gcc to xgcc.
16110 Wed Jan  6 20:29:16 1993  Mike Werner  (mtw@rtl.cygnus.com)
16112         * Makefile.in: Removed explicit setting of SUBDIRS. SUBDIRS is now
16113           set exclusively by configure, using configure.in .
16115 Wed Jan  6 13:44:11 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16117         * test-build.mk: set $PATH for all builds
16119         * Makefile.in: pass TARGET_FLAGS_TO_PASS for xiberty and libm
16121 Wed Jan  6 11:02:10 1993  Fred Fish  (fnf@cygnus.com)
16123         * Makefile.in (GCC_FOR_TARGET):  Supply a default that matches
16124         the one used in gcc/Makefile.in, so that a null expansion doesn't
16125         override the one needed to build gcc with a native cc.
16128 Tue Jan  5 07:55:12 1993  Ken Raeburn  (raeburn@cambridge.cygnus.com)
16130         * configure: Accept -with arguments.
16132 Sun Jan  3 15:15:09 1993  Steve Chamberlain  (sac@thepub.cygnus.com)
16134         * Makefile.in: added h8300sim
16136 Tue Dec 29 15:06:00 1992  Ian Lance Taylor  (ian@cygnus.com)
16138         * build-all.mk: If canonhost is i386-unknown-sco3.2v4, change it
16139         to i386-sco3.2v4.  Set TARGETS and CFLAGS for i386-sco3.2v4.
16140         (all-cygnus, native, build-cygnus): Make
16141         $(canonhost)-stamp-3stage-done, not $(host)....
16142         * test-build.mk (stamp-3stage-compared): Use tail +10c for
16143         i386-sco3.2v4.  Added else true to if command.
16145 Mon Dec 28 12:08:56 1992  Ken Raeburn  (raeburn@cygnus.com)
16147         * config.sub: (from FSF) Sequent uses a BSD-like OS.
16149 Mon Dec 28 08:32:06 1992  Minh Tran-Le  (mtranle@paris.intellicorp.com)
16151         * configure.in (i[34]86-*-isc*): added; uses mh-sysv.
16153 Thu Dec 24 17:26:24 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16155         * configure.in: don't remove binutils from Solaris builds
16157 Thu Dec 24 14:08:38 1992 david d`zoo' zuhn  (zoo@cygnus.com)
16159         * Makefile.in: get rid of earlier definitions for *clean,
16160         also handle the recursive info rule better
16162 Thu Dec 24 12:40:21 1992  Per Bothner  (bothner@rtl.cygnus.com)
16164         * Makefile.in (mostlyclean, distclean, realclean):  Fix to
16165         do more-or-less the right thing.
16167 Wed Dec 16 10:25:31 1992  Ian Lance Taylor  (ian@cygnus.com)
16169         * Makefile.in: Add lines defining CC and CXX, and use CXX rather
16170         than gcc in definitions of CXX_FOR_BUILD and CXX_FOR_TARGET.
16172 Tue Dec 15 00:34:32 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16174         * Makefile.in: change all $(host_cpu)-$(host_vendor)-$(host_os) to
16175         $(host_canonical).
16177         * configure.in: split the configdirs list into 4 categories (native
16178         v. cross, library v. tool) and handle the cross-only and native-
16179         only in more reasonable (and correct!) way.
16181 Mon Dec 14 17:04:22 1992  Stu Grossman  (grossman at cygnus.com)
16183         * configure.in (hppa*-*-*):  Don't remove bfd and gdb from
16184         configdirs anymore.
16186 Sun Dec 13 00:37:26 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16188         * Makefile.in: extensive cleanup::  removed all of the explicit
16189         clean-* targets, collapsed many wrappers around subdir_do into
16190         one, added additional targets to satisfy standards.texi, deleted
16191         some old targets, some changes for consistency
16193 Fri Dec 11 20:18:02 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16195         * configure.in: handle some programs as cross-only, and others as
16196         native only
16198         * test-build.mk: handle partial holes in a more generic manner
16200         * Makefile.in: m4 depends on libiberty
16202 Thu Dec  3 21:52:11 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16204         * configure.in: add m4, textutils, fileutils, sed, shellutils,
16205         time, wdiff, and find to configdirs
16207         * Makefile.in: all, clean, and install rules for the new programs
16208         added to configure.in
16210 Mon Nov 30 14:54:34 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16212         * configure.in: use mh-sun for all *-sun-* hosts
16214 Fri Nov 27 18:35:54 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16216         * Makefile.in: define flags for X11 include files and library file
16217         locations, pass them down to the programs that need this info
16219         * build-all.mk: added a 'native' target, to 3stage the native toolchain
16221 Sun Nov 22 18:59:13 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16223         * configure.in: start building libg++ for HP-UX targets
16225 Wed Nov 18 19:33:11 1992  John Gilmore  (gnu@cygnus.com)
16227         * README:  Update references to files moved into etc/.
16229 Sun Nov 15 09:36:08 1992  Fred Fish  (fnf@cygnus.com)
16231         * config.sub (i386sol2, i486sol2):  i[34]86-unknown-solaris2.
16232         * configure.in (i[34]86-*-solaris2*):  Use config/mh-sysv4.
16234 Thu Nov 12 08:50:42 1992  Ian Lance Taylor  (ian@cygnus.com)
16236         * configure: accept dash as well as underscore in long option
16237         names for FSF compatibility.
16239 Wed Nov 11 08:04:37 1992  Ian Lance Taylor  (ian@cygnus.com)
16241         * config.sub: added -sco3.2v4 support from FSF.
16243 Sun Nov  8 21:14:30 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16245         * configure.in: expand the section that adds or removes
16246         directories from the list of programs to build, to handle native
16247         vs. cross in addition to host v. native
16249 Sat Nov  7 18:52:27 1992  Per Bothner  (bothner@rtl.cygnus.com)
16251         * Makefile.in:  Replace C++ in macro names with CXX.
16252         This is less likely to break ...
16254 Sat Nov  7 15:16:58 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16256         * test-build.mk: add -w to GNU_MAKE
16258 Fri Nov  6 23:10:37 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16260         * config.sub: remove 'sparc'-->'sparc-sun' default transformation,
16261         add 'sparc' to list of recognized cpus.  This needed to make
16262         'sparc-aout' expand to 'sparc-unknown-aout' instead of 'sparc-sun-aout'.
16263         Delete some redundant ose68 variants.  Recognize -wrs as an os,
16264         then changes that into $CPU-wrs-vxworks.
16266         * configure.in: remove most references to gdbtest, regularize
16267         target based program removal
16269         * test-build.mk: import from p3 tree (many fixes and changes)
16271 Fri Nov  6 20:59:00 1992  david d `zoo' zuhn  (zoo@cygnus.com)
16273         * Makefile.in: added rules to handle tcl, tk, and expect
16275         * configure.in: handle those directories if they exist
16277 Thu Nov  5 14:35:41 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16279         * config.sub: removed bogus hppabsd and hppahpux names, since
16280         "hppa" is not a valid cpu (hppa1.1 or hppa1.0 are, though)
16282 Thu Oct 29 00:12:41 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16284         * Makefile.in: all-gcc now depends on all-binutils.  all-libg++
16285         depends upon all-xiberty
16287         * Makefile.in: changes from p3, including:
16289         Thu Oct  8 15:00:17 1992  Ian Lance Taylor  (ian@cygnus.com)
16291         * Makefile.in (XTRAFLAGS): include newlib directories if
16292         newlib/Makefile exists, rather than if host != target.
16294         Fri Sep 25 13:41:52 1992  Ian Lance Taylor  (ian@cygnus.com)
16296         * Makefile.in: added -nostdinc to XTRAFLAGS if we are using gcc
16297         from the same source tree and not building a cross-compiler.  This
16298         matters for the libg++ configuration if reconfiguring a tree that
16299         has already been installed.
16301         Thu Sep 10 10:35:51 1992  Ian Lance Taylor  (ian@cygnus.com)
16303         * Makefile.in: added -I for newlib/targ-include to XTRAFLAGS, to
16304         pick up the machine and system specific header files.
16306         * Makefile.in: added AS_FOR_TARGET, passed down in
16307         TARGET_FLAGS_TO_PASS.  Added CC_FOR_BUILD, which is intended to be
16308         the C compiler to use to create programs which are run in the
16309         build environment, set it to default to $(CC), and passed it down
16310         in FLAGS_TO_PASS and TARGET_FLAGS_TO_PASS.
16312         Mon Sep  7 22:34:42 1992  Ian Lance Taylor  (ian@cirdan.cygnus.com)
16314         * Makefile.in: add $(host) = $(target) tests back to *_FOR_TARGET.
16315         We need them for unusual native builds, like systems without
16316         ranlib.
16318         * configure: also define $(host_canonical) and
16319         $(target_canonical), which are the full, canonical names for the
16320         given host and target
16322 Sun Nov  1 16:38:17 1992  Per Bothner  (bothner@cygnus.com)
16324         * Makefile.in:  Added separate definitions for C++.
16326 Fri Oct 30 11:37:52 1992  Fred Fish  (fnf@cygnus.com)
16328         * configure.in (configdirs):  Add deja-gnu.
16330 Fri Oct 23 00:39:18 1992  John Gilmore  (gnu@cygnus.com)
16332         * README:  Update for configure.texi and gdb-4.7 release.
16334 Wed Oct 21 21:54:27 1992  John Gilmore  (gnu@cygnus.com)
16336         * Makefile.in:  Move "all" target to top of file.
16337         Previously, first target was ".PHONY" which caused BSD4.4 make
16338         to build .PHONY when make was run without arguments.
16340 Mon Oct 19 01:17:54 1992  John Gilmore  (gnu@cygnus.com)
16342         * Makefile.in:  Add COPYING.LIB to GDB releases, now that there's
16343         Library-copylefted code in libiberty.
16345 Tue Oct 13 01:22:32 1992  John Gilmore  (gnu@cygnus.com)
16347         * config.sub:  Replace m68kmote with plain old m68k.
16349 Fri Oct  9 03:14:24 1992  John Gilmore  (gnu@cygnus.com)
16351         * Makefile.in:  Remove space from blank line, avoid Make complaints.
16353 Thu Oct  8 18:41:45 1992  Ken Raeburn  (raeburn@cygnus.com)
16355         * config.sub: Complain if no argument is given.  Added support for
16356         386bsd as OS and target alias.
16358 Thu Oct  8 15:07:22 1992  Ian Lance Taylor  (ian@cygnus.com)
16360         * Makefile.in (XTRAFLAGS): include newlib directories if
16361         newlib/Makefile exists, rather than if host != target.
16363 Mon Oct  5 03:00:09 1992  Mark Eichin  (eichin at tweedledumber.cygnus.com)
16365         * config.sub: recognize sparclite-wrs-vxworks.
16367         * Makefile.in (install-xiberty): added *-xiberty make rules (from
16368         p3.) Added clean-xiberty to clean.
16370 Thu Oct  1 17:59:19 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16372         * configure.in: use *-*-* instead of nested cases for host and target
16374 Tue Sep 29 14:11:18 1992  Ian Lance Taylor  (ian@cygnus.com)
16376         * Makefile.in: added -nostdinc to XTRAFLAGS if we are using gcc
16377         from the same source tree and not building a cross-compiler.  This
16378         matters for the libg++ configuration if reconfiguring a tree that
16379         has already been installed.
16381 Sep 20 08:53:10 1992  Fred Fish  (fnf@cygnus.com)
16383         * config.sub (i486v/i486v4):  Merge in from FSF version.
16385 Fri Sep 18 00:32:00 1992  Mark Eichin  (eichin@cygnus.com)
16387         * configure: only set PWD if it is already set.
16389 Thu Sep 17 23:05:53 1992  Mark Eichin  (eichin@cygnus.com)
16391         * configure: just set PWD=`pwd` at the top, since Ultrix sh
16392         doesn't have unset and all success paths (and most error paths)
16393         out set it anyway. (Note: should change all uses of ${PWD=`pwd`}
16394         to just ${PWD} to avoid confusion.)
16396 Tue Sep 15 16:00:54 1992  Ian Lance Taylor  (ian@cygnus.com)
16398         * configure: always set $(tooldir) to $(libdir)/$(target_alias),
16399         even for a native compilation.
16401 Tue Sep 15 02:22:56 1992  John Gilmore  (gnu@cygnus.com)
16403         Changes to make the gdb.tar.Z rule work better.
16405         * Makefile.in (GDB_SUPPORT_DIRS):  Add opcodes.
16406         (DEVO_SUPPORT):  Add configure.texi.
16407         (bfd-ilrt.tar.Z):  Remove ancient rule.
16409 Thu Sep 10 10:43:19 1992  Ian Lance Taylor  (ian@cygnus.com)
16411         * Makefile.in: added -I for newlib/targ-include to XTRAFLAGS, to
16412         pick up the machine and system specific header files.
16414         * configure.in, config.sub: added new target m68010-adobe-scout,
16415         with alias of adobe68k.  Changed configure.in to check for
16416         -scout before -sco* to avoid a false match.
16418         * Makefile.in: added AS_FOR_TARGET, passed down in
16419         TARGET_FLAGS_TO_PASS.  Added CC_FOR_BUILD, which is intended to be
16420         the C compiler to use to create programs which are run in the
16421         build environment, set it to default to $(CC), and passed it down
16422         in FLAGS_TO_PASS and TARGET_FLAGS_TO_PASS.
16424 Wed Sep  9 12:21:42 1992  Ian Lance Taylor  (ian@cygnus.com)
16426         * Makefile.in: added TARGET_FLAGS_TO_PASS, CC_FOR_TARGET,
16427         AR_FOR_TARGET, RANLIB_FOR_TARGET, NM_FOR_TARGET.  Pass
16428         TARGET_FLAGS_TO_PASS, which defines CC, AR, RANLIB and NM as the
16429         FOR_TARGET variants, to newlib and libg++.
16431 Tue Sep  8 17:28:30 1992  Ken Raeburn  (raeburn@cambridge.cygnus.com)
16433         * Makefile.in (all-gas, all-gdb): Require all-opcodes to be built
16434         first.
16436 Wed Sep  2 02:50:05 1992  John Gilmore  (gnu@cygnus.com)
16438         * config.sub:  Accept `elf' as an environment.
16440 Tue Sep  1 15:48:30 1992  Steve Chamberlain  (sac@thepub.cygnus.com)
16442         * Makefile.in (all-opcodes):  cd into the right directory
16444 Sun Aug 30 21:12:11 1992  Ian Lance Taylor  (ian@cygnus.com)
16446         * configure: added -program_transform_name option, used as
16447         argument to sed when installing programs.
16448         configure.texi: added documentation for -program_prefix,
16449         -program_suffix and -program_transform_name.
16451 Thu Aug 27 21:59:44 1992  John Gilmore  (gnu@cygnus.com)
16453         * config.sub:  Accept i486 where i386 ok.
16455 Thu Aug 27 13:04:42 1992  Brendan Kehoe  (brendan@rtl.cygnus.com)
16457         * config.sub: accept we32k
16459 Mon Aug 24 14:05:14 1992  Ian Lance Taylor  (ian@cygnus.com)
16461         * config.sub, configure.in: accept OSE68000 and OSE68k.
16463         * Makefile.in: don't create all directories for ``make install'';
16464         let the subdirectories create the ones they need.
16466 Tue Aug 11 23:13:17 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16468         * COPYING: new file, GPL v2
16470 Tue Aug  4 01:12:43 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16472         * Makefile.in: use the new gen-info-dir, which needs a template
16473         argument (which also lives in texinfo)
16475         * configure.texi, standards.texi: fix INFO-DIR-ENTRY
16477 Mon Aug  3 00:34:17 1992  Fred Fish  (fnf@cygnus.com)
16479         * config.sub (ncr3000):  Change i386 to i486.
16481 Thu Jul 23 00:12:17 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16483         * Makefile.in: add install-rcs, install-grep to
16484         install-no-fixedincludes, removed install-bison and install-libgcc
16486 Tue Jul 21 01:01:50 1992  david d `zoo' zuhn (zoo@cygnus.com)
16488         * configure.in: grab the HPUX makefile fragment if on HPUX
16490 Mon Jul 20 11:02:09 1992  D. V. Henkel-Wallace  (gumby@cygnus.com)
16492         * Makefile.in: eradicate bison spoor (ditto libgcc).
16493          configure.in: recognise m68{k,000}-ericsson-OSE.
16494          es1800 is alias for m68k-ericsson-OSE
16496 Sun Jul 19 17:49:02 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16498         * configure.in: rearrange the parts that remove programs from
16499         configdirs, based now on HOST==TARGET or by canonical triple.
16501 Fri Jul 17 22:52:49 1992  K. Richard Pixley  (rich@rtl.cygnus.com)
16503         * test-build.mk: recurse explicitly with -f test-build.mk when
16504           appropriate.  predicate stage3 and comparison on the existence
16505           of gcc.  That is, if gcc isn't around, we aren't three-staging.
16506           On very clean, also remove ...stamp-co.  Build in-place before
16507           doing other builds.
16509 Thu Jul 16 18:33:09 1992  Steve Chamberlain  (sac@thepub.cygnus.com)
16511         * Makefile.in, configure.in: add tgas
16513 Thu Jul 16 16:05:28 1992  K. Richard Pixley  (rich@rtl.cygnus.com)
16515         * Makefile.in: a number of changes merged in from progressive.
16517         * configure.in: add libm.
16519         * .cvsignore: ignore some stuff that comes from test-build.mk.
16521 Tue Jul  7 00:24:52 1992  Fred Fish  (fnf@cygnus.com)
16523         * config.sub:  Add es1800 (m68k-ericsson-es1800).
16525 Tue Jun 30 20:24:41 1992  D. V. Henkel-Wallace  (gumby@cygnus.com)
16527         * configure: Add program_suffix (parallel to program_prefix)
16528         * Makefile.in: adjust directory-creating script for losing decstation
16530 Mon Jun 22 23:43:48 1992  Per Bothner  (bothner@cygnus.com)
16532         * configure:  Minor $subdir-related fixes.
16534 Mon Jun 22 18:30:26 1992  Steve Chamberlain  (sac@thepub.cygnus.com)
16536         * configure: fix various problems with propogating
16537         makefile_target_frag in subdirs.
16538         * configure.in: config libgcc if its there
16540 Fri Jun 19 15:19:40 1992  Stu Grossman  (grossman at cygnus.com)
16542         * config.sub:  HPPA merge.
16544 Sun Jun 14 10:29:19 1992  John Gilmore  (gnu at cygnus.com)
16546         * Makefile.in:  Replace all-bison with all-byacc in all
16547         dependency lines for other tools (which now use byacc).
16549 Fri Jun 12 22:21:57 1992  John Gilmore  (gnu at cygnus.com)
16551         * config.sub:  Add sun4sol2 => sparc-sun-solaris2.
16553 Thu Jun  4 12:07:32 1992  Mark Eichin  (eichin@cygnus.com)
16555         * Makefile.in: make gprof rules similar to byacc rules (instead of
16556         vestigal $(unsubdir) that didn't work...)
16558 Thu Jun  4 00:37:05 1992  Per Bothner  (bothner@rtl.cygnus.com)
16560         * config.sub:  Add support for Linux.
16561         * Makefile.in:  Use $(FLAGS_TO_PASS) more consistently
16562         (at least for libg++).
16564 Tue Jun 02 20:03:00 1992  david d `zoo' zuhn (zoo@cygnus.com)
16566         * configure.texi: fix doc for the -nfp option to configure
16568 Tue Jun  2 17:20:52 1992  Michael Tiemann  (tiemann@cygnus.com)
16570         * Makefile.in (all-binutils): ar needs flex, so depend on all-flex.
16572 Sun May 31 15:04:08 1992  Mark Eichin  (eichin at cygnus.com)
16574         * config.sub: changed [^-]+ to [^-][^-]* so that it works under
16575         Sun sed. (BSD 4.3 sed doesn't handle [^-]+ either.)
16576         * configure.in: added solaris* host_makefile_frag hook.
16578 Sun May 31 01:10:34 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16580         * config.sub: changed recognition of m68000 so that various
16581         m68k types can be specified via m680[01234]0
16583 Sat May 30 21:01:06 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16585         * config.sub (basic_machine): fix sed so that '-foo' isn't
16586         completely substituted out while .+'-foo' loses the '-foo'
16588 Wed May 27 23:18:52 1992  Michael Tiemann  (tiemann@rtl.cygnus.com)
16590         * config.sub ($os): Add -aout.
16592 Fri May 22 14:00:02 1992  Per Bothner  (bothner@cygnus.com)
16594         * configure:  If host_makefile_frag is absolute, don't
16595         prefix ${invsubdir} (relevant to libg++ auto-configure).
16597 Thu May 21 18:00:09 1992  Michael Tiemann  (tiemann@rtl.cygnus.com)
16599         * Makefile.in (tooldir): Define it.
16600         (all-ld): Depend on all-flex.
16602 Sun May 10 21:45:59 1992  Per Bothner  (bothner@rtl.cygnus.com)
16604         * Makefile.in (check):  Fix libg++ special case.
16606 Fri May  8 08:31:41 1992  K. Richard Pixley  (rich@cygnus.com)
16608         * configure: do not bury `pwd` into config.status, thus do fewer
16609           pwd's.
16611         * configure: print the "Building in" message only when building in
16612           other than "." AND verbose.
16614         * configure: remove -s, rework -v to better accomodate guested
16615           configures.
16617         * standards.texi: updated to 3 may, fixed librid <-> libdir typo.
16619 Fri May  1 18:00:50 1992  K. Richard Pixley  (rich@cygnus.com)
16621         * Makefile.in: macroize flags passed on recursion.  remove
16622           fileutils.
16624 Thu Apr 30 08:56:20 1992  K. Richard Pixley  (rich@cygnus.com)
16626         * configure: get makesrcdir right for subdirs deeper than 1.
16628         * Makefile.in: pass INSTALL, INSTALL_DATA, INSTALL_PROGRAM on
16629           install.
16631 Fri Apr 24 15:51:51 1992  K. Richard Pixley  (rich@cygnus.com)
16633         * Makefile.in: don't print subdir_do or recursion lines.
16635 Fri Apr 24 15:22:04 1992  K. Richard Pixley  (rich@cygnus.com)
16637         * standards.texi: added menu item.
16639         * Makefile.in: build and install standards.info.
16641         * standards.texi: new file.
16643 Wed Apr 22 18:06:55 1992  K. Richard Pixley  (rich@rtl.cygnus.com)
16645         * configure: test for and move config.status pieces from
16646           ${subdir}/.
16648 Wed Apr 22 14:38:34 1992  Fred Fish  (fnf@cygnus.com)
16650         * configure:  Test for existance of files before trying to mv
16651         them, to avoid numerous non-existance messages.
16653 Tue Apr 21 12:31:33 1992  K. Richard Pixley  (rich@cygnus.com)
16655         * configure: correct final line of config.status.
16657         * configure: patch from eggert.  Avoids a protection problem if
16658           the original Makefile.in is read only.
16660         * configure: use move-if-change from gcc to create config.status.
16661           Some makefiles depend on config.status to tell if a directory
16662           has been reconfigured for a different host.  This change
16663           prevents those directories from remaking everything in the case
16664           where the reconfig was only intended to rebuild a Makefile.
16666         * configure: test for config.sub with "config.sub sun4" rather
16667           than "config.sub ${host_alias}".  Otherwise we can't tell a bad
16668           host alias from a missing config.sub.
16670 Mon Apr 20 18:16:36 1992  K. Richard Pixley  (rich@rtl.cygnus.com)
16672         * Makefile.in: explicitly pass CFLAGS on recursion. no longer pass
16673           MINUS_G (this can be done with CFLAGS).  Default CFLAGS to -g.
16675 Fri Apr 17 18:27:51 1992  Per Bothner  (bothner@cygnus.com)
16677         * configure: mkdir ${subdir} as needed.
16679 Wed Apr 15 17:37:22 1992  K. Richard Pixley  (rich@cygnus.com)
16681         * Makefile.in,configure.in: added autoconf.
16683 Wed Apr 15 17:27:34 1992  K. Richard Pixley  (rich@rtl.cygnus.com)
16685         * Makefile.in: no longer pass against on recursion.
16687         * Makefile.in: added .NOEXPORT: so that stray makefile_frag
16688           definitions are not inherited.
16690         * configure: correct makesrcdir when subdir is .
16692 Tue Apr 14 11:56:09 1992  Per Bothner  (bothner@cygnus.com)
16694         * configure:  Add support for 'subdirs' variable, which is
16695         like 'configdirs', except that configure doesn't re-invoke
16696         itself for subdirs, it just creates a Makefile for each subdir.
16697         * configure.texi:  Document subdirs.
16699 Mon Apr 13 18:50:16 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16701         * configure.in: added flex to configdirs
16703 Mon Apr 13 18:43:55 1992  K. Richard Pixley  (rich@cygnus.com)
16705         * Makefile.in: remove clean-stamps from clean.
16707 Sat Apr 11 03:52:03 1992  John Gilmore  (gnu at cygnus.com)
16709         * configure.in:  Add gdbtest to configdirs.
16711 Fri Apr 10 23:11:49 1992  Fred Fish  (fnf@cygnus.com)
16713         * Makefile.in (MINUS_G):  Add macro, default to -g, pass on
16714         to recursive makes.
16715         * configure.in:  Recognize new ncr3000 config.
16717 Wed Apr  8 23:08:12 1992  K. Richard Pixley  (rich@cygnus.com)
16719         * Makefile.in, configure.in: removed references to gdbm.
16721 Tue Apr  7 16:48:20 1992  Per Bothner  (bothner@cygnus.com)
16723         * config.sub:  Don't canonicalize os value
16724         newsos* to bsd (readline needs to check for newsos).
16725         (This fix was earlier made Jan 31, but got re-broken.)
16727 Mon Apr  6 14:34:08 1992  Stu Grossman  (grossman at cygnus.com)
16729         * configure.in:  sco is an os, not a vendor!
16731         * configure:  Quote $( better.  Keep various shells happy.
16733 Tue Mar 31 16:32:57 1992  K. Richard Pixley  (rich@cygnus.com)
16735         * Makefile.in: eliminate stamp-files.
16737 Mon Mar 30 22:20:23 1992  K. Richard Pixley  (rich@cygnus.com)
16739         * Makefile.in: add send_pr.  remove "force" from .stmp-gprof rule.
16740           Supress echoing of all the "if [ -d ... $(MAKE)" lines.
16742 Wed Mar 25 15:20:04 1992  Stu Grossman  (grossman@cygnus.com)
16744         * config.sub:  fix iris/iris3.
16746 Wed Mar 25 10:34:19 1992  K. Richard Pixley  (rich@cygnus.com)
16748         * configure: re-add -rm.
16750 Tue Mar 24 23:50:16 1992  K. Richard Pixley  (rich@cygnus.com)
16752         * Maskefile.in: add .stmp-rcs to all.
16754         * configure.in: remove gas from rs6000 build, use aix host fragment.
16756 Mon Mar 23 19:43:35 1992  K. Richard Pixley  (rich@cygnus.com)
16758         * configure: pass down site_option during recursion.
16760 Thu Mar 19 16:49:36 1992  Stu Grossman  (grossman at cygnus.com)
16762         * Makefile.in (all.cross):  Add .stmp-bfd .stmp-readline.
16764 Wed Mar 18 15:29:33 1992  Mike Stump  (mrs@cygnus.com)
16766         * configure: Change exec_prefix so that it really defaults to prefix.
16768 Sat Mar 14 17:20:38 1992  Fred Fish  (fnf@cygnus.com)
16770         * Makefile.in, configure.in:  Add support for mmalloc library.
16772 Fri Mar 13 18:44:18 1992  K. Richard Pixley  (rich@cygnus.com)
16774         * Makefile.in: add stmp dependencies for a few more things.
16776 Thu Mar 12 04:56:24 1992  K. Richard Pixley  (rich@cygnus.com)
16778         * configure: adjusted error message on objdir/srcdir configure
16779           collision, per john's suggestion.
16781         * Makefile.in: add libiberty stmp to all and all.cross.
16783 Wed Mar 11 02:07:52 1992  K. Richard Pixley  (rich@cygnus.com)
16785         * Makefile.in: remove force dependencies, add grep to all.
16787 Tue Mar 10 21:49:18 1992  K. Richard Pixley  (rich@mars.cygnus.com)
16789         * Makefile.in: drop flex.  make stamp files work.
16791         * configure: added test for conflicting configuration in srcdir,
16792           remove trailing slashes from srcdir.  Otherwise emacs gdb mode
16793           gets cranky.  use relative paths for configure and srcdir
16794           whenever possible.  Send some error messages to stderr that were
16795           going to stdout.
16797 Tue Mar 10 18:01:55 1992  Per Bothner  (bothner@cygnus.com)
16799         * Makefile.in:  Fix libg++ rule to check for gcc directory
16800         before using gcc/gcc.  Also pass XTRAFLAGS.
16802 Thu Mar  5 21:45:07 1992  K. Richard Pixley  (rich@sendai)
16804         * Makefile.in: added stmp-files so that directories aren't polled
16805           when they are already built.
16807         * configure.texi: fixed a node pointer problem.
16809 Thu Mar  5 12:05:58 1992  Stu Grossman  (grossman at cygnus.com)
16811         * config.sub configure.in gdb/configure.in
16812         gdb/mips-tdep.c gdb/mipsread.c gdb/procfs.c gdb/signame.h
16813         gdb/tm-irix3.h gdb/tm-mips.h gdb/xm-irix4.h gdb/config/mt-irix3
16814         gdb/config/mh-irix4 texinfo/configure.in:  Port to SGI Irix-4.x.
16816 Wed Mar  4 02:57:46 1992  K. Richard Pixley  (rich@rtl.cygnus.com)
16818         * configure: -recurring becomes -silent.  corrected help message
16819           for -site= option.
16821         * Makefile.in: mkdir $(exec_prefix) and $(tooldir).
16823 Tue Mar  3 14:51:21 1992  K. Richard Pixley  (rich@rtl.cygnus.com)
16825         * configure: when building Makefile for crosses, replace
16826           tooldir and program_prefix.  default srcdir from location of
16827           config.sub.  remove "for host in hosts" and "for target in
16828           targets" loops.
16830 Wed Feb 26 19:48:25 1992  K. Richard Pixley  (rich@rtl.cygnus.com)
16832         * Makefile.in: Do not pass bindir or mandir to cvs.
16834 Wed Feb 26 18:04:40 1992  K. Richard Pixley  (rich@cygnus.com)
16836         * Makefile.in, configure.in: removed traces of namesubdir,
16837           -subdirs, $(subdir), $(unsubdir), some rcs triggers.  Forced
16838           copyrights to '92, changed some from Cygnus to FSF.
16840         * configure.texi: remove most references to multiple hosts,
16841           multiple targets, subdirs, etc.
16843         * configure.man: removed rcsid. reference config.sub not
16844           config.subr.
16846         * Makefile.in: mkdir $(infodir) on install-info.
16848 Wed Feb 19 15:41:13 1992  John Gilmore  (gnu at cygnus.com)
16850         * configure.texi:  Explain better about .gdbinit and about
16851         the environment that configure.in sections run in.
16853 Fri Feb  7 07:55:00 1992  John Gilmore  (gnu at cygnus.com)
16855         * configure.in:  Ultrix is only a decstation if it's a MIPS.
16857 Fri Jan 31 21:54:51 1992  John Gilmore  (gnu at cygnus.com)
16859         * README:  DOC.configure => cfg-paper.texi.
16861 Fri Jan 31 21:48:18 1992  Stu Grossman  (grossman at cygnus.com)
16863         * config.sub (near case $os):  Don't convert newsos* to bsd!
16865 Fri Jan 31 02:27:32 1992  John Gilmore  (gnu at cygnus.com)
16867         * Makefile.in:  Reinstall change from gdb-4.3 that reduces
16868         the number of copies of COPYING that go into the GDB tar file.
16870 Thu Jan 30 16:17:30 1992  Stu Grossman  (grossman at cygnus.com)
16872         * bfd/configure.in, gdb/config/mh-i386sco,
16873         gdb/config/mt-i386v32, gdb/configure.in, readline/configure.in:
16874         Fix SCO configuration stuff.
16876 Tue Jan 28 23:51:07 1992  Per Bothner  (bothner at cygnus.com)
16878         * Makefile.in:  For libg++, make sure the -I pointing
16879         to the gcc directory goes *after* all the libg++-local -I flags.
16880         Also, move just-gcc dependency from just-libg++ to all-libg++.
16882 Tue Jan 28 12:56:24 1992  Stu Grossman  (grossman at cygnus.com)
16884         * configure:  Change -x to -f to keep Ultrix /bin/test happy.
16886 Sat Jan 18 17:45:11 1992  Stu Grossman  (grossman at cygnus.com)
16888         * Makefile.in (make-gdb.tar.Z):  Remove texinfo targets.
16890 Sat Jan 18 17:03:21 1992  Fred Fish  (fnf at cygnus.com)
16892         * config.sub:  Add stratus configuration frags.  Also
16893         submitted to FSF.
16895 Sat Jan 18 15:35:29 1992  Stu Grossman  (grossman at cygnus.com)
16897         * Makefile.in (DEV_SUPPORT):  add configure.man.
16899         * config.sub(Decode manufacturer-specific):  add -none*.
16901 Fri Jan 17 17:58:05 1992  Stu Grossman  (grossman at cygnus.com)
16903         * Makefile.in:  remove form feeds to make Sun's make happy.
16904         (DEVO_SUPPORT):  DOC.configure => cfg-paper.texi.
16906 Sat Jan  4 16:11:44 1992  John Gilmore  (gnu at cygnus.com)
16908         * Makefile.in (AR_FLAGS):  Make quieter.
16910 Thu Jan  2 22:57:12 1992  John Gilmore  (gnu at cygnus.com)
16912         * configure.in:  Add libg++.
16913         * configure:  When verbose, don't output the command line at each
16914         level; it will be unremarkably the same as the previous version,
16915         which will be the same as what the user typed.
16917 Fri Dec 27 16:26:47 1991  K. Richard Pixley  (rich at cygnus.com)
16919         * configure.in, Makefile.in: fix clean-info, add flex.  add
16920           fileutils.
16922         * configure: be less sensitive to spaces in Makefile.in.  Do not
16923           look for sources in "..".  Doing so breaks subdirectories that
16924           might have their own configure.  If a subdir has it's own
16925           configure script, use it.
16927 Thu Dec 26 16:30:26 1991  K. Richard Pixley  (rich at cygnus.com)
16929         * cfg-paper.texi: some changes suggested by rms.
16931 Thu Dec 26 10:13:36 1991  Fred Fish  (fnf at cygnus.com)
16933         * config.sub:  Merge in some small additions from the FSF version,
16934         taken from the gcc distribution, to bring the Cygnus and FSF
16935         versions into closer sync.
16937 Fri Dec 20 11:34:18 1991  Fred Fish  (fnf at cygnus.com)
16939         * configure.in:  Changed svr4 references to sysv4.
16941 Thu Dec 19 15:54:29 1991  K. Richard Pixley  (rich at cygnus.com)
16943         * configure: added -V for version number option.
16945 Wed Dec 18 15:39:34 1991  K. Richard Pixley  (rich at cygnus.com)
16947         * DOC.configure, cfg-paper.texi: revised, updated, and texinfo'd.
16948           renamed from DOC.configure to cfg-paper.texi.
16950 Mon Dec 16 23:05:19 1991  K. Richard Pixley  (rich at rtl.cygnus.com)
16952         * configure, config.subr, config.sub: config.subr is now
16953           config.sub again.
16955 Fri Dec 13 01:17:06 1991  K. Richard Pixley  (rich at cygnus.com)
16957         * configure.texi: new file, in progress.
16959         * Makefile.in: build info file and install the man page for
16960           configure.
16962         * configure.man: new file, first cut.
16964         * configure: find config.subr again now that configuration "none"
16965           has gone.  removed all traces of the -ansi option.  removed all
16966           traces of the -languages option.
16968         * config.subr: resync from rms.
16970 1991-12-11  K. Richard Pixley  (rich at rtl.cygnus.com)
16972         * configure, config.sub, config.subr: merge config.sub into
16973           config.subr, call the result config.subr, remove config.sub, use
16974           config.subr.
16976         * Makefile.in: revised install for dir.info.
16978 1991-12-10  K. Richard Pixley  (rich at rtl.cygnus.com)
16980         * configure.in: add decstation host makefile frag.
16982         * Makefile.in: BISON now bison -y again.  also install-gcc on
16983           install.  clean-gdbm on clean.  infodir belongs in datadir.
16984           Make directories for info install.  Build dir.info here then
16985           install it.
16987 1991-12-09  K. Richard Pixley  (rich at rtl.cygnus.com)
16989         * Makefile.in: fix for bad directory tests.
16991 1991-12-07  K. Richard Pixley  (rich at rtl.cygnus.com)
16993         * configure: \{1,2\} appears to be a sysv'ism.  Use a different
16994           regexp.  -srcdir relative was being handled incorrectly.
16996         * Makefile.in: unwrapped some for loops so that parallel makes
16997           work again and so one can focus one's attention on a particular
16998           package.
17000 1991-12-06  K. Richard Pixley  (rich at rtl.cygnus.com)
17002         * configure: added PWD as a stand in for `pwd` (for speed). use
17003           elif wherever possible.  make -srcdir work without -objdir.
17004           -objdir= commented out.
17006 1991-12-05  K. Richard Pixley  (rich at rtl.cygnus.com)
17008         * configure: +options become --options.  -subdirs commented out.
17009           added -host, -datadir.  Renamed -destdir to -prefix.  Comment in
17010           Makefile now at top of generated Makefile.  Removed cvs log
17011           entries.  added -srcdir.  create .gdbinit only if there is one
17012           in ${srcdir}.
17014         * Makefile.in: idestdir and ddestdir go away.  Added copyrights
17015           and shift gpl to v2.  Added ChangeLog if it didn't exist. docdir
17016           and mandir now keyed off datadir by default.
17018 1991-11-22  K. Richard Pixley  (rich at rtl.cygnus.com)
17020         * Freshly created ChangeLog.
17023 Local Variables:
17024 mode: change-log
17025 left-margin: 8
17026 fill-column: 76
17027 version-control: never
17028 End: