Update following 2.39 release
[binutils-gdb.git] / ChangeLog
blob8a84e119e53151435a6c9972ec506bad40be0a47
1 2022-07-08  Nick Clifton  <nickc@redhat.com>
3         * 2.39 branch created.
5 2022-07-04  Nick Clifton  <nickc@redhat.com>
7         * libiberty: Synchronize with GCC.  Bring in:
8         2022-07-01  Nick Clifton  <nickc@redhat.com>
10         PR demangler/105039
11         * rust-demangle.c (demangle_const): Add recursion limit.
13         2022-06-26  Simon Marchi  <simon.marchi@efficios.com>
15         * configure.ac: Add AC_CONFIG_MACRO_DIRS call.
16         * configure: Re-generate.
18 2022-04-12  Nick Clifton  <nickc@redhat.com>
20         * zlib: Rebase to the 1.2.12 release.
22 2022-04-08  Simon Marchi  <simon.marchi@efficios.com>
24         * configure.ac: Add AC_SUBST(PKG_CONFIG_PATH).
25         * configure: Re-generate.
26         * Makefile.tpl (HOST_EXPORTS): Pass PKG_CONFIG_PATH.
27         (PKG_CONFIG_PATH): New.
28         * Makefile.in: Re-generate.
30 2022-03-15  Jose E. Marchesi  <jose.marchesi@oracle.com>
32         * gprofng/src/gp-collect-app.cc (collect::check_args): Use
33         fallthrough comment instead of attribute.
35 2022-03-11  Vladimir Mezentsev  <vladimir.mezentsev@oracle.com>
37         * Makefile.def: Add gprofng module.
38         * configure.ac: Add --enable-gprofng option.
39         * src-release.sh: Add gprofng.
40         * Makefile.in: Regenerate.
41         * configure: Regenerate.
42         * gprofng: New directory.
44 2022-01-22  Nick Clifton  <nickc@redhat.com>
46         * 2.38 release branch created.
48 2022-01-17  Nick Clifton  <nickc@redhat.com>
50         Update config.[guess|sub] from upstream:
52         2022-01-09  Idan Horowitz  <idan.horowitz@gmail.com>
54         config.guess: recognize SerenityOS
55         * config.guess (*:SerenityOS:*:*): Recognize.
56         (timestamp): Update.
58         2022-01-03  Bernhard Voelker  <mail@bernhard-voelker.de>
60         Fix GPLv3 license headers to use a comma instead of semicolon
61         See: https://www.gnu.org/licenses/gpl-3.0.html#howto
63         Update license headers automatically using the following script:
65           $ git grep -l 'Foundation; either version 3' \
66             | xargs sed -i '/Foundation; either version 3/ s/n; e/n, e/'
68         * config.guess: Adjust via the above command.
69         (timestamp): Update.
70         * config.sub: Likewise.
71         * doc/config.guess.1: Regenerate.
72         * doc/config.sub.1: Likewise.
74         2022-01-01  Dmitry V. Levin  <ldv@altlinux.org>
76         Update copyright years
77         * config.guess: Update copyright years.
78         * config.sub: Likewise.
80         2021-12-25  Dmitry V. Levin  <ldv@altlinux.org>
82         config.sub: alias armh to armv7l
83         ALT uses armh as an alias for armv7l-alt-linux-gnueabihf since 2012.
85         * config.sub (armh-unknown|armh-alt): Set cpu, vendor, and basic_os.
86         (timestamp): Update.
88         2021-12-24  Dmitry V. Levin  <ldv@altlinux.org>
90         config.sub: alias aarch64le to aarch64
91         Apparently, QNX reports aarch64 as aarch64le on little-endian machines.
93         * config.sub (aarch64le-*): Set cpu to aarch64.
94         (timestamp): Update.
96         2021-12-13  Dmitry V. Levin  <ldv@altlinux.org>
98         config.sub: fix typo in timestamp
99         * config.sub: Fix timestamp.
101         2021-11-30  Andreas F. Borchert  <github@andreas-borchert.de>
103         config.guess: x86_64-pc-solaris2.11 is not properly recognized
104         config.guess guesses Solaris 11 to run on a 32-bit platform
105         despite Solaris 11 no longer supporting any 32-bit platform.
107         See the following code at lines 434 to 445:
109         | SUN_ARCH=i386
110         | # If there is a compiler, see if it is configured for 64-bit objects.
111         | # Note that the Sun cc does not turn __LP64__ into 1 like gcc does.
112         | # This test works for both compilers.
113         | if test "$CC_FOR_BUILD" != no_compiler_found; then
114         |     if (echo '#ifdef __amd64'; echo IS_64BIT_ARCH; echo '#endif') | \
115         |         (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \
116         |         grep IS_64BIT_ARCH >/dev/null
117         |     then
118         |         SUN_ARCH=x86_64
119         |     fi
120         | fi
122         If "cc" is installed, i.e. the Oracle Studio compiler, this one is
123         chosen for $CC_FOR_BUILD.  This compiler, the gcc provided by Oracle
124         and also gcc bootstrapped from sources on that platform with a default
125         configuration will by default generate 32-bit binaries -- even on
126         a 64-bit platform.  And __amd64 will not be defined for compilations
127         targeting a 32-bit platform.  This is different from the corresponding
128         behaviour on GNU/Linux systems where the local platform is targeted by
129         default.
131         Thus, as long as you do not add "-m64" or if you have a custom-built
132         gcc which defaults to 64 bit, you will get 32-bit binaries on Solaris
133         despite living on a 64-bit platform.
135         * config.guess (i86pc:SunOS:5.*:* || i86xen:SunOS:5.*:*): Adapt the
136         test by adding the "-m64" flag.  This will work properly for Solaris
137         10 as well (the last Solaris release that supported x86 32-bit
138         platforms).
140         2021-10-27  Jordi Sanfeliu  <jordi@fibranet.cat>
142         Recognize Fiwix
143         $ make check
144         cd testsuite && bash config-guess.sh && rm uname
145         PASS: config.guess checks (137 tests)
146         cd testsuite && bash config-sub.sh
147         PASS: config.sub checks (882 tests)
148         PASS: config.sub idempotency checks (819 tests)
149         PASS: config.sub canonicalise each config.guess testcase (137 tests)
151         * config.guess (i*86:Fiwix:*:*): Recognize.
152         * config.sub (fiwix*): Likewise.
154         2021-10-18  Kinshuk Dua  <kinshukdua@gmail.com>
156         config.sub: Fix typo in comment
157         Fixes: 5e531d391852a54e7fab2d8ff55625fca514b305
159         2021-08-14  Nick Bowler  <nbowler@draconx.ca>
161         config.sub: work around command assignment bug in some shells
162         When combining variable assignments with a shell command, some older
163         shells (notably heirloom-sh and presumably also Solaris 10 /bin/sh)
164         have a bug which causes the assignment to alter the current execution
165         environment whenever the command is a shell built-in.  For example:
167           % dash -c 'x=good; x=bad echo >/dev/null; echo $x'
168           good
170           % jsh -c 'x=good; x=bad echo >/dev/null; echo $x'
171           bad
173         The config.sub script contains a few commands of the form:
175           IFS=- read ...
177         which triggers this bug, causing the IFS assignment to persist for the
178         remainder of the script.  This can cause misbehaviour in certain cases,
179         for example:
181           % jsh config.sub i386-linux-gnu
182           config.sub: test: unknown operator gnu
184           % jsh config.sub i386-gnu/linux
185           sed: can't read s|gnu/linux|gnu|: No such file or directory
186           Invalid configuration `i386-gnu/linux': OS `' not recognized
188         * config.sub: Save and restore IFS explicitly to avoid shell bugs.
189         * doc/config.sub.1: Regenerate.
191         2021-08-04  Jeremy Soller  <jackpot51@gmail.com>
193         config.sub: add Linux Relibc Target
194         $ make check
195         cd testsuite && bash config-guess.sh && rm uname
196         PASS: config.guess checks (136 tests)
197         cd testsuite && bash config-sub.sh
198         PASS: config.sub checks (881 tests)
199         PASS: config.sub idempotency checks (818 tests)
200         PASS: config.sub canonicalise each config.guess testcase (136 tests)
202         * config.sub (relibc*): Recognize.
203         * doc/config.sub.1: Regenerate.
204         * testsuite/config-sub.data (x86_64-linux-relibc): New test.
206         2021-07-06  Stephanos Ioannidis  <root@stephanos.io>
208         config.sub: add Zephyr RTOS support
209         This adds the Zephyr RTOS targets in preparation for implementing the
210         Zephyr RTOS-specific toolchain support.
212         $ make check
213         cd testsuite && bash config-guess.sh && rm uname
214         PASS: config.guess checks (136 tests)
215         cd testsuite && bash config-sub.sh
216         PASS: config.sub checks (880 tests)
217         PASS: config.sub idempotency checks (817 tests)
218         PASS: config.sub canonicalise each config.guess testcase (136 tests)
220         * config.sub (zephyr*): Recognize.
221         * doc/config.sub.1: Regenerate.
222         * testsuite/config-sub.data: Add testcases for *-zephyr.
224         2021-07-03  Ozkan Sezer  <sezero@users.sourceforge.net>
226         config.sub: disable shellcheck SC2006 / SC2268 warnings
227         This is in line with the recent config.guess change in commit
228         12fcf67c9108f4c4b581eaa302088782f0ee40ea
230         * config.sub (shellcheck disable): Add SC2006,SC2268.
232         Suggested-by: Jacob Bachmeyer <jcb@gnu.org>
234         2021-07-03  Ozkan Sezer  <sezero@users.sourceforge.net>
236         config.sub: normalize the quoting in the `echo FOO | sed ...`
237         Some cases quote the argument to echo and some do not.  At runtime
238         it probably does not matter because the substituted values will never
239         contain whitespace, but quoting them all would make shellcheck more
240         useful.
242         * config.sub: Consistently quote the argument of echo.
243         * doc/config.sub.1: Regenerate.
245         Suggested-by: Jacob Bachmeyer <jcb@gnu.org>
247         2021-07-02  Ozkan Sezer  <sezero@users.sourceforge.net>
249         config.sub: replace POSIX $( ) with classic ` ` throughout
250         This is in line with the recent config.guess change in commit
251         d70c4fa934de164178054c3a60aaa0024ed07c91.
253         The patch was generated using patch-6.gawk script introduced in that
254         commit.
256         * config.sub: Revert POSIX command substitutions to classic form.
258         2021-06-04  Vineet Gupta  <Vineet.Gupta1@synopsys.com>
260         Recognize arc32
261         This is the 32-bit variant of ARCv3 ISA (which is not compatible with the
262         32-bit ARCv2 ISA)
264         | make check
265         | cd testsuite && bash config-guess.sh && rm uname
266         | PASS: config.guess checks (136 tests)
267         | cd testsuite && bash config-sub.sh
268         | PASS: config.sub checks (864 tests)
269         | PASS: config.sub idempotency checks (801 tests)
270         | PASS: config.sub canonicalise each config.guess testcase (136 tests)
272         * config.guess (arc32:Linux:*:*): Recognize.
273         * config.sub (arc32): Likewise.
275         2021-05-27  Jacob Bachmeyer  <jcb@gnu.org>
277         Remove automatic patch generators
278         These tools have served their purposes and need not be kept outside of
279         the repository history any longer.  This patch as a diff also collects
280         the contents of the various tools in one convenient place.
282         * patch-1.gawk: Remove.
283         * patch-3.gawk: Likewise.
284         * patch-6.gawk: Likewise.
286         2021-05-26  Jacob Bachmeyer  <jcb@gnu.org>
288         config.guess: manual fixups after previous automatic patch
289         The tool could not handle command substitutions that span lines, but
290         fortunately there were only two such substitutions in the script.
292         The test for which universe is active on Pyramid is rewritten into a
293         case block because it was the only use of a command substitution as an
294         argument to the test command, which would require quoting.
296         * config.guess: Rewrite "if" for Pyramid systems to "case".
298         2021-05-26  Jacob Bachmeyer  <jcb@gnu.org>
300         config.guess: replace POSIX $( ) with classic ` ` throughout
301         The previous replacement of backticks with POSIX command substitutions
302         was ill-considered and illogical: this script recognizes many archaic
303         machine types that probably never had POSIX shells, therefore it needs
304         to be able to run successfully under pre-POSIX shells.
306         This patch was generated using the included GNU Awk program.
308         * config.guess: Revert POSIX command substitutions to classic form.
309         * patch-6.gawk: Store the tool that produced the automated patch.
311         2021-05-26  Jacob Bachmeyer  <jcb@gnu.org>
313         config.guess: manual fixup after previous automated patches
314         This patch provides the special handling for the GNU system.  As these
315         were two small and unique edits, they were not included in the scripts.
317         This patch also cleans up other minor issues that must be addressed
318         before reverting to classic command substitutions and updates
319         "shellcheck" directives to account for changes in this script and the
320         change in "shellcheck" towards reporting individual portability issues.
322         2021-05-26  Jacob Bachmeyer  <jcb@gnu.org>
324         config.guess: automatic fixups after previous automated patch
325         This patch was generated using the following command:
327           sed -i config.guess \
328               -e '/="[^"]\+"\(-\|$\)/s/="\([^"([:space:])]\+\)"/=\1/' \
329               -e '/="[^"]\+"[[:alnum:]]/s/="\$\([^([:space:])]\+\)"/=${\1}/' \
330               -e \
331         '/\$(echo[^|]\+|/s/\([^[:space:]]\)[[:space:]]*|[[:space:]]*sed/\1 | sed/g'
333         * config.guess: Remove unneeded quotes in other variable assignments,
334         standardize spacing for "echo ... | sed" substitutions.
336         2021-05-26  Jacob Bachmeyer  <jcb@gnu.org>
338         config.guess: remove unneeded quotes and factor command substitutions
339         This is further cleanup and simplifies some constructs that can confuse
340         Emacs' syntax highlighting while generally reducing required quoting.
342         This patch was generated using the included GNU Awk program.
344         * config.guess: Remove unneeded variable quotes and factor out command
345         substitutions when setting GUESS.
346         * patch-3.gawk: Store the tool that produced the automated patch.
348         2021-05-25  Jacob Bachmeyer  <jcb@gnu.org>
350         config.guess: manual fixups after previous automatic patch
351         * config.guess: Adjust a few "leftover" cases that the tool could not
352         easily recognize and fixes comment indentation in a few other special
353         cases.
355         2021-05-25  Jacob Bachmeyer  <jcb@gnu.org>
357         config.guess: use intermediate variable with uname results
358         This will allow quoting to be significantly simplified in another
359         pass through the file.
361         This patch was generated using the included GNU Awk program.
363         * config.guess: Use GUESS variable to hold results of uname analysis.
364         * patch-1.gawk: Store the tool that produced the automated patch.
366         2021-05-25  Jacob Bachmeyer  <jcb@gnu.org>
368         config.guess: introduce intermediate variable with uname results
369         This will allow quoting to be significantly simplified in another
370         pass through the file.
372         * config.guess: Introduce GUESS variable to hold results of uname analysis.
374         2021-05-24  Dmitry V. Levin  <ldv@altlinux.org>
376         config.guess: fix shellcheck warning SC2154
377         While, according to Plan 9 documentation, the environment variable
378         $cputype is set to the name of the kernel's CPU's architecture,
379         shellcheck warns that cputype is referenced but not assigned.
380         Be on the safe side and do not use cputype if it is not defined
381         or empty.
383         * config.guess (*:Plan9:*:*): Fix shellcheck warning SC2154.
385         2021-05-24  Dmitry V. Levin  <ldv@altlinux.org>
387         config.guess: remove redundant quotes in case commands
388         According to the GNU Autoconf Portable Shell Programming manual,
389         the Bourne shell does not systematically split variables and back-quoted
390         expressions, in particular on the right-hand side of assignments and in
391         the argument of 'case'.
393         The change is made automatically using the following command:
394         $ sed -E -i 's/(\<case )"(\$[^"]+)"( in\>)/\1\2\3/' config.guess
396         * config.guess: Simplify case commands by removing quotes around the
397         argument.
399         Suggested-by: Jacob Bachmeyer <jcb@gnu.org>
401         2021-05-24  Dmitry V. Levin  <ldv@altlinux.org>
403         config.guess: simplify exit status workaround on alphaev67-dec-osf5.1
404         Commit 29865ea8a5622cdd80b7a69a0afa78004b4cd311 introduced an exit trap
405         reset before exiting to avoid a spurious non-zero exit status on
406         alphaev67-dec-osf5.1.  Simplify that code a bit by moving the exit trap
407         reset around.
409         * config.guess (alpha:OSF1:*:*): Reset exit trap earlier.
410         * doc/config.guess.1: Regenerate.
412 2021-10-29  Eli Zaretskii  <eliz@gnu.org>
414         * gdb/doc/gdb.texinfo (Command Options): (Data): Document
415         '-memory-tag-violations'.  Update the example.
417 2021-09-28  Andrew Burgess  <andrew.burgess@embecosm.com>
419         * src-release.sh (GDB_SUPPPORT_DIRS): Add libbacktrace.
421 2021-09-27  Nick Alcock  <nick.alcock@oracle.com>
423         PR libctf/27967
424         * libtool.m4 (LT_PATH_NM): Try BSDization flags with a user-provided
425         NM, if there is one.  Run nm on itself, not on /dev/null, to avoid
426         errors from nms that refuse to work on non-regular files.  Remove
427         other workarounds for this problem.  Strip out blank lines from the
428         nm output.
430 2021-09-27  Nick Alcock  <nick.alcock@oracle.com>
432         PR libctf/27967
433         * libtool.m4 (lt_cv_sys_global_symbol_pipe): Augment symcode for
434         Solaris 11.
436 2021-07-03  Nick Clifton  <nickc@redhat.com>
438         * 2.37 release branch created.
440 2021-07-03  Nick Clifton  <nickc@redhat.com>
442         * libiberty: Sync with gcc.  Bring in:
443         2021-06-30  Gerald Pfeifer  <gerald@pfeifer.com>
445         * make-temp-file.c (usrtmp): Remove.
446         (choose_tmpdir): Remove use of usrtmp.
448         2021-06-28  Indu Bhagat  <indu.bhagat@oracle.com>
450         * simple-object.c (handle_lto_debug_sections): Copy over .BTF section.
452         2021-06-28  Indu Bhagat  <indu.bhagat@oracle.com>
453             David Faust  <david.faust@oracle.com>
454             Jose E. Marchesi  <jose.marchesi@oracle.com>
455             Weimin Pan  <weimin.pan@oracle.com>
457         * simple-object.c (handle_lto_debug_sections): Copy over .ctf
458         sections.
460         2021-06-05  John David Anglin  <danglin@gcc.gnu.org>
462         PR target/100734
463         * configure.ac: Use libiberty snprintf and vsnprintf on
464         hppa*-*-hpux*.
465         * configure: Regenerate.
467         2021-05-06  Tom Tromey  <tom@tromey.com>
469         * hashtab.c (htab_eq_string): New function.
471         2021-05-04  Eric Botcazou  <ebotcazou@adacore.com>
473         * configure.ac: Make test for variables more robust.
474         * configure: Regenerate.
476         2021-05-03  H.J. Lu  <hjl.tools@gmail.com>
478         PR bootstrap/99703
479         * configure: Regenerated.
481         2021-04-21  Andreas Schwab  <schwab@linux-m68k.org>
483         PR demangler/100177
484         * rust-demangle.c (demangle_const_char): Properly print the
485         character value.
487         2021-03-31  Patrick Palka  <ppalka@redhat.com>
489         PR c++/88115
490         * cp-demangle.c (d_dump, d_make_comp, d_expression_1)
491         (d_count_templates_scopes): Handle DEMANGLE_COMPONENT_VENDOR_EXPR.
492         (d_print_comp_inner): Likewise.
493         <case DEMANGLE_COMPONENT_EXTENDED_OPERATOR>: Revert r11-4926
494         change.
495         <case DEMANGLE_COMPONENT_UNARY>: Likewise.
496         * testsuite/demangle-expected: Adjust __alignof__ tests.
498         2021-03-16  Nick Clifton  <nickc@redhat.com>
500         * sha1.c (sha1_process_bytes): Use memmove in place of memcpy.
502         2021-02-20  Mike Frysinger  <vapier@gentoo.org>
504         * Makefile.in (ACLOCAL, ACLOCAL_AMFLAGS, $(srcdir)/aclocal.m4): Define.
505         (configure_deps): Rename to ...
506         (aclocal_deps): ... this.  Replace aclocal.m4 with acinclude.m4.
507         ($(srcdir)/configure): Replace $(configure_deps) with
508         $(srcdir)/aclocal.m4.
509         * aclocal.m4: Move libiberty macros to acinclude.m4, then regenerate.
510         * acinclude.m4: New file.
511         * configure: Regenerate.
513         2021-02-19  Ayush Mittal  <ayush.m@samsung.com>
515         * argv.c (expandargv): free allocated buffer if read fails.
517         2021-02-01  Martin Sebor  <msebor@redhat.com>
519         * dyn-string.c (dyn_string_insert_cstr): Use memcpy instead of strncpy
520         to avoid -Wstringop-truncation.
522 2021-05-29  Mike Frysinger  <vapier@gentoo.org>
524         * configure.ac: Add gnulib to configdirs for sim.
525         * configure: Regenerate.
527 2021-05-24  Maciej W. Rozycki  <macro@orcam.me.uk>
529         * MAINTAINERS: Update path to readline config.{sub,guess} files.
531 2021-05-24  Maciej W. Rozycki  <macro@orcam.me.uk>
533         * config.guess: Import from upstream.
534         * config.sub: Likewise.
536 2021-05-18  Mike Frysinger  <vapier@gentoo.org>
538         * Makefile.def: Add configure-sim dependency on all-gnulib.
539         * Makefile.in: Regenerated.
541 2021-05-04  Nick Clifton  <nickc@redhat.com>
543         * configure.ac (AC_PROG_CC): Replace with AC_PROG_CC_C99.
544         * configure: Regenerate.
546 2021-03-18  Nick Alcock  <nick.alcock@oracle.com>
548         PR libctf/27482
549         * Makefile.def: Add install-bfd dependencies for install-libctf and
550         install-ld, and install-strip-bfd dependencies for
551         install-strip-libctf and install-strip-ld; move the install-ld
552         dependency on install-libctf to join it.
553         * Makefile.in: Regenerated.
555 2021-03-12  Mike Frysinger  <vapier@gentoo.org>
557         * Makefile.def: Remove all-sim dependency on configure-gdb.
558         * Makefile.in: Regenerated.
560 2021-02-28  H.J. Lu  <hongjiu.lu@intel.com>
562         PR binutils/26766
563         * Makefile.tpl (PGO_BUILD_TRAINING_FLAGS_TO_PASS): Add
564         PGO_BUILD_TRAINING=yes.
565         (PGO_BUILD_TRAINING_MFLAGS): New.
566         (all): Pass $(PGO_BUILD_TRAINING_MFLAGS) to the PGO build.
568 2021-02-09  Alan Modra  <amodra@gmail.com>
570         * configure.ac: Delete arm*-*-symbianelf* entry.
571         * configure: Regenerate.
573 2021-01-26  Nick Alcock  <nick.alcock@oracle.com>
575         * Makefile.def: Add install-libctf dependency to install-ld.
576         * Makefile.in: Regenerated.
578 2021-01-12  Mike Frysinger  <vapier@gentoo.org>
580         * src-release.sh (do_proto_toplev): Rewrite indentation.
582 2021-01-11  H.J. Lu  <hongjiu.lu@intel.com>
584         PR binutils/26766
585         * configure.ac:
586         * configure: Regenerated.
588 2021-01-11  H.J. Lu  <hongjiu.lu@intel.com>
590         PR ld/27173
591         * configure: Regenerated.
592         * libtool.m4 (_LT_CMD_OLD_ARCHIVE): Check if AR works with
593         --plugin and rc before enabling --plugin.
595 2021-01-09  H.J. Lu  <hongjiu.lu@intel.com>
597         PR binutils/26766
598         * Makefile.tpl (BUILD_CFLAGS): New.
599         (CFLAGS): Append $(BUILD_CFLAGS).
600         (CXXFLAGS): Likewise.
601         (PGO_BUILD_GEN_FLAGS_TO_PASS): New.
602         (PGO_BUILD_TRAINING_CFLAGS): Likewise.
603         (PGO_BUILD_TRAINING_CXXFLAGS): Likewise.
604         (PGO_BUILD_TRAINING_FLAGS_TO_PASS): Likewise.
605         (PGO_BUILD_TRAINING_MFLAGS): Likewise.
606         (PGO_BUILD_USE_FLAGS_TO_PASS): Likewise.
607         (PGO-TRAINING-TARGETS): Likewise.
608         (PGO_BUILD_TRAINING): Likewise.
609         (all): Add '+' to the command line for recursive make.  Support
610         the PGO build.
611         * configure.ac: Add --enable-pgo-build[=lto].
612         AC_SUBST PGO_BUILD_GEN_CFLAGS, PGO_BUILD_USE_CFLAGS and
613         PGO_BUILD_LTO_CFLAGS.  Enable the PGO build in Makefile.
614         * Makefile.in: Regenerated.
615         * configure: Likewise.
617 2021-01-09  H.J. Lu  <hongjiu.lu@intel.com>
619         * Makefile.tpl (AR): Add @AR_PLUGIN_OPTION@
620         (RANLIB): Add @RANLIB_PLUGIN_OPTION@.
621         * configure.ac: Include config/gcc-plugin.m4.
622         AC_SUBST AR_PLUGIN_OPTION and RANLIB_PLUGIN_OPTION.
623         * libtool.m4 (_LT_CMD_OLD_ARCHIVE): Pass --plugin to AR and
624         RANLIB if possible.
625         * Makefile.in: Regenerated.
626         * configure: Likewise.
628 2021-01-09  Nick Clifton  <nickc@redhat.com>
630         * 2.36 release branch crated.
632 2021-01-07  Samuel Thibault  <samuel.thibault@gnu.org>
634         * libtool.m4: Match gnu* along with other GNU systems.
636 2021-01-07  Alan Modra  <amodra@gmail.com>
638         * config.sub: Accept OS of eabi* and gnueabi*.
640 2021-01-05  Nick Alcock  <nick.alcock@oracle.com>
642         * Makefile.def (libctf): No longer no_check.  Checking depends on
643         all-ld.
644         * Makefile.in: Regenerated.
646 2021-01-05  Nick Clifton  <nickc@redhat.com>
648         * libiberty: Sync with gcc.  Bring in:
649         2021-01-04  Martin Liska  <mliska@suse.cz>
651         * strverscmp.c: Convert to utf8 from iso8859.
653         2020-12-22  Jason Merrill  <jason@redhat.com>
655         PR c++/67343
656         * cp-demangle.h (struct d_info): Add unresolved_name_state.
657         * cp-demangle.c (d_prefix): Add subst parm.
658         (d_nested_name): Pass it.
659         (d_unresolved_name): Split out from...
660         (d_expression_1): ...here.
661         (d_demangle_callback): Maybe retry with old sr mangling.
662         * testsuite/demangle-expected: Add test.
664         2020-12-21  Jason Merrill  <jason@redhat.com>
666         * cp-demangle.c (d_expression_1): Recognize qualified-id
667         on RHS of dt/pt.
668         * testsuite/demangle-expected: Add test.
670         2020-12-21  Jason Merrill  <jason@redhat.com>
672         * cp-demangle.c (d_unqualified_name): Clear is_expression.
673         * testsuite/demangle-expected: Add tests.
675         2020-11-25  Matthew Malcomson  <matthew.malcomson@arm.com>
677         * configure: Regenerate.
678         * configure.ac: Avoid using sanitizer.
680         2020-11-13  Eduard-Mihai Burtescu  <eddyb@lyken.rs>
682         * rust-demangle.c (struct rust_demangler): Add
683         skipping_printing and bound_lifetime_depth fields.
684         (eat): Add (v0-only).
685         (parse_integer_62): Add (v0-only).
686         (parse_opt_integer_62): Add (v0-only).
687         (parse_disambiguator): Add (v0-only).
688         (struct rust_mangled_ident): Add punycode{,_len} fields.
689         (parse_ident): Support v0 identifiers.
690         (print_str): Respect skipping_printing.
691         (print_uint64): Add (v0-only).
692         (print_uint64_hex): Add (v0-only).
693         (print_ident): Respect skipping_printing,
694         Support v0 identifiers.
695         (print_lifetime_from_index): Add (v0-only).
696         (demangle_binder): Add (v0-only).
697         (demangle_path): Add (v0-only).
698         (demangle_generic_arg): Add (v0-only).
699         (demangle_type): Add (v0-only).
700         (demangle_path_maybe_open_generics): Add (v0-only).
701         (demangle_dyn_trait): Add (v0-only).
702         (demangle_const): Add (v0-only).
703         (demangle_const_uint): Add (v0-only).
704         (basic_type): Add (v0-only).
705         (rust_demangle_callback): Support v0 symbols.
706         * testsuite/rust-demangle-expected: Add v0 testcases.
708         2020-11-13  Seija Kijin  <doremylover456@gmail.com>
710         * strstr.c (strstr): Make implementation ANSI/POSIX compliant.
712         2020-11-11  Patrick Palka  <ppalka@redhat.com>
714         PR c++/88115
715         * cp-demangle.c (d_print_comp_inner)
716         <case DEMANGLE_COMPONENT_EXTENDED_OPERATOR>: Don't print the
717         "operator " prefix for __alignof__.
718         <case DEMANGLE_COMPONENT_UNARY>: Always print parens around the
719         operand of __alignof__.
720         * testsuite/demangle-expected: Test demangling for __alignof__.
722         2020-11-09  Christophe Lyon  <christophe.lyon@linaro.org>
724         * pex-win32.c (pex_win32_exec_child): Initialize orig_err.
726         2020-10-06  Martin Liska  <mliska@suse.cz>
728         PR lto/97290
729         * simple-object-elf.c (simple_object_elf_copy_lto_debug_sections):
730         Use sh_link of a .symtab_shndx section.
732 2021-01-05  Alan Modra  <amodra@gmail.com>
734         * config.guess: Import from upstream.
735         * config.sub: Likewise.
737 2020-12-16  Martin Liska  <mliska@suse.cz>
738             Tom de Vries  <tdevries@suse.de>
740         * gdb/debuginfod-support.c (struct user_data): Remove has_printed
741         field.  Add meter field.
742         (progressfn): Print progress using meter.
744 2020-12-02  Enze Li  <lienze2010@hotmail.com>
746         * .gitignore: Add gnu global outputs.
748 2020-12-02  Simon Marchi  <simon.marchi@polymtl.ca>
750         * .gitignore: Sync with gcc.
752 2020-10-26  Andreas Rammhold <andreas@rammhold.de>
754         * src-release.sh: Use sha256sum instead of md5sum.
756 2020-10-14  Andrew Burgess  <andrew.burgess@embecosm.com>
758         * Makefile.in: Rebuild.
759         * Makefile.def: Make distclean-gnulib depend on distclean-gdb and
760         distclean-gdbserver.
762 2020-07-24  Aaron Merey  <amerey@redhat.com>
764         * configure: Rebuild.
765         * configure.ac: Remove AC_DEBUGINFOD.
767 2020-07-04  Nick Clifton  <nickc@redhat.com>
769         Binutils 2.35 branch created.
771 2020-04-21  Stephen Casner  <casner@acm.org>
773         PR 25830
774         * configure.ac (noconfigdirs): Exclude gdb & gprof for pdp11.
775         * configure: Rebuild.
777 2020-03-12  Tom Tromey  <tom@tromey.com>
779         * Makefile.in: Rebuild.
780         * Makefile.def (gdbserver): Depend on gdbsupport.
782 2020-03-12  Tom Tromey  <tom@tromey.com>
784         * Makefile.in: Rebuild.
785         * Makefile.def (gdbsupport): Don't depend on bfd.
787 2020-03-12  Tom Tromey  <tom@tromey.com>
789         * Makefile.in: Rebuild.
790         * Makefile.def (gdbsupport): Depend on intl.
792 2020-02-17  Tom Tromey  <tom@tromey.com>
794         * configure: Rebuild.
795         * configure.ac (configdirs): Add gnulib and gdbsupport when building
796         gdbserver.
798 2020-02-14  Tom Tromey  <tom@tromey.com>
800         * Makefile.in: Rebuild.
801         * Makefile.def: Make gdbserver require gnulib and libiberty.
803 2020-02-07  Tom Tromey  <tom@tromey.com>
804             Pedro Alves  <palves@redhat.com>
806         * src-release.sh (GDB_SUPPORT_DIRS): Add gdbserver.
807         * gdbserver: New directory, moved from gdb/gdbserver.
808         * configure.ac (host_tools): Add gdbserver.
809         Only build gdbserver on certain systems.
810         * Makefile.in, configure: Rebuild.
811         * Makefile.def (host_modules, dependencies): Add gdbserver.
812         * MAINTAINERS: Add gdbserver.
814 2020-01-28  Sergio Durigan Junior  <sergiodj@redhat.com>
816         * src-release.sh (getver): Look for gdbsupport's
817         create-version.sh script at the current directory if tool is
818         "gdb".
820 2020-01-19  Simon Marchi  <simon.marchi@polymtl.ca>
822         * remote-sim.c (gdbsim_target::wait): Return
823         sim_data->remote_sim_ptid instead of inferior_ptid.
825 2020-01-18  Nick Clifton  <nickc@redhat.com>
827         Binutils 2.34 branch created.
829 2020-01-18  Nick Clifton  <nickc@redhat.com>
831         Synchronize top level configure files with master version:
833         2020-01-01  Ben Elliston  <bje@gnu.org>
835         * config.guess: Update copyright years.
836         * config.sub: Likewise.
838         2019-12-21  Ben Elliston  <bje@gnu.org>
840         * config.guess (set_cc_for_build): Prevent multiple calls by
841         checking if $tmp is already set. We can't check CC_FOR_BUILD as
842         the user may set it externally. Thanks to Torbjörn Granlund for
843         the bug report.
845         2019-12-21  Torbjörn Granlund  <tg@gmplib.org>
847         * config.guess (alpha:Linux:*:*): Guard against missing
848         /proc/cpuinfo by redirecting standard error to /dev/null.
850         2019-09-12  Daniel Bittman  <danielbittman1@gmail.com>
852         * config.guess (*:Twizzler:*:*): New.
853         * config.sub (-twizzler*): New.
855         2019-07-24  Ben Elliston  <bje@gnu.org>
857         * config.guess (mips:OSF1:*.*): Whitespace cleanup.
859         2019-06-30  Ben Elliston  <bje@gnu.org>
861         * config.sub (case $os): Match nsk* and powerunix. Don't later
862         match nsk* and set os=nsk which removes the OS version number.
864         2019-06-30  Ben Elliston  <bje@gnu.org>
866         * config.sub: Recognise os108*.
868         2019-06-26  Ben Elliston  <bje@gnu.org>
870         * config.sub (hp300): Set $os to hpux.
872         2019-06-26  Ben Elliston  <bje@gnu.org>
874         * config.sub (vsta): Move into alphabetical order.
876         2019-06-10  Ben Elliston  <bje@gnu.org>
878         * config.guess (*:OS108:*:*): Recognise new OS.
880         2019-05-28  Ben Elliston  <bje@gnu.org>
882         * config.guess (*:Darwin:*:*): Run xcode-select to determine if a
883         system compiler is installed. If not, do not run set_cc_for_build,
884         as the default cc will open a dialog box asking to install
885         Xcode. If no C compiler is available, guess based on uname -p and
886         uname -m.
888         2019-05-28  Ben Elliston  <bje@gnu.org>
890         * config.guess (*:Darwin:*:*): Simplify UNAME_PROCESSOR.
892 2020-01-17  Simon Marchi  <simon.marchi@efficios.com>
894         * Makefile.def: Add dependencies of all-gdbsupport on all-bfd.
895         * Makefile.in: Re-generate.
897 2020-01-14  Tom Tromey  <tom@tromey.com>
899         * src-release.sh (GDB_SUPPORT_DIRS): Add gdbsupport.
900         * MAINTAINERS: Add gdbsupport.
901         * configure: Rebuild.
902         * configure.ac (configdirs): Add gdbsupport.
903         * gdbsupport: New directory, move from gdb/gdbsupport.
904         * Makefile.def (host_modules, dependencies): Add gnulib.
905         * Makefile.in: Rebuild.
907 2020-01-09  Aaron Merey  <amerey@redhat.com>
909         * config/debuginfod.m4: New file. Add macro AC_DEBUGINFOD. Adds
910         new configure option --with-debuginfod.
911         * configure: Regenerate.
912         * configure.ac: Call AC_DEBUGINFOD.
914 2019-12-26  Christian Biesinger  <cbiesinger@google.com>
916         * .gitignore: Add perf.data and perf.data.old.
918 2019-10-17  Sergio Durigan Junior  <sergiodj@redhat.com>
920         * src-release.sh (GDB_SUPPORT_DIRS): Add libctf.
922 2019-10-17  Alan Modra  <amodra@gmail.com>
924         PR 29
925         * src-release.sh (getver): Replace "head -1" with "head -n 1".
927 2019-07-30  Nick Alcock  <nick.alcock@oracle.com>
929         * Makefile.def (host_modules): libctf is no longer no_install.
930         * Makefile.in: Regenerated.
932 2019-07-13  Nick Alcock  <nick.alcock@oracle.com>
934         * Makefile.def (dependencies): all-ld depends on all-libctf.
935         * Makefile.in: Regenerated.
937 2019-09-09  Phil Blundell  <pb@pbcl.net>
939         binutils 2.33 branch created
941 2019-08-19  Tom Tromey  <tom@tromey.com>
943         * configure: Rebuild.
944         * configure.ac: Add --with-static-standard-libraries.
946 2019-08-09  Nick Clifton  <nickc@redhat.com>
948         * libiberty: Sync with gcc.  Bring in:
949         2019-08-08  Martin Liska  <mliska@suse.cz>
951         PR bootstrap/91352
952         * lrealpath.c (is_valid_fd): New function.
954         2019-07-24  Martin Liska  <mliska@suse.cz>
956         PR lto/91228
957         * simple-object-elf.c (simple_object_elf_copy_lto_debug_sections):
958         Find first '\0' starting from gnu_lto + 1.
960         2019-07-12  Ren Kimura  <rkx1209dev@gmail.com>
962         * simple-object-elf.c (simple_object_elf_match): Check zero value shstrndx.
963         This fixes a Bug 90924.
965         2019-07-22  Martin Liska  <mliska@suse.cz>
967         * simple-object-elf.c (simple_object_elf_copy_lto_debug_sections):
968         Do not search for gnu_lto_v1, but search for first '\0'.
970         2019-07-18  Eduard-Mihai Burtescu  <eddyb@lyken.rs>
972         * cplus-dem.c: Include rust-demangle.h.
973         * rust-demangle.c: Include rust-demangle.h.
974         * rust-demangle.h: New file.
976         2019-05-31  Michael Forney  <mforney@mforney.org>
978         * cp-demangle.c: Don't define CP_DYNAMIC_ARRAYS if __STDC_NO_VLA__
979         is non-zero.
981         2019-04-30  Ben L  <bobsayshilol@live.co.uk>
983         * d-demangle.c (dlang_parse_assocarray): Correctly handle error result.
984         * testsuite/d-demangle-expected: Add testcase.
986         * d-demangle.c (dlang_parse_tuple): Correctly handle error result.
987         * testsuite/d-demangle-expected: Add testcase.
989         * d-demangle.c (dlang_parse_structlit): Correctly handle error result.
990         * testsuite/d-demangle-expected: Add testcase.
992         * d-demangle.c (dlang_parse_arrayliteral): Correctly handle error result.
993         * testsuite/d-demangle-expected: Add testcase.
995         * d-demangle.c (dlang_parse_integer): Fix stack underflow.
996         * testsuite/d-demangle-expected: Add testcase.
998         * cp-demangle (d_print_comp_inner): Guard against a NULL 'typed_name'.
999         * testsuite/demangle-expected: Add testcase.
1001         * cp-demangle.c (d_encoding): Guard against NULL return values from
1002         d_right (dc).
1003         * testsuite/demangle-expected: Add testcase.
1005         2019-04-29  Ben L  <bobsayshilol@live.co.uk>
1007         * cp-demangle.c (d_expression_1): Don't peek ahead unless the current
1008         char is valid.
1009         * testsuite/demangle-expected: Add testcase.
1011         2019-04-10  Nick Clifton  <nickc@redhat.com>
1013         PR 89394
1014         * cp-demangle.c (cplus_demangle_fill_name): Reject negative
1015         lengths.
1016         (d_count_templates_scopes): Replace num_templates and num_scopes
1017         parameters with a struct d_print_info pointer parameter.  Adjust
1018         body of the function accordingly.  Add recursion counter and check
1019         that the recursion limit is not reached.
1020         (d_print_init): Pass dpi parameter to d_count_templates_scopes.
1021         Reset recursion counter afterwards, unless the recursion limit was
1022         reached.
1024 2019-07-13  Joel Brobecker  <brobecker@adacore.com>
1026         * src-release (getver): If $tool/gdbsupport/create-version.sh
1027         exists, use that to determine the version number.
1029 2019-06-21  Andreas Schwab  <schwab@linux-m68k.org>
1031         * src-release.sh (GDB_SUPPORT_DIRS): Add gnulib.
1033 2019-06-14  Tom Tromey  <tom@tromey.com>
1035         * MAINTAINERS: Add gnulib.
1036         * gnulib: New directory, move from gdb/gnulib.
1037         * configure.ac (host_libs): Add gnulib.
1038         * configure: Rebuild.
1039         * Makefile.def (host_modules, dependencies): Add gnulib.
1040         * Makefile.in: Rebuild.
1042 2019-06-03  Nick Clifton  <nickc@redhat.com>
1044         Revert:
1045         2019-05-29  Nick Clifton  <nickc@redhat.com>
1047         * configure.ac (noconfigdirs): Add libctf if the target does not use
1048         the ELF file format.
1049         * configure: Regenerate.
1051 2019-05-29  Nick Clifton  <nickc@redhat.com>
1053         * src-release.sh (do_proto_toplev): Add libctf to list of
1054         directories that can be disabled.
1056 2019-05-29  Nick Clifton  <nickc@redhat.com>
1058         * configure.ac (noconfigdirs): Add libctf if the target does not use
1059         the ELF file format.
1060         * configure: Regenerate.
1062 2019-05-28  Nick Alcock  <nick.alcock@oracle.com>
1064         * Makefile.def (dependencies): configure-libctf depends on all-bfd
1065         and all its deps.
1066         * Makefile.in: Regenerated.
1068 2019-05-28  Nick Alcock  <nick.alcock@oracle.com>
1070         * MAINTAINERS: Add libctf.
1072 2019-05-28  Nick Alcock  <nick.alcock@oracle.com>
1074         * Makefile.def (host_modules): Add libctf.
1075         * Makefile.def (dependencies): Likewise.
1076         libctf depends on zlib, libiberty, and bfd.
1077         * Makefile.in: Regenerated.
1078         * configure.ac (host_libs): Add libctf.
1079         * configure: Regenerated.
1081 2019-05-23  Jose E. Marchesi  <jose.marchesi@oracle.com>
1083         * config.guess: Synchronize with config project master sources.
1084         * config.sub: Likewise.
1085         * readline/support/config.guess: Likewise.
1086         * readline/support/config.sub: Likewise.
1088 2019-04-10  Nick Clifton  <nickc@redhat.com>
1090         * libiberty: Sync with gcc.  Bring in:
1091         2019-04-10  Nick Clifton  <nickc@redhat.com>
1093         PR 89394
1094         * cp-demangle.c (cplus_demangle_fill_name): Reject negative
1095         lengths.
1096         (d_count_templates_scopes): Replace num_templates and num_scopes
1097         parameters with a struct d_print_info pointer parameter.  Adjust
1098         body of the function accordingly.  Add recursion counter and check
1099         that the recursion limit is not reached.
1100         (d_print_init): Pass dpi parameter to d_count_templates_scopes.
1101         Reset recursion counter afterwards, unless the recursion limit was
1102         reached.
1104 2018-06-24  Nick Clifton  <nickc@redhat.com>
1106         2.32 branch created.
1108 2019-01-14  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
1110         Merge from GCC:
1111         PR target/88535
1112         * config.guess: Import upstream version 2019-01-03.
1113         * config.sub: Import upstream version 2019-01-01.
1115 2019-01-10  Nick Clifton  <nickc@redhat.com>
1117         * libiberty: Sync with gcc.  Bring in:
1118         2019-01-09  Sandra Loosemore  <sandra@codesourcery.com>
1120         PR other/16615
1122         * cp-demangle.c: Mechanically replace "can not" with "cannot".
1123         * floatformat.c: Likewise.
1124         * strerror.c: Likewise.
1126         2018-12-22  Jason Merrill  <jason@redhat.com>
1128         Remove support for demangling GCC 2.x era mangling schemes.
1129         * cplus-dem.c: Remove cplus_mangle_opname, cplus_demangle_opname,
1130         internal_cplus_demangle, and all subroutines.
1131         (libiberty_demanglers): Remove entries for ancient GNU (pre-3.0),
1132         Lucid, ARM, HP, and EDG demangling styles.
1133         (cplus_demangle): Remove 'work' variable.  Don't call
1134         internal_cplus_demangle.
1136 2019-01-03  Дилян Палаузов  <dilyan.palauzov@aegee.org>
1138         * configure.ac: Don't configure readline if --with-system-readline is
1139         used.
1140         * configure: Re-generate.
1142 2018-10-31  Joseph Myers  <joseph@codesourcery.com>
1144         Merge from GCC:
1145         PR bootstrap/82856
1146         * multilib.am: New file.  From automake.
1148 2018-09-12  Sergio Durigan Junior  <sergiodj@redhat.com>
1150         * src-release.sh (GDB_SUPPORT_DIRS): Add "contrib".
1152 2018-07-16  Nick Clifton  <nickc@redhat.com>
1154         * src-release.sh (DEVO_SUPPORT): Add test-driver and ar-lib.
1156 2018-07-06  Sebastian Huber  <sebastian.huber@embedded-brains.de>
1158         * config.sub: Sync with upstream version 2018-07-03.
1160 2018-07-05  Sebastian Huber  <sebastian.huber@embedded-brains.de>
1162         * config.guess: Sync with upstream version 2018-06-26.
1163         * config.sub: Sync with upstream version 2018-07-02.
1165 2018-06-29  Alexandre Oliva <oliva@adacore.com>
1167         * configure.ac: Introduce support for @unless/@endunless.
1168         * Makefile.tpl (dep-kind): Rewrite with cond; return
1169         postbootstrap in some cases.
1170         (make-postboot-dep, postboot-targets): New.
1171         (dependencies): Do not output postbootstrap dependencies at
1172         first.  Output non-target ones changed for configure to depend
1173         on stage_last @if gcc-bootstrap, and the original deps @unless
1174         gcc-bootstrap.
1175         * configure.in, Makefile.in: Rebuilt.
1177 2018-06-24  Nick Clifton  <nickc@redhat.com>
1179         * configure: Regenerate.
1181 2018-06-19  Simon Marchi  <simon.marchi@ericsson.com>
1183         * libtool.m4: Use AC_LANG_SOURCE.
1184         * configure.ac: Remove AC_PREREQ, use AC_LANG_SOURCE.
1185         * README-maintainer-mode: Update version requirements.
1186         * ar-lib: New file.
1187         * test-driver: New file.
1188         * configure: Re-generate.
1190 2018-06-18  Eric Botcazou  <ebotcazou@adacore.com>
1192         * Makefile.def (fortran): Add check-target-libgomp-fortran.
1193         * Makefile.tpl (check-target-libgomp-fortran): New phony target.
1194         * Makefile.in: Regenerate.
1196         * configure: Regenerate.
1198 2018-06-18  Simon Marchi  <simon.marchi@ericsson.com>
1200         * configure.ac: Sync with GCC, remove MPX-related things.
1202 2018-05-01  Nick Clifton  <nickc@redhat.com>
1204         * config.guess: Synchronize with config project master sources.
1205         * config.sub: Likewise.
1207 2018-05-01  Francois H. Theron  <francois.theron@netronome.com>
1209         * configure.ac: Added "nfp" target.
1210         * configure: Regenerate.
1212 2018-02-13  Maciej W. Rozycki  <macro@mips.com>
1214         * configure.ac <wasm32-*-*> (noconfigdirs): Add `ld'.
1215         * configure: Regenerate.
1217 2018-01-30  Nick Clifton  <nickc@redhat.com>
1219         * src-release.sh (do_proto_toplev): Add patterns for more junk files
1220         to delete before creating the tarball.
1222 2018-01-29  Nick Clifton  <nickc@redhat.com>
1224         * src-release.sh (do_proto_toplev): Strip patch remnant files from
1225         the sources before creating the tarball.
1227 2018-01-13  Nick Clifton  <nickc@redhat.com>
1229         * src-release.sh: Update copyright notice.  Change reference to devo
1230         to be a reference to root.
1232 2018-01-10  Nick Clifton  <nickc@redhat.com>
1234         * config-ml.in: Sync with gcc sources.
1235         * config.guess: Likewise.
1236         * config.sub: Likewise.
1237         * configure.ac: Likewise.
1238         * configure: Regenerate.
1240 2017-12-14  Nick Clifton  <nickc@redhat.com>
1242         * COPYING.LIBGLOSS: Update address of FSF in copyright notice.
1244 2017-12-12  Stafford Horne  <shorne@gmail.com>
1246         * configure.ac: Remove logic adding gdb to noconfigsdirs for or1k.
1247         * configure: Regenerate.
1249 2017-09-15  Nick Clifton  <nickc@redhat.com>
1251         * src-release.sh (LZIPPROG): New define.  Provides the name of the
1252         lzip program.
1253         (do_lz): New function.  Compresses a tarball using the lzip
1254         program.
1255         (do_compress): Add support for lzip compression.
1256         (usage): Mention -l option.
1257         (build_release): Support -l option to invoke lzip compression.
1259 2017-09-15  Alan Modra  <amodra@gmail.com>
1261         * src-release.sh (do_proto_toplev): Revert last patch.  Enable or
1262         disable binutils, gas, gdb, gold, gprof, ld, libdecnumber, readline,
1263         and sim depending on $tool and $support_files.  Echo configure line.
1265 2017-09-14  Matt Rice <ratmice@gmail.com>
1267         * src-release.sh (do_proto_toplev): Enable gold during release process.
1269 2017-04-13  Andrew Jenner  <andrew@codesourcery.com>
1271         * config.sub: Sync with master version in config project.
1273 2017-04-03  Andrew Jenner  <andrew@codesourcery.com>
1275         * config.sub: Handle ia16 in $basic_machine.
1277         bfd/
1278         * config.bfd: Handle ia16.
1280         gas/
1281         * configure.tgt: Handle ia16.
1283         ld/
1284         * configure.tgt: Handle ia16.
1286 2017-03-22  Nick Clifton  <nickc@redhat.com>
1288         * config.sub: Sync with master version in config project.
1289         * config.guess: Likewise.
1291 2017-01-23  Nick Clifton  <nickc@redhat.com>
1293         * configure.ac: Update year in copyright notice.
1294         Sync from FSF GCC mainline, bringing in the following patches.
1295         * Makefile.def: Likewise.
1296         * Makefile.tpl: Likewise.
1297         * configure: Regenerate.
1298         * Makefile.in: Regenerate.
1300         2016-12-21  Jakub Jelinek  <jakub@redhat.com>
1302         * configure.ac: Don't bootstrap libmpx unless --with-build-config
1303         includes bootstrap-mpx.
1305         2016-12-01  Matthias Klose  <doko@ubuntu.com>
1307         * configure.ac: Don't use pkg-config to check for bdw-gc.
1309         2016-11-30  Matthias Klose  <doko@ubuntu.com>
1311         * Makefile.def: Remove reference to boehm-gc target module.
1312         * configure.ac: Include pkg.m4, check for --with-target-bdw-gc
1313         options and for the bdw-gc pkg-config module.
1315         2016-11-15  Matthias Klose  <doko@ubuntu.com>
1317         * config-ml.in: Remove references to GCJ.
1318         * configure.ac: Likewise.
1320         2016-09-30  Jakub Jelinek  <jakub@redhat.com>
1322         * configure.ac: Add target-libffi to target_libraries.
1323         Readd libgcj target disablings, modified to only target-libffi.
1324         Readd target addition of go to unsupported languages.
1326         2016-09-30  Andrew Haley  <aph@redhat.com>
1328         * Makefile.def: Remove libjava.
1329         * Makefile.tpl: Likewise.
1330         * configure.ac: Likewise.
1332         2016-09-26  Anton Kolesov  <Anton.Kolesov@synopsys.com>
1334         * configure.ac: Disable "sim" directory for arc*-*-*.
1336         2016-09-12  Maciej W. Rozycki  <macro@imgtec.com>
1338         * configure.ac: Check for the minimum in-tree MPFR version
1339         handled.
1341 2016-12-31  Alan Modra  <amodra@gmail.com>
1343         * config.sub: Import from upstream.
1345 2016-12-08  Alan Modra  <amodra@gmail.com>
1347         * configure: Regenerate.
1349 2016-12-02  Josh Conner  <joshconner@google.com>
1351         * configure.ac: Add fuchsia to targets that use ELF.
1352         * configure: Regenerated.
1354 2016-11-07  Doug Evans  <dje@google.com>
1356         * config.sub: Sync with upstream version 2016-11-03.
1357         git://git.sv.gnu.org/config.git
1358         * config.guess: Sync with upstream version 2016-10-02.
1360 2016-09-27  Simon Marchi  <simon.marchi@polymtl.ca>
1362         * .gitignore: Add archives and make stamps.
1364 2016-07-20  Yan-Ting Lin  <currygt52@gmail.com>
1366         * configure.ac (nds32*-*-*): Remove entry to enable gdb.
1367         * configure: Regenerated.
1369 2016-06-28  Walter Lee  <walt@tilera.com>
1371         * configure.ac (tilepro-*-*): Add gdb to noconfigdirs.
1372         * configure: Regenerate.
1374 2016-05-28  Alan Modra  <amodra@gmail.com>
1376         * Makefile.tpl (configure): Depend on m4 files included.
1377         * Makefile.in: Regenerate.
1379 2016-05-27  Nick Clifton  <nickc@redhat.com>
1381         * config.guess (Alpha OSF1): Fix typo introduced during the most
1382         recent synchronization update.
1384 2016-05-23  Nick Clifton  <nickc@redhat.com>
1386         * Import these patches from the gcc mainline:
1388         2016-05-16  Jakub Sejdak  <jakub.sejdak@phoesys.com>
1390         * config.guess: Import version 2016-04-02 (newest).
1391         * config.sub: Import version 2016-05-10 (newest).
1393 2016-04-19  Nick Clifton  <nickc@redhat.com>
1395         * Import this patch from the GCC mainline:
1397         2016-04-13  Segher Boessenkool  <segher@kernel.crashing.org>
1399         PR bootstrap/70173
1400         * Makefile.tpl (local-distclean): Delete the libcc1, gnattools,
1401         and gotools directories.  Delete the stage_final file.
1402         * Makefile.in: Regenerate.
1404 2016-03-17  Cary Coutant  <ccoutant@gmail.com>
1406         * configure.ac: Add mips and s390 to the gold target check.
1407         * configure: Regenerate.
1409 2016-02-10  Nick Clifton  <nickc@redhat.com>
1411         Import these patches from the GCC mainline:
1413         2016-01-12  Andris Pavenis  <andris.pavenis@iki.fi>
1415         * configure.ac: Enable LTO for DJGPP
1416         * configure: Regenerate
1418         2016-01-24  Mikhail Maltsev  <maltsevm@gmail.com>
1420         PR bootstrap/69329
1421         * Makefile.tpl (BASE_FLAGS_TO_PASS): Add LSAN_OPTIONS.
1422         * Makefile.in: Regenerate.
1424         2016-01-25  Aditya Kumar  <aditya.k7@samsung.com>
1425                     Sebastian Pop  <s.pop@samsung.com>
1427         * Makefile.in: Regenerate.
1428         * Makefile.tpl: Export ISLVER.
1429         * configure: Regenerate.
1430         * config/isl.m4: Detect isl-0.15.
1432         2016-01-29  Sebastian Pop  <s.pop@samsung.com>
1434         * config/isl.m4: Add comments about isl-0.16.
1435         * configure: Regenerate.
1437 2016-01-12  H.J. Lu  <hongjiu.lu@intel.com>
1439         Sync with GCC
1440         2015-11-26  David Edelsohn  <dje.gcc@gmail.com>
1442         * m4/libtool.m4 (export_symbols_cmds) [AIX]: Add global TLS "L"
1443         symbols.
1445         2016-01-12  Bernd Edlinger  <bernd.edlinger@hotmail.de>
1447         PR bootstrap/69134
1448         * Makefile.def (mpfr): Disable assembler.
1449         * Makefile.in: Regenerate.
1451 2016-01-11  Nick Clifton  <nickc@redhat.com>
1453         Import the following changes from the GCC mainline:
1455         2015-11-13  Tsvetkova Alexandra  <aleksandra.tsvetkova@intel.com>
1457         * configure.ac: Enable libmpx by default.
1458         * configure: Regenerated.
1460         2015-11-19  Martin Liska  <mliska@suse.cz>
1462         * .gitignore: Add .clang-format to ignored files.
1463         * Makefile.tpl: Add clang-format.
1464         * Makefile.in: Regenerate.
1466         2015-12-01  Andreas Tobler  <andreast@gcc.gnu.org>
1468         PR libffi/65726
1469         * Makefile.def (lang_env_dependencies): Make libffi depend
1470         on cxx.
1471         * Makefile.in: Regenerate.
1473         2015-12-02  Ian Lance Taylor  <iant@google.com>
1475         PR go/66147
1476         * Makefile.tpl (HOST_EXPORTS): Add XGCC_FLAGS_FOR_TARGET.
1477         * Makefile.in: Regenerate.
1479         2015-12-17  Nathan Sidwell  <nathan@acm.org>
1481         * config/isl.m4 (ISL_CHECK_VERSION): Add gmp libs.
1482         * configure: Regenerate.
1484         2015-12-17  Sebastian Pop  <s.pop@samsung.com>
1486         * Makefile.in: Replace ISL with isl.
1487         * Makefile.tpl: Same.
1488         * config/isl.m4: Same.
1489         * configure.ac: Same.
1490         * contrib/download_prerequisites: Same.
1491         * configure: Regenerate.
1493         2016-01-01  Ben Elliston  <bje@gnu.org>
1495         * config.guess: Import version 2016-01-01.
1496         * config.sub: Likewise.
1498 2015-11-20  Tristan Gingold  <gingold@adacore.com>
1500         * configure.ac: Add aarch64-*-darwin* and arm-*-darwin*.
1501         * configure: Regenerate.
1503 2015-10-21  Nick Clifton  <nickc@redhat.com>
1505         PR gas/19109
1506         * configure.ac: Note the 'none' is an acceptable argument to
1507         --enable-compressed-debug-sections.
1508         * configure: Regenerate.
1510 2015-10-20  H.J. Lu  <hongjiu.lu@intel.com>
1512         PR gas/19109
1513         * configure.ac: Add
1514         --enable-compressed-debug-sections={all,gas,gold,ld}.
1515         * configure: Regenerated.
1517 2015-09-30  Nick Clifton  <nickc@redhat.com>
1519         Import the following patches from the GCC mainline:
1521         2015-08-23  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
1523         PR libfortran/54572
1524         * Makefile.def: Make libgfortran depend on libbacktrace.
1525         * Makefile.in: Regenerate.
1527         2015-08-12  Tom de Vries  <tom@codesourcery.com>
1529         PR other/67092
1530         PR other/67098
1531         * configure.ac: Remove --with_host_libstdcxx support.
1532         * configure: Regenerate.
1534         2015-08-10  Thomas Schwinge  <thomas@codesourcery.com>
1535             Jakub Jelinek  <jakub@redhat.com>
1537         * configure.ac (noconfigdirs): Don't add "target-libgomp" for target
1538         nvptx*-*-*.
1539         * configure: Regenerate.
1541 2015-08-07  H.J. Lu  <hongjiu.lu@intel.com>
1543         Sync with GCC
1544         2015-07-28  Ben Elliston  <bje@gnu.org>
1546         * config.sub, config.guess: Import from upstream.
1548 2015-08-06  Yaakov Selkowitz  <yselkowi@redhat.com>
1550         * Makefile.def (libiconv): Define bootstrap=true.
1551         Mark pdf/html/info as missing.
1552         (configure-gcc): Depend on all-libiconv.
1553         (all-gcc): Ditto.
1554         (configure-libcpp): Ditto.
1555         (all-libcpp): Ditto.
1556         (configure-intl): Ditto.
1557         (all-intl): Ditto.
1558         * Makefile.in: Regenerate.
1560 2015-07-27  H.J. Lu  <hongjiu.lu@intel.com>
1562         Sync with GCC
1563         2015-07-24  Michael Darling  <darlingm@gmail.com>
1565         PR other/66259
1566         * config-ml.in: Reflects renaming of configure.in to configure.ac
1567         * configure: Likewise
1568         * configure.ac: Likewise
1570 2015-07-14  H.J. Lu  <hongjiu.lu@intel.com>
1572         * Makefile.in: Regenerated.
1574         Sync with GCC
1575         2015-05-21  Jason Merrill  <jason@redhat.com>
1577         * Makefile.tpl: Update comments.
1579         2015-04-22  Bernhard Reutner-Fischer  <aldot@gcc.gnu.org>
1581         * Makefile.tpl: Remove surplus whitespace throughout.
1583         2015-03-25  Martin Liska  <mliska@suse.cz>
1584                     Yury Gribov  <y.gribov@samsung.com>
1586         * Makefile.tpl: Fix ln source location for vimrc file.
1588 2015-07-14  H.J. Lu  <hongjiu.lu@intel.com>
1590         Sync with GCC
1591         2015-05-16  James Bowman  <james.bowman@ftdichip.com>
1593         * configure.ac: FT32 target added.
1594         * configure: Regenerate.
1596 2015-07-14  H.J. Lu  <hongjiu.lu@intel.com>
1598         Sync with GCC
1599         2015-06-02  Jason Merrill  <jason@redhat.com>
1601         PR bootstrap/66319
1602         * configure.ac: Use -std=gnu++98.
1604         2015-05-28  Mike Frysinger  <vapier@gentoo.org>
1606         * configure.ac (--vtable-verify): Use AS_HELP_STRING for help.
1607         * configure: Regenerate.
1609         2015-05-11  Paulo Matos  <paulo@matos-sorge.com>
1611         * configure.ac: Fix typo.
1612         * configure: Regenerate.
1614         2015-05-03  Matthias Klose  <doko@ubuntu.com>
1616         * configure.ac: Match $host configured with triplets.
1617         * configure: Regenerate.
1619         2015-04-17  Jakub Jelinek  <jakub@redhat.com>
1621         PR bootstrap/62077
1622         * configure.ac (--enable-stage1-checking): Default to
1623         release,misc,gimple,rtlflag,tree,types if --disable-checking
1624         or --enable-checking is not specified and DEV-PHASE is not
1625         experimental.
1626         * configure: Regenerated.
1628         2015-03-27  Uros Bizjak  <ubizjak@gmail.com>
1630         Install back PR target/47230 fix (Revert the revert).
1632 2015-06-30  H.J. Lu  <hongjiu.lu@intel.com>
1634         * configure.ac (ospace_frag): Enable for i?86*-*-elfiamcu
1635         target.
1636         * configure: Regenerate.
1638 2015-05-13  John David Anglin  <dave.anglin@bell.net>
1640         * configure.ac: Disable configuration of GDB for HPUX targets.
1641         * configure: Regenerate.
1643 2015-05-01  H.J. Lu  <hongjiu.lu@intel.com>
1645         PR ld/18355
1646         * Makefile.def: Add extra_configure_flags to host zlib.
1647         * configure.ac (extra_host_zlib_configure_flags): New.  Set
1648         to --enable-host-shared When bfd is to be built as shared
1649         library.  AC_SUBST.
1650         * Makefile.in: Regenerated.
1652 2015-04-15  Mike Frysinger  <vapier@gentoo.org>
1653             Hans-Peter Nilsson  <hp@axis.com>
1655         Adjust src-release.sh for sim using the gdb create-version.sh.
1656         * src-release.sh (tar_compress): If there's a fifth parameter,
1657         use that in the getver call instead of $tool.
1658         (sim_release): Pass gdb as fifth parameter to tar_compress.
1659         (SIM_SUPPORT_DIRS): Add gdb/common/create-version.sh.
1661 2015-04-14  Max Ostapenko  <m.ostapenko@partner.samsung.com>
1663         * Makefile.tpl (EXTRA_HOST_EXPORTS): New variables.
1664         (EXTRA_BOOTSTRAP_FLAGS): Likewise.
1665         (check-[+module+]): Add EXTRA_HOST_EXPORTS and EXTRA_BOOTSTRAP_FLAGS.
1666         * Makefile.in: Regenerate.
1668 2015-04-01  H.J. Lu  <hongjiu.lu@intel.com>
1670         * configure.ac: Add --with-system-zlib.
1671         * configure: Regenerated.
1673 2015-03-31  H.J. Lu  <hongjiu.lu@intel.com>
1675         * src-release.sh: Don't configure with  --with-target-subdir=.
1676         --disable-multilib.
1678 2015-03-31  H.J. Lu  <hongjiu.lu@intel.com>
1680         * src-release.sh (DEVO_SUPPORT): Replace src-release with
1681         src-release.sh.
1683 2015-03-30  Ed Schouten  <ed@nuxi.nl>
1685         * config.sub: Update from upstream, to 2015-03-04 version.
1686         * config.guess: Likewise.
1688 2015-03-30  H.J. Lu  <hongjiu.lu@intel.com>
1690         * Makefile.def (dependencies): Add all-zlib to all-bfd.
1691         * Makefile.in: Regenerated.
1693 2015-03-28  H.J. Lu  <hongjiu.lu@intel.com>
1695         * src-release.sh (do_proto_toplev): Configure with --target
1696         --with-target-subdir and --disable-multilib.
1697         (BINUTILS_SUPPORT_DIRS): Add zlib.
1698         (GAS_SUPPORT_DIRS): Likewise.
1699         (GDB_SUPPORT_DIRS): Likewise.
1700         (SIM_SUPPORT_DIRS): Likewise.
1702 2015-03-17  H.J. Lu  <hongjiu.lu@intel.com>
1704         * configure.ac (target_configdirs): Exclude target-zlib if
1705         target-libjava isn't built.
1706         * configure: Regenerated.
1708 2015-03-17  H.J. Lu  <hongjiu.lu@intel.com>
1710         Sync with GCC
1711         2014-06-13  Thomas Schwinge  <thomas@codesourcery.com>
1713         * config-ml.in: Robustify ac_configure_args parsing.
1715 2015-03-16  H.J. Lu  <hongjiu.lu@intel.com>
1717         * Makefile.def: Updated from GCC trunk.
1718         * Makefile.tpl: Likewise.
1719         * configure.ac: Likewise.
1720         * Makefile.in: Regenerated.
1721         * configure: Likewise.
1723 2015-01-28  James Bowman  <james.bowman@ftdichip.com>
1725         * configure.ac: Add FT32 support.
1726         * configure: Regenerate.
1728 2015-01-12  Anthony Green  <green@moxielogic.com>
1730         * configure.ac: Don't disable gprof for moxie.
1731         * configure: Rebuild.
1733 2015-01-03  Andrew Pinski  <apinski@cavium.com>
1735         * Makefile.def (flags_to_pass): Pass OBJCOPY_FOR_TARGET also.
1736         * Makefile.tpl (HOST_EXPORTS): Add OBJCOPY_FOR_TARGET.
1737         (BASE_TARGET_EXPORTS): Add OBJCOPY.
1738         (OBJCOPY_FOR_TARGET): New variable.
1739         (EXTRA_TARGET_FLAGS): Add OBJCOPY.
1740         * Makefile.in: Regenerate.
1741         * configure.ac: Check for already installed target objcopy.
1742         Also GCC_TARGET_TOOL on objcopy.
1743         * configure: Regenerate.
1745 2015-01-02  Hans-Peter Nilsson  <hp@bitrange.com>
1747         * config.sub: Update from upstream, to 2015-01-01 version.
1748         * config.guess: Ditto.
1750 2014-12-06  Eric Botcazou  <ebotcazou@adacore.com>
1752         * config.sub: Update from upstream config repo.
1754 2014-11-24  H.J. Lu  <hongjiu.lu@intel.com>
1756         * libtool.m4: Updated from GCC trunk.
1758 2014-11-16  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
1760         * config.guess: Update from upstream config repo.
1761         * config.sub: Ditto.
1763 2014-11-16  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
1765         * move-if-change: Update from upstream gnulib.
1767 2014-11-16  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
1769         * compile: Sync with upstream Automake.
1770         * depcomp: Ditto.
1771         * install-sh: Ditto.
1772         * missing: Ditto.
1773         * mkinstalldirs: Ditto.
1774         * ylwrap: Ditto.
1776 2014-10-15  Tristan Gingold  <gingold@adacore.com>
1778         * src-release.sh (do_proto_toplev): Configure with --target.
1780 2014-10-03  Jing Yu  <jingyu@google.com>
1782         * configure.ac: Add aarch64 to list of targets that support gold.
1783         * configure: Regenerate.
1785 2014-09-12  Andrew Bennett  <andrew.bennett@imgtec.com>
1787         * configure.ac: Add mips*-img-elf* target triple.
1788         * configure: Regenerate.
1790 2014-09-06  Kuan-Lin Chen  <kuanlinchentw@gmail.com>
1791         * configure: Disable gdb for nds32*-*-* until supported.
1792         * configure.ac: Disable gdb for nds32*-*-* until supported.
1794 2014-09-05  Joel Brobecker  <brobecker@adacore.com>
1796         * configure: Regenerate.
1798 2014-08-27  Will Newton  <will.newton@linaro.org>
1800         * src-release.sh: New file.
1801         * src-release: Remove file.
1803 2014-07-27  Joel Sherrill <joel.sherrill@oarcorp.com>
1805         GDB not supported for or1k*-*-rtems*
1806         * configure.ac (or1k*-*-rtems*): gdb not supported.  The ordering
1807         of the stanzas results in this not being caught by or1k*-*-* later.
1808         * configure. Regenerated.
1810 2014-07-25  Samuel Bronson  <naesten@gmail.com>
1812         * .gitattributes: New file for use with git-merge-changelog.
1814 2014-07-21  Joel Sherrill  <joel.sherrill@oarcorp.com>
1816         Disable gdb for or1k*-*-* until supported
1817         * configure.ac (or1k*-*-*): Disable gdb.
1818         * configure: Regenerated.
1820 2014-05-14  Sandra Loosemore  <sandra@codesourcery.com>
1822         * configure.ac (target_makefile_frag): Set for nios2-*-elf*.
1823         * configure: Regenerated.
1825 2014-03-26  Jakub Jelinek  <jakub@redhat.com>
1827         PR sanitizer/56781
1828         * Makefile.def: Set bootstrap=true; for host fixincludes.
1829         * configure.ac: Don't bootstrap host fixincludes unless
1830         --with-build-config=bootstrap-{a,ub}san.
1831         * Makefile.in: Regenerated.
1832         * configure: Regenerated.
1834 2014-03-21  Jakub Jelinek  <jakub@redhat.com>
1836         * configure.ac: Move BUILD_CONFIG set up earlier.  Add
1837         --enable-vtable-verify option parsing.  Don't add
1838         target-libsanitizer to bootstrap_target_libs unless
1839         --with-build-config=bootstrap-asan or
1840         --with-build-config=bootstrap-ubsan.  Don't add target-libvtv
1841         to bootstrap_target_libs unless --enable-vtable-verify.
1842         * configure: Regenerated.
1844 2014-03-07  Jakub Jelinek  <jakub@redhat.com>
1846         PR bootstrap/58572
1847         * Makefile.tpl (POSTSTAGE1_CXX_EXPORT): Use -isystem instead of
1848         -I for libstdc++-v3 includes if $(LEAN).
1849         * Makefile.in: Regenerated.
1851 2014-02-24  Walter Lee  <walt@tilera.com>
1853         * configure.ac (tilepro-*-*) Change to tilepro*-*-*.
1854         (tilegx-*-*): Change to tilegx*-*-*.
1855         * configure: Regenerate.
1857 2014-05-01  Richard Sandiford  <rdsandiford@googlemail.com>
1859         * config.sub, config.guess: Import from upstream.
1861 2014-04-04  Eric Botcazou  <ebotcazou@adacore.com>
1863         PR bootstrap/60620
1864         * Makefile.def (dependencies): Make gnattools depend on libstdc++-v3.
1865         * Makefile.in: Regenerate.
1867 2014-03-28  Yaakov Selkowitz  <yselkowitz@users.sourceforge.net>
1869         * Makefile.def (dependencies): Make all-ld depend on all-binutils
1870         for WINDRES_FOR_TARGET in default-manifest.o rule.
1871         * Makefile.in: Regenerate.
1873 2014-02-04  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
1875         PR target/59788
1876         * ltmain.sh (opt_duplicate_compiler_generated_deps): Enable on
1877         *solaris2*.
1879 2013-12-19  Keven Boell  <keven.boell@intel.com>
1881         * cp-namespace.c (cp_lookup_nested_symbol): Enable
1882         nested lookups for fortran modules.
1883         * dwarf2read.c (read_module): Add fortran module to
1884         the symbol table.
1885         (add_partial_symbol, add_partial_module): Add fortran
1886         module to the partial symbol table.
1887         (new_symbol_full): Create full symbol for fortran module.
1888         * f-exp.y (yylex): Add new module domain to be parsed.
1889         * symtab.h: New domain for fortran modules.
1891 2013-12-19  Keven Boell  <keven.boell@intel.com>
1893         * f-exp.y (yylex): Add domain array to enable lookup
1894         in multiple domains. Loop over lookup domains and try
1895         to find requested symbol. Add STRUCT_DOMAIN to lookup
1896         domains to be able to query for user defined types.
1898 2013-12-13  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
1900         * configure.ac: Add user-friendly check for native x86_64-linux
1901         multilibs.
1902         * configure: Regenerate.
1904 2013-11-23  Alan Modra  <amodra@gmail.com>
1906         * config.sub, config.guess: Import from upstream.
1908 2013-11-07  Thomas Schwinge  <thomas@codesourcery.com>
1910         * Makefile.in: Regenerate.
1912         * Makefile.tpl: Fix typo.
1913         * Makefile.in: Regenerate partially.
1915 2013-11-04  Balaji V. Iyer  <balaji.v.iyer@intel.com>
1917         * configure.ac: Added libcilkrts to noconfig list when C++ is not
1918         supported.
1919         * configure: Regenerated.
1921 2013-10-30  Jason Merrill  <jason@redhat.com>
1923         * Makefile.tpl (STAGE1_CONFIGURE_FLAGS): Pass
1924         --disable-build-format-warnings.
1926 2013-10-29  Balaji V. Iyer  <balaji.v.iyer@intel.com>
1928         * Makefile.def: Add libcilkrts to target_modules.  Make libcilkrts
1929         depend on libstdc++ and libgcc.
1930         * configure: Regenerate.
1931         * configure.ac: Added libcilkrts to target binaries.  Also, restrict
1932         libcilkrts for POSIX and i*86, and x86_64 architectures.
1933         * Makefile.in: Added libcilkrts related fields to support building it.
1935 2013-10-26  Jeff Law  <law@redhat.com>
1937         * Makefile.def (target_modules): Remove libmudflap
1938         (languages): Remove check-target-libmudflap).
1939         * Makefile.in: Rebuilt.
1940         * Makefile.tpl (check-target-libmudflap-c++): Remove.
1941         * configure.ac (target_libraries): Remove target-libmudflap.
1942         Remove checks which disabled libmudflap on some systems.
1943         * configure: Rebuilt.
1944         * libmudflap: Directory removed.
1946 2013-10-16  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
1948         * configure.ac: Update from GCC.
1949         * configure: Regenerate.
1951 2013-10-15  Hans-Peter Nilsson  <hp@axis.com>
1953         * src-release (do-proto-toplevel): Support subdir-path-prefixed
1954         files in SUPPORT_FILES.
1955         (SIM_SUPPORT_DIRS): New variable.
1956         (sim.tar.bz2): New rule.
1958 2013-10-08  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
1960         * configure.ac: Update from GCC.
1961         * configure: Regenerate.
1963 2013-10-01  Jeff Johnston  <jjohnstn@redhat.com>
1965         * COPYING.NEWLIB: Update with new copyright.
1967 2013-09-21  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
1969         * configure.ac: Update from GCC.
1970         * configure: Regenerate.
1972 2013-09-20  Alan Modra  <amodra@gmail.com>
1974         * libtool.m4 (_LT_ENABLE_LOCK <ld -m flags>): Remove non-canonical
1975         ppc host match.  Support little-endian powerpc linux hosts.
1977 2013-08-16  Joel Brobecker  <brobecker@adacore.com>
1979         * src-release (VER): When using $(TOOL)/common/create-version.sh,
1980         strip the "-cvs" suffix from the version number if present.
1982 2013-08-12  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
1984         * configure.ac: Sync with GCC repo.
1985         * Makefile.def: Ditto.
1986         * configure: Regenerate.
1987         * Makefile.in: Ditto.
1989 2013-07-22  Joel Brobecker  <brobecker@adacore.com>
1991         * src-release (VER): Use $(TOOL)/common/create-version.sh
1992         if it exists.
1994 2013-06-22  Richard Sandiford  <rdsandiford@googlemail.com>
1996         * configure.ac (mips*-*-bsd*, mips*-*-ultrix*, mips*-*-osf*)
1997         (mips*-*-ecoff*, mips*-*-pe*, mips*-*-irix* [v4 and earlier])
1998         (mips*-*-lnews*, mips*-*-riscos*): Add gas and ld to noconfigdirs.
1999         * configure: Regenerate.
2001 2013-06-01  George Thomas <george.thomas@atmel.com>
2003         * include/opcode/avr.h: Rename AVR_ISA_XCH to AVR_ISA_RMW. Remove
2004         from AVR_ISA_XMEGA and add new AVR_ISA_XMEGAU
2006 2013-05-06  Sandra Loosemore  <sandra@codesourcery.com>
2008         * COPYING.NEWLIB: Add Altera Corporation copyright.
2010 2013-04-29  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
2012         * config.guess: Update from config repo.
2013         * config.sub: Ditto.
2015 2013-04-22  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
2017         * Makefile.def: Sync with GCC.
2018         * Makefile.in: Regenerate.
2020 2013-04-22  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
2022         * configure.ac: Sync with GCC.
2023         * configure: Regenerate.
2025 2013-03-22  Mike Frysinger  <vapier@gentoo.org>
2027         * src-release (VER): Change bfd/configure.in sed to use the new
2028         `bfd/configure --version` output.
2030 2013-02-15  Yufeng Zhang  <yufeng.zhang@arm.com>
2032         * configure.ac: Sync with GCC repo.
2033         * configure: Ditto.
2035 2013-02-05  Ian Lance Taylor  <iant@google.com>
2037         PR go/55969
2038         * configure.ac: Disable libgo on some systems where it does not
2039         work.
2040         * configure: Rebuild.
2042 2013-02-05  Alan Modra  <amodra@gmail.com>
2044         * configure: Regenerate after syncing config/.
2046 2013-01-15  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
2048         * configure.ac: Sync with GCC repo.
2049         * configure: Ditto.
2050         * Makefile.def: Ditto.
2051         * Makefile.in: Ditto.
2053 2013-01-11  Joel Brobecker  <brobecker@adacore.com>
2055         Sync with GCC, merge:
2057         2013-01-09  Jason Merrill  <jason@redhat.com>
2059         * .gitignore: Import from gdb repository.
2061 2013-01-11  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
2063         * config.sub: Update from config repo.
2065 2013-01-11  Eric Botcazou  <ebotcazou@adacore.com>
2067         * Makefile.tpl (BOOT_ADAFLAGS): Remove -gnata.
2068         * Makefile.in: Regenerate.
2070 2013-01-09  H.J. Lu  <hongjiu.lu@intel.com>
2072         * Makefile.def (configure-gcc): Depend on all-gmp.
2073         (all-gcc): Remove dependency on all-gmp.
2074         * Makefile.in: Regenerated.
2076 2013-01-08  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
2078         * config.guess: Update from config repo.
2079         * config.sub: Ditto.
2081 2013-01-07  Jeff Johnston  <jjohnstn@redhat.com>
2083         * COPYING.LIBGLOSS: Remove license for mips/lsi33k-stub.h which no longer
2084         exists and replace the new bfin license in its location.
2086 2013-01-07  H.J. Lu  <hongjiu.lu@intel.com>
2088         PR gas/14899
2089         * Makefile.def (dependencies): Make all-binutils, all-gprof,
2090         all-ld and all-gold depend on all-gas.
2091         * Makefile.in: Regenerated.
2093 2012-12-29  Ben Elliston  <bje@gnu.org>
2095         * config.guess: Update to 2012-12-29 version.
2096         * config.sub: Likewise.
2098 2012-12-20  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
2100         * Makefile.def (install-target-libgo): Depend on
2101         install-target-libatomic. Merged from GCC repo.
2102         * Makefile.in: Regenerate.
2104 2012-12-17  Jeff Johnston  <jjohnstn@redhat.com>
2106         * COPYING.LIBGLOSS: Add license for bfin libgloss.
2108 2012-12-16  Thomas Schwinge  <thomas@codesourcery.com>
2110         * configure.ac (ENABLE_GOLD): Consider *-*-gnu* targets ELF.
2111         * configure: Regenerate.
2113 2012-12-11  H.J. Lu  <hongjiu.lu@intel.com>
2115         * Makefile.def (target_modules): Add bootstrap=true and
2116         raw_cxx=true to libsanitizer.
2117         * configure.ac (bootstrap_target_libs): Add libsanitizer.
2118         * Makefile.in: Regenerated.
2119         * configure: Likewise.
2121 2012-12-08  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
2123         * config.sub: Merge from config repo.
2125 2012-11-30  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
2127         * configure.ac: Merge from GCC.
2128         * Makefile.tpl: Ditto.
2129         * Makefile.in: Ditto.
2130         * configure: Ditto.
2132 2012-11-28  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
2134         * configure.ac (noconfigdirs): Merge from GCC.
2135         * configure: Regenerate.
2137 2012-11-19  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
2139         * config.sub (arm): Merge from upstream: Handle armv[6-8] targets.
2141 2012-11-14  Roland McGrath  <mcgrathr@google.com>
2143         * configure.ac (ENABLE_GOLD): Consider *-*-nacl* targets ELF.
2144         * configure: Regenerate.
2146 2012-11-13  Richard Henderson  <rth@redhat.com>
2148         * configure.ac: Move libsanitizer logic to subdirectory.
2149         * configure: Regenerate.
2151 2012-11-13  Dodji Seketeli  <dodji@redhat.com>
2153         * configure.ac: Enable libsanitizer just on x86 linux for now.
2154         * configure: Re-generate.
2156 2012-11-13  David Edelsohn  <dje.gcc@gmail.com>
2158         * configure.ac: Merge libquadmath sections.
2159         * configure: Regenerate.
2161 2012-11-12  Wei Mi <wmi@google.com>
2163         * configure.ac: Add libsanitizer to target_libraries.
2164         * Makefile.def: Ditto.
2165         * configure: Regenerate.
2166         * Makefile.in: Regenerate.
2168 2012-11-03  H.J. Lu  <hongjiu.lu@intel.com>
2170         * configure: Regenerated.
2172 2012-11-03  Robert Mason  <rbmj@verizon.net>
2174         * configure.ac: add --disable-libstdcxx configure option
2175         and handle defaulted state only for VxWorks, ARM-wince-pe and AVR.
2177 2012-10-24  Corinna Vinschen  <corinna@vinschen.de>
2179         * configure.ac (FLAGS_FOR_TARGET,target=cygwin): Fix for building
2180         against Mingw64 w32api.
2181         * configure: Regenerate.
2183 2012-10-23  Eric Botcazou  <ebotcazou@adacore.com>
2185         PR bootstrap/54820
2186         * configure.ac (have_static_libs): Force 'no' for GCC version < 4.5.
2187         * configure: Regenerate.
2189 2012-10-22  Eric Botcazou  <ebotcazou@adacore.com>
2191         PR bootstrap/54820
2192         * Makefile.tpl (STAGE1_FLAGS_TO_PASS): New variable.
2193         (all-[+prefix+][+module+]): Pass stage1_args to sub-makes.
2194         (all-stage[+id+]-[+prefix+][+module+]): Likewise, if prev is false.
2195         (clean-stage[+id+]-[+prefix+][+module+]): Likewise, if prev is false.
2196         (host_modules): Set stage1_args to STAGE1_FLAGS_TO_PASS.
2197         * Makefile.in: Regenerate.
2198         * configure.ac (have_static_libs): New variable and associated check.
2199         (stage1-ldflags): Move to after stage1_libs and set to -static-libstdc++
2200         -static-libgcc if stage1_libs is empty and have_static_libs is yes.
2201         * configure: Regenerate.
2203 2012-10-10  David Holsgrove  <david.holsgrove@xilinx.com>
2205         * config.guess, config.sub: Include updated version from
2206         config-patches.  Adds microblaze little endian support.
2208 2012-09-28  Ian Lance Taylor  <iant@google.com>
2210         * Makefile.def: Make all-target-libgo depend on
2211         all-target-libbacktrace.
2212         * Makefile.in: Rebuild.
2214 2012-09-26  Ian Lance Taylor  <iant@google.com>
2216         * Makefile.def: Make all-gcc depend on all-libbacktrace.
2217         * Makefile.in: Rebuild.
2219 2012-09-06  Diego Novillo  <dnovillo@google.com>
2221         * configure.ac: Bump minimum GMP version to 4.2.3.
2222         * configure: Re-generate.
2224 2012-09-05  Georg-Johann Lay  <avr@gjlay.de>
2226         PR target/54461
2227         * configure.ac (noconfigdirs,target=avr-*-*): Add target-newlib,
2228         target-libgloss if not configured --with-avrlibc=no.
2229         * configure: Regenerate.
2231 2012-09-04  Jason Merrill  <jason@redhat.com>
2233         * configure.ac: Fix --enable-languages=all.
2235 2012-09-03  Richard Guenther  <rguenther@suse.de>
2237         PR bootstrap/54138
2238         * configure.ac: Re-organize ISL / CLOOG checks to allow
2239         disabling with either --without-isl or --without-cloog.
2240         * configure: Regenerated.
2242 2012-09-03  Georg-Johann Lay  <avr@gjlay.de>
2244         * configure.ac (noconfigdirs,target=avr): Add target-libquadmath.
2245         * configure: Regenerate.
2247 2012-09-21  Steve Ellcey  <sellcey@mips.com>
2249         * configure.ac: Add mips*-mti-elf* target.
2250         * configure: Regenerate.
2252 2012-09-19  Ian Lance Taylor  <iant@google.com>
2254         * configure.ac (host_libs): Add libbacktrace.
2255         (target_libraries): Add libbacktrace.
2256         * Makefile.def (host_modules): Add libbacktrace.
2257         (target_modules): Likewise.
2258         * configure, Makefile.in: Rebuild.
2260 2012-09-15  Jiong Wang  <jiwang@tilera.com>
2262         * configure.ac (ENABLE_GOLD): support tilegx*
2263         * configure: rebuild
2265 2012-09-14  David Edelsohn  <dje.gcc@gmail.com>
2267         PR target/38607
2268         Merge upstream change.
2269         * libtool.m4 (_LT_COMPILER_PIC): Add -fPIC to GCC and GXX for AIX.
2271         * configure.ac: Add target-libquadmath to noconfigdirs for AIX.
2272         Add libgomp*.o to compare_exclusions for AIX.
2273         * configure: Regenerate.
2275 2012-08-26  H.J. Lu  <hongjiu.lu@intel.com>
2277         PR binutils/4970
2278         * Makefile.def (host_modules): Rmove lib_path=.libs from bfd
2279         and opcodes.
2280         * Makefile.in: Regenerated.
2282 2012-08-14   Diego Novillo  <dnovillo@google.com>
2284         Merge from cxx-conversion branch.
2286         * Makefile.tpl (STAGE[+id+]_CXXFLAGS): Remove
2287         POSTSTAGE1_CONFIGURE_FLAGS.
2288         * Makefile.in: Regenerate.
2289         * configure.ac (ENABLE_BUILD_WITH_CXX): Remove.  Update all users.
2290         Force C++ when bootstrapping.
2291         * configure: Regenerate.
2293 2012-07-06  Richard Guenther  <rguenther@suse.de>
2295         * Makefile.def (cloog): Pass $(HOST_GMPINC) and $(HOST_ISLINC)
2296         as CPPFLAGS, pass path to built gmp as LDFLAGS, always use
2297         --with-gmp=system.
2298         * Makefile.in: Regenerated.
2299         * configure: Likewise.
2301 2012-07-06  Richard Guenther  <rguenther@suse.de>
2303         * configure.ac (extra_isl_gmp_configure_flags): Initialize and subst.
2304         * Makefile.def (isl): Use extra_isl_gmp_configure_flags and
2305         supply V=1 as extra_make_flags.
2306         * configure: Regenerated.
2307         * Makefile.in: Likewise.
2309 2012-07-03  Richard Guenther  <rguenther@suse.de>
2311         * Makfile.def (isl): Remove not necessary extra_exports and
2312         extra_make_flags.
2313         (cloog): Use $$CPPFLAGS instead of ${CPPFLAGS}.
2314         * Makefile.in: Regenerated.
2316 2012-07-03  Richard Guenther  <rguenther@suse.de>
2318         * Makefile.def (cloog): Add V=1 to extra_make_flags.
2319         * configure.ac: If either the ISL or the CLooG check failed
2320         do not try to build in-tree versions.
2321         * Makefile.in: Regenerated.
2322         * configure: Regenerated.
2324 2012-07-02  Richard Guenther  <rguenther@suse.de>
2325         Michael Matz  <matz@suse.de>
2326         Tobias Grosser <tobias@grosser.es>
2327         Sebastian Pop <sebpop@gmail.com>
2329         * Makefile.def: Add ISL host module, remove PPL host module.
2330         Adjust ClooG host module to use the proper ISL.
2331         * Makefile.tpl: Pass ISL include flags instead of PPL ones.
2332         * configure.ac: Include config/isl.m4.  Add ISL host library,
2333         remove PPL.  Remove PPL configury, add ISL configury, adjust
2334         ClooG configury.
2335         * Makefile.in: Regenerated.
2336         * configure: Likewise.
2338 2012-07-02  Richard Guenther  <rguenther@suse.de>
2340         Merge from graphite branch
2341         2011-07-21  Tobias Grosser  <tobias@grosser.es>
2343         * configure: Regenerated.
2344         * config/cloog.m4: Remove support for CLooG-ppl and CLooG-parma,
2345         both cloog.org and legacy versions. The only supported version will
2346         be CLooG with the isl backend.
2348         2011-07-21  Tobias Grosser  <tobias@grosser.es>
2350         * configure: Regenerated.
2351         * configure.ac: Require cloog isl 0.17.0
2353         2011-07-21  Tobias Grosser  <tobias@grosser.es>
2355         * configure: Regenerated.
2356         * config/cloog.m4: Do not define CLOOG_ORG
2358 2012-06-29  Steven Bosscher  <steven@gcc.gnu.org>
2360         * configure.ac: Skip C if explicitly selected.
2361         * configure: Regenerate.
2363 2012-06-28  Christophe Lyon <christophe.lyon@st.com>
2365         * configure.ac (CFLAGS_FOR_TARGET, CXXFLAGS_FOR_TARGET): Make sure
2366         they contain -O2.
2367         * configure: Regenerate.
2369 2012-06-20  Jason Merrill  <jason@redhat.com>
2371         * Makefile.tpl (check-target-libgomp-c++): New.
2372         (check-target-libitm-c++): New.
2373         * Makefile.def (c++): Add them.
2374         * Makefile.in: Regenerate.
2376 2012-05-16  Olivier Hainque  <hainque@adacore.com>
2378         * Makefile.tpl (gcc-no-fixedincludes): Rename into ...
2379         (gcc-install-no-fixedincludes): Now forwarder to local target in gcc/
2380         (install-no-fixedincludes): Adjust accordingly.
2381         * Makefile.in: Regenerate.
2383 2012-05-09  Nick Clifton  <nickc@redhat.com>
2384             Paul Smith  <psmith@gnu.org>
2386         PR bootstrap/50461
2387         * configure.ac (mpfr-dir): When using in-tree MPFR sources
2388         allow for the fact that from release v3.1.0 of MPFR the source
2389         files were moved into a src sub-directory.
2390         * configure: Regenerate.
2392 2012-05-07  Janne Blomqvist  <jb@gcc.gnu.org>
2394         * configure.ac: Bump minimum MPFR version to 2.4.0.
2395         * configure: Regenerated.
2397 2012-05-01  Richard Henderson  <rth@redhat.com>
2399         * Makefile.def (libatomic): New target_module.
2400         * configure.ac (target_libraries): Add libatomic.
2401         (noconfigdirs): Check if libatomic is supported.
2402         * Makefile.in, configure: Rebuild.
2404 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
2406         Merge upstream change
2407         * libtool.m4 (_LT_ENABLE_LOCK): Support x32.
2409 2011-11-21  Andreas Tobler  <andreast@fgznet.ch>
2411         * libtool.m4: Additional FreeBSD 10 fixes.
2413 2012-06-28  Christophe Lyon <christophe.lyon@st.com>
2415         * configure.ac (CFLAGS_FOR_TARGET, CXXFLAGS_FOR_TARGET): Make sure
2416         they contain -O2.
2417         * configure: Regenerate.
2419 2012-05-14  Catherine Moore  <clm@codesourcery.com>
2421         * NEWS:  Mention PowerPC VLE port.
2423 2012-05-11  Mike Frysinger  <vapier@gentoo.org>
2425         * MAINTAINERS (config/): Move to intl/ section.
2426         (compile; depcomp; install-sh; missing; ylwrap): Likewise.
2428 2012-05-09  Nick Clifton  <nickc@redhat.com>
2429             Paul Smith  <psmith@gnu.org>
2431         PR bootstrap/50461
2432         * configure.ac (mpfr-dir): When using in-tree MPFR sources
2433         allow for the fact that from release v3.1.0 of MPFR the source
2434         files were moved into a src sub-directory.
2435         * configure: Regenerate.
2437 2012-05-02  Roland McGrath  <mcgrathr@google.com>
2439         * configure.ac (ENABLE_GOLD): Consider *-*-nacl* targets ELF.
2440         * configure: Regenerate.
2442 2012-04-25  Joel Brobecker  <brobecker@adacore.com>
2444         * config.sub: Update to 2012-04-18 version from official repo.
2446 2012-03-19  Tristan Gingold  <gingold@adacore.com>
2448         * configure.ac (ia64*-*-*vms*): Add support for ld.
2449         * configure: Regenerate.
2451 2012-03-14  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
2453         * configure.ac (enable_libgomp): Remove *-*-irix6*.
2454         (unsupported_languages): Remove mips-sgi-irix6.*.
2455         (noconfigdirs): Don't add ${libgcj} for mips*-*-irix6*.
2456         (with_stabs): Remove.
2457         * configure: Regenerate.
2459 2012-03-12  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
2461         * configure.ac (enable_libgomp): Remove *-*-osf*.
2462         (with_stabs): Remove alpha*-*-osf*.
2463         * configure: Regenerate.
2465 2012-03-09  Jeff Johnston  <jjohnstn@redhat.com>
2467         * COPYING.NEWLIB: Modify DJ Delorie license to include
2468         modification rights in clause as permitted by DJ Delorie.
2469         * COPYING.LIBGLOSS: Ditto.
2471 2012-03-09  Jeff Johnston  <jjohnstn@redhat.com>
2473         * COPYING.NEWLIB: Remove two unused licenses.
2475 2012-03-05  Tristan Gingold  <gingold@adacore.com>
2477         * configure.ac: Enable gdb and readline for ia64*-*-*vms*.
2478         * configure: Regenerate.
2480 2012-02-21  Joern Rennecke  <joern.rennecke@embecosm.com>
2482         * COPYING.NEWLIB: Add Adapteva notice.
2483         * COPYING.LIBGLOSS: Add Adapteva notice.
2485 2011-12-18  Eric Botcazou  <ebotcazou@adacore.com>
2487         * configure: Regenerate.
2489 2011-12-15  Jeff Johnston  <jjohnstn@redhat.com>
2491         * COPYING.LIBGLOSS: Add GPL with exception license.
2493 2011-11-09  Roland McGrath  <mcgrathr@google.com>
2495         * configure.ac: Add tool checks for READELF and READELF_FOR_TARGET.
2496         * configure: Rebuild.
2497         * Makefile.def (flags_to_pass): Add READELF_FOR_TARGET.
2498         * Makefile.tpl (READELF, READELF_FOR_TARGET): New variables.
2499         (HOST_EXPORTS): Add READELF, READELF_FOR_TARGET.
2500         (BASE_FLAGS_TO_PASS): Add READELF_FOR_TARGET.
2501         (BASE_TARGET_EXPORTS, EXTRA_HOST_FLAGS, EXTRA_TARGET_FLAGS):
2502         Add READELF.
2503         * Makefile.in: Rebuild.
2505 2011-11-08  Richard Henderson  <rth@redhat.com>
2507         * configure.ac: Test for libitm directory present first.
2509         * configure.ac: Adjust srcdir for running libitm/configure.tgt.
2511         * configure.ac: Test libitm/configure.tgt to disable libitm.
2512         * configure: Rebuild.
2514 2011-11-02  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
2516         * Makefile.tpl (EXTRA_GCC_FLAGS): Remove LIBGCC2_CFLAGS,
2517         LIBGCC2_DEBUG_CFLAGS, LIBGCC2_INCLUDES.
2518         * Makefile.in: Regenerate.
2520 2011-11-01  DJ Delorie  <dj@redhat.com>
2522         * configure.ac (rl78-*-*) New case.
2523         * configure: Regenerate.
2525 2011-11-01  DJ Delorie  <dj@redhat.com>
2527         * config.sub: Update to version 2011-10-29 (added rl78)
2529 2011-10-27  Nick Clifton  <nickc@redhat.com>
2531         * config.sub: Import these changes from the config project:
2533         2011-10-08  Joern Rennecke  <joern.rennecke@embecosm.com>
2534             Ben Elliston  <bje@gnu.org>
2536         * config.sub (epiphany): New.
2538         2011-09-09  Linas Vepstas  <linasvepstas@gmail.com>
2539             Ben Elliston  <bje@gnu.org>
2541         * config.sub (hexagon, hexagon-*): New.
2543         2011-08-23  Roland McGrath  <mcgrathr@google.com>
2545         * config.sub: Rename 32eb to be32, 32el to le32, 64el to le64, and
2546         64eb to be64.
2548         2011-08-16  Roland McGrath  <mcgrathr@google.com>
2550         * config.sub (32eb, 32el, 64eb, 64el): New (pseudo-)CPUs.
2551         (nacl): Grok as alias for 32el-unknown-nacl.
2553 2011-08-19  Joel Brobecker  <brobecker@adacore.com>
2555         * src-release (GDB_SUPPORT_DIRS): Add 'cpu'.
2557 2011-08-14  Yao Qi  <yao@codesourcery.com>
2559         Merge from gcc:
2561         2011-08-14  Yao Qi  <yao@codesourcery.com>
2562         * configure.ac (tic6x-*-*): Remove gdb from noconfigdirs.
2563         * configure: Regenerate.
2565 2011-07-26  Ian Lance Taylor  <iant@google.com>
2567         Merge from gcc:
2569         2011-07-26  Ian Lance Taylor  <iant@google.com>
2570         * configure.ac: Set have_compiler based on whether gcc directory
2571         exists, rather than on whether gcc is in configdirs.
2572         * configure: Rebuild.
2574         2011-07-20  David Edelsohn  <dje.gcc@gmail.com>
2575         * Makefile.tpl (POSTSTAGE1_CONFIGURE_FLAGS): Add libsupc++ to
2576         link directories.
2577         * Makefile.in: Rebuild.
2579         2011-07-20  Ian Lance Taylor  <iant@google.com>
2580         PR bootstrap/49787
2581         * configure.ac: Move --enable-bootstrap handling earlier in file.
2582         If --enable-bootstrap and either --enable-build-with-cxx or
2583         --enable-build-poststage1-with-cxx, enable C++ automatically.
2584         * configure: Rebuild.
2586         2011-07-19  Ian Lance Taylor  <iant@google.com>
2587         * configure.ac: Add --enable-build-poststage1-with-cxx.  If set,
2588         make C++ a boot_language.  Set and substitute
2589         POSTSTAGE1_CONFIGURE_FLAGS.
2590         * Makefile.tpl (POSTSTAGE1_CONFIGURE_FLAGS): New variable.
2591         (STAGE[+id+]_CONFIGURE_FLAGS): Add $(POSTSTAGE1_CONFIGURE_FLAGS).
2592         * configure, Makefile.in: Rebuild.
2594         2011-07-16  Jason Merrill  <jason@redhat.com>
2595         * Makefile.def (language=c++): Add check-c++0x and
2596         check-target-libmudflap-c++.
2597         * Makefile.tpl (check-target-libmudflap-c++): New.
2598         * Makefile.in: Regenerate.
2600         2011-07-16  Matthias Klose  <doko@ubuntu.com>
2601         * Makefile.tpl (EXTRA_CONFIGARGS_LIBJAVA): Define.
2602         * Makefile.def (target_modules/libjava): Pass
2603         $(EXTRA_CONFIGARGS_LIBJAVA).
2604         * configure.ac: Pass --disable-static in EXTRA_CONFIGARGS_LIBJAVA,
2605         if not configured with --enable-static-libjava.
2606         * Makefile.in: Regenerate.
2607         * configure: Likewise.
2609         2011-06-22  Hans-Peter Nilsson  <hp@axis.com>
2610         PR regression/47836
2611         PR bootstrap/23656
2612         PR other/47733
2613         PR bootstrap/49247
2614         PR c/48825
2615         * configure.ac (target_libraries): Remove target-libiberty.
2616         Remove case-statement setting skipdirs=target-libiberty for
2617         multiple targets.  Remove checking target_configdirs and
2618         removing target-libiberty but keeping target-libgcc if
2619         otherwise empty.
2620         * Makefile.def (target_modules): Don't add libiberty.
2621         (dependencies): Remove all traces of target-libiberty.
2622         * configure, Makefile.in: Regenerate.
2624 2011-07-22  Jason Merrill  <jason@redhat.com>
2626         * Makefile.def (language=c++): Add check-c++0x and
2627         check-target-libmudflap-c++.
2628         * Makefile.tpl (check-target-libmudflap-c++): New.
2629         * Makefile.in: Regenerate.
2631 2011-07-18  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
2633         * configure: Regenerate.
2635 2011-07-07  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
2637         PR target/39150
2638         * configure.ac (i[3456789]86-*-solaris2*): Also accept
2639         x86_64-*-solaris2.1[0-9]*.
2640         * configure: Regenerate.
2642 2011-06-13  Walter Lee <walt@tilera.com>
2644         * configure.ac (tilepro-*-*) New case.
2645         (tilegx-*-*): Likewise.
2646         * configure: Regenerate.
2648 2011-06-06  Nick Clifton  <nickc@redhat.com>
2650         * config.sub: Sync from upstream.
2652 2011-05-08  Doug Kwan  <dougkwan@google.com>
2654         Merge from gcc:
2656         2011-05-08  Doug Kwan  <dougkwan@google.com>
2658                 * configure.ac: Propagate LDFLAGS_FOR_TARGET.
2659                 * configure: Regenerated.
2660                 * Makefile.tpl (LDFLAGS_FOR_TARGET): Use LDFLAGS_FOR_TARGET
2661                 value from configure.
2662                 * Makefile.in: Regenerated.
2664 2011-05-05  Joseph Myers  <joseph@codesourcery.com>
2666         * configure.ac (alpha*-dec-osf*, i[[3456789]]86-*-rdos*,
2667         sh*-*-pe|mips*-*-pe|arm-wince-pe, sparc-*-sunos4*, *-*-aix*,
2668         *-*-beos*, *-*-chorusos, *-*-dragonfly*, *-*-freebsd*, *-*-linux*
2669         | *-*-gnu* | *-*-k*bsd*-gnu | *-*-kopensolaris*-gnu, *-*-lynxos*,
2670         *-*-mingw*, *-*-netbsd*, *-*-netware*, *-*-tpf*, *-*-uclinux*,
2671         *-*-vxworks*): Disable newlib and libgloss in separate case
2672         statement.
2673         (i[[3456789]]86-*-linux*): Move logic allowing newlib to be built
2674         to separate case statement.
2675         (*-*-chorusos, *-*-dragonfly*, *-*-freebsd*, *-*-netbsd*,
2676         *-*-netware*, *-*-tpf*, *-*-uclinux*, *-*-vxworks*,
2677         alpha*-dec-osf*, alpha*-*-linux*, am33_2.0-*-linux*, sh-*-linux*,
2678         sh*-*-pe|mips*-*-pe|*arm-wince-pe, arm-*-coff, arm-*-elf* |
2679         arm*-*-eabi*, arm*-*-linux-gnueabi, arm*-*-symbianelf*, avr-*-*,
2680         bfin-*-*, cris-*-* | crisv32-*-*, frv-*-*, i[[3456789]]86-*-coff |
2681         i[[3456789]]86-*-elf, i[[3456789]]86-w64-mingw*,
2682         i[[3456789]]86-*-mingw*, x86_64-*-mingw*,
2683         i[[3456789]]86-*-interix*, i[[3456789]]86-*-beos*,
2684         i[[3456789]]86-*-rdos*, m32r-*-*,
2685         m68hc11-*-*|m6811-*-*|m68hc12-*-*|m6812-*-*, m68k-*-elf*, m68*-*-*
2686         | fido-*-*, powerpc-*-aix*, powerpc-*-beos*, powerpc-*-eabi,
2687         powerpc-*-eabi* | powerpcle-*-eabi* | powerpc-*-rtems*,
2688         rs6000-*-lynxos*, rs6000-*-aix*, mips*-*-linux*, sparclet-*-aout*
2689         | sparc86x-*-*, sparc-*-elf*, sparc64-*-elf*, sparclite-*-*,
2690         sparc-*-sunos4*, sparc-*-solaris* | sparc64-*-solaris* |
2691         sparcv9-*-solaris*, *-*-linux* | *-*-gnu* | *-*-k*bsd*-gnu |
2692         *-*-kopensolaris*-gnu, *-*-lynxos*, *-*-*): Don't disable newlib
2693         and libgloss in main case over targets.  Remove most empty cases
2694         in main case over targets.
2695         * configure: Regenerate.
2697 2011-05-04  Joseph Myers  <joseph@codesourcery.com>
2699         * configure.ac: Remove code setting special library locations for
2700         hppa*64*-*-hpux11*.  Remove code setting compiler for
2701         sparc-sun-solaris2*.
2702         * configure: Regenerate.
2704 2011-05-04  Joseph Myers  <joseph@codesourcery.com>
2706         * configure.ac: Separate libgloss_dir settings from general case
2707         over targets.
2708         * configure: Regenerate.
2710 2011-04-28  Joseph Myers  <joseph@codesourcery.com>
2712         * configure.ac (*-*-dragonfly*, *-*-freebsd*, *-*-netbsd*,
2713         alpha*-dec-osf*, alpha*-*-linux*, alpha*-*-*, sh-*-linux*,
2714         arm-*-elf* | arm*-*-eabi*, arm*-*-linux-gnueabi, frv-*-*): Remove
2715         cases in libgcj-disabling case statement.
2716         (hppa*64*-*-linux*): Set unsupported_languages instead of
2717         disabling target-zlib.
2718         (hppa*64*-*-*): Restrict case in libgcj-disabling case statement
2719         to hppa*64*-*-hpux*.
2720         (hppa*-*-*): Restrict case in libgcj-disabling case statement to
2721         hppa*-*-hpux*.
2722         (ia64*-*-elf*, ia64*-**-hpux*, i[[3456789]]86-*-elf,
2723         i[[3456789]]86-*-linux*, *-*-cygwin*, i[[3456789]]86-*-interix*,
2724         i[[3456789]]86-*-solaris2*, m32r-*-*, m68k-*-elf*, m68*-*-* |
2725         fido-*-*, powerpc-*-eabi, powerpc-*-eabi* | powerpcle-*-eabi* |
2726         powerpc-*-rtems*, mips*-*-linux*, mips*-*-*, sh-*-* | sh64-*-*,
2727         sparc-*-elf*, sparc64-*-elf*, sparc-*-solaris* |
2728         sparc64-*-solaris* | sparcv9-*-solaris*, *-*-linux* | *-*-gnu* |
2729         *-*-k*bsd*-gnu | *-*-kopensolaris*-gnu, *-*-*): Remove cases in
2730         libgcj-disabling case statement.
2731         * configure: Regenerate.
2733 2011-04-28  Joseph Myers  <joseph@codesourcery.com>
2735         * configure.ac: Disable Java for targets not supporting libffi.
2736         (*-*-chorusos, *-*-kaos*, am33_2.0-*-linux*, sh*-*-pe|mips*-*-pe):
2737         Remove cases in Java-disabling statement.
2738         (*arm-wince-pe): Change to arm-wince-pe.
2739         (arc-*-*, arm-*-coff, arm-*-pe*, arm-*-riscix*, avr-*-*): Remove
2740         cases in Java-disabling statement.
2741         (bfin-*-*): Don't disable Java again.
2742         (c4x-*-* | tic4x-*-*, tic54x-*-*, cr16-*-*, d10v-*-*, d30v-*-*,
2743         fr30-*-elf*, moxie-*-*, h8300*-*-*, h8500-*-*, hppa1.1-*-osf* |
2744         hppa1.1-*-bsd*, hppa*-*-*elf* | hppa*-*-lites* | hppa*-*-openbsd*,
2745         hppa*-*-pro*, i960-*-*, i[[3456789]]86-*-coff,
2746         i[[3456789]]86-*-pe, i[[3456789]]86-*-sco3.2v5*,
2747         i[[3456789]]86-*-sco*, i[[3456789]]86-*-sysv4*,
2748         i[[3456789]]86-*-beos*, i[[3456789]]86-*-rdos*,
2749         m68hc11-*-*|m6811-*-*|m68hc12-*-*|m6812-*-*): Remove cases in
2750         Java-disabling statement.
2751         (mmix-*-*): Don't disable Java again.
2752         (mt-*-*, powerpc*-*-winnt* | powerpc*-*-pe*, powerpcle-*-solaris*,
2753         powerpc-*-beos*, rs6000-*-lynxos*, rs6000-*-*, m68k-apollo-*,
2754         microblaze*, mips*-sde-elf*, mips*-*-irix5*, mips*-*-bsd*,
2755         sparclet-*-aout* | sparc86x-*-*, sparclite-*-*, sparc-*-sunos4*,
2756         tic6x-*-*, v810-*-*, vax-*-*): Remove cases in Java-disabling
2757         statement.
2758         * configure: Regenerate.
2760 2011-04-28  Joseph Myers  <joseph@codesourcery.com>
2762         Merge from GCC:
2764         2011-04-18  Jack Howarth  <howarth@bromo.med.uc.edu>
2766         PR lto/48086
2767         * configure.ac: Re-enable LTO on *-apple-darwin9*.
2768         * configure: Regenerate.
2770 2011-04-28  Joseph Myers  <joseph@codesourcery.com>
2772         * configure.ac: Separate cases disabling Java and Java libraries
2773         from general case over targets.
2774         * configure: Regenerate.
2776 2011-04-06  Joseph Myers  <joseph@codesourcery.com>
2778         * configure.ac (build_tools): Remove build-byacc.
2779         (host_libs): Remove mmalloc.
2780         (host_tools): Remove byacc make patch prms send-pr ash bash bzip2
2781         autoconf automake libtool diff rcs fileutils shellutils time
2782         textutils wdiff find uudecode hello tar gzip indent recode release
2783         sed perl gawk findutils gettext zip.
2784         (libgcj): Remove target-qthreads.
2785         (target_tools): Remove target-examples target-gperf.
2786         (YACC): Don't handle building byacc.
2787         * configure: Regenerate.
2788         * Makefile.def (ash, autoconf, automake, bash, byacc, bzip2, diff,
2789         dosutils, examples, fileutils, find, findutils, gawk, gettext,
2790         gnuserv, gperf, gzip, hello, indent, libtool, make, mmalloc,
2791         patch, perl, prms, qthreads, rcs, recode, release, sed, send-pr,
2792         shellutils, tar, textutils, time, uudecode, wdiff, zip): Don't
2793         handle building components.
2794         * Makefile.in: Regenerate.
2796 2011-04-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2798         * config.sub: Sync from upstream.
2800 2011-04-01  Joseph Myers  <joseph@codesourcery.com>
2802         * configure.ac (avr-*-*): Add comment about why libssp is disabled.
2803         (microblaze*): Don't disable libssp.
2804         * configure: Regenerate.
2806 2011-04-01  Joseph Myers  <joseph@codesourcery.com>
2808         * configure.ac: Remove code setting CONFIG_SHELL, config_shell and
2809         moveifchange.
2810         * configure: Regenerate.
2811         * Makefile.tpl: Use @SHELL@ not @config_shell@.
2812         * Makefile.in: Regenerate.
2814 2011-04-01  Joseph Myers  <joseph@codesourcery.com>
2816         * configure.ac (*-*-sysv4*): Don't enable libgomp.
2817         (alpha*-*-*vms*, i[[34567]]86-*-sco3.2v5*, mn10300-*-*,
2818         powerpc-*-chorusos*, powerpc*-*-eabi*, powerpc*-*-sysv*,
2819         powerpc*-*-kaos*, s390x-ibm-tpf*, sparc64-*-elf*, v850*-*-*,
2820         xtensa*-*-elf*, *-*-beos*, *-*-elf*, *-*-netware*, *-*-rtems*,
2821         *-*-sysv[[45]]*, *-*-vxworks*, *-wrs-windiss): Remove
2822         md_exec_prefix cases.
2823         * configure: Regenerate.
2825 2011-04-01  Joseph Myers  <joseph@codesourcery.com>
2827         * configure.ac: Separate cases disabling target-libssp,
2828         target-libiberty, target-libstdc++-v3 and Fortran from general
2829         case over targets.
2830         * configure: Regenerate.
2832 2011-04-01  Joseph Myers  <joseph@codesourcery.com>
2834         * configure.ac (*-*-chorusos): Don't disable libgcj.
2835         (*-*-freebsd[[12]] | *-*-freebsd[[12]].* | *-*-freebsd*aout*):
2836         Remove case.
2837         (*-*-kaos*): Don't disable GCC libraries, zlib or fastjar.
2838         (arm-*-coff): Don't disable libgcj.
2839         (arm*-*-linux-gnueabi): Remove useless assignment.
2840         (arm-*-riscix*): Don't disable libgcj.
2841         (bfin-*-*): Don't enable target-bsp and target-cygmon depending on
2842         configuration.
2843         (c4x-*-* | tic4x-*-*): Don't disable GCC libraries.
2844         (c54x*-*-*): Remove case.
2845         (tic54x-*-*): Don't disable GCC or GCC libraries.
2846         (cris-*-* | crisv32-*-*): Don't handle *-*-aout.  Change *-*-elf
2847         to *.
2848         (d10v-*-*): Don't disable GCC libraries.
2849         (d30v-*-*): Don't disable libgcj.
2850         (h8500-*-*): Don't disable GCC libraries.
2851         (i960-*-*): Don't disable libgcj.
2852         (i[[3456789]]86-*-linux*): Don't handle *-*-*libc1*.
2853         (i[[3456789]]86-*-sco3.2v5*, i[[3456789]]86-*-sco*,
2854         i[[3456789]]86-*-sysv4*, i[[3456789]]86-*-beos*): Don't disable
2855         libgcj.
2856         (m68k-*-coff*): Remove case.
2857         (mmix-*-*): Don't disable libgloss on host.
2858         (mn10200-*-*, mn10300-*-*): Remove cases.
2859         (powerpc*-*-winnt* | powerpc*-*-pe*, powerpcle-*-solaris*,
2860         powerpc-*-beos*, m68k-apollo-*, mips*-*-irix5*, mips*-*-bsd*):
2861         Don't disable libgcj.
2862         (romp-*-*): Remove case.
2863         (sparclite-*-*, sparc-*-sunos4*): Don't disable libgcj.
2864         (sparc-*-solaris2.[[0-6]] | sparc-*-solaris2.[[0-6]].*): Remove
2865         case.
2866         (v810-*-*): Don't disable GCC libraries.
2867         (v850*-*-*, vax-*-vms, xtensa*-*-*): Remove cases.
2868         (ip2k-*-*): Don't disable GCC libraries.
2869         * configure: Regenerate.
2871 2011-03-28  Joseph Myers  <joseph@codesourcery.com>
2873         * configure.ac (i[[3456789]]86-*-msdosdjgpp*): Don't disable
2874         libffi on host.
2875         (x86_64-*-mingw*, i[[3456789]]86-*-mingw32*): Don't disable newlib
2876         on host.
2877         (c54x*-*-* | tic54x-*-*): Don't disable newlib on host.
2878         * configure: Regenerate.
2880 2011-03-26  John Marino  <binutils@marino.st>
2882         * configure.ac: Add support for *-*-dragonfly*
2883         * configure: Regenerate.
2885 2011-03-25  Joseph Myers  <joseph@codesourcery.com>
2887         * configure.ac (native_only): Remove.
2888         (i[[3456789]]86-*-msdosdjgpp*): Don't disable expect dejagnu
2889         send-pr uudecode guile gnuserv on host.
2890         (x86_64-*-mingw*): Don't disable expect dejagnu autoconf automake
2891         send-pr rcs guile perl texinfo libtool on host.
2892         (i[[3456789]]86-*-mingw32*): Don't disable expect dejagnu autoconf
2893         automake send-pr rcs guile perl texinfo libtool on host.
2894         (*-*-cygwin*, *-*-netbsd*): Remove host cases.
2895         (*-*-kaos*): Don't disable target-examples target-gperf on target.
2896         (alpha*-dec-osf*): Don't disable fileutils on target.
2897         (sh*-*-pe|mips*-*-pe|*arm-wince-pe): Don't disable target-examples
2898         texinfo send-pr expect dejagnu on target.
2899         (arm-*-elf* | arm*-*-eabi*, arm*-*-linux-gnueabi): Don't disable
2900         target-qthreads on target.
2901         (hppa*-hp-hpux11*, hppa*-*-*): Don't disable shellutils on target.
2902         (ia64*-*-elf*, ia64*-*-*vms*): Don't disable mmalloc on target.
2903         (i[[3456789]]86-w64-mingw*, i[[3456789]]86-*-mingw*,
2904         x86_64-*-mingw*): Don't disable expect on target.
2905         (*-*-cygwin*): Don't disable target-gperf on target.
2906         (powerpc*-*-winnt* | powerpc*-*-pe*): Don't disable make expect
2907         gnuserv on target.
2908         (powerpcle-*-solaris*): Don't disable make expect gnuserv on
2909         target.
2910         * configure: Regenerate.
2912 2011-03-25  Joseph Myers  <joseph@codesourcery.com>
2914         * configure.ac (target_tools): Remove target-groff.
2915         (native_only): Remove target-groff.
2916         (hppa*64*-*-*): Don't disable byacc.
2917         (i[[3456789]]86-*-mingw32*): Remove commented-out noconfigdirs
2918         setting.
2919         (*-*-kaos*): Don't skip target-librx and target-groff.
2920         (*-*-netware*): Don't skip target-libmudflap.
2921         (*-*-tpf*): Don't skip target-libmudflap.
2922         (sh*-*-pe|mips*-*-pe|*arm-wince-pe): Don't condition configured
2923         directories on the host.
2924         (ia64*-*-*vms*): Don't skip tix.
2925         (sh-*-* | sh64-*-*): Don't condition skipped directories on the
2926         host.
2927         * configure: Regenerate.
2929 2011-03-24  Paolo Bonzini  <pbonzini@redhat.com>
2931         * configure.ac: Remove references to mt-mep, mt-netware,
2932         mt-wince.
2933         * Makefile.def: Add all-utils soft dependencies.
2934         * Makefile.tpl: Remove GDB_NLM_DEPS.
2935         * configure: Regenerate.
2936         * Makefile.in: Regenerate.
2938 2011-03-24  Paolo Bonzini  <bonzini@gnu.org>
2940         Sync from GCC:
2942         2011-03-24  Paolo Bonzini  <bonzini@gnu.org>
2944         * configure.ac: Do not include mh-x86omitfp.
2945         * configure: Regenerate.
2947         2011-03-24  Paolo Bonzini  <bonzini@gnu.org>
2949         * configure.ac: Remove empty cases.
2950         * configure: Regenerate.
2952         2011-03-24  Paolo Bonzini  <bonzini@gnu.org>
2954         * Makefile.def: Add dependency from termcap to gdb.
2955         * Makefile.in: Regenerate.
2957         2011-03-24  Paolo Bonzini  <bonzini@gnu.org>
2959         * configure.ac: Remove all mentions of mh-sysv4 and mh-solaris.
2960         * configure: Regenerate.
2961         * Makefile.def: Remove all mentions of X11_FLAGS_TO_PASS.
2962         * Makefile.tpl: Likewise.
2963         * Makefile.in: Regenerate.
2965         2011-03-24  Paolo Bonzini  <bonzini@gnu.org>
2967         * configure.ac: Remove all mentions of tentative_cc.
2968         * configure: Regenerate.
2970         2011-03-16  Jack Howarth  <howarth@bromo.med.uc.edu>
2972         PR lto/48086
2973         * configure.ac: Re-enable LTO on *-apple-darwin9.
2974         * configure: Regenerate.
2976 2011-03-24  Joseph Myers  <joseph@codesourcery.com>
2978         * configure.ac (i[[3456789]]86-*-vsta, i[[3456789]]86-*-go32*,
2979         i[[3456789]]86-*-beos*, powerpc-*-beos*, m68k-hp-hpux*,
2980         m68k-apollo-sysv*, m68k-apollo-bsd*, m88k-dg-dgux*,
2981         m88k-harris-cxux*, m88k-motorola-sysv*, mips*-dec-ultrix*,
2982         mips*-nec-sysv4*, mips*-sgi-irix4*, mips*-*-sysv4*, mips*-*-sysv*,
2983         i370-ibm-opened*, i[[3456789]]86-*-sysv5*, i[[3456789]]86-*-dgux*,
2984         i[[3456789]]86-ncr-sysv4.3*, i[[3456789]]86-ncr-sysv4*,
2985         i[[3456789]]86-*-sco3.2v5*, i[[3456789]]86-*-sco*,
2986         i[[3456789]]86-*-udk*, vax-*-ultrix2*, m68k-sun-sunos*,
2987         hppa*-*-hiux*, *-*-hiux*, rs6000-*-lynxos*, *-*-sysv4*,
2988         *-*-rhapsody*): Remove host cases.
2989         * configure: Regenerate.
2991 2011-03-24  Joseph Myers  <joseph@codesourcery.com>
2993         * configure.ac (ppc*-*-pe): Remove host case.
2994         (strongarm-*-coff | xscale-*-coff, strongarm-*-elf* |
2995         xscale-*-elf*, thumb-*-coff, thumb-*-elf, thumb-*-pe, ep9312-*-elf
2996         | ep9312-*-coff, parisc*64*-*-linux*, ppc*-*-pe): Remove target
2997         cases.
2998         * configure: Regenerate.
3000 2011-03-24  Joseph Myers  <joseph@codesourcery.com>
3002         * config.sub: Update to version 2011-03-23.
3004 2011-03-22  Joseph Myers  <joseph@codesourcery.com>
3006         * configure.ac (arm-semi-aof, crx-*-*, parisc*-*-linux*,
3007         i370-*-opened*, i[[3456789]]86-moss-msdos | i[[3456789]]86-*-moss*
3008         | i[[3456789]]86-*-uwin*, mcore-*-pe*): Remove empty cases.
3009         * configure: Regenerate.
3011 2011-03-22  Joseph Myers  <joseph@codesourcery.com>
3013         * config-ml.in: Don't handle arc-*-elf*.
3014         * configure.ac (arc-*-*, crx-*-*, i[[3456789]]86-*-pe,
3015         m68hc11-*-*|m6811-*-*|m68hc12-*-*|m6812-*-*, mcore-*-pe*): Don't
3016         handle GCC libraries.
3017         * configure: Regenerate.
3019 2011-03-21  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
3021         PR bootstrap/48120:
3022         * configure.ac (pwllib): Use LIBS instead of LDFLAGS.
3023         Add -lstdc++ -lm to LIBS.
3024         * configure: Regenerate.
3026 2011-03-18  David Edelsohn  <dje.gcc@gmail.com>
3028         * config.guess: Update to version 2011-02-02
3029         * config.sub: Update to version 2011-02-24
3031 2011-03-03  Sebastian Pop  <sebastian.pop@amd.com>
3033         * configure.ac: Adjust test of with_ppl.
3034         * configure: Regenerated.
3036 2011-03-02  Sebastian Pop  <sebastian.pop@amd.com>
3038         * configure.ac: Add -lpwl to ppllibs.
3039         * config/cloog.m4: Add -lisl to clooglibs.
3040         * configure: Regenerated.
3042 2011-02-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3044         Import from Libtool and gnulib:
3046         2011-01-27  Gerald Pfeifer  <gerald@pfeifer.com>
3048         Prepare for supporting FreeBSD 10.
3049         * config.rpath: Remove handling of freebsd1* which soon would
3050         match FreeBSD 10.0.
3052         2011-01-20  Gerald Pfeifer  <gerald@pfeifer.com>  (tiny change)
3054         Remove support for FreeBSD 1.x.
3055         * libtool.m4 (_LT_LINKER_SHLIBS)
3056         (_LT_SYS_DYNAMIC_LINKER): Remove handling of freebsd1* which
3057         soon would incorrectly match FreeBSD 10.0.
3059 2011-02-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3061         PR binutils/12283
3062         * MAINTAINERS (mkinstalldirs): Comes from Automake.
3063         (move-if-change): Comes from gnulib.
3064         * move-if-change: Import version from gnulib.
3066 2011-02-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3068         Sync from GCC:
3070         2011-02-12  Alexandre Oliva  <aoliva@redhat.com>
3072         PR lto/47225
3073         * Makefile.def (lto-plugin): Double dash for enable-shared.
3074         (configure-gcc): Depend on all-lto-plugin.
3075         * Makefile.in: Rebuilt.
3077         2011-02-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3079         * configure.ac: Remove extra bracket.
3080         * configure: Regenerate.
3082         2011-02-06  Kai Tietz  <kai.tietz@onevision.com>
3084         PR lto/47225
3085         * Makefile.def: Add dependency for install-gcc
3086         on install-lto-plugin.
3087         * Makfile.in: Regenerated
3089         2011-01-25  Jakub Jelinek  <jakub@redhat.com>
3091         * configure.ac: If with_ppl is no, move setting with_cloog=no
3092         after CLOOG_REQUESTED check.
3093         * configure: Regenerated.
3095         2011-01-25  Sebastian Pop  <sebastian.pop@amd.com>
3097         * configure.ac: Call AC_MSG_ERROR when PPL 0.11 is not present and
3098         CLooG has been requested.
3099         * configure: Regenerated.
3101         2011-01-25  Sebastian Pop  <sebastian.pop@amd.com>
3103         * configure: Regenerated.
3104         * configure.ac: Check for version 0.11 (or later revision) of PPL.
3106         2011-01-25  Tobias Grosser  <grosser@fim.uni-passau.de>
3108         * configure: Regenerated.
3109         * configure.ac: Use CLOOG_CHECK_VERSION(0,16,1).
3111         2011-01-07  Jan Hubicka  <jh@suse.cz>
3113         PR lto/47225
3114         * Makefile.in: Regenerate.
3115         * Makefile.def (lto-plugin): Always pass enable-shared to the plugin
3116         configure.
3118 2011-01-31  Alexandre Oliva  <aoliva@redhat.com>
3120         PR libgcj/44341
3121         * configure.ac: Discard --with-* flags for host when configuring
3122         target libraries for cross build.
3123         * configure: Rebuilt.
3125 2011-01-21  Andreas Schwab  <schwab@redhat.com>
3127         Sync from GCC:
3129         2011-01-21  Andreas Schwab  <schwab@redhat.com>
3131         * configure.ac: Use AS_HELP_STRING throughout.
3132         * configure: Regenerate.
3134         2011-01-18  Jie Zhang  <jie.zhang@analog.com>
3136         * configure.ac (bfin-*-*): Remove gdb from noconfigdirs.
3137         * configure: Regenerate.
3139 2010-12-10  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
3141         * ltmain.sh (relink): Use absolute path when hardcoding with -L.
3143 2011-01-13  Joel Brobecker  <brobecker@adacore.com>
3145         * configure.ac: Remove readline, mmalloc, and gdb from noconfigdirs
3146         for ia64-hpux.
3147         * configure: Regenerate.
3149 2011-01-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3151         Sync from GCC:
3152         2010-12-22  Hariharan Sandanagobalane  <hariharan@picochip.com>
3154         * configure.ac: (picochip): Disable libiberty.
3155         * configure: Regenerate.
3157 2010-12-18  Jeff Johnston  <jjohnstn@redhat.com>
3159         * COPYING.LIBGLOSS: Remove the GPL for fr30 target.
3161 2010-12-10  Ian Lance Taylor  <iant@google.com>
3163         PR bootstrap/46819
3164         * configure.ac: For --disable-libgcj clear libgcj_saved.
3165         * configure: Rebuild.
3167 2010-12-10  Tobias Burnus  <burnus@net-b.de>
3169         PR fortran/46540
3170         * configure.ac: Add --disable-libquadmath and
3171         --disable-libquadmath-support.
3172         * configure: Regenerate.
3174 2010-12-10  Tristan Gingold  <gingold@adacore.com>
3176         * src-release (ETC_SUPPORT): add gnu-oids.texi
3178 2010-12-03  Hans-Peter Nilsson  <hp@axis.com>
3180         PR libffi/46792
3181         * configure.ac (cris-*-elf, crisv32-*-elf): Disable target-libffi.
3182         * configure: Regenerate.
3184 2010-12-02  Ian Lance Taylor  <iant@google.com>
3186         * configure.ac: Always set default for poststage1_ldflags to
3187         -static-libstdc++ -static-libgcc.
3189 2010-12-02  Jeff Johnston  <jjohnstn@redhat.com>
3191         * COPYING.NEWLIB: Add National Semiconductor notice.
3193 2010-11-29  Andreas Schwab  <schwab@redhat.com>
3195         * configure.ac: Move comment to remove extra space in last argument
3196         of GCC_TARGET_TOOL.
3198 2010-11-26  Alexandre Oliva  <aoliva@redhat.com>
3200         PR other/46026
3201         * configure.ac (CXX_FOR_TARGET): Add -funconfigured-libstdc++-v3.
3202         * Makefile.def (CXX_FOR_TARGET): Removed from flags_to_pass.
3203         * Makefile.tpl (CXX_FOR_TARGET_FLAG_TO_PASS): New.
3204         (BASE_FLAGS_TO_PASS): Use it.
3205         * configure: Rebuilt.
3206         * Makefile.in: Rebuilt.
3208 2010-11-23  H.J. Lu  <hongjiu.lu@intel.com>
3210         PR binutils/12258
3211         * configure.ac: Correct comments for --enable-gold/--enable-ld.
3212         Properly check default linker.
3213         * configure: Regnerated.
3215 2010-11-23  Matthias Klose  <doko@ubuntu.com>
3217         * configure.ac: For --enable-gold, handle value `default' instead of
3218         `both*'.   New configure option --{en,dis}able-ld.
3219         * configure: Regenerate.
3221 2010-11-20  Ian Lance Taylor  <iant@google.com>
3223         * configure.ac: Only disable a language library if no language needs
3224         it.  Don't let --disable-libgcj uncondtionally disable libffi.
3225         * configure: Rebuild.
3227 2010-11-20  Paolo Bonzini  <bonzini@gnu.org>
3229         * configure: Regenerate.
3231 2010-11-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3233         PR other/46202
3234         * configure.ac: Fix just-built in-tree STRIP name to be
3235         binutils/strip-new.
3236         * configure: Regenerate.
3237         * Makefile.def (install-strip-gcc, install-strip-binutils)
3238         (install-strip-opcodes, install-strip-ld, install-strip-itcl)
3239         (install-strip-sid): Mirror dependencies on non-strip variants
3240         of these targets on the respective -strip prerequisites.
3241         * Makefile.tpl (install-strip, install-strip-host)
3242         (install-strip-target): New targets.
3243         (install-strip-[+module+], install-strip-target-[+module+]):
3244         New targets.
3245         * Makefile.in: Regenerate.
3247 2010-11-19  Ian Lance Taylor  <iant@google.com>
3248             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3250         * configure.ac: Add target-libgo to target_libraries.  Set
3251         and substitute GOC_FOR_BUILD and GOC_FOR_TARGET.
3252         * Makefile.tpl (BUILD_EXPORTS): Add GOC and GOCFLAGS.
3253         (HOST_EXPORTS): Add GOC.
3254         (BASE_TARGET_EXPORTS): Add GOC.
3255         (GOC_FOR_BUILD, GOCFLAGS, GOC_FOR_TARGET): New variables.
3256         (GOCFLAGS_FOR_TARGET): New variable.
3257         (EXTRA_HOST_FLAGS): Add GOC.
3258         (EXTRA_TARGET_FLAGS): Add GOC and GOCFLAGS.
3259         * Makefile.def (target_modules): Add libgo.
3260         (flags_to_pass): Add GOC_FOR_TARGET and GOCFLAGS_FOR_TARGET.
3261         (dependencies): Add dependency from configure-target-libgo to
3262         configure-target-libffi and all-target-libstdc++-v3.  Add
3263         dependencies from all-target-libgo to all-target-libffi.
3264         (languages): Add go.
3265         * configure: Rebuild.
3266         * Makefile.in: Rebuild.
3268 2010-11-19  Ian Lance Taylor  <iant@google.com>
3270         * config-ml.in: Add Go support: treat GOC and GOCFLAGS like other
3271         compiler/flag environment variables.
3273 2010-11-18  Ian Lance Taylor  <iant@google.com>
3275         * configure.ac: Check for lang_requires_boot_languages in
3276         config-lang.in files.
3277         * configure: Rebuild.
3279 2010-11-17  Mike Frysinger  <vapier@gentoo.org>
3281         * .gitignore: New file.
3283 2010-11-16  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
3284             Tobias Burnus  <burnus@net-b.de>
3286         PR fortran/32049
3287         * Makefile.def: Add libquadmath; build it with language=fortran.
3288         * configure.ac: Add libquadmath.
3289         * Makefile.tpl: Handle multiple libs in check-[+language+].
3290         * Makefile.in: Regenerate.
3291         * configure: Regenerate.
3293 2010-11-15  Andreas Schwab  <schwab@redhat.com>
3295         * configure.ac: Fix spelling in option names.
3296         * configure: Regenerated.
3298 2010-11-13  Georg-Johann Lay  <georgjohann@web.de>
3300         PR bootstrap/39622
3301         * configure.ac (FLAGS_FOR_TARGET): Add include-fixed path.
3302         * configure: Regenerated.
3304 2010-11-12  Tobias Grosser  <grosser@fim.uni-passau.de>
3306         * config/cloog.m4: Add -enable-cloog-backend=(isl|ppl|ppl-legacy) to
3307         define the cloog backend to use. Furthermore, only pass the ppllibs to
3308         the configure checks, if necessary.
3309         * configure: Regenerate.
3311 2010-11-12  Tobias Grosser  <grosser@fim.uni-passau.de>
3313         * config/cloog.m4: Use CLooG predefined macro to check for CLooG PPL.
3314         * configure: regenerate
3316 2010-11-12  Tobias Grosser  <grosser@fim.uni-passau.de>
3318         * config/cloog.m4: Fix typo.  verison -> version.
3319         * configure: Regenerate.
3321 2010-11-12  Tobias Grosser  <grosser@fim.uni-passau.de>
3323         * config/cloog.m4: Pass ppl libraries to the CLooG version check.
3324         * configure: Regenerate.
3326 2010-11-11  Andreas Simbuerger  <simbuerg@fim.uni-passau.de>
3328         * configure.ac: Support official CLooG.org versions.
3329         * configure: Regenerate.
3330         * config/cloog.m4: New.
3332 2010-11-05  Michael Eager  <eager@eagercon.com>
3334         * COPYING.LIBGLOSS: Correct typo in microblaze.
3335         * COPYING.NEWLIB: Same.
3337 2010-11-04  Iain Sandoe  <iains@gcc.gnu.org>
3339         * configure.ac (*-*-darwin*): Use mh-darwin for all Darwin variants.
3340         * configure: Regenerate.
3342 2010-11-03  Ian Lance Taylor  <iant@google.com>
3343             Dave Korn  <dave.korn.cygwin@gmail.com>
3345         PR lto/46273
3346         * configure.ac: Remove libelf tests.  Build lto-plugin on ELF always
3347         and on other supported platforms whenever LTO is enabled.
3348         * configure: Rebuild.
3350 2010-11-02  Alan Modra  <amodra@gmail.com>
3352         PR binutils/12110
3353         * configure.ac: Error when source path contains spaces.
3354         * configure: Regenerate.
3356 2010-10-20  Ian Lance Taylor  <iant@google.com>
3358         * Makefile.def (target_modules): Set lib_path to src/.libs for
3359         libstdc++-v3 module.
3360         * Makefile.tpl: Fix typo in TARGET_LIB_PATH comment.
3361         * Makefile.in: Rebuild.
3363 2010-10-08  Bernd Schmidt  <bernds@codesourcery.com>
3364             Joseph Myers  <joseph@codesourcery.com>
3366         * COPYING.LIBGLOSS: Add National Semiconductor and CodeSourcery
3367         notices.
3368         * COPYING.NEWLIB: Add Texas Instruments notice.
3370 2010-10-07  Dave Korn  <dave.korn.cygwin@gmail.com>
3372         * configure.ac (build_lto_plugin): New shell variable.
3373         (--enable-lto): Turn on by default for all non-ELF platforms that
3374         have had LTO support added so far.  Set build_lto_plugin appropriately
3375         for both ELF and non-ELF.
3376         (configdirs): Add lto-plugin or not based on build_lto_plugin.
3377         * configure: Regenerate.
3379 2010-10-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3381         PR bootstrap/45326
3382         PR bootstrap/45174
3383         * configure.ac: Honor initial values of $build_configargs,
3384         $host_configargs, $target_configargs.  Mark the precious, so
3385         environment settings get recorded.
3386         * configure: Regenerate.
3388 2010-10-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3390         Sync from GCC:
3392         2010-09-30  Michael Eager  <eager@eagercon.com>
3394         * configure.ac (microblaze): Add target-libssp to noconfigdirs.
3395         * configure: Regenerate.
3397         2010-09-21  Iain Sandoe  <iains@gcc.gnu.org>
3399         * configure.ac (enable-lto): Add Darwin to the list of supported lto
3400         targets and amend comment.
3401         * configure: Regenerate.
3403         2010-09-03  Jack Howarth <howarth@bromo.med.uc.edu>
3405         * configure.ac: Enable LTO by default on Darwin.
3406         * configure: Regenerate.
3408         2010-07-23  Marc Glisse <marc.glisse@normalesup.org>
3410         PR bootstrap/44455
3411         * configure.ac (extra_mpfr_configure_flags): Copy from
3412         extra_mpc_gmp_configure_flags.
3413         * configure: Re-generated.
3415 2010-09-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3417         Sync from GCC:
3419         PR bootstrap/45796
3420         * Makefile.def (info-gcc, dvi-gcc, pdf-gcc, html-gcc):
3421         Depend on all-build-libiberty.
3422         * Makefile.in: Regenerate.
3424 2010-09-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3426         Sync from GCC:
3428         PR bootstrap/44621
3429         * configure.ac: Fix unportable shell quoting.
3430         * configure: Regenerate.
3432 2010-07-26  Naveen.H.S  <naveen.S@kpitcummins.com>
3434         * configure.ac: Support all v850 targets.
3435         * configure: Regenerate.
3437 2010-07-17  Jack Howarth  <howarth@bromo.med.uc.edu>
3439         PR target/44862
3440         * Makefile.tpl (POSTSTAGE1_CXX_EXPORT):
3441         Provide -B option to allow for link spec %s substitutions for
3442         libstdc++.a on darwin.
3443         * Makefile.in: Regenerate.
3445 2010-06-10  Alexandre Oliva  <aoliva@redhat.com>
3447         * Makefile.def (configure-gcc): Depend on all-libelf.
3448         * Makefile.in: Rebuild.
3450 2010-06-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3452         * config.sub, config.guess: Update from upstream sources.
3454 2010-06-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3456         Sync from GCC:
3458         2010-05-05  Sebastian Pop  <sebastian.pop@amd.com>
3459         * configure.ac: Allow all the versions greater than 0.10 of PPL.
3460         * configure: Regenerated.
3462         2010-04-20  Eric Botcazou  <ebotcazou@adacore.com>
3463         * configure.ac (BUILD_CONFIG): Redirect output to /dev/null.
3464         * configure: Regenerate.
3466         2010-04-17  Ralf Cors<E9>pius  <ralf.corsepius@rtems.org>
3467         * configure.ac (*-*-rtems*): Add target-libiberty to $skipdirs.
3468         * configure: Regenerate.
3470         2010-04-16  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
3471         * configure.ac: Check for elf_getshdrstrndx or elf_getshstrndx
3472         separately.
3473         * configure: Regenerate.
3475         2010-04-13  Steve Ellcey  <sje@cup.hp.com>
3476         * configure: Regenerate after change to elf.m4.
3478         2010-04-02  Sebastian Pop  <sebastian.pop@amd.com>
3479         * configure.ac: Add brackets around AC_TRY_COMPILE alternative.
3480         * configure: Regenerated.
3482         2010-04-02  Sebastian Pop  <sebastian.pop@amd.com>
3483         * configure.ac: Print "buggy but acceptable" when CLooG
3484         revision is less than 9.
3485         * configure: Regenerated.
3487 2010-05-26  Dave Korn  <dave.korn.cygwin@gmail.com>
3489         Merge from gcc:
3491         2010-05-18  Steven Bosscher  <steven@gcc.gnu.org>
3492         * configure.ac (--enable-lto): All *-apple-darwin* now support LTO.
3493         * configure: Regenerate.
3495         2010-05-07  Steven Bosscher  <steven@gcc.gnu.org>
3496         * configure.ac (--enable-lto): Add x86_64-apple-darwin* as
3497         a platform that supports LTO.
3498         * configure: Regenerate.
3500         2010-04-27  Dave Korn  <dave.korn.cygwin@gmail.com>
3501         PR lto/42776
3502         * configure.ac (--enable-lto): Refactor handling so libelf tests
3503         are only performed inside then-clause of ACX_ELF_TARGET_IFELSE,
3504         and allow LTO to be explicitly enabled on non-ELF platforms that
3505         are known to support it inside else-clause.
3506         * configure: Regenerate.
3508 2010-04-27  Roland McGrath  <roland@redhat.com>
3509             H.J. Lu  <hongjiu.lu@intel.com>
3511         * configure.ac (--enable-gold): Support both, both/gold and
3512         both/bfd to add gold to configdirs without removing ld.
3513         * configure: Regenerated.
3515         * Makefile.def: Add install-gold dependency to install-ld.
3516         * Makefile.in: Regenerated.
3518 2010-04-14  Tristan Gingold  <gingold@adacore.com>
3520         * configure.ac (alpha*-*-*vms*): Remove ld from noconfigdirs.
3521         * configure: Regenerate.
3523 2010-04-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3525         Merge from gcc:
3526         PR bootstrap/43615
3527         PR bootstrap/43328
3528         Revert:
3529         2010-03-31  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3530         * configure.ac: Do not pass --enable-multilib nor
3531         --disable-multilib in baseargs.  Accept explicitly passed
3532         --enable_multilib.
3533         * configure: Regenerate.
3535 2010-03-31  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3537         PR bootstrap/43328
3538         * configure.ac: Do not pass --enable-multilib nor
3539         --disable-multilib in baseargs.  Accept explicitly passed
3540         --enable_multilib.
3541         * configure: Regenerate.
3543 2010-03-23  Joseph Myers  <joseph@codesourcery.com>
3545         * configure.ac (tic6x-*-*): New case.
3546         * configure: Regenerate.
3548 2010-03-23  Joseph Myers  <joseph@codesourcery.com>
3550         Merge from gcc:
3551         2010-03-19  Jack Howarth <howarth@bromo.med.uc.edu>
3552         PR ada/42554
3553         * configure.ac: Only pass -c to ranlib for darwin9 and earlier.
3554         * configure: Regenerate.
3556 2010-03-23  Joseph Myers  <joseph@codesourcery.com>
3558         * config.sub: Update to version 2010-03-22.
3559         * config.guess: Update to version 2009-12-30.
3561 2010-03-14  Joseph Myers  <joseph@codesourcery.com>
3563         Merge from gcc:
3564         2010-01-11  Richard Guenther  <rguenther@suse.de>
3565         PR lto/41569
3566         * Makefile.def (all-lto-plugin): Depend on all-gcc.
3567         * Makefile.in: Regenerated.
3569 2010-03-01  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
3571         PR libstdc++/32499
3572         * configure.ac (RANLIB): Default to true.
3573         (STRIP): Likewise.
3574         (RANLIB_FOR_TARGET): Remove superfluous : argument.
3575         * configure: Regenerate.
3577 2010-02-17  Nick Clifton  <nickc@redhat.com>
3579         PR 11238
3580         * Makefile.tpl (local-distclean): Also remove config.cache files in
3581         sub-directories as there may not be Makefiles present in the
3582         sub-directories.
3583         * Makefile.tpl: Use "-exec rm {}" rather than "-delete" to delete
3584         the config.cache files found by the find command.
3586         * Makefile.in: Regenerate.
3587         * configure.ac: Revert previous delta.
3588         * configure: Regenerate.
3590 2010-02-15  Nick Clifton  <nickc@redhat.com>
3592         PR 11238
3593         * configure.ac: Delete config.cache files in sub-directories when
3594         deleting Makefiles.
3595         * configure: Regenerate.
3597 2010-02-15  Nick Clifton  <nickc@redhat.com>
3599         * configure.ac: Sync from gcc.
3600         * configure: Regenerate.
3602 2010-01-31  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3604         Sync from gcc:
3605         * configure.ac: Add "recommended" version checks for GMP/MPC.
3606         Update recommended GMP/MPFR/MPC versions.
3607         * configure: Regenerate.
3609 2010-01-25  Joern Rennecke  <amylaar@spamcop.net>
3611         gcc PR libstdc++/36101, gcc PR libstdc++/42813
3612         * configure.ac (bootstrap_target_libs): Make inclusion of
3613         target-libgomp conditional on libgomb being in target_configdirs.
3614         * configure: Regenerate.
3616 2010-01-23  Joern Rennecke  <amylaar@spamcop.net>
3618         gcc PR libstdc++/36101, gcc PR libstdc++/42813
3619         * configure.ac (bootstrap_target_libs): Include target-libgomp.
3620         * configure: Regenerate.
3622 2010-01-22  Joern Rennecke  <amylaar@spamcop.net>
3624         gcc PR libstdc++/36101, gcc PR libstdc++/42813
3625         * configure.ac (target_configdirs): Substitute.
3626         * Makefile.def: Bootstrap target module libgomp.
3627         Add dependency of all-target-libstdc++-v3 on configure-target-libgomp.
3628         * Makefile.tpl (TARGET_CONFIGDIRS): New makefile variable.
3629         (BASE_TARGET_EXPORTS): Export TARGET_CONFIGDIRS.
3630         * configure, Makefile.in: Regenerate.
3632 2009-12-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3634         * libtool.m4: Sync from git Libtool.
3635         * ltmain.sh: Likewise.
3636         * ltoptions.m4: Likewise.
3637         * ltversion.m4: Likewise.
3638         * lt~obsolete.m4: Likewise.
3640 2010-01-07  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3641             Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
3643         PR bootstrap/42424
3644         * configure.ac: Include libtool m4 files.
3645         (_LT_CHECK_OBJDIR): Call it.
3646         (extra_mpc_mpfr_configure_flags, extra_mpc_gmp_configure_flags,
3647         gmplibs, ppllibs, clooglibs): Use $lt_cv_objdir.
3649         * configure: Regenerate.
3651 2010-01-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3653         PR bootstrap/41818
3654         * Makefile.tpl (BASE_TARGET_EXPORTS): Only add TARGET_LIB_PATH
3655         to $(RPATH_ENVVAR) if bootstrapping.  Fix typo in comment.
3656         * Makefile.in: Regenerate.
3658 2009-12-18  Ben Elliston  <bje@au.ibm.com>
3660         * config.sub, config.guess: Update from upstream sources.
3662 2009-12-17  Jeff Johnston  <jjohnstn@redhat.com>
3664         * COPYING.NEWLIB: Update copyright date.
3665         * COPYING.LIBGLOSS: Ditto.
3667 2009-12-07  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3669         PR middle-end/30447
3670         PR middle-end/30789
3671         PR other/40302
3673         * configure.ac: Require MPC.
3674         * configure: Regenerate.
3676         * configure.ac: Update minimum MPC version to 0.8.
3677         * configure: Regenerate.
3679 2009-11-20  Paolo Bonzini  <bonzini@gnu.org>
3681         * config.guess: Sync with upstream and gcc.
3682         * config.sub: Sync with upstream and gcc.
3684 2009-11-16  Alexandre Oliva  <aoliva@redhat.com>
3686         * Makefile.def: Restore host and target settings for gmp.
3687         * Makefile.in: Rebuild.
3689 2009-11-16  Alexandre Oliva  <aoliva@redhat.com>
3691         * configure.ac: Add libelf to host_libs.  Enable in-tree configury
3692         of ppl and cloog.  Fix in-tree configury of libelf, skip tests.
3693         Fix portability of test of C++ as bootstrap language.  Add
3694         ppl/src/ppl-config.o to the bootstrap compare exclusion list.
3695         * configure: Rebuild.
3696         * Makefile.def: Drop host and target settings from gmp, mpfr, ppl,
3697         and cloog.  Fix in-tree ppl configuration.  Introduce libelf
3698         in-tree building.
3699         * Makefile.tpl (POSTSTAGE1_CXX_EXPORT): New.
3700         (POSTSTAGE1_HOST_EXPORTS): Use it.
3701         (STAGE[+id+]_CXXFLAGS): New.
3702         (BASE_FLAGS_TO_PASS): Pass it down.
3703         (configure-stage[+id+]-[+prefix+][+module+]): Use it.  Add
3704         extra_exports.
3705         (all-stage[+id+]-[+prefix+][+module+]): Likewise.
3706         (configure-[+prefix+][+module+], all-[+prefix+][+module+]): Add
3707         extra_exports.
3708         * Makefile.in: Rebuild.
3710 2009-11-06  Ozkan Sezer  <sezeroz@gmail.com>
3712         * configure.ac (FLAGS_FOR_TARGET):  Add -L and -isystem
3713         paths for *-w64-mingw* and x86_64-*mingw*.
3714         * configure: Regenerated.
3716 2009-10-30  Kai Tietz  <kai.tietz@onevision.com>
3718         * configure.ac: Disable target-winsup & co for
3719         x86_64-*-mingw* and *-w64-mingw* targets.
3720         * configure: Regenerated.
3722 2009-10-23  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
3724         * configure.ac (CLooG test): Use = with test.
3725         * configure: Regenerate.
3727 2009-10-22  Richard Guenther  <rguenther@suse.de>
3729         * configure.ac: Do not set LIBS for ppl/cloog checks.  Disable
3730         cloog if the ppl version check failed.  Move flags saving
3731         before setting in libelf check.
3732         * configure: Regenerate.
3734 2009-10-21  Richard Guenther  <rguenther@suse.de>
3736         * configure.ac: Adjust the ppl and cloog configure to work as
3737         documented.  Disable cloog if ppl was disabled.  Omit the version
3738         checks if they were disabled.
3739         * configure: Re-generate.
3741 2009-10-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3743         * configure.ac: Add 'lto' to enable_languages, not
3744         new_enable_languages, and only if not already present.
3745         * configure: Regenerate.
3747 2009-10-06  Ian Lance Taylor  <iant@google.com>
3749         * Makefile.def: check-gold depends upon all-gas.
3750         * Makefile.in: Rebuild.
3752 2009-10-03  2009-02-05  Rafael Avila de Espindola  <espindola@google.com>
3754         * Makefile.def: all-lto-plugin depends on all-libiberty.
3755         set bootstrap=true for lto-plugin.
3756         Add lto-plugin.
3757         * Makefile.in: Regenerate.
3758         * configure.ac (host_libs): Add lto-plugin.
3759         * configure: Regenerate.
3761 2009-10-03  Diego Novillo  <dnovillo@google.com>
3763         * Makefile.tpl (HOST_EXPORTS): Add LIBELFLIBS and LIBELFINC.
3764         (HOST_LIBELFLIBS): Define.
3765         (HOST_LIBELFINC): Define.
3766         * Makefile.in: Regenerate.
3767         * configure.ac: Add --enable-lto.
3768         Add --with-libelf, --with-libelf-include and --with-libelf-lib.
3769         If --enable-lto is used, add 'lto' to new_enable_languages.
3770         If --enable-lto is used and gold is enabled, add
3771         lto-plugin to configdirs.
3772         * configure: Regenerate.
3774 2009-10-03  Simon Baldwin  <simonb@google.com>
3776         * configure.ac: If --with-system-zlib, suppress local zlib and
3777         pass --with-system-zlib to subdir configure scripts.
3778         * configure: Regenerate.
3780 2009-10-01  Loren J. Rittle <ljrittle@acm.org>
3781             Paolo Bonzini  <bonzini@gnu.org>
3783         * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Use $$s rather than
3784         $(srcdir).
3785         * Makefile.in: Rebuilt.
3787 2009-09-29  Paolo Bonzini  <bonzini@gnu.org>
3789         Sync from gcc:
3790         2009-09-26  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3792         * configure.ac: Update minimum MPC version to 0.7.
3793         * configure: Regenerate.
3795 2009-09-25  Nick Clifton  <nickc@redhat.com>
3797         * configure.ac: Pass any --cache-file=/dev/null option on to
3798         subconfigures.
3799         * configure: Regenerate.
3801 2009-09-23  Nick Clifton  <nickc@redhat.com>
3803         * config.sub, config.guess: Update from upstream sources.
3805 2009-09-22  Loren J. Rittle <ljrittle@acm.org>
3807         * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Remove stray $$r/.
3808         * Makefile.in: Rebuilt.
3810 2009-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3812         PR bootstrap/32272
3813         * configure.ac: Error out if $srcdir isn't '.' but contains
3814         host-${host_noncanonical}.
3815         * configure: Regenerate.
3817 2009-09-21  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3819         * configure.ac: If bootstrapping a combined tree with
3820         --enable-gold, require c++ in stage1_languages.
3821         * configure: Regenerate.
3823         * configure.ac: Also add target_libs of stage1_languages to
3824         bootstrap_target_libs.
3825         * configure: Regenerate.
3827         * configure.ac: Diagnose --enable-build-with-cxx bootstrap
3828         with --enable-languages not containing c++.
3829         * configure: Regenerate.
3831 2009-09-16  Jie Zhang  <jie.zhang@analog.com>
3833         * configure.ac: Disable java and boehm-gc for bfin-*-*.
3834         * configure: Regenerate.
3836 2009-09-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3838         * configure.ac: Do not use $extrasub for replacing @if/@endif
3839         parts in Makefile; instead, use additional arguments to
3840         AC_CONFIG_COMMANDS to do the replacement manually, with several
3841         sed invocations, to avoid HP-UX sed command limits.
3842         * configure: Regenerate.
3844 2009-09-04  Alexandre Oliva  <aoliva@redhat.com>
3846         * configure.ac (with-build-config): Document.  Handle without.
3847         Handle missing argument.
3848         * configure: Rebuilt.
3850 2009-09-03  Alexandre Oliva  <aoliva@redhat.com>
3852         * configure.ac (--with-build-config): New.  Set BUILD_CONFIG.
3853         Default to bootstrap-debug only if compare-debug works.
3854         * configure: Rebuilt.
3855         * Makefile.tpl: Make BUILD_CONFIG configure-configurable.
3856         * Makefile.in: Rebuilt.
3858 2009-09-01  Alexandre Oliva  <aoliva@redhat.com>
3860         * Makefile.tpl (BUILD_CONFIG): Default to bootstrap-debug.
3861         * Makefile.in: Rebuilt.
3863 2009-09-02  Paolo Bonzini  <bonzini@gnu.org>
3865         * Makefile.tpl (AWK): Fix typo.
3866         * Makefile.in: Regenerate.
3868 2009-09-02  Paolo Bonzini  <bonzini@gnu.org>
3870         * configure.ac: Detect awk and sed.
3871         * Makefile.def (flags_to_pass): Add AWK and SED.
3872         * Makefile.tpl (AWK, SED): New.
3873         (BASE_FLAGS_TO_PASS): Add AWK and SED.
3874         * configure: Regenerate.
3875         * Makefile.in: Regenerate.
3877 2009-09-01  Tristan Gingold  <gingold@adacore.com>
3879         * setup.com: Ported to Itanium VMS.  Can also build using DCL scripts.
3880         Remove logical names.
3882 2009-08-31  Dave Korn  <dave.korn.cygwin@gmail.com>
3884         * ltmain.sh (func_normal_abspath): New function.
3885         (func_relative_path): Likewise.
3886         (func_mode_help): Document new -bindir option for link mode.
3887         (func_mode_link): Add new -bindir option, and use it to place
3888         output DLL if specified.
3890 2009-08-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3892         * configure.ac (AC_PREREQ): Bump to 2.64.
3894 2009-08-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3896         * README-maintainer-mode: Point directly to upstream locations
3897         for autoconf, automake, libtool, gettext, instead of copies on
3898         sources.redhat.com.  Document required versions.
3899         * configure.ac: Do not substitute datarootdir, htmldir,
3900         pdfdir, docdir.  Do not process --with-datarootdir,
3901         --with-htmldir, --with-pdfdir, --with-docdir.
3902         * configure: Regenerate.
3904         * configure: Regenerate.
3906         * compile: Sync from Automake 1.11.
3907         * depcomp: Likewise.
3908         * install-sh: Likewise.
3909         * missing: Likewise.
3910         * mkinstalldirs: Likewise.
3911         * ylwrap: Likewise.
3913 2009-08-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3915         * configure.ac: Call AC_DISABLE_OPTION_CHECKING.
3916         (baseargs): Add --disable-option-checking.
3917         * configure: Regenerate.
3919         * Makefile.def (configure-target-libiberty): Depend on
3920         all-binutils and all-ld.
3921         (configure-target-newlib): Likewise.
3922         * Makefile.in: Regenerate.
3924 2009-08-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3926         Sync with GCC, merge:
3928         2009-07-31  Christian Bruel  <christian.bruel@st.com>
3930         * configure.ac (sh*-*-elf): Don't add target-libgloss to noconfigdirs.
3931         * configure: Regenerate.
3933         2009-07-06  Ian Lance Taylor  <iant@google.com>
3935         * configure.ac: Add missing comma in AC_ARG_WITH(boot-libs).
3936         * configure: Rebuild.
3938         2009-06-26  Steve Ellcey  <sje@cup.hp.com>
3940         PR bootstrap/40338
3941         * configure.ac (comparestring): Create new variable.
3942         * Makefile.tpl (comparestring): Use to skip some comparisions.
3943         * configure: Regenerate.
3944         * Makefile.in: Regenerate.
3946         2009-06-23  Ian Lance Taylor  <iant@google.com>
3948         * configure.ac: Add --enable-build-with-cxx.  When set, add c++ to
3949         boot_languages.  Only bootstrap target libraries listed in
3950         target_libs for some boot language.  Add --with-stage1-ldflags,
3951         --with-stage1-libs, --with-boot-ldflags, --with-boot-libs.  Remove
3952         with_host_libstdcxx from ppllibs.  Only add -fkeep-inline-functions
3953         if not building with C++.
3954         * Makefile.def: For target_module libstdc++-v3, set bootstrap=true.
3955         * Makefile.tpl (STAGE1_LDFLAGS, STAGE1_LIBS): New variables.
3956         (POSTSTAGE1_LDFLAGS, POSTSTAGE1_LIBS): New variables.
3957         (HOST_EXPORTS): Add STAGE1_LDFLAGS to LDFLAGS.  Export HOST_LIBS.
3958         (POSTSTAGE1_HOST_EXPORTS): Set CXX and CXX_FOR_BUILD.  Add
3959         POSTSTAGE1_LDFLAGS to LDFLAGS.  Export HOST_LIBS.
3960         (POSTSTAGE1_FLAGS_TO_PASS): Likewise.
3961         * configure, Makefile.in: Rebuild.
3963         2009-06-08  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3965         * configure.ac: Detect MPC in default directory.
3966         * configure: Regenerate.
3968         2009-06-02  Richard Sandiford  <r.sandiford@uk.ibm.com>
3970         * configure.ac (powerpc-*-aix*, rs6000-*-aix*): Add target-newlib
3971         to noconfdirs.
3972         * configure: Regenerate.
3974         2009-05-29  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3976         * Makefile.def: Add MPC support and dependencies.
3977         * configure.ac: Likewise.  Reorganize GMP/MPFR checks.
3979         * Makefile.in, configure: Regenerate.
3981         2009-05-24  Nicolas Roche  <roche@adacore.com>
3983         * Makefile.tpl (compare-target): Skip ./ada/*tools directories.
3984         * Makefile.in: Regenerate.
3986         2009-05-21  Dave Korn  <dave.korn.cygwin@gmail.com>
3988         * configure.ac (cygwin noconfigdirs):  Remove libgcj.
3989         * configure:  Regenerate.
3991         2009-05-07  Dave Korn  <dave.korn.cygwin@gmail.com>
3993         * configure.ac ($with_ppl):  Default to no if not supplied.
3994         ($with_cloog):  Likewise.
3995         configure:  Regenerate.
3997         2009-04-24  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3999         PR bootstrap/39739
4000         * configure.ac (extra_mpfr_configure_flags): Set and AC_SUBST.
4001         * Makefile.def (module=mpfr): Use extra_mpfr_configure_flags.
4003         * configure, Makefile.in: Regenerate.
4005         2009-04-14  Jakub Jelinek  <jakub@redhat.com>
4007         * configure.ac: Change copyright header to refer to version
4008         3 of the GNU General Public License and to point readers at the
4009         COPYING3 file and the FSF's license web page.
4010         * Makefile.def: Likewise.
4011         * Makefile.tpl: Likewise.
4012         * Makefile.in: Regenerate.
4014         2009-04-09  Jack Howarth  <howarth@bromo.med.uc.edu>
4016         * configure.ac: Restore match for darwin9 or later. Use double
4017         brackets since regeneration eats one pair.
4018         * configure: Regenerate.
4020 2009-08-18  Christopher Faylor  <me+cygwin@cgf.cx>
4022         * MAINTAINERS: Perform some obvious fixups.
4024 2009-08-17  Ben Elliston  <bje@au.ibm.com>
4026         * config.sub, config.guess: Update from upstream sources.
4028 2009-08-06  Michael Eager <eager@eagercon.com>
4030         * configure.ac: Add Microblaze target.
4031         * configure: Regenerate.
4033 2009-07-02  Tristan Gingold  <gingold@adacore.com>
4035         * configure.ac: Do not exclude gas for i386-*-darwin.
4036         Add a case for x86_64-*-darwin.
4037         * configure: Regenerate.
4039 2009-06-26  Doug Evans  <dje@sebabeach.org>
4041         * Makefile.def (host_modules): Add cgen.
4042         * Makefile.in: Regenerate.
4043         * configure.ac (host_tools): Add cgen.
4044         * configure: Regenerate.
4046 2009-06-17  Michael Eager <eager@eagercon.com>
4048         * COPYING.LIBGLOSS: Add Xilinx license.
4050 2009-06-15  Ryan Mansfield  <rmansfield@qnx.com>
4052         * configure.ac: Define is_elf for QNX Neutrino targets.
4053         * configure: Regenerate.
4055 2009-06-03  Jerome Guitton  <guitton@adacore.com>
4056             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4058         * Makefile.tpl (all): Avoid a trailing backslash.
4059         * Makefile.in: Regenerate.
4061 2009-06-03  Ben Elliston  <bje@au.ibm.com>
4063         * config.sub, config.guess: Update from upstream sources.
4065 2009-06-02  Alexandre Oliva  <aoliva@redhat.com>
4067         * Makefile.tpl ([+compare-target+]): Compare all stage
4068         directories, rather than just gcc.
4069         * Makefile.in: Rebuilt.
4071 2009-05-28  Doug Kwan  <dougkwan@google.com>
4073         * configure.ac: Support gold for target arm*-*-*.
4074         * configure: Regenerate.
4076 2009-05-27  Alexandre Oliva  <aoliva@redhat.com>
4078         * Makefile.tpl (all): Avoid harmless warning in make all when
4079         gcc-bootstrap is enabled but stage_last does not exist.
4080         * Makefile.in: Rebuilt.
4082 2009-05-25  Tristan Gingold  <gingold@adacore.com>
4084         * setup.com: Complete the file with configuration and build.
4086 2009-05-18  Alexandre Oliva  <aoliva@redhat.com>
4088         PR other/40159
4089         * Makefile.tpl (all): Don't assume gcc-bootstrap and
4090         gcc-no-bootstrap are mutually exclusive.
4091         * Makefile.in: Rebuilt.
4093 2009-05-18  Alexandre Oliva  <aoliva@redhat.com>
4095         PR other/40159
4096         * Makefile.tpl (all): Don't end with unconditional success.
4097         * Makefile.in: Rebuilt.
4099 2009-05-12  Alexandre Oliva  <aoliva@redhat.com>
4101         PR target/37137
4102         * Makefile.def (flags_to_pass): Remove redundant and incomplete
4103         STAGE1_CFLAGS, STAGE2_CFLAGS, STAGE3_CFLAGS, and STAGE4_CFLAGS.
4104         Add FLAGS_FOR_TARGET and BUILD_CONFIG.
4105         (bootstrap_stage): Remove bootstrap-debug custom stages.  Turn
4106         stage_configureflags, stage_cflags and stage_libcflags into
4107         explicit Makefile macros.
4108         * Makefile.tpl (HOST_EXPORTS, EXTRA_HOST_FLAGS): Pass GCJ and
4109         GFORTRAN.
4110         (POSTSTAGE1_HOST_EXPORTS): Add XGCC_FLAGS_FOR_TARGET and TFLAGS to
4111         CC.  Set CC_FOR_BUILD from CC.
4112         (BASE_TARGET_EXPORTS, RAW_CXX_TARGET_EXPORTS,
4113         NORMAL_TARGET_EXPORTS): Move SYSROOT_CFLAGS_FOR_TARGET and
4114         DEBUG_PREFIX_CFLAGS_FOR_TARGET from CFLAGS and CXXFLAGS to
4115         XGCC_FLAGS_FOR_TARGET.  Add it along with TFLAGS to CC, CXX, GCJ,
4116         and GFORTRAN.
4117         (TFLAGS, STAGE_CFLAGS, STAGE_TFLAGS, STAGE_CONFIGURE_FLAGS): New.
4118         (_LIBCFLAGS): Renamed to _TFLAGS.
4119         (do-compare-debug, do-compare3-debug): Drop.
4120         (CC, GCC_FOR_TARGET, CXX_FOR_TARGET, RAW_CXX_FOR_TARGET,
4121         GCJ_FOR_TARGET, GFORTRAN_FOR_TARGET): Remove FLAGS_FOR_TARGET.
4122         (FLAGS_FOR_TARGET, SYSROOT_CFLAGS_FOR_TARGET,
4123         DEBUG_PREFIX_CFLAGS_FOR_TARGET): Move down.
4124         (XGCC_FLAGS_FOR_TARGET): New.
4125         (BASE_FLAGS_TO_PASS): Pass STAGEid_CFLAGS, STAGEid_TFLAGS and TFLAGS.
4126         (EXTRA_HOST_FLAGS): Pass GCJ and GFORTRAN.
4127         (POSTSTAGE1_FLAGS_TO_PASS): Move SYSROOT_CFLAGS_FOR_TARGET and
4128         DEBUG_PREFIX_CFLAGS_FOR_TARGET from CFLAGS, CXXFLAGS, LIBCFLAGS,
4129         LIBCXXFLAGS to XGCC_FLAGS_FOR_TARGET.    Add it along with TFLAGS
4130         to CC, CXX, GCJ, and GFORTRAN.  Pass XGCC_FLAGS_FOR_TARGET and
4131         TFLAGS.
4132         (BUILD_CONFIG): Include if requested.
4133         (all): Set TFLAGS on bootstrap.
4134         (configure-stageid-prefixmodule): Pass TFLAGS, adjust FLAGS.
4135         (all-stageid-prefixmodule): Likewise.
4136         (do-clean, distclean-stageid): Set TFLAGS.
4137         (restrap): Fix whitespace.
4138         * Makefile.in: Rebuilt.
4140 2009-04-25  Eric Botcazou  <ebotcazou@adacore.com>
4142         * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Add GNATBIND.
4143         (POSTSTAGE1_FLAGS_TO_PASS): Pick up exported value for GNATBIND.
4144         * Makefile.in: Regenerate.
4146 2009-04-24  Eli Zaretskii  <eliz@gnu.org>
4148         * config.guess (pc:*:*:*): Return i586-pc-msdosdjgpp, for
4149         consistency with config.sub.  (Update from upstream sources.)
4151 2009-04-21  Joseph Myers  <joseph@codesourcery.com>
4153         * texinfo/texinfo.tex: Update to version 2009-03-28.05.
4155 2009-04-17  Ben Elliston  <bje@au.ibm.com>
4157         * config.sub, config.guess: Update from upstream sources.
4159 2009-04-15  Anthony Green  <green@moxielogic.com>
4161         * configure.ac: Add moxie support.
4162         * configure: Rebuilt.
4164 2009-04-09  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4166         * configure.ac: Bump minimum GMP/MPFR versions to 4.2 and 2.3.1.
4167         * configure: Regenerate.
4169 2009-04-09  H.J. Lu  <hongjiu.lu@intel.com>
4171         PR gas/10039
4172         * configure.ac: Require texinfo 4.7.
4173         * configure: Regenerated.
4175 2009-04-09  Steve Ellcey  <sje@cup.hp.com>
4177         * Makefil.def (languages): New entries.
4178         * Makefile.tpl (check-gcc-*): New generic target.
4179         * Makefile.in: Regenerate.
4181 2009-03-27  Eli Zaretskii  <eliz@gnu.org>
4183         * djunpack.bat: Use ".." quoting in Sed command, for the sake of
4184         Windows builds of Sed.
4186 2009-03-18  Tom Tromey  <tromey@redhat.com>
4188         * configure: Rebuild.
4189         * configure.ac (host_libs): Add libiconv.
4190         * Makefile.in: Rebuild.
4191         * Makefile.def (host_modules): Add libiconv.
4192         (configure-gdb, all-gdb): Depend on libiconv.
4194 2009-03-16  Tristan Gingold  <gingold@adacore.com>
4196         * configure.ac: Treat gdb as supported on x86_64-darwin.
4197         * configure: Regenerate.
4199 2009-03-16  Joseph Myers  <joseph@codesourcery.com>
4201         Merge from GCC:
4203         2009-03-16  Joseph Myers  <joseph@codesourcery.com>
4205         * configure.ac (--with-host-libstdcxx): New option.
4206         * configure: Regenerate.
4208         2009-01-29  Robert Millan  <rmh@aybabtu.com>
4210         * configure.ac: Recognize GNU/kOpenSolaris (*-*-kopensolaris*-gnu).
4211         * configure: Regenerate.
4213         2009-01-12  Sebastian Pop <sebastian.pop@amd.com>
4215         PR tree-optimization/38515
4216         * configure.ac (cloog-polylib): Removed.
4217         (with_ppl, with_cloog): Test for "no".
4218         * configure: Regenerated.
4220 2009-03-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4222         Backport from git Libtool:
4224         2009-01-19  Robert Millan  <rmh@aybabtu.com>
4225         Support GNU/kOpenSolaris.
4226         * libltdl/m4/libtool.m4 (_LT_SYS_DYNAMIC_LINKER)
4227         (_LT_CHECK_MAGIC_METHOD, _LT_COMPILER_PIC, _LT_LINKER_SHLIBS)
4228         (_LT_LANG_CXX_CONFIG) [kopensolaris*-gnu]: Recognize
4229         GNU/kOpenSolaris.
4231 2009-02-05  Andreas Schwab  <schwab@suse.de>
4233         * Makefile.tpl (stage_last): Define $r and $s before using
4234         $(RECURSE_FLAGS_TO_PASS).
4235         * Makefile.in: Regenerate
4237 2009-01-21  Jeff Johnston  <jjohnstn@redhat.com>
4239         * COPYING.NEWLIB: Add ARM license.
4241 2009-01-16  Alan Modra  <amodra@bigpond.net.au>
4243         * Makefile.def (configure-opcodes): Depend on configure-libiberty.
4244         (all-opcodes): Depend on all-libiberty.
4245         * Makefile.in: Regenerate.
4247 2009-01-15  Douglas B Rupp  <rupp@gnat.com>
4249         * configure.ac (ia64*-*-*vms*): Add case with no gdb or ld support.
4250         * configure: Regenerate.
4252 2008-12-18  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4254         Backport link test fix from upstream Libtool:
4256         * libltdl.m4 (_LT_SYS_DYNAMIC_LINKER, _LT_LINKER_SHLIBS):
4257         Add cache variables to tests that require the linker to work.
4258         For shlibpath_overrides_runpath, this also changes the semantics
4259         to let the result from the C compiler take precedence.
4260         compiler take precedence.
4262 2008-12-02  Ben Elliston  <bje@au.ibm.com>
4264         * config.sub, config.guess: Update from upstream sources.
4266 2008-12-17  Jeff Johnston  <jjohnstn@redhat.com>
4268         * COPYING.NEWLIB: Updated.
4269         * COPYING.LIBGLOSS: Ditto.
4271 2008-12-16  Paolo Bonzini  <bonzini@gnu.org>
4273         Sync with GCC:
4275         2008-12-12  Sebastian Pop  <sebastian.pop@amd.com>
4277         * configure.ac (ppllibs): Add by default the lib flags.
4278         * configure: Regenerate.
4280         2008-12-04  Jack Howarth  <howarth@bromo.med.uc.edu>
4282         * configure.ac: Add double brackets on darwin[912].
4283         * configure: Regenerate.
4285         2008-12-02  Jack Howarth  <howarth@bromo.med.uc.edu>
4287         * configure.ac: Expand to darwin10 and later.
4288         * configure: Regenerate.
4290 2008-12-02  Andreas Schwab  <schwab@suse.de>
4292         * Makefile.def: configure-target-boehm-gc depends on
4293         all-target-libstdc++-v3.
4294         * Makefile.in: Regenerate.
4296 2008-12-02  Ben Elliston  <bje@au.ibm.com>
4298         * config.sub, config.guess: Update from upstream sources.
4300 2008-11-27  Joseph Myers  <joseph@codesourcery.com>
4302         Merge from GCC:
4304         2007-12-02  Matthias Klose  <doko@ubuntu.com>
4306         * config-ml.in: Remove 64bit configure tests.
4308         2008-05-14  Rafael Espindola  <espindola@google.com>
4310         * config-ml.in: don't handle --enable-shared and --enable-static.
4312         2008-09-02  Sebastian Pop  <sebastian.pop@amd.com>
4313             Tobias Grosser  <grosser@fim.uni-passau.de>
4314             Jan Sjodin  <jan.sjodin@amd.com>
4315             Harsha Jagasia  <harsha.jagasia@amd.com>
4316             Dwarakanath Rajagopal  <dwarak.rajagopal@amd.com>
4317             Konrad Trifunovic  <konrad.trifunovic@inria.fr>
4318             Adrien Eliche  <aeliche@isty.uvsq.fr>
4320         Merge from graphite branch.
4321         * configure: Regenerate.
4322         * Makefile.in: Regenerate.
4323         * configure.ac (host_libs): Add ppl and cloog.
4324         Add checks for PPL and CLooG.
4325         * Makefile.def (ppl, cloog): Added modules and dependences.
4326         * Makefile.tpl (PPLLIBS, PPLINC, CLOOGLIBS, CLOOGINC): New.
4327         (HOST_PPLLIBS, HOST_PPLINC, HOST_CLOOGLIBS, HOST_CLOOGINC): New.
4329         2008-09-03  Richard Guenther  <rguenther@suse.de>
4331         * configure.ac: Always pass -DCLOOG_PPL_BACKEND to the
4332         cloog test.
4333         * configure: Re-generate.
4335         2008-09-03  Sebastian Pop  <sebastian.pop@amd.com>
4337         * configure.ac (--with-cloog-polylib): New.
4338         (--disable-cloog-version-check): New.
4339         (--disable-ppl-version-check): New.
4340         * configure: Re-generate.
4342         2008-09-05  Richard Guenther  <rguenther@suse.de>
4344         * configure.ac: Initialize clooglibs to -lcloog.
4345         * configure: Re-generate.
4347         2008-10-13  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4349         * configure.ac (MPFR check): Bump minimum version to 2.3.0 and
4350         recommended version to 2.3.2.
4352         * configure: Regenerate.
4354         2008-10-31  Ben Elliston  <bje@au.ibm.com>
4356         * configure.ac (spu-*-*): Remove special case.
4357         * configure: Regenerate.
4359         Complete comment text from GCC version of:
4361         2008-08-31  Aaron W. LaFramboise  <aaronavay62@aaronwl.com>
4363         * configure.ac (RPATH_ENVVAR): Use PATH on Windows.
4364         (GCC_SHLIB_SUBDIR): New.
4365         * Makefile.tpl (HOST_LIB_PATH_gcc): Use GCC_SHLIB_SUBDIR.
4366         * configure: Regenerate.
4367         * Makefile.in: Regenerate.
4369 2008-11-27  Tristan Gingold  <gingold@adacore.com>
4371         * configure.ac: Build gdb for i?86-*-darwin*
4372         * configure: Regenerated.
4374 2008-11-14  Daniel Jacobowitz  <dan@codesourcery.com>
4376         PR bootstrap/38014
4377         PR bootstrap/37923
4379         Revert:
4381         2008-10-24  Daniel Jacobowitz  <dan@codesourcery.com>
4383         * Makefile.tpl (HOST_EXPORTS): Correct CPPFLAGS typo.
4384         * Makefile.in: Regenerated.
4386         2008-10-22  Daniel Jacobowitz  <dan@codesourcery.com>
4388         PR gdb/921
4389         PR gdb/1646
4390         PR gdb/2175
4391         PR gdb/2176
4393         * Makefile.def (flags_to_pass): Add CPPFLAGS_FOR_BUILD and CPPFLAGS.
4394         * Makefile.tpl (BUILD_EXPORTS): Set CPPFLAGS.
4395         (EXTRA_BUILD_FLAGS): Correct typo.  Pass CPPFLAGS.
4396         (HOST_EXPORTS): Pass CPPFLAGS.
4397         (CPPFLAGS_FOR_BUILD, CPPFLAGS, CPPFLAGS_FOR_TARGET): Define.
4398         (LDFLAGS_FOR_TARGET): Initialize from configure script.
4399         (EXTRA_TARGET_FLAGS): Set CPPFLAGS.
4400         * Makefile.in, configure: Regenerated.
4401         * configure.ac: Set CPPFLAGS_FOR_TARGET, LDFLAGS_FOR_TARGET,
4402         and CPPFLAGS_FOR_BUILD.
4404 2008-10-29  Stefan Schulze Frielinghaus  <xxschulz@de.ibm.com>
4406         * configure.ac [spu-*-*]: Do not set skipdirs.
4407         * configure: Re-generate.
4409 2008-10-24  Daniel Jacobowitz  <dan@codesourcery.com>
4411         * Makefile.tpl (HOST_EXPORTS): Correct CPPFLAGS typo.
4412         * Makefile.in: Regenerated.
4414 2008-10-22  Daniel Jacobowitz  <dan@codesourcery.com>
4416         PR gdb/921
4417         PR gdb/1646
4418         PR gdb/2175
4419         PR gdb/2176
4421         * Makefile.def (flags_to_pass): Add CPPFLAGS_FOR_BUILD and CPPFLAGS.
4422         * Makefile.tpl (BUILD_EXPORTS): Set CPPFLAGS.
4423         (EXTRA_BUILD_FLAGS): Correct typo.  Pass CPPFLAGS.
4424         (HOST_EXPORTS): Pass CPPFLAGS.
4425         (CPPFLAGS_FOR_BUILD, CPPFLAGS, CPPFLAGS_FOR_TARGET): Define.
4426         (LDFLAGS_FOR_TARGET): Initialize from configure script.
4427         (EXTRA_TARGET_FLAGS): Set CPPFLAGS.
4428         * Makefile.in, configure: Regenerated.
4429         * configure.ac: Set CPPFLAGS_FOR_TARGET, LDFLAGS_FOR_TARGET,
4430         and CPPFLAGS_FOR_BUILD.
4432 2008-09-29  Peter O'Gorman  <pogma@thewrittenword.com>
4434         * libtool.m4: Update to libtool 2.2.6.
4435         * lt~obsolete.m4: Update to libtool 2.2.6.
4436         * ltmain.sh: Update to libtool 2.2.6.
4437         * ltsugar.m4: Update to libtool 2.2.6.
4438         * ltversion.m4: Update to libtool 2.2.6.
4439         * ltoptions.m4: Update to libtool 2.2.6.
4440         * ltgcc.m4: Update to match changes from libtool 2.2.6.
4442 2008-08-31  Aaron W. LaFramboise  <aaronavay62@aaronwl.com>
4444         * configure.ac (RPATH_ENVVAR): Use PATH on Windows.
4445         (GCC_SHLIB_SUBDIR): New.
4446         * Makefile.tpl (HOST_LIB_PATH_gcc): Use GCC_SHLIB_SUBDIR.
4447         * configure: Regenerate.
4448         * Makefile.in: Regenerate.
4450 2008-08-28  Tristan Gingold  <gingold@adacore.com>
4452         * configure.ac (powerpc-*-darwin*, i?86-*-darwin*,x86_64-*-darwin9):
4453         Enable bfd, binutils and opcodes.
4454         * configure: Regenerate.
4456 2008-08-16  Nicolas Roche  <roche@adacore.com>
4458         * Makefile.tpl: Add BOOT_ADAFLAGS.
4459         * Makefile.in: Regenerate.
4461 2008-08-16  Richard Sandiford  <rdsandiford@googlemail.com>
4463         * configure.ac (mips*-*-*linux*, mips*-*-gnu*): Use mt-mips-gnu.
4464         * configure: Regenerate.
4466 2008-07-30 Paolo Bonzini  <bonzini@gnu.org>
4468         Sync with gcc:
4469         2008-07-30 Paolo Bonzini  <bonzini@gnu.org>
4471         * configure.ac: Add makefile fragments for hpux.
4472         * Makefile.def (flags_to_pass): Add ADA_CFLAGS.
4473         * Makefile.tpl (HOST_EXPORTS): Pass ADA_CFLAGS.
4474         * configure: Regenerate.
4475         * Makefile.in: Regenerate.
4477         2008-06-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4479         * Makefile.tpl ($(srcdir)/configure): Update dependencies.
4480         * Makefile.in: Regenerate.
4481         * configure: Regenerate.
4483 2008-06-18  Ian Lance Taylor  <iant@google.com>
4485         * src-release (BINUTILS_SUPPORT_DIRS): Remove mkdep and depcomp.
4487         * src-release (BINUTILS_SUPPORT_DIRS): Add depcomp.
4489 2008-06-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4491         * configure: Regenerate.
4493 2008-06-16  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4495         * configure.ac: Set TOPLEVEL_CONFIGURE_ARGUMENTS early, when
4496         "$@" is still intact with both Autoconf 2.59 and 2.62.
4497         * configure: Regenerate.
4499 2008-06-16  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4501         * Makefile.tpl: Fix comment errors.
4502         * Makefile.in: Regenerate.
4504 2008-06-13  Julian Brown  <julian@codesourcery.com>
4506         * configure.ac (arm*-*-linux-gnueabi): Don't disable building
4507         of libobjc for ARM EABI Linux.
4508         * configure: Regenerate.
4510 2008-06-12  David S. Miller  <davem@davemloft.net>
4511             David Edelsohn  <edelsohn@gnu.org>
4513         * configure.ac: Add powerpc*-*-* to gold supported targets.
4514         * configure: Regenerate.
4516 2008-06-08  Joseph Myers  <joseph@codesourcery.com>
4518         PR tree-optimization/36218
4519         * Makefile.def (flags_to_pass): Add LDFLAGS_FOR_BUILD.
4520         * Makefile.tpl (EXTRA_BUILD_FLAGS): Define.
4521         (all prefix="build-"): Pass them to build-system sub-makes.
4522         * Makefile.in: Regenerate.
4524 2008-05-16  Daniel Jacobowitz  <dan@codesourcery.com>
4526         * src-release (DEVO_SUPPORT): Add ChangeLog, MAINTAINERS,
4527         README-maintainer-mode, lt~obsolete.m4, ltgcc.m4, depcomp,
4528         mkdep, and compile.  Update comments.
4529         (ETC_SUPPORT): Add ChangeLog and update comments.
4531 2008-05-11  Ian Lance Taylor  <iant@google.com>
4533         * src-release (BINUTILS_SUPPORT_DIRS): Add elfcpp and gold.
4535 2008-04-18  Paolo Bonzini  <bonzini@gnu.org>
4537         Sync with gcc:
4538         2008-04-18  Paolo Bonzini  <bonzini@gnu.org>
4540         PR bootstrap/35457
4541         * configure.ac: Include override.m4.
4542         * configure: Regenerate.
4544         2008-04-18  Paolo Bonzini  <bonzini@gnu.org>
4546         * Makefile.tpl (restrap): Call `make all' using double-colon rules.
4547         * Makefile.in: Regenerate.
4549         2008-04-11  Eric B. Weddington  <eweddington@cso.atmel.com>
4551         * configure.ac: Do not build libssp for the AVR.
4552         * configure: Regenerate.
4554 2008-04-18  Nick Clifton  <nickc@redhat.com>
4556         * MAINTAINERS: Replace reference to configure.in with reference to
4557         configure.ac.
4559 2008-04-18  M R Swami Reddy <MR.Swami.Reddy@nsc.com>
4561         * configure.ac (cr16-*-*): Add case for cr16 target and include gdb
4562         as nonconfigurable directories list.
4563         * configure: Regenerate.
4565 2008-04-14  David S. Miller  <davem@davemloft.net>
4567         * configure.ac: Add sparc*-*-* to gold supported targets.
4568         * configure: Regenerate.
4570 2008-04-14  Ben Elliston  <bje@au.ibm.com>
4572         * config.sub, config.guess: Update from upstream sources.
4574 2008-04-12  Hans-Peter Nilsson  <hp@axis.com>
4576         * Makefile.tpl <gcc>: Error early unless at least GNU make 3.80.
4577         * Makefile.in: Regenerate.
4579 2008-04-07  Ian Lance Taylor  <iant@google.com>
4581         * Makefile.def: check-gold depends upon all-binutils.
4582         * Makefile.in: Regenerate.
4584 2008-04-04  Nick Clifton  <nickc@redhat.com>
4586         PR binutils/4334
4587         * configure.ac: Run ACX_CHECK_CYGWIN_CAT_WORKS for cygwin hosted
4588         builds.
4589         * configure: Regenerate.
4591 2008-04-04  NightStrike  <NightStrike@gmail.com>
4593         PR other/35151
4594         * configure.ac: Combine rules for mingw32 and mingw64.
4595         * configure: Regenerate.
4597 2008-03-27  Paolo Bonzini  <bonzini@gnu.org>
4599         * Makefile.tpl (PICFLAG, PICFLAG_FOR_TARGET): Remove.
4600         * Makefile.in: Regenerate.
4602 2008-03-20  Ian Lance Taylor  <iant@google.com>
4604         * configure.ac: Add support for --enable-gold.
4605         * Makefile.def: Add gold as a directory like ld.
4606         * configure, Makefile.in: Regenerate.
4608 2008-03-19  Andreas Krebbel  <krebbel1@de.ibm.com>
4610         * opcodes/s390-mkopc.c (s390_opcode_cpu_val): S390_OPCODE_Z10 added.
4611         (s390_cond_extensions): Reduced extensions to the compare related.
4612         (main): z10 cpu type option added.
4613         (expandConditionalJump): Renamed to ...
4614         (insertExpandedMnemonic): ... this.
4616         * opcodes/s390-opc.c: Re-group the operand format makros.
4617         (INSTR_RIE_RRPU, INSTR_RIE_RRP0, INSTR_RIE_RUPI,
4618         INSTR_RIE_R0PI, INSTR_RIE_RUPU, INSTR_RIE_R0PU, INSTR_RIE_R0IU,
4619         INSTR_RIE_R0I0, INSTR_RIE_R0UU, INSTR_RIE_R0U0,
4620         INSTR_RIE_RRUUU, INSTR_RIS_RURDI, INSTR_RIS_R0RDI, INSTR_RIS_RURDU,
4621         INSTR_RIS_R0RDU, INSTR_RRF_U0RR, INSTR_RRF_00RR, INSTR_RRS_RRRDU,
4622         INSTR_RRS_RRRD0, INSTR_RXY_URRD, INSTR_SIY_IRD, INSTR_SIL_RDI,
4623         INSTR_SIL_RDU): New instruction formats added.
4624         (MASK_RIE_RRPU, MASK_RIE_RRP0, MASK_RIE_RUPI, MASK_RIE_R0PI,
4625         MASK_RIE_RUPU, MASK_RIE_R0PU, MASK_RIE_R0IU, MASK_RIE_R0I0,
4626         MASK_RIE_R0UU, MASK_RIE_R0U0, MASK_RIE_RRUUU, MASK_RIS_RURDI,
4627         MASK_RIS_R0RDI, MASK_RIS_RURDU, MASK_RIS_R0RDU, MASK_RRF_U0RR,
4628         MASK_RRF_00RR, MASK_RRS_RRRDU, MASK_RRS_RRRD0, MASK_RXY_URRD,
4629         MASK_SIY_IRD, MASK_SIL_RDI, MASK_SIL_RDU): New instruction format
4630         masks added.
4631         (s390_opformats): New formats added "ris", "rrs", "sil".
4632         * opcodes/s390-opc.txt: Add the conditional jumps with the
4633         extensions removed from automatic expansion in s390-mkopc.c manually.
4634         (asi - trtre): Add new System z10 EC instructions.
4635         * include/opcode/s390.h (s390_opcode_cpu_val): S390_OPCODE_Z10 added.
4637 2008-03-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4639         * configure.ac: m4_include config/proginstall.m4.
4640         * configure: Regenerate.
4642 2008-03-16  Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4644         Backport from upstream Libtool:
4646         2007-10-12  Eric Blake  <ebb9@byu.net>
4648         Deal with Autoconf 2.62's semantic change in m4_append.
4649         * ltsugar.m4 (lt_append): Replace broken versions of
4650         m4_append.
4651         (lt_if_append_uniq): Don't require separator to be overquoted,
4652         and avoid broken m4_append.
4653         (lt_dict_add): Fix typo.
4654         * libtool.m4 (_LT_DECL): Don't overquote separator.
4656 2008-03-13  David Edelsohn  <edelsohn@gnu.org>
4658         * config.rpath: Add AIX 6 support.
4660 2008-03-13  Paolo Bonzini  <bonzini@gnu.org>
4662         * Makefile.def (stageprofile).  Remove -fprofile-generate
4663         from stage_libcflags.
4664         * Makefile.in: Regenerate.
4666 2008-03-13  Ben Elliston  <bje@au.ibm.com>
4668         * config.sub, config.guess: Update from upstream sources.
4670 2008-03-06  Florian Krohm  <fkrohm@us.ibm.com>
4672         * s390-opc.c (INSTR_RSL_R0RD): Fix operands.
4673         * s390-opc.txt (cmpsc): Duplicate entry removed.
4674         (dxr, sqdr, sqer, cxfbr, cdfbr, cefbr, lzer, lzdr, lzxr,
4675         cegbr, cdgbr, cxgbr, cegr, cdgr, cxgr, cxfr, cdfr, cefr, fixr, fidr,
4676         fier, cu42, cu41): Fix operand format.
4678 2008-02-20  Paolo Bonzini  <bonzini@gnu.org>
4680         PR bootstrap/32009
4681         PR bootstrap/32161
4683         * configure.ac (CFLAGS_FOR_TARGET, CXXFLAGS_FOR_TARGET): Compute here.
4684         * configure: Regenerate.
4686         * Makefile.def: Define stage_libcflags for all bootstrap stages.
4687         * Makefile.tpl (BOOT_LIBCFLAGS, STAGE2_LIBCFLAGS, STAGE3_LIBCFLAGS,
4688         STAGE4_LIBCFLAGS): New.
4689         (CFLAGS_FOR_TARGET, CXXFLAGS_FOR_TARGET): Subst from autoconf, without
4690         $(SYSROOT_CFLAGS_FOR_TARGET) and $(DEBUG_PREFIX_CFLAGS_FOR_TARGET).
4691         (BASE_TARGET_EXPORTS): Append them here to C{,XX}FLAGS.
4692         (EXTRA_TARGET_FLAGS): Append them here to {LIB,}C{,XX}FLAGS.
4693         (configure-stage[+id+]-[+prefix+][+module+]): Pass stage_libcflags
4694         for target modules.  Don't export LIBCFLAGS.
4695         (all-stage[+id+]-[+prefix+][+module+]): Pass stage_libcflags; pass
4696         $(BASE_FLAGS_TO_PASS) where [+args+] was passed, and [+args+] after
4697         the overridden CFLAGS_FOR_TARGET and CXXFLAGS_FOR_TARGET.
4698         (invocations of `all'): Replace $(TARGET_FLAGS_TO_PASS) with
4699         $(EXTRA_TARGET_FLAGS), $(FLAGS_TO_PASS) with $(EXTRA_HOST_FLAGS).
4700         * Makefile.in: Regenerate.
4702 2008-02-16  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4704         PR libgcj/33085
4705         * libtool.m4 (_LT_COMPILER_PIC) [ mingw, cygwin ] <GCJ>:
4706         Do not use -DDLL_EXPORT.  Backport from upstream.
4708 2008-02-14  Nick Clifton  <nickc@redhat.com>
4710         Import this patch from gcc:
4711         2008-01-24  David Edelsohn  <edelsohn@gnu.org>
4713         * libtool.m4: Backport AIX 6 support from ToT Libtool.
4715 2008-02-02  Hans-Peter Nilsson  <hp@axis.com>
4717         * configure.ac: Enable fortran for cris-*-elf and crisv32-*-elf.
4718         * configure: Regenerate.
4720 2008-01-31  Marc Gauthier  <marc@tensilica.com>
4722         * configure.ac (xtensa*-*-*): Recognize processor variants.
4723         * configure: Regenerate.
4725 2008-01-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4727         PR bootstrap/34922
4728         * configure.ac (PARSE_ARGS): Push suitable setting of
4729         ac_subdirs_all, for `./configure --help=recursive'.
4730         Handle `+' in generic toplevel directory disabling.
4731         * configure: Regenerate.
4733 2008-01-23  Ben Elliston  <bje@au.ibm.com>
4735         * config.sub, config.guess: Update from upstream sources.
4737 2008-01-08  Ben Elliston  <bje@au.ibm.com>
4739         * config.sub, config.guess: Update from upstream sources.
4741 2007-12-19  Jeff Johnston  <jjohnstn@redhat.com>
4743         * COPYING.LIBGLOSS: Update default copyright.
4745 2007-12-19  Jeff Johnston  <jjohnstn@redhat.com>
4747         * COPYING.NEWLIB: Update default copyright.
4749 2007-12-17  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4751         * configure.ac: Change required MPFR from 2.2.0 -> 2.2.1.
4752         Change recommended MPFR from 2.2.1 > 2.3.0.
4753         * configure: Regenerate.
4755 2007-12-13  Richard Sandiford  <rsandifo@nildram.co.uk>
4757         * Makefile.tpl (CFLAGS_FOR_TARGET): Add -g.
4758         (CXXFLAGS_FOR_TARGET): Add -O2 -g.
4759         * Makefile.in: Regenerate.
4761 2007-12-10  Andreas Tobler  <a.tobler@schweiz.org>
4763         * configure.ac: Enable libjava for x86_64-*-darwin9.
4764         * configure: Regenerate.
4766 2007-12-05  Ben Elliston  <bje@au.ibm.com>
4768         * config.sub, config.guess: Update from upstream sources.
4770 2007-11-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4772         * config-ml.in: Robustify against white space in absolute file
4773         names.
4775         * config-ml.in (multi-clean): Substitute ${Makefile}.
4776         Remove superfluous ${Makefile} in list.
4778 2007-10-23  Daniel Jacobowitz  <dan@codesourcery.com>
4780         * Makefile.def (dependencies): Make configure-gdb depend on
4781         all-intl.
4782         * Makefile.in: Regenerated.
4784 2007-10-15  Patrick Mansfield <patmans@us.ibm.com>
4786         * Makefile.def: To avoid problems running with parallel makes,
4787         build newlib before libgloss so that target specific header
4788         files are availble.
4789         * Makefile.in: Regenerate.
4791 2007-10-11  Daniel Jacobowitz  <dan@codesourcery.com>
4793         * Makefile.def (dependencies): Add all-gdb -> all-libdecnumber.
4794         * Makefile.in: Regenerate.
4796 2007-10-11  Daniel Jacobowitz  <dan@codesourcery.com>
4798         * src-release (GDB_SUPPORT_DIRS): Add libdecnumber.
4799         * libdecnumber: New directory, imported from GCC.
4801 2007-10-08  Mike Frysinger  <vapier@gentoo.org>
4803         * configure.ac (CFLAGS_FOR_BUILD, CXXFLAGS_FOR_BUILD,
4804         LDFLAGS_FOR_BUILD): Default them to host flags only for $host = $build.
4805         Set default CXXFLAGS_FOR_BUILD to CXXFLAGS, not CFLAGS.  Set default
4806         LDFLAGS_FOR_BUILD to LDFLAGS, not CFLAGS.
4807         * configure: Regenerate.
4809 2007-10-01  Paolo Bonzini  <bonzini@gnu.org>
4811         * Makefile.tpl (AR_FOR_BUILD, AS_FOR_BUILD, CXX_FOR_BUILD,
4812         DLLTOOL_FOR_BUILD, GCJ_FOR_BUILD, GFORTRAN_FOR_BUILD,
4813         LDFLAGS_FOR_BUILD, LD_FOR_BUILD, NM_FOR_BUILD, RANLIB_FOR_BUILD,
4814         WINDMC_FOR_BUILD, WINDRES_FOR_BUILD): Use autoconf substitutions.
4815         * configure.ac: Default them to host tools for $host = $build.
4816         Subst them.
4818         * configure: Regenerate.
4819         * Makefile.in: Regenerate.
4821 2007-09-20  Richard Sandiford  <rsandifo@nildram.co.uk>
4823         * configure.ac (mipsisa*-*-elfoabi*): New stanza.
4824         * configure: Regenerate.
4826 2007-09-19  Benjamin Kosnik  <bkoz@redhat.com>
4828         * configure.ac (TOPLEVEL_CONFIGURE_ARGUMENTS): Move libgomp before
4829         libstdc++.
4830         * Makefile.def: Add libgomp config as a maybe dependency for libstdc++.
4831         * configure: Regenerate.
4832         * Makefile.in: Regenerate.
4834 2007-09-17  Andreas Schwab  <schwab@suse.de>
4836         * configure.ac: Raise minimum makeinfo version to 4.6.
4837         * configure: Regenerate.
4839 2007-09-15  Alan Modra  <amodra@bigpond.net.au>
4841         * configure.ac: Correct makeinfo version check.
4842         * configure: Regenerate.
4844 2007-09-14  Richard Sandiford  <richard@codesourcery.com>
4846         * configure.ac (mips*-sde-elf*): New stanza.  Add target-libiberty
4847         to $skipdirs and only disable gprof for newlib.  Use the normal
4848         mips*-elf* handling in other respects.
4849         * configure: Regnerate.
4851 2007-09-12  David Daney  <ddaney@avtrex.com>
4853         * configure.ac: Remove mips64*-*-linux* noconfigdirs section, thus
4854         enabling libgcj.
4855         * configure: Regenerate.
4857 2007-09-12  Richard Guenther  <rguenther@suse.de>
4859         * configure.ac (--enable-stage1-checking): If neither --enable-checking
4860         nor --disable-checking is provided also turn on yes and types
4861         checking for stage1.
4862         * configure: Re-generate.
4864 2007-09-11  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
4866         PR target/33281
4867         * configure.ac: Use config/mh-mingw on mingw.
4868         * configure: Regenerate.
4870 2007-09-10  Rask Ingemann Lambertsen  <rask@sygehus.dk>
4872         PR other/32154
4873         * configure.ac: For libgloss targets, point the linker to the linker
4874         script, startup code and simulator library.
4875         * configure: Regenerate.
4877 2007-09-09  Andrew Haley  <aph@redhat.com>
4879         * configure.ac (noconfigdirs): Remove target-libffi and
4880         target-libjava.
4882 2007-08-29  Nick Clifton  <nickc@redhat.com>
4884         * config.sub, config.guess: Update from upstream sources.
4886 2007-08-21  Richard Guenther  <rguenther@suse.de>
4888         * configure.ac: Add types checking to stage1 checking flags.
4889         * configure: Regenerate.
4891 2007-08-18  Paul Brook  <paul@codesourcery.com>
4892             Joseph Myers  <joseph@codesourcery.com>
4894         * Makefile.tpl (DEBUG_PREFIX_CFLAGS_FOR_TARGET): New.
4895         (CFLAGS_FOR_TARGET, CXXFLAGS_FOR_TARGET): Include it.
4896         * Makefile.in: Regenerate.
4897         * configure.ac (--with-debug-prefix-map): New.
4898         * configure: Regenerate.
4900 2007-08-17  Richard Sandiford  <richard@codesourcery.com>
4901             Nigel Stephens  <nigel@mips.com>
4903         * configure.ac (mips*-sde-elf*): New stanza.  Use config/mt-sde
4904         as target_makefile_frag.
4905         * configure: Regenerate.
4907 2007-08-16  Alexandre Oliva  <aoliva@redhat.com>
4909         * Makefile.def (STAGE2_CFLAGS, STAGE3_CFLAGS, STAGE4_CFLAGS):
4910         Add to flags_to_pass.  Adjust uses of BOOT_CFLAGS.
4911         (bootstrap2-debug, bootstrap-debug): New bootstrap stages.
4912         * Makefile.tpl (STAGE2_CFLAGS, STAGE3_CFLAGS, STAGE4_CFLAGS): New.
4913         (do-compare, do-compare3, do-compare-debug): New.
4914         ([+compare-target+]): Use them.
4916 2007-08-16  Alexandre Oliva  <aoliva@redhat.com>
4918         * Makefile.def (STAGE2_CFLAGS, STAGE3_CFLAGS, STAGE4_CFLAGS):
4919         Add to flags_to_pass.  Adjust uses of BOOT_CFLAGS.
4920         (bootstrap2-debug, bootstrap-debug): New bootstrap stages.
4921         * Makefile.tpl (STAGE2_CFLAGS, STAGE3_CFLAGS, STAGE4_CFLAGS): New.
4922         (do-compare, do-compare3, do-compare-debug): New.
4923         ([+compare-target+]): Use them.
4925 2007-08-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4926             Ben Elliston  <bje@au.ibm.com>
4928         * configure.ac (TOPLEVEL_CONFIGURE_ARGUMENTS, baseargs): Pass
4929         --silent if $silent.
4930         * configure: Regenerate.
4932 2007-08-12  Daniel Jacobowitz  <dan@codesourcery.com>
4934         * src-release (DEVO_SUPPORT): Add COPYING3 and COPYING3.LIB.
4936 2007-07-17  Nick Clifton  <nickc@redhat.com>
4938         * COPYING3: New file.  Contains version 3 of the GNU General
4939         Public License.
4940         * COPYING3.LIB: New file.  Contains version 3 of the GNU
4941         Lesser General Public License.
4943 2007-07-11  Bernd Schmidt  <bernd.schmidt@analog.com>
4945         * configure.ac: Fix my previous change to really match GCC.
4946         * configure: Regenerate.
4948 2007-07-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4950         * configure.ac: Rewrite 'configure --help' strings to look nicer.
4951         * configure: Regenerate.
4953 2007-07-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4955         * configure.ac: Add some missing m4 quotation.
4956         * configure: Regenerate.
4958 2007-07-09  Kai Tietz   <kai.tietz@onevision.com>
4960         * Makefile.def: Add windmc tool to build.
4961         * Makefile.tpl: Likewise.
4962         * configure.ac: Likewise.
4963         * Makefile.in: Regenerate.
4964         * configure: Regenerate.
4966 2007-07-05  H.J. Lu  <hongjiu.lu@intel.com>
4968         * lt~obsolete.m4: New. Import from 20070318 libtool.
4970 2007-06-29  Bernd Schmidt  <bernd.schmidt@analog.com>
4972         * configure.ac: Don't add target-libmudflap to noconfigdirs for
4973         uclinux and linux-uclibc targets.
4974         * configure: Regenerate.
4976 2007-06-28  DJ Delorie  <dj@redhat.com>
4978         * configure.ac (arm*-*-linux-gnueabi): Don't build libgloss if we're
4979         not building newlib.
4980         * configure: Regenerated.
4982 2007-06-22  Daniel Jacobowitz  <dan@codesourcery.com>
4984         * src-release (DEVO_SUPPORT): Correct typos.
4986 2007-06-18  Daniel Jacobowitz  <dan@codesourcery.com>
4988         * Makefile.def: Add dependency from configure-gdb to all-bfd.
4989         * Makefile.in: Regenerated.
4991 2007-06-14  Paolo Bonzini  <bonzini@gnu.org>
4993         * Makefile.tpl (cleanstrap): Don't delete the toplevel Makefile.
4994         (distclean-stage[+id+]): Possibly delete stage_last.
4995         * Makefile.in: Regenerate.
4997 2007-06-07  Ben Elliston  <bje@au.ibm.com>
4999         * config.sub, config.guess: Update from upstream sources.
5001 2007-06-07  Ben Elliston  <bje@au.ibm.com>
5003         * Makefile.tpl: Fix spelling error.
5004         * Makefile.in: Regenerate.
5006 2007-06-04  Paolo Bonzini  <bonzini@gnu.org>
5008         Sync with gcc:
5009         2007-05-30  Jakub Jelinek  <jakub@redhat.com>
5011         PR bootstrap/29382
5012         * configure.ac: Don't use -fkeep-inline-functions for GCC < 3.3.1.
5013         * configure: Rebuilt.
5015 2007-06-01  Steve Ellcey  <sje@cup.hp.com>
5017         * libtool.m4 (LT_CMD_MAX_LEN): Try using getconf to set
5018         lt_cv_sys_max_cmd_len.
5020 2007-05-31  Paolo Bonzini  <bonzini@gnu.org>
5022         * ltgcc.m4: Update from GCC.
5024 2007-05-25  Andreas Tobler  <a.tobler@schweiz.org>
5026         * ltmain.sh: Fix Darwin verstring, remove ${wl}.
5028 2007-05-24  Steve Ellcey  <sje@cup.hp.com>
5030         * ltmain.sh: Update from GCC.
5031         * libtool.m4: Update from GCC.
5032         * ltsugar.m4: New. Update from GCC.
5033         * ltversion.m4: New. Update from GCC.
5034         * ltoptions.m4: New. Update from GCC.
5035         * ltconfig: Remove.
5036         * ltcf-c.sh: Remove.
5037         * ltcf-cxx.sh: Remove.
5038         * ltcf-gcj.sh: Remove.
5039         * src-release: Update with new libtool file list.
5041 2007-05-16  Paolo Bonzini  <bonzini@gnu.org>
5043         * Makefile.def (bootstrap_stage): Replace stage_make_flags with
5044         stage_cflags.
5045         * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS, POSTSTAGE1_FLAGS_TO_PASS):
5046         Remove CFLAGS/LIBCFLAGS.
5047         (configure-stage[+id+]-[+prefix+][+module+],
5048         all-stage[+id+]-[+prefix+][+module+]): Pass it from [+stage_cflags+].
5049         * Makefile.in: Regenerate.
5051 2007-04-14  Steve Ellcey  <sje@cup.hp.com>
5053         * config-ml.in: Update from GCC.
5055 2007-04-09  Daniel Jacobowitz  <dan@codesourcery.com>
5057         * src-release (do-proto-toplev): Process the support directories before
5058         the tool directory.
5060 2007-03-21  Richard Sandiford  <richard@codesourcery.com>
5062         * configure.ac (TOPLEVEL_CONFIGURE_ARGUMENTS): Fix m4 quoting
5063         of glob.  Quote arguments with single quotes too.
5064         * configure: Regenerate.
5066 2007-03-12  Brooks Moses  <brooks.moses@codesourcery.com>
5068         * Makefile.def (fixincludes): Remove unneeded "missing" lines.
5069         * Makefile.in: Regenerate
5071 2007-03-07  Andreas Schwab  <schwab@suse.de>
5073         * configure: Regenerate.
5075 2007-03-01  Brooks Moses  <brooks.moses@codesourcery.com>
5077         * configure.ac: Add "--with-pdfdir" configure option,
5078         which defines pdfdir variable.
5079         * Makefile.def (target=fixincludes): Add install-pdf to
5080         missing targets.
5081         (recursive_targets): Add install-pdf target.
5082         (flags_to_pass): Add pdfdir.
5083         * Makefile.tpl: Add pdfdir handling, add do-install-pdf
5084         target.
5085         * configure: Regenerate
5086         * Makefile.in: Regenerate
5088 2007-02-28  Eric Christopher  <echristo@apple.com>
5090         Revert:
5091         2006-12-07  Mike Stump  <mrs@apple.com>
5093         * Makefile.def (dependencies): Add dependency for
5094         install-target-libssp and install-target-libgomp on
5095         install-gcc.
5096         * Makefile.in: Regenerate.
5098 2007-02-27  Matt Kraai  <kraai@ftbfs.org>
5100         * configure: Regenerate.
5101         * configure.ac: Move statements after variable declarations.
5103 2007-02-19  Joseph Myers  <joseph@codesourcery.com>
5105         * configure.ac: Adjust for loop syntax.
5106         * configure: Regenerate.
5108 2007-02-18  Alexandre Oliva  <aoliva@redhat.com>
5110         * configure: Rebuilt.
5112 2007-02-18  Alexandre Oliva  <aoliva@redhat.com>
5114         * configure.ac: Drop multiple occurrences of --enable-languages,
5115         and fix its quoting.
5116         * configure: Rebuilt.
5118 2007-02-17  Mark Mitchell  <mark@codesourcery.com>
5119             Nathan Sidwell  <nathan@codesourcery.com>
5120             Vladimir Prus  <vladimir@codesourcery.com
5121             Joseph Myers  <joseph@codesourcery.com>
5123         * configure.ac (TOPLEVEL_CONFIGURE_ARGUMENTS): Fix quoting.
5124         * configure: Regenerate.
5126 2007-02-13  Daniel Jacobowitz  <dan@codesourcery.com>
5128         * configure.ac (target_libraries): Move libgcc before libiberty.
5129         * configure: Regenerated.
5131 2007-02-13  Paolo Bonzini  <bonzini@gnu.org>
5133         * configure: Regenerate again?
5135 2007-02-13  Paolo Bonzini  <bonzini@gnu.org>
5137         * configure: Reapply PR30748 fix which was lost in the previous commit.
5139 2007-02-13  Daniel Jacobowitz  <dan@codesourcery.com>
5140             Paolo Bonzini  <bonzini@gnu.org>
5142         PR bootstrap/30753
5143         * configure.ac: Remove obsolete build / host tests.  Use AC_PROG_CC
5144         unconditionally.  Use AC_PROG_CXX.  Use ACX_TOOL_DIRS to find $prefix.
5145         * configure: Regenerated.
5147 2007-02-10  Paolo Bonzini  <bonzini@gnu.org>
5149         * configure: Regenerate.
5151 2007-02-09  Daniel Jacobowitz  <dan@codesourcery.com>
5153         PR bootstrap/30748
5154         * configure.ac: Correct syntax for Solaris ksh.
5155         * configure: Regenerated.
5157 2007-02-09  Paolo Bonzini  <bonzini@gnu.org>
5159         * Makefile.def: Sync with GCC.
5160         * Makefile.tpl: Sync with GCC.
5161         * Makefile.in: Regenerate.
5162         * configure: Regenerate.
5164 2007-02-09  Daniel Jacobowitz  <dan@codesourcery.com>
5166         * Makefile.tpl (build_alias, host_alias, target_alias): Use
5167         noncanonical equivalents.
5168         * configure.in: Rename to...
5169         * configure.ac: ...this.  Update AC_PREREQ.  Prevent error for
5170         AS_FOR_TARGET.  Set build_noncanonical, host_noncanonical, and
5171         target_noncanonical.  Use them.  Rewrite removal of configure
5172         arguments for autoconf 2.59.  Discard variable settings.  Force
5173         program_transform_name for native tools.
5175         * Makefile.in: Regenerated.
5176         * configure: Regenerated with autoconf 2.59.
5178         * src-release (DEVO_SUPPORT, do-proto-toplev): Expect configure.ac.
5180 2007-02-08  Jeff Johnston  <jjohnstn@redhat.com>
5182         * COPYING.LIBGLOSS: Reformat default Red Hat
5183         license to fit within 80 columns.
5184         * COPYING.NEWLIB: Ditto.
5186 2007-02-05  Dave Brolley  <brolley@redhat.com>
5188         * Contribute the following changes:
5189         2006-11-28  DJ Delorie  <dj@redhat.com>
5191         * configure.in: Fix typo for mep's target_makefile_frag.
5192         * configure: Regenerated.
5194         2005-04-22  Richard Sandiford  <rsandifo@redhat.com>
5196         * configure.in (mep*): Add -mlibrary to FLAGS_FOR_TARGET.
5197         * configure: Regenerate.
5199         2001-09-19  DJ Delorie  <dj@redhat.com>
5201         * configure.in (target_makefile_frag): use mt-mep
5203         2001-06-12  Don Howard  <dhoward@redhat.com>
5205         * configure.in: Remove gdb from MeP skip list.
5207         2001-04-05  DJ Delorie  <dj@redhat.com>
5209         * configure.in (noconfigdirs): Remove gcc from MeP skip list.
5211         2001-03-20  Ben Elliston  <bje@redhat.com>
5213         * configure.in (noconfigdirs): Add gcc and gdb for MeP.
5215         2001-03-19  Ben Elliston  <bje@redhat.com>
5217         * config.sub (mep, mep-*): Add.
5219 2007-01-31  Andreas Schwab  <schwab@suse.de>
5221         * Makefile.tpl (LDFLAGS): Substitute it.
5222         * Makefile.in: Regenerate.
5224 2007-01-11  Paolo Bonzini  <bonzini@gnu.org>
5226         * configure.in: Change == to = in test command.
5227         * configure: Regenerate.
5229 2007-01-11  Paolo Bonzini  <bonzini@gnu.org>
5230             Nick Clifton  <nickc@redhat.com>
5231             Kaveh R. Ghazi  <ghazi@caip.rutgets.edu>
5233         * configure.in (build_configargs, host_configargs, target_configargs):
5234         Remove build/host/target parameters.
5235         (host_libs): Add gmp and mpfr.
5236         (GMP tests): Reorganize to allow in-tree GMP/MPFR.
5237         * Makefile.def (gmp, mpfr): New.
5238         (gcc): Remove target.
5239         * Makefile.tpl (build_os, build_vendor, host_os, host_vendor,
5240         target_os, target_vendor): New.
5241         (configure): Add host_alias/target_alias arguments.  Adjust invocations.
5242         * configure: Regenerate.
5243         * Makefile.in: Regenerate.
5245 2007-01-11  Matt Fago  <fago@earthlink.net>
5247         * configure.in: Try to link to functions only in mpfr 2.2.x
5248         to improve robustness of configure tests.
5249         * configure: Regenerate.
5251 2007-01-08  Kai Tietz   <kai.tietz@onevision.com>
5253         * configure.in: Add support for an x86_64-mingw* target.
5254         * configure: Regenerate.
5256 2007-01-05  Daniel Jacobowitz  <dan@codesourcery.com>
5258         * Makefile.tpl (all-target): Correct @if conditional for target
5259         modules.
5260         * configure.in: Omit libiberty if building only target libgcc.
5261         * configure, Makefile.in: Regenerated.
5263 2007-01-04  Paolo Bonzini  <bonzini@gnu.org>
5265         * configure.in: Use DEV-PHASE to detect the default for --enable-werror.
5266         * configure: Regenerate.
5268 2007-01-03  Daniel Jacobowitz  <dan@codesourcery.com>
5270         * Makefile.def (target_modules): Add libgcc.
5271         (lang_env_dependencies): Remove default items.  Use no_c and no_gcc.
5272         * Makefile.tpl (clean-target-libgcc): Delete.
5273         (configure-target-[+module+]): Emit --disable-bootstrap dependencies
5274         on gcc even for bootstrapped modules.  Rewrite handling of
5275         lang_env_dependencies to loop over target_modules.
5276         * configure.in (target_libraries): Add target-libgcc.
5277         * Makefile.in, configure: Regenerated.
5279 2006-12-29  Paolo Bonzini  <bonzini@gnu.org>
5281         Sync with gcc:
5282         2006-12-29  Paolo Bonzini  <bonzini@gnu.org>
5284         * configure.in: Reorganize recognition of languages.  Add
5285         --enable-stage1-languages.  Show supported languages for the chosen
5286         target rather than all recognized languages.
5287         * configure: Regenerate.
5289         2006-12-29  Paolo Bonzini  <bonzini@gnu.org>
5291         * Makefile.tpl (GCC_STRAP_TARGETS, all-prebootstrap): Remove.
5292         * Makefile.in: Regenerate.
5294         2006-12-29  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
5296         * configure.in: Warn that MPFR 2.2.0 is buggy.
5297         * configure: Regenerate.
5299 2006-12-27  Ian Lance Taylor  <iant@google.com>
5301         * configure.in: When removing Makefiles to force a reconfigure, also
5302         remove prev-DIR*/Makefile.
5303         * configure: Regenerate.
5305 2006-12-23  Kazu Hirata  <kazu@codesourcery.com>
5307         * config.bfd: Recognize fido.
5309 2006-12-19  Paolo Bonzini  <bonzini@gnu.org>
5311         Sync with gcc:
5313         2006-12-19  Paolo Bonzini  <bonzini@gnu.org>
5315         * configure.in: Remove "$build" case for powerpc-*-darwin* since
5316         it only affects bootstrap and could be tested on "$host" as well.
5317         * configure: Regenerate.
5318         * config/mh-ppc-darwin: Add to the stage1 cflags here.
5320         2006-12-19  Paolo Bonzini  <bonzini@gnu.org>
5322         PR bootstrap/29544
5323         * Makefile.def (flags_to_pass): Add STAGE1_CHECKING.
5324         (bootstrap_stage): Add STAGE1_CHECKING to stage1 configure flags,
5325         move here comment from Makefile.tpl.
5326         * Makefile.tpl: Move some definitions higher in the file.
5327         (STAGE1_CHECKING): New.
5328         * configure.in: Add --enable-stage1-checking.
5329         * configure: Regenerate.
5330         * Makefile.in: Regenerate.
5332         2006-12-03  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
5334         * configure.in: Update error message for missing GMP/MPFR.
5336         * configure: Regenerate.
5338         2006-12-02  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
5340         * configure.in: Update MPFR version in error message.
5342         * configure: Regenerate.
5344         2006-11-26  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
5346         * configure.in (--with-mpfr-dir, --with-gmp-dir): Remove flags.
5347         (--with-mpfr-include, --with-mpfr-lib, --with-gmp-include,
5348         --with-gmp-lib): New flags.
5350         * configure: Regenerate.
5352 2006-12-12  Andreas Tobler  <a.tobler@schweiz.org>
5354         PR bootstrap/30134
5355         * configure.in: Correct x86 darwin support for libjava to powerpc
5356         and i?86 only.
5357         * configure: Regenerate.
5359 2006-12-11  Alan Modra  <amodra@bigpond.net.au>
5361         * configure.in:  Handle spu makefile frag.
5362         * Makefile.tpl (MAINT): Define
5363         (MAINTAINER_MODE_FALSE, MAINTAINER_MODE_TRUE): Define.
5364         * configure: Regenerate.
5365         * Makefile.in: Regenerate.
5367 2006-12-11  Ben Elliston  <bje@au.ibm.com>
5369         * config.sub, config.guess: Update from upstream sources.
5371 2006-12-11  Ben Elliston  <bje@au.ibm.com>
5373         * configure.in: Sync with GCC (spu-*-*).
5374         * configure: Sync with GCC.
5376 2006-12-07  Mike Stump  <mrs@apple.com>
5378         * Makefile.def (dependencies): Add dependency for
5379         install-target-libssp and install-target-libgomp on
5380         install-gcc.
5381         * Makefile.in: Regenerate.
5383 2006-11-16  Paolo Bonzini  <bonzini@gnu.org>
5385         * Makefile.tpl (clean-target-libgcc): Test for gcc Makefile presence.
5386         (unstage): Test for stage_last presence.
5388         PR bootstrap/29802
5389         * Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Add HOST_SUBDIR in STAGE_PREFIX.
5390         * Makefile.in: Regenerate.
5392 2006-11-14  DJ Delorie  <dj@redhat.com>
5394         * Makefile.tpl (clean-stage*): Sync with GCC (clean).
5395         * Makefile.in: Sync with GCC.
5396         * configure.in: Sync with GCC (mpfr, gmp).
5397         * configure: Sync with GCC.
5399 2006-11-08  Jie Zhang  <jie.zhang@analog.com>
5401         * configure.in: Remove target-libgloss from noconfigdirs for
5402         bfin-*-*.
5403         * configure: Regenerated.
5405 2006-10-27  Jeff Johnston  <jjohnstn@redhat.com>
5407         * COPYING.NEWLIB: Add spu license.
5408         * COPYING.LIBGLOSS: Ditto.
5410 2006-10-17  Brooks Moses  <bmoses@stanford.edu>
5412         * Makefile.def: Added pdf target handling.
5413         * Makefile.tpl: Added pdf target handling.
5414         * Makefile.in: Regenerated.
5416 2006-10-11  Jeff Johnston  <jjohnstn@redhat.com>
5418         * COPYING.NEWLIB: Updated.
5419         * COPYING.LIBGLOSS: Ditto.
5421 2006-09-27  Dave Brolley  <brolley@redhat.com>
5423         * configure.in (RUNTEST): Look for 'runtest' in the source tree by using
5424         $s instead of $r.
5425         * configure: Regenerated.
5427 2006-09-26  Ben Elliston  <bje@au.ibm.com>
5429         * config.sub, config.guess: Update from upstream sources.
5431 2006-09-20  Thiemo Seufer  <ths@mips.com>
5433         * configure.in: Remove redundant handling of mips*-dec-bsd*. Likewise
5434         for mipstx39-*-*. Disable libgloss for mips64*-*-linux*.
5435         * configure: Regenerate.
5437 2006-08-30  Corinna Vinschen  <corinna@vinschen.de>
5439         * configure.in: Never build newlib for a Mingw host.
5440         Never build newlib as Mingw target library.
5441         Test the existence of winsup/cygwin for building a Cygwin newlib,
5442         rather than just winsup.
5443         Add winsup/mingw and winsup/w32api paths to FLAGS_FOR_TARGET if
5444         building a Mingw target.
5445         * configure: Regenerate.
5447 2006-08-15  Thiemo Seufer  <ths@mips.com>
5448             Nigel Stephens  <nigel@mips.com>
5449             David Ung  <davidu@mips.com>
5451         * config.sub: Add support for sde as alias of mipsisa32-sde-elf.
5453 2006-07-25  Paolo Bonzini  <bonzini@gnu.org>
5455         Sync from GCC:
5456         2006-07-04  Eric Botcazou  <ebotcazou@libertysurf.fr>
5458         PR bootstrap/18058
5459         * configure.in: Add -fkeep-inline-functions to CFLAGS for stage 1
5460         if the bootstrap compiler is a GCC version that supports it.
5461         * configure: Regenerate.
5463 2006-07-22  Daniel Jacobowitz  <dan@codesourcery.com>
5465         * configure.in: Allow mingw32 and cygwin targets to build cross-gdb.
5466         * configure: Regenerated.
5468 2006-07-18  Paolo Bonzini  <bonzini@gnu.org>
5470         * Makefile.tpl (configure-stageN-MODULE): Pass --with-build-libsubdir
5471         for stages after the first.
5473 2006-07-17  Jakub Jelinek  <jakub@redhat.com>
5475         * Makefile.def: Add dependencies for configure-opcodes
5476         on configure-intl and all-opcodes on all-intl.
5477         * Makefile.in: Regenerated.
5479 2006-07-04  Peter O'Gorman  <peter@pogma.com>
5481         * ltconfig: chmod 644 before ranlib during install.
5483 2006-07-03  Paolo Bonzini  <bonzini@gnu.org>
5485         * configure.in: Fix thinkos in previous check-in.
5486         * configure: Regenerate.
5488 2006-07-03  Paolo Bonzini  <bonzini@gnu.org>
5490         Sync from gcc:
5492         2007-07-03  Paolo Bonzini  <bonzini@gnu.org>
5494         PR other/27063
5495         * configure.in: Test subdir_requires and give an appropriate
5496         error message.
5497         * configure: Regenerate.
5499         2006-06-16  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
5501         PR target/27540
5502         * configure.in: Only enable libgomp on IRIX 6.
5503         * configure: Regenerate.
5505 2006-06-20  David Ayers  <d.ayers@inode.at>
5507         PR bootstrap/28072
5508         * configure.in: Add target-boehm-gc to noconfigdirs depending on
5509         whether target-libjava is being configured instead of whether the
5510         java front end is enabled.
5511         * configure: Regenerate.
5513 2006-06-15  Mark Shinwell  <shinwell@codesourcery.com>
5515         * include/elf/arm.h: Correct names of R_ARM_LDC_G{0,1,2}
5516         to R_ARM_LDC_SB_G{0,1,2} respectively.
5518 2006-06-15  Paolo Bonzini  <bonzini@gnu.org>
5520         * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Export CFLAGS and LDFLAGS
5521         too.
5522         * Makefile.in: Regenerate.
5524 2006-06-13  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
5526         Sync from gcc:
5528         2006-06-12  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
5529         * configure.in: Don't enable libgomp on hpux10.
5530         * configure: Rebuilt.
5532 2006-06-13  David Ayers  <d.ayers@inode.at>
5534         Sync from gcc:
5536         2006-06-12  David Ayers  <d.ayers@inode.at>
5538         PR bootstrap/27963
5539         PR target/19970
5540         * configure.in: Remove target-boehm-gc from noconfigdirs where
5541         ${libgcj} is specified.
5542         * configure: Regenerate.
5544 2006-06-08  Jeff Johnston  <jjohnstn@redhat.com>
5546         Sync from gcc:
5548         2005-01-12  David Edelsohn  <edelsohn@gnu.org>
5549                     Andreas Schwab  <schwab@suse.de>
5551         PR bootstrap/18033
5552         * config-ml.in: Eval option if surrounded by single quotes.
5554 2006-06-07  Carlos O'Donell  <carlos@codesourcery.com>
5556         Sync from gcc:
5558         2006-06-06  David Ayers  <d.ayers@inode.at>
5560         PR libobjc/13946
5561         * Makefile.def: Add dependencies for libobjc which boehm-gc.
5562         * Makefile.in: Regenerate.
5563         * configure.in: Add --enable-objc-gc at toplevel and have it
5564         enable boehm-gc for Objective-C.
5565         Remove target-boehm-gc from libgcj.
5566         Add target-boehm-gc to target_libraries.
5567         Add target-boehm-gc to noconfigdirs where ${libgcj}
5568         is specified.
5569         Assert that boehm-gc is supported when requested for Objective-C.
5570         Only build boehm-gc if needed either for Java or Objective-C.
5571         * configure: Regenerate.
5573         2006-06-05  Paolo Bonzini  <bonzini@gnu.org>
5575         PR 27674
5576         * Makefile.tpl (configure-[+prefix+][+module+],
5577         all-[+prefix+][+module+]): Depend on stage_current if bootstrapping.
5578         Remove rule to unstage bootstrapped modules.
5579         (stage_current): New.
5580         * Makefile.in: Regenerate.
5582         2006-05-20  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
5583         Andreas Tobler  <a.tobler@schweiz.ch>
5585         * configure.in:  Enable libgcj for hppa*-hp-hpux11*.
5586         * configure: Rebuilt.
5588         Revert
5589         2006-01-31  Richard Guenther  <rguenther@suse.de>
5590         Paolo Bonzini  <bonzini@gnu.org>
5592         * Makefile.def (target_modules): Add libgcc-math target module.
5593         * configure.in (target_libraries): Add libgcc-math target library.
5594         (--enable-libgcc-math): New configure switch.
5595         * Makefile.in: Re-generate.
5596         * configure: Re-generate.
5598 2006-06-05  Jeff Johnston  <jjohnstn@redhat.com>
5600         * config-ml.in: Alter CCASFLAGS to include special
5601         multilib options the same as is done for CFLAGS.
5603 2006-05-31  Daniel Jacobowitz  <dan@codesourcery.com>
5605         * Makefile.def: Added dependencies from sim and gdb on intl, and
5606         added configure dependencies to everything with an all dependency
5607         on intl.
5608         * gettext.m4: Removed.
5609         * src-release (DEVO_SUPPORT): Don't mention gettext.m4.
5610         (GDB_SUPPORT_DIRS): Add intl.
5611         * Makefile.in: Regenerated.
5613 2006-05-25  Daniel Jacobowitz  <dan@codesourcery.com>
5615         * src-release (DEVO_SUPPORT): Add config.rpath.
5617 2006-05-25  Paolo Bonzini  <bonzini@gnu.org>
5619         * Makefile.def (bfd, opcodes): Fix lib_path.
5620         * Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Replace ADAC with ADAFLAGS.
5621         (restrap): Move under "@if gcc-bootstrap".  Fix typo.
5622         * Makefile.in: Regenerate.
5624 2006-05-24  Mark Shinwell  <shinwell@codesourcery.com>
5626         * configure.in: Enable gprof for cross builds.
5627         * configure: Regenerate.
5629 2006-05-17  Daniel Jacobowitz  <dan@codesourcery.com>
5631         * src-release (MAKEINFOFLAGS): Define.
5632         (do-proto-toplev): Pass MAKEINFOFLAGS to submakes.
5634 2006-05-14  Ben Elliston  <bje@au.ibm.com>
5636         * config.sub, config.guess: Update from upstream sources.
5638 2006-05-12  Ben Elliston  <bje@au.ibm.com>
5640         * config.sub, config.guess: Update from upstream sources.
5642 2006-05-04  Steve Ellcey  <sje@cup.hp.com>
5644         * blt, iwidgets, mmalloc: Remove directories.
5646 2006-05-01  DJ Delorie  <dj@redhat.com>
5648         * configure.in: Restore CFLAGS if GMP isn't present.
5649         * configure: Regenerate.
5651 2006-04-18  DJ Delorie  <dj@redhat.com>
5653         * configure.in (m32c): Build libstdc++-v3.  Pass flags to
5654         reference libgloss so that libssp can be built in a combined
5655         tree.
5656         * configure: Regenerate.
5658 2006-04-10  Ben Elliston  <bje@au.ibm.com>
5660         * contrib: Remove directory.
5662 2006-04-06  Carlos O'Donell <carlos@codesourcery.com>
5664         * Makefile.tpl: Add install-html target.
5665         * Makefile.def: Add install-html target.
5666         * Makefile.in: Regenerate.
5667         * configure.in: Add --with-datarootdir, --with-docdir,
5668         and --with-htmldir options.
5669         * configure: Regenerate.
5671 2006-03-31  Ben Elliston  <bje@au.ibm.com>
5673         PR binutils/1860
5674         * configure.in: Require makeinfo 4.4 or higher.
5675         * configure: Regenerate.
5677 2006-03-14  Paolo Bonzini  <bonzini@gnu.org>
5679         * Makefile.in: Regenerate.
5681 2006-03-14  Paolo Bonzini  <bonzini@gnu.org>
5683         Sync with gcc:
5684         2006-03-10  Aldy Hernandez  <aldyh@redhat.com>
5686         * configure.in: Handle --disable-<component> generically.
5687         * configure: Regenerate.
5689         2006-02-21 Rafael Avila de Espindola <rafael.espindola@gmail.com>
5691         * Makefile.tpl  (BUILD_CONFIGDIRS): Remove.
5692         (TARGET_CONFIGDIRS): Remove.
5693         * configure.in: Remove AC_SUBST(target_configdirs).
5694         * Makefile.in, configure: Regenerated.
5697 2006-03-01  H.J. Lu  <hongjiu.lu@intel.com>
5699         PR libgcj/17311
5700         * ltmain.sh: Don't use "$finalize_rpath" for compile.
5702 2006-02-20  Paolo Bonzini  <bonzini@gnu.org>
5704         PR bootstrap/25670
5706         * Makefile.tpl ([+compare-target+]): Print explanation messages.
5708         * Makefile.def (ADAFLAGS, BOOT_ADAFLAGS, LANGUAGES): New flags_to_pass.
5709         * Makefile.tpl (BASE_FLAGS_TO_PASS): Support optional flags_to_pass.
5710         (EXTRA_GCC_FLAGS): Remove ADAFLAGS, BOOT_ADAFLAGS, LANGUAGES,
5711         BUILD_PREFIX, BUILD_PREFIX_1.
5712         * configure.in: (BUILD_PREFIX, BUILD_PREFIX_1): Don't substitute.
5714         * Makefile.def (bootstrap stage 1): Pass LIBCFLAGS too.
5715         * Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Override LIBCFLAGS too.
5717         * Makefile.tpl (configure-stage[+id+]-[+prefix+][+module+],
5718         all-stage[+id+]-[+prefix+][+module+], : Use $(current_stage) instead
5719         of `cat stage_current`.  Always provide the `r' and `s' variables.
5720         (clean-stage[+id+]-[+prefix+][+module+]): Likewise, and make it into
5721         a single shell execution.
5722         (configure-[+prefix+][+module+], all-[+prefix+][+module+]): For
5723         bootstrapped modules, make the stage1 module if the build was not
5724         started yet, else build the current stage.
5725         (all-host, all-target): Omit bootstrapped modules (if bootstrapping).
5726         (all-build, all-host, all-target, [+make_target+]-host,
5727         [+make_target+]-target): Do not use \-continued lines.
5728         (target modules): Depend on stage_last, not all-gcc, if bootstrapping.
5729         (current_stage, restrap, stage_last): New.
5731         * Makefile.in: Regenerate.
5732         * configure: Regenerate.
5734 2006-02-14  Paolo Bonzini  <bonzini@gnu.org>
5736         Sync from gcc:
5738         2006-01-31  Richard Guenther  <rguenther@suse.de>
5739                     Paolo Bonzini  <bonzini@gnu.org>
5741         * Makefile.def (target_modules): Add libgcc-math target module.
5742         * configure.in (target_libraries): Add libgcc-math target library.
5743         (--enable-libgcc-math): New configure switch.
5744         * Makefile.in: Re-generate.
5745         * configure: Re-generate.
5746         * libgcc-math: New toplevel directory.
5748         2006-01-18  Richard Henderson  <rth@redhat.com>
5749                     Jakub Jelinek  <jakub@redhat.com>
5750                     Diego Novillo  <dnovillo@redhat.com>
5752         * libgomp: New directory.
5753         * Makefile.def: Add target_module libgomp.
5754         * Makefile.in: Regenerate.
5755         * configure.in (target_libraries): Add target-libgomp.
5756         * configure: Regenerate.
5758 2006-02-14  Paolo Bonzini  <bonzini@gnu.org>
5759             Andreas Schwab  <schwab@suse.de>
5761         * configure: Regenerate.
5763 2006-01-16  Paolo Bonzini  <bonzini@gnu.org>
5765         * configure.in: Set with_gnu_as, with_gnu_ld, with_newlib earlier.
5766         Set md_exec_prefix.  Use ACX_CHECK_INSTALLED_TARGET_TOOL to find
5767         the assembler, linker and binutils.
5768         * configure: Regenerate.
5770 2006-01-16  Nick Clifton  <nickc@redhat.com>
5772         * config.sub, config.guess: Sync from config repository.
5774 2006-01-05  Alexandre Oliva  <aoliva@redhat.com>
5776         * Makefile.tpl (clean-stage[+id+]-[+prefix+][+module+]): Remove
5777         @ from continuation.
5778         * Makefile.in: Rebuilt.
5780 2006-01-04  Paolo Bonzini  <bonzini@gnu.org>
5782         Sync from gcc:
5784         2006-01-04  Paolo Bonzini  <bonzini@gnu.org>
5786         PR bootstrap/24252
5788         * Makefile.def (flags_to_pass): Add STAGE1_CFLAGS and STAGE1_LANGUAGES.
5789         * Makefile.tpl (OBJDUMP): New.
5790         (EXTRA_HOST_FLAGS): Add it.
5791         (EXTRA_GCC_FLAGS): Remove flags already specified in flags_to_pass.
5793         * Makefile.tpl (stage[+id+]-start, stage[+id+]-end): Do not try
5794         to use symbolic links between directories.  Avoid race conditions
5795         or make them harmless.
5796         * configure.in: Do not try to use symbolic links between directories.
5798         * Makefile.def (LEAN): Pass.
5799         * Makefile.tpl (LEAN): Define.
5800         (stage[+id+]-start): Accept that the previous directory does not
5801         exist, if the bootstrap is lean.
5802         (stage[+id+]-bubble): Invoke lean bootstrap commands after
5803         stage[+id+]-start.  Use a makefile variable and an `if' instead of a
5804         configure substitution.
5805         ([+compare-target+]): Likewise.
5806         ([+bootstrap-target+]-lean): New.
5807         * configure.in: Remove lean bootstrap support from here.
5809         * Makefile.in: Regenerate.
5810         * configure: Regenerate.
5812         2006-01-02  Andreas Schwab  <schwab@suse.de>
5814         * configure.in: When reconfiguring remove Makefile in
5815         all stage directories.
5816         * configure: Regenerate.
5818 2005-12-27  Leif Ekblad  <leif@rdos.net>
5820         * configure.in: Add support for RDOS target.
5821         * configure: Regenerate.
5823 2005-12-27  Nick Clifton  <nickc@redhat.com>
5825         PR binutils/1990
5826         * libtool.m4: Synchronize with version in GCC sources.
5828 2005-12-20  Paolo Bonzini  <bonzini@gnu.org>
5830         Revert Ada-related part of the previous change.
5832         * Makefile.def (ADAFLAGS, BOOT_ADAFLAGS, ADAFLAGS_FOR_TARGET):
5833         Do not pass.
5834         * Makefile.tpl (BOOT_ADAFLAGS): Do not define.
5835         * Makefile.in: Regenerate.
5836         * configure.in: Do not include mt-ppc-aix target fragment.
5837         * configure: Regenerate.
5839 2005-12-19  Paolo Bonzini  <bonzini@gnu.org>
5841         * configure.in: Select appropriate fragments for PowerPC/AIX.
5842         * configure: Regenerate.
5844         * Makefile.def (flags_to_pass): Add ADAFLAGS, BOOT_ADAFLAGS,
5845         BOOT_CFLAGS, BOOT_LDFLAGS.
5846         * Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Handle BOOT_ADAFLAGS,
5847         BOOT_CFLAGS, BOOT_LDFLAGS.
5848         (TARGET_FLAGS_TO_PASS): Handle ADAFLAGS_FOR_TARGET.
5849         (stage[+id+]-bubble): Pass flags recursively to the comparison target.
5850         (stage): Fail if we cannot complete the work.
5851         * Makefile.in: Regenerate.
5853 2005-12-16  Jeff Johnston  <jjohnstn@redhat.com>
5855         * COPYING.NEWLIB: Update copyright year for default
5856         copyright.
5858 2005-12-15  Paolo Bonzini  <bonzini@gnu.org>
5860         * Makefile.tpl (all, do-[+make_target+], do-check, install,
5861         install-host-nogcc): Don't invoke $(stage) at the end.
5862         * Makefile.in: Regenerate.
5864 2005-12-14  Paolo Bonzini  <bonzini@gnu.org>
5866         * configure.in: Flip the top-level bootstrap switch.
5867         * configure: Regenerate.
5869         Merge from gcc:
5871         2005-12-14  Daniel Jacobowitz  <dan@codesourcery.com>
5873         * Makefile.tpl: Throughout the file, use : $(MAKE) along with
5874         $(stage) and $(unstage).
5875         (EXTRA_TARGET_FLAGS): Correct double-quoting.
5876         (all): Remove stray semicolon.
5877         (local-distclean): Don't handle multilib.tmp and multilib.out.
5878         (install.all): Set $s for consistency.
5879         (configure-[+prefix+][+module+]): Instead of [+deps+], handle
5880         check_multilibs setting.  Always make the install directory.
5881         (configure-stage[+id+]-[+prefix+][+module+]): Likewise.
5882         Correct @if/@endif.
5883         (all-stage[+id+]-[+prefix+][+module+]): Correct @if/@endif.
5884         ($(TARGET_SUBDIR)/[+module+]/multilib.out): Remove.
5885         (stage[+id+]-start, stage[+id+]-end): Stage $(TARGET_SUBDIR).
5886         (multilib.out): Remove.
5887         * Makefile.in: Regenerated.
5889 2005-12-12  Nathan Sidwell  <nathan@codesourcery.com>
5891         * config.sub: Replace ms1 arch with mt.  Allow ms1 as alias.
5892         * configure.in: Replace ms1 arch with mt.
5893         * configure: Rebuilt.
5895 2005-12-05  Paolo Bonzini  <bonzini@gnu.org>
5897         Sync with gcc:
5899 2005-12-12  Nathan Sidwell  <nathan@codesourcery.com>
5901         * config.sub: Replace ms1 arch with mt.  Allow ms1 as alias.
5902         * configure.in: Replace ms1 arch with mt.
5903         * configure: Rebuilt.
5905 2005-12-05  Paolo Bonzini  <bonzini@gnu.org>
5907         Sync with gcc:
5909         2005-12-05  Paolo Bonzini  <bonzini@gnu.org>
5911         * configure.in (CONFIGURED_BISON, CONFIGURED_YACC, CONFIGURED_M4,
5912         CONFIGURED_FLEX, CONFIGURED_LEX, CONFIGURED_MAKEINFO): Remove
5913         "CONFIGURED_" from the AC_CHECK_PROGS invocation.  Move below.
5914         Find in-tree tools if available.
5915         (EXPECT, RUNTEST, LIPO, STRIP): Find them and substitute them.
5916         (CONFIGURED_*_FOR_TARGET): Don't set nor substitute.
5917         (*_FOR_TARGET): Set them with GCC_TARGET_TOOL.
5918         (COMPILER_*_FOR_TARGET): New.
5919         * Makefile.tpl (HOST_EXPORTS): Add *_FOR_TARGET symbols that gcc needs.
5920         (BASE_TARGET_EXPORTS): Use COMPILER_*_FOR_TARGET symbols.
5921         (CONFIGURED_*, USUAL_*): Remove.
5922         (BISON, YACC, FLEX, LEX, M4, MAKEINFO, EXPECT, RUNTEST, LIPO,
5923         STRIP): Use autoconf substitutions.
5924         (COMPILER_AS_FOR_TARGET, COMPILER_LD_FOR_TARGET,
5925         COMPILER_NM_FOR_TARGET): New.
5926         (EXTRA_HOST_FLAGS): Pass LIPO and STRIP.
5928         (all): Make all-host and all-target in parallel.
5929         (do-[+make_target+], do-check, install, [+compare-target+]): Ensure
5930         that $$r and $$s are set before invoking a recursive make.
5931         (stage[+id+]-bubble): Likewise, and invoke the comparison at the end.
5932         ([+bootstrap-target+]): Inline most of the `all' target.
5934         2005-11-29  Ben Elliston  <bje@au.ibm.com>
5936         * Makefile.tpl (clean-target-libgcc): Invoke clean-target-libgcc
5937         from the gcc build directory.
5938         * Makefile.in: Regenerate.
5940         2005-11-29  Ben Elliston  <bje@au.ibm.com>
5942         * Makefile.def: Add new libdecnumber host_module.  Make all-gcc
5943         depend on all-libdecnumber.
5944         * configure.in (host_libs): Include libdecnumber.
5945         * Makefile.in: Regenerate.
5946         * configure: Likewise.
5948         2005-11-21  Kean Johnston  <jkj@sco.com>
5950         * config.sub, config.guess: Sync from upstream sources.
5952 2005-11-11  Daniel Jacobowitz  <dan@codesourcery.com>
5954         * Makefile.def: Remove gdb dependencies for gdbtk.
5955         * Makefile.tpl (CONFIGURE_GDB_TK, INSTALL_GDB_TK): New variables.
5956         (configure-gdb, install-gdb): New rules.
5957         * configure.in: Set CONFIGURE_GDB_TK and INSTALL_GDB_TK.
5958         * Makefile.in, configure: Regenerated.
5960 2005-10-22  Paolo Bonzini  <bonzini@gnu.org>
5962         PR bootstrap/24297
5963         * Makefile.tpl (do-[+make-target+], do-check, install,
5964         stage[+id+]-bubble, [+compare-target+]): Ensure $$r and $$s
5965         are set before recursing.
5966         * Makefile.in: Regenerate.
5968 2005-10-20  Eric Botcazou  <ebotcazou@adacore.com>
5970         PR bootstrap/18939
5971         * Makefile.def (gcc) <target>: Fix thinko.
5972         * Makefile.in: Regenerate.
5974 2005-10-17  Bernd Schmidt  <bernd.schmidt@analog.com>
5976         * configure.in (bfin-*-*): Use test, not brackets, in if statement.
5977         * configure: Regenerate.
5979 2005-10-09  Kazu Hirata  <kazu@codesourcery.com>
5981         * configure.in (arm-*-linux-gnueabi): Add to noconfigdirs
5982         target-libffi, target-qthreads, target-libjava, and
5983         targetlibobjc.
5984         * configure: Regenerate.
5986 2005-10-06  Daniel Jacobowitz  <dan@codesourcery.com>
5988         * Makefile.def (flags_to_pass): Add OBJDUMP_FOR_TARGET.
5989         * Makefile.tpl (BASE_TARGET_EXPORTS): Add OBJDUMP.
5990         (OBJDUMP_FOR_TARGET, CONFIGURED_OBJDUMP_FOR_TARGET)
5991         (USUAL_OBJDUMP_FOR_TARGET): New.
5992         (EXTRA_TARGET_FLAGS): Add OBJDUMP.
5993         * configure.in: Check for $OBJDUMP_FOR_TARGET.
5994         * configure, Makefile.in: Regenerated.
5996 2005-10-05  Paolo Bonzini  <bonzini@gnu.org>
5998         * Makefile.tpl (all) [gcc-no-bootstrap]: Make prebootstrap packages
5999         before other host packages.
6001 2005-10-05  Paolo Bonzini  <bonzini@gnu.org>
6003         PR bootstrap/22340
6005         * configure.in (default_target): Remove.
6006         * Makefile.tpl (all): Do not use prerequisites as subroutines
6007         (all) [gcc-bootstrap]: Bootstrap gcc first if it was not done yet.
6008         (do-[+make_target+], check, install, [+bootstrap_target+]): Do not
6009         use prerequisites as subroutines.
6010         (check-host, check-target): New.
6011         (bootstrap configure & all targets): Do not use stage*-start
6012         if the directory layout is already ok.
6013         (non-bootstrap configure & all targets): Prepend a $(unstage).
6014         (stage[+id+]-bubble): Do that here.  Do not use NOTPARALLEL.
6015         (NOTPARALLEL): Remove.
6016         (unstage, stage variables): New variables.
6017         (unstage, stage targets): Simply expand to those variables.
6019         * configure: Regenerate.
6020         * Makefile.in: Regenerate.
6022 2005-10-04  James E Wilson  <wilson@specifix.com>
6024         * Makefile.def (lang_env_dependencies): Add libmudflap.
6025         * Makefile.in: Regenerate.
6027 2005-10-03  Catherine Moore  <clm@cm00re.com>
6029         * configure.in (bfin-*-*): Support bfin.
6030         * configure: Regenerated.
6032 2005-09-30  H.J. Lu  <hongjiu.lu@intel.com>
6034         * configure.in (*-*-darwin*): Build bfd, binutils and opcodes.
6035         * configure: Regenerated.
6037 2005-09-28  Geoffrey Keating  <geoffk@apple.com>
6039         * Makefile.tpl (BASE_TARGET_EXPORTS): Add LIPO, STRIP.
6040         (LIPO_FOR_TARGET): New.
6041         (CONFIGURED_LIPO_FOR_TARGET): New.
6042         (USUAL_LIPO_FOR_TARGET): New.
6043         (STRIP_FOR_TARGET): New.
6044         (CONFIGURED_STRIP_FOR_TARGET): New.
6045         (USUAL_STRIP_FOR_TARGET): New.
6046         * Makefile.def (flags_to_pass): Add LIPO_FOR_TARGET and
6047         STRIP_FOR_TARGET.
6048         * configure.in: Set LIPO_FOR_TARGET, STRIP_FOR_TARGET,
6049         CONFIGURED_LIPO_FOR_TARGET, CONFIGURED_STRIP_FOR_TARGET.
6050         * Makefile.in: Regenerate.
6051         * configure: Regenerate.
6053 2005-09-19  David Edelsohn  <edelsohn@gnu.org>
6055         * configure.in (powerpc-*-aix*): Add target-libssp to noconfigdirs.
6056         (rs6000-*-aix*): Same.
6057         * configure: Regenerate.
6059 2005-09-14  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
6061         * configure.in: Recognize f95 in the --enable-languages option,
6062         and substitute it for fortran, issuing a warning.
6063         * configure: Regenerate.
6065 2005-09-07  Ben Elliston  <bje@au.ibm.com>
6067         Import from Autoconf sources:
6069         2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
6070         * move-if-change: Don't output "$2 is unchanged"; suggested by Ben
6071         Elliston.  Handle weird characters correctly.
6073 2005-08-30  Phil Edwards  <phil@codesourcery.com>
6075         * configure.in (*-*-vxworks*):  Add target-libstdc++-v3 to noconfigdirs.
6076         * configure:  Regenerated.
6078 2005-08-20  Richard Earnshaw  <richard.earnshaw@arm.com>
6080         * Makefile.def (libssp): Add to lang_env_dependencies.
6081         * Makefile.in: Regenerate.
6083 2005-08-17  Christian Groessler  <chris@groessler.org>
6085         * Makefile.tpl: (USUAL_CC_FOR_TARGET): Add missing trailing slash.
6086         * Makefile.in: Regenerate.
6088 2005-08-12  Paolo Bonzini  <bonzini@gnu.org>
6090         * configure.in: Replace NCN_STRICT_CHECK_TOOL with
6091         NCN_STRICT_CHECK_TOOLS, and likewise for NCN_STRICT_CHECK_TARGET_TOOLS.
6092         Look for alternate names of the target cc and c++
6093         * configure: Regenerate.
6095 2005-08-08  Paolo Bonzini  <bonzini@gnu.org>
6097         * configure.in (CC_FOR_TARGET, CXX_FOR_TARGET, GCJ_FOR_TARGET,
6098         GCC_FOR_TARGET, RAW_CXX_FOR_TARGET, GFORTRAN_FOR_TARGET): Find
6099         them with NCN_STRICT_CHECK_TARGET_TOOL, like the other target
6100         tools; remove code to manually set them.
6101         (Target tools): Look in the environment for them.
6102         * Makefile.tpl (CC_FOR_TARGET, CXX_FOR_TARGET, GCJ_FOR_TARGET,
6103         GCC_FOR_TARGET, RAW_CXX_FOR_TARGET, GFORTRAN_FOR_TARGET): Redefine.
6104         (AS_FOR_TARGET, LD_FOR_TARGET, NM_FOR_TARGET): Look into gcc
6105         build directory.
6106         (CONFIGURED_CC_FOR_TARGET, CONFIGURED_CXX_FOR_TARGET,
6107         CONFIGURED_GCJ_FOR_TARGET, CONFIGURED_GCC_FOR_TARGET,
6108         CONFIGURED_GFORTRAN_FOR_TARGET, USUAL_CC_FOR_TARGET,
6109         USUAL_CXX_FOR_TARGET, USUAL_GCJ_FOR_TARGET, USUAL_GCC_FOR_TARGET,
6110         USUAL_RAW_CXX_FOR_TARGET, USUAL_GFORTRAN_FOR_TARGET): New.
6111         (CXX_FOR_TARGET_FOR_RECURSIVE_MAKE,
6112         RAW_CXX_FOR_TARGET_FOR_RECURSIVE_MAKE, RECURSE_FLAGS): Delete.
6113         * configure: Regenerate.
6114         * Makefile.in: Regenerate.
6116 2005-07-27  Mark Mitchell  <mark@codesourcery.com>
6118         * Makefile.tpl (EXTRA_TARGET_FLAGS): Set LDFLAGS=LDFLAGS_FOR_TARGET.
6119         * Makefile.def (flags_to_pass): Add LDFLAGS_FOR_TARGET.
6120         * Makefile.in: Regenerated.
6122 2005-07-26  Mark Mitchell  <mark@codesourcery.com>
6124         * Makefile.tpl (SYSROOT_CFLAGS_FOR_TARGET): New variable.
6125         (CFLAGS_FOR_TARGET): Use it.
6126         (CXXFLAGS_FOR_TARGET): Likewise.
6127         * Makefile.in: Regenerated.
6128         * configure.in (--with-build-sysroot): New option.
6129         * configure: Regenerated.
6131 2005-07-24  Paolo Bonzini  <bonzini@gnu.org>
6133         * Makefile.tpl: Wrap install between unstage and stage
6134         * Makefile.in: Regenerate.
6136 2005-07-16  Kelley Cook  <kcook@gcc.gnu.org>
6138         * all files: Update FSF address.
6140 2005-07-14  Jim Blandy  <jimb@redhat.com>
6142         * configure.in: Add cases for Renesas m32c.
6143         * configure: Regenerated.
6145 2005-07-14  Kelley Cook  <kcook@gcc.gnu.org>
6147         * COPYING, compile, config-ml.in, config.guess,
6148         config.sub, install-sh, missing, mkinstalldirs,
6149         symlink-tree, ylwrap: Sync from upstream sources.
6151 2005-07-13  Eric Christopher  <echristo@redhat.com>
6153         * configure.in: Add toplevel noconfigdir support for tpf.
6154         * configure: Regenerate.
6156 2005-07-11  Jakub Jelinek  <jakub@redhat.com>
6158         * Makefile.def (target_modules): Add libssp.
6159         * configure.in (target_libraries): Add target-libssp.
6160         * configure: Rebuilt.
6161         * Makefile.in: Rebuilt.
6163 2005-07-11  Paolo Bonzini  <bonzini@gnu.org>
6165         PR ada/22340
6167         * Makefile.def: Sync with gcc.
6168         * Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Fix pasto.
6169         * Makefile.in: Regenerate.
6171 2005-07-07  Andreas Schwab  <schwab@suse.de>
6173         * Makefile.def (flags_to_pass): Add CFLAGS_FOR_BUILD.
6174         * Makefile.tpl (EXTRA_GCC_FLAGS): Don't pass CFLAGS_FOR_BUILD here.
6175         * Makefile.in: Regenerated.
6177 2005-07-07  Kazu Hirata  <kazu@codesourcery.com>
6179         * configure.in: Add --enable-libssp and --disable-libssp.
6180         * configure: Regenerate with autoconf-2.13.
6182 2005-07-06  Geoffrey Keating  <geoffk@apple.com>
6184         * configure.in: Don't build sim or rda when targetting darwin.
6185         * configure: Regenerate.
6187 2005-07-04  Ben Elliston  <bje@gnu.org>
6189         * src-release (do-proto-toplev): Remove dejagnu bits.
6190         (DEJAGNU_SUPPORT_DIRS): Remove.
6191         (dejagnu.tar.bz2, dejagnu.tar): Likewise.
6192         (GDBD_SUPPORT_DIRS): Likewise.
6193         (gdb+dejagnu.tar.bz2, gdb+dejagnu.tar): Likewise.
6194         (INSIGHTD_SUPPORT_DIRS): Likewise.
6195         (insight+dejagnu.tar.bz2, insight+dejagnu.tar): Likewise.
6197 2005-06-30  Ben Elliston  <bje@gnu.org>
6199         * setup.com (mpw): Remove unused directive.
6201 2005-06-22  Paolo Bonzini  <bonzini@gnu.org>
6203         * Makefile.def (stagefeedback): Come after profile.
6204         Define profiledbootstrap target.
6205         * Makefile.tpl (profiledbootstrap): Remove.
6206         (stageprofile-end): Zap stagefeedback.
6207         (stagefeedback-start): Copy all .gcda files, not only GCC's.
6208         * Makefile.in: Regenerate.
6210 2005-06-13  Zack Weinberg  <zack@codesourcery.com>
6212         * depcomp: Update from automake CVS.  Add 'ia64hp' stanza.
6213         In 'cpp' stanza, support '#line' as well as '# '.
6215 2005-06-07  Hans-Peter Nilsson  <hp@axis.com>
6217         * configure.in (unsupported_languages): New macro.
6218         <mmix-knuth-mmixware>: Set unsupported_languages.  Name explicit
6219         non-ported target libraries in noconfigdirs.
6220         <cris-*, crisv32-*> Ditto, except for non-aout, non-elf,
6221         non-linux-gnu.  Remove libgcj_ex_libffi.
6222         <lang_frag loop>: Set add_this_lang=no if the language is in
6223         unsupported_languages.
6224         * configure: Regenerate.
6226 2005-06-04  Tobias Schl"uter  <tobias.schlueter@physik.uni-muenchen.de>
6228         * configure.in: Fix typo in handling of --with-mpfr-dir.
6229         * configure: Regenerate.
6231 2005-06-02  Jim Blandy  <jimb@redhat.com>
6233         * config.sub: Add cases for the Renesas m32c.  (This patch has been
6234         accepted into the master sources.)
6236 2005-06-02  Aldy Hernandez  <aldyh@redhat.com>
6237             Michael Snyder  <msnyder@redhat.com>
6238             Stan Cox  <scox@redhat.com>
6240         * configure.in: Set noconfigdirs for ms1.
6242         * configure: Regenerate.
6244 2005-05-25  Paolo Bonzini  <bonzini@gnu.org>
6246         * Makefile.tpl (stage[+id+]-start): Iterate over target module as well.
6247         (Dependencies): Consider target modules for bootstrap dependencies.
6248         Make target bootstrap modules depend on each stage's gcc.
6249         * Makefile.in: Regenerate.
6251 2005-05-20  Paolo Bonzini  <bonzini@gnu.org>
6253         * Makefile.def (configure-gcc): Depend on binutils having been built.
6254         (all-gcc): No need to do it here.
6255         * Makefile.in: Regenerate.
6257 2005-05-19  Paul Brook  <paul@codesourcery.com>
6259         * configure.in: Rewrite misleading error message when requested
6260         language cannot be built.
6261         * configure: Regenerate.
6263 2005-05-15  Daniel Jacobowitz  <dan@codesourcery.com>
6265         * ylwrap: Import from Automake 1.9.5.
6267 2005-05-04  Mike Stump  <mrs@apple.com>
6269         * configure.in: Always pass --target to target configures as
6270         otherwise rebuilds that do --recheck will fail.
6271         * configure: Rebuilt.
6273 2005-05-04  Paolo Bonzini  <bonzini@gnu.org>
6275         * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Rename from
6276         STAGE_HOST_EXPORTS.
6277         (configure, all): Add bootstrap support.
6278         (Host modules, target modules): Pass post-stage1 flags and exports.
6279         (Top-level bootstrap): Remove bootstrap rules, expanded elsewhere.
6280         * Makefile.in: Regenerate.
6282 2005-04-29  Paolo Bonzini  <bonzini@gnu.org>
6284         Sync from gcc:
6286         2005-04-22  Bernd Schmidt  <bernd.schmidt@analog.com>
6288         * config.sub: Update from master copy.
6290         2005-04-19  Hans-Peter Nilsson  <hp@axis.com>
6292         * configure.in <crisv32-*-*, cris-*-*>: New local variable
6293         libgcj_ex_libffi.  Have specific match for *-*-linux*.  Separate
6294         matches for "*-*-aout" and "*-*-elf".  Don't disable libffi for
6295         "*-*-elf" and "*-*-linux*".
6296         * configure: Regenerate.
6298 2005-04-06  Paolo Bonzini  <bonzini@gnu.org>
6300         * Makefile.tpl (BUILD_CONFIGARGS): Include --with-build-subdir.
6301         (TARGET_CONFIGARGS): Include --with-target-subdir.
6302         (configure, all): New macros.  Use them throughout.
6304 2005-04-05  Paolo Bonzini  <bonzini@gnu.org>
6306         * Makefile.tpl: Sync with gcc.
6307         * Makefile.in: Regenerate.
6309 2005-03-30  J"orn Rennecke <joern.rennecke@st.com>
6311         * config/mh-mingw32: Delete.
6312         * configure.in: Don't use it.
6313         * configure: Regenerate.
6315 2005-03-31  Paolo Bonzini  <bonzini@gnu.org>
6317         * Makefile.def (bfd, opcodes, libstdc++-v3, libmudflap): Set lib_path.
6318         * Makefile.tpl (SET_LIB_PATH, REALLY_SET_LIB_PATH): Remove.
6319         (HOST_EXPORTS, STAGE_HOST_EXPORTS, TARGET_EXPORTS): Set $(RPATH_ENVVAR).
6320         (HOST_LIB_PATH): Generate from Makefile.def.
6321         (TARGET_LIB_PATH): Likewise.
6322         (Old bootstrap targets): Include TARGET_LIB_PATH into RPATH_ENVVAR.
6323         * Makefile.in: Regenerate.
6324         * configure.in (set_lib_path, SET_LIB_PATH, SET_GCC_LIB_PATH): Remove.
6325         (RPATH_ENVVAR): Include Darwin case.
6326         * configure: Regenerate.
6328 2005-03-25  Paolo Bonzini  <bonzini@gnu.org>
6330         * configure.in (RPATH_ENVVAR): Set to DYLD_LIBRARY_PATH on Darwin.
6331         * configure: Regenerate.
6333 2005-03-21  Zack Weinberg  <zack@codesourcery.com>
6335         * Makefile.def: Remove libstdcxx_incdir, libsubdir, gxx_include_dir,
6336         gcc_version, and gcc_version_trigger from set of flags to pass.
6337         * Makefile.tpl: Remove definitions of above variables.
6338         (config.status): Remove dependency on $(gcc_version_trigger).
6339         * Makefile.in: Regenerate.
6340         * configure.in: Do not reference config/gcc-version.m4 nor
6341         config/gxx-include-dir.m4.  Do not invoke TL_AC_GCC_VERSION nor
6342         TL_AC_GXX_INCLUDE_DIR.  Do not set gcc_version_trigger.
6343         * configure: Regenerate.
6345 2005-03-16  Manfred Hollstein  <manfred.h@gmx.net>
6346             Andrew Pinski <pinskia@physics.uc.edu>
6348         * Makefile.tpl (check-[+module+]): Fix shell statement inside if ... fi.
6349         * Makefile.in: Regenerate.
6351 2005-03-01  Alexandre Oliva  <aoliva@redhat.com>
6353         PR libgcj/20160
6354         * ltmain.sh: Avoid creating archives with components that have
6355         duplicate basenames.
6357 2005-02-28  Andrew Pinski  <pinskia@physics.uc.edu>
6359         PR bootstrap/20250
6360         * Makefile.tpl (HOST target installs): Fix copy and pasto, use install
6361         instead of check.
6362         * Makefile.in: Regenerate.
6364 2005-02-28  Paolo Bonzini  <bonzini@gnu.org>
6366         Sync from gcc.
6368         2005-02-28  Paolo Bonzini  <bonzini@gnu.org>
6370         PR bootstrap/17383
6371         * Makefile.def (target_modules): Remove "stage", now unnecessary.
6372         * Makefile.tpl (HOST_SUBDIR): New substitution.
6373         (STAGE_HOST_EXPORTS, EXPECT, HOST_LIB_PATH, USUAL_AR_FOR_TARGET,
6374         USUAL_AS_FOR_TARGET, USUAL_DLLTOOL_FOR_TARGET, USUAL_GCC_FOR_TARGET,
6375         USUAL_LD_FOR_TARGET, USUAL_NM_FOR_TARGET, USUAL_OBJDUMP_FOR_TARGET,
6376         USUAL_RANLIB_FOR_TARGET, USUAL_WINDRES_FOR_TARGET): Use it.
6377         (Host modules, Bootstrapped modules): Use it.
6378         (Build modules, Target modules): Do not create symlink trees,
6379         always configure out-of-srcdir.
6380         (distclean): Try removing $(host_subdir) with rm before using rm -rf.
6381         * configure.in (FLAGS_FOR_TARGET, CC_FOR_TARGET, GCJ_FOR_TARGET,
6382         GFORTRAN_FOR_TARGET, CXX_FOR_TARGET, RAW_CXX_FOR_TARGET): Use
6383         $(HOST_SUBDIR).  Create a symlink for host_subdir.
6385         * Makefile.in: Regenerate.
6386         * configure: Regenerate.
6388         Merged from libada-gnattools-branch:
6389         2004-11-28  Nathanael Nerode  <neroden@gcc.gnu.org>
6391         * Makefile.def: Add gnattools as a module, depending on target-libada.
6392         * Makefile.in: Regenerate.
6393         * configure.in: Include gnattools in host_tools; disable it if ada
6394         is disabled.
6395         * configure: Regenerate.
6397 2005-02-23  Nick Clifton  <nickc@redhat.com>
6399         * configure: Regenerate.
6401 2005-02-22  Paul Schlie  <schlie@comcast.net>
6403         * configure.in: Allow darwin targeted ports to build tk, itcl and
6404         libgui.
6406 2005-02-21  Eric Botcazou  <ebotcazou@libertysurf.fr>
6408         PR libgcj/10353
6409         * configure.in (noconfigdirs) <sparc-*-solaris2.[0-6]>: Add libgcj.
6410         * configure: Regenerate.
6412 2005-02-08  Andrew Cagney  <cagney@gnu.org>
6414         * MAINTAINERS: Delete reference to dejagnu/ and mmalloc/ from the
6415         gdb/ section.  Update GDB's URL.
6417 2005-01-31  Andrew Cagney  <cagney@gnu.org>
6419         * gettext.m4: Only set ENABLE_NLS when gettext is present.
6421 2005-01-29  Hans-Peter Nilsson  <hp@axis.com>
6423         * configure.in (noconfigdirs) <crisv32-*-*>: Match like cris-*-*.
6424         <crisv32-*-*, cris-*-*>: Only disable target-newlib and
6425         target-libgloss when not *-*-elf and *-*-aout.
6426         * configure: Regenerate.
6428 2005-01-27  Andrew Cagney  <cagney@gnu.org>
6430         * gettext.m4: Don't use NONE as a default for CATOBJEXT.
6432 2005-01-24  Andrew Cagney  <cagney@gnu.org>
6434         * gettext.m4: Only fall back to ../intl/ when it's present.
6436 2005-01-17  Kelley Cook  <kcook@gcc.gnu.org>
6438         * install-sh, config.sub: Import from upstream.
6440 2005-01-17  Kelley Cook  <kcook@gcc.gnu.org>
6442         PR bootstrap/18222
6443         * Makefile.def: Pass CPPFLAGS_FOR_TARGET.
6444         * Makefile.tpl: Define target CPPFLAGS on CPPFLAGS_FOR_TARGET.
6445         * Makefile.in: Regenerate.
6447 2005-01-03  Paolo Bonzini  <bonzini@gnu.org>
6449         Revert 2004-12-28 Makefile changes, a better fix will be
6450         applied to mainline and src after GCC 4.0 branches.
6452 2004-12-28  Paolo Bonzini  <bonzini@gnu.org>
6454         PR bootstrap/17383
6456         * Makefile.def (target_modules): Remove stage parameter,
6457         it is always true now.
6458         * Makefile.tpl (configure-build-[+module+],
6459         configure-target-[+module+]): Always build symlink tree
6460         for the directory and for include.  BUILD_SUBDIR and
6461         TARGET_SUBDIR cannot be . anymore.
6462         * Makefile.in: Regenerate.
6464 2004-12-25  David Edelsohn  <edelsohn@gnu.org>
6466         Revert 2004-12-08 Makefile changes.
6468 2004-12-16  Andrew Stubbs  <andrew.stubbs@st.com>
6470         * configure.in (sh64-*-*): Reenable gprof.
6471         * configure: Regenerate.
6473 2004-12-09  Jim Blandy  <jimb@redhat.com>
6475         * MAINTAINERS: List 'depcomp' as part of automake.
6477 2004-12-08  David Edelsohn  <edelsohn@gnu.org>
6479         * Makefile.def (flags_to_pass): Add PICFLAG_FOR_TARGET.
6480         * Makefile.tpl (EXTRA_HOST_FLAGS): Add PICFLAG.
6481         (EXTRA_TARGET_FLAGS): Add PICFLAG.
6482         * Makefile.in: Regenerate.
6484 2004-12-07  Matt Kraai  <kraai@ftbfs.org>
6486         * Makefile.tpl: Generate normal dependencies if the LHS module is
6487         not bootstrapped.
6488         * Makefile.in: Regenerate.
6490 2004-12-03  Richard Sandiford  <rsandifo@redhat.com>
6492         * configure.in: Include config/gxx-include-dir.m4.  Use
6493         TL_AC_GXX_INCLUDE_DIR.  Remove some now-redundant AC_SUBSTs.
6494         * configure: Regenerate.
6496 2004-12-03  Richard Sandiford  <rsandifo@redhat.com>
6498         * config.if: Delete.
6499         * configure.in: Set libstdcxx_incdir directly.
6500         * configure: Regenerate.
6501         * MAINTAINERS: Remove mention of config.if.
6502         * src-release (DEVO_SUPPORT): Remove config.if.
6504 2004-12-02  Eric Christopher  <echristo@redhat.com>
6506         * Makefile.tpl (clean-target-libgcc): Add stmp-dirs to list
6507         of things to remove.
6508         * Makefile.in: Regenerate.
6510 2004-12-02  Richard Sandiford  <rsandifo@redhat.com>
6512         * configure.in: Clear gcc_version_trigger if the file doesn't exist.
6513         * configure: Regenerate.
6515 2004-12-02  Richard Sandiford  <rsandifo@redhat.com>
6517         * configure.in: Include config/gcc-version.m4.  Use TL_AC_GCC_VERSION
6518         to set gcc_version_trigger.  Remove some now-redundant AC_SUBSTs.
6519         * configure: Regenerate.
6521 2004-11-26  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
6523         * configure.in (hppa*-*-linux*): Don't add libgcj to noconfigdirs.
6524         (hppa*64*-*-*): Delete incorrect comment.
6525         * configure: Rebuilt.
6527 2004-11-15  Kelley Cook  <kcook@gcc.gnu.org>
6529         * install-sh, compile: Import from automake.
6531 2004-11-15  Kelley Cook  <kcook@gcc.gnu.org>
6533         * config.guess, config.sub:  Import from savannnah.
6535 2004-11-12  Mike Stump  <mrs@apple.com>
6537         * Makefile.def: Add html support.
6538         * Makefile.tpl: Likewise.
6539         * Makefile.in: Regenerate.
6541 2004-11-11  Geoffrey Keating  <geoffk@apple.com>
6543         PR 18423
6544         * configure.in: Remove all instances of build-fixincludes from
6545         noconfigdirs.
6546         (build_configargs): Supply --target to subdirectories.
6547         * configure: Regenerate.
6549         * Makefile.def: Make gcc install depend on fixincludes install.
6550         * Makefile.in: Regenerate.
6552 2004-11-08  Hans-Peter Nilsson  <hp@bitrange.com>
6554         * configure.in (noconfigdirs) [mmix-*-*]: Disable
6555         target-libgfortran.
6556         * configure: Regenerate.
6558 2004-11-07  David Edelsohn  <edelsohn@gnu.org>
6560         * config-ml.in: Pass FCFLAGS for multilibs, handle GFORTRAN
6561         like CC.
6563 2004-11-05  Paolo Bonzini  <bonzini@gnu.org>
6565         * Makefile.def (host fixincludes): Specify missing targets.
6566         * Makefile.in: Regenerate.
6568 2004-11-04  H.J. Lu  <hongjiu.lu@intel.com>
6570         PR other/17783
6571         * configure.in: Set up LD_LIBRARY_PATH by default for gcc.
6572         * configure: Regenerated.
6574 2004-11-04  Daniel Jacobowitz  <dan@debian.org>
6576         * configure.in (arm-*-oabi*, thumb-*-oabi*): Remove.
6577         * configure: Regenerated.
6579 2004-10-28  Eric B. Weddington  <ericw@evcohs.com>
6581         PR target/18151
6582         * configure.in (case ${target}): Do not build fixincludes for avr.
6583         * configure: Regenerated.
6585 2004-10-26  Paolo Bonzini  <bonzini@gnu.org>
6587         * configure.in (case ${target}): Do not build fixincludes
6588         on platforms where it is not used.
6589         * configure: Regenerated.
6591 2004-10-23  Daniel Jacobowitz  <dan@debian.org>
6593         * configure.in: Use an absolute path to install-sh.
6594         * configure: Regenerated.
6596 2004-10-19  Andrew Cagney  <cagney@gnu.org>
6598         * src-release (do-djunpack, do-md5sum): Install the generated file
6599         directly into the proto-toplev/ directory.
6601 2004-10-19  Andrew Cagney  <cagney@gnu.org>
6603         * src-release (GDB_SUPPORT_DIRS): Remove utils and intl.
6605 2004-10-12  Kelley Cook  <kcook@gcc.gnu.org>
6607         * configure.in (*-*-cygwin*): Supress warning if newlib not present.
6608         * configure: Regenerate.
6610 2004-10-06  Paolo Bonzini  <bonzini@gnu.org>
6612         Fix wrong conflict resolution in:
6614         2004-08-16  Paolo Bonzini  <bonzini@gnu.org>
6616         * Makefile.in: Regenerate.
6617         * Makefile.tpl (Autogenerated `all-*' targets): Invoke $(TARGET-*)
6618         in the recursive `make', instead of hardwiring `all'.
6619         (Autogenerated TARGET-* variables): New.
6621 2004-10-05  Ulrich Weigand  <uweigand@de.ibm.com>
6623         Merged from GCC / libtool upstream:
6624         2004-10-02  P.J. Darcy  <darcypj@us.ibm.com>
6625         * ltcf-c.sh (tpf*): Add ld_shlibs=yes.
6626         * ltcf-cxx.sh (tpf*): Likewise.
6627         * ltconfig (tpf*): Add TPF OS configuration support.
6629 2004-09-30  Tomer Levi  <Tomer.Levi@nsc.com>
6631         * configure.in: Enable target-libgloss for crx-*-*.
6632         * configure: Regenerate.
6634 2004-09-24  Michael Roth  <mroth@nessie.de>
6636         * configure.in (--without-headers): Add missing double quotes.
6637         * configure: Regenerate.
6639 2004-09-24  Kelley Cook <kcook@gcc.gnu.org>
6641         * ylwrap: Revert to previous version.
6643 2004-09-23  H.J. Lu  <hongjiu.lu@intel.com>
6645         PR bootstrap/17369
6646         * Makefile.tpl (REALLY_SET_LIB_PATH): Add @SET_GCC_LIB_PATH@.
6647         (HOST_EXPORTS]): Add @SET_GCC_LIB_PATH@. Set and export
6648         SET_GCC_LIB_PATH_CMD.
6649         (BASE_TARGET_EXPORTS): Likewise.
6650         * Makefile.in: Regenerated.
6652         * configure.in (SET_GCC_LIB_PATH): Set and substitute.
6653         * configure: Regenerated.
6655 2004-09-23  Kelley Cook  <kcook@gcc.gnu.org>
6657         * config.guess: New upstream version
6658         * compile, depcomp, install-sh, ylwrap: Likewise.
6660 2004-09-19  Roger Sayle  <roger@eyesopen.com>
6662         * config/mh-x86omitfp: New host makefile fragment.  Add
6663         -fomit-frame-pointer to the default BOOT_CFLAGS.
6664         * configure.in: Use it to speed up bootstrap on some IA-32 hosts.
6665         * configure: Regenerate.
6667 2004-09-15  Andrew Pinski  <pinskia@physics.uc.edu>
6669         PR target/11572
6670         * configure.in (*-*-darwin*): Renable libobjc.
6671         * configure: Regenerate.
6673 2004-09-09  Daniel Berlin  <dberlin@dberlin.org>
6675         * Makefile.def: Remove libbanshee.
6676         * Makefile.tpl: Ditto.
6677         * configure.in: Ditto.
6678         * Makefile.in: Regen.
6679         * configure: Ditto.
6681 2004-09-07  Paolo Bonzini  <bonzini@gnu.org>
6683         * missing: Import latest version from master repository.
6685 2004-09-04  Nick Clifton  <nickc@redhat.com>
6687         * config.sub: Import latest version from master repository.
6688         * config.guess: Likewise.
6689         This includes these changes:
6691         2004-08-27  Hans-Peter Nilsson  <hp@axis.com>
6693         * config.sub: Handle crisv32, alias etraxfs.
6694         * config.guess (crisv32:Linux:*:*): Handle.
6696         2004-08-13  Brad Smith  <brad@comstyle.com>
6698         * config.guess (*:OpenBSD:*:*): Remove defunct MIPS machines.
6699         (sgi:OpenBSD:*:*): Emit mips64, not mipseb.
6701         2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
6703         * config.guess (*:Darwin:*:*): If uname -p reports "unknown",
6704         assume the processor is a powerpc.  This is because coreutils
6705         uname (at least versions 4.5.7 through 5.2.1) outputs "unknown"
6706         in this case, due to a MacOS X bug that causes
6707         sysctl ((int[]) {CTL_HW, HW_MACHINE_ARCH}, 2, buffer, &bufsize, 0, 0)
6708         to return a negative number.
6709         Problem reported by Petter Reinholdtsen in:
6710         http://lists.gnu.org/archive/html/bug-gnu-utils/2003-02/msg00201.html
6712         2004-07-19  Ben Elliston  <bje@gnu.org>
6714         * config.guess (S7501:*:4.0:3.0): Handle NCR System V UNIX machine.
6716         2004-06-24  Ben Elliston  <bje@gnu.org>
6718         * config.guess: Update copyright years.
6719         * config.sub: Likewise.
6721         2004-06-22  Robert Millan  <robertmh@gnu.org>
6723         * config.guess (*:FreeBSD:*:*): Remove check for glibc (unneeded
6724         since GNU/kFreeBSD systems match *:GNU/*:*:* instead).
6726         2004-06-22  Stanley F. Quayle <stan@stanq.com>
6728         * config.guess (*:*VMS:*:*): New entry. Replaces
6729         Alpha:OpenVMS:*. Recognize and advertise all VMS flavors as dec
6730         manufacturer.
6732         2004-06-22  Ben Elliston  <bje@gnu.org>
6734         * config.guess: Cray fixes from Wendy Palm <wendyp@cray.com>.
6735         * config.sub: Likewise.
6737         2004-06-22  Ben Elliston  <bje@gnu.org>
6739         Reported by Hans-Peter Nilsson <hp@bitrange.com>:
6740         * config.sub: Correctly handle mmix-knuth and mmix-knuth-mmixware.
6742         2004-06-11  Ben Elliston  <bje@gnu.org>
6744         * config.guess (pegasos:OpenBSD:*:*): Remove.
6746         2004-06-11  Ben Elliston  <bje@gnu.org>
6748         From Wouter Verhelst <wouter@grep.be>:
6749         * config.guess (M68*:*:R3V[5678]:*): Detect R3V8.
6751         2004-06-11  Ben Elliston  <bje@gnu.org>
6753         * config.guess (luna88k:OpenBSD:*:*): New.
6755         2004-03-12  Kazuhiro Inaoka  <inaoka.kazuhiro@renesas.com>
6757         * config.guess (m32r*:Linux:*:*): New case.
6758         * config.sub: Handle m32rle.
6760         2004-03-12  Ben Elliston  <bje@wasabisystems.com>
6762         From Jens Petersen  <petersen@redhat.com>:
6763         * config.sub: Handle sparcv8.
6765         2004-03-03  Ben Elliston  <bje@wasabisystems.com>
6767         From Tom Smith <smith@cag.lkg.hp.com>:
6768         * config.guess: Version suffixes are equally significant on Tru64
6769         V4.* and V5.*, so do not ignore them on V5.*.  Handle a version
6770         prefix of "P" (patched kernel).
6772         2004-02-23  Tal Agmon  <Tal.Agmon@nsc.com>
6774         * config.sub: Add support for National Semiconductor CRX target.
6776 2004-09-03  Jan Beulich  <jbeulich@novell.com>
6778         * configure.in: Remove target-libstdc++-v3 from noconfigdirs for
6779         *-*-netware, but add target-libmudflap.
6780         Consolidate *-*-netware targets (of which really only i?86 exists)
6781         into a single entry.
6782         * configure: Likewise.
6784 2004-09-01  Paolo Bonzini  <bonzini@gnu.org>
6786         * Makefile.tpl (sorry): Remove.
6787         (clean-stage[+id+], clean-stage[+id+]-module): New targets.
6788         (cleanstrap targets): Depend on distclean, not distclean-stage1.
6789         (do-clean): Clean per-stage directories too.
6790         (do-distclean): Run distclean-stage1 too.
6791         (.NOTPARALLEL): Enable during toplevel bootstrap.
6792         (stage[+id+]-bubble): Enable parallel execution during
6793         the recursive invocation.
6794         * Makefile.in: Regenerate.
6796         Sync from gcc (moving the Makefile.in change to Makefile.tpl):
6798         2004-08-31  Robert Bowdidge <bowdidge@apple.com>
6800         * Makefile.in: Move BOOT_CFLAGS above host makefile fragment include.
6801         * configure.in: add test for powerpc-*-darwin* to specify makefile frag
6802         * configure: regenerate
6803         * config/mh-ppc-darwin: create file, override BOOT_CFLAGS for
6804         -mdynamic-no-pic
6806 2004-08-31  Paolo Bonzini  <bonzini@gnu.org>
6808         * Makefile.tpl: Move BOOT_CFLAGS above host makefile fragment
6809         include.
6810         * configure.in: Fix indentation.
6811         * configure: Regenerate.
6813 2004-08-31  Paolo Bonzini  <bonzini@gnu.org>
6815         * Makefile.def (build_modules): Add fixincludes.
6816         (dependencies): Make gcc depend on fixincludes.
6817         * configure.in (build_tools): Add fixincludes.
6818         (build_configdirs): Always include build_libs.
6819         * Makefile.in: Regenerate.
6820         * configure: Regenerate.
6822 2004-08-30  Paolo Bonzini  <bonzini@gnu.org>
6824         * Makefile.def (bootstrap stages): Add 'lean' parameter.
6825         * Makefile.tpl (configure-stageN-*, all-stageN-*): Turned into
6826         phony targets; do not generate timestamp files.
6827         (distclean-stageN): Remove references to their timestamp files.
6828         (restageN, touch-stageN): Remove.
6829         (stageN-bubble): Rewritten.
6830         (compare): Support lean bootstraps.
6831         * Makefile.in: Regenerate.
6833         * configure.in: Only warn when bootstrapping but
6834         build != host or build != target.  Support lean bootstraps.
6835         * configure: Regenerate.
6837         Sync from gcc:
6838         2004-08-26  Phil Edwards  <phil@codesourcery.com>
6840         * configure.in:  Give a better error message if GMP/MPFR are missing
6841         and a language needing them has been requested.
6842         * configure:  Regenerated.
6844         2004-08-25  Phil Edwards  <phil@codesourcery.com>
6846         * configure.in:  Print a list of available language front-ends if
6847         a requested one is missing.  Tidy stray tab characters.
6848         * configure:  Regenerated.
6850 2004-08-17  Paolo Bonzini  <bonzini@gnu.org>
6852         * Makefile.in: Regenerate.
6853         * configure: Regenerate.
6855         * Makefile.def (bootstrap-stage): Rename extra_*_flags to
6856         stage_*_flags.
6857         * Makefile.tpl (configure-[+module+], all-[+module+]): Exit
6858         for bootstrapped modules if toplevel bootstrap is going.
6859         (GCC bootstrap): Generate per-stage targets for all bootstrapped
6860         modules.  Adjust for changes in Makefile.def.  Enable several
6861         rules even in non-bootstrap mode, just to avoid peppering the
6862         template with unnecessary "@if/@endif gcc-bootstrap" pairs.
6863         (stage-[+prev+]-bubble): Remove.
6865         * Makefile.def (Dependencies): Depend on all-build-bison,
6866         all-build-flex, all-build-byacc, all-build-texinfo, rather
6867         than the host variations.
6868         * Makefile.tpl (BUILD_DIR_PREFIX): Remove.  Replace throughout
6869         with BUILD_SUBDIR.
6870         (BISON): Update for recent Bisons.
6871         (YACC): Fix typo.
6872         (cross): Depend on all-build.
6873         (all): Do not depend on all-build.
6874         (prebootstrap): Remove.
6875         (dep-kind): Accept separate prefixes for MODULE and ON variables.
6876         (Prebootstrap dependencies): Add them to the per-stage targets
6877         and to all-prebootstrap.
6878         * configure.in (build_configdirs): Always enable build_tools.
6879         (BUILD_DIR_PREFIX): Remove.
6881         * Makefile.def (gcc): Add target variable.
6882         (gdb, expect, guile, tk, tix): Replace with_x with extra_make_flags.
6883         * Makefile.tpl (Autogenerated `all-*' targets): Invoke $(TARGET-*)
6884         in the recursive `make', instead of hardwiring `all'.
6885         (Autogenerated TARGET-* variables): New.
6887 2004-08-17  Robert Millan  <robertmh@gnu.org>
6889         * configure.in: In noconfigdirs check, match GNU/k*BSD with GNU/Linux
6890         (instead of FreeBSD).
6891         * configure: Regenerate.
6893 2004-08-12  Nathanael Nerode  <neroden@gcc.gnu.org>
6895         * Makefile.def, configure.in, src-release: Remove useless, bogus
6896         references to tix.
6897         * Makefile.in, configure: Regenerate.
6899         * src-release: Stop distributing mmalloc with gdb (which doesn't
6900         use it).
6901         * Makefile.def: GDB doesn't depend on mmalloc anymore.
6902         * Makefile.in: Regenerate.
6904 2004-08-09  Mark Mitchell  <mark@codesourcery.com>
6906         * configure.in (arm*-*-eabi*): New target.
6907         * configure: Regenerate.
6909 2004-08-01  Robert Millan  <robertmh@gnu.org>
6911         * configure.in: Turn mt-linux into mt-gnu. Use mt-gnu and enable
6912         libmudflap for all GNU-based systems (with Glibc).
6913         * configure: Regenerate.
6915 2004-08-06  Paolo Bonzini  <bonzini@gnu.org>
6917         * Makefile.def (bfd, opcodes, gcc, zlib): Mark as bootstrap module.
6918         (bison, byacc, flex, texinfo): Do not mark as bootstrap module.
6919         (Dependencies): New section.
6920         * Makefile.tpl (Dependencies): Generate from Makefile.def.
6921         (configure-target-[+module+]): Depend on maybe-all-gcc
6922         (all-prebootstrap): New name of all-bootstrap.  Changed throughout.
6923         (toplevel profiledbootstrap): Fix dependencies.
6924         * Makefile.in: Regenerate.
6926 2004-08-03  Mark Mitchell  <mark@codesourcery.com>
6928         * configure.in (arm*-*-symbianelf*): Add ${libgcj} and
6929         target-libiberty to noconfigdirs.
6931 2004-08-03  Paul Brook  <paul@codesourcery.com>
6933         * configure.in: Check for MPFR as well as GMP.
6934         * configure: Regenerate.
6936 2004-08-03 Paolo Bonzini <bonzini@gnu.org>
6938         * Makefile.def (host-modules): Add gcc.
6939         * Makefile.in: Regenerate.
6940         * Makefile.tpl (sorry): New rule.
6941         (configure-host, all-host, [+make_target+]-host, do-check,
6942         install-host): Do not add gcc as a special case.
6943         (host modules): Add a small special-casing for gcc.  Export
6944         extra_make_flags through the environment.
6945         (maybe-configure-gcc, configure-gcc, maybe-all-gcc, all-gcc,
6946         maybe-check-gcc, check-gcc, maybe-install-gcc, install-gcc,
6947         other recursive targets for gcc): Remove.
6949         (all, do-[+make_target+], do-check): Wrap between unstage and stage.
6950         (stage, unstage): New rules.
6951         (stage[+id+]-start, stage[+id+]-end, [+compare-target+],
6952         distclean-stage[+id+]): Use stage_current.
6953         ([+bootstrap-target+], profiledbootstrap): Do not invoke manually
6954         the stage*-start rules.
6956 2004-07-19  Robert Millan  <robertmh@gnu.org>
6958         Synced from gcc:
6960         2004-04-26  Robert Millan  <robertmh@gnu.org>
6962         Add patches from libtool CVS.
6963         * libtool.m4: Add kfreebsd*-gnu and knetbsd*-gnu.
6964         * ltconfig: Likewise.
6965         * ltcf-c.sh: Likewise.
6966         * ltcf-cxx.sh: Likewise.
6967         * ltcf-gcj.sh: Likewise.
6969 2004-07-12  Paolo Bonzini  <bonzini@gnu.org>
6971         * configure.in: Add noconfigdirs for crx-*-*.
6972         * configure: Regenerate.
6974 2004-07-12  Paolo Bonzini  <bonzini@gnu.org>
6976         Synced from gcc:
6978         2004-07-09  Loren J. Rittle <ljrittle@acm.org>
6980         * configure.in: Build libmudflap by default on FreeBSD.
6981         * configure: Regenerated.
6983         2004-07-09  Mark Mitchell  <mark@codesourcery.com>
6985         * configure.in: Do not build libmudflap by default on non-GNU/Linux
6986         systems.
6987         * configure: Regenerated.
6989         2004-07-08 John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
6991         PR target/16344
6992         * Makefile.tpl (profiledbootstrap): Build runtime libraries with
6993         feedback based compiler.
6994         * Makefile.in: Rebuilt.
6996         2004-07-05  Phil Edwards  <phil@codesourcery.com>
6998         * configure.in:  Do not prepend $srcdir to /dev/null in
6999         makefile fragments.
7000         * configure:  Regenerate.
7002 2004-07-08  Alexandre Oliva  <aoliva@redhat.com>
7004         * Makefile.def (host_modules): Set bootstrap=true for flex.
7005         * Makefile.tpl (all-gcc): Depend on texinfo and flex.
7006         * Makefile.in: Rebuilt.
7008 2004-07-01  Paolo Bonzini  <bonzini@gnu.org>
7010         * Makefile.def (build_modules): Add bison, byacc, flex,
7011         m4, texinfo.
7012         (flags_to_pass): Add FLEX.
7013         * Makefile.tpl (BUILD_DIR_PREFIX, BASE_EXPORTS): New.
7014         (BUILD_EXPORTS, HOST_EXPORTS, BASE_TARGET_EXPORTS): Include it.
7015         (DEFAULT_YACC, USUAL_YACC, DEFAULT_LEX, USUAL_LEX, DEFAULT_M4,
7016         DEFAULT_MAKEINFO): Remove.
7017         (CONFIGURED_YACC, CONFIGURED_FLEX, CONFIGURED_BISON,
7018         CONFIGURED_LEX, CONFIGURED_M4, CONFIGURED_MAKEINFO): Substitute.
7019         (YACC, FLEX, BISON, LEX, M4, MAKEINFO): Define to look into
7020         objdir or else use configured tool.
7021         (all-build): New.
7022         (all): Depend on it.
7023         (Build module dependencies): Add.
7024         * Makefile.in: Regenerate.
7025         * configure.in: Better support for multiple build modules,
7026         matching what is done for host/target modules.  Do not look
7027         for "plausible" locations of build tools if Canadian cross.
7028         Use autoconf's AC_PROG_CC to find a C compiler.  Define
7029         BUILD_DIR_PREFIX.  Look for flex, makeinfo and m4.
7030         * configure: Regenerate.
7032 2004-06-22  Paolo Bonzini  <bonzini@gnu.org>
7034         * Makefile.tpl (HOST_EXPORTS): Fix pasto.
7035         * Makefile.in: Regenerate.
7037 2004-06-22  Paolo Bonzini  <bonzini@gnu.org>
7039         * Makefile.tpl (configure-build-[+module+],
7040         configure-[+module+], configure-target-[+module+]): Pass
7041         [+extra_configure_args+].
7042         (all-build-[+module+], all-[+module+], check-[+module+],
7043         install-[+module+], [+make_target+]-[+module+],
7044         all-target-[+module+], check-target-[+module+],
7045         install-target-[+module+], [+make_target+]-target-[+module+]):
7046         Pass [+extra_make_args+].
7047         (HOST_EXPORTS): Include the former GCC_HOST_EXPORTS.
7048         (GCC_HOST_EXPORTS): Remove.
7049         (configure-gcc, all-gcc, GCC_STRAP_TARGETS, profiledbootstrap,
7050         cross, check-gcc, check-gcc-c++, install-gcc,
7051         gcc-no-fixedincludes, [+make_target+]-gcc, stage[+id+]-bubble):
7052         Replace GCC_HOST_EXPORTS with HOST_EXPORTS.
7053         * Makefile.in: Regenerate.
7055 2004-06-21  Christopher Faylor  <cgf@alum.bu.edu>
7057         * configure.in: Check for srcdir/winsup rather than build directory
7058         winsup.
7059         * configure: Regenerate.
7061 2004-06-17  Corinna Vinschen  <vinschen@redhat.com>
7063         * configure.in: Don't build Cygwin native newlib if winsup
7064         directory is missing.  Emit warning instead.
7065         * configure: Regenerate.
7067 2004-06-09  Paolo Bonzini  <bonzini@gnu.org>
7069         * Makefile.tpl (touch-stage[+id+]): New.
7070         (restage[+prev+]): Depend on touch-stage[+id+].
7072         * Makefile.tpl (RECURSE_FLAGS_TO_PASS): New.
7073         Use it throughout.
7075         * Makefile.def: Add profile and feedback bootstrap stages.
7076         Remove next field from bootstrap stages.
7077         * Makefile.tpl (LN, LN_S): Substitute.
7078         (stageN-start, stageN-end): Use double-colon rules, to
7079         provide a hook for additional setup commands.
7080         (distclean-stageN-gcc, restageN): Create dependencies from
7081         [+prev+], not from [+next+].
7082         (stageN-bubble): Add commands for successive stages from
7083         [+prev+], using double-colon rules.
7084         (all-stageN-gcc): Fix typo.
7085         (stagefeedback-start, profiledbootstrap): New.
7086         * Makefile.in: Regenerate.
7087         * configure.in: Call ACX_PROG_LN.
7088         * configure: Regenerate.
7090 2004-06-03  Paolo Bonzini  <bonzini@gnu.org>
7092         * configure.in: Fix --enable-bootstrap breakage introduced in trees
7093         without gcc.
7094         * configure: Regenerate.
7096 2004-06-01  Paolo Bonzini  <bonzini@gnu.org>
7098         * Makefile.tpl: Fix typo.
7099         * Makefile.in: Regenerate.
7101 2004-06-01  Paolo Bonzini <bonzini@gnu.org>
7103         * configure.in: Remove new- prefix from toplevel
7104         bootstrap targets.
7105         * configure: Regenerate.
7107 2004-06-01  Paolo Bonzini <bonzini@gnu.org>
7109         Merge this patch from the gcc tree:
7111         2004-05-30  Andreas Jaeger  <aj@suse.de>
7112                     Jim Wilson <wilson@specifixinc.com>
7114         * config-ml.in: Pass FFLAGS and ADAFLAGS for multilibs, handle F77
7115         like CC.
7117 2004-06-01  Paolo Bonzini  <bonzini@gnu.org>
7119         * Makefile.tpl (all.normal): Rename to all.
7120         (all): Replace with a rule to pick the default
7121         target from configure.
7122         (all-gcc, configure-gcc): Use conditionals to
7123         do nothing when toplevel bootstrap is going on.
7124         (GCC directory bootstrap) [gcc-bootstrap]: Disable.
7125         (Toplevel bootstrap) [gcc-no-bootstrap]: Disable.
7126         * configure.in: Support --enable-bootstrap.
7128         * Makefile.def: Remove new- prefix from toplevel
7129         bootstrap targets.
7130         * Makefile.tpl: Likewise.
7132         * Makefile.def: Add bootstrap_stage 4.  Add bootstrap2
7133         target.
7135         * Makefile.tpl (Toplevel bootstrap): Pass $(BASE_FLAGS_TO_PASS)
7136         $(RECURSE_FLAGS) to recursive invocation of make.
7138         * Makefile.in: Regenerate.
7139         * configure: Regenerate.
7141 2004-05-27  Daniel Jacobowitz  <dan@debian.org>
7143         * configure.in: Fix sed invocation for GFORTRAN_FOR_TARGET.
7144         * configure: Regenerate.
7146 2004-05-25  Daniel Jacobowitz  <drow@false.org>
7148         * Makefile.tpl (BUILD_EXPORTS, HOST_EXPORTS, GCC_HOST_EXPORTS)
7149         (STAGE_HOST_EXPORTS, BASE_TARGET_EXPORTS, RAW_CXX_TARGET_EXPORTS)
7150         (NORMAL_TARGET_EXPORTS): New macros.  Use them in all the recursive
7151         targets.
7152         * Makefile.in: Regenerate.
7154 2005-05-24  Paolo Bonzini <bonzini@gnu.org>
7156         * configure.in: Test the ability to symlink directories.
7157         * configure: Regenerate.
7159         * Makefile.def (bootstrap-stage): New definitions.
7160         * Makefile.tpl (configure-stage1-gcc,
7161         configure-stage2-gcc, configure-stage3-gcc,
7162         all-stage1-gcc, all-stage2-gcc, all-stage3-gcc,
7163         new-bootstrap, new-cleanstrap, new-restage1, new-restage2,
7164         new-restage3, compare): Autogenerate, see Makefile.in
7165         entry for behavioral changes.
7166         (distclean-stage1, new-stage1-start, new-stage1-end,
7167         new-stage1-bubble, distclean-stage2, new-stage2-start,
7168         new-stage2-end, new-stage2-bubble, distclean-stage3,
7169         new-stage3-start, new-stage3-end): New autogenerated targets.
7170         (objext, prebootstrap, BOOT_CFLAGS,
7171         POSTSTAGE1_FLAGS_TO_PASS): Move above the autogenerated
7172         targets.
7174         * Makefile.in: Regenerate.
7175         (distclean-stage1, new-stage1-start, new-stage1-end,
7176         new-stage1-bubble, distclean-stage2, new-stage2-start,
7177         new-stage2-end, new-stage2-bubble, distclean-stage3,
7178         new-stage3-start, new-stage3-end): New targets.
7179         (all-stage1-gcc): Move prebootstrap dependency from here...
7180         (configure-stage1-gcc): ...to here.
7181         (new-bootstrap): Use bubble targets.
7182         (new-cleanstrap, new-restage1, new-restage2, new-restage3):
7183         Use per-stage distclean targets.
7184         (configure-stage1-gcc, configure-stage2-gcc,
7185         configure-stage3-gcc, all-stage1-gcc,
7186         all-stage2-gcc, all-stage3-gcc, new-bootstrap):
7187         Use new-stageN-start to prepare the tree.
7189 2004-05-23  Paolo Bonzini  <bonzini@gnu.org>
7191         * Makefile.def (host_modules): add libcpp.
7192         * Makefile.tpl: Add dependencies on and for libcpp.
7193         * Makefile.in: Regenerate.
7194         * configure.in: Add libcpp host module.
7195         * configure: Regenerate.
7197 2004-05-17  Zack Weinberg  <zack@codesourcery.com>
7199         * Makefile.def, Makefile.tpl, configure.in: Remove all mention
7200         of libf2c.
7201         * configure, Makefile.in: Regenerate.
7203 2004-05-13  Diego Novillo  <dnovillo@redhat.com>
7205         Merge from tree-ssa-20020619-branch.
7207         * Makefile.def: Add libbanshee, libmudflap and libgfortran.
7208         * Makefile.tpl (BUILD_CONFIGDIRS): Add libbanshee.
7209         (HOST_GMPLIBS): Define.
7210         (HOST_GMPINC): Define.
7211         (TARGET_LIB_PATH): Add libmudflap.
7212         (GFORTRAN_FOR_TARGET): Define.
7213         (configure-build*): Export GFORTRAN.
7214         (configure-gcc): Export GMPLIBS and GMPINC.
7215         (all-gcc): Add maybe-all-libbanshee.
7216         (configure-target-libgfortran): Define.
7217         * Makefile.in: Regenerate.
7218         * configure.in (host_libs): Add libbanshee.
7219         (target_libraries): Add target-libmudflap and target-libgfortran.
7220         Add --with-libbanshee.
7221         Handle --disable-libmudflap.
7222         (*-*-freebsd*): Use with_gmp.
7223         Add $(libgcj) to noconfigdirs.
7224         * configure: Regenerate.
7225         * depcomp: New file.
7226         * MAINTAINERS: Add tree-ssa maintainers.
7228 2004-04-28  Paolo Bonzini  <bonzini@gnu.org>
7230         * config/acx.m4: Fix fastcompare support for new-bootstrap.
7231         * configure: Regenerate.
7233 2004-04-27  Paolo Bonzini  <bonzini@gnu.org>
7235         Revert:
7236         2004-04-26  Paolo Bonzini  <bonzini@gnu.org>
7238         * Makefile.def (flags_to_pass): Remove *dir variables that
7239         are passed to the modules via TOPLEVEL_CONFIGURE_ARGUMENTS,
7240         as well as prefix and exec_prefix.
7241         * Makefile.in: Regenerate.
7243 2004-04-26  Paolo Bonzini  <bonzini@gnu.org>
7245         * Makefile.def (host_modules): Mark with the bootstrap
7246         flag packages on which gcc depends.
7247         * Makefile.tpl (all-bootstrap): Use it.
7248         * Makefile.in: Regenerate.
7250 2004-04-26  Paolo Bonzini  <bonzini@gnu.org>
7252         * Makefile.def (flags_to_pass): Remove *dir variables that
7253         are passed to the modules via TOPLEVEL_CONFIGURE_ARGUMENTS,
7254         as well as prefix and exec_prefix.
7255         * Makefile.in: Regenerate.
7257 2004-04-26  Paolo Bonzini  <bonzini@gnu.org>
7259         * configure.in: Invoke ACX_PROG_CMP_IGNORE_INITIAL.
7260         * configure: Regenerate.
7261         * config/acx.m4: Mutuate ACX_PROG_CMP_IGNORE_INITIAL from gcc.
7262         * gcc/Makefile.tpl (compare): Use the result of the test.
7263         * gcc/Makefile.in: Regenerate.
7265 2004-04-23  Paolo Bonzini  <bonzini@gnu.org>
7267         * Makefile.tpl (all-stage1-gcc, all-stage2-gcc, all-stage3-gcc):
7268         Always relocate gcc and prev-gcc to the original names, even
7269         if the build fails.
7270         (new-cleanstrap, new-restage1, new-restage2, new-restage3):
7271         New targets.
7273 2004-04-19  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
7275         * configure.in (mips*-*-irix5*): Enable ld.
7276         * configure: Regenerate.
7278 2004-04-15  James E Wilson  <wilson@specifixinc.com>
7280         * Makefile.tpl (configure-[+module+], configure-gcc,
7281         configure-stage1-gcc, configure-stage2-gcc, configure-stage3-gcc):
7282         Set and export LDFLAGS.
7283         * Makefile.in: Regenerate.
7285 2004-04-09  Nathanael Nerode  <neroden@gcc.gnu.org>
7287         PR bootstrap/14871
7288         * Makefile.tpl: If we don't have built-in-tree target tools,
7289         use the ones found by configure rather than hacking around with
7290         program_transform_name.
7291         * configure.in: Give Makefile.tpl the information necessary
7292         to do that.
7293         * Makefile.in: Regenerate.
7294         * configure: Regenerate.
7296 2004-04-06  Nathanael Nerode  <neroden@gcc.gnu.org>
7298         PR bootstrap/14760
7299         * configure.in: When computing baseargs, strip *all* copies of
7300         offending options.  Also, don't match/substitute the trailing space,
7301         so that this actually works when two similar options are separated by
7302         only one space.
7303         * configure: Regenerate.
7305 2004-04-06  David Edelsohn  <edelsohn@gnu.org>
7307         * configure.in (powerpc-*-aix*): Remove target-libada from noconfigdirs.
7308         (rs6000-*-aix*): Same.
7309         * configure: Regenerate.
7311 2004-03-25  Stan Shebs  <shebs@apple.com>
7313         Remove MPW support, no longer used.
7314         * mpw-README, mpw-build.in, mpw-config.in, mpw-configure,
7315         mpw-install: Remove files.
7316         * src-release (DEVO_SUPPORT): Remove names of removed files.
7317         * MAINTAINERS: Likewise.
7319 2004-03-24  Nathanael Nerode  <neroden@gcc.gnu.org>
7321         * Makefile.tpl (top level bootstrap support): Remove now-unneeded
7322         STRICT_WARN, WARN_CFLAGS flags passed down to make.
7323         * Makefile.in: Regenerate.
7325         * configure.in (top level bootstrap support): Rework --enable-werror
7326         to set @stage2_werror_flag@.
7327         * configure: Regenerate.
7328         * Makefile.tpl (top level bootstrap support): Pass
7329         @stage2_werror_flag@ down to configure in stages 2 and 3.
7330         * Makefile.in: Regenerate.
7332 2004-03-23  Nathanael Nerode  <neroden@gcc.gnu.org>
7334         * Makefile.tpl (new-bootstrap): Set CC and CC_FOR_BUILD in configure
7335         for stages 2 and 3 as well as in make.  As a consequence, remove
7336         OUTPUT_OPTION (now detected by configure) from the flags passed down
7337         to make.
7338         * Makefile.in: Regenerate.
7340         * Makefile.tpl (new-bootstrap): Fix typo.
7341         * Makefile.in: Regenerate.
7343 2004-03-22  Nathanael Nerode  <neroden@gcc.gnu.org>
7345         * Makefile.tpl: Rearrange by moving recursive_targets rules
7346         into their proper sections.
7347         * Makefile.tpl (top level bootstrap support): Move disabling
7348         of coverage flags from 'make' to 'configure'; improve comments.
7349         * Makefile.in: Regenerate.
7351         * Makefile.tpl (experimental top level bootstrap) Move stage1
7352         language setting from all- target to configure- target; disable
7353         intermodule optimization in stage 1; prevent gratuitous rebuilds
7354         of stage 1.
7355         * Makefile.in: Regenerate.
7356         * configure.in: Comma-separate stage 1 language list for top
7357         level bootstrap.
7358         * configure: Regenerate.
7360         * Makefile.tpl: Clean up experimental top level bootstrap support:
7361         note known problems; set CONFIG_SHELL; don't set BUILD_CC; relocate
7362         prev-gcc in configure- targets as well as all- targets.
7363         * Makefile.in: Regenerate.
7365 2004-03-17  Paolo Bonzini  <bonzini@gnu.org>
7367         * configure.in: Remove symbolic link section.
7368         * configure: Regenerate.
7369         * Makefile.tpl (links): Remove.
7370         * Makefile.in: Regenerate.
7372 2004-03-15  Paolo Bonzini  <bonzini@gnu.org>
7373             Nathanael Nerode  <neroden@gcc.gnu.org>
7375         * configure.in (DEFAULT_YACC, DEFAULT_M4, DEFAULT_LEX):
7376         Set with AC_CHECK_PROGS.
7377         * configure.in: Fix comment typo from last patch.
7378         * configure: Regenerate.
7380 2004-03-15  Nathanael Nerode  <neroden@gcc.gnu.org>
7382         * Makefile.tpl: Introduce experimental top level bootstrap support.
7383         * Makefile.in: Regenerate.
7384         * configure.in: Introduce support for top level bootstrap.
7385         * configure: Regenerate.
7387 2004-03-12  Eric Botcazou  <ebotcazou@gcc.gnu.org>
7388             Paolo Bonzini  <bonzini@gnu.org>
7390         PR bootstrap/14522
7391         * configure.in: Cope with shells that do not support unquoted ^
7392         * configure: Regenerate.
7394 2004-03-11  Eric Botcazou  <ebotcazou@gcc.gnu.org>
7395             Paolo Bonzini  <bonzini@gnu.org>
7397         PR bootstrap/14522
7398         * configure.in: Cope with shell that do not support nesting
7399         quotes inside quoted backquote substitutions.
7400         * configure: Regenerate.
7402 2004-03-10  Andrew Pinski  <pinskia@physics.uc.edu>
7404         PR bootstrap/14522
7405         * configure.in: Fix escaping of $.
7406         * configure: Regenerate.
7408 2004-03-11  Nathanael Nerode  <neroden@gcc.gnu.org>
7410         * configure: Regenerate.
7412 2004-03-08  Paolo Bonzini  <bonzini@gnu.org>
7414         PR ada/14131
7415         Move language detection to the top level.
7416         * configure.in: Find default values for the tools as
7417         soon as possible.  Disable ada if GNAT is not found.
7418         Emit error message about missing languages.  Expand
7419         --enable-languages=all for the gcc subdirectory.
7421 2004-03-01  Richard Sandiford  <rsandifo@redhat.com>
7423         * configure.in (mips64*-*-linux*): Override mips*-*-linux* case
7424         and disable libgcj.
7425         * configure: Regenerated.
7427 2004-02-28  Nathanael Nerode  <neroden@gcc.gnu.org>
7429         PR bootstrap/7087
7430         * Makefile.tpl: Guard XFOO sed statements better.
7431         * Makefile.tpl: Add dependency for configure-target-libada.
7432         * Makefile.in: Regenerate (incidentally fixes broken
7433         commit when libada-branch was merged).
7435 2004-02-28  Andrew Cagney  <cagney@redhat.com>
7437         * src-release (CVS_NAMES): Define.
7438         (do-tar, do-tar): Prune $(CVS_NAMES).
7440 2004-02-23  Andrew Cagney  <cagney@redhat.com>
7442         * texinfo/texinfo.tex: Update from version 2003-02-03.16 to
7443         2004-02-19.09.
7445 2004-02-19  Nathanael Nerode  <neroden@gcc.gnu.org>
7447         PR bootstrap/11932
7448         * mkinstalldirs, install-sh: Import from automake CVS HEAD.
7450 2004-02-19  Andrew Cagney  <cagney@redhat.com>
7452         * config.guess: Update from version 2003-06-12 to 2004-02-16.
7453         * config.sub: Update from version 2003-06-13 to 2004-02-16.
7455 2004-02-11  David Edelsohn  <edelsohn@gnu.org>
7457         * configure.in (powerpc-*-aix*): Add target-libada to noconfigdirs.
7458         (rs6000-*-aix*): Same.
7459         * configure: Regenerate.
7461 2004-02-11  Kelley Cook  <kcook@gcc.gnu.org>
7463         * configure.in (host): Add in missing $noconfigdirs to defines.
7464         * configure: Regenerate.
7466 2004-02-10  Arnaud Charlet  <charlet@act-europe.fr>,
7467             Nathanael Nerode  <neroden@gcc.gnu.org>
7469         PR ada/6637, PR ada/5911
7470         Merge with libada-branch:
7471         * configure.in, Makefile.tpl, Makefile.def: Add target-libada,
7472         with appropriate dependencies. Add --enable-libada configure switch.
7473         * configure, Makefile.in: Regenerate.
7475 2004-02-05  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
7477         * configure.in: Don't pass --with-stabs on IRIX 5 either.
7478         * configure: Regenerate.
7480 2004-02-02  Jeff Johnston  <jjohnstn@redhat.com>
7482         * COPYING.NEWLIB: Update Red Hat license to 2004.
7484 2004-01-23  DJ Delorie  <dj@redhat.com>
7486         * Makefile.def (target_modules) [libiberty]: Don't stage.
7487         * Makefile.in: Rebuilt.
7489 2004-01-23  Jeff Johnston  <jjohnstn@redhat.com>
7491         * COPYING.NEWLIB: Update to include copyrights for new
7492         iconv code.
7494 2004-01-15  Andrew Cagney  <cagney@redhat.com>
7496         * src-release: Update copyright year.
7497         (do-proto-toplev): Configure using i686-pc-linux-gnu.
7498         (NEWLIB_SUPPORT_DIRS): Delete macro.
7499         (newlib.tar.bz2): Delete rule.
7501 2004-01-14  Loren J. Rittle <ljrittle@acm.org>
7503         * Makefile.def (target_modules) [libtermcap, libiberty, zlib]: Stage.
7504         * Makefile.tpl (configure-target-[+module+]): Support stage.
7505         * Makefile.in: Rebuilt.
7507 2003-01-14  Maciej W. Rozycki  <macro@ds2.pg.gda.pl>
7509         * gettext.m4: Quote names of macros to be defined by AC_DEFUN
7510         throughout.
7512 2004-01-04  Nathanael Nerode  <neroden@gcc.gnu.org>
7514         * configure.in: Use ./config.cache, not config.cache.
7515         * configure: Regenerate.
7516         * Makefile.tpl: Special-casing not needed for GCC any more.
7517         * Makefile.in: Regenerate.
7519         * configure.in: Don't share a cache file for host dirs.
7520         * configure: Regenerate.
7522         * config-ml.in: Don't mess with the cache file.
7524 2004-01-03  Nathanael Nerode  <neroden@gcc.gnu.org>
7526         * Makefile.tpl: Make GCC use a separate config.cache.
7527         * Makefile.in: Regenerate.
7529         PR bootstrap/11932, PR bootstrap/11933
7530         (I don't know if it will fix either of them, but it relates
7531         to them.)
7532         * configure.in: Don't use shared config.cache for target
7533         directories.
7534         * configure: Regenerate.
7536 2003-12-31  Roger Sayle  <roger@eyesopen.com>
7538         * configure.in (ia64*-*-hpux*): Disable building java libraries.
7539         * configure: Regenerated.
7541 2003-12-21  Bernardo Innocenti  <bernie@develer.com>
7543         * configure.in (*-*-uclinux): Exclude newlib, libgloss and rda.
7544         * configure: Regenerated.
7546 2003-12-19  Nathanael Nerode  <neroden@gcc.gnu.org>
7548         Port change over from GCC:
7549         2003-11-20  Kelley Cook  <kcook@gcc.gnu.org>
7550         * Makefile.tpl (BASE_FLAGS_TO_PASS): Pass along CONFIG_SHELL.
7551         (configure-build-[+module+], configure-[+module+]): Likewise.
7552         (configure-target-[+module+], configure-gcc, config.status): Likewise.
7553         * Makefile.in: Regenerate.
7555 2003-12-08  Thomas Fitzsimmons  <fitzsim@redhat.com>
7557         * configure.in (raw_libstdcxx_flags): Remove the leading space.
7558         * configure: Regenerate.
7560 2003-11-27  Jeff Johnston  <jjohnstn@redhat.com>
7562         * COPYING.NEWLIB: Add license info for long long routines added to
7563         stdlib.
7565 2003-11-14  Arnaud Charlet  <charlet@act-europe.fr>
7567         * Makefile.tpl (EXTRA_GCC_FLAGS): Pass BOOT_ADAFLAGS.
7568         * Makefile.in: Regenerate.
7570 2003-10-20  Phil Edwards  <phil@codesourcery.com>
7572         * configure.in (*-*-vxworks):  Add target-libiberty to noconfdirs.
7573         * configure:  Regenerate.
7575 2003-10-13  Nathanael Nerode  <neroden@gcc.gnu.org>
7577         * Makefile.tpl: Make GCC_FLAGS_TO_PASS a superset of
7578         HOST_FLAGS_TO_PASS.
7579         * Makefile.in: Regenerate.
7581 2003-10-05  Mohan Embar  <gnustuff@thisiscool.com>
7583         * configure.in: Allow explicit specification of CFLAGS_FOR_BUILD.
7584         * configure: Rebuilt
7585         * Makefile.tpl: Use CFLAGS_FOR_BUILD computed by configure
7586         * Makefile.in: Rebuilt
7588 2003-10-03  H.J. Lu  <hongjiu.lu@intel.com>
7590         * ltconfig (sys_lib_search_path_spec): Fix a typo for HPUX.
7592 2003-10-01  Phil Edwards  <pme@gcc.gnu.org>
7594         * config-ml.in:  Use ac_configure_args directly instead of
7595         ml_arguments.  Only set ml_norecursion if --no[-]recursion is
7596         actually seen.
7598 2003-10-01  Eric Botcazou  <ebotcazou@libertysurf.fr>
7600         * config-ml.in: Propagate INSTALL variables.
7602 2003-09-21  Daniel Jacobowitz  <drow@mvista.com>
7604         * configure.in: Pass a computed --program-transform-name
7605         to subconfigures.
7606         * configure: Regenerated.
7608 2003-09-20  Nathanael Nerode  <neroden@gcc.gnu.org>
7610         * Makefile.tpl: Don't pass down obsolete ENQUIRE variable.
7611         * Makefile.in: Regenerate.
7613         * Makefile.tpl: Don't pass (unused) DLLTOOL or WINDRES to gcc.
7614         * Makefile.in: Regenerate.
7616 2003-09-17  Daniel Jacobowitz  <drow@mvista.com>
7618         * configure.in (TOPLEVEL_CONFIGURE_ARGUMENTS, baseargs): Fix
7619         quoting.
7620         * configure: Regenerated.
7622 2003-09-12  Michael Chastain  <mec@shout.net>
7624         Fix PR gdb/857.
7625         * src-release (do-proto-topleve): Remove junk files
7626         intl/config.cache, intl/config.status,
7627         intl/config.h, intl/stamp-h.
7629 2003-09-14  Andrew Cagney  <cagney@redhat.com>
7631         * src-release (dejagnu.tar): New target.
7632         (dejagnu.tar.bz2): Recursively call "gdb-taz" rule.
7633         (do-djunpack): Use $(PACKAGE) for the package name.
7635 2003-09-04  DJ Delorie  <dj@redhat.com>
7637         * configure: Regenerate.
7639 2003-09-04  Robert Millan  <robertmh@gnu.org>
7641         * configure.in: Match GNU/KFreeBSD with new kfreebsd*-gnu triplet.
7643 2003-09-02  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
7645         * configure.in: Ensure arguments to sed are properly spaced.
7646         * configure: Regenerate.
7648 2003-08-28  Daniel Jacobowitz  <drow@mvista.com>
7650         Merge from gcc:
7651         2003-07-20  Phil Edwards  <pme@gcc.gnu.org>
7652         * install-sh:  Update to newer upstream versions (associated with
7653         aclocal 1.7).
7654         * missing:  Likewise, plus $1Help2man -> $1 typo fix.
7656 2003-08-27  Daniel Jacobowitz  <drow@mvista.com>
7658         * configure.in: Set RAW_CXX_FOR_TARGET if unset.
7659         * configure: Regenerated.
7661 2003-08-23  Phil Edwards  <pme@gcc.gnu.org>
7663         * configure.in:  Use newline instead of semicolon when assuming
7664         shell arguments in a for loop.
7665         * configure:  Regenerated.
7667 2003-08-20  Geoffrey Keating  <geoffk@apple.com>
7669         PR 8180
7670         * configure.in: When testing with_libs and with_headers, treat
7671         'no' as unset.  Based on a patch by Dan Kegel <dank@kegel.com>.
7672         * configure: Regenerate.
7674         * configure.in (TOPLEVEL_CONFIGURE_ARGUMENTS): Quote properly for
7675         make, shell, etc.
7676         (baseargs): Likewise.
7677         * configure: Regenerate.
7679 2003-08-19  Geoffrey Keating  <geoffk@apple.com>
7681         * configure.in: Disable libgcj for darwin not on powerpc.
7682         * configure: Rebuild.
7684 2003-08-15  Michael Chastain  <mec@shout.net>
7686         * src-release (do-proto-toplev): Remove junk files
7687         dejagnu/example/calc/config.status,
7688         dejagnu/example/calc/config.log.
7690 2003-08-14  Alexandre Duret-Lutz  <adl@gnu.org>
7692         * config-ml.in, symlink-tree: Add license.
7694 2003-08-01  Nathanael Nerode  <neroden@gcc.gnu.org>
7696         Merge from gcc:
7698         2003-08-01  Matt Kraai  <kraai@alumni.cmu.edu>
7699         * Makefile.tpl (check, check-c++): Express dependencies using
7700         dependencies rather than commands.
7701         * Makefile.in: Regenerate.
7703         2003-07-31  Geoffrey Keating  <geoffk@apple.com>
7704         * Makefile.tpl (libsubdir): Use gcc instead of gcc-lib.
7705         * Makefile.in: Update.
7707 2003-08-01  Andrew Cagney  <cagney@redhat.com>
7709         * configure.in (noconfigdirs): Do not add GDB when m32r-*-*.
7710         * configure: Ditto.
7712 2003-07-30  Andreas Tobler  <a.tobler@schweiz.ch>
7714         * configure.in: Enable libgcj for darwin.
7715         * configure: Rebuild.
7717 2003-07-29  Nathanael Nerode  <neroden@gcc.gnu.org>
7719         * mkinstalldirs: Import autoconf 2.57 / automake 1.7 version.
7721 2003-07-27  Nathanael Nerode  <neroden@gcc.gnu.org>
7723         * Makefile.tpl: Use 'mkinstalldirs' rather than 'mkdir' when
7724         creating target and build subdirs to build all parent dirs as needed.
7725         * Makefile.in: Rebuild.
7726         * configure.in: Don't build dirs explicitly here.
7727         * configure: Rebuild.
7729 2003-07-22  Alexandre Oliva  <aoliva@redhat.com>
7731         * Makefile.tpl (all-make): Depend on intl.
7732         * Makefile.in: Rebuilt.
7734 2003-07-16  Nathanael Nerode  <neroden@gcc.gnu.org>
7736         * config.if: Remove unused libc_interface determination.
7738 2003-07-14  Nathanael Nerode  <neroden@gcc.gnu.org>
7740         * Makefile.in: Regenerate, correctly this time.
7742 2003-07-13  Nathanael Nerode  <neroden@gcc.gnu.org>
7744         * Makefile.tpl: Set INSTALL and friends using autoconf.  Remove
7745         unused INSTALL_PROGRAM_ARGS.
7746         * configure.in: Use AC_PROG_INSTALL.
7747         * Makefile.in: Regenerate.
7748         * configure: Regenerate.
7750 2003-07-10  Alexandre Oliva  <aoliva@redhat.com>
7752         * configure: Rebuilt.
7753         2001-09-26  Alexandre Oliva  <aoliva@redhat.com>
7754         * configure.in (noconfigdirs) [am33_2.0-*-linux*]: Don't build
7755         newlib nor libgloss.
7756         Wed May  9 10:07:19 2001  Alexandre Oliva  <aoliva@redhat.com>
7757         * configure.in (am33_2.0-*-linux*): Added.
7759 2003-07-09  Bob Wilson  <bob.wilson@acm.org>
7761         * configure.in: Add ${libgcj} to noconfigdirs for xtensa-*-* targets.
7762         * configure: Regenerate.
7764 2003-07-06  H.J. Lu <hongjiu.lu@intel.com>
7766         * config-ml.in: Replace PWD with PWD_COMMAND.
7767         * Makefile.tpl: Likewise.
7768         * Makefile.in: Regenerated.
7770 2003-06-27  Nathanael Nerode  <neroden@gcc.gnu.org>
7772         * configure.in: Clean up config-lang.in handling.  Delete
7773         useless assignment to "subdirs".
7774         * configure: Regenerate.
7776 2003-06-26  Nathanael Nerode  <neroden@gcc.gnu.org>
7778         * configure.in: Rename 'target_libs' to 'target_libraries'.
7779         Remove useless reference to 'target_libs'.
7780         * configure: Regenerate.
7782 2003-06-23  Keith Seitz  <kseitz@sources.redhat.com>
7784         * Makefile.tpl: Add maybe-configure-itcl to configure-gdb.
7785         * Makefile.in: Regenerate.
7787 2003-06-23  Nathanael Nerode  <neroden@gcc.gnu.org>
7789         * Makefile.def: Introduce flags_to_pass.
7790         * Makefile.tpl: Generate BASE_FLAGS_TO_PASS using it.
7791         * Makefile.in: Regenerate.
7793 2003-06-23  Hans-Peter Nilsson  <hp@bitrange.com>
7795         * configure.in (noconfigdirs) <cris-*-*>: Disable target-newlib
7796         and target-libgloss.
7797         <d30v-*-*, fr30-*-*, i960-*-*, m32r-*-*>: Disable gdb.
7798         <h8300*-*-*>: Disable libf2c and ${libgcj}.
7799         * configure: Regenerate.
7801 2003-06-17  Benjamin Kosnik  <bkoz@redhat.com>
7803         * configure.in: Update testsuite_flags to new location.
7804         * configure. Regenerate.
7806 2003-06-18  Nathanael Nerode  <neroden@gcc.gnu.org>
7808         * Makefile.tpl: Remove BUILD_CC stuff.
7809         * Makefile.in: Regenerate.
7811 2003-06-14  H.J. Lu <hongjiu.lu@intel.com>
7813         * config.guess: Update to 2003-06-12 version.
7814         * config.sub: Update to 2003-06-13 version.
7816 2003-06-12  Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
7818         * MAINTAINERS: Add myself as MIPS co-maintainer.
7820 2003-06-12  H.J. Lu <hongjiu.lu@intel.com>
7822         * config.guess: Update to 2003-06-06 version.
7823         * config.sub: Update to 2003-06-06 version.
7825 2003-06-11  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
7827         * configure.in: Don't pass --with-stabs for mips*-sgi-irix6*o32.
7828         * configure. Regenerate.
7830 2003-06-10  Nathanael Nerode  <neroden@gcc.gnu.org>
7832         * configure.in: Disable serial configure by default.
7833         * configure: Regenerate.
7834         * Makefile.tpl: Abolish .NOTPARALLEL.
7835         * Makefile.in: Regenerate.
7837         * Makefile.tpl: Replace {build,host,target}_canonical by
7838         {build,host,target}.
7839         * Makefile.in: Regenerate.
7841         * Makefile.tpl: Fix stupid pasto.
7842         * Makefile.in: Regenerate.
7844 2003-06-09  Nathanael Nerode  <neroden@gcc.gnu.org>
7846         * Makefile.tpl: Remove bogus conditional.
7847         * Makefile.in: Regenerate.
7849 2003-06-03  Nathanael Nerode  <neroden@gcc.gnu.org>
7851         * Makefile.tpl: Make 'recursive targets' using autogen rather
7852         than shell loop.  Remove duplicate 'clean' targets and false
7853         comments.
7854         * Makefile.def: Add systematic dependencies to 'recursive' targets.
7855         Add systematic method of specifying missing targets in subdirs.
7856         Add copyright boilerplate.
7857         * Makefile.in: Regenerate.
7858         * configure.in: Add 'recursive targets' to maybe list.
7859         * configure: Regenerate.
7861         * Makefile.tpl: Rename [+target+] to [+make_target+].
7862         * Makefile.def: Rename 'target' to 'make_target'.
7864 2003-05-30  Nick Clifton  <nickc@redhat.com>
7866         * README-maintainer-mode: Update URL for locating blessed config
7867         tools.
7869 2003-05-29  Robert Millan  <rmh@debian.org>
7871         * ltconfig: Import this patch and modify for use with current
7872         version of ltconfig:
7874         2003-05-21  Bruno Haible  <bruno@clisp.org>
7876         * libtool.m4 (AC_LIBTOOL_SYS_DYNAMIC_LINKER): Add support for
7877         GNU/FreeBSD.
7879 2003-05-28  DJ Delorie  <dj@redhat.com>
7881         * Makefile.tpl: Make maybe-check-gcc .PHONY.
7882         * Makefile.in: Regenerate.
7884 2003-05-28  Jeff Johnston  <jjohnstn@redhat.com>
7886         * COPYING.NEWLIB: Add license info for newlib/libc/sys/linux/stdlib.
7888 2003-05-21  DJ Delorie  <dj@redhat.com>
7890         * Makefile.tpl (configure-target-libiberty): Depend only on gcc, not
7891         newlib or libgloss.
7892         * Makefile.in: Regenerate.
7894 2003-05-21  DJ Delorie  <dj@redhat.com>
7896         * Makefile.tpl: Add missing empty maybe-check-gcc target.
7897         * Makefile.in: Regenerate.
7899 2003-05-20  Maciej W. Rozycki  <macro@ds2.pg.gda.pl>
7901         * configure.in: Use curly braces in the definition of tooldir.
7902         * configure: Regenerate.
7904 2003-05-19  Nathanael Nerode  <neroden@gcc.gnu.org>
7906         * configure.in: Switch more things to use maybe dependencies.
7907         * Makefile.tpl: Switch more things to use maybe dependencies.
7908         Factor out common code from autogen IF statements.
7909         * configure: Regenerate.
7910         * Makefile.in: Regenerate.
7912 2003-05-14  Kelley Cook  <kelleycook@wideopenwest.com>
7914         * configure.in: Accept i[3456789]86 for machine type.
7915         * configure: Regenerate.
7917 2003-05-18  Nathanael Nerode  <neroden@gcc.gnu.org>
7919         * configure.in: Switch more things to use maybe dependencies.
7920         Rearrange a little.  Use GCC_TOPLEV_SUBDIRS.
7921         * configure: Regenerate.
7922         * Makefile.tpl: Switch more things to use maybe dependencies.
7923         * Makefile.in: Regenerate.
7925 2003-05-16  Andreas Schwab  <schwab@suse.de>
7927         * Makefile.tpl (install-opcodes): Define.
7928         * Makefile.in: Rebuild.
7930 2003-05-13  Andreas Jaeger  <aj@suse.de>
7932         * config.guess: Update to 2003-05-09 version.
7933         * config.sub: Update to 2003-05-09 version.
7935 2003-05-13  Michael Eager <eager@mvista.com>
7937         * configure.in: Correct sed script so that options in quotes are not
7938         deleted.
7939         * configure: Rebuild.
7941 2003-05-12  Corinna Vinschen  <corinna@vinschen.de>
7943         * configure.in (FLAGS_FOR_TARGET): Remove $$s/newlib/libc/sys/cygwin
7944         and $$s/newlib/libc/sys/cygwin32 include paths.
7945         * configure: Ditto.
7947 2003-05-05  H.J. Lu <hjl@gnu.org>
7949         * config-ml.in: Restored from gcc repository.
7951 2003-05-02  Chris Demetriou  <cgd@broadcom.com>
7953         * Makefile.tpl: Require "makeinfo" from texinfo 4.2 or later.
7954         * Makefile.in: Regenerate.
7956 2003-04-27  Daniel Jacobowitz  <drow@mvista.com>
7958         * src-release (DEVO_SUPPORT): Add src-release, Makefile.tpl,
7959         and Makefile.def.
7961 2003-04-27  Daniel Jacobowitz  <drow@mvista.com>
7963         * Makefile.tpl: Clean $(BUILD_SUBDIR).
7964         * Makefile.in: Regenerated.
7966 2003-04-18  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
7968         * Makefile.tpl (MAKEINFOFLAGS): Default to --split-size=5000000.
7969         * Makefile.in: Regenerate.
7971 2003-04-18  Jakub Jelinek  <jakub@redhat.com>
7973         * configure.in (powerpc64*-*-linux*): Remove.
7974         * configure: Rebuilt.
7976 2003-04-17  Phil Edwards  <pme@gcc.gnu.org>
7978         * Makefile.tpl (GCC_STRAP_TARGETS):  New variable containing all the
7979         previous bootstrap targets, plus bubblestrap, quickstrap, cleanstrap,
7980         and restrap.
7981         * Makefile.in:  Regenerate.
7983 2003-04-16  Richard Earnshaw  <rearnsha@arm.com>
7985         * configure.in (arm-*-netbsdelf*): Enable building java libraries.
7986         * configure: Regenerated.
7988 2003-04-11  Alexandre Oliva  <aoliva@redhat.com>
7990         * libtool.m4 (lt_cv_deplibs_check_method): Use pass_all on mips*.
7991         * */configure: Rebuilt.
7993 2003-03-14  Nathanael Nerode  <neroden@gcc.gnu.org>
7995         * Makefile.tpl: Move .NOEXPORT, MAKEOVERRIDES back down.
7996         * Makefile.in: Regenerate.
7998 2003-03-14  Michael Chastain  <mec@shout.net>
8000         * Makefile.in: Regenerate with correct Makefile.def.
8002 2003-03-12  Nathanael Nerode  <neroden@gcc.gnu.org>
8004         * Makefile.tpl: Move .NOEXPORT, MAKEOVERRIDES up.  Delete unused
8005         Make macro.
8006         * Makefile.in: Regenerate.
8007         * configure.in: Clean up gxx_include_dir logic.
8008         * configure: Regenerate.
8010 2003-03-09  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>
8012         * configure.in (gxx_include_dir): Fix typo.
8013         * configure: Regenerated.
8015 2003-03-06  Andrew Cagney  <cagney@redhat.com>
8017         * texinfo/texinfo.tex: Import version 2003-02-03.16.
8019 2003-03-04  Daniel Jacobowitz  <drow@mvista.com>
8021         * configure.in: Include $(build_tooldir)/sys-include in
8022         FLAGS_FOR_TARGET.
8023         * configure: Regenerated.
8025 2003-03-04  Nathanael Nerode  <neroden@gcc.gnu.org>
8027         * Makefile.tpl: Reindent.
8028         * Makefile.in: Regenerate.
8029         * configure.in: Reindent.  Don't set unused variables.
8030         * configure: Regenerate.
8032         * Makefile.tpl: Always pass down RANLIB.
8033         * Makefile.in: Regenerate.
8035         * Makefile.tpl: Don't set unused enable_shared, enable_threads macros.
8036         * Makefile.in: Regenerate.
8037         * configure.in: Remove unused logic relating to --enable-shared
8038         and --enable-threads.  Remove bogus comments.  Remove redundant
8039         noconfigdirs.
8040         * configure: Regenerate.
8042         * configure.in: Replace ${libstdcxx_version} by its value.
8043         Remove reference to mh-dgux.
8044         * configure: Regenerate.
8046 2003-02-28  Nathanael Nerode  <neroden@gcc.gnu.org>
8048         * Makefile.tpl: Rearrange.
8049         * Makefile.in: Regenerate.
8051 2003-02-25  Nick Clifton  <nickc@redhat.com>
8053         * configure: Remove site-file supprot - it is obsolete.
8055 2003-02-24  Uwe Stieber <uwe@wwws.de>
8057         * configure.in: Add support for kaOS as cross build target system.
8058         * configure: Regenerated.
8060 2003-02-20  Sean McNeil  <sean@blue.mcneil.com>
8062         * Makefile.tpl: Add definition of CPPFLAGS to pass into
8063         configure-target-* as some target builds may require additional
8064         flags for preprocessor tests.
8065         * Makefile.in: Regenerated.
8067 2003-02-19  Alexandre Oliva  <aoliva@redhat.com>
8069         * libtool.m4 (LD): Append -melf* option to LD on IRIX with GNU ld.
8070         * ltconfig: Handle it.
8071         * ltcf-cxx.sh: Use with_gnu_ld passed as a shell variable instead of
8072         auto-detecting it.
8074 2003-02-19  Alexandre Oliva  <aoliva@redhat.com>
8076         * ltcf-cxx.sh: Replace $linker_flags with $compiler_flags wherever
8077         it is used as argument to $CC.
8078         * ltcf-gcj.sh: Likewise.
8080 2003-02-19  Alexandre Oliva  <aoliva@redhat.com>
8082         * configure.in: Introduce --enable-maintainer-mode.
8083         * configure: Rebuilt.
8084         * Makefile.tpl (Makefile.in, configure): Enable dependencies only
8085         for maintainer mode.
8086         * Makefile.in: Rebuilt.
8088 2003-02-19  Andrew Cagney <ac131313@redhat.com>
8090         * configure: Regenerate using autoconf 2.13.
8092 2003-02-19  Alan Modra  <amodra@bigpond.net.au>
8094         * config.guess: Import latest version.
8095         * config.sub: Import latest version.
8097 2003-02-18  Jason Merrill  <jason@redhat.com>
8099         * Makefile.tpl (check-c++): Allow parallelism.
8101 2003-02-17  Andrew Cagney  <ac131313@redhat.com>
8103         * configure: Regenerate using autoconf 000227.
8105 2003-02-15  Geoffrey Keating  <geoffk@apple.com>
8107         * configure.in (*-*-darwin*): Rename from powerpc*-*-darwin*,
8108         don't configure target-libobjc.
8109         * configure: Regenerate.
8111 2003-02-14  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
8113         * Makefile.tpl (RANLIB): Define.
8114         * Makefile.in: Regenerate.
8116 2003-02-06  Keith R Seitz  <keiths@redhat.com>
8118         * Makefile.def: Remove "snavigator", "grep", and "db" modules.
8119         * Makefile.tpl: Remove "all-snavigator" and "all-grep".
8120         * Makefile.in: Regenerated.
8121         * configure.in: Remove all traces of snavigator, db, and grep.
8122         * configure: Regenerated.
8124 2003-01-31  Frank Ch. Eigler  <fche@redhat.com>
8126         * Makefile.tpl (all-sid): Add libiberty/bfd/opcodes dependencies.
8127         * Makefile.in: Regenerated.
8129 2003-01-30  Alexandre Oliva  <aoliva@redhat.com>
8131         * config.if: Copy from GCC.
8133 2003-01-27  Phil Edwards  <pme@gcc.gnu.org>
8135         * configure.in:  Revert 24Jan change.
8136         * configure:  Regenerate.
8138 2003-01-23  Nathanael Nerode  <neroden@gcc.gnu.org>
8140         * configure.in: Revert previous change.
8141         * configure: Regenerate.
8143 2003-01-23  Nathanael Nerode  <neroden@gcc.gnu.org>
8145         * configure.in: Make rda native-only.
8146         * configure: Regenerate.
8148 2003-01-19  Nathanael Nerode  <neroden@gcc.gnu.org>
8150         * configure.in: Add missing \.
8151         * configure: Rebuilt.
8153 2003-01-17  Jakub Jelinek  <jakub@redhat.com>
8155         * configure.in (baseargs): Avoid using \| in sed regular
8156         expressions.
8157         * configure: Rebuilt.
8159 2003-01-16  Jakub Jelinek  <jakub@redhat.com>
8161         * configure.in (baseargs): Remove all supported forms of
8162         --cache-file, --srcdir, --host, --build and --target options
8163         from argument lists.
8164         * configure: Rebuilt.
8166 2003-01-15  Alexandre Oliva  <aoliva@redhat.com>
8168         * configure.in (noconfigdirs): Don't skip gas on IRIX 6.
8169         * configure: Rebuilt.
8171 2003-01-09  Nathanael Nerode  <neroden@gcc.gnu.org>
8173         * configure.in: Substitute TOPLEVEL_CONFIGURE_ARGUMENTS.
8174         * Makefile.tpl: Pass TOPLEVEL_CONFIGURE_ARGUMENTS to gcc.
8175         * Makefile.in: Regenerate.
8176         * configure: Regenerate.
8178 2003-01-09  Christian Cornelssen  <ccorn@cs.tu-berlin.de>
8180         * Makefile.tpl (BASE_FLAGS_TO_PASS): Also pass DESTDIR.
8181         (install-info, dir.info): Prepend $(DESTDIR) to $(infodir).
8182         * Makefile.in: Regenerate.
8184 2003-01-09  Alexandre Oliva  <aoliva@redhat.com>
8186         * configure.in: Remove Makefile in build, host and target modules
8187         unless configure was run with --no-recursion.
8188         * configure: Rebuilt.
8190 2003-01-08  Chris Demetriou  <cgd@broadcom.com>
8192         * config.guess: Update to 2003-01-03 version.
8193         * config.sub: Update to 2003-01-03 version.
8195 2003-01-07  Christopher Faylor  <cgf@redhat.com>
8197         * configure: Regenerate with proper autoconf 2.13.
8199 2003-01-07  Christopher Faylor  <cgf@redhat.com>
8201         * configure.in: Add AC_PREREQ for consistency.
8202         * configure: Regenerate.
8204 2003-01-06  Andrew Cagney  <ac131313@redhat.com>
8206         * configure.in (GDB_TK): Add tcl directories conditional on
8207         gdb/gdbtk directory being present.
8208         * configure: Regenerate.
8210 2003-01-04 John David Anglin  <dave.anglin@nrc.ca>
8212         * configure.in (LD): Improve test for gcc.  Try to set LD to the ld used
8213         by gcc if LD is not defined and we are not doing a Canadian Cross.
8214         * configure: Rebuilt.
8216 2003-01-01  Daniel Jacobowitz  <drow@mvista.com>
8218         * src-release (ETC_SUPPORT): Add fdl.texi and texi2pod.pl.
8220 2002-12-31  Tom Tromey  <tromey@redhat.com>
8222         * Makefile.in: Rebuilt.
8223         * Makefile.def (target_modules) [libffi]: Allow installation.
8225 2002-12-31  Andreas Schwab  <schwab@suse.de>
8227         * configure.in: Fix use of $program_transform_name.
8228         * configure: Regenerated.
8230 2002-12-30  Daniel Jacobowitz  <drow@mvista.com>
8232         * configure.in (baseargs): Don't remove first configure argument.
8233         * configure: Regenerated.
8235 2002-12-29  Alexandre Oliva  <aoliva@redhat.com>
8237         * Makefile.tpl (local-distclean): Don't remove...
8238         (multilib.ts): ... this.  Moved into...
8239         (multilib.out): ... this.  Don't use sub-make.
8240         ($(BUILD_SUBDIR)/[+module+]/Makefile, [+module+]/Makefile,
8241         $(TARGET_SUBDIR)/[+module+]/Makefile, gcc/Makefile): Moved into...
8242         (configure-build-[+module+], configure-[+module+],
8243         configure-target-[+module+], configure-gcc): ... these.  Test
8244         for Makefile existence.  Drop config.status from dependencies.
8245         * Makefile.in: Rebuilt.
8246         * configure.in: Move gcc-version-trigger to the end of
8247         ac_configure_args.  Add comments to maybedep.tmp and
8248         serdep.tmp.  Introduce --disable-serial-configure.  Remove
8249         nonopt from baseargs, matching and removing corresponding
8250         whitespace while at it.
8251         * configure: Rebuilt.
8253 2002-12-28  Alexandre Oliva  <aoliva@redhat.com>
8255         * configure.in (host_configargs): Replace reference to
8256         no-longer-defined buildopts with --build=${build_alias}.
8257         * configure: Rebuilt.
8259 2002-12-28  Alexandre Oliva  <aoliva@redhat.com>
8261         * Makefile.tpl ($(NOTPARALLEL)): Move to the end.  Bring uses of
8262         program_transform_name to standard idiom.
8263         (AUTOGEN, AUTOCONF): Define.
8264         (Makefile.in): Use $(AUTOGEN).
8265         (Makefile): Depend on config.status, and use autoconf-style rule to
8266         build it.  Move original commands to...
8267         (config.status): ... this new target.
8268         (configure): Add $(srcdir).  Depend on config/acx.m4.  Use
8269         $(AUTOCONF).
8270         * Makefile.in: Rebuilt.
8272 2002-12-28  Nathanael Nerode  <neroden@gcc.gnu.org>
8274         * Makefile.tpl: Fix dramatic bustage due to change in
8275         program_transform_name.
8276         * Makefile.in: Regenerate.
8278         * configure.in: Remove unnecessary PATH setting.
8279         * configure: Regnerate.
8281         * configure.in: Don't default to unprefixed tools unless
8282         the native tools will work.
8283         * configure: Regenerate.
8285         * configure.in: Convert to autoconf script.  Blow away lots
8286         of now-redundant Makefile fragments.
8287         * configure: Generate using Autoconf.
8288         * Makefile.tpl: Rewrite to reflect autoconfiscation.
8289         * Makefile.in: Regenerate.
8291 2002-12-27  Nathanael Nerode  <neroden@gcc.gnu.org>
8293         * configure: Remove unneeded 'export's.  Make CC_FOR_TARGET,
8294         CXX_FOR_TARGET, GCJ_FOR_TARGET substituted in configure.in only.
8296         * ChangeLog: Move a couple of entries from here to winsup/cygwin,
8297         where they belong.
8299 2002-12-24  Andreas Schwab  <schwab@suse.de>
8301         * Makefile.tpl (multilib.out): Fix missing space.
8302         * Makefile.in: Regenerate.
8304 2002-12-23  Nathanael Nerode  <neroden@gcc.gnu.org>
8306         * Makefile.tpl: Use shared multilib.out.  Use move-if-change for it.
8307         Convert (cd foo; make) to (cd foo && make).  Clean up multilib.out.
8308         * Makefile.in: Regenerate.
8309         * configure.in: Remove unnecessary leftovers.
8311 2002-12-21  Geoffrey Keating  <geoffk@apple.com>
8313         * configure.in (extra_ranlibflags_for_target): New variable.
8314         (*-*-darwin): Add -c to ranlib commands.
8315         * configure (tooldir): Handle extra_ranlibflags_for_target.
8317 2002-12-20  Jeff Johnston  <jjohnstn@redhat.com>
8319         * COPYING.NEWLIB: Updated.
8320         * COPYING.LIBGLOSS: Ditto.
8322 2002-12-19  Nathanael Nerode  <neroden@gcc.gnu.org>
8324         * Makefile.tpl: Revert HJL's change.
8325         * Makefile.in: Regenerated.
8326         * configure.in: Put build_prefix before $(BUILD_SUBDIR) here, and
8327         always.
8329 2002-12-19  Andreas Schwab  <schwab@suse.de>
8331         * Makefile.tpl, configure.in: Substitute libstdcxx_incdir.
8332         * Makefile.in: Regenerate.
8334 2002-12-18  H.J. Lu <hjl@gnu.org>
8336         * Makefile.tpl: Add @build_prefix@ before $(BUILD_SUBDIR).
8337         * Makefile.in: Regenerated.
8339         * configure.in (build_prefix): New. Substitute.
8341 2002-12-18  Nathanael Nerode  <neroden@gcc.gnu.org>
8343         * Makefile.tpl: Don't let real targets depend on phony targets.
8344         * Makefile.in: Regenerate.
8346         * Makefile.tpl (do-info): Depend on maybe-all-texinfo, not all-texinfo.
8347         * Makefile.in: Regenerate.
8349 2002-12-16  Jason Merrill  <jason@redhat.com>
8351         * Makefile.tpl (all-gcc): Use 'make quickstrap' if there was a
8352         previous 'make bootstrap'.
8353         * Makefile.in: Regenerate.
8355 2002-12-17  Hans-Peter Nilsson  <hp@bitrange.com>
8357         * configure.in (noconfigdirs) [mmix-*-*]: Disable libgloss and gdb.
8359 2002-12-13  Jason Merrill  <jason@redhat.com>
8361         * Makefile.tpl (check-gcc-c++): Renamed from check-c++.  Don't run
8362         library tests.
8363         (check-c++): Just depend on it and check-target-libstdc++-v3.
8364         * Makefile.in: Regenerate.
8366 2002-12-13  Nathanael Nerode  <neroden@gcc.gnu.org>
8368         * configure.in, Makefile.tpl, Makefile.def: Remove tclX.
8369         * Makefile.in: Regenerate.
8371 2002-12-12  Jeff Johnston  <jjohnstn@redhat.com>
8373         * COPYING.NEWLIB: Update list of alternate Regent of California
8374         licenses and discuss official revoking of advertising clause.
8375         * COPYING.LIBGLOSS: Ditto.
8377 2002-12-12  Alexandre Oliva  <aoliva@redhat.com>
8379         * Makefile.tpl (configure-target-rda): Depend on $(ALL_GCC_C).
8380         * Makefile.in: Rebuilt.
8382 2002-12-10  Nathanael Nerode  <neroden@gcc.gnu.org>
8384         * configure: Fix bug put in by gremlins.
8386         * Makefile.tpl: Substitute more autoconfily.
8387         * configure: Substitute more autoconfily.
8388         * Makefile.in: Regenerate.
8390 2002-12-08  Andrew Cagney  <ac131313@redhat.com>
8392         * Makefile.tpl (all-sim): Depend on maybe-configure-gdb.
8393         * Makefile.in (all-sim): Ditto.
8395 2002-12-06  DJ Delorie  <dj@redhat.com>
8397         * Makefile.tpl: Change configure dependencies to not have real
8398         targets depend on phony targets.
8400 2002-12-05  Nathanael Nerode  <neroden@gcc.gnu.org>
8402         * configure.in: Revert unintentional change.
8404         * src-release: Configure host subdirs.
8406         * Makefile.tpl: Change dependency for */multilib.out so that
8407         it works when gcc isn't in the tree.
8409         * configure.in: Substitute more.
8410         * configure: Run subconfigures from the Makefile.
8411         * Makefile.tpl: Run subconfigures from the Makefile; add a few
8412         convenience targets.  Make sure gcc isn't rebuilt after bootstrap.
8414 2002-12-03  Nathanael Nerode  <neroden@gcc.gnu.org>
8416         * Makefile.tpl: Add targets for configuring host subdirs in Makefile,
8417         and corresponding dependencies.
8418         * Makefile.in: Regenerate.
8420         * configure.in (host_tools): Order binutils, gas and ld for
8421         convenience in running the testsuites.
8423         * Makefile.tpl: Introduce rules to serialize subconfigure runs.
8424         * Makefile.in: Regenerate.
8425         * configure.in: Introduce rules to serialize subconfigure runs.
8427         * configure.in: Introduce BASE_CC_FOR_TARGET.
8428         * Makefile.tpl: Reorganize and comment.  Introduce HOST_CONFIGARGS.
8429         Realize configure-build-* targets.  Realize configure-target-* targets.
8430         * Makefile.in: Regenerate.
8432 2002-12-02  Nathanael Nerode  <neroden@gcc.gnu.org>
8434         * configure: Move gcc_version_trigger stuff from here...
8435         * configure.in: ...to here.
8437         * configure.in: Separate subconfigure options added by this file from
8438         options given by the user.  Add machinery to put args for host
8439         subconfigures into the Makefile.
8441         * Makefile.tpl: Remove 'vault' targets.
8442         * Makefile.tpl: Reorder and comment dependencies.
8443         * Makefile.in: Regenerate.
8445 2002-11-28  Geoffrey Keating  <geoffk@apple.com>
8447         * configure.in: Move host-specific darwin noconfigdirs into
8448         the host-specific section.
8450 2002-12-02  Nathanael Nerode  <neroden@gcc.gnu.org>
8452         * Makefile.tpl: Restore bkorb's style patch, accidentally lost
8453         during replay.
8454         * Makefile.in: Regenerate.
8456         (finishing slow-motion replay)
8457         * configure: Remove skip-this-dir support.
8458         * Makefile.tpl: Remove skip-this-dir support.
8460         * Makefile.tpl: Remove leftover support for non-autoconfiscated
8461         subdirectories.
8462         * Makefile.in: Regenerate.
8464         * Makefile.tpl: Strip out useless setting of 'dir'.
8465         * Makefile.in: Regenerate.
8467 2002-12-02  Nathanael Nerode  <neroden@gcc.gnu.org>
8469         (finishing slow-motion replay)
8470         * configure.in: Fix deeply stupid bug.
8472         * configure.in: Introduce RAW_CXX_FOR_TARGET and simplify embedded
8473         shell code in CXX_FOR_TARGET
8474         * Makefile.def: Introduce raw_cxx.
8475         * Makefile.tpl: Use raw_cxx to select between CXX_FOR_TARGET and
8476         RAW_CXX_FOR_TARGET.
8477         * Makefile.in: Regenerate.
8479 2002-12-02  Nathanael Nerode  <neroden@gcc.gnu.org>
8481         (finishing slow-motion replay)
8482         * Makefile.tpl: Remove unnecessary ifs.
8483         * Makefile.in: Regenerate.
8485         * Makefile.tpl: Implement soft dependency machinery.  Maybe-ize
8486         dependencies.  Maybe-ize build-libiberty.  Create dummy install
8487         targets for 'no_install' modules.
8488         * configure: Move GDB_TK substitution to configure.in.  Move
8489         build_modules stuff to configure.in.
8490         * configure.in: Implement soft dependency machinery.  Maybe-ize
8491         GDB_TK, rearrange slightly.  Move build_modules stuff from configure.
8492         * Makefile.in: Regenerate.
8494 2002-12-01  Nathanael Nerode  <neroden@gcc.gnu.org>
8496         (continuing slow-motion replay)
8497         * Makefile.tpl: Make all-target, install-target behave similarly
8498         to all, install (only hitting configured targets).  Eliminate
8499         unused macro defintions.
8501         * Makefile.tpl: Add all-gcc: all-build-libiberty dependency when
8502         build != host.
8504         * Makefile.tpl: Add all-gcc: all-libiberty dependency.
8506         * ltcf-c.sh, ltcf-gcj.sh, Makefile.tpl: Correct BUILD/HOST confusion.
8508         * configure.in: Produce lists of subdir targets we're actually
8509         configuring.  Remove references to "dosrel".
8510         * Makefile.tpl: Let configure set which subdir targets are hit.
8511         Remove install-cross; clean up install; remove ALL.  Remove
8512         references to "dosrel".  Remove "EXTRA_TARGET_HOST" hackery.
8513         Autogenerate host module targets.  Remove empty dependency lines
8514         and redundant dependency; rearrange slightly.
8515         * Makefile.def: Add host-side libtermcap, utils.
8517         * Makefile.in: Regenerate.
8519 2002-12-01  Nathanael Nerode  <neroden@gcc.gnu.org>
8521         (Continuing slow-motion replay)
8522         * Makefile.def: Add list of recursive targets to autogenerate.
8523         Add build_modules.
8524         * Makefile.tpl: Autogenerate do-* targets.  Autogenerate *-target-*
8525         targets.  Autogenerate *-build-* targets.
8526         * Makefile.in: Regenerate.
8528 2002-11-30  Nathanael Nerode  <neroden@gcc.gnu.org>
8530         (Continuing slow-motion replay)
8531         * configure: More autoconf-style substitutions.
8532         * Makefile.tpl: More autoconf-style substitutions.
8533         * Makefile.in: Regenerate.
8535 2002-11-30  Nathanael Nerode  <neroden@gcc.gnu.org>
8537         (Continuing slow-motion replay)
8538         * configure: Substitute more variables in a more autoconf-friendly
8539         way.  Simplify slightly.
8540         * Makefile.tpl: Make more variables substitutable in an
8541         autoconf-friendly way.
8542         * Makefile.in: Regenerate.
8544 2002-11-29  Nathanael Nerode  <neroden@gcc.gnu.org>
8546         (Continuing slow-motion replay)
8547         * configure.in (v810*): Remove special setting of tools.
8549         * configure: Add support for extra required flags for ar or nm.
8550         * configure.in (aix4.3+): Use above support for target-specific
8551         issues, rather than using config/mt-aix43.
8553 2002-11-29  Nathanael Nerode  <neroden@gcc.gnu.org>
8555         (Starting slow-motion replay merge from gcc 3.4 b-i-b branch)
8556         * configure: Remove 'removing', which doesn't work.  Replace $subdir
8557         with . everywhere.  Replace $subdirs with ''.  Replace $makesrcdir
8558         with $srcdir.  Reformat indentation.  Substitute some variables
8559         formerly hard-coded in the Makefile for build=host.
8560         * Makefile.tpl: Autogenerate more; make more autoconf-friendly.
8561         * Makefile.def: Autogenerate more.
8562         * Makefile.in: Regenerate.
8564 2002-11-13  Bruce Korb  <bkorb@gnu.org>
8566         * Makefile.tpl: syntactic cleanup
8568 2002-11-04  Kevin Buettner  <kevinb@redhat.com>
8570         * Makefile.def (host_modules): Add rda.
8571         * Makefile.in: Regenerate.
8572         * configure.in (target_tool): Add target-rda to list.
8574 2002-10-25  Phil Edwards  <pme@gcc.gnu.org>
8576         * Makefile.tpl (bootstrap):  Add bubblestrap, quickstrap, cleanstrap,
8577         and restrap targets to this rule.
8578         * Makefile.in:  Regenerate.
8580 2002-10-24  Hans-Peter Nilsson  <hp@bitrange.com>
8582         * configure.in (i[3456]86-*-linux*): Add check to disable
8583         ${libgcj} for glibc1.
8585 2002-10-07  Svein E. Seldal  <Svein.Seldal@solidas.com>
8587         * configure.in: Add tic4x target.
8589 2002-10-03  Nathanael Nerode  <neroden@gcc.gnu.org>
8591         * Makefile.tpl: Make SET_LIB_PATH substitution more autoconfy.
8592         * Makefile.tpl: Make RPATH_ENVVAR substitution more autoconfy.
8593         * configure.in: Make SET_LIB_PATH substitution more autoconfy.
8594         * configure.in: Make RPATH_ENVVAR substitution more autoconfy.
8595         * Makefile.in: Regenerate.
8597 2002-10-02  Nathanael Nerode  <neroden@gcc.gnu.org>
8599         * Makefile.tpl: Eliminate reference to all-gui, all-libproc.
8600         * Makefile.in: Regenerate.
8602         * Makefile.def: Remove order dependency comments.
8603         * Makefile.tpl: Add explicit install-install dependencies.
8604         * Makefile.in: Regenerate.
8606         * Makefile.tpl: Remove material now in src-release.  (Finally!)
8607         * Makefile.in: Regenerate.
8609         * configure: Restore my original patch by syncing with gcc version.
8611         * Bring following over from gcc:
8613 2002-09-30  Ulrich Weigand  <uweigand@de.ibm.com>
8615         * configure.in (s390*-*-linux*): Enable libgcj.
8617 2002-10-02  Nathanael Nerode  <neroden@gcc.gnu.org>
8619         * Makefile.in: Regenerate.  This really ought to fix things. :sigh:
8621 2002-10-02  Alan Modra  <amodra@bigpond.net.au>
8623         * configure: Move stray lines back to where they belong.
8625 2002-10-01  Nathanael Nerode  <neroden@gcc.gnu.org>
8627         * Makefile.tpl: Insert configure-target target, for src-release.
8629         * configure: Finish reverting change which Andrew Cagney started
8630         reverting.  Should fix bustage.
8632         * src-release (BINUTILS_SUPPORT_DIRS): Add cpu directory.
8633         * src-release: New file.  Contains material for making net
8634         releases for gdb, binutils, et al., formerly in Makefile.in.
8636 2002-09-30  Nick Clifton  <nickc@redhat.com>
8638         * cpu: New top level directory.  Intended to hold input files for
8639         CGEN which have FSF copyright assignment.
8640         * Makefile.in (BINUTILS_SUPPORT_DIRS): Add cpu directory.
8642 2002-09-29  Andrew Cagney  <ac131313@redhat.com>
8644         Revert below (note that src does not contain Makefile.tpl):
8645         * Makefile.tpl: Make subsituted variables more autoconfy.
8646         * Makefile.in: Regenerate.
8648 2002-09-29  Nathanael Nerode  <neroden@gcc.gnu.org>
8650         * configure: Revert accidentally applied changes.
8652         * Makefile.tpl: Make more autoconf-friendly.
8653         * Makefile.in: Regenerate.
8654         * configure: Make substitution more autoconf-like.
8656 2002-09-28  Richard Earnshaw  <rearnsha@arm.com>
8658         * configure.in (arm-*-coff, strongarm-*-coff, xscale-*-coff): Use a
8659         single entry to handle all these.
8660         (arm-*-elf, strongarm-*-elf, xscale-*-elf): Likewise.  Also enable
8661         libjava on arm-*-elf.
8663 2002-09-27  Geoffrey Keating  <geoffk@apple.com>
8665         * configure.in (powerpc-*-darwin*): Don't configure BFD, TK, or the
8666         things that depend on them.
8668 2002-09-25  Nathanael Nerode  <neroden@gcc.gnu.org>
8670         * Makefile.tpl: Make subsituted variables more autoconfy.
8671         * Makefile.in: Regenerate.
8672         * configure: Make seds more autoconfy.
8674 2002-09-25  Nathanael Nerode  <neroden@gcc.gnu.org>
8676         * Makefile.tpl: Rewrite substituted lines to look autoconfy.
8677         * Makefile.in: Regenerate.
8678         * configure.in: Rewrite sed statements to look autoconfy.
8680         * Makefile.tpl: Autogenerate *-target-* lists, dependencies of
8681         all-target-foo on configure-target-foo.
8682         * Makefile.def: Ditto.
8683         * Makefile.in: Rebuild.
8685 2002-09-22  Nathanael Nerode  <neroden@gcc.gnu.org>
8687         * Makefile.def: New file.
8688         * Makefile.tpl: New file.
8689         * Makefile.in: Generate from Makefile.tpl with 'autogen Makefile.def'.
8691         * configure.in: Minor rearrangement.  Simplify tests.
8693 2002-09-23  Jason Thorpe  <thorpej@wasabisystems.com>
8695         * configure.in (with_headers): Skip copy if value is "yes".
8696         (with_libs): Likewise.
8698 2002-09-20  Nathanael Nerode  <neroden@gcc.gnu.org>
8700         * configure.in (*-*-netbsd*): Use noconfigdirs, not skipdirs.
8701         * configure.in (sh*-*-pe*): Ditto.
8702         * configure.in (mips*-*-pe*): Ditto.
8703         * configure.in (*arm-wince-pe): Ditto.
8705         * configure.in: Rearrange.
8707 2002-09-12  Nick Clifton  <nickc@redhat.com>
8709         * Import these changes from the config master repository:
8711         2002-09-05  Svein E. Seldal  <Svein.Seldal@solidas.com>
8713                 * config.sub: Add tic4x target.
8715         2002-09-03  Ben Elliston  <bje@redhat.com>
8717                 * config.guess: Detect NSR-D machines for nsr-tandem-nsk.
8718                 Reported by <Duncan_Stodart@insession.com>.
8720 2002-09-10  Jeff Johnston  <jjohnstn@redhat.com>
8722         * COPYING.NEWLIB: More updates.
8724 2002-09-09  Jeff Johnston  <jjohnstn@redhat.com>
8726         * COPYING.NEWLIB: Update.
8728 2002-08-23  Andrew Cagney  <ac131313@redhat.com>
8730         * texinfo/texinfo.tex: Import version 2002-06-04.06.
8732         * config.guess: Import version 2002-08-23.
8733         * config.sub: Import version 2002-08-22.
8735 2002-08-20  Alexandre Oliva  <aoliva@redhat.com>
8737         * Makefile.in (GCC_FOR_TARGET): Prepend STAGE_CC_WRAPPER.
8738         * configure.in (CC_FOR_TARGET, GCJ_FOR_TARGET, CXX_FOR_TARGET,
8739         CXX_FOR_TARGET_FOR_RECURSIVE_MAKE): Likewise.
8741 2002-08-06  Federico G. Schwindt <fgsch@olimpo.com.br>
8743         * configure.in (hppa*-*-openbsd*): Treat like hppa*-*-*elf*.
8745 2002-08-04  H.J. Lu  (hjl@gnu.org)
8747         * configure.in (mips*-*-linux*): Don't skip target-libffi.
8749 2002-07-31  Alan Modra  <amodra@bigpond.net.au>
8751         * configure.in: Move generic linux case to end.  Copy generic
8752         linux noconfigdirs to mips*-*-linux* entry and new
8753         powerpc64*-*-linux* entry.  Add target-libffi for the latter.
8755 2002-07-19  Chris Demetriou  <cgd@broadcom.com>
8757         * MAINTAINERS: Clarify on config.guess and config.sub, and add
8758         one instance of them which was missed to the list to update.
8760 2002-07-16  Chris Demetriou  <cgd@broadcom.com>
8762         * config.guess: Update to 2002-07-09 version.
8763         * config.sub: Update to 2002-07-03 version.
8765 2002-07-11  Nathanael Nerode  <neroden@gcc.gnu.org>
8767         * configure.in: Remove two redundant tests.
8769 2002-07-11  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
8771         * configure.in (mips*-*-irix6*o32): Enable stabs.
8773 2002-07-08  Nathanael Nerode  <neroden@gcc.gnu.org>
8775         * configure.in: Don't build grez.
8776         * Makefile.in: Ditto.
8778         * Makefile.in: Remove references to bsp, cygmon, libstub.
8779         * configure.in: Ditto.
8781         * configure.in: Remove leftover reference to gdbtest.
8783 2002-07-08  Phil Edwards  <pme@gcc.gnu.org>
8785         * configure.in (gxx_include_dir):  Change to match versioned
8786         C++ headers if --enable-version-specific-runtime-libs is used.
8788 2002-07-04  Steve Ellcey  <sje@cup.hp.com>
8790         * ltcf-cxx.sh (hpux*): Modify to support ia64-*-hpux*.
8792 2002-07-03  Nathanael Nerode  <neroden@gcc.gnu.org>
8794         * configure.in: Make --without-x work.
8796 2002-07-03  Nick Clifton  <nickc@cambridge.redhat.com>
8798         * contrib: New directory.  Created to contain a copy of the
8799         texi2pod.pl script so that it is in the same place as the version in
8800         the FSF GCC sources.
8802 2002-07-02  Nathanael Nerode  <neroden@gcc.gnu.org>
8804         * configure.in: Rearrange target Makefile fragment collection.
8806         * Makefile.in: Don't try to build gdbtest, tgas, ispell, inet, or
8807         cvs[src].
8808         * configure.in: Ditto.
8810 2002-07-01  Nathanael Nerode <neroden@gcc.gnu.org>
8812         * Makefile.in: Eliminate 'apache' targets.
8813         * configure.in: Eliminate 'apache' targets.
8815         * configure.in: Eliminate redundant tests.  Reorganize.
8817         * Makefile.in: Eliminate last reference to LIBGCC1_TEST.
8819         * config-ml.in: Eliminate references to Cygnus configure.
8821         * Makefile.in: Eliminate references to building emacs.
8823 2002-07-01  Denis Chertykov  <denisc@overta.ru>
8825         * configure.in: Add support for ip2k.
8827 2002-06-24  Ben Elliston  <bje@redhat.com>
8829         * configure.in (host_tools): Remove cgen.
8831         * Makefile.in (all-cgen): Remove; runs from its source directory.
8832         (check-cgen, install-cgen, clean-cgen): Likewise.
8833         (all-opcodes): No not depend on all-cgen.
8834         (all-sim): Likewise.
8836 2002-06-22  Nathanael Nerode  <neroden@twcny.rr.com>
8838         * configure.in: Fix AIX configury bug.
8840 2002-06-19  Nathanael Nerode  <neroden@twcny.rr.com>
8842         * configure.in: Replace ${topsrcdir} with ${srcdir}.
8844         * configure.in: Move definition of libstdcxx_flags right above
8845         usage, rather than way earlier.
8847         * configure.in: Pull definition of is_cross_compiler earlier.
8849         * configure.in: Rearrange a little.
8851         * configure.in: Remove references to librx.
8852         * Makefile.in: Remove references to librx.
8854 2002-06-19  Nathanael Nerode  <neroden@twcny.rr.com>
8856         * configure.in: Eliminate ${gasdir} variable.
8858 2002-06-18  Dave Brolley  <brolley@redhat.com>
8860         * configure.in: Add support for frv.
8861         * config.sub: Add support for frv.
8863 2002-06-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
8865         * Makefile.in (CFLAGS_FOR_TARGET): Add -O2.
8867 2002-06-08  Jason Thorpe  <thorpej@wasabisystems.com>
8869         * configure.in (vax-*-netbsd*): Re-enable gas.
8871 2002-05-31  Nathanael Nerode  <neroden@twcny.rr.com>
8873         * Makefile.in: Replace HOST_PREFIX, HOST_PREFIX_1 with BUILD_PREFIX,
8874         BUILD_PREFIX_1, to correct nomenclature.
8875         * configure: Likewise.
8877         * Makefile.in: Eliminate version-specific references to tcl8.1, tk8.1.
8878         * configure.in: Eliminate version-specific references to tcl8.1, tk8.1.
8880 2002-05-31  Olaf Hering  <olh@suse.de>
8882         * config-ml.in: Propogate DESTDIR also.
8884 2002-05-29  Jason Thorpe  <thorpej@wasabisystems.com>
8886         * configure.in (vax-*-netbsd*): Don't build gas for this
8887         platform.
8889 2002-05-28  Marek Michalkiewicz  <marekm@amelek.gda.pl>
8891         * configure.in (noconfigdirs): Don't compile libiberty, libstdcxx
8892         and libgcj for AVR.
8894 2002-05-28  Nick Clifton  <nickc@cambridge.redhat.com>
8896         * config.sub: Add DLX target.
8898 2002-05-22  Jason Thorpe  <thorpej@wasabisystems.com>
8900         * config.guess: Update to 2002-05-22 version.
8901         * config.sub: Likewise.
8903 2002-05-16  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
8905         * Makefile.in: Allow for PWDCMD to override hardcoded pwd.
8906         * config-ml.in: Likewise.
8907         * configure: Likewise.
8908         * configure.in: Likewise.
8910 2002-05-13  Nathanael Nerode  <neroden@twcny.rr.com>
8912         * configure.in: Simplify makefile fragment collection.
8914         * configure.in: Remove code to build emacs.
8916         * configure.in : Remove --srcdir argument from targargs and buildargs
8917         (it's always overridden in the Makefile anyway).  Rearrange a bit.
8919         * configure: Move some logic to configure.in.
8920         * configure.in: Move some logic from configure.
8922 2002-05-07  Jeff Johnston  <jjohnstn@redhat.com>
8924         * COPYING.LIBGLOSS: New file.
8926 2002-05-07  Federico G. Schwindt <fgsch@olimpo.com.br>
8928         * Makefile.in: Honour DESTDIR.
8930 2002-05-05  Alexandre Oliva  <aoliva@redhat.com>
8932         * configure.in (noconfigdirs): Don't disable libgcj on
8933         sparc64-*-solaris* and sparcv9-*-solaris*.
8935 2002-05-03  Alexandre Oliva  <aoliva@redhat.com>
8937         * configure.in: Revert 2002-04-18's patch; fixed in libjava.
8939 2002-05-03  Thomas Fitzsimmons  <fitzsim@redhat.com>
8941         * configure.in (FLAGS_FOR_TARGET): Do not add
8942         -B$$r/$(TARGET_SUBDIR)/newlib/ when compiling newlib natively
8943         on i[3456]86-*-linux*.
8945 2002-05-01  Thomas Fitzsimmons  <fitzsim@redhat.com>
8947         * configure.in (noconfigdirs): Replace [ ] with test.
8949         * configure.in (noconfigdirs): Do not add target-newlib if
8950         target == i[3456]86-*-linux*, and host == target.
8952 2002-04-29  Mark Mitchell  <mark@codesourcery.com>
8954         * config.guess: Updated to 2002-04-26's version.
8955         * config.sub: Updated to 2002-04-26's version.
8957 2002-04-29  Nathanael Nerode  <neroden@doctormoo.dyndns.org>
8959         * configure.in: delete reference to absent file
8961         * configure.in: replace '[' with 'test'
8963         * configure.in: Eliminate references to gash.
8964         * Makefile.in: Eliminate references to gash.
8966         * configure.in: remove useless references to 'pic' makefile fragments.
8968         * configure.in: (*-*-windows*) Finish removing.
8970         * configure.in: Eliminate redundant test for libgui.
8972 2002-04-26  Joel Sherrill  <joel@OARcorp.com>
8974         * configure.in (h8300*-*-rtems*): Disable libf2c and libgcj.
8975         (sparc-*-elf*, sparc64-*-elf*): Disable libgcj.
8977 2002-04-19  Nathanael Nerode  <neroden@twcny.rr.com>
8979         * configure.in: remove references to dead files
8981 2002-04-18  Tom Tromey  <tromey@redhat.com>
8983         * configure.in: Disallow configuring libgcj when it is already
8984         installed and we're using Solaris 2.8 linker.  Do enable libgcj on
8985         Solaris 2.8 by default.  For PR libgcj/6158.
8987 2002-04-17  Nathanael Nerode  <neroden@twcny.rr.com>
8989         * configure.in:  Move default CC setting out of config/mh-* fragments
8990         directly into here.
8992 2002-04-17  Nathanael Nerode  <neroden@twcny.rr.com>
8994         * configure.in: don't even try to configure or make a subdirectory
8995         if there's no configure script for it.
8997 2002-04-15  Mark Mitchell  <mark@codesourcery.com>
8999         * MAINTAINERS: Remove chill maintainers.
9000         * Makefile.in (CHILLFLAGS): Remove.
9001         (CHILL_LIB): Remove.
9002         (TARGET_CONFIGDIRS): Remove libchill.
9003         (CHILL_FOR_TARGET): Remove.
9004         (BASE_FLAGS_TO_PASS): Don't pass CHILLFLAGS, CHILL_FOR_TARGET, or
9005         CHILL_LIB.
9006         (CONFIGURE_TARGET_MODULES): Remove configure-target-libchill.
9007         (CHECK_TARGET_MODULES): Likewise.
9008         (INSTALL_TARGET_MODULES): Likewise.
9009         (CLEAN_TARGET_MODULES): Likewise.
9010         (configure-target-libchill): Remove.
9011         (all-target-libchill): Remove.
9012         * configure.in (target_libs): Remove target-libchill.
9013         Do not compute CHILL_FOR_TARGET.
9014         * libchill: Remove directory.
9016 2002-04-15  DJ Delorie  <dj@redhat.com>
9018         * Makefile.in, configure.in, configure: Sync with gcc, entries
9019         follow...
9021 2002-04-08  Tom Tromey  <tromey@redhat.com>
9023         * configure.in: Add FLAGS_FOR_TARGET to GCJ_FOR_TARGET.
9024         Fixes PR libgcj/6068.
9026 2002-03-30  Krister Walfridsson  <cato@df.lth.se>
9028         * configure.in (i*86-*-netbsdelf*): Don't disable libgcj.
9030 2002-03-27  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
9032         * configure.in (alpha*-dec-osf*): Enable libgcj.
9034 2002-03-24  Nick Clifton  <nickc@cambridge.redhat.com>
9036         Fix for: PR bootstrap/3591, target/5676
9037         * configure.in (mcore-pe): Disable the configuration of
9038         libstdc++-v3 since exceptions are not supported.
9040 2002-03-20  Anthony Green  <green@redhat.com>
9042         * configure.in: Enable libgcj for xscale-elf target.
9044 2002-02-28  Alexandre Oliva  <aoliva@redhat.com>
9046         * configure.in (libstdcxx_flags): Don't add libstdc++-v3 flags for
9047         libjava.
9048         (CXX_FOR_TARGET): Explain why -shared-libgcc here.
9050 2002-02-22  Alexandre Oliva  <aoliva@redhat.com>
9052         * configure.in (CXX_FOR_TARGET): Add -shared-libgcc for
9053         libstdc++-v3 and libjava.
9055 2002-02-11  Adam Megacz <adam@xwt.org>
9057         * gcc/Makefile.in: Removed libstdc++-v3 dependancy for libjava and
9058         boehm-gc
9060 2002-02-09  Alexandre Oliva  <aoliva@redhat.com>
9062         * config.guess: Updated to 2002-01-30's version.
9063         * config.sub: Updated to 2002-02-01's version.
9064         Contribute sh64-elf.
9065         2000-12-01  Alexandre Oliva  <aoliva@redhat.com>
9066         * configure.in: Added sh64-*-*.
9068 2002-01-17  H.J. Lu <hjl@gnu.org>
9070         * Makefile.in (all-fastjar): Also depend on all-libiberty.
9071         (all-target-fastjar): Also depend on all-target-libiberty.
9073 Wed Dec  5 07:33:45 2001  Douglas B. Rupp  <rupp@gnat.com>
9075         * configure, configure.in: Use temp file for long sed commands.
9077 2001-11-14  Hans-Peter Nilsson  <hp@bitrange.com>
9079         * configure.in (noconfigdirs) [h8300*-*-*, h8500-*-*]: Disable
9080         libf2c.
9082 2001-11-03  Hans-Peter Nilsson  <hp@bitrange.com>
9084         * configure.in (noconfigdirs) [mmix-*-*]: Disable libgcj.
9086 2001-10-11  Hans-Peter Nilsson  <hp@axis.com>
9088         * configure.in (noconfigdirs) [cris-*-*]: Disable libgcj.
9090 2001-10-02  Joseph S. Myers  <jsm28@cam.ac.uk>
9092         * configure: Handle temporary files securely using mkdir.
9094 2001-09-26  Will Cohen <wcohen@redhat.com>
9096         * configure.in (*-*-linux*): Disable configuration of target-newlib
9097         and target-libgloss.
9099 2001-09-26  Alexandre Oliva  <aoliva@redhat.com>
9101         * Makefile.in (EXTRA_TARGET_FLAGS): Pass RANLIB_FOR_TARGET for
9102         RANLIB.
9104 2001-08-11  Graham Stott  <grahams@redhat.com>
9106         * Makefile.in (check-c++): Add missing semicolon.
9108 2001-07-25  Andrew Haley  <aph@cambridge.redhat.com>
9110         * configure.in (sh-*-linux*): New.
9112 2001-07-12  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
9114         * configure.in (noconfigdirs): Don't compile libiberty, libstdcxx
9115         and libgcj on m68hc11/m68hc12.
9117 2001-06-27  H.J. Lu  (hjl@gnu.org)
9119         * Makefile (CFLAGS_FOR_BUILD): New.
9120         (EXTRA_GCC_FLAGS): Add CFLAGS_FOR_BUILD.
9122 2001-06-01  Hans-Peter Nilsson  <hp@axis.com>
9124         * configure.in (libstdcxx_flags): Do not try to execute
9125         libstdc++-v3/testsuite_flags until it exists.
9127 2001-05-18  Benjamin Kosnik  <bkoz@redhat.com>
9129         * configure.in (libstdcxx_flags): Remove reference to libstdc++.INC.
9131 2001-05-09  Jeffrey Oldham  <oldham@codesourcery.com>
9133         * ltcf-cxx.sh: Add -nostdlib to IRIX 6 archive_cmds.
9135 Mon Apr 23 09:15:03 2001  Anthony Green  <green@redhat.com>
9137         * configure.in: Move *-chorusos target case to the proper switch.
9138         Disable libgcj.
9140 2001-04-13  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>
9142         * Makefile.in (STAGE1_CFLAGS): Pass down.
9144 2001-04-13  Alan Modra  <amodra@one.net.au>
9146         * config.guess: Add hppa64-linux support.  Note for next import that
9147         this is already in the master file.
9148         * configure.in: Likewise.  Accept `parisc' alias for `hppa'.
9150 2001-03-22  Colin Howell  <chowell@redhat.com>
9152         * Makefile.in (DO_X): Do not backslash single-quotes in
9153         backquotes (two places).
9155 2001-03-18  Laurynas Biveinis  <lauras@softhome.net>
9157         * Makefile.in (DO_X): Quote nested quotes.
9159 2001-03-15  Laurynas Biveinis  <lauras@softhome.net>
9161         * Makefile.in (DO_X): Use double quotes for quoting
9162         "RANLIB=$${RANLIB}".
9164 2001-03-09  Nicola Pero <n.pero@mi.flashnet.it>
9166         * configure.in: Only use `lang_requires' for languages athat are
9167         actually enabled.
9169 2001-03-07  Tom Tromey  <tromey@redhat.com>
9171         * configure.in: Allow config-lang.in to set `lang_requires' to list
9172         of other required languages.
9174 2001-03-06  Laurynas Biveinis  <lauras@softhome.net>
9176         * Makefile.in: Remove RANLIB definition. Use RANLIB
9177         in RANLIB_FOR_TARGET, EXTRA_HOST_FLAGS, EXTRA_TARGET_FLAGS,
9178         EXTRA_GCC_FLAGS, $(DO_X) targets only when the RANLIB is set.
9180 2001-02-28  Benjamin Kosnik  <bkoz@redhat.com>
9181             Alexandre Oliva  <aoliva@redhat.com>
9183         * Makefile.in (check-c++): Use tabs, not spaces.
9185 2001-02-19  Benjamin Kosnik  <bkoz@redhat.com>
9187         * Makefile.in (check-c++): New rule.
9189         * configure.in (target_libs): Remove libg++.
9190         (noconfigdirs): Remove libg++.
9191         (noconfigdirs): Same.
9192         (noconfigdirs): Same.
9193         (noconfigdirs): Same.
9195         * config-ml.in: Remove libg++ references.
9197         * Makefile.in (TARGET_CONFIGDIRS): Remove libio, libstdc++, libg++.
9198         (ALL_TARGET_MODULES): Same.
9199         (configure-target-libg++): Remove.
9200         (all-target-libg++): Remove.
9201         (configure-target-libio): Remove.
9202         (all-target-libio): Remove.
9203         (check-target-libio): Remove.
9204         (.PHONY): Remove.
9205         (libg++.tar.bz2): Remove.
9206         (all-target-cygmon): Remove libio.
9207         (all-target-libstdc++): Remove.
9208         (configure-target-libstdc++): Remove.
9209         (TARGET_LIB_PATH): Remove libstdc++.
9210         (ALL_GCC_CXX): Remove libstdc++.
9211         (all-target-gperf): Correct.
9213 2001-02-15  Anthony Green  <green@redhat.com>
9215         * configure: Introduce GCJ_FOR_TARGET.
9216         * configure.in: Ditto.
9217         * Makefile.in: Ditto.
9219 2001-02-08  Chandrakala Chavva <cchavva@redhat.com>
9221         * configure.in: for *-chorusos, don't config target-newlib and
9222         target-libgloss.
9224 2001-02-04  Mark Mitchell  <mark@codesourcery.com>
9226         Remove V2 C++ library.
9227         * configure.in: Remove --enable-libstdcxx_v3 support.
9229 2001-01-27  Richard Henderson  <rth@redhat.com>
9231         * configure.in (target_makefile_frag) [alpha*-*]: Use mt-alphaieee.
9233 2001-01-26  Tom Tromey  <tromey@redhat.com>
9235         * configure.in: Allow libgcj to be built on Sparc Solaris.
9237 2001-01-23  Bryce McKinlay  <bryce@albatross.co.nz>
9239         * configure.in: Enable libgcj on several additional platforms.
9241 2001-01-22  Bryce McKinlay  <bryce@albatross.co.nz>
9243         * configure.in: Enable libgcj for linux targets.
9245 2001-01-09  Mike Stump  <mrs@wrs.com>
9247         * Makefile.in (CONFIGURE_TARGET_MODULES): Pass back configuration
9248         failures of subdirectories.
9250 2001-01-02  Laurynas Biveinis  <lauras@softhome.net>
9252         * configure: handle DOS-style absolute paths.
9254 2001-01-02  Laurynas Biveinis  <lauras@softhome.net>
9256         * configure.in: remove supported directories from $noconfigdirs for DJGPP.
9258 2000-12-18  Benjamin Kosnik  <bkoz@redhat.com>
9260         * Makefile.in (BASE_FLAGS_TO_PASS): Alphabetize.
9261         (libstdcxx_incdir): Pass down.
9262         * config.if: Remove expired bits for cxx_interface, add stub.
9263         (libstdcxx_incdir): Add variable for g++ include directory.
9264         * configure.in (gxx_include_dir): Use it.
9266 2000-12-15  Andreas Jaeger  <aj@suse.de>
9268         * configure.in: Handle lang_dirs.
9270 2000-12-13  Anthony Green  <green@redhat.com>
9272         * configure.in: Disable libgcj for any target not specifically
9273         listed.  Disable libgcj for x86 and Alpha Linux until compatible
9274         with g++ abi.
9276 2000-12-13  Mike Stump  <mrs@wrs.com>
9278         * Makefile.in (local-distclean): Also remove fastjar.
9280 2000-12-10  Anthony Green  <green@redhat.com>
9282         * configure.in: Define libgcj.  Disable libgcj target libraries for
9283         most targets.
9285 2000-12-09  Alexandre Petit-Bianco  <apbianco@cygnus.com>
9287         * configure.in (target_libs): Revert 2000-12-08 patch.
9288         (noconfigdirs): Added target-libjava.
9290 2000-12-09  Laurynas Biveinis  <lauras@softhome.net>
9292         * Makefile.in: handle DOS-style absolute paths.
9294 2000-12-08  Alexandre Petit-Bianco  <apbianco@cygnus.com>
9296         * Makefile.in (TARGET_CONFIGDIRS): Wrong place. Removed note about
9297         libjava.
9298         * configure.in (target_libs): Removed `target-libjava'.
9300 2000-12-08  Alexandre Petit-Bianco  <apbianco@cygnus.com>
9302         * Makefile.in (TARGET_CONFIGDIRS): Added note about libjava.
9303         (ALL_MODULES): Added fastjar.
9304         (NATIVE_CHECK_MODULES, INSTALL_MODULES, CLEAN_MODULES): Likewise.
9305         (all-target-libjava): all-fastjar replaces all-zip.
9306         (all-fastjar): Added.
9307         (configure-target-fastjar, all-target-fastjar): Likewise.
9308         * configure.in (host_tools): Added fastjar.
9310 2000-12-07  Mike Stump  <mrs@wrs.com>
9312         * Makefile.in (local-distclean): Remove leftover built files.
9314 2000-11-16  Fred Fish  <fnf@be.com>
9316         * configure.in (enable_libstdcxx_v3): Fix typo,
9317         libstd++ -> libstdc++.
9319 2000-11-13  Joseph S. Myers  <jsm28@cam.ac.uk>
9321         * configure: Provide the original toplevel configure arguments
9322         (including $0) to subprocesses in the environment rather than
9323         through gcc/configargs.h.
9325 2000-11-12  Mark Mitchell  <mark@codesourcery.com>
9327         * configure: Turn on libstdc++ V3 by default.
9329 2000-10-16  Michael Meissner  <meissner@redhat.com>
9331         * configure (gcc/configargs.h): Only create if there is a build GCC
9332         directory created.
9334 2000-10-05  Phil Edwards  <pme@gcc.gnu.org>
9336         * configure: Save configure arguments to gcc/configargs.h.
9338 2000-10-04  Andris Pavenis  <pavenis@latnet.lv>
9340         * Makefile.in (bootstrap): avoid recursion if subdir missing
9341         (cross): ditto
9342         (do-proto-toplev): ditto
9344 Wed Sep 13 11:11:29 2000  Jeffrey A Law  (law@cygnus.com)
9346         * configure.in: Do not build byacc for hppa64.  Provide paths to the
9347         X11 libraries for hppa64.
9349 2000-09-02  Anthony Green  <green@cygnus.com>
9351         * Makefile.in (all-gcc): Depend on all-zlib.
9352         (CLEAN_MODULES): Add clean-zlib.
9353         (ALL_MODULES): Add all-zlib.
9354         * configure.in (host_libs): Add zlib.
9356 2000-08-25  Alexandre Oliva  <aoliva@redhat.com>
9358         * configure.in (FLAGS_FOR_TARGET): Use $target_configdirs and
9359         $targargs to tell whether newlib is going to be built.
9361         * configure.in [disable-libstdcxx-v3] (libstdcxx_flags): Search
9362         $$r/TARGET_SUBDIR/libio for _G_config.h.
9364 2000-08-14  Zack Weinberg  <zack@wolery.cumb.org>
9366         * configure.in (libstdcxx_flags): Remove -isystem $$s/libio/stdio.
9368         * configure: Make enable_threads and enable_shared defaults
9369         explicit.  Substitute enable_threads into generated Makefiles.
9370         * configure.in: Accept *-*-linux* not just *-*-linux-gnu*.
9371         * libtool.m4: Accept *-*-linux* not just *-*-linux-gnu*.
9373 2000-08-02  Manfred Hollstein  <manfredh@redhat.com>
9375         * configure.in: Re-enable all references to libg++ and librx.
9377 2002-04-09  Loren James Rittle  <rittle@labs.mot.com>
9379         * configure.in: Add *-*-freebsd* configurations.
9381 2002-04-07  Andrew Cagney  <ac131313@redhat.com>
9383         * Makefile.in (do-tar-bz2): Delete rule.  Replace with ...
9384         (do-tar, do-bz2): New rules.
9385         (taz): Update.  Replace do-tar-bz2 with do-tar and do-bz2.
9386         (gdb-tar): New rule.
9387         (gdb-taz): Rewrite.  Use gdb-tar and do-bz2.
9388         (insight_dejagnu.tar): New rule.
9389         (insight.tar): New rule.
9390         (gdb+dejagnu.tar): New rule.
9391         (gdb.tar): New rule.
9393 2002-04-07  Andrew Cagney  <ac131313@redhat.com>
9395         * MAINTAINERS: Update dejagnu/
9397 2002-03-16  Alexandre Oliva  <aoliva@redhat.com>
9399         * ltmain.sh (relink_command): Fix typo in previous change.
9401 2002-03-15  Alexandre Oliva  <aoliva@redhat.com>
9403         * ltmain.sh (taglist): Initialized.  Don't let `CC' tag out of it.
9404         (relink_command): Added --tag flags.
9405         (mode=install): If relinking fails; error out.
9407 2002-03-12  Richard Henderson  <rth@redhat.com>
9409         * Makefile.in (NOTPARALLEL): New.  Use it instead of explicit
9410         .NOTPARALLEL tag.
9411         (do-check): Rename from check.
9412         (check): Allow parallel check.
9414 2002-03-11  Richard Henderson  <rth@redhat.com>
9416         * Makefile.in (.NOTPARALLEL): Add fake tag.
9418 2002-03-07  H.J. Lu  (hjl@gnu.org)
9420         * configure.in: Enable gprof for mips*-*-linux*.
9422 2002-02-28  Alexandre Oliva  <aoliva@redhat.com>
9424         * configure.in (libstdcxx_flags): Don't add libstdc++-v3 flags for
9425         libjava.
9426         (CXX_FOR_TARGET): Add -shared-libgcc for libstdc++-v3 and libjava.
9428 2002-02-24  Andrew Cagney  <ac131313@redhat.com>
9430         * texinfo/texinfo.tex: Update to version 2002-02-14.08.
9432 2002-02-23  Daniel Jacobowitz  <drow@mvista.com>
9434         * config.guess: Import from master sources, rev 1.232.
9435         * config.sub: Import from master sources, rev 1.246.
9437 2002-02-23  Alexandre Oliva  <aoliva@redhat.com>
9439         * Makefile.in (MAKEINFO): Don't assume makeinfo will be built just
9440         because its Makefile is there; test for the executable instead.
9442 2002-02-09  Alexandre Oliva  <aoliva@redhat.com>
9444         Contribute sh64-elf.
9445         2000-12-01  Alexandre Oliva  <aoliva@redhat.com>
9446         * configure.in: Added sh64-*-*.
9448 2002-02-04  Jeff Johnston  <jjohnstn@redhat.com>
9450         * COPYING.NEWLIB: Remove advertising clause from
9451         Berkeley and Red Hat licenses.
9453 2002-02-01  Mo DeJong  <supermo@bayarea.net>
9455         * Makefile.in: Add all-tix to deps for all-snavigator
9456         so that tix is built when building snavigator.
9458 2002-02-01  Ben Elliston  <bje@redhat.com>
9460         * config.guess: Import from master sources, rev 1.229.
9461         * config.sub: Import from master sources, rev 1.240.
9463 2002-01-27  Daniel Jacobowitz  <drow@mvista.com>
9465         From Steve Ellcey <sje@cup.hp.com>:
9466         * libtool.m4 (HPUX_IA64_MODE): Set to 32 or 64 based on ABI.
9467         (lt_cv_deplibs_check_method, lt_cv_file_magic_cmd,
9468         lt_cv_file_magic_test_file): Set to appropriate values for HP-UX
9469         IA64.
9470         * ltcf-c.sh (archive_cmds, hardcode_*): Ditto.
9471         * ltconfig (shlibpath_*, dynamic_linker, library_names_spec,
9472         soname_spec, sys_lib_search_path_spec): Ditto.
9474 2002-01-26  Jason Thorpe  <thorpej@wasabisystems.com>
9476         * configure.in (*-*-netbsd*): New.  Skip target-newlib,
9477         target-libiberty, and target-libgloss.  Skip Java-related
9478         libraries if not supported for NetBSD on target CPU.
9480 2002-01-23  Nick Clifton  <nickc@cambridge.redhat.com>
9482         * configure.in: Import StrongARM and XScale target_configdirs from
9483         FSF GCC version.
9485 2002-01-16  H.J. Lu  (hjl@gnu.org)
9487         * config.guess: Import from master sources, rev 1.225.
9488         * config.sub: Import from master sources, rev 1.238.
9490         * MAINTAINERS: Updated notes on config.guess and config.sub.
9492 2002-01-11  Steve Ellcey  <sje@cup.hp.com>
9494         * configure.in (ia64*-*-hpux*): New target for IA64 HP-UX,
9495         ld and gdb are not supported.
9497 2002-01-07  Jeff Johnston  <jjohnstn@redhat.com>
9499         * Change reference to Cygnus Solutions to be Red Hat.
9501 2002-01-07  Jeff Johnston  <jjohnstn@redhat.com>
9503         * COPYING.NEWLIB: Update generic copyright date.
9505 2002-01-07  Mark Salter  <msalter@redhat.com>
9507         * configure.in: Remove target-bsp and target-cygmon from arm builds.
9508           Allow target-libgloss to be built for arm, strongarm, and xscale.
9510 2002-01-03  Ben Elliston  <bje@redhat.com>
9512         * MAINTAINERS: Update URL for config.* scripts.
9514 2001-12-18  Alan Modra  <amodra@bigpond.net.au>
9516         * config.sub: Import latest version.
9517         * config.guess: Likewise.
9519 2001-12-13  Thomas Fitzsimmons  <fitzsim@redhat.com>
9521         * configure.in (FLAGS_FOR_TARGET): Remove -nostdinc and -isystem
9522         options for i[3456]86-pc-linux* native builds.
9524 2001-12-05  Laurent Guerby  <guerby@acm.org>
9526         * MAINTAINERS: gcc adopts symlink-tree, refer more to
9527         libiberty.
9529         Import this patch from gcc:
9531         2000-12-09  Laurynas Biveinis  <lauras@softhome.net>
9533             * symlink-tree: handle DOS-style absolute paths.
9535 2001-11-28  DJ Delorie <dj@redhat.com>
9536             Zack Weinberg  <zack@codesourcery.com>
9538         When build != host, create libiberty for the build machine.
9540         * Makefile.in (TARGET_CONFIGARGS, BUILD_CONFIGARGS): Replace
9541         CONFIG_ARGUMENTS.
9542         (ALL_BUILD_MODULES_LIST, BUILD_CONFIGDIRS, BUILD_SUBDIR):
9543         New variables.
9544         (ALL_BUILD_MODULES, CONFIGURE_BUILD_MODULES): New variables
9545         and rules.
9546         (all.normal): Depend on ALL_BUILD_MODULES.
9547         (CONFIGURE_TARGET_MODULES rule): Use TARGET_CONFIGARGS.
9548         (all-build-libiberty): Depend on configure-build-libiberty.
9550         * configure: Calculate and substitute proper value for
9551         ALL_BUILD_MODULES.
9552         * configure.in: Create the build subdirectory.
9553         Calculate and substitute TARGET_CONFIGARGS (formerly
9554         CONFIG_ARGUMENTS); also BUILD_SUBDIR and BUILD_CONFIGARGS (new).
9556 2001-11-26  Geoffrey Keating  <geoffk@redhat.com>
9558         * config.sub: Update to version 1.232 on subversion.
9560 2001-11-20  Nick Clifton  <nickc@cambridge.redhat.com>
9562         * Makefile.in (do-proto-toplev): Use msgfmt to generate .gmo
9563         files from .po files for a distribution.
9565 2001-11-19  Hans-Peter Nilsson  <hp@bitrange.com>
9567         * COPYING.NEWLIB: Mention preserved notice in specific parts.
9569 2001-11-13  Jeff Holcomb  <jeffh@redhat.com>
9571         Merged from net gcc:
9572         2001-07-30  Jeff Sturm  <jsturm@one-pont.com>
9573         * ltcf-c.sh: Use $objext, not $ac_objext.
9574         2001-07-27  Mark Kettenis  <kettenis@gnu.org>
9575         * ltcf-cxx.sh: Add support for GNU.
9576         2001-07-22  Timothy Wall  <twall@redhat.com>
9577         * ltcf-c.sh: Don't disable shared libraries for AIX5/IA64.  Preserve
9578         default settings if using GNU tools with that configuration.
9579         * ltcf-cxx.sh: Ditto.
9580         * ltcf-gcj.sh: Ditto.
9581         2001-07-21  Michael Chastain  <chastain@redhat.com>
9582         * ltconfig: Set max_cmd_len to a maximum of 512Kb, as it seems some
9583         HPUX 11.0 systems have trouble with 1MB.  Mark as gcc-local.
9584         * ltmain.sh: Mark as gcc-local.
9586 2001-11-13  Jeff Holcomb  <jeffh@redhat.com>
9588         * Makefile.in (all-bison): Revert 2001-10-24.
9589         Don't depend on texinfo.
9591 2001-11-12  Hans-Peter Nilsson  <hp@bitrange.com>
9593         * COPYING.NEWLIB: Add BSD-style license/copyright blurb for my work.
9595 2001-11-08  Phil Edwards  <pedwards@disaster.jaj.com>
9597         * configure.in (--enable-languages): Be more permissive about
9598         syntax.  Check for empty lists better.  Warn about $LANGUAGES.
9600 2001-11-06  Hans-Peter Nilsson  <hp@bitrange.com>
9602         * Makefile.in (MAKEINFO): Use "missing" for makeinfo older than 4.0.
9604 2001-10-24  Jeff Holcomb  <jeffh@redhat.com>
9606         Makefile.in (all-bison): Don't depend on texinfo.
9608 2001-10-03  Alan Modra  <amodra@bigpond.net.au>
9610         * gettext.m4: Test po/POTFILES.in exists before trying to read.
9612 2001-09-29  Alexandre Oliva  <aoliva@redhat.com>
9614         * Makefile.in (configure-target-gperf): Depend on $(ALL_GCC_CXX).
9616 2001-09-28  Hans-Peter Nilsson  <hp@axis.com>
9618         * config.sub, config.guess: Import latest from subversions.
9620 2001-09-21  Alexandre Oliva  <aoliva@redhat.com>
9622         * Makefile.in (AS_FOR_TARGET, LD_FOR_TARGET,
9623         DLLTOOL_FOR_TARGET, WINDRES_FOR_TARGET, AR_FOR_TARGET,
9624         RANLIB_FOR_TARGET, NM_FOR_TARGET): Don't use double quotes to
9625         avoid quotes nesting problems.
9626         (NATIVE_CHECK_MODULES): Ditto, just for consistency.
9627         (DO_X): Export only variables that are set.
9629 2001-09-19  Ben Elliston  <bje@redhat.com>
9631         * configure.in (sparc-sun-solaris2*): Don't use /usr/bin/which on
9632         Solaris when testing for the /usr/ucb/cc compiler; it has incorrect
9633         semantics.  Use the shell built-in "type" command instead.
9635 2001-09-15  Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
9637         * config.sub: Reverted the earlier change, this version is not the
9638         master file.
9640 2001-09-14  Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
9642         * config.sub: Change machine triplets from mipsel*-* to mips*el-*.
9643         Add support for mips64.
9645 2001-09-03  Jeff Holcomb  <jeffh@redhat.com>
9647         * configure.in: Enable libstdc++-v3 for h8300 targets.
9649 2001-08-30  Eric Christopher  <echristo@redhat.com>
9650             Jason Eckhardt  <jle@redhat.com>
9652         * config.sub: Add support for mipsisa32.
9654 2001-08-30  Eric Christopher  <echristo@redhat.com>
9656         * config.sub, config.guess: Import latest from subversions.
9658 2001-08-20  Alan Modra  <amodra@bigpond.net.au>
9660         * config.sub, config.guess: Import latest from subversions.
9662 2001-07-26  DJ Delorie  <dj@redhat.com>
9664         * MAINTAINERS: Clarify libiberty merge rules and procedures.
9666 2001-06-19  Alan Modra  <amodra@bigpond.net.au>
9668         * Makefile.in: Revert 2001-06-17.
9669         (VER): If AM_INIT_AUTOMAKE uses BFD_VERSION, get version from bfd/.
9671 2001-06-17  H.J. Lu <hjl@gnu.org>
9673         * Makefile.in (gas.tar.bz2): Pass TOOL=bfd PACKAGE=gas to make.
9674         (gas+binutils.tar.bz2): Likewise.
9675         (binutils.tar.bz2): Pass TOOL=bfd PACKAGE=binutils to make.
9677 Fri Jun  8 11:14:02 2001  Andrew Cagney  <cagney@b1.cygnus.com>
9679         * Makefile.in (VER): When present, extract the version number from
9680         the file version.in.
9682 2001-06-08  Alexandre Oliva  <aoliva@redhat.com>, Jeff Sturm  <jsturm@one-point.com>
9684         * Makefile.in (AS_FOR_TARGET, LD_FOR_TARGET, NM_FOR_TARGET): If
9685         gcc/xgcc is built, use -print-prog-name to find out the program
9686         name to use.
9688 2001-06-04  Mark Mitchell  <mark@codesourcery.com>
9690         * ltcf-c.sh (archive_cmds, archive_expsym_cmds) [solaris,
9691         with_gcc]: Use `gcc -shared' to build a shared library.
9693 2001-06-04  John David Anglin  <dave@hiauly1.hia.nrc.ca>
9695         * ltcf-c.sh (archive_cmd) [hpux, with_gcc]: Use gcc to link shared
9696         archives.
9698 2001-05-28  Simon Patarin <simon.patarin@inria.fr>
9700         * ltcf-cxx.sh (osf3/osf4/osf5): Support creation of C++  shared
9701         libraries when using g++ with native linker.
9703 2001-05-28  Alexandre Oliva  <aoliva@redhat.com>
9705         * ltconfig, ltmain.sh: Upgrade to libtool 1.4a 1.641.2.256.
9707 2001-05-24  Tom Rix <trix@redhat.com>
9709         * configure.in : enable ld for aix
9711 2001-05-22  Alexandre Oliva  <aoliva@redhat.com>
9713         * ltcf-cxx.sh (allow_undefined_flag, no_undefined_flag)
9714         [aix4*|aix5*]: Prepend blank.
9716 2001-05-20  Alexandre Oliva  <aoliva@redhat.com>
9718         * ltconfig, ltmain.sh, libtool.m4, ltcf-c.sh, ltcf-cxx.sh,
9719         ltcf-gcj.sh: Upgraded to libtool 1.4a 1.641.2.254.  Rebuilt a number
9720         of subdir/configure scripts to use the new libtool.m4.
9722 2001-05-14  H.J. Lu <hjl@gnu.org>
9724         * config.if (libc_interface): Set to -libc6.2- for cross
9725         compiling to Linux/glibc 2.2.
9727 2001-05-03  Alexandre Oliva  <aoliva@redhat.com>
9729         * configure.in (noconfigdirs) [*-cygwin*, *-mingw*, *-beos]: Disable
9730         libgcj.
9732 2001-04-26  Alexandre Oliva  <aoliva@redhat.com>
9734         * configure.in (noconfigdirs): Don't reset it from scratch in the
9735         target case; only append to it.
9737 2001-04-26  Alexandre Oliva  <aoliva@redhat.com>
9739         * configure.in (noconfigdirs) [hppa*-*-*, mips*-*-irix6*,
9740         sparc-*-solaris2.8]: Disable ${libgcj}.
9742 2001-04-25  Alexandre Oliva  <aoliva@redhat.com>
9744         * configure.in (libgcj_saved): Copy from $libgcj.
9745         (libgcj): Zero out if --enable-libgcj; add to noconfigdirs is
9746         --disable-libgcj.
9748 2001-04-20  Alexandre Oliva  <aoliva@redhat.com>
9750         * ltconfig, ltmain.sh, ltcf-cxx.sh: Upgraded to libtool 1.4a
9751         1.641.2.228.
9753 2001-04-12  Alexandre Oliva  <aoliva@redhat.com>
9755         * ltconfig, ltmain.sh, libtool.m4, ltcf-c.sh, ltcf-cxx.sh,
9756         ltcf-gcj.sh: Upgraded to libtool 1.4a 1.641.2.226.
9758 2001-04-01  Alexandre Oliva  <aoliva@redhat.com>
9760         * Makefile.in (CXX_FOR_TARGET_FOR_RECURSIVE_MAKE, RECURSE_FLAGS):
9761         New macros.
9762         (bootstrap, cross): Use RECURSE_FLAGS.
9763         * configure.in: Subst CXX_FOR_TARGET_FOR_RECURSIVE_MAKE.
9765 2001-03-27  Alexandre Oliva  <aoliva@redhat.com>
9767         * configure.in (CXX_FOR_TARGET): Use xgcc for libstdc++-v3.
9769 2001-03-23  Nick Clifton  <nickc@redhat.com>
9771         * README-maintainer-mode: Add note about inability to use "make
9772         distclean" in maintainer mode.
9774 2001-03-22  Alexandre Oliva  <aoliva@redhat.com>
9776         Re-installed:
9777         2001-01-02  Laurynas Biveinis  <lauras@softhome.net>
9778         * ltcf-c.sh: Clear ac_cv_prog_cc_pic for DJGPP.  Do not add
9779         '-DPIC' to ac_cv_prog_cc_pic for DJGPP.
9780         * ltcf-cxx.sh: Likewise.
9781         * ltcf-gcj.sh: Likewise.
9783 2001-03-22  Philip Blundell  <philb@gnu.org>
9785         * config.sub, config.guess: Import latest from subversions.
9787 2001-03-22  Alexandre Oliva  <aoliva@redhat.com>
9789         * ltconfig, ltmain.sh, libtool.m4, ltcf-c.sh, ltcf-cxx.sh,
9790         ltcf-gcj.sh: Upgraded to libtool 1.4a 1.641.2.198.
9792 2001-03-20  Michael Chastain  <chastain@redhat.com>
9794         * Makefile.in: all-m4 depends on all-texinfo.
9796 2001-03-08  Alexandre Oliva  <aoliva@redhat.com>
9798         * Makefile.in (ALL_GCC, ALL_GCC_C, ALL_GCC_CXX): Set before use.
9800 2001-02-22  Jeff Johnston <jjohnstn@redhat.com>
9802         * COPYING.NEWLIB: Remove DJ Delorie's address because it is no
9803         longer valid.
9805 2001-02-16  Nick Clifton  <nickc@redhat.com>
9807         * configure.in (noconfigdirs): Allow configuration of texinfo
9808         for Cygwin hosts.
9810 2001-02-09  Martin Schwidefsky  <schwidefsky@de.ibm.com>
9812         * config.guess: Add linux target for S/390.
9813         * config.sub: Likewise.
9814         * configure.in: Likewise.
9816 2001-02-06  Ben Elliston  <bje@redhat.com>
9818         * configure: Output host type to stdout, not stderr.
9820 2001-02-04  Michael Sokolov  <msokolov@ivan.Harhan.ORG>
9822         * config.guess: Import from subversions.gnu.org (revision 1.181).
9823         * config.sub: Import from subversions.gnu.org (revision 1.199).
9825 2001-01-30  Alan Modra  <alan@linuxcare.com.au>
9827         * config.guess: Handle hppa64-linux systems.
9829 2001-01-27  Michael Sokolov  <msokolov@ivan.Harhan.ORG>
9831         * ltcf-cxx.sh (ac_cv_prog_cc_pic_works, ac_cv_prog_cc_static_works):
9832         Don't unset, it's non-portable and no longer necessary, set to empty
9833         instead.
9835 2001-01-27  Michael Sokolov  <msokolov@ivan.Harhan.ORG>,  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>
9837         * ltconfig: Shell portability fix for the tagname validity check.
9839 2001-01-27  Michael Sokolov  <msokolov@ivan.Harhan.ORG>
9841         * ltcf-cxx.sh: Use parentheses around eval $ac_compile.
9843 2001-01-27  Alexandre Oliva  <aoliva@redhat.com>
9845         * ltcf-c.sh (ld_shlibs) [aix5*]: Disable on unknown CPU types.
9846         * ltcf-cxx.sh, ltcf-gcj.sh: Likewise.
9848 2001-01-24  Alexandre Oliva  <aoliva@redhat.com>
9850         * ltmain.sh (TAG disable-shared, TAG disable-static): Make sure we
9851         keep at least one of build_libtool_libs or build_old_libs set to
9852         yes.
9854 2001-01-24  Alexandre Oliva  <aoliva@redhat.com>
9856         * ltcf-gcj.sh (lt_simple_link_test_code): Remove stray `(0)'.
9857         * libtool.m4 (_AC_LIBTOOL_GCJ): Pass $CPPFLAGS on.
9859 2000-11-07  Philip Blundell  <pb@futuretv.com>
9861         * Makefile.in (ETC_SUPPORT): Also add configbuild.* and configdev.*.
9863 2000-11-03  Philip Blundell  <pb@futuretv.com>
9865         * Makefile.in (ETC_SUPPORT): Add configure.texi and associated info
9866         files.
9868 2001-01-15  Jeff Johnston  <jjohnstn@redhat.com>
9870         * COPYING.NEWLIB: Put into source repository.
9872 2001-01-15  Ben Elliston  <bje@redhat.com>
9874         * configure.in (host_tools): Add sid.
9875         Always configure cgen.
9876         * Makefile.in (all-sid): New target.
9877         (check-sid, clean-sid, install-sid): Likewise.
9879 2001-01-07  Andreas Jaeger  <aj@suse.de>
9881         * config.sub, config.guess: Update from subversions.
9883 2000-12-12  Alexandre Oliva  <aoliva@redhat.com>
9885         * configure.in: Disable language-specific target libraries for
9886         languages that aren't enabled.
9888 2000-11-24  Nick Clifton  <nickc@redhat.com>
9890         * configure.in (xscale-elf): Add target.
9891         (xscale-coff): Add target.
9892         (c4x, c5x, tic54x): Move after ARM targets.
9894 2000-11-23  Alexandre Oliva  <aoliva@redhat.com>
9896         * ltcf-gcj.sh: Added file, required by 2000-11-18 merge.
9898 2000-11-20  Ian Lance Taylor  <ian@zembu.com>
9900         * ltcf-cxx.sh: Added file, required by 2000-11-18 merge.
9902 2000-11-18  Alexandre Oliva  <aoliva@redhat.com>
9904         * Makefile.in: Merge with GCC and libgcj.
9905         (ALL_GCC_C, ALL_GCC_CXX): New macros.  Use them as dependencies of
9906         configure-target-<library> when their configure scripts need the C
9907         or C++ library to have already been built to work properly.
9908         (do_proto_toplev): Set them to an empty string.
9910 2000-11-18  Alexandre Oliva  <aoliva@redhat.com>
9912         * Makefile.in (HOST_LIB_PATH, TARGET_LIB_PATH): New macros.
9913         (REALLY_SET_LIB_PATH): Use them.
9915 2000-11-06  Christopher Faylor <cgf@cygnus.com>
9917         * config.sub: Add support for Sun Chorus
9919 2000-11-02  Per Lundberg  <plundis@chaosdev.org>
9921         * config.sub: Add support for the *-storm-chaos OS.
9923 2000-10-30  Stephane Carrez  <stcarrez@worldnet.fr>
9925         * configure.in (noconfigdirs): Don't compile some
9926         of the libraries for 68HC11 & 68hc12 targets.
9928 2000-09-30  Alexandre Oliva  <aoliva@redhat.com>
9930         * ltconfig, ltmain.sh, libtool.m4: Updated from libtool
9931         multi-language branch, to work around Solaris' /bin/sh bug.  Rebuilt
9932         all affected `configure' scripts.
9934 2000-09-25  Alexandre Oliva  <aoliva@redhat.com>
9936         * Makefile.in (DEVO_SUPPORT): Added gettext.m4, libtool.m4 and
9937         ltcf-c.sh.
9939 2000-09-12  Philip Blundell  <philb@gnu.org>
9941         * config.sub, config.guess: Update from subversions.
9943 2000-09-06  Alexandre Oliva  <aoliva@redhat.com>
9945         * Makefile.in (all-zlib): Added dummy target.
9947         * ltconfig, ltmain.sh, libtool.m4, ltcf-c.sh: Updated from libtool
9948         multi-language branch.
9950 2000-09-05  Alexandre Oliva  <aoliva@redhat.com>
9952         * Makefile.in (all-bootstrap): Added all-texinfo and all-zlib.
9953         (bootstrap*): Depend on all-bootstrap.
9955 2000-09-02  Alexandre Oliva  <aoliva@redhat.com>, DJ Delorie  <dj@redhat.com>
9957         * configure.in (FLAGS_FOR_TARGET): Use -nostdinc even for Canadian
9958         crosses, but add gcc/include to the header search path for them.
9960 2000-08-31  Alexandre Oliva  <aoliva@redhat.com>
9962         * ltconfig, ltmain.sh: Updated from libtool multi-language branch.
9963         * libtool.m4, ltcf-c.sh: Copied from libtool multi-language branch.
9964         * gettext.m4: New file, extracted from aclocal.m4.
9966 2000-08-22  Alexandre Oliva  <aoliva@redhat.com>
9968         * config-ml.in (CC, CXX): Avoid trailing whitespace.
9969         (LD_LIBRARY_PATH, SHLIB_PATH): Adjust for multilibs and export to
9970         sub-configures.
9972 2000-08-20  Doug Evans  <dje@casey.transmeta.com>
9974         * Makefile.in (ALL_MODULES): Add all-cgen.
9975         (CROSS_CHECK_MODULES,INSTALL_MODULES,CLEAN_MODULES): Similarily.
9976         (all-cgen): New target.
9977         (all-opcodes,all-sim): Depend on all-cgen.
9978         * configure.in (host_tools): Add cgen.
9979         Only configure cgen if --enable-cgen-maint.
9981 2000-08-17  Alexandre Oliva  <aoliva@redhat.com>
9983         * config-ml.in (CC, CXX): Don't introduce a leading space.
9985 2000-08-16  Alexandre Oliva  <aoliva@redhat.com>
9987         * configure.in (libstdcxx_flags): Use
9988         libstdc++-v3/src/libstdc++.INC.
9990 2000-08-15  Alexandre Oliva  <aoliva@redhat.com>
9992         * configure.in (libstdcxx_flags): Use libstdc++-v3/src/INCLUDES.
9994 2000-08-11  Jason Merrill  <jason@redhat.com>
9996         * configure.in (CC_FOR_TARGET, CHILL_FOR_TARGET,
9997         CXX_FOR_TARGET): Add -B$$r/gcc/ here.
9998         (FLAGS_FOR_TARGET): Not here.
9999         (CHILL_FOR_TARGET, CXX_FOR_TARGET): Don't check the list of languages.
10001 2000-08-07  DJ Delorie  <dj@redhat.com>
10003         * configure.in (FLAGS_FOR_TARGET): invert test for xgcc, should mean
10004         "if we're also building gcc, and it's a gcc that will run on the
10005         build machine, we want to use its includes instead of the system's
10006         default includes".
10008 2000-08-03  Alexandre Oliva  <aoliva@redhat.com>
10010         * configure.in (libstdcxx_flags): Don't use `"'.
10012         * config-ml.in: Adjust multilib search paths to the
10013         appropriate multilib tree.
10015 2000-08-02  Alexandre Oliva  <aoliva@redhat.com>
10017         * configure.in (CHILL_FOR_TARGET, CXX_FOR_TARGET): Convert blanks to
10018         commas in $LANGUAGES.
10020 2000-08-01  Alexandre Oliva  <aoliva@redhat.com>
10022         * configure.in (qCXX_FOR_TARGET): Use echo instead of expr.
10024 2000-07-31  Alexandre Oliva  <aoliva@redhat.com>
10026         * configure.in (qCXX_FOR_TARGET): Quote `&' characters in
10027         CXX_FOR_TARGET for sed.
10029 2000-07-30  Alexandre Oliva  <aoliva@redhat.com>
10031         * configure.in (CC_FOR_TARGET, CHILL_FOR_TARGET, CXX_FOR_TARGET):
10032         Do not override if already set in the environment or in configure.
10033         Don't duplicate $(FLAGS_FOR_TARGET) if it already appears in them.
10034         (FLAGS_FOR_TARGET): Don't use host directories on Canadian crosses.
10036 2000-07-27  Alexandre Oliva  <aoliva@redhat.com>
10038         * Makefile.in (FLAGS_FOR_TARGET): New macro.
10039         (GCC_FOR_TARGET): Use it.
10040         (CC_FOR_TARGET, CXX_FOR_TARGET, CHILL_FOR_TARGET): Now defined...
10041         * configure.in: ... here.
10042         (FLAGS_FOR_TARGET): Define.  Add ld build dir to -L path.
10043         (libstdcxx_flags): Define and append to CXX_FOR_TARGET.
10045 2000-07-24  Alexandre Oliva  <aoliva@redhat.com>
10047         * Makefile.in (configure-target-libf2c): Depend on $(ALL_GCC).
10048         (configure-target-libchill, configure-target-libobjc): Likewise.
10050         * configure.in: Use the same cache file for all target libs.
10051         * config-ml.in: But different cache files per multilib variant.
10053 2000-07-23  Michael Sokolov  <msokolov@ivan.Harhan.ORG>
10055         * configure (topsrcdir): Don't use dirname.
10057 2000-07-20  Jason Merrill  <jason@redhat.com>
10059         * configure.in: Remove all references to libg++ and librx.
10061         * configure, configure.in, Makefile.in: Unify gcc and binutils.
10063 2000-07-20  Hans-Peter Nilsson  <hp@axis.com>
10065         * config.sub: Update to subversions version 2000-07-06.
10067 2000-07-12  Andrew Haley  <aph@cygnus.com>
10069         * configure.in (host_makefile_frag): Use mh-ia64pic on IA-64 hosts.
10070         (target_makefile_frag): Use mt-ia64pic on IA-64 targets.
10072 2000-07-07  Phil Edwards  <pme@sourceware.cygnus.com>
10074         * symlink-tree:  Check number of arguments.
10076 2000-06-06  Andrew Cagney  <cagney@b1.cygnus.com>
10078         * texinfo/texinfo.tex: Update to version 2000-05-28.15.
10080 2000-07-05  Jim Wilson  <wilson@cygnus.com>
10082         * Makefile.in (CXX_FOR_TARGET): Add libstdc++ to the library
10083         search path for a g++ extracted from the build tree.  This
10084         will allow link tests run by configure scripts in
10085         subdirectories to succeed.
10087 2000-07-01  Koundinya K  <kk@ddeorg.soft.net>
10089         * ltconfig: Add support for mips-dde-sysv4.2MP
10091 2000-06-28  Corinna Vinschen  <vinschen@cygnus.com>
10093         * ltconfig: Check for host_os beeing one of `cygwin', `mingw' or
10094         `os2'. Force ac_cv_exeext to be ".exe" in that case.
10096 2000-06-19  Timothy Wall  <twall@cygnus.com>
10098         * configure.in (noconfigdirs): Set noconfigdirs for tic54x target.
10099         * config.sub: Add tic54x target.
10101 2000-06-07  Phillip Thomas  <pthomas@suse.de>
10103         * README-maintainer-mode: New file: Contains notes on using
10104         --enable-maintainer-mode with binutils.
10106 2000-05-29  Andrew Cagney  <cagney@b1.cygnus.com>
10108         * texinfo/texinfo.tex: Update. Version from makeinfo 4.0.
10110 2000-05-30  Andrew Cagney  <cagney@b1.cygnus.com>
10112         * config.sub: Import CVS version 1.167 Tue May 30 09:00:07 2000.
10113         * config.guess: Import CVS version 1.148 Tue May 30 09:00:06 2000
10115 20000-05-21  H.J. Lu  (hjl@gnu.org)
10117         * Makefile.in (CC_FOR_TARGET): Make sure as/ld in the gcc
10118         directory are used if they exist. Make sure
10119         $(build_tooldir)/include is searched for header files,
10120         $(build_tooldir)/lib/ for library files.
10121         (GCC_FOR_TARGET): Likewise.
10122         (CXX_FOR_TARGET): Likewise.
10124 2000-05-18  Jeffrey A Law  (law@cygnus.com)
10126         * configure.in (hppa*64*-*-*): Do build ld for this configuration.
10128 2000-05-17  Alexandre Oliva  <aoliva@cygnus.com>
10130         * Makefile.in (configure-target-libiberty): Depend on
10131         configure-target-newlib.
10133 2000-05-16  Alexandre Oliva  <aoliva@cygnus.com>
10135         * configure.in, Makefile.in: Merge all libffi-related
10136         configury stuff from the libgcj tree.
10138 2000-05-16  Andrew Cagney  <cagney@b1.cygnus.com>
10140         Thu Apr 27 11:01:48 2000 Andrew Cagney <cagney@b1.cygnus.com>:
10141         * Makefile.in (do-tar-bz2, do-md5sum): Skip CVS directories.
10143 2000-05-16  Andrew Cagney  <cagney@b1.cygnus.com>
10145         Wed Apr 26 17:03:53 2000 Andrew Cagney <cagney@b1.cygnus.com>:
10146         * Makefile.in (do-djunpack): New target. Update djunpack.bat with
10147         current version information.  Add to proto-toplev directory.
10148         (gdb-taz): Build do-djunpack.
10150 2000-05-15  David Edelsohn  <edelsohn@gnu.org>
10152         * configure.in: Special case powerpc*-*-aix* target_makefile_frag.
10154 2000-05-13 Alexandre Oliva  <oliva@lsd.ic.unicamp.br>
10156         * ltmain.sh: Preserve in relink_command any environment
10157         variables that may affect the linker behavior.
10159 2000-05-12  Jeffrey A Law  (law@cygnus.com)
10161         * config.sub (basic_machine): Recognize hppa64 as a valid cpu type.
10163 2000-05-10  Jim Wilson  <wilson@cygnus.com>
10165         * configure.in (ia64*-*-elf*): Add gdb and friends to noconfigdirs.
10167 2000-05-08  Eli Zaretskii  <eliz@is.elta.co.il>
10169         * djunpack.bat: Change the Sed script to replace @V@ in fnchange.lst
10170         with the version name.
10172 2000-05-01  Benjamin Kosnik  <bkoz@cygnus.com>
10174         * config.if: Tweak.
10176 2000-04-23  Eli Zaretskii  <eliz@is.elta.co.il>
10178         * djunpack.bat: New file.
10180 2000-04-19  Andrew Cagney  <cagney@b1.cygnus.com>
10182         * Makefile.in (taz, gdb-taz, gas.tar.bz2, binutils.tar.bz2,
10183         gas+binutils.tar.bz2, libg++.tar.bz2, gnats.tar.bz2, gdb.tar.bz2,
10184         dejagnu.tar.bz2, gdb+dejagnu.tar.bz2, insight.tar.bz2,
10185         insight+dejagnu.tar.bz2, newlib.tar.bz2): Pass MD5PROG to sub-make.
10187 2000-04-16  Dave Pitts  <dpitts@cozx.com>
10189         * config.sub (case $basic_machine): Change default for "ibm-*"
10190         to "openedition".
10192 2000-04-12  Andrew Cagney  <cagney@b1.cygnus.com>
10194         * Makefile.in (gdb-taz): New target.  GDB specific archive.
10195         (do-md5sum): New target.
10196         (MD5PROG): Define.
10197         (PACKAGE): Default to TOOL.
10198         (VER): Default to a shell script.
10199         (taz): Rewrite target.  Move real work to do-proto-toplev.  Include
10200         md5 checksum generation.
10201         (do-proto-toplev): New target. Create $(PACKAGE)-$(VER) link.
10202         (do-tar-bz2): Delete creation of $(PACKAGE)-$(VER) link.
10203         (gdb.tar.bz2, dejagnu.tar.bz2, gdb+dejagnu.tar.bz2,
10204         insight.tar.bz2): Use gdb-taz to create archive.
10206 2000-04-07  Andrew Cagney  <cagney@b1.cygnus.com>
10208         * configure (warn_cflags): Delete.
10210 2000-04-05  Benjamin Kosnik  <bkoz@cygnus.com>
10211             Martin v. Loewis  <martin@loewis.home.cs.tu-berlin.de>
10213         * configure.in (enable_libstdcxx_v3): Add.
10214         (target_libs): Add bits here to switch between libstdc++-v2 and
10215         libstdc++-v3.
10216         * config.if: And this file too.
10217         * Makefile.in: Add libstdc++-v3 targets.
10219 2000-04-05  Michael Meissner  <meissner@redhat.com>
10221         * config.sub (d30v): Add d30v as a basic machine type.
10223 2000-03-29  Jason Merrill  <jason@casey.cygnus.com>
10225         * configure.in: -linux-gnu*, not -linux-gnu.
10227 2000-03-03  Andrew Cagney  <cagney@b1.cygnus.com>
10229         * Makefile.in (taz): Set PACKAGE to TOOL when not defined.
10230         (do-tar-bz2): Replace TOOL with PACKAGE.
10231         (gdb.tar.bz2): Remove GDBTK from GDB package.
10232         (gdb+dejagnu.tar.bz2, insight.tar.bz2, insight+dejagnu.tar.bz2,
10233         dejagnu.tar.bz2): New packages.
10235 2000-02-27  Andreas Jaeger  <aj@suse.de>
10237         * configure.in: Add entry for mips*-*-linux*, move catch all
10238         *-*-*linux* entry below this one.
10240 2000-02-27  Ian Lance Taylor  <ian@zembu.com>
10242         * ltconfig, ltmain.sh: Update to libtool 1.3.4.
10244 2000-02-24  Nick Clifton  <nickc@cygnus.com>
10246         * config.sub: Support an OS of "wince".
10248 2000-02-24  Andrew Cagney  <cagney@b1.cygnus.com>
10250         * config.guess, config.sub: Updated to match config's 2000-02-15
10251         version.
10253 2000-02-23  Linas Vepstas <linas@linas.org>
10255         * config.sub: Add support for Linux/IBM 370.
10256         * configure.in: Likewise.
10258 2000-02-22  Nick Clifton  <nickc@cygnus.com>
10260         * configure.in: Add mips-pe, sh-pe and arm-wince-pe targets.
10262 2000-02-20  Christopher Faylor <cgf@cygnus.com>
10264         * config.guess: Guess "cygwin" rather than "cygwin32".
10266 2000-02-16  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
10268         * configure (gcc_version): When setting, narrow search to
10269         lines containing `version_string'.
10271 2000-02-15  Denis Chertykov  <denisc@overta.ru>
10273         * config.sub: Add support for avr target.
10275 2000-02-01  Hans-Peter Nilsson  <hp@bitrange.com>
10277         * config.sub: Add mmix-knuth-mmixware.
10279 2000-01-27  Christopher Faylor <cgf@redhat.com>
10281         * Makefile.in (CC_FOR_TARGET): Add new winsup directory
10282         structure stuff to -L library search.
10283         (CXX_FOR_TARGET): Ditto.
10284         (CROSS_CHECK_MODULES): Fix spelling mistake.
10286 2000-01-24  Mark Mitchell  <mark@codesourcery.com>
10288         * Makefile.in (CXX_FOR_TARGET): Use g++, not xgcc, to invoke
10289         the C++ compiler.
10291 2000-01-12  Richard Henderson  <rth@cygnus.com>
10293         * configure.in: Don't build some bits for beos.
10295 2000-01-12  Joel Sherrill (joel@OARcorp.com)
10297         * Makefile.in (CC_FOR_TARGET): Use newlib libraries as well
10298         as include files.
10300 2000-01-06  Geoff Keating  <geoffk@cygnus.com>
10302         * configure.in: Use mt-aix43 to handle *_TARGET defs,
10303         not mh-aix43.
10305 1999-12-14  Richard Henderson  <rth@cygnus.com>
10307         * config.guess (alpha-osf, alpha-linux): Detect ev67.
10308         * config.sub: Accept alphaev[78], alphaev8.
10310 1999-12-03  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>
10312         * config.guess, config.sub: Update from autoconf.
10314 Tue Nov 23 00:57:41 1999  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
10316         * config-ml.in (sparc*-*-*): Disable sparcv9 support if the
10317         necessary libraries are missing.
10319 1999-10-25  Andreas Schwab  <schwab@suse.de>
10321         * configure: Fix quoting inside arguments of eval.
10323 1999-10-21  Nick Clifton  <nickc@cygnus.com>
10325         * config-ml.in: Allow suppression of some ARM multilibs.
10327 Tue Sep  7 23:33:57 1999  Linas Vepstas  <linas@linas.org>
10329         * config.guess: Add OS/390 match pattern.
10330         * config.sub: Add mvs, openedition targets.
10331         * configure.in (i370-ibm-opened*): New.
10333 1999-09-04  Steve Chamberlain  <sac@pobox.com>
10335         * config.sub: Add support for configuring for pj.
10337 1999-08-31  Nick Clifton  <nickc@cygnus.com>
10339         * config.sub (maybe_os): Add support for configuring for fr30.
10341 1999-08-25  Nick Clifton  <nickc@cygnus.com>
10343         * configure.in: Do not configure or build ld for AIX
10344         platforms.  ld is known to be broken on these platforms.
10346 Wed Aug 25 01:12:25 1999  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
10348         * config-ml.in: Pass compiler flag corresponding to multidirs to
10349         subdir configures.
10351 1999-08-09  Ian Lance Taylor  <ian@zembu.com>
10353         * Makefile.in (LDFLAGS): Define.
10355 1999-08-08  Mumit Khan  <khan@xraylith.wisc.edu>
10357         * configure.in (i[3456]-*-mingw32*): Don't put gprof in
10358         noconfigdirs.
10359         (*-*-cygwin*): Likewise.
10361 1999-08-08  Ian Lance Taylor  <ian@zembu.com>
10363         * mkdep: New file.
10364         * Makefile.in (GAS_SUPPORT_DIRS): Add mkdep.
10365         (BINUTILS_SUPPORT_DIRS): Add mkdep.
10367         From Eli Zaretskii <eliz@is.elta.co.il>:
10368         * configure (tmpfile): Change cONf$$ to cNf$$ to avoid an overly
10369         long file name when using DJGPP on MS-DOS.
10371 Wed Aug  4 02:07:14 1999  Jeffrey A Law  (law@cygnus.com)
10373         * config.sub (vxworks case): Use os=-vxworks, not os=vxworks.
10375 1999-07-30  Alan Modra  <alan@spri.levels.unisa.edu.au>
10377         * Makefile.in (check-target-libio): Remove all-target-libstdc++
10378         dependency as this causes "make check" to globally "make all"
10380 Tue Jun 22 23:45:18 1999  Tom Tromey  <tromey@cygnus.com>
10382         * configure.in (target_libs): Added target-zlib.
10383         * Makefile.in (ALL_TARGET_MODULES): Added zlib.
10384         (CONFIGURE_TARGET_MODULES): Likewise.
10385         (CHECK_TARGET_MODULES): Likewise.
10386         (INSTALL_TARGET_MODULES): Likewise.
10387         (CLEAN_TARGET_MODULES): Likewise.
10388         (configure-target-zlib): New target.
10389         (all-target-zlib): Likewise.
10390         (all-target-libjava): Depend on all-target-zlib.
10391         (configure-target-libjava): Depend on configure-target-zlib.
10393         * Makefile.in (configure-target-libjava): Depend on
10394         configure-target-newlib.
10395         (configure-target-boehm-gc): New target.
10396         (configure-target-qthreads): New target.
10398         * configure.in (target_libs): Added target-qthreads.
10399         * Makefile.in (ALL_TARGET_MODULES): Added qthreads.
10400         (CONFIGURE_TARGET_MODULES): Likewise.
10401         (CHECK_TARGET_MODULES): Likewise.
10402         (INSTALL_TARGET_MODULES): Likewise.
10403         (CLEAN_TARGET_MODULES): Likewise.
10404         (all-target-qthreads): New target.
10405         (configure-target-libjava): Depend on configure-target-qthreads.
10406         (all-target-libjava): Depend on all-target-qthreads.
10408         * Makefile.in (ALL_TARGET_MODULES): Added libjava, boehm-gc.
10409         (CONFIGURE_TARGET_MODULES): Likewise.
10410         (CHECK_TARGET_MODULES): Likewise.
10411         (INSTALL_TARGET_MODULES): Likewise.
10412         (CLEAN_TARGET_MODULES): Likewise.
10413         (all-target-libjava): New target.
10414         (all-target-boehm-gc): Likewise.
10415         * configure.in (target_libs): Added libjava, boehm-gc.
10417 1999-07-22  Ian Lance Taylor  <ian@zembu.com>
10419         * Makefile.in (binutils.tar.bz2): Don't pass makeall.bat and
10420         configure.bat in SUPPORT_FILES.
10421         (gas+binutils.tar.bz2): Likewise.
10423         * makeall.bat: Remove; obsolete.
10425 1999-07-21  Ian Lance Taylor  <ian@zembu.com>
10427         From Mark Elbrecht:
10428         * configure.bat: Remove; obsolete.
10430 1999-07-11  Ian Lance Taylor  <ian@zembu.com>
10432         * configure: Add -W -Wall to the default CFLAGS when compiling with
10433         gcc.
10435 Thu Jul  8 12:32:23 1999  John David Anglin <dave@hiauly1.hia.nrc.ca>
10437         * configure.in: Build ld, binutils & gas for hppa*-*-linux-gnu*.
10439 1999-06-30  Mark Mitchell  <mark@codesourcery.com>
10441         * configure.in: Build ld on IRIX6.
10443 1999-06-12  Ian Lance Taylor  <ian@zembu.com>
10445         * Makefile.in: Change distribution targets to use bzip2 instead of
10446         gzip.
10447         (TEXINFO_SUPPORT): Set to just texinfo/texinfo.tex.
10448         (taz): Don't use texinfo/gpl.texinfo or texinfo/lgpl.texinfo.
10450 1999-06-04  Nick Clifton  <nickc@cygnus.com>
10452         * config.sub: Add mcore target.
10454 1999-05-30  Cort Dougan  <cort@cs.nmt.edu>
10456         * config.guess (ppc-*-linux-gnu): Also use ld emul elf32ppclinux.
10458 1999-05-25  H.J. Lu  (hjl@gnu.org)
10460         * config.guess (dummy): Changed to $dummy.
10462 1999-05-24  Nick Clifton  <nickc@cygnus.com>
10464         * config.sub: Tidied up case statements.
10466 1999-05-22  Ben Elliston  <bje@cygnus.com>
10468         * config.guess: Handle NEC UX/4800. Contributed by Jiro Takabatake
10469         <jiro@din.or.jp>.
10471         * config.guess: Merge with FSF version. Future changes will be
10472         more accurately recorded in this ChangeLog.
10473         * config.sub: Likewise.
10475 1999-05-20   Stephen L Moshier  <moshier@world.std.com>
10477          * Makefile.in (GCC_FOR_TARGET): Add -I$(build_tooldir)/include.
10479 1999-04-30  Tom Tromey  <tromey@cygnus.com>
10481         * ltmain.sh: [mode link] Always use CC given by ltconfig.
10483 1999-04-23  Tom Tromey  <tromey@cygnus.com>
10485         * ltconfig, ltmain.sh: Update to libtool 1.2f.
10487 1999-04-20  Drew Moseley  <dmoseley@cygnus.com>
10489         * configure.in (noconfigdirs): Don't build libstub for arm-elf targets.
10490         (noconfigdirs): Don't build any bsp stuff for for arm-oabi targets.
10491         Bad merge removed these two changes.
10493 Tue Apr 13 22:50:54 1999  Donn Terry (donn@interix.com)
10494                           Martin Heller (Ing.-Buero_Heller@t-online.de)
10496         * config.guess (interix Alpha): Add.
10498 1999-04-11  Richard Henderson  <rth@cygnus.com>
10500         * configure.in (i?86-*-beos*): Do config gperf; don't config
10501         gdb, newlib, or libgloss.
10503 1999-04-11  Alexandre Oliva  <oliva@dcc.unicamp.br>
10505         * config-ml.in: On mips*-*-*, if multidirs contains mabi=64, try to
10506         link a trivial program with -mabi=64.  If it fails, remove mabi=64
10507         from multidirs.
10509 1999-04-10  Philipp Thomas  (kthomas@gwdg.de)
10511         * config.sub: Set basic_machine to i586 when target_alias = k6-*.
10513 1999-04-08  Nick Clifton  <nickc@cygnus.com>
10515         * config.sub: Add support for mcore targets.
10517 1999-04-07  Michael Meissner  <meissner@cygnus.com>
10519         * configure.in (d30v-*): Use config/mt-d30v as makefile fragment,
10520         not mt-ospace, in order to shut up assembler warning about using
10521         symbols that are named the same as registers.
10523 1999-04-07  Drew Moseley  <dmoseley@cygnus.com>
10525         * Makefile.in (all-target-cygmon): Added all-target-bsp to the
10526         dependency list for all-target-cygmon.
10528 1999-04-05  Doug Evans  <devans@casey.cygnus.com>
10530         * config-ml.in: Check $host, not $target, for selective multilibs.
10531         (arm-*-*): Allow disabling of biendian, h/w fp, 26 bit apcs,
10532         thumb interworking, and underscore prefix multilibs.
10534 1999-04-04  Ian Lance Taylor  <ian@zembu.com>
10536         * missing: Update to version from current automake.
10538 Fri Apr  2 15:11:32 1999  H.J. Lu  (hjl@gnu.org)
10540         * configure (gxx_include_dir): Removed.
10542         * configure.in (gxx_include_dir): Handle it.
10543         * Makefile.in: Likewise.
10545 1999-03-29  Gavin Romig-Koch  <gavin@cygnus.com>
10547         * config.sub (mips64vr4111,mips64vr4111el) Add.
10549 1999-03-21  Ben Elliston  <bje@cygnus.com>
10551         * config.guess: Correct typo for detecting ELF on FreeBSD.
10553 Thu Mar 18 00:17:50 1999  Mark Elbrecht <snowball3@usa.net>
10555         * configure.in (pc-msdosdjgpp): Set host_makefile_frag to
10556         config/mh-djgpp.
10558 Thu Mar 11 18:37:23 1999  Drew Moseley  <dmoseley@cygnus.com>
10560         * Makefile.in (all-target-bsp): Added all-gcc all-binutils and
10561         all-target-newlib to dependency list for all-target-bsp.
10563 Thu Mar 11 01:19:31 1999  Mumit Khan  <khan@xraylith.wisc.edu>
10565         * config.sub: Add i386-uwin support.
10566         * config.guess: Likewise.
10568 Thu Mar 11 01:07:55 1999  Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
10570         * configure.in: cleanup, add mh-*pic handling for arm, special
10571         case powerpc*-*-aix*
10573 Wed Mar 10 18:35:07 1999  Jeff Johnston  <jjohnstn@cygnus.com>
10575         * configure.in (noconfigdirs): Removed target-libgloss so libnosys.a
10576         can be built.
10578 Wed Mar 10 17:39:09 1999  Drew Moseley  <dmoseley@cygnus.com>
10580         * configure.in: Added bsp support to arm-*-coff and arm-*-elf
10581         targets.
10583 1999-03-02  Nick Clifton  <nickc@cygnus.com>
10585         * config.sub: Rename CYGNUS LOCAL to EGCS LOCAL
10587 1999-02-28  Geoffrey Noer  <noer@cygnus.com>
10589         * config.sub: Check for "cygwin*" rather than "cygwin32*"
10591 1999-02-24  Nick Clifton  <nickc@cygnus.com>
10593         * config.sub: Fix typo in arm recognition.
10595 1999-02-24  Drew Moseley  <dmoseley@cygnus.com>
10597         * configure.in (noconfigdirs): Changed target_configdirs to
10598         include target-bsp only for m68k-*-elf* and m68k-*-coff*
10599         rather than m68k-*-* since it is not known to work on
10600         m68k-aout. Ditto for arm-*-*oabi.
10602 1999-02-24  Stan Shebs  <shebs@andros.cygnus.com>
10604         * configure.in (*-*-windows*): Remove, no longer used.
10606 1999-02-19  Ben Elliston <bje@cygnus.com>
10608         * config.guess: Automatically recognise ELF on FreeBSD. From Niall
10609         Smart and improved by Andrew Cagney.
10611 1999-02-18  Marc Espie <espie@cvs.openbsd.org>
10613         * config.guess: Recognize openbsd-*-hppa.
10615 1999-02-17  H.J. Lu  (hjl@gnu.org)
10617         * Makefile.in (REALLY_SET_LIB_PATH): Append $$$(RPATH_ENVVAR)
10618         only if it is not empty.
10620 1999-02-17  Nick Clifton  <nickc@cygnus.com>
10622         Patch from: Scott Bambrough <scottb@corelcomputer.com>
10624         * config.guess: Modified to recognize uname's armv* syntax.
10626         * config.sub: Modified to recognize uname's armv* syntax.
10628 1999-02-17  Mark Salter  <msalter@cygnus.com>
10630         * configure.in: Added target-bsp for sparclite.
10632 1999-02-08  Richard Henderson  <rth@cygnus.com>
10634         * config.sub: Recognize alphapca5[67] and up to alphaev8.
10636 1999-02-08  Nick Clifton  <nickc@cygnus.com>
10638         * configure.in: Add support for strongarm port.
10639         * config.sub: Add support for strongarm target.
10641 1999-02-07  Mumit Khan  <khan@xraylith.wisc.edu>
10643         * configure.in (*-*-cygwin32*): Use config/mh-cygwin instead of
10644         the old name config/mh-cygwin32.
10645         Enable texinfo.
10647 1999-02-04  Ian Lance Taylor  <ian@cygnus.com>
10649         * configure.in: Do build ld for ix86 Solaris.
10651 1999-02-02  Jim Wilson  <wilson@cygnus.com>
10653         * Makefile.in (EXTRA_GCC_FLAGS):  Set AR to $AR instead of
10654         $AR_FOR_TARGET.  Likewise for RANLIB.
10656 1999-02-02  Catherine Moore  <clm@cygnus.com>
10658         * config.sub (oabi):  Recognize.
10659         * configure.in (arm-*-oabi):  Handle.
10661 1999-01-30  Robert Lipe  (robertlipe@usa.net)
10663         * config.guess: Improve detection of i686 on UnixWare 7.
10665 1999-01-30  Mumit Khan  <khan@xraylith.wisc.edu>
10667         * config.guess: Add support for i386-pc-interix.
10668         * config.sub: Likewise.
10669         * configure.in: Likewise.
10671 1999-01-18  Christopher Faylor <cgf@cygnus.com>
10673         * Makefile.in: Remove unneeded all-target-libio from
10674         from all-target-winsup target since it is now unneeded.
10675         Add all-target-libtermcap in its place since it is now
10676         needed.
10678 1998-12-30  Christopher Faylor <cgf@cygnus.com>
10680         * configure.in: makefile stub for cygwin target is probably
10681         unnecessary.  Remove it for now.
10683 1998-12-30  Christopher Faylor <cgf@cygnus.com>
10685         * configure.in: libtermcap.a should be built when cygwin is the
10686         target as well as the host.
10687         * config.guess: Allow mixed case in cygwin uname output.
10688         * Makefile.in: Add libtermcap target.
10690 1998-12-23  Jeffrey A Law  (law@cygnus.com)
10692         * config.sub: Clean up handling of hppa2.0.
10694 1998-12-22  Rodney Brown  (rodneybrown@pmsc.com)
10696         * config.guess: Use C code to identify more HP machines.
10698 Thu Dec 17 01:22:30 1998  Jeffrey A Law  (law@cygnus.com)
10700         * config.sub: Handle hppa2.0.
10702 Tue Dec 15 17:02:58 1998  Bob Manson  <manson@charmed.cygnus.com>
10704         * configure.in: Add cygmon for x86-coff and x86-elf. Configure
10705         cygmon for all sparclite targets, regardless of object format.
10707 1998-12-15  Mark Salter  <msalter@cygnus.com>
10709         * configure.in: Added target-bsp for several target architectures.
10711         * Makefile.in: Added rules for bsp.
10713 Fri Dec  4 01:34:02 1998  Jeffrey A Law  (law@cygnus.com)
10715         * config.guess: Improve detection of hppa2.0 processors.
10717 Fri Dec  4 01:33:05 1998  Niall Smart <nialls@euristix.ie>
10719         * config.guess: Recognize FreeBSD using ELF automatically.
10721 1998-11-26  Manfred Hollstein  <manfred@s-direktnet.de>
10723         * configure (skip-this-dir): Add handling for new shell script, which
10724         might be created by a sub-directory's configure to indicate, this particular
10725         directory is "unwanted".
10726         * Makefile.in ($(CONFIGURE_TARGET_MODULES)): Likewise.
10728 Wed Nov 18 18:28:45 1998  Geoffrey Noer  <noer@cygnus.com>
10730         * ltconfig: import from libtool, after changing libtool to
10731         account for the cygwin name change.
10733 Wed Nov 18 18:09:14 1998  Geoffrey Noer  <noer@cygnus.com>
10735         * Makefile.in: CC_FOR_TARGET and CXX_FOR_TARGET should also
10736         include newlib/libc/sys/cygwin and newlib/libc/sys/cygwin32.
10738 Wed Nov 18 20:13:29 1998  Christopher Faylor <cgf@cygnus.com>
10740         * configure.in: Add libtermcap to list of cygwin dependencies.
10742 1998-11-17  Geoffrey Noer  <noer@cygnus.com>
10744         * Makefile.in: modify CC_FOR_TARGET and CXX_FOR_TARGET so that
10745         they include winsup/include when it's a cygwin target.
10747 1998-11-12  Tom Tromey  <tromey@cygnus.com>
10749         * configure.in (host_tools): Added zip.
10750         * Makefile.in (all-target-libjava): Depend on all-zip.
10751         (all-zip): New target.
10752         (ALL_MODULES): Added all-zip.
10753         (NATIVE_CHECK_MODULES): Added check-zip.
10754         (INSTALL_MODULES): Added install-zip.
10755         (CLEAN_MODULES): Added clean-zip.
10757 1998-11-12  Geoffrey Noer  <noer@cygnus.com>
10759         * Makefile.in: lose "32" from comment about cygwin.
10761 1998-11-05  Nick Clifton  <nickc@cygnus.com>
10763         * configure.in: Use -Os to build target libraries for the fr30.
10765 1998-11-04  Dave Brolley  <brolley@cygnus.com>
10767         * config.sub: Add fr30.
10769 1998-11-02  Geoffrey Noer  <noer@cygnus.com>
10771         * configure.in: drop "32" from config/mh-cygwin32.  Check
10772         cygwin* instead of cygwin32*.
10773         * config.sub: Check cygwin* instead of cygwin32*.
10775 1998-10-22  Robert Lipe  <robertl@dgii.com>
10777         * config.guess: Match any version of Unixware7.
10779 1998-10-20  Syd Polk  <spolk@cygnus.com>
10781         * Makefile.in configure.in: Add the ability to use tcl8.1 and tk8.1
10782         if desired.
10784 1998-10-18  Jeffrey A Law  (law@cygnus.com)
10786         * config.if (cxx_interface, libstdcxx_interface): Do not try to set
10787         these if the appropriate directories and files to not exist.
10789 1998-10-14  Jeffrey A Law  (law@cygnus.com)
10791         * Makefile.in (DEVO_SUPPORT): Add config.if.
10793 1998-10-13  Manfred Hollstein  <manfred@s-direktnet.de>
10795         * configure: Add pattern to replace "build_tooldir"'s
10796         definition in the generated Makefile with "tooldir"'s
10797         actual value.
10799 Tue Oct 13 09:17:06 1998  Jeffrey A Law  (law@cygnus.com)
10801         * config.sub: Bring back lost sparcv9.
10803         * Makefile.in (all-snvavigator): Remove all-flexlm dependency.
10805 Mon Oct 12 12:09:44 1998  Jeffrey A Law  (law@cygnus.com)
10807         * Makefile.in (CHILL_FOR_TARGET): Mirror recent changes to
10808         CC_FOR_TARGET and friends.
10810 Mon Oct 12 12:09:30 1998  Alexandre Oliva  <oliva@dcc.unicamp.br>
10812         * Makefile.in (build_tooldir): New variable, same as tooldir.
10813         (CC_FOR_TARGET, GCC_FOR_TARGET, CXX_FOR_TARGET): Add
10814         -B$(build_tooldir)/bin/.
10815         (BASE_FLAGS_TO_PASS): Pass build_tooldir down.
10817 Wed Sep 30 22:20:50 1998  Robert Lipe  <robertl@dgii.com>
10819         * config.sub: Add support for i[34567]86-pc-udk.
10820         * configure.in: Likewise.
10822 Wed Sep 30 19:23:48 1998  Geoffrey Noer  <noer@cygnus.com>
10824         * Makefile.in: add bzip2 package building bits for user
10825         tools module
10826         * configure.in: ditto
10828 Wed Sep 30 03:00:05 1998  Jeffrey A Law  (law@cygnus.com)
10830         * Makefile.in (TARGET_CONFIGDIRS): Add libobjc.
10831         (ALL_TARGET_MODULES): Add all-target-libobjc.
10832         (CONFIGURE_TARGET_MODULES, CHECK_TARGET_MODULES): Similarly.
10833         (INSTALL_TARGET_MODULES, CLEAN_TARGET_MODULES): Similarly.
10834         (all-target-libchill): Add dependencies.
10835         * configure.in (target_libs): Add libchill.
10837 1998-09-30  Manfred Hollstein  <manfred@s-direktnet.de>
10839         * configure.in (target_subdir): Remove duplicate line.
10841 Tue Sep 29 22:45:41 1998  Felix Lee  <flee@cygnus.com>
10843         * Makefile.in (all-automake): fix dependencies.
10845 Mon Sep 28 04:04:27 1998  Jeffrey A Law  (law@cygnus.com)
10847         * configure.in: Minor cleanups for building in the $(target_alias)
10848         subdir.
10850 1998-09-22  Jim Wilson  <wilson@cygnus.com>
10852         * Makefile.in (bootstrap): Set r and s before make all.  Use
10853         BASE_FLAGS_TO_PASS in make all.
10854         (cross): Likewise.
10856 1998-09-20  Mark Mitchell  <mark@markmitchell.com>
10858         * Makefile.in (bootstrap): Pass TARGET_FLAGS_TO_PASS to `make all'.
10860 Sun Sep 20 00:13:02 1998  Richard Henderson  <rth@cygnus.com>
10862         * config.sub: Fix typo in last change.
10864 1998-09-19  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
10866         * config.sub: Add support for C4x target.
10867         * configure.in: Likewise.
10869 1998-09-13  David S. Miller  <davem@pierdol.cobaltmicro.com>
10871         * config.sub: Recognize sparcv9 just like sparc64.
10873 Wed Sep  9 15:44:52 1998  Robert Lipe  <robertl@dgii.com>
10875         * config.guess: Match "Pent II" or "PentII" for OpenServer.
10877 Tue Sep  8 01:18:39 1998  Jeffrey A Law  (law@cygnus.com)
10879         * config.guess: Correctly identify Pentium II sco boxes.
10881         * config.guess: Fix "tr" code.  From Weiwen Liu.
10883 Sat Sep  5 13:56:52 1998  John Hughes  <john@Calva.COM>
10885         * configure.in: Do not assume x86-svr4 or x86-unixware can handle
10886         stabs.
10888 Sat Sep  5 02:12:02 1998  Jeffrey A Law  (law@cygnus.com)
10890         * Makefile.in (TARGET_CONFIGDIRS): Add libchill.
10891         (ALL_TARGET_MODULES): Add all-target-libchill.
10892         (CONFIGURE_TARGET_MODULES, CHECK_TARGET_MODULES): Similarly.
10893         (INSTALL_TARGET_MODULES, CLEAN_TARGET_MODULES): Similarly.
10894         (all-target-libchill): Add dependencies.
10895         * configure.in (target_libs): Add libchill.
10897 Sun Aug 30 22:27:02 1998  Lutz Wohlrab <lutz.wohlrab@informatik.tu-chemnitz.de>
10899         * config.guess: Avoid assumptions about "tr" behaves when
10900         LANG is set to something other than English.
10902 Sun Aug 30 22:14:44 1998  H.J. Lu  (hjl@gnu.org)
10904         * configure (gxx_include_dir): Changed to
10905         '${prefix}/include/g++'-${libstdcxx_interface}.
10907         * config.if: New to determine the interfaces.
10909 Sun Aug 30 21:15:19 1998  Mark Klein (mklein@dis.com)
10911         * config.guess: Detect and handle MPE/IX.
10912         * config.sub: Deal with MPE/IX.
10914 Sat Aug 29 14:32:55 1998  David Edelsohn  <edelsohn@mhpcc.edu>
10916         * configure.in: Use mh-aix43.
10918 1998-07-29  Manfred Hollstein  <manfred@s-direktnet.de>
10920         * configure: Fix --without/--disable cases for gxx-include-dir.
10922 Fri Aug 28 12:28:26 1998  Per Bothner  <bothner@cygnus.com>
10924         * mdata-sh:  Imported.  Needed for automake support.
10926 Thu Aug 13 12:49:29 1998  H.J. Lu  <hjl@gnu.org>
10928         * Makefile.in (taz): Try "chmod -R og=u ." before
10929         "chmod og=u `find . -print`".
10931 Fri Jul 31 09:38:33 1998  Catherine Moore  <clm@cygnus.com>
10933         * configure.in: Add arm-elf and thumb-elf support.
10935 Mon Jul 27 16:23:58 1998  Doug Evans  <devans@canuck.cygnus.com>
10937         * Makefile.in: Undo previous patch.
10939 Fri Jul 24 19:55:24 1998  Doug Evans  <devans@canuck.cygnus.com>
10941         * Makefile.in (INSTALL_TARGET): Move EXTRA_TARGET_HOST_INSTALL_MODULES
10942         to here ...
10943         (install-no-fixedincludes): and here
10944         (INSTALL_MODULES): ... from here.
10946 Fri Jul 24 17:01:42 1998  Ian Lance Taylor  <ian@cygnus.com>
10948         * config.sub: Merge with FSF.
10950         * config.guess: Merge with FSF.
10952 Fri Jul 24 08:43:36 1998  Doug Evans  <devans@canuck.cygnus.com>
10954         * configure (extraconfigdirs): New variable.
10955         (SUBDIRS): Add extraconfigdirs and recurse on them too.
10956         * Makefile.in (all): Move higher in file.
10957         (EXTRA_TARGET_HOST_ALL_MODULES): New variable.
10958         (EXTRA_TARGET_HOST_{INSTALL,CHECK}_MODULES): New variables.
10959         (ALL_MODULES): Add EXTRA_TARGET_HOST_ALL_MODULES.
10960         (CROSS_CHECK_MODULES): Add EXTRA_TARGET_HOST_CHECK_MODULES.
10961         (INSTALL_MODULES): Add EXTRA_TARGET_HOST_INSTALL_MODULES.
10963 1998-07-23  Brendan Kehoe  <brendan@cygnus.com>
10965         * Makefile.in (all-target-libjava): Depend on all-gcc and
10966         all-target-newlib.
10967         (configure-target-libjava): Depend on $(ALL_GCC).
10969 Sat Jul 18 14:32:43 CDT 1998  Robert Lipe  <robertl@dgii.com>
10971         * config.guess: (*-pc-sco3.2v5) Add detection for Pentium II.
10972         (*-pc-unixware7) Add detection for Pentium II, Pentium Pro.
10974 Fri Jul 17 13:30:18 1998  Ian Lance Taylor  <ian@cygnus.com>
10976         * ylwrap: Change absolute path checks to check for DOS style path
10977         names.
10979         * ylwrap: Don't use a full path name if the source file is in the
10980         same directory.  From hjl@lucon.org (H.J. Lu).
10982         * config-ml.in: Default to being verbose, to match Feb 18 change to
10983         configure.
10985 Thu Jul 16 12:29:51 1998  Ian Lance Taylor  <ian@cygnus.com>
10987         Brought over from egcs:
10989         Sat Jun 27 22:46:32 1998  Jeffrey A Law  (law@cygnus.com)
10991         * configure.in (target_subdir): Set to ${target_alias} instead
10992         of "libraries".
10994         Mon Sep  1 16:45:44 1997  Jim Wilson  <wilson@cygnus.com>
10996         * configure.in (target_subdir): Set to libraries if enable_multilib.
10998 Wed Jul 15 01:00:54 1998  Ian Lance Taylor  <ian@cygnus.com>
11000         * Makefile.in ($(CONFIGURE_TARGET_MODULES)): If there are any
11001         multilibs, force reconfiguration the first time we create
11002         multilib.out in a subdirectory, in case TARGET_SUBDIR is `.'.
11004 Tue Jul 14 23:41:03 1998  Ian Lance Taylor  <ian@cygnus.com>
11006         * configure.in: Strip any --no option from CONFIG_ARGUMENTS, to
11007         avoid confusion with --no-recursion.
11009 Tue Jul 14 15:37:41 1998  Geoffrey Noer  <noer@cygnus.com>
11011         * configure.in: Win32 hosts shouldn't use install -x
11012         * install-sh: remove -x option, and special .exe-handling
11013         hack.
11015 Tue Jul 14 15:28:41 1998  Richard Henderson  <rth@cygnus.com>
11017         * config.guess: Recognize i586-pc-beos.
11018         * configure.in: Don't build some bits for beos.
11020 Tue Jul 14 13:22:18 1998  Ian Lance Taylor  <ian@cygnus.com>
11022         * configure: If CC is set but CFLAGS is not, and CC is gcc, make
11023         CFLAGS default to -O2.
11025         * ltmain.sh: Add some hacks to make SunOS --enable-shared work
11026         when using GNU ld.
11028 Fri Jul 10 13:18:23 1998  Ian Lance Taylor  <ian@cygnus.com>
11030         * ltmain.sh: Correct install when using a different shell.
11032 Tue Jul  7 15:24:38 1998  Ian Lance Taylor  <ian@cygnus.com>
11034         * ltconfig, ltmain.sh: Update to libtool 1.2b.
11036 Thu Jul  2 13:57:36 1998  Klaus Kaempf  <kkaempf@rmi.de>
11038         * makefile.vms: Update to build binutils/makefile.vms.  Add install
11039         target.
11041 Wed Jul  1 16:45:21 1998  Ian Lance Taylor  <ian@cygnus.com>
11043         * ltconfig: Update to correct AIX handling.
11045 Sat Jun 27 22:46:32 1998  Jeffrey A Law  (law@cygnus.com)
11047         * Makefile.in (BASE_FLAGS_TO_PASS): Add TARGET_SUBDIR.
11049         * configure.in (target_subdir): Set to ${target_alias} instead
11050         of "libraries".
11052 1998-06-26  Manfred Hollstein  <manfred@s-direktnet.de>
11054         * Makefile.in (BASE_FLAGS_TO_PASS): Add gcc_version_trigger.
11055         (Makefile): Depend on $(gcc_version_trigger).
11057         * configure (gcc_version): Change default initializer to empty
11058         string.
11059         (gcc_version_trigger): New variable; pass this variable down
11060         to subdir configures to enable them checking gcc's version
11061         themselves. Emit make macros for both gcc_version vars.
11062         (topsrcdir): Initialize reliably.
11063         (recursion line): Remove --with-gcc-version=${gcc_version}.
11065 1998-06-24  Manfred Hollstein  <manfred@s-direktnet.de>
11067         * configure (enable_version_specific_runtime_libs): Implement new flag
11068         --enable-version-specific-runtime-libs which installs C++ runtime stuff
11069         in $(libsubdir); emit definition in each generated Makefile.
11070         (gxx_include_dir): Initialize depending on
11071         $enable_version_specific_runtime_libs.
11073 1998-06-24  Manfred Hollstein  <manfred@s-direktnet.de>
11075         * configure (gcc_version): Initialize properly depending on
11076         how and where configure is started.
11077         (recursion line): Pass a --with-gcc-version=${gcc_version}
11078         to configures in subdirs.
11080 Wed Jun 24 16:01:59 1998  John Metzler  <jmetzler@cygnus.com>
11082         * configure.in (noconfigdirs): Add configure pattern for mips tx39
11083         cygmon
11085 Tue Jun 23 22:42:32 1998  Mark Alexander  <marka@cygnus.com>
11087         * configure.in: Add cygmon and libstub support for mn10200.
11089 1998-06-19  Manfred Hollstein  <manfred@s-direktnet.de>
11091         * configure (gcc_version): Add new variable describing the
11092         particular gcc version we're building.
11093         * Makefile.in (libsubdir): Add new macro for the directory
11094         in which the compiler finds executables, libraries, etc.
11095         (BASE_FLAGS_TO_PASS): Pass down gcc_version, target_alias
11096         and libsubdir.
11098 Fri Jun 19 02:36:59 1998  Alexandre Oliva <oliva@dcc.unicamp.br>
11100         * Makefile.in (local-clean): Remove *.log.
11101         (warning.log): Built with warn_summary from build.log.
11102         (mail-report.log): Run test_summary.
11103         (mail-report-with-warnings.log): Run test_summary including
11104         warning.log in the report.
11106 Thu Jun 18 11:26:03 1998  Robert Lipe  <robertl@dgii.com>
11108         * config.guess: Detection of Pentium II for *-sco-3.2v5*.
11110 Mon Jun 15 14:53:54 1998  Andrew Cagney  <cagney@b1.cygnus.com>
11112         * Makefile.in (grep): Grep no longer depends on libiberty.
11114 Fri Jun 12 14:03:34 1998  Syd Polk  <spolk@cygnus.com>
11116         * Makefile.in: all-snavigator needs all-libgui.
11118 Thu Jun 11 19:43:47 1998  Mark Alexander  <marka@cygnus.com>
11120         * configure.in: Add cygmon and libstub support for mn10300.
11122 Wed Jun 10 11:19:47 1998  Ian Lance Taylor  <ian@cygnus.com>
11124         * missing: Update to version from automake 1.3.
11126         * ltmain.sh: On installation, don't get confused if the same name
11127         appears more than once in the list of library names.
11129 Wed Jun  3 14:51:42 1998  Ian Lance Taylor  <ian@cygnus.com>
11131         * config.sub: Accept m68060 and m5200 as CPU names.
11133 Mon Jun  1 17:25:16 1998  Ian Lance Taylor  <ian@cygnus.com>
11135         * configure: Use && rather than using -a in test, because odd
11136         strings can confuse test.
11137         * configure.in: Likewise.
11139 Thu May 28 19:31:13 1998  Ian Lance Taylor  <ian@cygnus.com>
11141         * ltconfig, ltmain.sh: Bring in Visual C++ support.
11143 Sat May 23 23:44:13 1998  Alexandre Oliva <oliva@dcc.unicamp.br>
11145         * Makefile.in (boostrap2-lean, bootstrap3-lean,
11146         bootstrap4-lean): New targets.
11148 Mon May 11 23:55:56 1998  Jeffrey A Law  (law@cygnus.com)
11150         * mpw-* Delete.  Not used.
11152 Mon May 11 23:11:34 1998  Jeffrey A Law  (law@cygnus.com)
11154         * COPYING.LIB: Update FSF address.
11156 Fri May  8 01:30:20 1998  Ian Lance Taylor  <ian@cygnus.com>
11158         * ltconfig, ltmain.sh: Update to libtool 1.2a.
11160         * Makefile.in (GASB_SUPPORT_DIRS): Remove intl; already included via
11161         GAS_SUPPORT_DIRS.
11163 Thu May  7 17:27:35 1998  Ian Lance Taylor  <ian@cygnus.com>
11165         * ltconfig, ltmain.sh: Avoid producing a version number if
11166         -version-info was not used.
11168 Tue May  5 18:02:24 1998  Ian Lance Taylor  <ian@cygnus.com>
11170         * configure.in: Add --with-newlib to CONFIG_ARGUMENTS if we are
11171         building with newlib.
11173 1998-04-30  Paul Eggert  <eggert@twinsun.com>
11175         * Makefile.in (EXTRA_GCC_FLAGS): Remove backslash at end;
11176         Solaris `make' causes it to continue to next definition.
11178 Tue Apr 28 16:24:24 1998  Jason Molenda  (crash@bugshack.cygnus.com)
11180         * Makefile.in (install-gdbtk): Call this 'install-gdb' so that
11181         the right GUI libraries and files are installed along with GDB.
11183 Tue Apr 28 18:11:24 1998  Ian Lance Taylor  <ian@cygnus.com>
11185         * configure.in: Change alpha to alpha* in several places.
11187 Tue Apr 28 07:42:00 1998  Mark Alexander  <marka@cygnus.com>
11189         * config.sub: Recognize sparc86x.
11191 Tue Apr 28 07:35:02 1998  Michael Meissner  <meissner@cygnus.com>
11193         * configure.in (--enable-target-optspace): Remove debug echo.
11195 Thu Apr 23 21:31:16 1998  Jim Wilson  <wilson@cygnus.com>
11197         * configure: Set CXXFLAGS from CXXFLAGS, not CFLAGS.
11199 Thu Apr 23 12:26:38 1998  Ian Lance Taylor  <ian@cygnus.com>
11201         * ltconfig: Update cygwin32 support.
11203         * Makefile.in (GAS_SUPPORT_DIRS): Add intl.
11204         (BINUTILS_SUPPORT_DIRS, GASB_SUPPORT_DIRS): Likewise.
11205         (GDB_SUPPORT_DIRS): Likewise.
11207 Wed Apr 22 12:30:10 1998  Michael Meissner  <meissner@cygnus.com>
11209         * configure.in (target_makefile_frag): If --enable-target-optspace,
11210         use -Os to compile target libraries rather than -O2.  Default to
11211         using -Os for d10v and m32r if --{enable,disable}-target-optspace is
11212         not used.
11213         * configure.in (target_cflags): Ditto for d30v.
11215 Tue Apr 21 23:06:54 1998  Tom Tromey  <tromey@cygnus.com>
11217         * Makefile.in (all-bfd): Depend on all-intl.
11218         (all-binutils): Likewise.
11219         (all-gas): Likewise.
11220         (all-gprof): Likewise.
11221         (all-ld): Likewise.
11223 1998-04-19  Brendan Kehoe  <brendan@cygnus.com>
11225         * configure.in (host_tools): Fix typo, lbtool -> libtool.
11227 Fri Apr 17 16:20:42 1998  Ian Lance Taylor  <ian@cygnus.com>
11229         * Makefile.in (all-bfd): Depend upon all-libiberty.
11231         * ltconfig, ltmain.sh: Bring in newer cygwin32 support.
11233 Fri Apr 17 12:22:22 1998  Bob Manson  <manson@charmed.cygnus.com>
11235         * Makefile.in: Add libstub.
11237         * configure.in: Ditto. Build libstub for targets that have cygmon
11238         support.
11240 Tue Apr 14 18:01:55 1998  Ian Lance Taylor  <ian@cygnus.com>
11242         * configure.in: Don't set PICFLAG on ix86-cygwin32.
11244 Tue Apr 14 12:24:45 1998  J. Kean Johnston  <jkj@sco.com>
11246         * configure.in: Recognise i[3456]96-*-sysv5* as a valid host, and
11247         use mh-sysv5 if specified.  Support gprof on SCO Open Server.
11249 Tue Apr 14 11:33:51 1998  Krister Walfridsson <cato@df.lth.se>
11251         * configure: Define DEFAULT_M4 by searching PATH.
11252         * Makfile.in: Use DEFAULT_M4.
11254 Mon Apr 13 15:37:24 1998  Ian Lance Taylor  <ian@cygnus.com>
11256         * ltconfig: Add cygwin32 support.
11258         * Makefile.in, configure.in: Add libtool as a native only directory
11259         to configure and build.
11261 Sun Apr 12 20:58:46 1998  Jeffrey A Law  (law@cygnus.com)
11263         * Makefile.in (INSTALL_MODULES): Remove texinfo.
11265 Wed Apr  8 13:18:56 1998  Philippe De Muyter  <phdm@macqel.be>
11267         * Makefile.in (EXTRA_GCC_FLAGS): XFOO lines shortened.
11269 Thu Apr  2 14:48:44 1998  Geoffrey Noer  <noer@cygnus.com>
11271         * Makefile.in: add ash make rules
11272         * configure.in: add ash to native_only and host_tools lists
11274 Thu Mar 26 12:53:20 1998  Tom Tromey  <tromey@cygnus.com>
11276         * Makefile.in (all-gettext, all-intl): New targets.
11277         (ALL_MODULES): Added all-gettext, all-intl.
11278         (CROSS_CHECK_MODULES): Added check-gettext, check-intl.
11279         (INSTALL_MODULES): Added install-gettext, install-intl.
11280         (CLEAN_MODULES): Added clean-gettext, clean-intl.
11282         * configure.in (host_tools): Added gettext.
11283         (native_only): Likewise.
11284         (noconfigdirs) [various cases]: Likewise.
11285         (host_libs): Added intl.
11287 Thu Mar 26 15:00:11 1998  Keith Seitz  <keiths@onions.cygnus.com>
11289         * configure: Do not disable building gdbtk for cygwin32 hosts.
11291 Wed Mar 25 10:04:18 1998  Nick Clifton  <nickc@cygnus.com>
11293         * configure.in: Add thumb-coff target.
11294         * config.sub: Add thumb-coff target.
11296 Wed Mar 25 11:49:12 1998  Jason Molenda  (crash@bugshack.cygnus.com)
11298         * Makefile.in: Revert yesterday's change.
11299         (all-target-winsup):  all-target-librx stays out of here.
11301 Tue Mar 24 16:58:29 1998  Jason Molenda  (crash@bugshack.cygnus.com)
11303         * Makefile.in (TARGET_CONFIGDIRS, ALL_TARGET_MODULES,
11304         CONFIGURE_TARGET_MODULES, CHECK_TARGET_MODULES,
11305         INSTALL_TARGET_MODULES, CLEAN_TARGET_MODULES, all-target-winsup):
11306         Remove references to librx and libg++.
11308 Tue Mar 24 18:28:12 1998  Eric Mumpower  <nocturne@cygnus.com>
11310         * Makefile.in (BASE_FLAGS_TO_PASS): Pass $(lispdir) down to
11311         recursive makes
11313 Tue Mar 24 11:37:45 1998  Ian Lance Taylor  <ian@cygnus.com>
11315         * Makefile.in (CC_FOR_TARGET): Use $(TARGET_SUBDIR) when passing -B
11316         for newlib directory.
11317         (CXX_FOR_TARGET): Likewise.
11319 Mon Mar 23 11:30:21 1998  Jeffrey A Law  (law@cygnus.com)
11321         * ltconfig: Update after libtool/ltconfig.in change for
11322         hpux11.
11324 Fri Mar 20 18:51:43 1998  Ian Lance Taylor  <ian@cygnus.com>
11326         * ltconfig, ltmain.sh: Update to libtool 1.2.
11328 Fri Mar 20 09:32:14 1998  Manfred Hollstein  <manfred@s-direktnet.de>
11330         * Makefile.in (install-gcc): Don't specify LANGUAGES here.
11331         (install-gcc-cross): Instead, override LANGUAGES here.
11333 1998-03-18  Dave Love  <d.love@dl.ac.uk>
11335         * Makefile.in ($(CONFIGURE_TARGET_MODULES)): Set CONFIG_SITE to a
11336         non-existent file since /dev/null loses with bash 2.0/autoconf 2.12.
11338 Wed Mar 18 09:24:59 1998  Nick Clifton  <nickc@cygnus.com>
11340         * configure.in: Add Thumb-pe target.
11342 Tue Mar 17 16:59:00 1998  Syd Polk <spolk@cygnus.com>
11344         * Makefile.in - changed sn targets to snavigator
11345         * configure.in - changed sn targets to snavigator
11347 Tue Mar 17 10:33:28 1998  Manfred Hollstein  <manfred@s-direktnet.de>
11349         * config-ml.in: After building symlink tree call make distclean
11350         if a Makefile got linked into ${ml_dir}/${ml_libdir}; this happens
11351         to be the case for libiberty.
11353 Tue Mar 17 10:22:37 1998  H.J. Lu  (hjl@gnu.ai.mit.edu)
11355         * configure: When making link, also check the current
11356         directory. The configure scripts may create one.
11358 Fri Mar  6 01:02:03 1998  Richard Henderson  <rth@cygnus.com>
11360         * config.sub: Accept alphapca56 and alphaev6 properly.
11362 Fri Mar  6 00:14:55 1998  Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
11364         * configure.in: Revert 3 Jan change for powerpc-linux-gnulibc1.
11366 Mon Feb 23 15:09:18 1998  Bruno Haible <bruno@linuix.mathematik.uni-karlsruhe.de
11368         * config.sub (sco5): Fix typo.
11370 Mon Feb 23 14:46:06 1998  Ian Lance Taylor  <ian@cygnus.com>
11372         * Makefile.in (INSTALL_MODULES): Move install-tcl before
11373         install-itcl.
11374         (install-itcl): Remove dependency on install-tcl.
11376 Mon Feb 23 09:53:28 1998  Mark Alexander  <marka@cygnus.com>
11378         * configure.in: Remove libgloss from noconfigdirs for MN10300.
11380 Thu Feb 19 13:40:41 1998  Ian Lance Taylor  <ian@cygnus.com>
11382         * configure.in: Don't build libgui for a cygwin32 target when not on
11383         a cygwin32 host.
11385 Wed Feb 18 12:29:00 1998  Jason Molenda  (crash@bugshack.cygnus.com)
11387         * configure (redirect): Set to null, so default behavior of
11388         configure is now --verbose.
11390 1998-02-16  Dave Love  <d.love@dl.ac.uk>
11392         * Makefile.in ($(CONFIGURE_TARGET_MODULES)): Run configure with
11393         CONFIG_SITE=/dev/null to forestall lossage with site configuration.
11395 Mon Feb 16 12:23:53 1998  Manfred Hollstein  <Manfred.Hollstein@ks.sel.alcatel.de>
11397         * Makefile.in (BASE_FLAGS_TO_PASS, EXTRA_TARGET_FLAGS): Really add
11398         this change to sync Makefile.in with its ChangeLog entries.
11400 Thu Feb 12 15:03:08 1998  H.J. Lu  <hjl@gnu.org>
11402         * ltmain.sh (mkdir): Check that the directory doesn't exist
11403         before we exit with error, so that we don't get races during
11404         parallel builds.
11406 Sat Feb  7 15:19:18 1998  Ian Lance Taylor  <ian@cygnus.com>
11408         * ltconfig, ltmain.sh: Update from libtool 1.0i.
11410 Fri Feb  6 01:33:52 1998  Manfred Hollstein  <manfred@s-direktnet.de>
11412         * Makefile.in (BASE_FLAGS_TO_PASS): Don't pass PICFLAG and
11413         PICFLAG_FOR_TARGET.
11414         (EXTRA_TARGET_FLAGS): Don't pass PICFLAG_FOR_TARGET.
11416         * configure: Emit a definition for the new macro enable_shared
11417         into each Makefile.
11419 Thu Feb  5 17:01:12 1998  Jason Molenda  (crash@bugshack.cygnus.com)
11421         * configure.in (host_tools, native_only): Add libtool.
11423 Wed Feb  4 16:53:58 1998  Geoffrey Noer  <noer@cygnus.com>
11425         * configure.in: add target-gperf to noconfigdirs for Cygwin32.
11426         Fix typo in ming config comment.
11428 Wed Feb  4 18:56:13 1998  Ian Lance Taylor  <ian@cygnus.com>
11430         * ltconfig, ltmain.sh: Update from libtool 1.0h.
11432 Mon Feb  2 19:38:19 1998  Ian Lance Taylor  <ian@cygnus.com>
11434         * config.sub: Add tic30 cases, and map c30 to tic30.
11436 Sun Feb  1 02:40:41 1998  Richard Henderson  <rth@cygnus.com>
11438         * Makefile.in (TARGET_CONFIGDIRS): Add libf2c.
11439         (ALL_TARGET_MODULES, CONFIGURE_TARGET_MODULES): Similarly
11440         (CHECK_TARGET_MODULES, INSTALL_TARGET_MODULES): Similarly
11441         (CLEAN_TARGET_MODULES): Similarly
11442         (all-target-libf2c): Add dependences.
11443         * configure.in (target_libs): Add libf2c.
11445 Fri Jan 30 17:18:32 1998  Geoffrey Noer  <noer@cygnus.com>
11447         * configure.in: Remove expect from noconfigdirs when target
11448         is cygwin32.  OK to build expect and dejagnu with Canadian
11449         Cross.
11451 Wed Jan 28 12:58:49 1998  Ian Lance Taylor  <ian@cygnus.com>
11453         * configure.in: Do build expect, dejagnu, and cvssrc for a cygwin32
11454         host.
11456         * config.guess: Use ${UNAME_MACHINE} rather than i386 for cygwin32
11457         and mingw32.
11459 Wed Jan 28 10:26:37 1998  Manfred Hollstein  <manfred@s-direktnet.de>
11461         * Makefile.in (BASE_FLAGS_TO_PASS): Remove passing $(local_prefix)
11462         here as it is not defined in the toplevel Makefile.
11464 Tue Jan 27 23:25:06 1998  Manfred Hollstein  <manfred@s-direktnet.de>
11466         * configure (package_makefile_rules_frag): New variable, which names
11467         a file with generic rules, ...
11468         Change comment to mention we now have FIVE parts.
11469         * configure: Undo last change.
11471 Tue Jan 27 23:15:55 1998  Lassi A. Tuura  <lat@iki.fi>
11473         * config.guess: More accurate determination of HP processor types.
11474         * config.sub: More accurate determination of HP processor types.
11476 Sat Jan 24 01:59:45 1998  Manfred Hollstein  <manfred@s-direktnet.de>
11478         * configure (package_makefile_frag): Move inserting the
11479         ${package_makefile_frag} to where it should be according
11480         to the comment.
11482 Fri Jan 23 00:29:28 1998  Philip Blundell  <pb@nexus.co.uk>
11484         * config.guess: Add support for Linux/ARM.
11486 Thu Jan 22 15:14:01 1998  Fred Fish  <fnf@cygnus.com>
11488         * .cvsignore: Remove *-info and *-install since they match
11489         release-info and mpw-install, which we don't want to just ignore.
11491 Thu Jan 22 01:38:33 1998  Richard Henderson  <rth@cygnus.com>
11493         * configure.in: Revert 3 Jan change for alpha-linux-gnulibc1.
11495 Sat Jan 17 21:28:08 1998  Pieter Nagel <pnagel@epiuse.co.za>
11497         * Makefile.in (FLAGS_TO_PASS): Pass down gcc_include_dir and
11498         local_prefix to sub-make invocations.
11500 Sat Jan 17 21:04:59 1998 H.J. Lu  (hjl@gnu.org)
11502         * configure.in: Check makefile fragments in the source
11503         directory.
11505 Fri Jan 16 00:41:37 1998  Alexandre Oliva <oliva@dcc.unicamp.br>
11507         * configure.in: Check whether host and target makefile
11508         fragments exist before adding them to *_makefile_frag.
11510 Wed Jan 14 23:39:10 1998  Bob Manson  <manson@charmed.cygnus.com>
11512         * configure.in (target_configdirs): Add cygmon for sparc64-elf.
11514 Wed Jan 14 12:48:07 1998  Keith Seitz  <keiths@pizza.cygnus.com>
11516         * configure.in: Make sure we only replace RPATH_ENVVAR on
11517         lines which begin with RPATH_ENVVAR, i.e. add "^" to the
11518         regexp to sed.
11520         * Makefile.in (BASE_FLAGS_TO_PASS): Pass RRPATH_ENVVAR down
11521         to sub-makes.
11523 1998-01-13  Lee Iverson   (leei@ai.sri.com)
11525         * config-ml.in (multi-do): LDFLAGS must include multilib
11526         designator.
11528 Tue Jan 13 01:13:24 1998   Robert Lipe (robertl@dgii.com)
11530         * config.guess: Recognize i[3456]-i586-UnixWare7-sysv5.
11532 Sun Jan  4 01:06:55 1998  Mumit Khan  <khan@xraylith.wisc.edu>
11534         * config.sub: Add mingw32 support.
11535         * configure.in: Likewise.
11537 Sat Jan  3 12:11:05 1998 Franz Sirl <franz.sirl-kernel@lauterbach.com>
11539         * configure.in: Finalize support for {alpha|powerpc}*-*-linux-gnulibc1
11541 Sun Dec 28 11:28:58 1997  Jeffrey A Law  (law@cygnus.com)
11543         * Makefile.in (INSTALL_TARGET): Do install-gcc first.
11544         * configure (gxx_include_dir): Provide a definition for subdirs
11545         which do not use autoconf.
11547 Wed Dec 24 22:46:55 1997  Jeffrey A Law  (law@cygnus.com)
11549         * config.guess: Sync with egcs.  Picks up new alpha support,
11550         BeOS & some additional linux support.
11552 Tue Dec 23 12:44:24 1997  Jeffrey A Law  (law@cygnus.com)
11554         * config.guess: HP 9000/803 is a PA1.1 machine.
11556 Mon Dec 22 02:39:24 1997  Richard Henderson  <rth@cygnus.com>
11558         * configure.in: It's alpha*-...
11560 Sun Dec 21 16:53:12 1997  H.J. Lu  (hjl@gnu.ai.mit.edu)
11562         * configure.in (host_makefile_frag, target_makefile_frag):
11563         Handle multiple config files.
11564         (alpha-*-linux*): Treat alpha-*-linux* as alpha-*-linux* and
11565         alpha-*-*.
11567 Thu Dec 18 13:13:03 1997  Doug Evans  <devans@canuck.cygnus.com>
11569         * mkdep: New file.
11571 Wed Dec 17 09:53:02 1997  Michael Meissner  <meissner@cygnus.com>
11573         * configure.in (d30v-*-*): Allow configuring of libide, vmake, etc.
11575 Tue Dec 16 17:36:05 1997  Ian Lance Taylor  <ian@cygnus.com>
11577         * Makefile.in: Add libgui directory.
11578         (GDB_TK): Add all-libgui.
11579         * configure.in: Add libgui directory.
11580         * configure: Add all-libgui to GDB_TK.
11582 Mon Dec 15 16:12:28 1997  Nick Clifton  <nickc@cygnus.com>
11584         * config-ml.in (multidirs): Add m32r to multilib list.
11586 Fri Dec 12 10:43:31 1997  Brendan Kehoe  <brendan@canuck.cygnus.com>
11588         * Makefile.in (all-target-gperf): Change dependency to
11589         all-target-libstdc++.
11591 Thu Dec 11 23:30:51 1997  Fred Fish  <fnf@ninemoons.com>
11593         * config.guess: Add BeOS support.
11595 Wed Dec 10 15:10:38 1997  Ian Lance Taylor  <ian@cygnus.com>
11597         Source directory cvs renamed to cvssrc:
11598         * configure.in (host_tools): Change cvs to cvssrc.
11599         (native_only): Likewise.
11600         (noconfigdirs) [various cases]: Likewise.
11601         * Makefile.in (ALL_MODULES): Change all-cvs to all-cvssrc.
11602         (CROSS_CHECK_MODULES): Change check-cvs to check-cvssrc.
11603         (INSTALL_MODULES): Change install-cvs to install-cvssrc.
11604         (CLEAN_MODULES): Change clean-cvs to clean-cvssrc.
11605         (all-cvssrc): Rename target from all-cvs.
11607 Wed Dec  3 07:55:59 1997  Jeffrey A Law  (law@cygnus.com)
11609         * configure (gxx_include_dir): Fix thinko.
11611 Tue Dec  2 10:55:34 1997  Jeffrey A Law  (law@cygnus.com)
11613         * Makefile.in (INSTALL_TARGET_CROSS): Define.
11614         (install-cross, install-gcc-cross): New targets.
11616 Tue Dec  2 10:08:31 1997  Nick Clifton  <nickc@cygnus.com>
11618         * configure.in (noconfigdirs): Add support for Thumb target.
11620         * config.sub (maybe_os): Add support for Thumb target.
11622 Sun Nov 30 16:12:27 1997  Bob Manson  <manson@charmed.cygnus.com>
11624         * Makefile.in: Add rules for cygmon.
11626         * configure.in: Build cygmon for sparc-elf and sparclite-aout.
11628 Thu Nov 27 01:31:30 1997  Jeffrey A Law  (law@cygnus.com)
11630         * Makefile.in (INSTALL_TARGET): Do install-gcc first.
11631         * configure (gxx_include_dir): Provide a definition for subdirs
11632         which do not use autoconf.
11634 Wed Nov 26 11:53:33 1997  Keith Seitz  <keiths@onions.cygnus.com>
11636         * Makefile.in, configure, configure.in, ChangeLog: merge with foundry's
11637         11/18/97 build
11639 Wed Nov 26 16:08:50 1997  Jeffrey A Law  (law@cygnus.com)
11641         * From Franz Sirl.
11642         * config.guess (powerpc*-*-linux): Handle glibc2 beta release
11643         found on RedHat Linux systems.
11645 Fri Nov 21 09:51:01 1997  Jeffrey A Law  (law@cygnus.com)
11647         * config.guess (alpha stuff): Merge with FSF to avoid incorrect
11648         guesses.
11650 Thu Nov 13 11:38:37 1997  Jeffrey A Law  (law@cygnus.com)
11652         * configure.in (i[3456]86-ncr-sysv4.3*): Tweak.
11654 Mon Nov 10 15:23:21 1997  H.J. Lu  <hjl@gnu.ai.mit.edu>
11656         * ltmain.sh: If mkdir fails, check whether the directory was created
11657         anyhow by some other process.
11659 Mon Nov 10 14:38:03 1997  Michael Meissner  <meissner@cygnus.com>
11661         * configure.in (d30v-*-*): Configure all directories.
11663 Sun Nov  9 17:36:20 1997  Michael Meissner  <meissner@cygnus.com>
11665         * configure.in (d30v-*-*): Configure newlib, libiberty directories
11666         for the D30V.
11668 Sat Nov  8 14:42:59 1997  Michael Meissner  <meissner@cygnus.com>
11670         * configure.in (d30v-*-*): Configure target-libgloss on the D30V.
11672 Fri Nov  7 10:34:09 1997  Rob Savoye  <rob@darkstar.cygnus.com>
11674         * include/libiberty.h: Add extern "C" { so it can be used with C++
11675         progrms.
11676         * include/remote-sim.h:  Add extern "C" { so it can be used with C++
11677         programs.
11679 Thu Oct 30 11:09:29 1997  Michael Meissner  <meissner@cygnus.com>
11681         * configure.in (d30v-*-*): Configure GCC now.
11683 Mon Oct 27 13:17:24 1997  Stan Shebs  <shebs@andros.cygnus.com>
11685         * configure.in: Remove a "second pass" of tweaking noconfigdirs,
11686         is no longer needed.
11688 Mon Oct 27 12:03:53 1997  Jason Merrill  <jason@yorick.cygnus.com>
11690         * Makefile.in: check-target-libio depends on all-target-libstdc++.
11692 Sun Oct 26 11:48:27 1997  Manfred Hollstein  (manfred@s-direktnet.de)
11694         * Makefile.in (bootstrap-lean): Combined with `normal' bootstrap
11695         targets using "$@" to provide support for similar but not identical
11696         targets without having to duplicate code.
11698 Mon Oct 20 15:28:49 1997  Klaus K"ampf  <kkaempf@progis.de>
11700         * makefile.vms: Fix to work with DEC C.
11702 Tue Oct  7 23:58:57 1997  Gavin Koch  <gavin@cygnus.com>
11704         * config.sub: Add mips-tx39-elf to marketing names.
11706 Tue Oct  7 14:24:41 1997  Ian Lance Taylor  <ian@cygnus.com>
11708         * ltmain.sh: Handle symlinks in generated script.
11710 Wed Oct  1 13:11:27 1997  Ian Lance Taylor  <ian@cygnus.com>
11712         * configure: Handle autoconf style directory options: --bindir,
11713         --datadir, --includedir, --infodir, --libdir, --libexecdir,
11714         --mandir, --oldincludedir, --sbindir, --sharedstatedir,
11715         --sysconfdir.
11716         * Makefile.in (sbindir, libexecdir, sysconfdir): New variables.
11717         (sharedstatedir, localstatedir, oldincludedir): New variables.
11718         (BASE_FLAGS_TO_PASS): Pass down bindir, datadir, includedir,
11719         infodir, libdir, libexecdir, localstatedir, mandir, oldincludedir,
11720         sbindir, sharedstatedir, and sysconfdir.
11722 Mon Sep 29 00:38:08 1997 Aaron Jackson <jackson@negril.msrce.howard.edu>
11724         * Makefile.in (bootstrap-lean): New target.
11726 Wed Sep 24 18:06:27 1997  Stu Grossman  <grossman@babylon-5.cygnus.com>
11728         * configure.in (d30v):  Remove tcl, tk, expect, gdb, itcl, tix, db,
11729         sn, and gnuserv from noconfigdirs.
11731 Wed Sep 24 15:18:32 1997  Ian Lance Taylor  <ian@cygnus.com>
11733         * ltmain.sh: Tweak shell pattern to avoid bug in NetBSD /bin/sh.
11735 Thu Sep 18 23:58:27 1997  Jeffrey A Law  (law@cygnus.com)
11737         * Makefile.in (cross): New target.
11739 Thu Sep 18 21:43:23 1997  Alexandre Oliva  <oliva@dcc.unicamp.br>
11740                           Jeff Law         <law@cygnus.com>
11742         * Makefile.in (bootstrap2, bootstrap3): New targets.
11743         (all-bootstrap): Remove outdated and confusing target.
11744         (bootstrap, bootstrap2, bootstrap3): Don't pass BOOT_CFLAGS down.
11746 Thu Sep 18 15:37:42 1997  Andrew Cagney  <cagney@b1.cygnus.com>
11748         * configure (tooldir): enable_gdbtk=YES for cygwin32, NO for
11749         windows.  Consistent with gdb/configure.
11751 1997-09-15 02:37  Ulrich Drepper  <drepper@cygnus.com>
11753         * configure.in: Name Linux target fragment.
11755         * configure: Rewrite so that project Makefile fragment is inserted
11756         first and appears last in the resulting Makefile.
11758 Tue Sep 16 09:55:07 1997  Andrew Cagney  <cagney@b1.cygnus.com>
11760         * Makefile.in (install-itcl): Install tcl first.
11762 Fri Sep 12 16:19:20 1997  Geoffrey Noer  <noer@cygnus.com>
11764         * configure.in: remove bison from noconfigdirs for Cygwin32 host
11766 Thu Sep 11 16:40:46 1997  H.J. Lu  (hjl@gnu.ai.mit.edu)
11768         * Makefile.in (local-distclean): Also remove mh-frag mt-frag.
11770         * configure.in (skipdirs): Add target-librx for Linux.
11771         (alpha-*-linux*): Use config/mh-elfalphapic and config/mt-elfalphapic.
11773 Wed Sep 10 21:29:54 1997  Jeffrey A Law  (law@cygnus.com)
11775         * Makefile.in (bootstrap): New target.
11777 Wed Sep 10 15:19:22 1997  Jeffrey A Law  (law@cygnus.com)
11779         * config.sub: Accept 'amigados' for backward compatability.
11781 Mon Sep  8 20:46:20 1997  Ian Lance Taylor  <ian@cygnus.com>
11783         * config.guess: Merge with FSF.
11785 Sun Sep  7 23:18:32 1997  Fred Fish  <fnf@ninemoons.com>
11787         * config.sub: Change 'amigados' to 'amigaos' to match current usage.
11789 Sun Sep  7 15:55:28 1997  Gavin Koch  <gavin@cygnus.com>
11791         * config.sub: Add "marketing-names" patch.
11793 Fri Sep  5 16:11:28 1997  Joel Sherrill  (joel@OARcorp.com)
11795         * configure.in (*-*-rtems*): Do not build libgloss for rtems.
11797 Fri Sep  5 12:27:17 1997  Jeffrey A Law  (law@cygnus.com)
11799         * config.sub: Handle v850-elf.
11801 Wed Sep  3 22:01:58 1997  Fred Fish  <fnf@ninemoons.com>
11803         * .cvsignore (*-install): Remove.
11805 Wed Sep  3 12:15:24 1997  Chris Provenzano  <proven@cygnus.com>
11807         * ltconfig: Set CONFIG_SHELL in libtool.
11808         * ltmain.sh: Use CONFIG_SHELL instead of /bin/sh
11810 Mon Sep  1 16:45:44 1997  Jim Wilson  <wilson@cygnus.com>
11812         * configure.in (target_subdir): Set to libraries if enable_multilib.
11814 Wed Aug 27 16:15:11 1997  Jim Wilson  <wilson@cygnus.com>
11816         * config.guess: Update from gcc directory.
11818 Tue Aug 26 16:46:46 1997  Andrew Cagney  <cagney@b1.cygnus.com>
11820         * Makefile.in (all-sim): Depends on all-readline.
11822 Wed Aug 20 19:57:37 1997  Jason Merrill  <jason@yorick.cygnus.com>
11824         * Makefile.in (BISON, YACC): Use $$s.
11825         (all-bison): Depend on all-texinfo.
11827 Tue Aug 19 01:41:32 1997  Jason Merrill  <jason@yorick.cygnus.com>
11829         * Makefile.in (BISON): Add -L flag.
11830         (YACC): Likewise.
11832 Mon Aug 18 11:30:50 1997  Nick Clifton  <nickc@cygnus.com>
11834         * configure.in (noconfigdirs): Add support for v850e target.
11836         * config.sub (maybe_os): Add support for v850e target.
11838 Mon Aug 18 11:30:50 1997  Nick Clifton  <nickc@cygnus.com>
11840         * configure.in (noconfigdirs): Add support for v850ea target.
11842         * config.sub (maybe_os): Add support for v850ea target.
11844 Mon Aug 18 09:24:06 1997  Gavin Koch  <gavin@cygnus.com>
11846         * config.sub: Add mipstx39.  Delete r3900.
11848 Mon Aug 18 17:20:10 1997  Jason Molenda  (crash@godzilla.cygnus.co.jp)
11850         * Makefile.in (all-autoconf): Depends on all-texinfo.
11852 Fri Aug 15 23:09:26 1997  Michael Meissner  <meissner@cygnus.com>
11854         * config-ml.in ({powerpc,rs6000}*-*-*): Update to current AIX and
11855         eabi targets.
11857 Thu Aug 14 14:42:17 1997  Ian Lance Taylor  <ian@cygnus.com>
11859         * configure: Get CFLAGS and CXXFLAGS from Makefile, if possible.
11861         * configure: When handling a Canadian Cross, handle YACC as well as
11862         BISON.  Just set BISON to bison.  When setting YACC, prefer bison.
11863         * Makefile.in (all-bison): Depend upon all-texinfo.
11865 Tue Aug 12 20:09:48 1997  Jason Merrill  <jason@yorick.cygnus.com>
11867         * Makefile.in (BISON): bison, not byacc or bison -y.
11868         (YACC): bison -y or byacc or yacc.
11869         (various): Add *-bison as appropriate.
11870         (taz): No need to mess with BISON anymore.
11872 Tue Aug 12 22:33:08 1997  Ian Lance Taylor  <ian@cygnus.com>
11874         * configure: If OSTYPE matches *win32*, try to find a good value for
11875         CONFIG_SHELL.
11877 Sun Aug 10 14:41:11 1997  Ian Lance Taylor  <ian@cygnus.com>
11879         * Makefile.in (taz): Get the version number from AM_INIT_AUTOMAKE in
11880         configure.in if it is present.
11882 Sat Aug  9 00:58:01 1997  Ian Lance Taylor  <ian@cygnus.com>
11884         * Makefile.in (LD_FOR_TARGET): Change ld.new to ld-new.
11886 Fri Aug  8 16:30:13 1997  Doug Evans  <dje@canuck.cygnus.com>
11888         * config.sub: Recognize `arc' cpu.
11889         * configure.in: Likewise.
11890         * config-ml.in: Likewise.
11892 Thu Aug  7 11:02:34 1997  Ian Lance Taylor  <ian@cygnus.com>
11894         * Makefile.in ($(INSTALL_X11_MODULES)): Depend upon installdirs.
11896 Wed Aug  6 16:27:29 1997  Chris Provenzano  <proven@cygnus.com>
11898         * configure: Changed sed delimiter from ':' to '|' when
11899         attempting to substitute ${config_shell} for SHELL. On
11900         NT ${config_shell} may contain a ':' in it.
11902 Wed Aug  6 12:29:05 1997  Jason Merrill  <jason@yorick.cygnus.com>
11904         * Makefile.in (EXTRA_GCC_FLAGS): Fix for non-bash shells.
11906 Wed Aug  6 00:42:35 1997  Ian Lance Taylor  <ian@cygnus.com>
11908         * Makefile.in (AS_FOR_TARGET): Change as.new to as-new.
11910 Tue Aug  5 14:08:51 1997  Ian Lance Taylor  <ian@cygnus.com>
11912         * Makefile.in (NM_FOR_TARGET): Change nm.new to nm-new.
11914         * ylwrap: If the program is a relative path, force it to be
11915         absolute.
11917 Tue Aug  5 12:12:44 1997  Andrew Cagney  <cagney@b1.cygnus.com>
11919         * configure (tooldir): Set BISON to `bison -y' and not just bison.
11921 Mon Aug  4 22:59:02 1997  Andrew Cagney  <cagney@b1.cygnus.com>
11923         * Makefile.in (CC_FOR_TARGET): When winsup/Makefile present,
11924         correctly specify the target build directory $(TARGET_SUBDIR)/winsup
11925         for libraries.
11927 Mon Aug  4 12:40:24 1997  Jason Merrill  <jason@yorick.cygnus.com>
11929         * Makefile.in (EXTRA_GCC_FLAGS): Fix handling of macros with values
11930         separated by spaces.
11932 Thu Jul 31 19:49:49 1997  Ian Lance Taylor  <ian@cygnus.com>
11934         * ylwrap: New file.
11935         * Makefile.in (DEVO_SUPPORT): Add ylwrap.
11937         * ltmain.sh: Handle /bin/sh at start of install program.
11939         * Makefile.in (DEVO_SUPPORT): Add ltconfig, ltmain.sh, and missing.
11941         * ltconfig, ltmain.sh: New files, from libtool 1.0.
11942         * missing: New file, from automake 1.2.
11944 Thu Jul 24 12:57:56 1997  Ian Lance Taylor  <ian@cygnus.com>
11946         * Makefile.in: Treat tix like tk, putting it in X11_MODULES.  Add
11947         check-tk to CHECK_X11_MODULES.
11949 Wed Jul 23 17:03:29 1997  Ian Lance Taylor  <ian@cygnus.com>
11951         * config.sub: Merge with FSF.
11953 Tue Jul 22 19:08:29 1997  Ian Lance Taylor  <ian@cygnus.com>
11955         * config.guess: Merge with FSF.
11957 Tue Jul 22 14:50:42 1997  Robert Hoehne <robert.hoehne@Mathematik.TU-Chemnitz.DE>
11959         * configure: Treat msdosdjgpp like go32.
11960         * configure.in: Likewise.  Don't remove gprof for go32.
11962         * configure: Change Makefile.tem2 to Makefile.tm2.
11964 Mon Jul 21 10:31:26 1997  Stephen Peters  <speters@cygnus.com>
11966         * configure.in (noconfigdirs): For alpha-dec-osf*, don't ignore grep.
11968 Tue Jul 15 14:33:03 1997  Brendan Kehoe  <brendan@lisa.cygnus.com>
11970         * install-sh (chmodcmd): Set to null if the DST directory already
11971         exists.  Same as Nov 11th change.
11973 Mon Jul 14 11:01:15 1997  Martin M. Hunt  <hunt@cygnus.com>
11975         * configure (GDB_TK): Needs itcl and tix.
11977 Mon Jul 14 00:32:10 1997  Jason Merrill  <jason@yorick.cygnus.com>
11979         * config.guess: Update from FSF.
11981 Fri Jul 11 11:57:11 1997  Martin M. Hunt  <hunt@cygnus.com>
11983         * Makefile.in (GDB_TK): Depend on itcl and tix.
11985 Fri Jul  4 13:25:31 1997  Ian Lance Taylor  <ian@cygnus.com>
11987         * Makefile.in (INSTALL_PROGRAM_ARGS): New variable.
11988         (INSTALL_PROGRAM): Use $(INSTALL_PROGRAM_ARGS).
11989         (INSTALL_SCRIPT): New variable.
11990         (BASE_FLAGS_TO_PASS): Pass down INSTALL_SCRIPT.
11991         * configure.in: If host is *-*-cygwin32*, set INSTALL_PROGRAM_ARGS
11992         to -x.
11993         * install-sh: Add support for -x option.
11995 Mon Jun 30 15:51:30 1997  Ian Lance Taylor  <ian@cygnus.com>
11997         * configure.in, Makefile.in: Treat tix like itcl.
11999 Thu Jun 26 13:59:19 1997  Ian Lance Taylor  <ian@cygnus.com>
12001         * Makefile.in (WINDRES): New variable.
12002         (WINDRES_FOR_TARGET): New variable.
12003         (BASE_FLAGS_TO_PASS): Add WINDRES_FOR_TARGET.
12004         (EXTRA_HOST_FLAGS): Add WINDRES.
12005         (EXTRA_TARGET_FLAGS): Add WINDRES.
12006         (EXTRA_GCC_FLAGS): Add WINDRES.
12007         ($(DO_X)): Pass down WINDRES.
12008         ($(CONFIGURE_TARGET_MODULES)): Set WINDRES when configuring.
12009         * configure: Treat WINDRES like DLLTOOL, and WINDRES_FOR_TARGET like
12010         DLLTOOL_FOR_TARGET.
12012 Wed Jun 25 15:01:26 1997  Felix Lee  <flee@cygnus.com>
12014         * configure.in: configure sim before gdb for win32-x-ppc
12016 Wed Jun 25 12:18:54 1997  Brendan Kehoe  <brendan@lisa.cygnus.com>
12018         Move gperf into the toplevel, from libg++.
12019         * configure.in (target_tools): Add target-gperf.
12020         (native_only): Add target-gperf.
12021         * Makefile.in (all-target-gperf): New target, depend on
12022         all-target-libg++.
12023         (configure-target-gperf): Empty rule.
12024         (ALL_TARGET_MODULES): Add all-target-gperf.
12025         (CONFIGURE_TARGET_MODULES): Add configure-target-gperf.
12026         (CHECK_TARGET_MODULES): Add check-target-gperf.
12027         (INSTALL_TARGET_MODULES): Add install-target-gperf.
12028         (CLEAN_TARGET_MODULES): Add clean-target-gperf.
12030 Mon Jun 23 10:51:53 1997  Jeffrey A Law  (law@cygnus.com)
12032         * config.sub (mn10200): Recognize new basic machine.
12034 Thu Jun 19 14:16:42 1997  Brendan Kehoe  <brendan@lisa.cygnus.com>
12036         * configure.in: Don't set ENABLE_MULTILIB, so we'll be passing
12037         --enable-multilib down to subdirs; setting TARGET_SUBDIR was enough.
12039 Tue Jun 17 15:31:20 1997  Brendan Kehoe  <brendan@lisa.cygnus.com>
12041         * configure.in: If we're building mips-sgi-irix6* native, turn on
12042         ENABLE_MULTILIB and set TARGET_SUBDIR.
12044 Tue Jun 17 12:20:59 1997  Tom Tromey  <tromey@cygnus.com>
12046         * Makefile.in (all-sn): Depend on all-grep.
12048 Mon Jun 16 11:11:10 1997  Ian Lance Taylor  <ian@cygnus.com>
12050         * configure.in: Use mh-ppcpic and mt-ppcpic for powerpc*-* targets.
12052         * configure: Set CFLAGS and CXXFLAGS, and substitute them into
12053         Makefile.  From Jeff Makey <jeff@cts.com>.
12054         * Makefile.in: Add comment for CFLAGS and CXXFLAGS.
12056         * Makefile.in (DISTBISONFILES): Remove.
12057         (taz): Don't futz with DISTBISONFILES.  Change BISON to use
12058         $(DEFAULT_YACC).
12060         * configure.in: Build itl, db, sn, etc., when building for native
12061         cygwin32.
12063         * Makefile.in (LD): New variable.
12064         (EXTRA_HOST_FLAGS): Pass down LD.
12065         ($(DO_X)): Likewise.
12067 Mon Jun 16 11:10:35 1997  Philip Blundell  <Philip.Blundell@pobox.com>
12069         * Makefile.in (INSTALL): Use $(SHELL) when executing install-sh.
12071 Fri Jun 13 10:22:56 1997  Bob Manson  <manson@charmed.cygnus.com>
12073         * configure.in (targargs): Strip out any supplied --build argument
12074         before adding our own. Always add --build.
12076 Thu Jun 12 21:12:28 1997  Bob Manson  <manson@charmed.cygnus.com>
12078         * configure.in (targargs): Pass --build if we're doing
12079         a cross-compile.
12081 Fri Jun  6 21:38:40 1997  Rob Savoye  <rob@chinadoll.cygnus.com>
12083         * configure: Use '|' instead of ":" as the separator in
12084         sed. Otherwise sed chokes on NT path names with drive
12085         designators. Also look for "?:*" as the leading characters in an
12086         absolute pathname.
12088 Mon Jun  2 13:05:20 1997  Gavin Koch  <gavin@cygnus.com>
12090         * config.sub: Support for r3900.
12092 Wed May 21 17:33:31 1997  Ian Lance Taylor  <ian@cygnus.com>
12094         * configure.in: Use install-sh, not install.sh.
12096 Wed May 14 16:06:51 1997  Ian Lance Taylor  <ian@cygnus.com>
12098         * Makefile.in (taz): Improve check for BISON so it doesn't try to
12099         apply it twice.
12101 Fri May  9 17:22:05 1997  Ian Lance Taylor  <ian@cygnus.com>
12103         * Makefile.in (INSTALL_MODULES): Put install-opcodes before
12104         install-binutils.
12106 Thu May  8 17:29:50 1997  Ian Lance Taylor  <ian@cygnus.com>
12108         * Makefile.in: Add automake targets.
12109         * configure.in (host_tools): Add automake.
12111 Tue May  6 15:49:52 1997  Ian Lance Taylor  <ian@cygnus.com>
12113         * configure: Default CXX to c++, not gcc.
12114         * Makefile.in (CXX): Set to c++, not gcc.
12115         (CXX_FOR_TARGET): When cross, transform c++, not gcc.
12117 Thu May  1 10:11:43 1997  Geoffrey Noer  <noer@cygnus.com>
12119         * install-sh: try appending a .exe if source file doesn't
12120         exist
12122 Wed Apr 30 12:05:36 1997  Jason Merrill  <jason@yorick.cygnus.com>
12124         * configure.in: Turn on multilib by default.
12125         (cross_only): Remove target-libiberty.
12127         * Makefile.in (all-gcc): Don't depend on libiberty.
12129 Mon Apr 28 18:39:45 1997  Michael Snyder  <msnyder@cleaver.cygnus.com>
12131         * config.guess: improve algorithm for recognizing Gnu Hurd x86.
12133 Thu Apr 24 19:30:07 1997  Ian Lance Taylor  <ian@cygnus.com>
12135         * Makefile.in (DEVO_SUPPORT): Add mpw-install.
12136         (DISTBISONFILES): Add ld/Makefile.in
12138 Tue Apr 22 17:17:28 1997  Geoffrey Noer  <noer@pizza.cygnus.com>
12140         * configure.in: if target is cygwin32 but host isn't cygwin32,
12141         don't configure gdb tcl tk expect, not just gdb.
12143 Mon Apr 21 13:33:39 1997  Tom Tromey  <tromey@cygnus.com>
12145         * configure.in: Added gnuserv everywhere sn appears.
12147         * Makefile.in (ALL_MODULES): Added all-gnuserv.
12148         (CROSS_CHECK_MODULES): Added check-gnuserv.
12149         (INSTALL_MODULES): Added install-gnuserv.
12150         (CLEAN_MODULES): Added clean-gnuserv.
12151         (all-gnuserv): New target.
12153 Thu Apr 17 13:57:06 1997  Per Fogelstrom  <pefo@openbsd.org>
12155         * config.guess: Fixes for MIPS OpenBSD systems.
12157 Tue Apr 15 12:21:07 1997  Ian Lance Taylor  <ian@cygnus.com>
12159         * Makefile.in (INSTALL_XFORM): Remove.
12160         (BASE_FLAGS_TO_PASS): Remove INSTALL_XFORM.
12162         * mkinstalldirs: New file, copied from automake.
12163         * Makefile.in (installdirs): Rename from install-dirs.  Use
12164         mkinstalldirs.  Change all users.
12165         (DEVO_SUPPORT): Add mkinstalldirs.
12167 Mon Apr 14 11:21:38 1997  Ian Lance Taylor  <ian@cygnus.com>
12169         * install-sh: Rename from install.sh.
12170         * Makefile.in (INSTALL): Change install.sh to install-sh.
12171         (DEVO_SUPPORT): Likewise.
12173         * configure: Use ${config_shell} with ${moveifchange}.  From Thomas
12174         Graichen <graichen@rzpd.de>.
12176 Fri Apr 11 16:37:10 1997  Niklas Hallqvist  <niklas@appli.se>
12178         * config.guess: Recognize OpenBSD systems correctly.
12180 Fri Apr 11 17:07:04 1997  Jason Molenda  (crash@godzilla.cygnus.co.jp)
12182         * README, Makefile.in (ETC_SUPPORT): Remove references to
12183         cfg-paper*, configure.{texi,man,info*}._
12185 Sun Apr  6 18:47:57 1997  Andrew Cagney  <cagney@kremvax.cygnus.com>
12187         * Makefile.in (all.normal): Ensure that gcc is built after all
12188         the x11 - ie gdb - targets.
12190 Tue Apr  1 16:28:50 1997  Klaus Kaempf  <kkaempf@progis.de>
12192         * makefile.vms: Don't run conf-a-gas.
12194 Mon Mar 31 16:26:55 1997  Joel Sherrill  <joel@oarcorp.com>
12196         * configure.in (hppa1.1-*-rtems*): New target, like hppa-*-*elf*.
12198 Sun Mar 30 12:38:27 1997  Fred Fish  <fnf@cygnus.com>
12200         * configure.in: Remove noconfigdirs case since gdb also
12201         configures and builds for tic80-coff.
12203 Fri Mar 28 18:28:52 1997  Ian Lance Taylor  <ian@cygnus.com>
12205         * configure: Set cache_file to config.cache.
12206         * Makefile.in (local-distclean): Remove config.cache.
12208 Wed Mar 26 18:49:39 1997  Ian Lance Taylor  <ian@cygnus.com>
12210         * COPYING: Update FSF address.
12212 Wed Mar 26 10:38:25 1997  Michael Meissner  <meissner@cygnus.com>
12214         * configure.in (tic80-*-*): Remove G++ libraries and libgloss from
12215         noconfigdirs.
12217 Mon Mar 24 15:02:39 1997  Ian Lance Taylor  <ian@cygnus.com>
12219         * Makefile.in (install-dirs): Don't crash if prefix, and hence
12220         MAKEDIRS, is empty.
12222 Mon Mar 24 12:40:55 1997  Doug Evans  <dje@canuck.cygnus.com>
12224         * config.sub: Tweak mn10300 entry.
12226 Fri Mar 21 15:35:27 1997  Michael Meissner  <meissner@cygnus.com>
12228         * configure.in (host_tools): Put sim before gdb, so gdb's
12229         configure.tgt can determine if the simulator was configured.
12231 Sun Mar 16 16:07:08 1997  Fred Fish  <fnf@cygnus.com>
12233         * config.sub: Move BeOS $os case to be with other Cygnus
12234         local cases.
12236 Sun Mar 16 01:34:55 1997  Martin Hunt <hunt@cygnus.com>
12238         * config.sub: Remove misplaced comment that broke Linux.
12240 Sat Mar 15 22:50:15 1997  Fred Fish  <fnf@cygnus.com>
12242         * config.sub: Add BeOS support.
12244 Mon Mar 10 13:30:11 1997  Tom Tromey  <tromey@cygnus.com>
12246         * Makefile.in (CHECK_X11_MODULES): Don't run check-tk.
12248 Wed Mar  5 12:09:29 1997  Martin  <hunt@cygnus.com>
12250         * configure.in (noconfigdirs): Remove tcl and tk from
12251         noconfigdirs for cygwin32 builds.
12253 Fri Feb 28 18:20:15 1997  Fred Fish  <fnf@cygnus.com>
12255         * configure.in (tic80-*-*): Remove ld from noconfigdirs.
12257 Thu Feb 27 14:57:26 1997  Ken Raeburn  <raeburn@cygnus.com>
12259         * Makefile.in (GAS_SUPPORT_DIRS, BINUTILS_SUPPORT_DIRS): Remove
12260         make-all.com, use makefile.vms instead.
12262 Tue Feb 25 18:46:14 1997  Stan Shebs  <shebs@andros.cygnus.com>
12264         * config.sub: Accept -lnews*.
12266 Tue Feb 25 13:19:14 1997  Andrew Cagney  <cagney@kremvax.tpgi.com.au>
12268         * configure.in (noconfigdirs): Disable target-newlib,
12269         target-examples and target-libiberty for d30v.
12271 Fri Feb 21 17:56:25 1997  Martin M. Hunt  <hunt@pizza.cygnus.com>
12273         * configure.in (noconfigdirs): Enable ld for d30v.
12275 Fri Feb 21 20:58:51 1997  Michael Meissner  <meissner@cygnus.com>
12277         * configure.in (tic80-*-*): Build compiler.
12279 Sun Feb 16 15:41:09 1997  Andrew Cagney  <cagney@critters.cygnus.com>
12281         * configure.in (d30v-*): Remove sim directory from list of
12282         unsupported d30v directories
12284 Tue Feb 18 17:32:42 1997  Martin M. Hunt  <hunt@pizza.cygnus.com>
12286         * config.sub, configure.in: Add d30v target cpu.
12288 Thu Feb 13 22:04:44 1997  Klaus Kaempf  <kkaempf@progis.de>
12290         * makefile.vms: New file.
12291         * make-all.com: Remove.
12293 Wed Feb 12 12:54:18 1997  Jim Wilson  <wilson@cygnus.com>
12295         * Makefile.in (EXTRA_GCC_FLAGS): Add LIBGCC2_DEBUG_CFLAGS.
12297 Sat Feb  8 20:36:49 1997  Michael Meissner  <meissner@cygnus.com>
12299         * Makefile.in (all-itcl): The rule is all-itcl, not all-tcl.
12301 Tue Feb  4 11:39:29 1997  Tom Tromey  <tromey@cygnus.com>
12303         * Makefile.in (ALL_MODULES): Added all-db.
12304         (CROSS_CHECK_MODULES): Addec check-db.
12305         (INSTALL_MODULES): Added install-db.
12306         (CLEAN_MODULES): Added clean-db.
12308 Mon Feb  3 13:29:36 1997  Ian Lance Taylor  <ian@cygnus.com>
12310         * config.guess: Merge with latest FSF sources.
12312 Tue Jan 28 09:20:37 1997  Tom Tromey  <tromey@cygnus.com>
12314         * Makefile.in (ALL_MODULES): Added all-itcl.
12315         (CROSS_CHECK_MODULES): Added check-itcl.
12316         (INSTALL_MODULES): Added install-itcl.
12317         (CLEAN_MODULES): Added clean-itcl.
12319 Thu Jan 23 01:44:27 1997  Geoffrey Noer  <noer@cygnus.com>
12321         * configure.in: build gdb for mn10200
12323 Fri Jan 17 15:32:15 1997  Doug Evans  <dje@canuck.cygnus.com>
12325         * Makefile.in (all-target-winsup): Depend on all-target-libio.
12327 Mon Jan 13 22:46:54 1997  Michael Meissner  <meissner@tiktok.cygnus.com>
12329         * configure.in (tic80-*-*): Turn off most targets right now.
12331 Fri Jan  3 16:04:03 1997  Ian Lance Taylor  <ian@cygnus.com>
12333         * Makefile.in (MAKEINFO): Check for the existence of the Makefile,
12334         rather than the makeinfo program.
12335         (do-info): Depend upon all-texinfo.
12337 Tue Dec 31 16:00:31 1996  Ian Lance Taylor  <ian@cygnus.com>
12339         * configure.in: Remove uses of config/mh-linux.
12341         * config.sub, config.guess: Merge with latest FSF sources.
12343 Fri Dec 27 23:04:33 1996  Fred Fish  <fnf@cygnus.com>
12345         * config.sub (case $basic_machine): Add tic80 entries.
12347 Fri Dec 27 12:07:59 1996  Ian Lance Taylor  <ian@cygnus.com>
12349         * config.sub, config.guess: Merge with latest FSF sources.
12351 Wed Dec 18 22:46:39 1996  Stan Shebs  <shebs@andros.cygnus.com>
12353         * mpw-build.in: Build ld before gcc, use NewFolderRecursive.
12354         * mpw-config.in: Test for NewFolderRecursive.
12355         * mpw-install: Use symbolic name for startup filename.
12356         * mpw-README: Add various additional details.
12358 Wed Dec 18 13:11:46 1996  Jim Wilson  <wilson@cygnus.com>
12360         * configure.in (mips*-sgi-irix6*): Remove binutils from noconfigdirs.
12362 Wed Dec 18 10:29:31 1996  Jeffrey A Law  (law@cygnus.com)
12364         * configure.in: Do build gcc and the target libraries for
12365         the mn10200.
12367 Wed Dec  4 16:53:05 1996  Geoffrey Noer  <noer@cygnus.com>
12369         * configure.in: don't avoid building gdb for mn10300 any more
12370         * Makefile.in: double-quote GCC_FOR_TARGET line in EXTRA_GCC_FLAGS
12371         instead of single-quoting it.
12373 Tue Dec  3 23:26:50 1996  Jason Merrill  <jason@yorick.cygnus.com>
12375         * configure.in: Don't use --with-stabs on IRIX 6.
12377 Tue Dec  3 09:05:25 1996  Doug Evans  <dje@canuck.cygnus.com>
12379         * configure.in (m32r): Build gdb, libg++ now.
12381 Sun Dec  1 00:18:59 1996  Peter Schauer  (pes@regent.e-technik.tu-muenchen.de)
12383         * configure.in (mips*-sgi-irix6*):  Remove gdb and related
12384         directories from noconfigdirs.
12386 Tue Nov 26 11:45:33 1996  Kim Knuttila  <krk@cygnus.com>
12388         * config.sub (basic_machine): added mips16 configuration
12390 Sat Nov 23 19:26:22 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12392         * config.sub: Handle d10v-unknown.
12394 Sat Nov 23 10:23:01 1996  Gavin Koch  <gavin@cygnus.com>
12396         * config.sub: Handle v850-unknown.
12398 Thu Nov 21 16:19:44 1996  Geoffrey Noer  <noer@cygnus.com>
12400         * Makefile.in: add findutils
12401         * configure.in: add findutils to list of host_tools
12403 Wed Nov 20 10:09:01 1996  Jeffrey A Law  (law@cygnus.com)
12405         * config.sub: Handle mn10200 and mn10300.
12407 Tue Nov 19 16:35:14 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12409         * configure.in (d10v-*): Do not build librx.
12411 Mon Nov 18 13:28:41 1996  Jeffrey A Law  (law@cygnus.com)
12413         * configure.in (mn10300): Build everything except gdb & libgloss.
12415 Wed Nov 13 14:59:46 1996  Per Bothner  <bothner@deneb.cygnus.com>
12417         * config.guess:  Patch for Dansk Data Elektronik servers,
12418         from Niels Skou Olsen <nso@dde.dk>.
12420         For ncr, use /bin/uname rather than uname, since GNU uname does not
12421         support -p.  Suggested by Mark Mitchell <mmitchell@usa.net>.
12423         Patch for MIPS R4000 running System V,
12424         from Eric S. Raymond <esr@snark.thyrsus.com>.
12426         Fix thinko for nextstep.
12428         Patch for OSF1 in i?86, from Dan Murphy <dlm@osf.org> via Harlan Stenn.
12430         Sat Jun 24 18:58:17 1995  Morten Welinder  <terra+@cs.cmu.edu>
12431         * config.guess: Guess mips-dec-mach_bsd4.3.
12433         Thu Oct 10 04:07:04 1996  Harlan Stenn <harlan@pfcs.com>
12434         * config.guess (i?86-ncr-sysv*):  Emit just enough of the minor
12435         release numbers.
12436         * config.guess (mips-mips-riscos*):  Emit just enough of the
12437         release number.
12439         Tue Oct  8 10:37:22 1996  Frank Vance <fvance@waii.com>
12440         * config.guess (sparc-auspex-sunos*):  Added.
12441         (f300-fujitsu-*): Added.
12443         Wed Sep 25 22:00:35 1996  Jeff Woolsey <woolsey@jlw.com>
12444         * config.guess:  Recognize a Tadpole as a sparc.
12446 Wed Nov 13 00:53:09 1996  David J. MacKenzie  <djm@churchy.gnu.ai.mit.edu>
12448         * config.guess: Don't assume that NextStep version is either 2 or
12449         3.  NextStep 4 (aka OpenStep 4) has come out now.
12451 Mon Nov 11 23:52:03 1996  David J. MacKenzie  <djm@churchy.gnu.ai.mit.edu>
12453         * config.guess: Support Cray T90 that reports itself as "CRAY TS".
12454         From Rik Faith <faith@cs.unc.edu>.
12456 Fri Nov  8 11:34:58 1996  David J. MacKenzie  <djm@geech.gnu.ai.mit.edu>
12458         * config.sub: Contributions from bug-gnu-utils to:
12459         Support plain "hppa" (no version given) architecture, reported by
12460         OpenStep.
12461         OpenBSD like NetBSD.
12462         LynxOs is not a hardware supplier.
12464         * config.guess: Contributions from bug-gnu-utils to add support for:
12465         OpenBSD like NetBSD.
12466         Stratus systems.
12467         More Pyramid systems.
12468         i[n>4]86 Intel chips.
12469         M680[n>4]0 Motorola chips.
12470         Use unknown instead of lynx for hardware manufacturer.
12472 Mon Nov 11 10:09:08 1996  Brendan Kehoe  <brendan@lisa.cygnus.com>
12474         * install.sh (chmodcmd): Set to null if the DST directory already
12475         exists.
12477 Mon Nov 11 10:43:41 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12479         * configure.in (powerpc*-{eabi,elf,linux,rtem,sysv,solaris}*): Do
12480         not use mt-ppc target Makefile fragment any more.
12482 Sun Nov  3 19:17:07 1996  Stu Grossman  (grossman@critters.cygnus.com)
12484         * configure.in (*-*-windows):  Exclude everything but those dirs
12485         needed to build windows.
12487 Tue Oct 29 16:41:31 1996  Doug Evans  <dje@canuck.cygnus.com>
12489         * Makefile.in (all-target-winsup): Depend on all-target-librx.
12491 Mon Oct 28 17:32:46 1996  Stu Grossman  (grossman@critters.cygnus.com)
12493         * configure.in:  Exclude mmalloc from i386-windows.
12495 Thu Oct 24 09:22:46 1996  Stu Grossman  (grossman@critters.cygnus.com)
12497         * Undo my previous change.
12499 Thu Oct 24 12:12:04 1996  Ian Lance Taylor  <ian@cygnus.com>
12501         * Makefile.in (EXTRA_GCC_FLAGS): Pass down GCC_FOR_TARGET
12502         unconditionally.
12503         (MAKEOVERRIDES): Define (revert this part of October 18 change).
12505 Thu Oct 24 09:02:07 1996  Stu Grossman  (grossman@critters.cygnus.com)
12507         * Makefile.in (FLAGS_TO_PASS):  Add $(HOST_FLAGS) to allow the
12508         host to add it's own flags.
12510 Tue Oct 22 15:20:26 1996  Ian Lance Taylor  <ian@cygnus.com>
12512         * configure: Handle GCC_FOR_TARGET like CC_FOR_TARGET.
12514 Fri Oct 18 13:37:13 1996  Ian Lance Taylor  <ian@cygnus.com>
12516         * Makefile.in (CC_FOR_TARGET): Check for xgcc, not Makefile.
12517         (CXX_FOR_TARGET): Likewise.
12518         (GCC_FOR_TARGET): Define.
12519         (BASE_FLAGS_TO_PASS): Remove GCC_FOR_TARGET.
12520         (EXTRA_GCC_FLAGS): Define GCC_FOR_TARGET based on whether
12521         CC_FOR_TARGET was specified on the command line.
12522         (MAKEOVERRIDES): Don't define.
12524 Thu Oct 17 10:27:56 1996  Doug Evans  <dje@canuck.cygnus.com>
12526         * configure.in (m32r): Fix spelling of libg++ libs.
12528 Thu Oct 10 10:37:17 1996  Stan Shebs  <shebs@andros.cygnus.com>
12530         * config.sub (-apple*): Remove, now redundant.
12532 Thu Oct 10 12:30:54 1996  Ian Lance Taylor  <ian@cygnus.com>
12534         * configure: Don't get confused by CPU-VENDOR-linux-gnu.
12536         * configure: Rework yesterday's sed script patch.
12538         * config.sub: Merge with FSF.
12540 Wed Oct  9 17:24:59 1996  Per Bothner  <bothner@deneb.cygnus.com>
12542         * config.guess:  Merge from FSF.
12544         1996-09-12  Richard Stallman  <rms@ethanol.gnu.ai.mit.edu>
12545         * config.guess: Use pc instead of unknown, for pc clone systems.
12546         Change linux to linux-gnu.
12548         Mon Jul 15 23:51:11 1996  Karl Heuer  <kwzh@gnu.ai.mit.edu>
12549         * config.guess: Avoid non-portable tr syntax.
12551 Wed Oct  9 06:06:46 1996  Jeffrey A Law  (law@cygnus.com)
12553         * test-build.mk (HOLES): Add "xargs" for gdb.
12555         * configure: Avoid hpux10.20 sed bug.
12557 Tue Oct  8 08:32:48 1996  Stu Grossman  (grossman@critters.cygnus.com)
12559         * configure.in:  Add support for windows host
12560         (that is a build done under the Microsoft build environment).
12562 Tue Oct  8 10:39:08 1996  Ian Lance Taylor  <ian@cygnus.com>
12564         * Makefile.in: Replace all uses of srcroot with s, to shrink
12565         command line lengths.
12567         Patches from Geoffrey Noer <noer@cygnus.com>:
12568         * configure.in: If configuring for newlib, pass --with-newlib to
12569         subdirectories.
12570         * Makefile.in (CC_FOR_TARGET): If winsup/Makefile exists, pass a
12571         -Bnewlib/ and -Lwinsup to gcc.
12572         (CXX_FOR_TARGET): Likewise.
12574 Mon Oct  7 10:59:35 1996  Ian Lance Taylor  <ian@cygnus.com>
12576         * Makefile.in (ETC_SUPPORT): Add configure.
12578 Fri Oct  4 12:22:58 1996  Angela Marie Thomas (angela@cygnus.com)
12580         * configure.in: Use config/mh-dgux386 for i[345]86-dg-dgux
12581         host configuration file.
12583 Thu Oct  3 09:28:25 1996  Jeffrey A Law  (law@cygnus.com)
12585         * configure.in: Break mn10x00 support into separate
12586         mn10200 and mn10300 configurations.
12587         * config.sub: Likewise.
12589 Wed Oct  2 22:27:52 1996  Jeffrey A Law  (law@cygnus.com)
12591         * configure.in: Add lots of stuff to noconfigdirs for
12592         the mn10x00 targets.
12594         * config.sub, configure.in: Add mn10x00 support.
12596 Wed Oct  2 15:52:36 1996  Klaus Kaempf  <kkaempf@progis.de>
12598         * make-all.com: Call conf-a-gas, not config-a-gas.
12600 Tue Oct  1 01:28:41 1996  James G. Smith  <jsmith@cygnus.co.uk>
12602         * configure.in (noconfigdirs): Don't build libgloss for arm-coff
12603         targets.
12605 Mon Sep 30 14:24:01 1996  Stan Shebs  <shebs@andros.cygnus.com>
12607         * mpw-README: Add much more detail for native PowerMac.
12608         * mpw-install: New file.
12609         * mpw-configure: Add --norecursion and --help options.
12610         * mpw-config.in: Translate readme and install files when
12611         copying to objdir.
12612         * mpw-build.in: Don't always depend on byacc and flex.
12613         (install-only-top): New action.
12615 Fri Sep 27 17:39:44 1996  Stu Grossman  (grossman@critters.cygnus.com)
12617         * configure.in:  You can now configure GDB for the v850.
12619 Tue Sep 24 19:05:12 1996  Stan Shebs  <shebs@andros.cygnus.com>
12621         * configure.in (noconfigdirs): Don't configure any C++ dirs
12622         if targeting D10V.
12624 Tue Sep 17 12:15:31 1996  Ian Lance Taylor  <ian@cygnus.com>
12626         * config.sub: Recognize mips64vr5000.
12628 Mon Sep 16 17:00:52 1996  Ian Lance Taylor  <ian@cygnus.com>
12630         * configure.in: Use a single line for host_tools and native_only.
12632 Mon Sep  9 12:21:30 1996  Doug Evans  <dje@canuck.cygnus.com>
12634         * config.sub, configure.in: Add entries for m32r.
12636 Thu Sep  5 13:52:47 1996  Tom Tromey  <tromey@creche.cygnus.com>
12638         * Makefile.in (inet-install): Don't run install-gzip.
12640 Wed Sep  4 17:26:13 1996  Stu Grossman  (grossman@critters.cygnus.com)
12642         * configure.in:  Don't config lots of things for *-*-windows*.
12644 Sat Aug 31 11:45:57 1996  Stan Shebs  <shebs@andros.cygnus.com>
12646         * mpw-config.in: Test for mpw-true, true, and null-command scripts.
12647         (host_libs, host_tools): Copy from configure.in.
12648         * mpw-configure: Don't complain about directories not found.
12650 Thu Aug 29 16:44:58 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12652         * configure.in (i[345]86): Recognize i686 for pentium pro.
12653         (i[3456]86-*-dgux*): Use config/mh-sysv for the host configuration
12654         file.
12656         * config.guess (i[345]86): Ditto.
12658 Mon Aug 26 18:34:42 1996  Martin M. Hunt  <hunt@pizza.cygnus.com>
12660         * configure.in (noconfigdirs): Removed gdb for D10V.
12662 Thu Aug 22 17:13:52 1996  Jeffrey A Law  (law@cygnus.com)
12664         * configure.in: Remove ld, target-libio, target-libg++, and
12665         target-libstdc++ from noconfigdirs.
12667 Wed Aug 21 18:56:38 1996  Fred Fish  <fnf@cygnus.com>
12669         * configure: Fix three locations where shell scripts were
12670         being run directly rather than with config_shell.
12672 Tue Aug 20 13:08:47 1996  J.T. Conklin  <jtc@hippo.cygnus.com>
12674         * configure.in (v850-*-*): Set up initial $noconfigdirs.
12675         * config.sub (basic_machine): Recognize v850.
12677 Thu Aug 15 12:19:33 1996  Stan Shebs  <shebs@andros.cygnus.com>
12679         * mpw-configure: Handle multiple enable/disable options and
12680         pass them down recursively, handle -c and -s flags appropriately
12681         depending on choice of compiler, add escape mechanism for
12682         quoted arguments to gC.
12684 Mon Aug 12 13:15:13 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12686         * configure.in (powerpc*-*-*): For eabi, system V.4, Linux, and
12687         solaris targets, use config/mt-ppc to set C{,XX}FLAGS_FOR_TARGETS
12688         so that -mrelocatable-lib and -mno-eabi are used.
12690         * Makefile.in (CONFIGURE_TARGET_MODULES): If target compiler does
12691         not support --print-multi-lib, don't abort.
12693 Thu Aug  8 12:18:59 1996  Klaus Kaempf  <kkaempf@progis.de>
12695         * make-all.com: Run config-a-gas.
12696         * setup.com: Don't copy subdirectory files around.
12698 Tue Jul 30 17:49:31 1996  Brendan Kehoe  <brendan@cygnus.com>
12700         * configure.in (*-*-ose): Remove exclusion of libgloss for this
12701         target, it now compiles correctly.
12703 Sat Jul 27 15:10:43 1996  Stan Shebs  <shebs@andros.cygnus.com>
12705         * mpw-config.in: Generate Mac include for elf/dwarf2.h.
12707 Tue Jul 23 10:47:04 1996  Martin M. Hunt  <hunt@pizza.cygnus.com>
12709         * configure.in (d10v-*-*): Remove ld from $noconfigdirs.
12711 Mon Jul 22 13:28:51 1996  Brendan Kehoe  <brendan@lisa.cygnus.com>
12713         * configure.in (native_only): Add prms.
12715 Mon Jul 22 12:27:58 1996  Ian Lance Taylor  <ian@cygnus.com>
12717         * Makefile.in (GAS_SUPPORT_DIRS): Add make-all.com and setup.com.
12718         (BINUTILS_SUPPORT_DIRS): Likewise.
12720 Thu Jul 18 12:55:40 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12722         * configure.in (d10v-*-*): Don't configure ld or gdb until the
12723         d10v support is added.
12725 Wed Jul 17 14:33:09 1996  Martin M. Hunt  <hunt@pizza.cygnus.com>
12727         * configure.in (d10v-*-*): New target.
12729 Mon Jul 15 11:53:00 1996  Jeffrey A Law  (law@cygnus.com)
12731         * config.guess (HP 9000/811): Recognize this as a PA1.1
12732         machine.
12734 Fri Jul 12 23:21:17 1996  Ken Raeburn  <raeburn@cygnus.com>
12736         * Makefile.in (do-tar-gz): New target, split out from tail end of
12737         taz target.  Run each command separately, don't use pipes.
12738         (taz): Use it.
12740 Fri Jul 12 12:08:04 1996  Stan Shebs  <shebs@andros.cygnus.com>
12742         * mpw-configure: Look for g-mpw-make.sed in config/mpw.
12743         * mpw-build.in: No builds should depend on building byacc or flex,
12744         they are assumed to be installed already.
12746 Fri Jul 12 09:52:52 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12748         * Makefile.in (CONFIGURE_TARGET_MODULES): Set r environment
12749         variable that CC_FOR_TARGET needs.
12751 Thu Jul 11 10:09:45 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12753         * Makefile.in (CONFIGURE_TARGET_MODULES): Determine if the multlib
12754         options have changed since the last time the subdirectory was
12755         configured, and if it has, reconfigure.
12756         (CLEAN_TARGET_MODULES): Delete multilib.out and tmpmulti.out, which
12757         CONFIGURE_TARGET_MODULES uses to remember the old multilib options.
12759 Wed Jul 10 18:56:59 1996  Doug Evans  <dje@canuck.cygnus.com>
12761         * Makefile.in (ALL_MODULES,CROSS_CHECK_MODULES,INSTALL_MODULES,
12762         CLEAN_MODULES): Add bash.
12763         (all-bash): New target.
12765 Mon Jul  8 17:33:14 1996  Jim Wilson  <wilson@cygnus.com>
12767         * configure.in (mips-sgi-irix6*): Use mh-irix6 instead of mh-irix5.
12769 Mon Jul  1 13:31:35 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12771         * config.sub (basic_machine): Recognize d10v as a valid processor.
12773 Fri Jun 28 12:14:35 1996  Stan Shebs  <shebs@andros.cygnus.com>
12775         * mpw-configure: Add support for --bindir.
12776         * mpw-build.in: Use a GCC-specific build script for GCC actions.
12778 Wed Jun 26 17:20:12 1996  Geoffrey Noer  <noer@cygnus.com>
12780         * configure.in: add bash, time, gawk to list of hosttools and things
12781         to only build for native toolchains
12783 Tue Jun 25 23:09:03 1996  Jason Molenda  (crash@godzilla.cygnus.co.jp)
12785         * Makefile.in (docdir): Remove.
12787 Tue Jun 25 19:00:08 1996  Jason Molenda  (crash@godzilla.cygnus.co.jp)
12789         * Makefile.in (datadir): Set to $(prefix)/share.
12791 Mon Jun 24 23:26:07 1996  Geoffrey Noer  <noer@cygnus.com>
12793         * configure.in: build diff and patch for cygwin32-hosted
12794         toolchains.
12796 Mon Jun 24 15:01:12 1996  Joel Sherrill  <joel@merlin.gcs.redstone.army.mil>
12798         * config.sub: Accept -rtems*.
12800 Sun Jun 23 22:41:54 1996  Geoffrey Noer  <noer@cygnus.com>
12802         * configure.in: enable dosrel for cygwin32-hosted builds,
12803                 remove diff from the list of things not buildable
12804                 via Canadian Cross
12806 Sat Jun 22 11:39:01 1996  Jason Merrill  <jason@yorick.cygnus.com>
12808         * Makefile.in (TARGET_SUBDIR): Move comment to previous line so we
12809         don't get ". ".
12811 Fri Jun 21 17:24:48 1996  Jim Wilson  <wilson@cygnus.com>
12813         * configure.in (mips*-sgi-irix6*): Set noconfigdirs appropriately.
12815 Thu Jun 20 16:57:40 1996  Ken Raeburn  <raeburn@cygnus.com>
12817         * Makefile.in (taz): Handle case where tex3patch didn't even get
12818         checked out.  Also, if it was found, put the symlink in a new util
12819         subdirectory.
12821 Thu Jun 20 12:20:33 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12823         * config.guess (*:Linux:*:*): Add support for PowerPC Linux.
12825 Tue Jun 18 14:24:12 1996  Klaus Kaempf  (kkaempf@progis.de)
12827         * config.sub: Recognize -openvms.
12828         * configure.in (alpha*-*-*vms*): Set noconfigdirs.
12829         * make-all.com, setup.com: New files.
12831 Mon Jun 17 16:34:46 1996  Jason Merrill  <jason@yorick.cygnus.com>
12833         * Makefile.in (taz): tex3patch moved to texinfo/util.
12835 Sat Jun 15 17:13:25 1996  Geoffrey Noer <noer@cygnus.com>
12837         * configure: enable_gdbtk=no for cygwin32-hosted toolchains
12838         * configure.in: remove make from disable-if-Can-Cross list
12839                 enable gdb if ${host} and ${target} are cygwin32
12841 Fri Jun  7 18:16:52 1996  Harlan Stenn <harlan@pfcs.com>
12843         * config.guess (i?86-ncr-sysv*):  Emit minor release numbers.
12844         Recognize the NCR 4850 machine and NCR Pentium-based platforms.
12846 Wed Jun  5 00:09:17 1996  Per Bothner  <bothner@wombat.gnu.ai.mit.edu>
12848         * config.guess:  Combine mips-mips-riscos cases, and use cpp to
12849         distinguish sysv/svr4/bsd variants.
12850         Based on a patch from Harlan Stenn <harlan@pfcs.com>.
12852 Fri Jun  7 14:24:49 1996  Tom Tromey  <tromey@creche.cygnus.com>
12854         * configure.in: Added copyright notice.
12855         * move-if-change: Added copyright notice.
12857 Thu Jun  6 16:27:05 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12859         * configure.in (powerpcle-*-solaris*): Until we get shared
12860         libraries working, don't build gdb, sim, make, tcl, tk, or
12861         expect.
12863 Tue Jun  4 20:41:45 1996  Per Bothner  <bothner@deneb.cygnus.com>
12865         * config.guess:  Merge with FSF:
12867         Mon Jun  3 08:49:14 1996  Karl Heuer  <kwzh@gnu.ai.mit.edu>
12868         * config.guess (*:Linux:*:*): Add guess for sparc-unknown-linux.
12870         Fri May 24 18:34:53 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
12871         * config.guess (AViiON:dgux:*:*): Fix typo in recognizing mc88110.
12873         Fri Apr 12 20:03:59 1996  Per Bothner  <bothner@spiff.gnu.ai.mit.edu>
12874         * config.guess:  Combine two OSF1 rules.
12875         Also recognize field test versions.  From mjr@zk3.dec.com.
12876         * config.guess (dgux):  Use /usr/bin/uname rather than uname,
12877         because GNU uname does not support -p.  From pmr@pajato.com.
12879 Tue Jun  4 11:07:25 1996  Tom Tromey  <tromey@csk3.cygnus.com>
12881         * Makefile.in (MAKEDIRS): Removed $(tooldir).
12883 Tue May 28 12:30:50 1996  Stan Shebs  <shebs@andros.cygnus.com>
12885         * mpw-README: Document GCCIncludes.
12887 Sun May 26 15:16:27 1996  Fred Fish  <fnf@cygnus.com>
12889         * configure.in (alpha-*-linux*): Set enable_shared to yes.
12891 Tue May 21 15:41:39 1996  Stan Shebs  <shebs@andros.cygnus.com>
12893         * mpw-configure: Handle --enable-FOO and --disable-FOO.
12895 Mon May 20 10:12:29 1996  Geoffrey Noer  <noer@cygnus.com>
12897         * configure.in (*-*-cygwin32): Configure make.
12899 Tue May  7 14:19:42 1996  Tom Tromey  <tromey@snuffle.cygnus.com>
12901         * Makefile.in (inet-install): Quote value of INSTALL_MODULES.
12903 Fri May  3 08:57:17 1996  Tom Tromey  <tromey@lisa.cygnus.com>
12905         * Makefile.in (all-inet): Depend on all-perl.
12907         * Makefile.in (inet-install): New target.
12909         * Makefile.in (all-inet): Depend on all-tcl.
12910         (all-inet): Depend on all-send-pr.
12912 Tue Apr 30 13:55:51 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12914         * configure.in (powerpcle-*-solaris*): Turn off tk and tcl
12915         temporarily.
12917 Thu Apr 25 11:48:20 1996  Ian Lance Taylor  <ian@cygnus.com>
12919         * configure.in: Don't configure --with-gnu-ld on AIX.
12921 Thu Apr 25 06:33:36 1996  Michael Meissner  <meissner@wogglebug.tiac.net>
12923         * configure.in (powerpcle-*-solaris*): Turn off gdb temporarily.
12925 Tue Apr 23 09:07:39 1996  Tom Tromey  <tromey@creche.cygnus.com>
12927         * Makefile.in (ALL_MODULES): Added all-inet.
12928         (CROSS_CHECK_MODULES): Added check-inet.
12929         (INSTALL_MODULES): Added install-inet.
12930         (CLEAN_MODULES): Added clean-inet.
12931         (all-indent): New target.
12933         * configure.in (host_tools): Added inet.
12934         (native_only): Added inet.
12935         (noconfigdirs): Added inet.
12937 Fri Apr 19 15:35:29 1996  Ian Lance Taylor  <ian@cygnus.com>
12939         * configure.in: Don't configure libgloss if we are not configuring
12940         newlib.
12942 Wed Apr 17 19:30:01 1996  Rob Savoye  <rob@chinadoll.cygnus.com>
12944         * configure.in: Don't configure libgloss for unsupported
12945         architectures.
12947 Tue Apr 16 11:17:05 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12949         * Makefile.in (CLEAN_MODULES): Add clean-apache.
12951 Mon Apr 15 15:09:05 1996  Tom Tromey  <tromey@creche.cygnus.com>
12953         * Makefile.in (ALL_MODULES): Include all-apache.
12954         (CROSS_CHECK_MODULES): Include check-apache.
12955         (INSTALL_MODULES): Include install-apache.
12956         (all-apache): New target.
12958         * configure.in: Added apache everywhere perl is seen.
12960 Mon Apr 15 14:59:13 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12962         * Makefile.in: Add support for clean-{module} and
12963         clean-target-{module} rules.
12965 Wed Apr 10 21:37:41 PDT 1996  Marilyn E. Sander <msander@cygnus.com>
12967         * configure.in (*-*-ose) do not build libgloss.
12969 Mon Apr  8 16:16:20 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
12971         * config.guess (prep*:SunOS:5.*:*): Turn into
12972         powerpele-unknown-solaris2.
12974 Mon Apr  8 14:45:41 1996  Ian Lance Taylor  <ian@cygnus.com>
12976         * configure.in: Permit --enable-shared to specify a list of
12977         directories.
12979 Fri Apr  5 08:17:57 1996  Jason Molenda  (crash@phydeaux.cygnus.com)
12981         * configure.in (host==solaris): Pass only the first word of $CC
12982         to /usr/bin/which when checking if we're using /usr/ccs/bin/cc.
12984 Fri Apr  5 03:16:13 1996  Jason Molenda  (crash@phydeaux.cygnus.com)
12986         * Makefile.in (BASE_FLAGS_TO_PASS): pass down $(MAKE).
12988 Thu Mar 28 14:11:11 1996  Tom Tromey  <tromey@creche.cygnus.com>
12990         * Makefile.in (ALL_MODULES): Include all-perl.
12991         (CROSS_CHECK_MODULES): Include check-perl.
12992         (INSTALL_MODULES): Include install-perl.
12993         (ALL_X11_MODULES): Include all-guile.
12994         (CHECK_X11_MODULES): Include check-guile.
12995         (INSTALL_X11_MODULES): Include install-guile.
12996         (all-perl): New target.
12997         (all-guile): New target.
12999         * configure.in (host_tools): Include perl and guile.
13000         (native_only): Include perl and guile.
13001         (noconfigdirs): Don't build guile and perl; no ports have been
13002         done.
13004 Tue Mar 26 21:18:50 1996  Andrew Cagney  <cagney@kremvax.highland.com.au>
13006         * configure (--enable-*): Handle quoted option lists such as
13007         --enable-sim-cflags='-g0 -O' better.
13009 Thu Mar 21 11:53:08 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
13011         * Makefile.in ({,inst}all-target): New rule so we can make and
13012         install all of the target directories easily.
13014 Wed Mar 20 18:10:57 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
13016         * configure.in: Add missing global flag in sed substitution when
13017         deleting `target-' from ${configdirs}.
13019 Thu Mar 14 19:15:06 1996  Ian Lance Taylor  <ian@cygnus.com>
13021         * Makefile.in (DO_X): Don't get confused if CC contains `=' in an
13022         option.
13024         * configure.in (mips*-nec-sysvr4*): Use a host_makefile_frag of
13025         config/mh-necv4.
13027         * install.sh: Correct misspelling of transformbasename.
13029         * config.guess: Recognize mips-*-sysv*.
13031 Mon Mar 11 15:36:42 1996  Dawn Perchik  <dawn@critters.cygnus.com>
13033         * config.sub: Recognize mon960.
13035 Sun Mar 10 13:18:38 1996  Ian Lance Taylor  <ian@cygnus.com>
13037         * configure: Restore Canadian Cross handling of BISON and LEX,
13038         removed in Feb 20 change.
13040 Fri Mar  8 20:07:09 1996  Per Bothner  <bothner@kalessin.cygnus.com>
13042         * README:  Suggestions from Torbjorn Granlund <tege@matematik.su.se>:
13043         Mention make install.  Remove the old copyright date as well the
13044         clumsy and rather pointless copyright on the README file.
13046 Fri Mar  8 17:51:35 1996  Ian Lance Taylor  <ian@cygnus.com>
13048         * Makefile.in ($(CONFIGURE_TARGET_MODULES)): If there is a
13049         Makefile after running symlink-tree, then run `make distclean' to
13050         avoid clobbering any generated files in srcdir.
13052 Tue Mar  5 08:21:44 1996  J.T. Conklin  <jtc@rtl.cygnus.com>
13054         * configure.in (m68k-*-netbsd*): Build everything now.
13056 Wed Feb 28 12:25:46 1996  Jason Merrill  <jason@yorick.cygnus.com>
13058         * Makefile.in (taz): Fix quoting.
13060 Tue Feb 27 11:33:57 1996  Doug Evans  <dje@charmed.cygnus.com>
13062         * configure.in (sparclet-*-*): Build everything now.
13064 Tue Feb 27 14:31:51 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
13066         * configure.in (m68k-*-linux*): New host.
13068 Mon Feb 26 14:32:44 1996  Ian Lance Taylor  <ian@cygnus.com>
13070         * configure: Check for bison before byacc.
13072 Tue Feb 20 23:12:35 1996  Stu Grossman  (grossman@critters.cygnus.com)
13074         * Makefile.in configure:  Change the way LEX and BISON/YACC are
13075         set.  configure now defines DEFAULT_LEX and DEFAULT_YACC by
13076         searching PATH.  These are used as fallbacks by Makefile.in if
13077         flex/bison/byacc aren't in objdir.
13079 Mon Feb 19 11:45:30 1996  Ian Lance Taylor  <ian@cygnus.com>
13081         * Makefile.in: Make everything which depends upon all-bfd also
13082         depend upon all-opcodes, in case --with-commonbfdlib is used.
13084 Thu Feb 15 19:50:50 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
13086         * configure.in (host *-*-cygwin32): Don't build gdb if we are
13087         building NT native compilers on Unix.
13089 Thu Feb 15 17:42:25 1996  Ian Lance Taylor  <ian@cygnus.com>
13091         * configure.in: Don't get CC from the host Makefile fragment if we
13092         can find gcc in PATH, or if this is a Canadian Cross.  Move the
13093         Solaris test for /usr/ucb/cc to the post target script, just after
13094         the compiler sanity test.
13096 Wed Feb 14 16:57:40 1996  Ian Lance Taylor  <ian@cygnus.com>
13098         * config.sub: Merge with FSF.
13100 Tue Feb 13 14:27:48 1996  Ian Lance Taylor  <ian@cygnus.com>
13102         * Makefile.in (RPATH_ENVVAR): New variable.
13103         (REALLY_SET_LIB_PATH): Use it.
13104         * configure.in: On HP/UX, set RPATH_ENVVAR to SHLIB_PATH.
13106 Mon Feb 12 15:28:49 1996  Doug Evans  <dje@charmed.cygnus.com>
13108         * config.sub, configure.in: Recognize sparclet cpu.
13110 Mon Feb 12 15:33:59 1996  Christian Bauernfeind <chrisbfd@theorie3.physik.uni-erlangen.de>
13112         * config.guess:  Support m68k-cbm-sysv4.
13114 Sat Feb 10 12:06:42 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
13116         * config.guess (*:Linux:*:*): Guess m68k-unknown-linux and
13117         m68k-unknown-linuxaout from linker help string.  Put quotes around
13118         $ld_help_string.
13120 Thu Dec  7 09:03:24 1995  Tom Horsley  <Tom.Horsley@mail.hcsc.com>
13122         * config.guess (powerpc-harris-powerunix): Add guess for port
13123         to new target.
13125 Thu Feb  8 15:37:52 1996  Brendan Kehoe  <brendan@lisa.cygnus.com>
13127         * config.guess (UNAME_VERSION): Recognize X4.x as an OSF version.
13129 Mon Feb  5 16:36:51 1996  Ian Lance Taylor  <ian@cygnus.com>
13131         * configure.in: If --enable-shared was used, set SET_LIB_PATH to
13132         $(REALLY_SET_LIB_PATH) in Makefile.
13133         * Makefile.in (SET_LIB_PATH): New variable.
13134         (REALLY_SET_LIB_PATH): New variable.
13135         ($(DO_X)): Use $(SET_LIB_PATH).
13136         (install.all, gcc-no-fixedincludes, $(ALL_MODULES)): Likewise.
13137         ($(NATIVE_CHECK_MODULES), $(CROSS_CHECK_MODULES)): Likewise.
13138         ($(INSTALL_MODULES), $(CONFIGURE_TARGET_MODULES)): Likewise.
13139         ($(ALL_TARGET_MODULES), $(CHECK_TARGET_MODULES)): Likewise.
13140         ($(INSTALL_TARGET_MODULES), $(ALL_X11_MODULES)): Likewise.
13141         ($(CHECK_X11_MODULES), $(INSTALL_X11_MODULES)): Likewise.
13142         (all-gcc, all-bootstrap, check-gcc, install-gcc): Likewise.
13143         (install-dosrel): Likewise.
13144         (all-opcodes): Depend upon all-libiberty.
13146 Sun Feb  4 16:51:11 1996  Steve Chamberlain  <sac@slash.cygnus.com>
13148         * config.guess (*:CYGWIN*): New
13150 Sat Feb  3 10:42:35 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
13152         * Makefile.in (all-target-winsup): All all-target-libiberty.
13154 Fri Feb  2 17:58:56 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
13156         * configure.in (noconfigdirs): Add missing # in front of comment.
13158 Thu Feb  1 14:38:13 1996  Geoffrey Noer  <noer@cygnus.com>
13160         * configure.in: add second pass to things added to noconfigdirs
13161         so *-gm-magic can exclude libgloss properly.
13163 Thu Feb  1 11:10:16 1996  Stan Shebs  <shebs@andros.cygnus.com>
13165         * mpw-configure (extralibs_name, rez_name): Set correctly
13166         for MWC68K compiler.
13168         * mpw-README: Add more info on the necessary build tools.
13170 Thu Feb  1 10:22:38 1996  Steve Chamberlain  <sac@slash.cygnus.com>
13172         * configure.in, config.sub: Recognize cygwin32.
13174 Wed Jan 31 14:17:10 1996  Richard Henderson  <rth@tamu.edu>
13176         * config.guess, config.sub: Recognize A/UX.
13178 Wed Jan 31 13:52:14 1996  Ian Lance Taylor  <ian@cygnus.com>
13180         * config.sub: Merge with gcc/config.sub.
13182 Thu Jan 25 11:01:10 1996  Raymond Jou  <rjou@mexican.cygnus.com>
13184         * mpw-build.in (do-binutils): Add build of stamps.
13186 Thu Jan 25 17:05:26 1996  James G. Smith  <jsmith@cygnus.co.uk>
13188         * config.sub: Add recognition for mips64vr4100*-* targets.
13190 Wed Jan 24 12:47:55 1996  Brendan Kehoe  <brendan@lisa.cygnus.com>
13192         * test-build.mk: Add checking of `hpux9' rather than just `hpux'.
13193         Add creation of gconfigargs with `--enable-shared' turned on.
13194         ($(host)-stamp-stage2-configured): Pass $(gconfigargs).
13195         ($(host)-stamp-stage3-configured): Likewise.
13196         (HOLES): Add chatr and ldd.
13197         (i386-ncr-sysv4.3*): Add use of /usr/ccs/bin in the PATH and HOLE_DIRS.
13199 Wed Jan 24 20:32:30 1996  Torbjorn Granlund  <tege@noisy.matematik.su.se>
13201         * configure: Pass --nfp to recursive configures.
13203 Mon Jan 22 10:41:56 1996  Steve Chamberlain  <sac@slash.cygnus.com>
13205         * Makefile.in (DLLTOOL): New.
13206         (DLLTOOL_FOR_TARGET): New.
13207         (EXTRA_HOST_FLAGS): Pass down DLLTOOL.
13208         (EXTRA_TARGET_FLAGS): Ditto.
13209         (EXTRA_GCC_FLAGS): Ditto.
13210         (CONFIGURE_TARGET_MODULES): Ditto.
13211         (DO_X): Ditto.
13212         * configure: Add DLLTOOL.
13214 Fri Jan 19 13:30:15 1996  Stan Shebs  <shebs@andros.cygnus.com>
13216         SCO OpenServer 5 changes from Robert Lipe <robertl@dgii.com>:
13217         * configure.in (i[345]86-*-sco3.2v5*): Use mh-sysv instead of
13218         mh-sco, since old workarounds no longer needed, and don't
13219         build ld, since libraries have weak symbols in COFF.
13221 Sun Jan 14 23:01:31 1996  Fred Fish  <fnf@cygnus.com>
13223         * Makefile.in (CONFIGURE_TARGET_MODULES): Add missing ';'.
13225 Fri Jan 12 15:25:35 1996  Ian Lance Taylor  <ian@cygnus.com>
13227         * configure.in: Make sure that ${CC} can be used to compile an
13228         executable.
13230 Sat Jan  6 07:23:33 1996  Michael Meissner  <meissner@wogglebug.tiac.net>
13232         * Makefile.in (all-gdb): Depend on $(GDB_TK).
13233         * configure (GDB_TK): Set GDB_TK to either "all-tcl all-tk" or
13234         nothing depending on whether gdbtk is being built.
13236 Wed Jan  3 17:54:41 1996  Doug Evans  <dje@canuck.cygnus.com>
13238         * Makefile.in (newlib.tar.gz): Delete building of newlib's info files.
13240 Mon Jan  1 19:09:14 1996  Brendan Kehoe  <brendan@rtl.cygnus.com>
13242         * configure.in (noconfigdirs): Put ld or gas in this early, if the
13243         user specifically used --with-gnu-ld=no or --with-gnu-as=no.
13245 Sat Dec 30 16:08:57 1995  Doug Evans  <dje@canuck.cygnus.com>
13247         * config-ml.in: Add support for
13248         --disable-{softfloat,m68881,m68000,m68020} on m68*-*-*.
13249         Simplify setting of multidirs from --disable-foo.
13251 Fri Dec 29 07:56:11 1995  Michael Meissner  <meissner@tiktok.cygnus.com>
13253         * Makefile.in (EXTRA_GCC_FLAGS): If any of the make variables
13254         LANGUAGES, BOOT_CFLAGS, STMP_FIXPROTO, LIMITS_H_TEST,
13255         LIBGCC1_TEST, LIBGCC2_CFLAGS, LIBGCC2_INCLUDES, and ENQUIRE are
13256         non-empty, pass them on to the  GCC make.
13257         (all-bootstrap): New rule that is like all-gcc, except it executes
13258         the GCC bootstrap rule instead of the GCC all rule.
13260 Wed Dec 27 15:51:48 1995  Doug Evans  <dje@canuck.cygnus.com>
13262         * config-ml.in (ml_realsrcdir): New, to account for ${subdir}.
13264 Tue Dec 26 11:45:31 1995  Michael Meissner  <meissner@tiktok.cygnus.com>
13266         * config.guess (AViiON:dgux:*:*): Update from FSF to add pentium
13267         DG/UX support.
13269 Fri Dec 15 10:01:27 1995  Stan Cox  <coxs@dg-rtp.dg.com>
13271         * config.sub (i*86*) Change [345] to [3456]
13273 Wed Dec 20 17:41:40 1995  Brendan Kehoe  <brendan@lisa.cygnus.com>
13275         * configure.in (noconfigdirs): Add gas or ld if --with-gnu-as=no or
13276         --with-gnu-ld=no.
13278 Wed Dec 20 15:15:35 1995  Michael Meissner  <meissner@tiktok.cygnus.com>
13280         * config-ml.in (rs6000*, powerpc*): Add switches to control which
13281         AIX multilibs get built.
13283 Mon Dec 18 17:55:46 1995  Jason Molenda  (crash@phydeaux.cygnus.com)
13285         * configure.in (i386-win32): Don't build expect if we're not
13286         building the tcl subdir.
13288 Mon Dec 18 11:47:19 1995  Stan Shebs  <shebs@andros.cygnus.com>
13290         * Makefile.in: (configure-target-examples, all-target-examples):
13291         New targets, configure and build example programs.
13293 Fri Dec 15 16:13:03 1995  Stan Shebs  <shebs@andros.cygnus.com>
13295         * mpw-configure: If an mpw-config.in generated a file mk.sed,
13296         use it as input to sedit the generated MPW makefile.
13297         * mpw-README: Add a suggestion about Gestalt.h.
13299 Wed Dec 13 16:43:51 1995  Ian Lance Taylor  <ian@cygnus.com>
13301         * config.sub: Accept *-*-ieee*.
13303 Tue Dec 12 11:52:57 1995  Ian Lance Taylor  <ian@cygnus.com>
13305         * Makefile.in (local-distclean): Remove $(TARGET_SUBDIR).  From
13306         Ronald F. Guilmette <rfg@monkeys.com>.
13308 Mon Dec 11 15:31:58 1995  Jason Molenda  (crash@phydeaux.cygnus.com)
13310         * configure.in (host==powerpc-pe): Add many directories to noconfigdirs
13311         for powerpc-pe native.
13312         (target==i386-win32): add tcl, make to noconfigdirs if canadian cross.
13313         (target==powerpc-pe): duplicate i386-win32 entry.
13315 Sat Dec  9 14:58:28 1995  Jim Wilson  <wilson@chestnut.cygnus.com>
13317         * configure.in (noconfigdirs): Exclude target-newlib for all versions
13318         of vxworks, not just vxworks5.1.
13320 Mon Dec  4 12:05:40 1995  Stan Shebs  <shebs@andros.cygnus.com>
13322         * mpw-configure: Add support for exec-prefix.
13324 Mon Dec  4 10:22:50 1995  Jeffrey A. Law  <law@rtl.cygnus.com>
13326         * config.guess: Recognize HP model 816 machines as having
13327         a PA1.1 processor.
13329 Mon Dec  4 12:38:15 1995  Ian Lance Taylor  <ian@cygnus.com>
13331         * configure: Ignore new autoconf configure options.
13333 Thu Nov 30 16:57:33 1995  Per Bothner  <bothner@wombat.gnu.ai.mit.edu>
13335         * config.guess:  Recognize Pentium under SCO.
13336         From Robert Lipe <robertl@arnet.com>.
13338 Wed Nov 29 13:49:08 1995  J.T. Conklin  <jtc@rtl.cygnus.com>
13340         * configure.in (noconfigdirs): Disable target-libio on v810-*-*.
13342 Wed Nov 29 12:12:01 1995  Ian Lance Taylor  <ian@cygnus.com>
13344         * configure.in: Don't configure gas for alpha-dec-osf*.
13346 Tue Nov 28 17:16:48 1995  Ian Lance Taylor  <ian@cygnus.com>
13348         * configure.in: Default to --with-stabs for some targets for which
13349         it makes sense: mips*-*-*, alpha*-*-osf*, i[345]86*-*-sysv4* and
13350         i[345]86*-*-unixware*.
13352 Mon Nov 27 13:44:15 1995  Ian Lance Taylor  <ian@cygnus.com>
13354         * config-ml.in: Get list of multidirs using gcc --print-multi-lib
13355         rather than basing it on the target.  Simplify handling of options
13356         controlling which directories to configure.  Remove extraneous
13357         slash in multi-clean target.
13359 Fri Nov 24 17:29:29 1995  Doug Evans  <dje@deneb.cygnus.com>
13361         * config-ml.in: Prefix more variables with ml_ so they don't collide
13362         with configure's.
13364 Wed Nov 22 11:27:02 1995  Ian Lance Taylor  <ian@cygnus.com>
13366         * configure: Don't turn -v into --v.
13368 Tue Nov 21 16:48:02 1995  Doug Evans  <dje@deneb.cygnus.com>
13370         * configure.in (targargs): Fix typo.
13372         * Makefile.in (DEVO_SUPPORT): Add symlink-tree.
13374 Tue Nov 21 14:08:28 1995  Ian Lance Taylor  <ian@cygnus.com>
13376         * configure.in: Strip --host and --target options from
13377         CONFIG_ARGUMENTS, and always configure for --host only.  Add
13378         --with-cross-host option when building with a cross-compiler.
13379         * configure: Canonicalize the arguments put into config.status by
13380         always using `=' for an option with an argument.  Pass a presumed
13381         --host or --target explicitly.
13383 Fri Nov 17 17:50:30 1995  Stan Shebs  <shebs@andros.cygnus.com>
13385         * config.sub: Merge -macos*, -magic*, -pe*, and -win32 cases
13386         into general OS recognition case.
13388 Fri Nov 17 17:42:25 1995  Jason Molenda  (crash@phydeaux.cygnus.com)
13390         * configure.in (target_configdirs): add target-winsup only
13391         for win32 target systems.
13393 Thu Nov 16 14:04:47 1995  Ian Lance Taylor  <ian@cygnus.com>
13395         * Makefile.in (all-target-libgloss): Depend upon
13396         configure-target-newlib, since when libgloss is built it looks to
13397         see if the newlib directory exists.
13399 Wed Nov 15 14:47:52 1995  Ken Raeburn  <raeburn@cygnus.com>
13401         * Makefile.in (DEVO_SUPPORT): Use config-ml.in instead of
13402         cfg-ml-*.in.
13404 Wed Nov 15 11:45:23 1995  Ian Lance Taylor  <ian@cygnus.com>
13406         * configure: Handle LD and LD_FOR_TARGET when configuring a
13407         Canadian Cross.
13409 Tue Nov 14 14:56:11 1995  Jason Molenda  (crash@phydeaux.cygnus.com)
13411         * configure.in (target_libs): add target-winsup.
13412         (target==i386-win32): add patch diff flex make to $noconfigdirs.
13413         (target==ppcle-pe): remove ld from $noconfigdirs.
13415 Tue Nov 14 01:25:50 1995  Doug Evans  <dje@canuck.cygnus.com>
13417         * Makefile.in (CONFIGURE_TARGET_MODULES): Pass --with-target-subdir.
13418         Preserve relative path names in $srcdir.  Build symlink tree if
13419         configuring cross target dir and srcdir=. (= no VPATH support).
13420         (configure-target-libg++): Depend on configure-target-librx.
13421         * cfg-ml-com.in, cfg-ml-pos.in: Deleted.
13422         * config-ml.in: New file.
13423         * symlink-tree: New file.
13424         * configure: Ensure srcdir="." if that's what it is.
13426 Mon Nov 13 12:34:20 1995  Stan Shebs  <shebs@andros.cygnus.com>
13428         * mpw-README: Clarify some phrasing, add notes about CodeWarrior
13429         includes and FLEX_SKELETON setting.
13430         * mpw-configure (--with-gnu-ld): New option, controls whether
13431         to use PPCLink or ld with PowerMac GCC.
13432         * mpw-build.in (all-grez, do-grez, install-grez): New targets.
13433         * mpw-config.in: Configure grez if targeting Mac.
13435         * config.sub: Accept pmac and pmac-mpw as names for PowerMacs,
13436         accept mpw and mac-mpw as names for m68k Macs, change macos7 to
13437         just macos.
13438         * configure.in: Configure grez resource compiler if targeting Mac.
13439         * Makefile.in (all-grez, install-grez): New targets.
13441 Wed Nov  8 17:33:51 1995  Jason Merrill  <jason@yorick.cygnus.com>
13443         * configure: CXX defaults to gcc, not g++.  If we find
13444         gcc in the path, set CC to gcc -O2.
13446 Tue Nov  7 15:45:17 1995  Ian Lance Taylor  <ian@cygnus.com>
13448         * configure: Default ${build} correctly.  Avoid picking up extra
13449         spaces when reading CC and CXX from Makefile.  When doing a
13450         Canadian Cross, use plausible default values for numerous
13451         variables.
13452         * configure.in: When doing a Canadian Cross, don't try to
13453         configure tools whose configure script can't handle it.
13455 Mon Nov  6 19:32:17 1995  Jim Wilson  <wilson@chestnut.cygnus.com>
13457         * cfg-ml-com.in (sh-*-*): Add m2 and ml/m2 to multidirs.
13459 Sun Nov  5 00:15:41 1995  Per Bothner  <bothner@kalessin.cygnus.com>
13461         * configure:  Remove dubious bug reporting address.
13463 Fri Nov  3 08:17:54 1995  Per Bothner  <bothner@kalessin.cygnus.com>
13465         * Makefile.in ($(CONFIGURE_TARGET_MODULES)):  If subdir has
13466         configure script, run that instead of this directory's configure.
13467         In either case, print a message that we're configuring the sub-dir.
13469 Thu Nov  2 23:23:36 1995  Per Bothner  <bothner@kalessin.cygnus.com>
13471         * configure.in: Before checking for the existence of various files,
13472         use sed to filter out "target-".
13474 Thu Nov  2 13:24:56 1995  Ian Lance Taylor  <ian@cygnus.com>
13476         * Makefile.in (DO_X): Split rule to decrease command line length
13477         for systems with small ARG_MAX values.  From phdm@info.ucl.ac.be
13478         (Philippe De Muyter).
13480 Wed Nov  1 15:18:35 1995  Jason Molenda  (crash@phydeaux.cygnus.com)
13482         * Makefile.in (all-patch): depend on all-libiberty.
13484 Wed Nov  1 12:23:20 1995  Ian Lance Taylor  <ian@cygnus.com>
13486         * configure.in: If the only directory in target_configdirs which
13487         actually exists is libiberty, then set target_configdirs to empty,
13488         to avoid trying to build a target libiberty in a gas or gdb
13489         distribution.
13491 Tue Oct 31 17:52:39 1995  J.T. Conklin  <jtc@slave.cygnus.com>
13493         * configure.in (host_makefile_frag): Use m68k-sun-sunos* instead
13494         of m68k-sun-* when selecting mh-sun3 to avoid matching NetBSD/sun3
13495         systems.
13497 Tue Oct 31 16:57:32 1995  Jim Wilson  <wilson@chestnut.cygnus.com>
13499         * configure.in (copy_dirs): Use sys-include instead of include
13500         for --with-headers option.
13502 Tue Oct 31 10:29:36 1995  steve chamberlain  <sac@slash.cygnus.com>
13504         * Makefile.in, configure.in: Make winsup builds work with
13505         new scheme.
13507 Mon Oct 30 18:57:09 1995  Ian Lance Taylor  <ian@cygnus.com>
13509         * configure.in: Build the linker on AIX.
13511 Mon Oct 30 12:27:16 1995  Per Bothner  <bothner@kalessin.cygnus.com>
13513         * Makefile.in (CC_FOR_TARGET, CXX_FOR_TARGET):  Add $(TARGET_SUBDIR)
13514         where needed.
13516 Mon Oct 30 12:45:25 1995  Doug Evans  <dje@cygnus.com>
13518         * Makefile.in (all-gcc): Fix typo.
13520 Sat Oct 28 10:27:59 1995  Per Bothner  <bothner@kalessin.cygnus.com>
13522         * Makefile.in ($(CHECK_TARGET_MODULES)):  Fix typo.
13524 Fri Oct 27 23:14:12 1995  Per Bothner  <bothner@kalessin.cygnus.com>
13526         * configure.in:  Rename libFOO to target-libFOO, and xiberty
13527         to target-xiberty, to provide more flexibility.
13528         (target_subdir):  Define.  Create if cross.
13529         Set TARGET_SUBDIR in Makefile to ${target_subdir}.
13530         * Makefile.in:  Rename all-libFOO -> all-target-libFOO, all-xiberty
13531         -> all-target-libiberty, configure-libFOO -> configure-target-libFOO,
13532         check-libFOO -> check-target-libFOO, etc.
13533         ($(DO_X)):  Iterate over TARGET_CONFIGDIRS after SUBDIRS.
13534         ($(CONFIGURE_TARGET_MODULES), $(CHECK_TARGET_MODULES),
13535         $(ALL_TARGET_MODULES), $(INSTALL_TARGET_MODULES)): Update accordingly.
13536         (configure-target-XXX):  Depend on $(ALL_GCC), not all-gcc, to
13537         allow ALL_GCC="" to only configure.
13538         (DEVO_SUPPORT):  Add cfg-ml-com.in and cfg-ml-pos.in.
13539         (ETC_SUPPORT, ETC_SUPPORT_PFX):  Merge;  update 'taz' accordingly.
13540         (LIBGXX_SUPPORT_DIRS):  Remove xiberty.
13542 Sat Oct 28 01:53:49 1995  Ken Raeburn  <raeburn@cygnus.com>
13544         * Makefile.in (taz): Build "info" in etc explicitly.
13546 Fri Oct 27 09:32:30 1995  Stu Grossman  (grossman@cygnus.com)
13548         * configure.in:  Make sure that CC is undefined (as opposed to
13549         null) if toplevel/config/mh-{host} doesn't define it.  Fixes a
13550         problem with autoconf trying to configure on a host without GCC.
13552 Thu Oct 26 22:35:01 1995  Stan Shebs  <shebs@andros.cygnus.com>
13554         * mpw-configure: Set host alias from choice of host compiler,
13555         only use generic MPW Makefile sed if present, edit a file
13556         named "hacked_Makefile.in" instead of "Makefile.in" if present.
13557         * mpw-README: Add problem notes about CW6 and CW7.
13559 Thu Oct 26 05:45:10 1995  Ken Raeburn  <raeburn@kr-pc.cygnus.com>
13561         * Makefile.in (taz): Use ";" instead of ";;".
13563 Wed Oct 25 15:18:24 1995  Per Bothner  <bothner@kalessin.cygnus.com>
13565         * Makefile.in (taz):  Grep for '^diststuff:' or '^info:' in
13566         sub-directory Makefiles, instead of using DISTSTUFFDIRS and
13567         DISTDOCDIRS.
13568         (DISTSTUFFDIRS, DISTDOCDIRS):  Removed - no longer used.
13569         (newlib.tar.gz):  Don't pass DISTDOCDIRS to recursive make.
13571 Wed Oct 25 14:43:55 1995  Per Bothner  <bothner@kalessin.cygnus.com>
13573         * Makefile.in (DISTDOCDIRS):  Remove ld gprof bnutils gas libg++ gdb
13574         and gnats, because they are now subsumed by DISTSTUFFDIRS.
13575         Move bfd to DISTSTUFFDIRS.
13577 Tue Oct 24 18:19:09 1995  Jason Molenda  (crash@phydeaux.cygnus.com)
13579         * Makefile.in (X11_LIB): Removed.
13580         (X11_FLAGS_TO_PASS): pass only X11_EXTRA_CFLAGS and X11_EXTRA_LIBS.
13582         * configure.in (host_makefile_frag): mh-aix & mh-sun removed.
13584 Sun Oct 22 13:04:42 1995  Michael Meissner  <meissner@tiktok.cygnus.com>
13586         * cfg-ml-com.in (powerpc*): Shorten some of the multilib directory
13587         names.
13589 Fri Oct 20 18:02:10 1995  Michael Meissner  <meissner@tiktok.cygnus.com>
13591         * cfg-ml-com.in (powerpc*-eabi*): Add mcall-aixdesc varients.
13593 Thu Oct 19 10:40:57 1995  steve chamberlain  <sac@slash.cygnus.com>
13595         * configure.in (i[345]86-*-win32): Always build newlib.
13596         Don't configure cvs, autoconf or texinfo.
13597         * Makefile.in (LD_FOR_TARGET): New.
13598         (BASE_FLAGS_TO_PASS, EXTRA_TARGET_FLAGS, CONFIGURE_TARGET_MODULES):
13599         Pass down LD_FOR_TARGET.
13601 Wed Oct 18 15:53:56 1995  steve chamberlain  <sac@slash.cygnus.com>
13603         * winsup: New directory.
13604         * Makefile.in: Build winsup.
13605         * configure.in: Winsup is configured when target is win32.
13606         Can only build win32 target GDB when native.
13608 Mon Oct 16 09:42:31 1995  Jeffrey A Law  (law@cygnus.com)
13610         * config.guess: Recognize HP model 819 machines as having
13611         a PA 1.1 processor.
13613 Mon Oct 16 10:49:43 1995  Ian Lance Taylor  <ian@cygnus.com>
13615         * configure: Fix sed loop which substitutes for CC and CXX to
13616         avoid bug found in various sed implementations.
13618 Wed Oct 11 16:16:20 1995  Michael Meissner  <meissner@tiktok.cygnus.com>
13620         * cfg-ml-com.in (powerpc-*-eabisim): Delete separate rule for
13621         simulator.  Use standard powerpc-*-eabi*.
13623 Mon Oct  9 17:21:56 1995  Ian Lance Taylor  <ian@cygnus.com>
13625         * configure.in: Stop putting gas and binutils in noconfigdirs for
13626         powerpc-*-aix* and rs6000-*-*.
13628 Mon Oct  9 12:38:40 1995  Michael Meissner  <meissner@cygnus.com>
13630         * cfg-ml-com.in (powerpc*-*-eabisim*): Add support for building
13631         -mcall-aixdesc libraries.
13633 Fri Oct  6 16:17:57 1995  Ken Raeburn  <raeburn@cygnus.com>
13635         Mon Sep 25 22:49:32 1995  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
13637         * config.sub (arm | armel | armeb): Fix shell syntax.
13639 Fri Oct  6 14:40:28 1995  Michael Meissner  <meissner@tiktok.cygnus.com>
13641         * cfg-ml-com.in ({powerpc,rs6000}-ibm-aix*): Add multilibs for
13642         -msoft-float and -mcpu=common support.
13643         (powerpc*-*-eabisim*): Add support for building -mcall-aix
13644         libraries.
13646 Thu Oct  5 13:26:37 1995  Brendan Kehoe  <brendan@lisa.cygnus.com>
13648         * configure.in: Allow configuration and build of emacs19 for the alpha.
13650 Wed Oct  4 22:05:36 1995  Jason Molenda  (crash@phydeaux.cygnus.com)
13652         * configure.in (CC): Get ^CC, not just any old CC, from
13653         ${host_makefile_frag}.
13655 Wed Oct  4 21:55:00 1995  Jason Molenda  (crash@phydeaux.cygnus.com)
13657         * configure.in (CC): Try to get CC from
13658         ${srcdir}/${host_makefile_frag}, not ${host_makefile_frag}.
13660 Wed Oct  4 21:44:12 1995  Jason Molenda  (crash@phydeaux.cygnus.com)
13662         * Makefile.in (TARGET_CONFIGDIRS): configure targetdirs
13663         only if it exists in $(srcdir).
13665 Wed Oct  4 11:52:31 1995  Ian Lance Taylor  <ian@cygnus.com>
13667         * configure: If CC and CXX are not set in the environment, set
13668         them, based on either an existing Makefile or on searching for gcc
13669         in PATH.  Substitute for CC and CXX in Makefile.
13670         * configure.in: Remove libm from target_libs.  Separate
13671         target_configdirs from configdirs.  If CC is not set in
13672         environment, try to get it from a host Makefile fragment.  Rewrite
13673         changes of configdirs to use skipdirs instead.  A few minor
13674         tweaks.  Take directories out of target_configdirs as they are
13675         taken out of configdirs.  Remove existing Makefile files from
13676         subdirectories.  Substitute for TARGET_CONFIGDIRS and
13677         CONFIG_ARGUMENTS in Makefile.
13678         * Makefile.in (TARGET_CONFIGDIRS): New variable, automatically set
13679         by configure.in.
13680         (CONFIG_ARGUMENTS): Likewise.
13681         (CONFIGURE_TARGET_MODULES): New variable.
13682         ($(DO_X)): Loop over TARGET_CONFIGDIRS as well as SUBDIRS.
13683         ($(CONFIGURE_TARGET_MODULES)): New target.
13684         (configure-libg++, configure-libio): New targets.
13685         (all-libg++): Depend upon configure-libg++.
13686         (all-libio): Depend upon configure-libio.
13687         (configure-libgloss, all-libgloss): New targets.
13688         (configure-libstdc++): New target.
13689         (all-libstdc++): Depend upon configure-libstdc++.
13690         (configure-librx, all-librx): New targets.
13691         (configure-newlib): New target.
13692         (all-newlib): Depend upon configure-newlib
13693         (configure-xiberty): New target.
13694         (all-xiberty): Depend upon configure-xiberty.
13696 Sat Sep 30 04:32:59 1995  Jason Molenda (crash@phydeaux.cygnus.com)
13698         * configure.in (host i[345]86-*-win32):  Expand the
13699         noconfigdirs again.
13701 Thu Sep 28 21:18:49 1995  Stan Shebs  <shebs@andros.cygnus.com>
13703         * mpw-configure: Fix sed command file name.
13705 Thu Sep 28 17:39:56 1995  steve chamberlain  <sac@slash.cygnus.com>
13707         * configure.in (host i[345]86-*-win32): Reduce the
13708         noconfigdirs again.
13710 Wed Sep 27 12:24:00 1995  Ian Lance Taylor  <ian@cygnus.com>
13712         * configure.in: Don't configure ld and gdb for powerpc*-*-winnt*
13713         or powerpc*-*-pe*, since they are not yet supported.
13715 Tue Sep 26 14:30:01 1995  Stan Shebs  <shebs@andros.cygnus.com>
13717         Add PowerMac support and many other enhancements.
13718         * mpw-configure: New option --cc to select compiler to use,
13719         paste options set according to --cc into the generated
13720         Makefile, generate the Makefile by sed'ing the Unix Makefile.in
13721         if mpw-make.sed is present.
13722         * mpw-config.in: Don't test for gC1, test for mpw-touch,
13723         add forward includes for PowerPC include files.
13724         * mpw-build.in: Build using Makefile.PPC if present.
13725         (do-byacc, etc): Remove separate version resource builds.
13726         (do-gas): Build "stamps" before "all".
13727         (do-gcc): Build "stamps-h" and "stamps-c" before "all".
13728         * mpw-README: Update to reflect --cc option, PowerMac support,
13729         and recently-reported compatibility problems.
13731 Fri Sep 22 12:15:42 1995  Doug Evans  <dje@deneb.cygnus.com>
13733         * cfg-ml-com.in (m68*-*-*): Only build multilibs for
13734         embedded m68k systems (-aout, -coff, -elf, -vxworks).
13735         (--with-multilib-top): Pass to recursive invocations.
13737 Tue Sep 19 13:51:05 1995  J.T. Conklin  <jtc@blues.cygnus.com>
13739         * configure.in (noconfigdirs): Disable libg++ and libstdc++ on
13740         v810-*-*.
13742 Mon Sep 18 23:08:26 1995  J.T. Conklin  <jtc@rtl.cygnus.com>
13744         * configure.in (noconfigdirs): Disable bfd, binutils, gas, gcc,
13745         gdb, ld and opcodes on v810-*-*.
13747 Tue Sep 12 18:03:31 1995  Ian Lance Taylor  <ian@cygnus.com>
13749         * Makefile.in (DO_X): Change do-realclean to do-maintainer-clean.
13750         (local-maintainer-clean): New target.
13751         (maintainer-clean): New target.
13752         (realclean): Just depend upon maintainer-clean.
13754 Fri Sep  8 17:11:14 1995  J.T. Conklin  <jtc@rtl.cygnus.com>
13756         * configure.in (noconfigdirs): Disable gdb on m68k-*-netbsd*.
13758 Fri Sep  8 16:46:29 1995  Ian Lance Taylor  <ian@cygnus.com>
13760         * configure.in: Build ld in mips*-*-bsd* case.
13762 Thu Sep  7 20:03:41 1995  Ken Raeburn  <raeburn@cygnus.com>
13764         * config.sub: Accept -lites* OS.  From Ian Dall.
13766 Fri Sep  1 08:06:58 1995  James G. Smith  <jsmith@beauty.cygnus.com>
13768         * config.sub: recognise mips64vr4300 and mips64vr4300el as valid
13769         targets.
13771 Wed Aug 30 21:06:50 1995  Jason Molenda  (crash@phydeaux.cygnus.com)
13773         * configure.in: treat i386-win32 canadian cross the same as
13774         i386-go32 canadian cross.
13776 Thu Aug 24 14:53:20 1995  Michael Meissner  <meissner@tiktok.cygnus.com>
13778         * cfg-ml-com.in (powerpc*-*-eabisim): Add support for PowerPC
13779         running under the simulator to build a reduced set of libraries.
13780         (powerpc-*-eabiaix): Add fine grained multilib support added to
13781         other powerpc targets yesterday.
13783 Wed Aug 23 09:41:56 1995  Michael Meissner  <meissner@tiktok.cygnus.com>
13785         * cfg-ml-com.in (powerpc*): Add support for -disable-biendian,
13786         -disable-softfloat, -disable-relocatable, -disable-aix, and
13787         -disable-sysv to control which multilib libraries get built.
13789 Thu Aug 17 16:03:41 1995  Ken Raeburn  <raeburn@kr-laptop.cygnus.com>
13791         * configure: Add Makefile.tem to list of files to remove in trap
13792         handler.
13794 Mon Aug 14 19:27:56 1995  Per Bothner  <bothner@kalessin.cygnus.com>
13796         * config.guess (*Linux*):  Add missing "exit"s.
13797         Also, need specific check for alpha-unknown-linux (uses COFF).
13799 Fri Aug 11 15:38:20 1995  Per Bothner  <bothner@kalessin.cygnus.com>
13801         * config.guess:  Merge with FSF:
13803         Wed Jun 28 17:57:27 1995  David Edelsohn  <edelsohn@mhpcc.edu>
13804         * config.guess (AIX4): More robust release numbering discovery.
13806         Thu Jun 22 19:01:24 1995  Kenneth Stailey  (kstailey@eagle.dol-esa.gov)
13807         * config.guess (i386-sequent-ptx): Properly get version number.
13809         Thu Jun 22 18:36:42 1995  Uwe Seimet  (seimet@iris1.chemie.uni-kl.de)
13810         * config.guess (mips:*:4*:UMIPS): New case.
13812 Mon Aug  7 09:21:35 1995  Doug Evans  <dje@canuck.cygnus.com>
13814         * configure.in (i386-go32 host): Fix typo (deja-gnu -> dejagnu).
13815         (i386-win32 host): Likewise.  Don't build readline.
13817 Sat Aug  5 09:51:49 1995  Fred Fish  <fnf@rtl.cygnus.com>
13819         * Makefile.in (GDBTK_SUPPORT_DIRS):  Define and pass as part of
13820         SUPPORT_FILES to submakes.
13822 Fri Aug  4 13:04:36 1995  Fred Fish  <fnf@cygnus.com>
13824         * Makefile.in (GDB_SUPPORT_DIRS): Add utils.
13825         (DEVO_SUPPORT): Add mpw-README, mpw-build.in, mpw-config.h and
13826         mpw-configure.
13828 Wed Aug  2 16:32:40 1995  Ken Raeburn  <raeburn@cygnus.com>
13830         * configure.in (appdirs): Use =, not ==, in test expression when
13831         trying to build the text to print in the warning message for
13832         Solaris users.
13834 Mon Jul 31 09:56:18 1995  steve chamberlain  <sac@slash.cygnus.com>
13836         * cfg-ml-com.in (z8k-*-coff): Add 'std' multilib build.
13838 Fri Jul 28 00:16:31 1995  Jeffrey A. Law  <law@rtl.cygnus.com>
13840         * config.guess: Recognize lynx-2.3.
13842 Thu Jul 27 15:47:59 1995  steve chamberlain  <sac@slash.cygnus.com>
13844         * config.sub (z8ksim): Deleted
13845         (z8k-*-coff): New, this is the one true name of the target.
13847 Thu Jul 27 14:33:33 1995  Doug Evans  <dje@canuck.cygnus.com>
13849         * cfg-ml-pos.in (dotdot): Work around SunOS sed bug.
13851 Thu Jul 27 13:31:05 1995  Fred Fish  (fnf@cygnus.com)
13853         * config.guess (*:Linux:*:*): First try asking the linker what the
13854         default object file format is (elf, aout, or coff).  Then if this
13855         fails, try previous methods.
13857 Thu Jul 27 11:28:17 1995  J.T. Conklin  <jtc@rtl.cygnus.com>
13859         * configure.in: Don't build newlib for *-*-vxworks5.1.
13861 Thu Jul 27 11:18:47 1995  Brendan Kehoe  <brendan@lisa.cygnus.com>
13863         * configure.in: Don't build newlib for a29k-*-vxworks5.1.
13864         * test-build.mk: Add setting of --with-headers for a29k-vxworks5.1.
13866 Tue Jul 25 21:25:39 1995  Doug Evans  <dje@canuck.cygnus.com>
13868         * cfg-ml-pos.in (MULTITOP): Trim excess trailing "/.".
13870 Fri Jul 21 10:41:12 1995  Doug Evans  <dje@canuck.cygnus.com>
13872         * cfg-ml-com.in: New file.
13873         * cfg-ml-pos.in: New file.
13875 Wed Jul 19 00:37:27 1995  Jeffrey A. Law  <law@rtl.cygnus.com>
13877         * COPYING.NEWLIB: Add HP free copyright to list.
13879 Tue Jul 18 10:58:51 1995  Michael Meissner  <meissner@tiktok.cygnus.com>
13881         * config.sub: Recognize -eabi* for the system, not just -eabi.
13883 Mon Jul  3 13:44:51 1995  Steve Chamberlain  <sac@slash.cygnus.com>
13885         * Makfile.in (DLLTOOL_FOR_TARGET): New name, pass it down.
13886         * config.sub, configure.in (win32): New target and host.
13888 Wed Jun 28 23:57:08 1995  Steve Chamberlain  <sac@slash.cygnus.com>
13890         * configure.in: Add i386-pe configuration.
13892 Fri Jun 23 14:28:44 1995  Stan Shebs  <shebs@andros.cygnus.com>
13894         * mpw-build.in (install): Install GDB after LD.
13896 Thu Jun 22 17:10:53 1995  Stan Shebs  <shebs@andros.cygnus.com>
13898         * mpw-config.in (elf/mips.h): Always forward-include, needed
13899         for GDB to build.
13901 Wed Jun 21 15:17:30 1995  Rob Savoye  <rob@darkstar.cygnus.com>
13903         * testsuite: New directory for customer acceptance and whole tool
13904         chain tests.
13906 Wed Jun 21 16:50:29 1995  Ken Raeburn  <raeburn@cujo.cygnus.com>
13908         * configure: If per-host line isn't found, but AC_OUTPUT is found
13909         and a configure script exists, run it instead.
13911 Thu Jun 15 21:09:24 1995  Per Bothner  <bothner@kalessin.cygnus.com>
13913         * config.guess:  Update from FSF, for alpha-dec-winnt3.5 and  Crays.
13915 Tue Jun 13 21:43:27 1995  Rob Savoye  <rob@darkstar.cygnus.com>
13917         * configure: Set build_{cpu,vendor,os,alias} to host values when
13918         --build isn't specified.
13920 Mon Jun  5 18:26:36 1995  Jason Merrill  <jason@phydeaux.cygnus.com>
13922         * Makefile.in (PICFLAG, PICFLAG_FOR_TARGET): New macros.
13923         (FLAGS_TO_PASS): Pass them.
13924         (EXTRA_TARGET_FLAGS): Ditto.
13926 Wed May 31 22:27:42 1995  Jim Wilson  <wilson@chestnut.cygnus.com>
13928         * Makefile.in (all-libg++): Depend on all-libstdc++.
13930 Thu May 25 22:40:59 1995  J.T. Conklin  <jtc@rtl.cygnus.com>
13932         * configure.in (noconfigdirs): Enable all packages for
13933           i386-unknown-netbsd.
13935 Sat May 20 13:22:31 1995  Angela Marie Thomas  <angela@cirdan.cygnus.com>
13937         * configure.in (noconfigdirs): Don't configure tk for i386-go32
13938         hosted builds (DOS builds)
13940 Thu May 18 18:08:49 1995  Ken Raeburn  <raeburn@kr-laptop.cygnus.com>
13942         Changes for ARM based on patches from Richard Earnshaw:
13943         * config.sub: Handle armeb and armel.
13944         * configure.in: Omit arm linker only for riscix.
13946 Thu May 11 17:23:26 1995  Per Bothner  <bothner@kalessin.cygnus.com>
13948         * config.guess:  Update from FSF.
13950 Tue May  9 15:52:05 1995  Michael Meissner  <meissner@cygnus.com>
13952         * config.sub: Recognize powerpcle as the little endian varient of
13953         the PowerPC.  Recgonize ppc as a PowerPC variant, and ppcle as a
13954         powerpcle variant.  Convert pentium into i586, not i486.  Add p5
13955         alias for i586.  Map new x86 variants p6, k5, nexgen into i586
13956         temporarily.
13958 Tue May  2 16:29:41 1995  Jeff Law  (law@snake.cs.utah.edu)
13960         * configure.in (hppa*-*-lites*): Treat like hppa*-*-*elf*.
13962 Sun Apr 30 21:38:09 1995  Jeff Law  (law@snake.cs.utah.edu)
13964         * config.sub: Accept -lites* as a basic system type.
13966 Thu Apr 27 11:33:29 1995  Michael Meissner  (meissner@cygnus.com)
13968         * config.guess (*:Linux:*:*): Check for whether the pre-BFD linker is
13969         installed, and if so return linuxoldld as the system name.
13971 Wed Apr 26 10:59:02 1995  Jeff Law  (law@snake.cs.utah.edu)
13973         * config.guess: Add hppa1.1-hp-lites support.
13975 Tue Apr 25 11:08:11 1995  Rob Savoye  <rob@darkstar.cygnus.com>
13977         * configure.in: Don't build newlib for m68k-vxworks5.1.
13979 Wed Apr 19 17:02:43 1995  Jim Wilson  <wilson@chestnut.cygnus.com>
13981         * configure.in (mips-sgi-irix6): Use mh-irix5.
13983 Fri Apr 14 15:21:17 1995  Doug Evans  <dje@chestnut.cygnus.com>
13985         * Makefile.in (all-gcc): Depend on all-ld (for libgcc1-test).
13987 Wed Apr 12 16:06:01 1995  Jason Merrill  <jason@phydeaux.cygnus.com>
13989         * test-build.mk: Enable building of shared libraries on IRIX 5 and
13990         OSF/1.  Fix compiler flags.
13991         * build-all.mk: Support Linux and OSF/1 3.0.  Fix compiler flags.
13993 Tue Apr 11 18:55:40 1995  Doug Evans  <dje@canuck.cygnus.com>
13995         * configure.in: Recognize --with-newlib.
13996         (sparc-*-sunos4*): Build sim, dejagnu, expect, tcl if cross target.
13998 Mon Apr 10 14:38:20 1995  Jason Molenda (crash@phydeaux.cygnus.com)
14000         * Makefile.in: move {all,check,install}-gdb from *_MODULES
14001         to *_X11_MODULES due to gdbtk needing X include files et al.
14003 Mon Apr 10 11:42:22 1995  Stan Shebs  <shebs@andros.cygnus.com>
14005         Merge in support for Mac MPW as a host.
14006         (Old change descriptions retained for informational value.)
14008         * mpw-config.in: Add generic include forwards for cpu-specific
14009         include files in aout and elf directories.
14011         * mpw-configure: Added copyright.
14012         * mpw-config.in: Check for presence of required build tools.
14013         (target_libs): Add newlib.
14014         (target_tools): Add examples.
14015         (Read Me): Generate as "Read Me for MPW" instead.
14016         * mpw-build.in: Base sub-builds on all-foo instead of do-foo.
14017         (all-byacc, do-byacc, all-flex, do-flex, do-newlib): New actions.
14018         (do-gas, do-gcc, do-gdb, do-ld): Build Version.r first.
14020         * mpw-configure: Remove subdir-specific makefile hackery,
14021         delete mk.tmp after using it.
14023         * mpw-build.in (all): Display start and end times.
14025         * mpw-configure (host_canonical): Set.
14026         (target_cpu): Always add to makefiles.
14027         (ARCHDEFS, EMUL): Add to makefile only if nonempty.
14028         (TM_FILE, XM_FILE, NM_FILE): No longer add to makefile.
14029         (mpw-mh-mpw): Look for in srcdir and srcroot.
14030         Use sed instead of mpw-edit-prefix to edit prefix definitions.
14032         * mpw-build.in: (install-only): New target.
14034         * mpw-configure (host_alias, target_alias): Rename from hostalias
14035         and targetalias, add into generated Makefile.
14036         (mk.tmp): If present, add into generated Makefile.
14037         * mpw-build.in (all-gas): Build config.h first before gas proper.
14039         * mpw-configure (config.status): Write only if changed.
14040         * mpw-config.in (readline): Configure it (not built, just used for
14041         definitions).
14043         * mpw-config.in (elf/mips.h): Add a forward include.
14045         * mpw-config.in: Forward-include most .h files in include into
14046         extra-include.
14047         (readline): Don't build.
14048         mpw-build.in (install): Install GDB.
14050         * mpw-configure (prefix, mpw_prefix): Handle it.
14051         * mpw-config.in (mmalloc, readline): Don't configure.
14052         * mpw-build.in (thisscript): Rename to ThisScript.
14053         Use mpw-build instead of BuildProgram everywhere.
14054         (mmalloc, readline): Don't build.
14055         * mpw-README: New file, basic documentation about the MPW port.
14057         * mpw-config.in: Use forward-include to create include files.
14059         * mpw-configure: Add more things to the top of each configured
14060         Makefile, including contents of config/mpw-mh-mpw.
14061         * mpw-config.in (extra-include): Create this directory and fill it
14062         with Posix-like include files when configuring.
14064         * config.sub (apple, mac, mpw): Add various aliases.
14066         * mpw-build.in: New file, top-level build script fragment for MPW.
14067         * mpw-configure: New file, configure script for MPW.
14068         * mpw-config.in: New file, config fragment for MPW.
14070 Fri Apr  7 19:33:16 1995  Jim Kingdon  (kingdon@lioth.cygnus.com)
14072         * configure.in (host_libs): Remove glob, since it is gone from the
14073         sources.
14075 Fri Mar 31 11:36:17 1995  Jason Molenda  (crash@phydeaux.cygnus.com)
14077         * Makefile.in: define empty GDB_NLM_DEPS var.
14079         * configure.in(target_makefile_frag): use config/mt-netware
14080         for netware targets.
14082 Thu Mar 30 13:51:43 1995  Ian Lance Taylor  <ian@cygnus.com>
14084         * config.sub: Merge in recent FSF changes.  Remove linux special
14085         cases.
14087 Tue Mar 28 14:47:34 1995  Jason Molenda (crash@phydeaux.cygnus.com)
14089         Revert this change:
14091         Tue Mar 30 10:03:09 1993  Ian Lance Taylor  (ian@cygnus.com)
14093                 * build-all.mk: Use CC=cc -Xs on Solaris.
14095 Tue Mar 21 10:43:32 1995  Jim Kingdon  (kingdon@lioth.cygnus.com)
14097         * glob/*: Removed.  Schauer's 24 Feb 1994 readline change made us
14098         stop using it.
14099         * Makefile.in: Nuke all references to glob subdirectory.
14101 Thu Mar 16 13:35:30 1995  Jason Merrill  <jason@phydeaux.cygnus.com>
14103         * configure.in: Fix --enable-shared logic in per-host.
14105 Mon Mar 13 12:33:15 1995  Ian Lance Taylor  <ian@cygnus.com>
14107         * configure.in (*-hp-hpux[78]*): Use mh-hpux8.
14109 Mon Mar  6 10:21:58 1995  Jim Kingdon  (kingdon@lioth.cygnus.com)
14111         * configure.in (noconfigdirs): Don't build gas on AIX, for
14112         powerpc*-*-aix* as well as for rs6000*-*-aix*.
14114 Wed Mar  1 12:51:53 1995  Ian Lance Taylor  <ian@cygnus.com>
14116         * configure: Fix --cache-file to work if the file argument is a
14117         relative path.
14119 Tue Feb 28 17:36:07 1995  Ian Lance Taylor  <ian@cygnus.com>
14121         * configure: If the --cache-file is used, pass it down to
14122         configure in subdirectories.
14124 Mon Feb 27 12:52:46 1995  Kung Hsu  <kung@mexican.cygnus.com>
14126         * config.sub: add vxworks29k configuration.
14128 Fri Feb 10 16:12:26 1995  Ken Raeburn  <raeburn@cujo.cygnus.com>
14130         * Makefile.in (taz): Do "diststuff" part quietly.
14132 Sun Feb  5 14:16:35 1995  Doug Evans  <dje@canuck.cygnus.com>
14134         * config.sub: Mini-merge with gcc/config.sub.
14136 Sat Feb  4 12:11:35 1995  Jim Wilson  <wilson@chestnut.cygnus.com>
14138         * config.guess (IRIX): Sed - to _.
14140 Fri Feb  3 11:54:42 1995  J.T. Conklin  <jtc@rtl.cygnus.com>
14142         * Makefile.in (source-vault, binary-vault): New targets.
14144 Thu Jan 26 13:00:11 1995  Michael Meissner  <meissner@cygnus.com>
14146         * config.sub: Recognize -eabi as a basic system type.
14148 Thu Jan 12 13:13:23 1995  Jason Merrill  <jason@phydeaux.cygnus.com>
14150         * configure.in (enable_shared stuff): Fix typo.
14152 Thu Jan 12 01:36:51 1995  deanm@medulla.LABS.TEK.COM (Dean Messing)
14154         * Makefile.in (BASE_FLAGS_TO_PASS): Fix typo in passing LIBCXXFLAGS*.
14156 Wed Jan 11 16:29:53 1995  Jason Merrill  <jason@phydeaux.cygnus.com>
14158         * Makefile.in (LIBCXXFLAGS_FOR_TARGET): Add -fno-implicit-templates.
14160 Mon Jan  9 12:48:01 1995  Jim Kingdon  <kingdon@lioth.cygnus.com>
14162         * configure.in (rs6000-*-*): Don't build gas.
14164 Wed Jan  4 23:53:49 1995  Ian Lance Taylor  <ian@tweedledumb.cygnus.com>
14166         * Makefile.in: Use /x/x/ instead of /brokensed/brokensed/, to
14167         reduce command line length.
14168         (AS_FOR_TARGET): Check for as.new, not Makefile.
14169         (NM_FOR_TARGET): Check for nm.new, not Makefile.
14171 Wed Jan  4 13:02:39 1995  Per Bothner  <bothner@kalessin.cygnus.com>
14173         * config.guess:  Merge from FSF.
14175 Thu Dec 15 17:11:37 1994  Ian Lance Taylor  <ian@sanguine.cygnus.com>
14177         * configure: Don't use $ when handling program_suffix.
14179 Mon Dec 12 12:09:37 1994  Stu Grossman  (grossman@cygnus.com)
14181         * configure.in:  Configure tk for hppa/hpux.
14183 Fri Dec  2 15:55:38 1994  Per Bothner  <bothner@kalessin.cygnus.com>
14185         * Makefile.in (LIBGXX_SUPPORT_DIRS):  Add libstdc++.
14187 Tue Nov 29 19:37:56 1994  Per Bothner  <bothner@kalessin.cygnus.com>
14189         * Makefile.in:  Move -fno-implicit-template from CXXFLAGS
14190         to LIBCXXFLAGS.  Tests are better run without it.
14192 Wed Nov 23 10:29:25 1994  Brendan Kehoe  (brendan@lisa.cygnus.com)
14194         * Makefile.in (all-ispell): Depend on all-emacs19 instead of all-emacs.
14196 Mon Nov 21 11:14:01 1994  J.T. Conklin  <jtc@rtl.cygnus.com>
14198         * configure.in (*-*-netware*): Don't configure xiberty.
14200 Mon Nov 14 08:49:15 1994  Stu Grossman  (grossman@cygnus.com)
14202         * configure.in:  Remove tk from native_only list.
14204 Fri Nov 11 15:31:26 1994  Bill Cox  (bill@rtl.cygnus.com)
14206         * build-all.mk: Add mips-ncd-elf target to sun4 targets
14207           for special NCD build.
14209 Mon Nov  7 20:58:17 1994  Ken Raeburn  <raeburn@cujo.cygnus.com>
14211         * Makefile.in (DEVO_SUPPORT): Remove configure.bat and
14212         makeall.bat, they're only useful for binutils snapshots.
14213         (binutils.tar.gz, gas+binutils.tar.gz): Add configure.bat and
14214         makeall.bat to specified SUPPORT_FILES.
14216 Mon Nov  7 17:25:18 1994  Bill Cox  (bill@cirdan.cygnus.com)
14218         * build-all.mk: Add Ericsson targets to sun4 and solaris
14219           hosts.  Add  BNR's sun4 target to solaris host, so their
14220           build-from-source will be tested in-house first.
14222 Sat Nov  5 18:43:30 1994  Jason Merrill  (jason@phydeaux.cygnus.com)
14224         * Makefile.in (LIBCFLAGS): New variable.
14225         (CFLAGS_FOR_TARGET): Ditto.
14226         (LIBCFLAGS_FOR_TARGET): Ditto.
14227         (LIBCXXFLAGS): Ditto.
14228         (CXXFLAGS_FOR_TARGET): Ditto.
14229         (LIBCXXFLAGS_FOR_TARGET): Ditto.
14230         (BASE_FLAGS_TO_PASS): Pass them.
14231         (EXTRA_TARGET_FLAGS): Ditto.
14233         * configure.in: Support --enable-shared.
14235 Sat Nov  5 15:44:00 1994  Per Bothner  <bothner@kalessin.cygnus.com>
14237         * configure.in (target_libs):  Include libstdc++ again.
14238         * config.guess:  Update from FSF (for FreeBSD).
14240 Thu Nov  3 16:32:30 1994  Ken Raeburn  <raeburn@cujo.cygnus.com>
14242         * Makefile.in (DEVO_SUPPORT): Include configure.bat and
14243         makeall.bat.
14244         (DISTDOCDIRS): Add `etc'.
14245         (ETC_SUPPORT_PFX): New variable.
14246         (taz): Include anything from etc starting with a word in
14247         ETC_SUPPORT_PFX.
14249 Wed Oct 26 16:19:35 1994  Ian Lance Taylor  <ian@sanguine.cygnus.com>
14251         * config.sub: Update for recent FSF changes.  Remove obsolete
14252         h8300hds entry.  Add -windows* and -osx as basic os.  Minor
14253         spacing changes.
14255 Thu Oct 20 18:41:56 1994  Per Bothner  <bothner@kalessin.cygnus.com>
14257         * configure.in (target_libs):  Remove libstdc++ for libg++-2.6.1.
14259         * config.guess:  Merge with FSF.
14260         * configure.in:  Match on i?86-ncr-sysv4.3, not i?86-ncr-sysv43.
14262 Thu Oct 20 19:26:56 1994  Ken Raeburn  <raeburn@cujo.cygnus.com>
14264         * configure: Since the "trap 0" handler will override the exit
14265         status on many systems, only use it for "exit 1", and make it set
14266         a non-zero exit status; reset it before "exit 0".  Also, check
14267         exit status of config.sub, and error out if it failed.
14269 Wed Oct 19 18:49:55 1994  Rob Savoye  (rob@cygnus.com)
14271         * Makefile.in: (ALL_TARGET_MODULES,INSTALL_TARGET_MODULES) Build
14272         and install libgloss.
14274 Tue Oct 18 15:25:24 1994  Ian Lance Taylor  <ian@sanguine.cygnus.com>
14276         * Makefile.in (all-binutils): Depend upon all-byacc.
14278         * configure.in: Don't build emacs on Irix 5.
14280 Mon Oct 17 16:22:12 1994  J.T. Conklin  (jtc@phishhead.cygnus.com)
14282         * configure.in (*-*-netware*): Add libio.
14284 Thu Oct 13 15:51:20 1994  Jason Merrill  (jason@phydeaux.cygnus.com)
14286         * Makefile.in (ALL_TARGET_MODULES): Add libstdc++.
14287         (CHECK_TARGET_MODULES): Ditto.
14288         (INSTALL_TARGET_MODULES): Ditto.
14289         (TARGET_LIBS): Ditto.
14290         (all-libstdc++): Note dependencies.
14292 Thu Oct 13 01:43:08 1994  Ken Raeburn  <raeburn@cujo.cygnus.com>
14294         * Makefile.in (BINUTILS_SUPPORT_DIRS): Add gas.
14296 Tue Oct 11 12:12:29 1994  Jason Merrill  (jason@phydeaux.cygnus.com)
14298         * Makefile.in (CXXFLAGS): Use -fno-implicit-templates instead of
14299         -fexternal-templates.
14301         * configure.in (target_libs): Add libstdc++.
14302         (noconfigdirs): Add libstdc++ as appropriate.
14304 Thu Oct  6 18:00:54 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14306         * config.guess:  Update from FSF.
14308 Tue Oct  4 12:05:42 1994  Ian Lance Taylor  <ian@sanguine.cygnus.com>
14310         * configure: Use ${config_shell} when running ${configsub}.
14312 Mon Oct  3 14:28:34 1994  Doug Evans  <dje@canuck.cygnus.com>
14314         * config.sub: No longer recognize h8300h.
14316 Mon Oct  3 12:40:54 1994  Ian Lance Taylor  <ian@sanguine.cygnus.com>
14318         * config.sub: Remove extraneous differences between config.sub and
14319         gcc/config.sub.
14321 Sat Oct  1 00:23:12 1994  Ken Raeburn  <raeburn@cujo.cygnus.com>
14323         * Makefile.in (DISTSTUFFDIRS): Add gas.
14325 Thu Sep 22 19:04:55 1994  Doug Evans  (dje@canuck.cygnus.com)
14327         * COPYING.NEWLIB: New file.
14329 Mon Sep 19 18:25:40 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14331         * config.guess (HP-UX):  Patch from Harlan Stenn
14332         <harlan@landmark.com> to also emit release level.
14334 Wed Sep  7 13:15:25 1994  Jim Wilson  (wilson@sphagnum.cygnus.com)
14336         * config.guess (sun4*:SunOS:*:*): Change '-JL' to '_JL'.
14338 Tue Sep  6 23:23:18 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14340         * config.sub:  Merge nextstep cleanup from FSF.
14342 Mon Sep  5 05:01:30 1994  Ken Raeburn  (raeburn@kr-pc.cygnus.com)
14344         * configure.in (arm-*-*): Don't configure ld for this target.
14346 Thu Sep  1 09:35:00 1994  J.T. Conklin  (jtc@phishhead.cygnus.com)
14348         * configure.in (*-*-netware): don't configure libg++, libio,
14349           librx, or newlib.
14351 Wed Aug 31 13:52:08 1994  Ian Lance Taylor  (ian@sanguine.cygnus.com)
14353         * configure.in (alpha-dec-osf*): Use osf*, not osf1*.  Don't
14354         configure ld--it works, but it doesn't support shared libraries.
14356 Sun Aug 28 18:13:45 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14358         * config.guess (*-unknown-freebsd*):  Get rid of possible
14359         trailing "(Release)" in version string.
14360         Patch from Paul Richards <paul@isl.cf.ac.uk>.
14362 Sat Aug 27 15:00:49 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14364         * config.guess:  Fix i486-ncr-sysv43 -> i486-ncr-sysv4.3.
14365         Fix type: *-next-neststep -> *-next-nextstep.
14367         * config.guess:  Merge from FSF:
14369         Fri Aug 26 18:45:25 1994  Philippe De Muyter (phdm@info.ucl.ac.be)
14371         * config.guess: Recognize powerpc-ibm-aix3.2.5.
14373         Wed Apr 20 06:36:32 1994  Philippe De Muyter  (phdm@info.ucl.ac.be)
14375         * config.guess: Recognize UnixWare 1.1 (UNAME_SYSTEM is SYSTEM_V
14376         instead of UNIX_SV for UnixWare 1.0).
14378 Sat Aug 27 01:56:30 1994  Stu Grossman  (grossman@cygnus.com)
14380         * Makefile.in (all-gdb):  Add dependencies on all-gcc and all-ld
14381         to make gdb/nlm/* build after the compiler and linker.
14383 Fri Aug 26 14:30:05 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14385         * config.guess (netbsd, freebsd, linux):  Accept any machine,
14386         not just i[34]86.
14387         (m68k-atari-sysv4):  Relocate to match FSF version.
14389         * config.guess:  More merges from the FSF:
14391         Add a space before function call or macro invocation.
14393         Tue May 10 16:53:55 1994  Roland McGrath (roland@churchy.gnu.ai.mit.edu)
14395         * config.guess: Add trap cmd to remove dummy.c and dummy when
14396         interrupted.
14398         Wed Apr 20 18:07:13 1994  Roland McGrath (roland@churchy.gnu.ai.mit.edu)
14400         * config.guess (dummy.c): Redirect stderr for `hostinfo' command.
14401         (dummy): Redirect stderr from compilation of dummy.c.
14403         Sat Apr  9 14:59:28 1994  Christian Kranz  (kranz@sent5.uni-duisburg.de)
14405         * config.guess: Distinguish between NeXTStep 2.1 and 3.x.
14407 Fri Aug 26 13:42:20 1994  Ken Raeburn  (raeburn@kr-laptop.cygnus.com)
14409         * configure: Accept and ignore --cache*, for compatibility with
14410         new autoconf.
14412 Fri Aug 26 13:05:27 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14414         * config.guess:  Merge from FSF:
14416         Thu Aug 25 20:28:51 1994  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
14418         * config.guess (Pyramid*:OSx*:*:*): New case.
14419         (PATH): Add /.attbin at end for finding uname.
14420         (dummy.c): Handle i860-alliant-bsd.  Follow whitespace conventions.
14422         Wed Aug 17 18:21:02 1994  Tor Egge  (tegge@pvv.unit.no)
14424         * config.guess (M88*:DolphinOS:*:*): New case.
14426         Thu Aug 11 17:00:13 1994  Stan Cox  (coxs@dg-rtp.dg.com)
14428         * config.guess (AViiON:dgux:*:*): Use TARGET_BINARY_INTERFACE
14429         to select whether to use ELF or COFF.
14431         Sun Jul 24 16:20:53 1994  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
14433         * config.guess: Recognize i860-stardent-sysv and i860-unknown-sysv.
14435         Sun May  1 10:23:10 1994  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
14437         * config.guess: Guess the OS version for HPUX.
14439         Tue Mar  1 21:53:03 1994  Karl Heuer  (kwzh@hal.gnu.ai.mit.edu)
14441         * config.guess (UNAME_VERSION): Recognize aix3.2.4 and aix3.2.5.
14443 Fri Aug 26 11:19:08 1994  Ian Lance Taylor  (ian@sanguine.cygnus.com)
14445         * configure.in: Recognize --with-headers, --with-libs, and
14446         --without-newlib.
14447         * Makefile.in (all-xiberty): Depend upon all-ld.
14449 Wed Aug 24 12:36:50 1994  Ian Lance Taylor  (ian@sanguine.cygnus.com)
14451         * configure.in: Change i[34]86 to i[345]86.
14453 Mon Aug 22 10:58:33 1994  Ian Lance Taylor  (ian@sanguine.cygnus.com)
14455         * configure (version): A few more tweaks to help message.
14457 Fri Aug 19 12:40:25 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14459         * Makefile.in:  Remove (for now) librx as a host library,
14460         now that we're building it for target.
14462 Fri Aug 19 10:49:17 1994  Ian Lance Taylor  (ian@sanguine.cygnus.com)
14464         * configure: Fix up help message; from karl@owl.hq.ileaf.com
14465         (Karl Berry).
14467 Tue Aug 16 16:11:08 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14469         * configure.in:  Also configure librx.
14471 Mon Aug 15 16:51:45 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14473         * Makefile.in:  Update various rules to reflect that librx
14474         is now needed for libg++.
14476 Fri Aug 12 18:07:21 1994  Ian Lance Taylor  (ian@sanguine.cygnus.com)
14478         * config.sub: Accept mips64orion and mips64orionel as a CPU name.
14480 Mon Aug  8 11:36:17 1994  Stan Shebs  (shebs@andros.cygnus.com)
14482         * configure.in: Configure the examples directory.
14484 Thu Aug  4 16:12:36 1994  Ian Lance Taylor  (ian@sanguine.cygnus.com)
14486         * configure: Simplify Jun 2 1994 change.
14488 Wed Aug  3 04:58:16 1994  D. V. Henkel-Wallace  (gumby@cygnus.com)
14490         * change CC to /usr/latest/bin/gcc for lynx host builds, since
14491         /bin/gcc isn't good enough to build gcc.
14493 Wed Jul 27 09:07:14 1994  Fred Fish  (fnf@cygnus.com)
14495         * Makefile.in (GDB_SUPPORT_FILES): Remove
14496         (setup-dirs-gdb, gdb.tar.gz, make-gdb.tar.gz):  Remove old rules.
14497         (gdb.tar.gz): Add new rule to use standard distribution building
14498         mechanism.
14500 Mon Jul 25 11:10:06 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
14502         * configure.in: Warn about use of /usr/ucb/cc on Solaris.  From
14503         Bill Cox <bill@cygnus.com>.
14505 Sat Jul 23 12:19:46 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14507         * config.guess:  Recognize ISC.  Patch from kwzh@gnu.ai.mit.edu.
14509 Fri Jul 22 17:53:59 1994  Stu Grossman  (grossman@cygnus.com)
14511         * configure:  Search current dir first in .gdbinit.
14513 Fri Jul 22 11:28:30 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14515         * config.sub:  Recognize freebsd (merged from gcc config.sub).
14517 Thu Jul 21 14:10:52 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14519         * config.sub:  Refer to NeXT's operating system as nextstep.
14521         * config.sub (case $basic_machine):  Re-order the cases, to match
14522         the order in the FSF version (which is mostly alphabethical).
14523         Merge in some additions and changes from the FSF.
14525 Sat Jul 16 12:03:08 1994  Stan Shebs  (shebs@andros.cygnus.com)
14527         * config.guess: Recognize m68k-atari-sysv4 and m88k-harris-csux7.
14528         * config.sub: Recognize cxux7.
14529         * configure.in: Use mh-cxux for m88k-harris-cxux*.
14531 Mon Jul 11 14:37:39 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14533         * config.sub:  Fix typo powerpc -> powerpc-*.
14535 Sat Jul  9 13:03:43 1994  Michael Tiemann  (tiemann@blues.cygnus.com)
14537         * Makefile.in: `all-emacs19' depends on `all-byacc'.
14539         * Makefile.in: Add all-emacs19 and install-emacs19 rules (in
14540         parallel with all-emacs and install-emacs).  Top-level command
14541         `make all-emacs19 CC=gcc' now behaves as `make all-emacs CC=gcc'.
14543 Thu Jun 30 16:53:42 1994  Ian Lance Taylor  (ian@sanguine.cygnus.com)
14545         * test-build.mk ($(host)-stamp-stage2-installed): Remove
14546         $(relbindir)/make before doing ``make install'', and use
14547         $(GNU_MAKE) while doing it.  Avoids problem on SunOS with
14548         installing over running make binary.
14549         ($(host)-stamp-stage3-installed): Likewise.
14551 Tue Jun 28 13:43:25 1994  Jim Kingdon  (kingdon@lioth.cygnus.com)
14553         * config.guess: Recognize Mach.
14555 Mon Jun 27 16:41:14 1994  Ian Lance Taylor  (ian@sanguine.cygnus.com)
14557         * configure: Check ${exec_prefixoption}, not ${exec_prefix}, to
14558         see whether --exec-prefix was used.
14560 Sun Jun 26 21:15:54 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14562         * README:  Explicitly mention libg++/README.  (Zoo's idea.)
14564 Tue Jun 21 12:45:55 1994  Jim Kingdon  (kingdon@lioth.cygnus.com)
14566         * Makefile.in: Add all-librx target similar to all-libproc.
14568 Wed Jun  8 23:11:55 1994  Stu Grossman  (grossman@cygnus.com)
14570         * config.guess:  Rearrange tests for Alpha-OSF1 to properly deal
14571         with post 1.2 uname bogosity.
14573 Thu Jun  9 00:27:59 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
14575         * configure: Remove temporary files on receipt of a signal.
14577 Tue Jun  7 12:06:24 1994  Ian Lance Taylor  (ian@cygnus.com)
14579         * configure: If there is a package_makefile_frag, remove
14580         ${subdir}/Makefile.tem after copying it in.
14582 Mon Jun  6 21:35:02 1994  D. V. Henkel-Wallace  (gumby@cygnus.com)
14584         * build_all.mk: support rs6000 lynx identifies itself as
14585         rs6000-lynx-lynxos2.2.2.  Also, use /usr/cygnus/progressive/bin/gcc
14586         since /bin/gcc is too feeble to compile a modern gcc.
14588 Mon Jun  6 16:06:34 1994  Karen Christiansen (karen@cirdan.cygnus.com)
14590         * brought devo/test-build.mk update-to-date with progressive/
14591           test-build.mk. Add lynx targets and hppa flag info.
14593 Sat Jun  4 17:23:54 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14595         * configure.in:  Use mh-ncrsvr43.  Patch from
14596         Tom McConnell <tmcconne@sedona.intel.com>.
14598 Fri Jun  3 17:47:24 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14600         * config.guess (i386-unknown-bsdi):  No longer need to
14601         check #if defined(__bsdi__) && defined(__i386__).
14603 Thu Jun  2 18:56:46 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
14605         * configure: Set program_transform_nameoption correctly.
14607 Thu Jun  2 10:57:06 1994  Karen Christiansen (karen@cirdan.cygnus.com)
14609         * brought build-all.mk update-to-date with progressive build-all.mk,
14610           added new targets and hppa info.
14612 Thu Jun  2 00:12:44 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
14614         * configure: If config.guess result is a prefix of the user
14615         specified target, assume a native build and use the user specified
14616         target as the host alias.  Remove SunOS patch suffix removal hack.
14617         * configure.in: Remove SunOS patch suffix removal hack.
14619         * Makefile.in (CROSS_CHECK_MODULES): Remove check-flex, since it's
14620         in NATIVE_CHECK_MODULES.
14622 Wed Jun  1 10:49:41 1994  Bill Cox  (bill@rtl.cygnus.com)
14624         * Makefile.in: Rename HOST_ONLY to NATIVE.
14625         * configure: Delete SunOs patch suffix from host_canonical
14626           and build_canonical variables that are prepended to Makefiles.
14627         * configure.in: Add comments for easier maintenance.
14629 Tue May 31 19:39:47 1994  Jim Kingdon  (kingdon@lioth.cygnus.com)
14631         * Makefile.in: Add all-libproc target similar to all-gui.
14633 Tue May 31 17:16:33 1994  Tom Lord  (lord@cygnus.com)
14635         * Makefile.in (CHECK_MODULES): split into
14636         HOST_ONLY_CHECK_MODULES and CROSS_CHECK_MODULES.
14638 Tue May 31 16:36:36 1994  Paul Eggert  (eggert@twinsun.com)
14640         * config.guess (i386-unknown-bsdi): New system to guess.
14642 Wed May 25 16:47:10 1994  Jim Kingdon  (kingdon@lioth.cygnus.com)
14644         * Makefile.in: Add all-gui target (but not yet build by "all").
14646 Thu May 26 08:53:19 1994  Bill Cox  (bill@rtl.cygnus.com)
14648         * config.sub: Move deletion of patch suffix from here...
14649         * configure.in: To here, at Ian's suggestion.  The top-
14650           level scripts might need to know of a patch level.
14652 Wed May 25 09:15:54 1994  Bill Cox  (bill@rtl.cygnus.com)
14654         * config.sub: Strip off patch suffix so rtl is recognized
14655           as a sunos4.1.3 machine, even though it's been patched.
14657 Fri May 20 08:25:49 1994  Steve Chamberlain  (sac@deneb.cygnus.com)
14659         * Makefile.in (INSTALL_LAST): Delete.
14660         (INSTALL_DOSREL): New.
14662 Thu May 19 17:12:12 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
14664         * configure.in: Use ld for i[34]86-*-sysv4* and sparc-*-solaris2*.
14665         Don't set use_gnu_ld to no for *-*-sysv4; that only controls
14666         whether we pass down --with-gnu-ld anyhow.
14668 Thu May 19 09:29:12 1994  Steve Chamberlain  (sac@cygnus.com)
14670         * Makefile.in (INSTALL_LAST): Change operation so it works
14671         on more flavors of make.
14672         * configure.in (go32): Don't build libg++ or libio.
14674 Fri May 13 13:28:34 1994  Steve Chamberlain  (sac@cygnus.com)
14676         * Makefile.in (Move HOST_PREFIX_1 and friends up so
14677         they can be overriden by templates.
14679 Sat May  7 16:46:44 1994  Steve Chamberlain  (sac@cygnus.com)
14681         * configure.in (target==go32): Don't build gdb.
14682         * dosrel: New directory.
14684 Fri May  6 14:19:25 1994  Steve Chamberlain  (sac@cygnus.com)
14686         * configure.in (host==go32): Configure dosrel too.
14687         * Makefile.in (INTALL_TARGET): Call INSTALL_LAST last.
14688         (HOST_CC, HOST_PREFIX, HOST_PREFIX_1): Undefine, they should
14689         be set by incoming names or templates.
14690         (INSTALL_LAST): New rule.
14692 Thu May  5 17:35:05 1994  Stan Shebs  (shebs@andros.cygnus.com)
14694         * config.sub (sparclitefrw, sparclitefrwcompat): Don't set the os.
14696 Thu May  5 20:06:45 1994  Ken Raeburn  (raeburn@cujo.cygnus.com)
14698         * configure.in (appdirs): New variable.  Currently empty, but will
14699         be used in gas distribution.  If nonempty, lists a set of
14700         directories at least one of which must get configured, or top
14701         level configuration is considered to have failed.
14702         (rs6000-*-lynxos*): Use new file name.
14704 Thu May  5 13:38:36 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
14706         Eliminate XTRAFLAGS.
14707         * Makefile.in (CC_FOR_TARGET): If newlib exists, refer to the
14708         newlib include files using -idirafter, and also use -nostdinc.
14709         (CXX_FOR_TARGET): Likewise.
14710         (XTRAFLAGS): Removed.
14711         (BASE_FLAGS_TO_PASS): Remove XTRAFLAGS_FOR_TARGET.
14712         (EXTRA_HOST_FLAGS): Remove XTRAFLAGS.
14713         (EXTRA_TARGET_FLAGS, EXTRA_GCC_FLAGS): Likewise.
14714         ($(DO_X)): Don't pass down XTRAFLAGS.
14716 Thu May  5 00:16:36 1994  Ken Raeburn  (raeburn@kr-pc.cygnus.com)
14718         * configure.in (mips*-dec-bsd*): New target; do build linker.
14719         (mips*-*-bsd*): New target; don't build linker.
14721 Wed May  4 20:10:10 1994  D. V. Henkel-Wallace  (gumby@cygnus.com)
14723         * configure.in: support rs6000-*-lynxos* configuration.
14724         support sunos4 as a cross target.
14726         * config.sub: look for lynx*, not lynx since the OS version may
14727         legitimately be part of the name.
14729 Tue May  3 21:48:11 1994  Ken Raeburn  (raeburn@cujo.cygnus.com)
14731         * configure.in (i[34]86-*-sco*): Move to be with other i386
14732         targets.
14733         (romp-*-*): New target.  Skip various binary utilities.
14734         (vax-*-*): New target.  Don't build newlib.
14735         (vax-*-vms): Renamed from *-*-vms.  Don't build opcodes or newlib.
14737 Thu Apr 28 15:03:05 1994  David J. Mackenzie  (djm@rtl.cygnus.com)
14739         * configure.in: Only set host_makefile_frag if config
14740         directory exists.
14742 Wed Apr 27 12:14:30 1994  David J. Mackenzie  (djm@rtl.cygnus.com)
14744         * install.sh: If $dstdir exists, don't check whether each
14745         component does.
14747 Tue Apr 26 18:11:33 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
14749         * test-build.mk (HOLES): Add sleep; used by rcs/src/conf.sh.
14751 Mon Apr 25 15:06:34 1994  Stan Shebs  (shebs@andros.cygnus.com)
14753         * configure.in (*-*-lynxos*): Don't configure newlib for either
14754         native or cross Lynx.
14756 Sat Apr 16 11:58:16 1994  Doug Evans  (dje@canuck.cygnus.com)
14758         * config.sub (sparc64-elf): Fix os.
14759         (z8k): Remove duplicate.
14761 Thu Apr 14 23:33:17 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
14763         * Makefile.in (gcc-no-fixedincludes): Touch gcc/include/fixed, not
14764         gcc/stmp-fixproto, to try to prevent fixproto from being run.
14766 Wed Apr 13 15:14:52 1994  Bill Cox  (bill@cygnus.com)
14768         * configure: Make file links cleanly even if Lynx fails on
14769           an NFS symlink (at least fail cleanly).
14771 Mon Apr 11 10:58:56 1994  Jim Wilson  (wilson@sphagnum.cygnus.com)
14773         * test-build.mk (CC): For mips-sgi-irix4, change -XNh1500 to
14774         -XNh2000.
14776 Sat Apr  9 15:10:45 1994  David J. Mackenzie  (djm@rtl.cygnus.com)
14778         * configure: Unknown options are fatal again.
14780 Fri Apr  8 12:01:41 1994  David J. Mackenzie  (djm@cygnus.com)
14782         * configure: Ignore --x-includes and --x-libraries, for Autoconf
14783         compatibility.
14785 Thu Apr  7 17:31:43 1994  Doug Evans  (dje@canuck.cygnus.com)
14787         * build-all.mk: Add `clean' target.
14789 Wed Apr  6 20:44:56 1994  Peter Schauer  (pes@regent.e-technik.tu-muenchen.de)
14791         * config.guess:  Add SINIX support.
14792         * configure.in:  Add mips-*-sysv4* support.
14794 Mon Apr  4 17:41:44 1994  Doug Evans  (dje@canuck.cygnus.com)
14796         * build-all.mk: Document all useful targets.
14797         If canonhost is sparc-sun-solaris2.3, change it to sparc-sun-solaris2.
14798         If canonhost is mips-sgi-irix4.0.5H, change it to mips-sgi-irix4.
14800 Thu Mar 31 04:55:57 1994  David J. Mackenzie  (djm@rtl.cygnus.com)
14802         * configure: Support --silent, --quiet.
14804 Wed Mar 30 21:37:38 1994  David J. Mackenzie  (djm@rtl.cygnus.com)
14806         * configure: Support --disable-FEATURE.
14808 Tue Mar 29 19:15:05 1994  Jim Kingdon  (kingdon@lioth.cygnus.com)
14810         * config.guess: Recognize NCR running SVR4.3.
14812 Mon Mar 28 14:55:15 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14814         * config.guess:  Make BSDI generate i386-unknown-bsd386.
14815         Patch from Paul Eggert <eggert@twinsun.com>.
14817 Mon Mar 28 12:54:52 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
14819         * configure.in (powerpc-*-aix*): Treat like rs6000-*-*.
14821 Sat Mar 26 11:25:48 1994  David J. Mackenzie  (djm@rtl.cygnus.com)
14823         * configure: Make unrecognized options give nonfatal warnings
14824         instead of fatal errors, and pass them to any subdirectory
14825         configures in case they recognize them.
14826         Make --x equivalent to --with-x.
14828 Fri Mar 25 21:52:10 1994  David J. Mackenzie  (djm@rtl.cygnus.com)
14830         * configure: Add --enable-* options.  Clean up usage message and
14831         some comments.
14833 Thu Mar 24 09:12:53 1994  Doug Evans  (dje@canuck.cygnus.com)
14835         * Makefile.in (NM_FOR_TARGET): Build tree version is now nm.new.
14837 Sun Mar 20 11:28:22 1994  Jeffrey A. Law  (law@snake.cs.utah.edu)
14839         * configure.in (hppa*-*-*): Enable binutils.
14841 Sat Mar 19 11:50:16 1994  Jim Kingdon  (kingdon@lioth.cygnus.com)
14843         * config.sub: Recognize cisco.
14845 Fri Mar 18 16:42:32 1994  Jason Merrill  (jason@deneb.cygnus.com)
14847         * Makefile.in (CXXFLAGS): Add -fexternal-templates.
14849 Tue Mar 15 11:25:55 1994  Jim Kingdon  (kingdon@lioth.cygnus.com)
14851         * config.guess: about target *-hitachi-hiuxwe2, don't print more
14852         than one configuration name.  Add comment.
14854 Sun Mar  6 23:13:38 1994  Hisashi MINAMINO  (minamino@sra.co.jp)
14856         * config.guess: about target *-hitachi-hiuxwe2, fixed
14857         machine guessing order.  [Hitachi's CPU_IS_HP_MC68K
14858         macro is incorrect.]
14860 Sun Mar 13 09:10:08 1994  Jim Kingdon  (kingdon@lioth.cygnus.com)
14862         * Makefile.in (TAGS): Just build TAGS in each subdirectory, rather
14863         than the "make ls" stuff which used to be here.
14865 Fri Mar 11 12:52:39 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14867         * config.guess:  Recognize i[34]86-unknown-freebsd.
14868         From Shawn M Carey <smcarey@rodan.syr.edu>.
14870 Thu Mar  3 14:24:21 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14872         * configure.in (noconfigdirs for alpha): Remove libg++ and libio.
14874 Wed Mar  2 13:28:48 1994  Jim Kingdon  (kingdon@deneb.cygnus.com)
14876         * config.guess: Check for ptx.
14878 Mon Feb 28 16:46:50 1994  Kung Hsu  (kung@mexican.cygnus.com)
14880         * config.sub: Add os9k checking.
14882 Thu Feb 24 07:09:04 1994  Jeffrey A. Law  (law@snake.cs.utah.edu)
14884         * config.guess: Handle OSF1 running on HPPA processors
14886 Fri Feb 18 14:14:00 1994  Ken Raeburn  (raeburn@rtl.cygnus.com)
14888         * configure: If subdir configure fails, print out a message with
14889         subdirectory name, in case subdir's configure code didn't identify
14890         itself.
14892 Fri Feb 18 12:50:15 1994  Doug Evans  (dje@cygnus.com)
14894         * configure.in: Remove embedded newlines from configdirs.
14895         Avoid mismatches of substrings.  Fix matching strings at end
14896         of configdirs.
14898 Fri Feb 11 15:33:33 1994  Stu Grossman  (grossman at cygnus.com)
14900         * config.guess:  Add Lynx/rs6000 config support.
14902 Tue Feb  8 13:41:09 1994  Ken Raeburn  (raeburn@rtl.cygnus.com)
14904         * configure.in (alpha-dec-osf1*, alpha*-*-*): Build gas.
14906 Mon Feb  7 15:42:36 1994  Jeffrey A. Law  (law@cygnus.com)
14908         * configure.in (hppa*-*-osf*): Treat this just like most other
14909         PA configurations (eg no binutils or ld).
14910         (hppa*-*-*elf*): These configurations have binutils and ld.
14912 Sun Feb  6 16:35:07 1994  Jeffrey A. Law  (law@snake.cs.utah.edu)
14914         * config.sub (hiux): Fix typo.  From m-kasahr@sramhc.sra.co.JP.
14916 Sat Feb  5 01:00:33 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
14918         * configure.in (rs6000-*-*): Build gas.
14920 Wed Feb  2 13:57:57 1994  Jeffrey A. Law  (law@snake.cs.utah.edu)
14922         * Makefile.in:  Avoid bug in losing hpux sed.
14924 Wed Feb  2 14:53:05 1994  Jim Kingdon  (kingdon@lioth.cygnus.com)
14926         * Makefile.in, test-build.mk: Remove MUNCH_NM; it was only needed
14927         for GDB and GDB has been fixed to not need it.
14929 Sun Jan 30 17:58:06 1994  Ken Raeburn  (raeburn@cujo.cygnus.com)
14931         * config.guess: Recognize vax hosts.
14933 Fri Jan 28 15:29:38 1994  Ken Raeburn  (raeburn@cujo.cygnus.com)
14935         * configure (while loop): Don't use "break 2" inside case
14936         statement -- the case statement isn't an enclosing loop.
14938 Mon Jan 24 18:40:06 1994  Per Bothner  (bothner@kalessin.cygnus.com)
14940         * config.guess:  Clean up NeXT support, to allow nextstep
14941         on Intel machines.  Make OS be nextstep.
14943 Sun Jan 23 18:47:22 1994  Richard Kenner  (kenner@vlsi1.ultra.nyu.edu)
14945         * config.guess: Add alternate forms for Convex.
14947 Thu Jan 20 16:13:41 1994  Stu Grossman  (grossman at cygnus.com)
14949         * configure:  Completely rewrite option processing.  Take
14950         advantage of pattern-matching to avoid invoking test frequently.
14951         Also clean up host and target defaulting logic.
14953 Mon Jan 17 15:06:56 1994  Ken Raeburn  (raeburn@cujo.cygnus.com)
14955         * Makefile.in: Replace all occurrances of "rootme" with "r" and
14956         "$${rootme}" with "$$r", to increase the likelihood that the do-*
14957         commands (plus user environment) will fit SCO limits.
14959 Thu Jan  6 11:20:57 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
14961         * configure.in: Don't issue warnings about directories which are
14962         not being configured if -norecursion is set.  Correct test for
14963         --with-gnu-as and --with-gnu-ld to not get confused by substring
14964         matches.
14966         * configure.in: Don't build gas for alpha-dec-osf1*.
14968 Tue Jan  4 17:10:19 1994  Stu Grossman  (grossman at cygnus.com)
14970         * configure:  Back out Per's change of 12/19/1993.  It changes the
14971         behavior of configure in unexpected and confusing ways.
14973         Also, use different delim char when calculating
14974         program_transform_name so that the name can contain slashes.
14976 Sat Jan  1 13:45:31 1994  Rob Savoye  (rob@darkstar.cygnus.com)
14978         * configure.in, config.sub: Add support for VSTa micro-kernel.
14980 Sat Dec 25 20:00:47 1993  Jeffrey A. Law  (law@snake.cs.utah.edu)
14982         * configure.in: Nuke hacks which were used to get a special
14983         version of GAS for HPPA configurations.
14985 Sun Dec 19 20:40:44 1993  Per Bothner  (bothner@kalessin.cygnus.com)
14987         * configure:  If only ${target_alias} is given, use that
14988         as the default for ${host_alias}.
14989         * configure:  Add missing back-slashes before nested quotes.
14991 Wed Dec 15 18:07:18 1993  david d `zoo' zuhn  (zoo@andros.cygnus.com)
14993         * Makefile.in (BASE_FLAGS_TO_PASS): add YACC=$(BISON)
14995 Tue Dec 14 21:25:33 1993  Per Bothner  (bothner@cygnus.com)
14997         * config.guess:  Recognize some Tektronix configurations.
14998         From Kaveh R. Ghazi <ghazi@noc.rutgers.edu>.
15000 Sat Dec 11 11:18:00 1993  Steve Chamberlain  (sac@thepub.cygnus.com)
15002         * config.sub: Match any flavor of SH.
15004 Thu Dec  2 17:16:58 1993  Ken Raeburn  (raeburn@cujo.cygnus.com)
15006         * configure.in: Don't try to configure newlib for Alpha.
15008 Thu Dec  2 14:35:54 1993  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
15010         * configure.in: Don't build ld for Irix 5.  Don't build gas,
15011         libg++ or libio for any Alpha target.
15013         * configure.in (mips*-sgi-irix5*): New target; use mh-irix5.
15015 Wed Dec  1 17:00:33 1993  Jason Merrill  (jason@deneb.cygnus.com)
15017         * Makefile.in (GZIPPROG): Renamed from GZIP, which gzip uses for
15018         default arguments -- so it tried to compress itself.
15020 Tue Nov 30 13:45:15 1993  david d `zoo' zuhn  (zoo@andros.cygnus.com)
15022         * configure.in (notsupp): ensure that a space is always at the end
15023           of the configdirs list, since the grep checks for an explicit space
15025 Tue Nov 16 15:04:27 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
15027         * configure.in (target i386-sysv4.2): don't build ld, since static
15028           versions of many libraries are not available.
15030 Tue Nov 16 14:28:12 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
15032         * config.guess: Recognize Apollos (using environment variables).
15033         * configure.in: Don't configure ld, binutils, or gprof for Apollo.
15035 Thu Nov 11 12:03:50 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
15037         * config.guess: Recognize Sony news mips running newsos.
15039 Wed Nov 10 16:57:00 1993  Mark Eichin  (eichin@cygnus.com)
15041         * Makefile.in (all-cygnus, build-cygnus): "fi else" needs to be
15042         "fi ; else" for bash.
15044 Tue Nov  9 15:54:01 1993  Mark Eichin  (eichin@cygnus.com)
15046         * Makefile.in (BASE_FLAGS_TO_PASS): pass SHELL.
15048 Fri Nov  5 08:07:27 1993  D. V. Henkel-Wallace  (gumby@blues.cygnus.com)
15050         * config.sub: accept unixware as an alias for svr4.2.
15051         Fix some inconsistancies with the gcc version.
15053 Fri Nov  5 15:14:12 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
15055         * Makefile.in (DISTDOCDIRS):  Add gdb.
15057 Fri Nov  5 11:59:42 1993  Per Bothner  (bothner@kalessin.cygnus.com)
15059         * Makefile.in (DISTDOCDIRS):  Add libg++ and libio.
15061 Fri Nov  5 10:35:05 1993  Ken Raeburn  (raeburn@rover.cygnus.com)
15063         * Makefile.in (taz): Only build "info" in DISTDOCDIRS.
15064         (DISTDOCDIRS): Don't assume libg++ and gdb folks necessarily want
15065         this now.
15067 Thu Nov  4 18:58:23 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
15069         * config.sub: Accept hiux* as an OS name.
15071         * Makefile.in: Change RUNTEST_FLAGS back to RUNTESTFLAGS per
15072         etc/make-stds.texi.  The underscore came from gcc, and dje now
15073         agrees that RUNTESTFLAGS is the correct name.
15075 Thu Nov  4 10:49:01 1993  Per Bothner  (bothner@kalessin.cygnus.com)
15077         * install.sh:  Remove 'set -e'.  It makes any conditionals
15078         in the script useless.
15080         * config.guess: Automatically recognize arm-acorn-riscix
15081         Patch from Richard Earnshaw (rwe11@cl.cam.ac.uk).
15083 Thu Nov 04 08:08:04 1993  Jeffrey Wheat  (cassidy@cygnus.com)
15085         * Makefile.in: Change RUNTESTFLAGS to RUNTEST_FLAGS
15087 Wed Nov  3 22:09:46 1993  Ken Raeburn  (raeburn@rtl.cygnus.com)
15089         * Makefile.in (DISTDOCDIRS): New variable.
15090         (taz): Edit local Makefile.in sooner, instead of proto-toplev
15091         Makefile.in later.  Build "info" and "dvi" in DISTDOCDIRS.
15093 Wed Nov  3 21:31:52 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
15095         * configure.in (hppa target): check the source directory for the
15096           pagas sub-directory
15098 Wed Nov  3 11:12:22 1993  Doug Evans  (dje@canuck.cygnus.com)
15100         * config.sub: Allow -aout* and -elf*.
15102 Wed Nov  3 11:08:33 1993  Ken Raeburn  (raeburn@rtl.cygnus.com)
15104         * configure.in: Don't build ld on i386-solaris2, same as for
15105         sparc-solaris2.
15107 Tue Nov  2 14:21:25 1993  Per Bothner  (bothner@kalessin.cygnus.com)
15109         * Makefile.in (taz): Add texinfo/lgpl.texinfo (for libg++).
15111 Tue Nov  2 13:38:30 1993  Peter Schauer  (pes@regent.e-technik.tu-muenchen.de)
15113         * configure.in:  Configure gdb for alpha.
15115 Mon Nov  1 10:42:54 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
15117         * Makefile.in (CXXFLAGS): Add -O.
15119 Wed Oct 27 10:45:06 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
15121         * config.guess: added support for DG Aviion
15123 Tue Oct 26 14:37:37 1993  Ken Raeburn  (raeburn@rover.cygnus.com)
15125         * configure.in: Produce warning message for subdirectories not
15126         configurable for this host/target combination.  Don't try to
15127         configure gdb for vms.
15129 Mon Oct 25 11:22:15 1993  Ken Raeburn  (raeburn@rover.cygnus.com)
15131         * Makefile.in (taz): Replace "byacc" with "bison -y" in the
15132         appropriate files before making "diststuff".
15133         (DISTBISONFILES): New var: list of files to be edited.
15134         (DISTSTUFFDIRS): Add binutils.
15136 Fri Oct 22 20:32:15 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
15138         * config.sub: also handle mipsel and mips64el (for little endian mips)
15140 Fri Oct 22 07:59:20 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
15142         * configure.in: Add * to end of all OS names.
15144 Thu Oct 21 11:38:28 1993  Stan Shebs  (shebs@rtl.cygnus.com)
15146         * configure.in: Build newlib for LynxOS native.
15148 Wed Oct 20 09:56:12 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
15150         * config.guess: Add support for delta 88k running SVR3.
15152         * configure.in: Add comment about HP compiler vs. emacs.
15154 Tue Oct 19 16:02:22 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
15156         * configure.in: don't build ld on solaris2 (not a viable option
15157           due to bugs in getpwnam & getpwuid)
15159 Tue Oct 19 15:13:56 1993  Ken Raeburn  (raeburn@rtl.cygnus.com)
15161         * configure.in: Accept alpha-dec-osf1*, not just -osf1, since
15162         config.guess will produce a full version number.
15164 Tue Oct 19 15:58:01 1993  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
15166         * configure.in: Build linker and binutils for alpha-dec-osf1.
15168 Tue Oct 19 11:41:55 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
15170         * Makefile.in: Remove -O from CXXFLAGS for consistency with CFLAGS,
15171         and gdb/testsuite/Makefile.in.
15173 Sat Oct  9 18:39:07 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
15175         * configure.in: recognize mips*- instead of mips-
15177 Fri Oct  8 14:15:39 1993  Ken Raeburn  (raeburn@cygnus.com)
15179         * config.sub: Accept linux*coff and linux*elf as operating
15180         systems.
15182 Thu Oct  7 12:57:19 1993  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
15184         * config.sub: Recognize mips64, and mips3 as an alias for it.
15186 Wed Oct  6 13:54:21 1993  Peter Schauer  (pes@regent.e-technik.tu-muenchen.de)
15188         * configure.in: Remove alpha-dec-osf*, no longer necessary now that
15189         gdb knows how to handle OSF/1 shared libraries.
15191 Tue Oct  5 11:55:04 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
15193         * configure.in: Recognize hppa*-*-hiux* (currently synonym for hpux).
15194         * config.guess: Recognize Hitachi's HIUX.
15195         * config.sub: Recognize h3050r* and hppahitachi.
15196         Remove redundant cases for hp9k[23]*.
15198 Mon Oct  4 16:15:09 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
15200         * configure.in: default to '--with-gnu-as' and '--with-gnu-ld'
15201         if gas and ld are in the source tree and are in ${configdirs}.
15202         If ${use_gnu_as} or ${use_gnu_ld} are 'no', then don't set the
15203         --with options (but still pass them down on the command line,
15204         if they were explicitly specified).
15206 Fri Sep 24 19:11:13 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
15208         * configure: substitute SHELL value in Makefile.in with
15209         ${CONFIG_SHELL}
15211 Thu Sep 23 18:05:13 1993  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
15213         * configure.in: Build gas, ld, and binutils for *-*-sysv4* and
15214         *-*-solaris2* targets.
15216 Sun Sep 19 17:01:41 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
15218         * Makefile.in: define M4, and pass it down to sub-makes;
15219         all-autoconf now depends on all-m4
15221 Sat Sep 18 00:38:23 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
15223         * Makefile.in ({AR,RANLIB}_FOR_TARGET): make contingent on
15224         presence of {ar,ranlib} instead of a configured directory
15226 Wed Sep 15 08:41:44 1993  Jim Kingdon  (kingdon@cirdan.cygnus.com)
15228         * config.guess: Accept 34?? as well as 33?? for NCR.
15230 Mon Sep 13 12:28:43 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
15232         * configure.in: grab mt-hppa for HPPA targets; use 'gas ' instead
15233         of 'gas' in sed commands, since 'gash' is now in the tree as well.
15235 Fri Sep 10 11:23:52 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
15237         * configure: grab values for $(CC) and $(CXX) from the
15238         environment, so that someone can do "CC=gcc configure; make" and
15239         have it work right (matching the way that autoconf works now)
15241         * configure.in, Makefile.in: add support for gash, the tcl
15242         interface to Galaxy
15244         * config.guess: add NetBSD variants (hp300, x86)
15246 Thu Sep  9 16:48:52 1993  Jason Merrill  (jason@deneb.cygnus.com)
15248         * install.sh: Support -d option (in the manner of SunOS 4 install,
15249         as it is more deterministic than that of GNU install)
15250         (chmodcmd): Set file to mode 755 by default (should also do default
15251         chgrp and chown, but I don't feel like dealing with that now)
15253 Tue Sep  7 11:59:39 1993  Doug Evans  (dje@canuck.cygnus.com)
15255         * config.sub: Remove h8300hhms alias.
15257 Tue Aug 31 11:00:09 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
15259         * configure.in: Match *-*-solaris2* not *-sun-solaris2*.
15261 Mon Aug 30 18:29:10 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
15263         * Makefile.in (gcc-no-fixedincludes): touch stmp-fixproto as well
15264         as stmp-fixinc
15266 Wed Aug 25 16:35:59 1993  K. Richard Pixley  (rich@sendai.cygnus.com)
15268         * config.sub: recognize m88110-bug-coff.
15270 Tue Aug 24 10:23:24 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
15272         * Makefile.in (all-libio): all dependencies on the toolchain used
15273         to build this (gcc, gas, ld, etc)
15275 Fri Aug 20 17:24:24 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
15277         * config.guess: Deal with OSF/1 1.3 on alpha.
15279 Thu Aug 19 11:43:04 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
15281         * install.sh: add some 'else true' clauses for portability
15283         * configure.in: don't build libio for h8[35]00-*-* targets
15285 Tue Aug 17 19:02:31 1993  Per Bothner  (bothner@kalessin.cygnus.com)
15287         * Makefile.in:  Add support for new libio.
15289 Sun Aug 15 20:48:55 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
15291         * install.sh: If one command fails, don't try the rest.  Don't try
15292         to remove $dsttmp (via trap) unless we have already created it.
15293         If $src doesn't exist, detect it and exit with an error.
15295         * config.guess: Recognize BSD on hp300.
15297 Wed Aug 11 18:35:13 1993  Per Bothner  (bothner@kalessin.cygnus.com)
15299         * config.guess:  Map (9000/[34]??:HP-UX:*:*) to m68k-hp-hpux.
15300         Bug report from "Hamish (H.I.) Macdonald" <hamish@bnr.ca>.
15302 Wed Aug 11 15:37:51 1993  Jason Merrill  (jason@deneb.cygnus.com)
15304         * Makefile.in (all-send-pr): depends on all-prms
15306 Wed Aug 11 16:56:03 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
15308         * config.guess: Fix typo (9000/8??:4.3bsd -> 9000/7??:4.3bsd).
15310 Fri Aug  6 14:45:02 1993  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
15312         * config.guess: From michael@mercury.cs.mun.ca (Michael Rendell):
15313         Added test for mips-mips-riscos5.
15315 Thu Aug  5 15:45:08 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
15317         * configure.in: use mh-hp300 for 68k HP hosts
15319 Mon Aug  2 11:56:53 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
15321         * configure: add support for CONFIG_SHELL, so that you can use
15322         some alternate shell for evaluating configure scripts
15324 Sun Aug  1 11:36:27 1993  Fred Fish  (fnf@deneb.cygnus.com)
15326         * Makefile.in (make-gdb.tar.gz):  Sed bug reporting address
15327         in configure script to bug-gdb@prep.ai.mit.edu when building
15328         distribution archive.
15329         * Makefile.in (COMPRESS):  Remove def.
15330         * Makefile.in (gdb.tar.gz, make-gdb.tar.gz):  Renamed from
15331         gdb.tar.Z and make-gdb.tar.Z respectively.
15332         * Makefile.in (make-gdb.tar.gz):  Now only build gzip'd archive.
15333         * Makefile.in (make-gdb.tar.gz):  Minor changes to move closer
15334         to convergence with 'taz' target in Makefile.in.
15336 Fri Jul 30 12:34:57 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
15338         * install.sh (dsttmp): use trap to ensure that tmp files go
15339         away on error conditions
15341 Wed Jul 28 11:57:36 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
15343         * Makefile.in (BASE_FLAGS_TO_PASS): remove LOADLIBES
15345 Tue Jul 27 12:43:40 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
15347         * Makefile.in (install-dirs): Deal with a prefix like /gnu;
15348         its parent is '/' not ''.
15350         * Makefile.in (DEVO_SUPPORT): Add comments about ChangeLog.
15352 Fri Jul 23 09:53:37 1993  Jason Merrill  (jason@wahini.cygnus.com)
15354         * configure: if ${newsrcdir}/configure doesn't exist, don't assume
15355         that ${newsrcdir}/configure.in does.
15357 Tue Jul 20 11:28:50 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
15359         * test-build.mk: support for CONFIG_SHELL
15361 Mon Jul 19 21:54:46 1993  Fred Fish  (fnf@deneb.cygnus.com)
15363         * config.sub (netware):  Add as a basic system type.
15365 Wed Jul 14 12:03:11 1993  K. Richard Pixley  (rich@sendai.cygnus.com)
15367         * Makefile.in (Makefile): depend on configure.in.  Also drop the
15368           $(srcdir)/ from the dependency on Makefile.in.
15370 Tue Jul 13 20:10:58 1993  Doug Evans  (dje@canuck.cygnus.com)
15372         * config.sub: Recognize h8300hhms as h8300h-hitachi-hms.
15373         (h8300hhms is temporary until multi-libraries are implemented).
15374         * configure.in: Handle h8300h too.
15376 Sun Jul 11 17:35:27 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
15378         * config.guess: Recognize dpx/2 as m68k-bull-sysv3.
15380 Thu Jul  8 18:26:12 1993  John Gilmore  (gnu@cygnus.com)
15382         * configure:  Remove extraneous output when guessing host type.
15383         * config.guess:  Remove extraneous output when guessing using C
15384         compiler rather than uname, or when guessing fails.
15386 Wed Jul  7 17:58:14 1993  david d `zoo' zuhn  (zoo at rtl.cygnus.com)
15388         * Makefile.in: remove all.cross and install.cross targets
15390         * configure: remove CROSS=-DCROSS_COMPILE and ALL=all.cross
15391           definitions
15393 Tue Jul  6 10:39:44 1993  Steve Chamberlain  (sac@phydeaux.cygnus.com)
15395         * configure.in (target sh): Build gprof.
15397 Thu Jul  1 16:52:56 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15399         * config.sub: change -solaris to -solaris2
15401 Thu Jul  1 15:46:16 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
15403         * configure.in: Use config/mh-riscos for mips-*-sysv*.
15405 Wed Jun 30 09:31:58 1993  Ian Lance Taylor  (ian@cygnus.com)
15407         * configure: Correct error message for missing Makefile.in to
15408         print correct directory.
15410 Tue Jun 29 13:52:16 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15412         * install.sh: kludge around 386BSD shell bug
15414 Tue Jun 29 13:06:49 1993  Per Bothner  (bothner@rtl.cygnus.com)
15416         * config.guess:  Recognize NeXT.
15417         * config.guess:  Recognize i486-ncr-sysv4.
15418         * Makefile.in (taz):  rm $(TOOL)-$$VER before linking.
15420 Tue Jun 29 12:50:57 1993  Ian Lance Taylor  (ian@cygnus.com)
15422         * Makefile.in (MAKEINFOFLAGS): New variable.
15423         (FLAGS_TO_PASS): Pass MAKEINFO as MAKEINFO MAKEINFOFLAGS.
15424         * build-all.mk, test-build.mk: Pass down --no-split as
15425         MAKEINFOFLAGS when hosted on DOS.  Compile DOS hosted without -g.
15427 Thu Jun 24 13:39:11 1993  Per Bothner  (bothner@rtl.cygnus.com)
15429         * Makefile.in (DEVO_SUPPORT):  Add COPYING COPYING.LIB install.sh.
15431 Wed Jun 23 12:59:21 1993  Per Bothner  (bothner@rtl.cygnus.com)
15433         * Makefile.in (libg++.tar.z):  New rule.
15434         * Makefile.in (taz):  Replace 'configure -rm' by 'make distclean'.
15435         * Makefile.in (taz):  Only do a single chmod.
15437 Fri Jun 18 12:03:10 1993  david d `zoo' zuhn  (zoo at majipoor.cygnus.com)
15439         * install.sh: don't use dirname anymore (replaced with sed usage)
15441 Thu Jun 17 18:43:42 1993  Fred Fish  (fnf@cygnus.com)
15443         * Makefile.in:  Change extension for gzip'd files from '.z' to
15444         '.gz' per new FSF standard usage.
15446 Thu Jun 17 16:58:50 1993  david d `zoo' zuhn  (zoo at majipoor.cygnus.com)
15448         * configure: put quotes around the final value of program_transform_name
15450 Tue Jun 15 16:48:51 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15452         * Makefile.in: new install.sh support; update install-info rules
15454 Wed Jun  9 12:31:34 1993  Ian Lance Taylor  (ian@cygnus.com)
15456         * configure.in: Build diff for crosses, but not for go32 host.
15458         * configure.in: Build gprof only for native, and don't build it
15459         for mips-*-*, rs6000-*-*, or i[34]86-*-sco*.
15461 Mon Jun  7 13:12:11 1993  david d `zoo' zuhn  (zoo at deneb.cygnus.com)
15463         * configure.in: don't build gas,ld,binutils on for *-*-sysv4
15465 Mon Jun  7 11:40:11 1993  Brendan Kehoe  (brendan@lisa.cygnus.com)
15467         * configure.in (host_tools): Add prms.
15469 Fri Jun  4 13:30:42 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15471         * Makefile.in: install gcc, do installation of $(INSTALL_MODULES)
15472         with $(FLAGS_TO_PASS) on the command line
15474         * config.sub: Recognize lynx and lynxos
15476 Fri Jun  4 10:59:56 1993  Ian Lance Taylor  (ian@cygnus.com)
15478         * config.sub: Accept -ecoff*, not just -ecoff.
15480 Thu Jun  3 17:38:54 1993  Ken Raeburn  (raeburn@cambridge.cygnus.com)
15482         * Makefile.in (taz): Use .gz suffix instead of .z.
15483         (binutils.tar.gz, gas+binutils.tar.gz, gas.tar.gz): Fixed target
15484         names.
15486 Thu Jun  3 00:27:06 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15488         * Makefile.in (vault-install): add an 'else true' (for Ultrix)
15490 Wed Jun  2 18:19:16 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15492         * Makefile.in (install-no-fixedincludes):  install gcc last, so
15493         that rebuilds that might happen during 'make install' don't get
15494         bogus gcc include files
15496 Wed Jun  2 16:14:10 1993  Ken Raeburn  (raeburn@cambridge.cygnus.com)
15498         Change from Utah for HPPA support:
15499         * config.guess: Recognize hppa1.x-hp-bsd.
15501 Wed Jun  2 11:53:33 1993  Per Bothner  (bothner@rtl.cygnus.com)
15503         * config.guess:  Add support for Motorola Delta 68k, up to r3v7.
15504         Patch from pot@fly.cnuce.cnr.it (Francesco Potorti`).
15506 Tue Jun  1 17:48:42 1993  Rob Savoye  (rob at darkstar.cygnus.com)
15508         * config.sub: Add support for rom68k and bug boot monitors.
15510 Mon May 31 09:36:37 1993  Jim Kingdon  (kingdon@cygnus.com)
15512         * Makefile.in: Make all-opcodes depend on all-bfd.
15514 Thu May 27 08:05:31 1993  Ian Lance Taylor  (ian@cygnus.com)
15516         * config.guess: Added special check for i[34]86-univel-sysv4*.
15518 Wed May 26 16:33:40 1993  Ian Lance Taylor  (ian@cygnus.com)
15520         * config.guess: For i[34]86-unknown-sysv4 use UNAME_MACHINE for
15521         the processor rather than assuming i486.
15523 Wed May 26 09:40:18 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
15525         * config.guess: Recognize SunOS6 as Solaris3.
15527 Tue May 25 23:03:11 1993  Per Bothner  (bothner@cygnus.com)
15529         * config.guess:  Fix typo.  Avoid #elif (not in K&R 1).
15530         Recognize SunOS 5.* only (and not [6-9].*) as being Solaris2.
15532 Tue May 25 12:44:18 1993  Ian Lance Taylor  (ian@cygnus.com)
15534         * build-all.mk (all-cross): New target for Canadian Cross.
15535         Added Q2 go32 targets.
15536         * test-build.mk: Configure go32 cross sparclite-aout and
15537         mips-idt-ecoff -with-gnu-ld.  Moved build binary directory from
15538         PARTIAL_HOLE_DIRS to BUILD_HOLES_DIRS.
15540 Mon May 24 15:30:06 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15542         * configure.in: fix Alpha GDB typo; also, don't build DejaGnu for
15543         GO32 hosted toolchains
15545 Mon May 24 14:18:41 1993  Rob Savoye  (rob at darkstar.cygnus.com)
15547         * configure: change  so "-exec-prefix" gets passed down rather
15548         than "-exec_prefix" so autoconf generated Makefiles get the
15549         exec_prefix set right.
15551 Fri May 21 10:42:25 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15553         * config.guess: get the Solaris2 minor version number
15555         * Makefile.in: add standards.texi and make-stds.texi to ETC_SUPPORT
15557 Fri May 21 06:20:52 1993  Brendan Kehoe  (brendan@lisa.cygnus.com)
15559         * config.guess: Recognize some Sequent platforms.
15561 Thu May 20 14:33:48 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15563         * Makefile.in: added the vault-install target
15565         * configure.in: actually use the Sun3 makefile fragment that's in
15566         config, also added the release dir to configdirs
15568 Thu May 20 14:19:18 1993  Ken Raeburn  (raeburn@cambridge.cygnus.com)
15570         * Makefile.in (taz): Fix modes on stuff in $(TOOL) dir also.
15572 Tue May 18 20:26:41 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15574         * configure.in: remove some program from Alpha targetted toolchains
15576 Tue May 18 15:23:19 1993  Ken Raeburn  (raeburn@cygnus.com)
15578         * Makefile.in (DISTSTUFFDIRS): Renamed from PROTODIRS.  Add ld and
15579         gprof.
15580         (taz): Run "make diststuff" in those directories instead of "make
15581         proto-dir".  Look for "VERSION=" only at start of line in subdir
15582         Makefile.  Use "gzip -9" for compression.
15583         (TEXINFO_SUPPORT, DIST_SUPPORT, BINUTILS_SUPPORT_DIRS): New vars.
15584         (binutils.tar.z): New target.
15586 Mon May 17 17:01:15 1993  Ken Raeburn  (raeburn@deneb.cygnus.com)
15588         * Makefile.in (taz): Include gpl.texinfo.
15590 Fri May 14 06:48:38 1993  Ken Raeburn  (raeburn@deneb.cygnus.com)
15592         * Makefile.in (setup-dirs): Merged into "taz" target.
15593         (taz): Only do `proto-dir' stuff if a directory is actually needed
15594         for this target.
15596 Wed May 12 13:09:44 1993  Ian Lance Taylor  (ian@cygnus.com)
15598         * Makefile.in (MUNCH_NM): New variable, defined to be $(NM).
15599         (FLAGS_TO_PASS): Pass down MUNCH_NM.
15600         (HOST_CC, HOST_PREFIX, HOST_PREFIX_1): New variables.
15601         (EXTRA_GCC_FLAGS): Pass down HOST_* variables.
15602         (gcc-no-fixedincludes): Correct for current gcc Makefile.
15604 Tue May 11 10:14:25 1993  Fred Fish  (fnf@cygnus.com)
15606         * Makefile.in (make-gdb.tar.Z):  Add configure, config.guess,
15607         config.sub, and move-if-change to gdb testsuite distribution
15608         archive, so the testsuite can be extracted, configured, and
15609         run separately from the gdb distribution.  Blow away the Chill
15610         tests that require a Chill compiled executable, since GNU Chill
15611         is not yet publically available.
15613 Mon May 10 17:22:26 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15615         * test-build.mk: set environment variables in a single command,
15616         instead of a list of assignments and exports
15618         * config.guess: recognize Alpha/OSF1 systems
15620 Mon May 10 14:55:51 1993  K. Richard Pixley  (rich@rtl.cygnus.com)
15622         * configure: Change help message to prefer --options rather than
15623           -options.
15625 Mon May 10 05:58:35 1993  Ken Raeburn  (raeburn@kr-pc.cygnus.com)
15627         * config.sub: Convergent Tech. "miniframe" uses m68010, sez
15628         zippy@ecst.csuchico.edu.
15629         * config.guess: Recognize miniframe.
15631 Sun May  9 17:47:57 1993  Rob Savoye  (rob at darkstar.cygnus.com)
15633         * Makefile.in: Use srcroot to find runtest rather than rootme.
15634         Pass RUNTESTFLAGS and EXPECT down in BASE_FLAGS_TO_PASS.
15636 Fri May  7 14:55:59 1993  Ian Lance Taylor  (ian@cygnus.com)
15638         * test-build.mk: Extensive additions to support building on a
15639         machine other than the host.
15641 Wed May  5 08:35:04 1993  Ken Raeburn  (raeburn@deneb.cygnus.com)
15643         * configure (tooldir): Fix for i386-aix again.
15645 Mon May  3 19:00:27 1993  Per Bothner  (bothner@cygnus.com)
15647         * configure, Makefile.in:  Change definition of $(tooldir)
15648         to match the FSF.
15650 Fri Apr 30 15:55:21 1993  Fred Fish  (fnf@cygnus.com)
15652         * config.guess:  Recognize i[34]86/SVR4.
15654 Fri Apr 30 15:52:46 1993  Steve Chamberlain  (sac@thepub.cygnus.com)
15656         * Makefile.in (all-gdb): gdb depends on sim.
15658 Thu Apr 29 23:30:48 1993  Fred Fish  (fnf@cygnus.com)
15660         * Makefile.in (gdb.tar.Z):  Make prototype gdb testsuite directory
15661         at the same time we make the prototype gdb directory.
15662         * Makefile.in (make-gdb.tar.Z):  Make the testsuite distribution
15663         files at the same time as the gdb base release distribution.
15665 Thu Apr 29 12:50:37 1993  Ian Lance Taylor  (ian@cygnus.com)
15667         * Makefile.in (check): Use individual check targets rather than
15668         DO_X rule.
15669         (check-gcc): Added.
15671 Thu Apr 29 09:50:07 1993  Jim Kingdon  (kingdon@cygnus.com)
15673         * config.sub: Use sysv3.2 not sysv32 for canonical OS
15674         for System V release 3.2.
15676 Thu Apr 29 10:33:22 1993  Ken Raeburn  (raeburn@cambridge.cygnus.com)
15678         * config.sub: Recognize hppaosf.
15679         * configure.in: Do configure ld/binutils/gas for it.
15681 Tue Apr 27 06:25:34 1993  Ken Raeburn  (raeburn@kr-pc.cygnus.com)
15683         * configure (tooldir): Alter syntax used to set this, for systems
15684         where "\$" isn't handled right, like i386-aix.
15686 Thu Apr 22 08:17:35 1993  Ian Lance Taylor  (ian@cygnus.com)
15688         * configure: Pass program-transform-name, not
15689         program_transform_name, to recursive configures.
15691 Thu Apr 22 02:58:21 1993  Ken Raeburn  (raeburn@cygnus.com)
15693         * Makefile.in (gas+binutils.tar.z): New rule for building snapshots
15694         of gas+ld+binutils.
15696 Mon Apr 19 17:41:30 1993  Per Bothner  (bothner@cygnus.com)
15698         * config.guess:  Recognize AIX3.2 as distinct from 3.1.
15700 Sat Apr 17 17:19:50 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15702         * configure.in: rename m88k-motorola-m88kbcs to m88k-motorola-sysv
15704 Tue Apr 13 16:52:16 1993  Brendan Kehoe  (brendan@lisa.cygnus.com)
15706         * Makefile.in (PRMS): Set back to all-prms.
15708 Sat Apr 10 12:04:07 1993  Ian Lance Taylor  (ian@cygnus.com)
15710         * test-build.mk: Pass -with-gnu-as for known MIPS native and MIPS
15711         targets, rather than for MIPS hosts.
15713 Fri Apr  9 13:51:06 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15715         * configure.in: add comment for --with-x default values
15717         * config.guess: handle Motorola Delta88 box for SVR3 and SVR4.
15719         * Makefile.in: add check-* targets for each of the directories in
15720         the tree.  Add a definition of RUNTEST that will use the one we
15721         just built, if it exists.  Pass this down via FLAGS_TO_PASS.
15723 Thu Apr  8 09:21:30 1993  Ian Lance Taylor  (ian@cygnus.com)
15725         * configure.in: Removed obsolete references to bfd_target and
15726         target_makefile_frag.
15728         * build-all.mk: Set assorted targets for Q2.
15729         * config.sub: Recognize z8k-sim and h8300-hms.
15730         * test-build.mk: Really don't pass host to configure.
15731         (HOLES): Added uname.
15733 Wed Apr  7 15:48:19 1993  Ian Lance Taylor  (ian@cygnus.com)
15735         * configure: Handle an empty program-prefix, program-suffix or
15736         program-transform-name correctly.
15738 Tue Apr  6 13:48:41 1993  Ian Lance Taylor  (ian@cygnus.com)
15740         * build-all.mk: -G 8 no longer required for MIPS targets.
15741         * test-build.mk: Don't pass host argument to configure; make it
15742         guess.
15744 Tue Apr  6 10:36:53 1993  Fred Fish  (fnf@cygnus.com)
15746         * Makefile.in (gdb.tar.Z):  Fix for building gzip'd distribution.
15747         * Makefile.in (COMPRESS):  New macro, like GZIP.
15749 Fri Apr  2 09:02:31 1993  Ian Lance Taylor  (ian@cygnus.com)
15751         * test-build.mk: Use -with-gnu-as for mips-sgi-irix4 as well.
15753         * build-all.mk: Set GCC to gcc -O -G 8 for MIPS targets, since gcc
15754         with gas currently defaults to -G 0.
15756 Thu Apr  1 08:25:42 1993  Ian Lance Taylor  (ian@cygnus.com)
15758         * Makefile.in (all-flex): flex depends on byacc.
15760         * build-all.mk: If host not specified, use config.guess.  Pass TAG
15761         to test-build.mk as RELEASE_TAG.
15762         * test-build.mk (configargs): New variable containing arguments to
15763         pass to configure.  Set to -with-gnu-as on mips-dec-ultrix.
15764         (FLAGS_TO_PASS): Pass down RELEASE_TAG.
15766         * config.guess: Use /bin/uname when checking -X argument on SCO,
15767         to avoid invoking GNU uname which doesn't understand -X.
15769         * test-build.mk: Don't use /usr/unsupported/bin/as on AIX.
15771         * configure.in: Build gas for mips-*-*.
15773 Wed Mar 31 21:20:58 1993  K. Richard Pixley  (rich@rtl.cygnus.com)
15775         * Makefile.in (all.normal): insert missing backslash.
15777 Wed Mar 31 12:31:56 1993  Ian Lance Taylor  (ian@cygnus.com)
15779         * build-all.mk: Bump -XNh value to 1500 to match gcc requirements.
15781         * Makefile.in: Complete overhaul to merge many almost identical
15782         targets.
15784 Tue Mar 30 20:17:01 1993  Ken Raeburn  (raeburn@cambridge.cygnus.com)
15786         * Makefile.in (setup-dirs-gdb): Renamed from setup-dirs.
15787         (gdb.tar.Z): Adjusted.
15789         * Makefile.in (setup-dirs, taz): New targets; should be general
15790         enough to adapt for gdb sometime.  Build only .z file.
15791         (gas.tar.z): New target.
15793 Tue Mar 30 10:03:09 1993  Ian Lance Taylor  (ian@cygnus.com)
15795         * build-all.mk: Use CC=cc -Xs on Solaris.
15797 Thu Mar 25 15:14:30 1993  Fred Fish  (fnf@cygnus.com)
15799         * Makefile.in:  Incorporate changes suggested by wilson@cygnus.com
15800         for handling BISON for FSF releases.
15802 Thu Mar 25 06:19:48 1993  Ken Raeburn  (raeburn@kr-pc.cygnus.com)
15804         * configure: Actually implement the change zoo just documented.
15806 Wed Mar 24 13:02:44 1993  david d `zoo' zuhn  (zoo at poseidon.cygnus.com)
15808         * configure: when using config.guess, only set target_alias when
15809         it's not already been set (ie, on the command line)
15811 Mon Mar 22 23:07:39 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15813         * Makefile.in: add installcheck target, set PRMS to install-prms
15815 Sun Mar 21 16:46:12 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15817         * configure: add support for package_makefile_fragment, handle the
15818         case where a directory has a configure.in file but no Makefile.in
15819         more gracefully (with an actual understandable error message, even);
15820         add support for --without (and add this to the usage message); also
15821         explicitly add a --host=${host_alias} to the command line when
15822         config.guess is used
15824 Sun Mar 21 12:11:58 1993  Jim Wilson  (wilson@sphagnum.cygnus.com)
15826         * configure: Must use both --host and --target in recursive calls.
15828 Thu Mar 18 12:31:35 1993  Ian Lance Taylor  (ian@cygnus.com)
15830         * Makefile.in: Change deja-gnu to dejagnu.
15832 Mon Mar 15 15:44:35 1993  Ian Lance Taylor  (ian@cygnus.com)
15834         * configure.in (h8300-*-*, h8500-*-*): Don't build libg++.
15836 Fri Mar 12 18:30:14 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15838         * configure.in: canonicalize all instances to *-*-solaris2*,
15839         also strip out a number of tools to not build for go32 host
15841 Wed Mar 10 12:08:27 1993  K. Richard Pixley  (rich@rtl.cygnus.com)
15843         * config.guess: add GPL.
15845         * Makefile.in, config.guess, config.sub, configure: bump
15846           copyrights to 93.
15848 Wed Mar 10 07:12:48 1993  Ian Lance Taylor  (ian@cygnus.com)
15850         * Makefile.in (do-info): Removed obsolete check for existence of
15851         localenv file.
15853         * Makefile.in (MAKEOVERRIDES): Define to be empty.
15855 Wed Mar 10 03:11:56 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15857         * Makefile.in: a couple of 'else true' for decstation,
15858         support for TclX
15860         * configure.in: configure tclX too; don't remove Tk on RS/6000 anymore
15862 Tue Mar  9 16:06:12 1993  K. Richard Pixley  (rich@cygnus.com)
15864         * Makefile.in (setup-dirs): change invocation of make to $(MAKE).
15866 Mon Mar  8 14:52:11 1993  Ken Raeburn  (raeburn@cambridge)
15868         * config.guess: Recognize i386-ibm-aix (PS/2).
15869         * configure.in: Use config/mh-aix386 file for it.
15871 Mon Mar  8 11:12:43 1993  Ian Lance Taylor  (ian@cygnus.com)
15873         * Makefile.in (GCC_FOR_TARGET): Eliminated definition; use
15874         CC_FOR_TARGET instead.
15875         (BASE_FLAGS_TO_PASS): Pass GCC_FOR_TARGET=$(CC_FOR_TARGET).
15877 Wed Mar  3 16:00:28 1993  Steve Chamberlain  (sac@ok.cygnus.com)
15879         * Makefile.in: Add sim to list of directories sent with gdb
15881 Wed Mar  3 11:42:39 1993  Ken Raeburn  (raeburn@cygnus.com)
15883         * configure.in: Put back mips-dec-bsd* case.
15885 Tue Mar  2 21:15:58 1993  Fred Fish  (fnf@cygnus.com)
15887         (Ultrix 2.2 support from Michael Rendell <michael@mercury.cs.mun.ca>)
15888         * configure.in (vax-*-ultrix2*):  Add Ultrix 2.2 triplet.
15889         * config.guess:  Change 'VAX*:ULTRIX:*:*' to 'VAX*:ULTRIX*:*:*'.
15891 Tue Mar  2 18:11:03 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15893         * configure.in: remove no-op mips-dec-bsd* in "case $target"
15895         * Makefile.in (dir.info): only run gen-info-dir if it exists,
15896         (install-info): install dir.info only if it exists,
15897         (all-expect, install-expect): pass along X11_FLAGS_TO_PASS
15899 Tue Mar  2 09:01:30 1993  Ken Raeburn  (raeburn@cygnus.com)
15901         * configure.in: For vms target, skip bfd, ld, binutils.  Do build
15902         gas for mips-dec-bsd.
15904 Tue Mar  2 08:35:24 1993  Ian Lance Taylor  (ian@cygnus.com)
15906         * configure (makesrcdir): If ${srcdir} is relative and not ".",
15907         and ${subdir} is not ".", set makesrcdir based on ${invsubdir}.
15909 Tue Feb 23 14:18:28 1993  Mike Werner  (mtw@poseidon.cygnus.com)
15911         * configure.in: Added "dejagnu" to hosttools list.
15913 Mon Feb 22 23:28:38 1993  Per Bothner  (bothner@rtl.cygnus.com)
15915         * config.sub, configure.in, config.guess:  Add support
15916         for Bosx, an AIX variant from Bull.
15917         Patches from F.Pierresteguy@frcl.bull.fr.
15919 Sun Feb 21 11:15:22 1993  Mike Werner  (mtw@poseidon.cygnus.com)
15921         * devo/dejagnu: Initial creation of devo/dejagnu.
15922         Migrated dejagnu testcases and support files for testing software
15923         tools to reside as subdirectories, currently called "testsuite",
15924         within the directory of the software tool.  Migrated all programs,
15925         support libraries, etc. beloging to dejagnu proper from
15926         devo/deja-gnu to devo/dejagnu.  These files were moved "as is"
15927         with no modifications.  The changes to these files which will
15928         allow them to configure, build, and execute properly will be made
15929         in a future update.
15931 Fri Feb 19 20:19:39 1993  Brendan Kehoe  (brendan@lisa.cygnus.com)
15933         * Makefile.in: Change send_pr to send-pr.
15934         * configure.in: Likewise.
15935         * send_pr: Renamed directory to send-pr.
15937 Fri Feb 19 19:00:13 1993  Per Bothner  (bothner@cygnus.com)
15939         * Makefile.in:  Add some extra semi-colons (needed if SHELL=bash).
15941 Fri Feb 19 00:59:33 1993  John Gilmore  (gnu@cygnus.com)
15943         * README:  Update for gdb-4.8 release.
15944         * Makefile.in (gdb.tar.Z):  Add texinfo/tex3patch.  Build
15945         gdb-xxx.tar.z (gzip'd) file also.
15947 Thu Feb 18 09:16:17 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15949         * Makefile.in: make all-diff depend on all-libiberty
15951 Tue Feb 16 16:06:31 1993  K. Richard Pixley  (rich@cygnus.com)
15953         * config.guess: add vax-ultrix in the spirit of mips-ultrix.
15955 Tue Feb 16 05:57:15 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15957         * configure.in, Makefile.in: add hello, tar, gzip, recode, indent
15959 Tue Feb 16 00:58:20 1993  John Gilmore  (gnu@cygnus.com)
15961         * Makefile.in (DEVO_SUPPORT):  Remove etc directory
15962         (ETC_SUPPORT):  Only add the files GDB wants from etc/.
15963         (gdb.tar.Z):  Use ETC_SUPPORT.  Use byacc when building the file.
15965 Thu Feb 11 20:14:28 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
15967         * Makefile.in:  makeinfo binary is in a new location
15969 Tue Feb  9 12:42:27 1993  Ian Lance Taylor  (ian@cygnus.com)
15971         * config.sub: Accept -ecoff as an OS.
15973         * Makefile.in: Various changes to eliminate a level of make
15974         recursion and reduce the required command line length.
15975         (BASE_FLAGS_TO_PASS): New variable holding flags passed to all
15976         sub-makes.
15977         (EXTRA_HOST_FLAGS, EXTRA_TARGET_FLAGS, EXTRA_GCC_FLAGS): New
15978         variables holding settings for specific sub-makes.
15979         (FLAGS_TO_PASS, TARGET_FLAGS_TO_PASS, GCC_FLAGS_TO_PASS): Rewrote
15980         in terms of BASE_FLAGS_TO_PASS.
15981         (TARGET_LIBS): New variable listing directories which use
15982         TARGET_FLAGS_TO_PASS.
15983         (subdir_do): Eliminated.
15984         (do-*): New set of targets to replace subdir_do.
15985         (various): All targets which used subdir_do now depend on do-*.
15986         (local-clean): Renamed from do_clean.
15987         (local-distclean): New target, dependency of distclean and
15988         realclean.
15989         (install-info): Don't create directories.  Depend on dir.info
15990         rather than calling make recursively.
15991         (install-dir.info): Eliminated.
15992         (install-info-dirs): Create all info directories here.
15993         (dir.info): Depend upon do-install-info.
15995         * test-build.mk (HOLES): Added false.
15997 Sat Feb  6 14:05:09 1993  Per Bothner  (bothner@rtl.cygnus.com)
15999         * config.guess:  Recognize BSDI and BSDJ (Jolitz 386bsd).
16001 Thu Feb  4 20:49:18 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16003         * Makefile.in (info): remove dependency on all-texinfo.  The
16004         problem was really in texinfo/C, not at this level.
16006 Thu Feb  4 13:38:41 1993  Ian Lance Taylor  (ian@cygnus.com)
16008         * Makefile.in (info): Added dependency on all-texinfo (PR 2112).
16010 Thu Feb  4 01:50:53 1993  John Gilmore  (gnu@cygnus.com)
16012         * Makefile.in (make-gdb.tar.Z):  Change BISON to 'bison -y' for
16013         GDB releases.
16015 Wed Feb  3 17:22:16 1993  Ken Raeburn  (raeburn@cambridge.cygnus.com)
16017         * configure: Include srcdir in message about target of link not
16018         being found.  Don't convert `-' to `_' in `with' options being
16019         passed to subdirs.
16021 Tue Feb  2 18:57:59 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16023         * configure.in: add uudecode to host_tools
16025         * Makefile.in: added {all,install}-uudecode targets, added them to
16026         the appropriate lists
16028 Tue Feb  2 11:45:53 1993  Ian Lance Taylor  (ian@cygnus.com)
16030         * Makefile.in (all-gcc): Added dependency on all-gas.
16032         * configure.in (mips-*-*): Build ld and binutils.
16034 Mon Feb  1 12:35:41 1993  K. Richard Pixley  (rich@rtl.cygnus.com)
16036         * configure: check return code from mkdir, print error message and
16037           exit on failure.
16039 Sat Jan 30 16:40:28 1993  John Gilmore  (gnu@cygnus.com)
16041         * Makefile.in (make-gdb.tar.Z):  New location for texinfo.tex.
16043 Thu Jan 28 15:09:59 1993  Ian Lance Taylor  (ian@cygnus.com)
16045         * test-build.mk (HOLES): Added tar, cpio and uudecode.
16047 Wed Jan 27 16:50:32 1993  Jim Wilson  (wilson@sphagnum.cygnus.com)
16049         * config.sub (h8500):  Recognize this as a cpu type.
16051 Sat Jan 23 20:32:01 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16053         * configure: source directory missing is no longer a warning
16055         * configure.in: recognize irix[34]* instead of irix[34]
16057         * Makefile.in: define and pass down X11_LIB
16059 Sat Jan 23 13:49:40 1993  Per Bothner  (bothner@cygnus.com)
16061         * guess-systype: Renamed to ...
16062         * config.guess:  ... by popular request.
16063         * configure.in, Makefile.in:  Update accordingly.
16065 Thu Jan 21 12:20:55 1993  Per Bothner  (bothner@cygnus.com)
16067         * guess-systype:  Patches from John Eaton <jwe@che.utexas.edu>:
16068         + Add Convex, Cray/Unicos, and Encore/Multimax support.
16069         + Execute ./dummy instead of assuming . is in PATH.
16071 Tue Jan 19 17:18:06 1993  Per Bothner  (bothner@cygnus.com)
16073         * guess-systype:  New shell script.  Attempts to guess the
16074         canonical host name of the executing host.
16075         Only a few hosts are supported so far.
16076         * configure:  Call guess-systype if no host is specified.
16078 Tue Jan 19 08:26:07 1993  Ian Lance Taylor  (ian@cygnus.com)
16080         * Makefile.in (gcc-no-fixedincludes): Made to work with current
16081         gcc Makefile.
16084 Fri Jan 15 10:27:02 1993  Ian Lance Taylor  (ian@cygnus.com)
16086         * Makefile.in (GCC_FLAGS_TO_PASS): New variable.
16087         (all-gcc, install-gcc, subdir_do): Use it.
16089 Wed Jan 13 17:06:45 1993  Jim Wilson  (wilson@sphagnum.cygnus.com)
16091         * Makefile.in: Rename uninstalled gcc driver from gcc to xgcc.
16093 Wed Jan  6 20:29:16 1993  Mike Werner  (mtw@rtl.cygnus.com)
16095         * Makefile.in: Removed explicit setting of SUBDIRS. SUBDIRS is now
16096           set exclusively by configure, using configure.in .
16098 Wed Jan  6 13:44:11 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16100         * test-build.mk: set $PATH for all builds
16102         * Makefile.in: pass TARGET_FLAGS_TO_PASS for xiberty and libm
16104 Wed Jan  6 11:02:10 1993  Fred Fish  (fnf@cygnus.com)
16106         * Makefile.in (GCC_FOR_TARGET):  Supply a default that matches
16107         the one used in gcc/Makefile.in, so that a null expansion doesn't
16108         override the one needed to build gcc with a native cc.
16111 Tue Jan  5 07:55:12 1993  Ken Raeburn  (raeburn@cambridge.cygnus.com)
16113         * configure: Accept -with arguments.
16115 Sun Jan  3 15:15:09 1993  Steve Chamberlain  (sac@thepub.cygnus.com)
16117         * Makefile.in: added h8300sim
16119 Tue Dec 29 15:06:00 1992  Ian Lance Taylor  (ian@cygnus.com)
16121         * build-all.mk: If canonhost is i386-unknown-sco3.2v4, change it
16122         to i386-sco3.2v4.  Set TARGETS and CFLAGS for i386-sco3.2v4.
16123         (all-cygnus, native, build-cygnus): Make
16124         $(canonhost)-stamp-3stage-done, not $(host)....
16125         * test-build.mk (stamp-3stage-compared): Use tail +10c for
16126         i386-sco3.2v4.  Added else true to if command.
16128 Mon Dec 28 12:08:56 1992  Ken Raeburn  (raeburn@cygnus.com)
16130         * config.sub: (from FSF) Sequent uses a BSD-like OS.
16132 Mon Dec 28 08:32:06 1992  Minh Tran-Le  (mtranle@paris.intellicorp.com)
16134         * configure.in (i[34]86-*-isc*): added; uses mh-sysv.
16136 Thu Dec 24 17:26:24 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16138         * configure.in: don't remove binutils from Solaris builds
16140 Thu Dec 24 14:08:38 1992 david d`zoo' zuhn  (zoo@cygnus.com)
16142         * Makefile.in: get rid of earlier definitions for *clean,
16143         also handle the recursive info rule better
16145 Thu Dec 24 12:40:21 1992  Per Bothner  (bothner@rtl.cygnus.com)
16147         * Makefile.in (mostlyclean, distclean, realclean):  Fix to
16148         do more-or-less the right thing.
16150 Wed Dec 16 10:25:31 1992  Ian Lance Taylor  (ian@cygnus.com)
16152         * Makefile.in: Add lines defining CC and CXX, and use CXX rather
16153         than gcc in definitions of CXX_FOR_BUILD and CXX_FOR_TARGET.
16155 Tue Dec 15 00:34:32 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16157         * Makefile.in: change all $(host_cpu)-$(host_vendor)-$(host_os) to
16158         $(host_canonical).
16160         * configure.in: split the configdirs list into 4 categories (native
16161         v. cross, library v. tool) and handle the cross-only and native-
16162         only in more reasonable (and correct!) way.
16164 Mon Dec 14 17:04:22 1992  Stu Grossman  (grossman at cygnus.com)
16166         * configure.in (hppa*-*-*):  Don't remove bfd and gdb from
16167         configdirs anymore.
16169 Sun Dec 13 00:37:26 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16171         * Makefile.in: extensive cleanup::  removed all of the explicit
16172         clean-* targets, collapsed many wrappers around subdir_do into
16173         one, added additional targets to satisfy standards.texi, deleted
16174         some old targets, some changes for consistency
16176 Fri Dec 11 20:18:02 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16178         * configure.in: handle some programs as cross-only, and others as
16179         native only
16181         * test-build.mk: handle partial holes in a more generic manner
16183         * Makefile.in: m4 depends on libiberty
16185 Thu Dec  3 21:52:11 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16187         * configure.in: add m4, textutils, fileutils, sed, shellutils,
16188         time, wdiff, and find to configdirs
16190         * Makefile.in: all, clean, and install rules for the new programs
16191         added to configure.in
16193 Mon Nov 30 14:54:34 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16195         * configure.in: use mh-sun for all *-sun-* hosts
16197 Fri Nov 27 18:35:54 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16199         * Makefile.in: define flags for X11 include files and library file
16200         locations, pass them down to the programs that need this info
16202         * build-all.mk: added a 'native' target, to 3stage the native toolchain
16204 Sun Nov 22 18:59:13 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16206         * configure.in: start building libg++ for HP-UX targets
16208 Wed Nov 18 19:33:11 1992  John Gilmore  (gnu@cygnus.com)
16210         * README:  Update references to files moved into etc/.
16212 Sun Nov 15 09:36:08 1992  Fred Fish  (fnf@cygnus.com)
16214         * config.sub (i386sol2, i486sol2):  i[34]86-unknown-solaris2.
16215         * configure.in (i[34]86-*-solaris2*):  Use config/mh-sysv4.
16217 Thu Nov 12 08:50:42 1992  Ian Lance Taylor  (ian@cygnus.com)
16219         * configure: accept dash as well as underscore in long option
16220         names for FSF compatibility.
16222 Wed Nov 11 08:04:37 1992  Ian Lance Taylor  (ian@cygnus.com)
16224         * config.sub: added -sco3.2v4 support from FSF.
16226 Sun Nov  8 21:14:30 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16228         * configure.in: expand the section that adds or removes
16229         directories from the list of programs to build, to handle native
16230         vs. cross in addition to host v. native
16232 Sat Nov  7 18:52:27 1992  Per Bothner  (bothner@rtl.cygnus.com)
16234         * Makefile.in:  Replace C++ in macro names with CXX.
16235         This is less likely to break ...
16237 Sat Nov  7 15:16:58 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16239         * test-build.mk: add -w to GNU_MAKE
16241 Fri Nov  6 23:10:37 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16243         * config.sub: remove 'sparc'-->'sparc-sun' default transformation,
16244         add 'sparc' to list of recognized cpus.  This needed to make
16245         'sparc-aout' expand to 'sparc-unknown-aout' instead of 'sparc-sun-aout'.
16246         Delete some redundant ose68 variants.  Recognize -wrs as an os,
16247         then changes that into $CPU-wrs-vxworks.
16249         * configure.in: remove most references to gdbtest, regularize
16250         target based program removal
16252         * test-build.mk: import from p3 tree (many fixes and changes)
16254 Fri Nov  6 20:59:00 1992  david d `zoo' zuhn  (zoo@cygnus.com)
16256         * Makefile.in: added rules to handle tcl, tk, and expect
16258         * configure.in: handle those directories if they exist
16260 Thu Nov  5 14:35:41 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16262         * config.sub: removed bogus hppabsd and hppahpux names, since
16263         "hppa" is not a valid cpu (hppa1.1 or hppa1.0 are, though)
16265 Thu Oct 29 00:12:41 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16267         * Makefile.in: all-gcc now depends on all-binutils.  all-libg++
16268         depends upon all-xiberty
16270         * Makefile.in: changes from p3, including:
16272         Thu Oct  8 15:00:17 1992  Ian Lance Taylor  (ian@cygnus.com)
16274         * Makefile.in (XTRAFLAGS): include newlib directories if
16275         newlib/Makefile exists, rather than if host != target.
16277         Fri Sep 25 13:41:52 1992  Ian Lance Taylor  (ian@cygnus.com)
16279         * Makefile.in: added -nostdinc to XTRAFLAGS if we are using gcc
16280         from the same source tree and not building a cross-compiler.  This
16281         matters for the libg++ configuration if reconfiguring a tree that
16282         has already been installed.
16284         Thu Sep 10 10:35:51 1992  Ian Lance Taylor  (ian@cygnus.com)
16286         * Makefile.in: added -I for newlib/targ-include to XTRAFLAGS, to
16287         pick up the machine and system specific header files.
16289         * Makefile.in: added AS_FOR_TARGET, passed down in
16290         TARGET_FLAGS_TO_PASS.  Added CC_FOR_BUILD, which is intended to be
16291         the C compiler to use to create programs which are run in the
16292         build environment, set it to default to $(CC), and passed it down
16293         in FLAGS_TO_PASS and TARGET_FLAGS_TO_PASS.
16295         Mon Sep  7 22:34:42 1992  Ian Lance Taylor  (ian@cirdan.cygnus.com)
16297         * Makefile.in: add $(host) = $(target) tests back to *_FOR_TARGET.
16298         We need them for unusual native builds, like systems without
16299         ranlib.
16301         * configure: also define $(host_canonical) and
16302         $(target_canonical), which are the full, canonical names for the
16303         given host and target
16305 Sun Nov  1 16:38:17 1992  Per Bothner  (bothner@cygnus.com)
16307         * Makefile.in:  Added separate definitions for C++.
16309 Fri Oct 30 11:37:52 1992  Fred Fish  (fnf@cygnus.com)
16311         * configure.in (configdirs):  Add deja-gnu.
16313 Fri Oct 23 00:39:18 1992  John Gilmore  (gnu@cygnus.com)
16315         * README:  Update for configure.texi and gdb-4.7 release.
16317 Wed Oct 21 21:54:27 1992  John Gilmore  (gnu@cygnus.com)
16319         * Makefile.in:  Move "all" target to top of file.
16320         Previously, first target was ".PHONY" which caused BSD4.4 make
16321         to build .PHONY when make was run without arguments.
16323 Mon Oct 19 01:17:54 1992  John Gilmore  (gnu@cygnus.com)
16325         * Makefile.in:  Add COPYING.LIB to GDB releases, now that there's
16326         Library-copylefted code in libiberty.
16328 Tue Oct 13 01:22:32 1992  John Gilmore  (gnu@cygnus.com)
16330         * config.sub:  Replace m68kmote with plain old m68k.
16332 Fri Oct  9 03:14:24 1992  John Gilmore  (gnu@cygnus.com)
16334         * Makefile.in:  Remove space from blank line, avoid Make complaints.
16336 Thu Oct  8 18:41:45 1992  Ken Raeburn  (raeburn@cygnus.com)
16338         * config.sub: Complain if no argument is given.  Added support for
16339         386bsd as OS and target alias.
16341 Thu Oct  8 15:07:22 1992  Ian Lance Taylor  (ian@cygnus.com)
16343         * Makefile.in (XTRAFLAGS): include newlib directories if
16344         newlib/Makefile exists, rather than if host != target.
16346 Mon Oct  5 03:00:09 1992  Mark Eichin  (eichin at tweedledumber.cygnus.com)
16348         * config.sub: recognize sparclite-wrs-vxworks.
16350         * Makefile.in (install-xiberty): added *-xiberty make rules (from
16351         p3.) Added clean-xiberty to clean.
16353 Thu Oct  1 17:59:19 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16355         * configure.in: use *-*-* instead of nested cases for host and target
16357 Tue Sep 29 14:11:18 1992  Ian Lance Taylor  (ian@cygnus.com)
16359         * Makefile.in: added -nostdinc to XTRAFLAGS if we are using gcc
16360         from the same source tree and not building a cross-compiler.  This
16361         matters for the libg++ configuration if reconfiguring a tree that
16362         has already been installed.
16364 Sep 20 08:53:10 1992  Fred Fish  (fnf@cygnus.com)
16366         * config.sub (i486v/i486v4):  Merge in from FSF version.
16368 Fri Sep 18 00:32:00 1992  Mark Eichin  (eichin@cygnus.com)
16370         * configure: only set PWD if it is already set.
16372 Thu Sep 17 23:05:53 1992  Mark Eichin  (eichin@cygnus.com)
16374         * configure: just set PWD=`pwd` at the top, since Ultrix sh
16375         doesn't have unset and all success paths (and most error paths)
16376         out set it anyway. (Note: should change all uses of ${PWD=`pwd`}
16377         to just ${PWD} to avoid confusion.)
16379 Tue Sep 15 16:00:54 1992  Ian Lance Taylor  (ian@cygnus.com)
16381         * configure: always set $(tooldir) to $(libdir)/$(target_alias),
16382         even for a native compilation.
16384 Tue Sep 15 02:22:56 1992  John Gilmore  (gnu@cygnus.com)
16386         Changes to make the gdb.tar.Z rule work better.
16388         * Makefile.in (GDB_SUPPORT_DIRS):  Add opcodes.
16389         (DEVO_SUPPORT):  Add configure.texi.
16390         (bfd-ilrt.tar.Z):  Remove ancient rule.
16392 Thu Sep 10 10:43:19 1992  Ian Lance Taylor  (ian@cygnus.com)
16394         * Makefile.in: added -I for newlib/targ-include to XTRAFLAGS, to
16395         pick up the machine and system specific header files.
16397         * configure.in, config.sub: added new target m68010-adobe-scout,
16398         with alias of adobe68k.  Changed configure.in to check for
16399         -scout before -sco* to avoid a false match.
16401         * Makefile.in: added AS_FOR_TARGET, passed down in
16402         TARGET_FLAGS_TO_PASS.  Added CC_FOR_BUILD, which is intended to be
16403         the C compiler to use to create programs which are run in the
16404         build environment, set it to default to $(CC), and passed it down
16405         in FLAGS_TO_PASS and TARGET_FLAGS_TO_PASS.
16407 Wed Sep  9 12:21:42 1992  Ian Lance Taylor  (ian@cygnus.com)
16409         * Makefile.in: added TARGET_FLAGS_TO_PASS, CC_FOR_TARGET,
16410         AR_FOR_TARGET, RANLIB_FOR_TARGET, NM_FOR_TARGET.  Pass
16411         TARGET_FLAGS_TO_PASS, which defines CC, AR, RANLIB and NM as the
16412         FOR_TARGET variants, to newlib and libg++.
16414 Tue Sep  8 17:28:30 1992  Ken Raeburn  (raeburn@cambridge.cygnus.com)
16416         * Makefile.in (all-gas, all-gdb): Require all-opcodes to be built
16417         first.
16419 Wed Sep  2 02:50:05 1992  John Gilmore  (gnu@cygnus.com)
16421         * config.sub:  Accept `elf' as an environment.
16423 Tue Sep  1 15:48:30 1992  Steve Chamberlain  (sac@thepub.cygnus.com)
16425         * Makefile.in (all-opcodes):  cd into the right directory
16427 Sun Aug 30 21:12:11 1992  Ian Lance Taylor  (ian@cygnus.com)
16429         * configure: added -program_transform_name option, used as
16430         argument to sed when installing programs.
16431         configure.texi: added documentation for -program_prefix,
16432         -program_suffix and -program_transform_name.
16434 Thu Aug 27 21:59:44 1992  John Gilmore  (gnu@cygnus.com)
16436         * config.sub:  Accept i486 where i386 ok.
16438 Thu Aug 27 13:04:42 1992  Brendan Kehoe  (brendan@rtl.cygnus.com)
16440         * config.sub: accept we32k
16442 Mon Aug 24 14:05:14 1992  Ian Lance Taylor  (ian@cygnus.com)
16444         * config.sub, configure.in: accept OSE68000 and OSE68k.
16446         * Makefile.in: don't create all directories for ``make install'';
16447         let the subdirectories create the ones they need.
16449 Tue Aug 11 23:13:17 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16451         * COPYING: new file, GPL v2
16453 Tue Aug  4 01:12:43 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16455         * Makefile.in: use the new gen-info-dir, which needs a template
16456         argument (which also lives in texinfo)
16458         * configure.texi, standards.texi: fix INFO-DIR-ENTRY
16460 Mon Aug  3 00:34:17 1992  Fred Fish  (fnf@cygnus.com)
16462         * config.sub (ncr3000):  Change i386 to i486.
16464 Thu Jul 23 00:12:17 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16466         * Makefile.in: add install-rcs, install-grep to
16467         install-no-fixedincludes, removed install-bison and install-libgcc
16469 Tue Jul 21 01:01:50 1992  david d `zoo' zuhn (zoo@cygnus.com)
16471         * configure.in: grab the HPUX makefile fragment if on HPUX
16473 Mon Jul 20 11:02:09 1992  D. V. Henkel-Wallace  (gumby@cygnus.com)
16475         * Makefile.in: eradicate bison spoor (ditto libgcc).
16476          configure.in: recognise m68{k,000}-ericsson-OSE.
16477          es1800 is alias for m68k-ericsson-OSE
16479 Sun Jul 19 17:49:02 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16481         * configure.in: rearrange the parts that remove programs from
16482         configdirs, based now on HOST==TARGET or by canonical triple.
16484 Fri Jul 17 22:52:49 1992  K. Richard Pixley  (rich@rtl.cygnus.com)
16486         * test-build.mk: recurse explicitly with -f test-build.mk when
16487           appropriate.  predicate stage3 and comparison on the existence
16488           of gcc.  That is, if gcc isn't around, we aren't three-staging.
16489           On very clean, also remove ...stamp-co.  Build in-place before
16490           doing other builds.
16492 Thu Jul 16 18:33:09 1992  Steve Chamberlain  (sac@thepub.cygnus.com)
16494         * Makefile.in, configure.in: add tgas
16496 Thu Jul 16 16:05:28 1992  K. Richard Pixley  (rich@rtl.cygnus.com)
16498         * Makefile.in: a number of changes merged in from progressive.
16500         * configure.in: add libm.
16502         * .cvsignore: ignore some stuff that comes from test-build.mk.
16504 Tue Jul  7 00:24:52 1992  Fred Fish  (fnf@cygnus.com)
16506         * config.sub:  Add es1800 (m68k-ericsson-es1800).
16508 Tue Jun 30 20:24:41 1992  D. V. Henkel-Wallace  (gumby@cygnus.com)
16510         * configure: Add program_suffix (parallel to program_prefix)
16511         * Makefile.in: adjust directory-creating script for losing decstation
16513 Mon Jun 22 23:43:48 1992  Per Bothner  (bothner@cygnus.com)
16515         * configure:  Minor $subdir-related fixes.
16517 Mon Jun 22 18:30:26 1992  Steve Chamberlain  (sac@thepub.cygnus.com)
16519         * configure: fix various problems with propogating
16520         makefile_target_frag in subdirs.
16521         * configure.in: config libgcc if its there
16523 Fri Jun 19 15:19:40 1992  Stu Grossman  (grossman at cygnus.com)
16525         * config.sub:  HPPA merge.
16527 Sun Jun 14 10:29:19 1992  John Gilmore  (gnu at cygnus.com)
16529         * Makefile.in:  Replace all-bison with all-byacc in all
16530         dependency lines for other tools (which now use byacc).
16532 Fri Jun 12 22:21:57 1992  John Gilmore  (gnu at cygnus.com)
16534         * config.sub:  Add sun4sol2 => sparc-sun-solaris2.
16536 Thu Jun  4 12:07:32 1992  Mark Eichin  (eichin@cygnus.com)
16538         * Makefile.in: make gprof rules similar to byacc rules (instead of
16539         vestigal $(unsubdir) that didn't work...)
16541 Thu Jun  4 00:37:05 1992  Per Bothner  (bothner@rtl.cygnus.com)
16543         * config.sub:  Add support for Linux.
16544         * Makefile.in:  Use $(FLAGS_TO_PASS) more consistently
16545         (at least for libg++).
16547 Tue Jun 02 20:03:00 1992  david d `zoo' zuhn (zoo@cygnus.com)
16549         * configure.texi: fix doc for the -nfp option to configure
16551 Tue Jun  2 17:20:52 1992  Michael Tiemann  (tiemann@cygnus.com)
16553         * Makefile.in (all-binutils): ar needs flex, so depend on all-flex.
16555 Sun May 31 15:04:08 1992  Mark Eichin  (eichin at cygnus.com)
16557         * config.sub: changed [^-]+ to [^-][^-]* so that it works under
16558         Sun sed. (BSD 4.3 sed doesn't handle [^-]+ either.)
16559         * configure.in: added solaris* host_makefile_frag hook.
16561 Sun May 31 01:10:34 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16563         * config.sub: changed recognition of m68000 so that various
16564         m68k types can be specified via m680[01234]0
16566 Sat May 30 21:01:06 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16568         * config.sub (basic_machine): fix sed so that '-foo' isn't
16569         completely substituted out while .+'-foo' loses the '-foo'
16571 Wed May 27 23:18:52 1992  Michael Tiemann  (tiemann@rtl.cygnus.com)
16573         * config.sub ($os): Add -aout.
16575 Fri May 22 14:00:02 1992  Per Bothner  (bothner@cygnus.com)
16577         * configure:  If host_makefile_frag is absolute, don't
16578         prefix ${invsubdir} (relevant to libg++ auto-configure).
16580 Thu May 21 18:00:09 1992  Michael Tiemann  (tiemann@rtl.cygnus.com)
16582         * Makefile.in (tooldir): Define it.
16583         (all-ld): Depend on all-flex.
16585 Sun May 10 21:45:59 1992  Per Bothner  (bothner@rtl.cygnus.com)
16587         * Makefile.in (check):  Fix libg++ special case.
16589 Fri May  8 08:31:41 1992  K. Richard Pixley  (rich@cygnus.com)
16591         * configure: do not bury `pwd` into config.status, thus do fewer
16592           pwd's.
16594         * configure: print the "Building in" message only when building in
16595           other than "." AND verbose.
16597         * configure: remove -s, rework -v to better accomodate guested
16598           configures.
16600         * standards.texi: updated to 3 may, fixed librid <-> libdir typo.
16602 Fri May  1 18:00:50 1992  K. Richard Pixley  (rich@cygnus.com)
16604         * Makefile.in: macroize flags passed on recursion.  remove
16605           fileutils.
16607 Thu Apr 30 08:56:20 1992  K. Richard Pixley  (rich@cygnus.com)
16609         * configure: get makesrcdir right for subdirs deeper than 1.
16611         * Makefile.in: pass INSTALL, INSTALL_DATA, INSTALL_PROGRAM on
16612           install.
16614 Fri Apr 24 15:51:51 1992  K. Richard Pixley  (rich@cygnus.com)
16616         * Makefile.in: don't print subdir_do or recursion lines.
16618 Fri Apr 24 15:22:04 1992  K. Richard Pixley  (rich@cygnus.com)
16620         * standards.texi: added menu item.
16622         * Makefile.in: build and install standards.info.
16624         * standards.texi: new file.
16626 Wed Apr 22 18:06:55 1992  K. Richard Pixley  (rich@rtl.cygnus.com)
16628         * configure: test for and move config.status pieces from
16629           ${subdir}/.
16631 Wed Apr 22 14:38:34 1992  Fred Fish  (fnf@cygnus.com)
16633         * configure:  Test for existance of files before trying to mv
16634         them, to avoid numerous non-existance messages.
16636 Tue Apr 21 12:31:33 1992  K. Richard Pixley  (rich@cygnus.com)
16638         * configure: correct final line of config.status.
16640         * configure: patch from eggert.  Avoids a protection problem if
16641           the original Makefile.in is read only.
16643         * configure: use move-if-change from gcc to create config.status.
16644           Some makefiles depend on config.status to tell if a directory
16645           has been reconfigured for a different host.  This change
16646           prevents those directories from remaking everything in the case
16647           where the reconfig was only intended to rebuild a Makefile.
16649         * configure: test for config.sub with "config.sub sun4" rather
16650           than "config.sub ${host_alias}".  Otherwise we can't tell a bad
16651           host alias from a missing config.sub.
16653 Mon Apr 20 18:16:36 1992  K. Richard Pixley  (rich@rtl.cygnus.com)
16655         * Makefile.in: explicitly pass CFLAGS on recursion. no longer pass
16656           MINUS_G (this can be done with CFLAGS).  Default CFLAGS to -g.
16658 Fri Apr 17 18:27:51 1992  Per Bothner  (bothner@cygnus.com)
16660         * configure: mkdir ${subdir} as needed.
16662 Wed Apr 15 17:37:22 1992  K. Richard Pixley  (rich@cygnus.com)
16664         * Makefile.in,configure.in: added autoconf.
16666 Wed Apr 15 17:27:34 1992  K. Richard Pixley  (rich@rtl.cygnus.com)
16668         * Makefile.in: no longer pass against on recursion.
16670         * Makefile.in: added .NOEXPORT: so that stray makefile_frag
16671           definitions are not inherited.
16673         * configure: correct makesrcdir when subdir is .
16675 Tue Apr 14 11:56:09 1992  Per Bothner  (bothner@cygnus.com)
16677         * configure:  Add support for 'subdirs' variable, which is
16678         like 'configdirs', except that configure doesn't re-invoke
16679         itself for subdirs, it just creates a Makefile for each subdir.
16680         * configure.texi:  Document subdirs.
16682 Mon Apr 13 18:50:16 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
16684         * configure.in: added flex to configdirs
16686 Mon Apr 13 18:43:55 1992  K. Richard Pixley  (rich@cygnus.com)
16688         * Makefile.in: remove clean-stamps from clean.
16690 Sat Apr 11 03:52:03 1992  John Gilmore  (gnu at cygnus.com)
16692         * configure.in:  Add gdbtest to configdirs.
16694 Fri Apr 10 23:11:49 1992  Fred Fish  (fnf@cygnus.com)
16696         * Makefile.in (MINUS_G):  Add macro, default to -g, pass on
16697         to recursive makes.
16698         * configure.in:  Recognize new ncr3000 config.
16700 Wed Apr  8 23:08:12 1992  K. Richard Pixley  (rich@cygnus.com)
16702         * Makefile.in, configure.in: removed references to gdbm.
16704 Tue Apr  7 16:48:20 1992  Per Bothner  (bothner@cygnus.com)
16706         * config.sub:  Don't canonicalize os value
16707         newsos* to bsd (readline needs to check for newsos).
16708         (This fix was earlier made Jan 31, but got re-broken.)
16710 Mon Apr  6 14:34:08 1992  Stu Grossman  (grossman at cygnus.com)
16712         * configure.in:  sco is an os, not a vendor!
16714         * configure:  Quote $( better.  Keep various shells happy.
16716 Tue Mar 31 16:32:57 1992  K. Richard Pixley  (rich@cygnus.com)
16718         * Makefile.in: eliminate stamp-files.
16720 Mon Mar 30 22:20:23 1992  K. Richard Pixley  (rich@cygnus.com)
16722         * Makefile.in: add send_pr.  remove "force" from .stmp-gprof rule.
16723           Supress echoing of all the "if [ -d ... $(MAKE)" lines.
16725 Wed Mar 25 15:20:04 1992  Stu Grossman  (grossman@cygnus.com)
16727         * config.sub:  fix iris/iris3.
16729 Wed Mar 25 10:34:19 1992  K. Richard Pixley  (rich@cygnus.com)
16731         * configure: re-add -rm.
16733 Tue Mar 24 23:50:16 1992  K. Richard Pixley  (rich@cygnus.com)
16735         * Maskefile.in: add .stmp-rcs to all.
16737         * configure.in: remove gas from rs6000 build, use aix host fragment.
16739 Mon Mar 23 19:43:35 1992  K. Richard Pixley  (rich@cygnus.com)
16741         * configure: pass down site_option during recursion.
16743 Thu Mar 19 16:49:36 1992  Stu Grossman  (grossman at cygnus.com)
16745         * Makefile.in (all.cross):  Add .stmp-bfd .stmp-readline.
16747 Wed Mar 18 15:29:33 1992  Mike Stump  (mrs@cygnus.com)
16749         * configure: Change exec_prefix so that it really defaults to prefix.
16751 Sat Mar 14 17:20:38 1992  Fred Fish  (fnf@cygnus.com)
16753         * Makefile.in, configure.in:  Add support for mmalloc library.
16755 Fri Mar 13 18:44:18 1992  K. Richard Pixley  (rich@cygnus.com)
16757         * Makefile.in: add stmp dependencies for a few more things.
16759 Thu Mar 12 04:56:24 1992  K. Richard Pixley  (rich@cygnus.com)
16761         * configure: adjusted error message on objdir/srcdir configure
16762           collision, per john's suggestion.
16764         * Makefile.in: add libiberty stmp to all and all.cross.
16766 Wed Mar 11 02:07:52 1992  K. Richard Pixley  (rich@cygnus.com)
16768         * Makefile.in: remove force dependencies, add grep to all.
16770 Tue Mar 10 21:49:18 1992  K. Richard Pixley  (rich@mars.cygnus.com)
16772         * Makefile.in: drop flex.  make stamp files work.
16774         * configure: added test for conflicting configuration in srcdir,
16775           remove trailing slashes from srcdir.  Otherwise emacs gdb mode
16776           gets cranky.  use relative paths for configure and srcdir
16777           whenever possible.  Send some error messages to stderr that were
16778           going to stdout.
16780 Tue Mar 10 18:01:55 1992  Per Bothner  (bothner@cygnus.com)
16782         * Makefile.in:  Fix libg++ rule to check for gcc directory
16783         before using gcc/gcc.  Also pass XTRAFLAGS.
16785 Thu Mar  5 21:45:07 1992  K. Richard Pixley  (rich@sendai)
16787         * Makefile.in: added stmp-files so that directories aren't polled
16788           when they are already built.
16790         * configure.texi: fixed a node pointer problem.
16792 Thu Mar  5 12:05:58 1992  Stu Grossman  (grossman at cygnus.com)
16794         * config.sub configure.in gdb/configure.in
16795         gdb/mips-tdep.c gdb/mipsread.c gdb/procfs.c gdb/signame.h
16796         gdb/tm-irix3.h gdb/tm-mips.h gdb/xm-irix4.h gdb/config/mt-irix3
16797         gdb/config/mh-irix4 texinfo/configure.in:  Port to SGI Irix-4.x.
16799 Wed Mar  4 02:57:46 1992  K. Richard Pixley  (rich@rtl.cygnus.com)
16801         * configure: -recurring becomes -silent.  corrected help message
16802           for -site= option.
16804         * Makefile.in: mkdir $(exec_prefix) and $(tooldir).
16806 Tue Mar  3 14:51:21 1992  K. Richard Pixley  (rich@rtl.cygnus.com)
16808         * configure: when building Makefile for crosses, replace
16809           tooldir and program_prefix.  default srcdir from location of
16810           config.sub.  remove "for host in hosts" and "for target in
16811           targets" loops.
16813 Wed Feb 26 19:48:25 1992  K. Richard Pixley  (rich@rtl.cygnus.com)
16815         * Makefile.in: Do not pass bindir or mandir to cvs.
16817 Wed Feb 26 18:04:40 1992  K. Richard Pixley  (rich@cygnus.com)
16819         * Makefile.in, configure.in: removed traces of namesubdir,
16820           -subdirs, $(subdir), $(unsubdir), some rcs triggers.  Forced
16821           copyrights to '92, changed some from Cygnus to FSF.
16823         * configure.texi: remove most references to multiple hosts,
16824           multiple targets, subdirs, etc.
16826         * configure.man: removed rcsid. reference config.sub not
16827           config.subr.
16829         * Makefile.in: mkdir $(infodir) on install-info.
16831 Wed Feb 19 15:41:13 1992  John Gilmore  (gnu at cygnus.com)
16833         * configure.texi:  Explain better about .gdbinit and about
16834         the environment that configure.in sections run in.
16836 Fri Feb  7 07:55:00 1992  John Gilmore  (gnu at cygnus.com)
16838         * configure.in:  Ultrix is only a decstation if it's a MIPS.
16840 Fri Jan 31 21:54:51 1992  John Gilmore  (gnu at cygnus.com)
16842         * README:  DOC.configure => cfg-paper.texi.
16844 Fri Jan 31 21:48:18 1992  Stu Grossman  (grossman at cygnus.com)
16846         * config.sub (near case $os):  Don't convert newsos* to bsd!
16848 Fri Jan 31 02:27:32 1992  John Gilmore  (gnu at cygnus.com)
16850         * Makefile.in:  Reinstall change from gdb-4.3 that reduces
16851         the number of copies of COPYING that go into the GDB tar file.
16853 Thu Jan 30 16:17:30 1992  Stu Grossman  (grossman at cygnus.com)
16855         * bfd/configure.in, gdb/config/mh-i386sco,
16856         gdb/config/mt-i386v32, gdb/configure.in, readline/configure.in:
16857         Fix SCO configuration stuff.
16859 Tue Jan 28 23:51:07 1992  Per Bothner  (bothner at cygnus.com)
16861         * Makefile.in:  For libg++, make sure the -I pointing
16862         to the gcc directory goes *after* all the libg++-local -I flags.
16863         Also, move just-gcc dependency from just-libg++ to all-libg++.
16865 Tue Jan 28 12:56:24 1992  Stu Grossman  (grossman at cygnus.com)
16867         * configure:  Change -x to -f to keep Ultrix /bin/test happy.
16869 Sat Jan 18 17:45:11 1992  Stu Grossman  (grossman at cygnus.com)
16871         * Makefile.in (make-gdb.tar.Z):  Remove texinfo targets.
16873 Sat Jan 18 17:03:21 1992  Fred Fish  (fnf at cygnus.com)
16875         * config.sub:  Add stratus configuration frags.  Also
16876         submitted to FSF.
16878 Sat Jan 18 15:35:29 1992  Stu Grossman  (grossman at cygnus.com)
16880         * Makefile.in (DEV_SUPPORT):  add configure.man.
16882         * config.sub(Decode manufacturer-specific):  add -none*.
16884 Fri Jan 17 17:58:05 1992  Stu Grossman  (grossman at cygnus.com)
16886         * Makefile.in:  remove form feeds to make Sun's make happy.
16887         (DEVO_SUPPORT):  DOC.configure => cfg-paper.texi.
16889 Sat Jan  4 16:11:44 1992  John Gilmore  (gnu at cygnus.com)
16891         * Makefile.in (AR_FLAGS):  Make quieter.
16893 Thu Jan  2 22:57:12 1992  John Gilmore  (gnu at cygnus.com)
16895         * configure.in:  Add libg++.
16896         * configure:  When verbose, don't output the command line at each
16897         level; it will be unremarkably the same as the previous version,
16898         which will be the same as what the user typed.
16900 Fri Dec 27 16:26:47 1991  K. Richard Pixley  (rich at cygnus.com)
16902         * configure.in, Makefile.in: fix clean-info, add flex.  add
16903           fileutils.
16905         * configure: be less sensitive to spaces in Makefile.in.  Do not
16906           look for sources in "..".  Doing so breaks subdirectories that
16907           might have their own configure.  If a subdir has it's own
16908           configure script, use it.
16910 Thu Dec 26 16:30:26 1991  K. Richard Pixley  (rich at cygnus.com)
16912         * cfg-paper.texi: some changes suggested by rms.
16914 Thu Dec 26 10:13:36 1991  Fred Fish  (fnf at cygnus.com)
16916         * config.sub:  Merge in some small additions from the FSF version,
16917         taken from the gcc distribution, to bring the Cygnus and FSF
16918         versions into closer sync.
16920 Fri Dec 20 11:34:18 1991  Fred Fish  (fnf at cygnus.com)
16922         * configure.in:  Changed svr4 references to sysv4.
16924 Thu Dec 19 15:54:29 1991  K. Richard Pixley  (rich at cygnus.com)
16926         * configure: added -V for version number option.
16928 Wed Dec 18 15:39:34 1991  K. Richard Pixley  (rich at cygnus.com)
16930         * DOC.configure, cfg-paper.texi: revised, updated, and texinfo'd.
16931           renamed from DOC.configure to cfg-paper.texi.
16933 Mon Dec 16 23:05:19 1991  K. Richard Pixley  (rich at rtl.cygnus.com)
16935         * configure, config.subr, config.sub: config.subr is now
16936           config.sub again.
16938 Fri Dec 13 01:17:06 1991  K. Richard Pixley  (rich at cygnus.com)
16940         * configure.texi: new file, in progress.
16942         * Makefile.in: build info file and install the man page for
16943           configure.
16945         * configure.man: new file, first cut.
16947         * configure: find config.subr again now that configuration "none"
16948           has gone.  removed all traces of the -ansi option.  removed all
16949           traces of the -languages option.
16951         * config.subr: resync from rms.
16953 1991-12-11  K. Richard Pixley  (rich at rtl.cygnus.com)
16955         * configure, config.sub, config.subr: merge config.sub into
16956           config.subr, call the result config.subr, remove config.sub, use
16957           config.subr.
16959         * Makefile.in: revised install for dir.info.
16961 1991-12-10  K. Richard Pixley  (rich at rtl.cygnus.com)
16963         * configure.in: add decstation host makefile frag.
16965         * Makefile.in: BISON now bison -y again.  also install-gcc on
16966           install.  clean-gdbm on clean.  infodir belongs in datadir.
16967           Make directories for info install.  Build dir.info here then
16968           install it.
16970 1991-12-09  K. Richard Pixley  (rich at rtl.cygnus.com)
16972         * Makefile.in: fix for bad directory tests.
16974 1991-12-07  K. Richard Pixley  (rich at rtl.cygnus.com)
16976         * configure: \{1,2\} appears to be a sysv'ism.  Use a different
16977           regexp.  -srcdir relative was being handled incorrectly.
16979         * Makefile.in: unwrapped some for loops so that parallel makes
16980           work again and so one can focus one's attention on a particular
16981           package.
16983 1991-12-06  K. Richard Pixley  (rich at rtl.cygnus.com)
16985         * configure: added PWD as a stand in for `pwd` (for speed). use
16986           elif wherever possible.  make -srcdir work without -objdir.
16987           -objdir= commented out.
16989 1991-12-05  K. Richard Pixley  (rich at rtl.cygnus.com)
16991         * configure: +options become --options.  -subdirs commented out.
16992           added -host, -datadir.  Renamed -destdir to -prefix.  Comment in
16993           Makefile now at top of generated Makefile.  Removed cvs log
16994           entries.  added -srcdir.  create .gdbinit only if there is one
16995           in ${srcdir}.
16997         * Makefile.in: idestdir and ddestdir go away.  Added copyrights
16998           and shift gpl to v2.  Added ChangeLog if it didn't exist. docdir
16999           and mandir now keyed off datadir by default.
17001 1991-11-22  K. Richard Pixley  (rich at rtl.cygnus.com)
17003         * Freshly created ChangeLog.
17006 Local Variables:
17007 mode: change-log
17008 left-margin: 8
17009 fill-column: 76
17010 version-control: never
17011 End: