]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - ChangeLog
Update the config.guess and config.sub files from the master repository and regenerat...
[thirdparty/binutils-gdb.git] / ChangeLog
1 2022-01-17 Nick Clifton <nickc@redhat.com>
2
3 Update config.[guess|sub] from upstream:
4
5 2022-01-09 Idan Horowitz <idan.horowitz@gmail.com>
6
7 config.guess: recognize SerenityOS
8 * config.guess (*:SerenityOS:*:*): Recognize.
9 (timestamp): Update.
10
11 2022-01-03 Bernhard Voelker <mail@bernhard-voelker.de>
12
13 Fix GPLv3 license headers to use a comma instead of semicolon
14 See: https://www.gnu.org/licenses/gpl-3.0.html#howto
15
16 Update license headers automatically using the following script:
17
18 $ git grep -l 'Foundation; either version 3' \
19 | xargs sed -i '/Foundation; either version 3/ s/n; e/n, e/'
20
21 * config.guess: Adjust via the above command.
22 (timestamp): Update.
23 * config.sub: Likewise.
24 * doc/config.guess.1: Regenerate.
25 * doc/config.sub.1: Likewise.
26
27 2022-01-01 Dmitry V. Levin <ldv@altlinux.org>
28
29 Update copyright years
30 * config.guess: Update copyright years.
31 * config.sub: Likewise.
32
33 2021-12-25 Dmitry V. Levin <ldv@altlinux.org>
34
35 config.sub: alias armh to armv7l
36 ALT uses armh as an alias for armv7l-alt-linux-gnueabihf since 2012.
37
38 * config.sub (armh-unknown|armh-alt): Set cpu, vendor, and basic_os.
39 (timestamp): Update.
40
41 2021-12-24 Dmitry V. Levin <ldv@altlinux.org>
42
43 config.sub: alias aarch64le to aarch64
44 Apparently, QNX reports aarch64 as aarch64le on little-endian machines.
45
46 * config.sub (aarch64le-*): Set cpu to aarch64.
47 (timestamp): Update.
48
49 2021-12-13 Dmitry V. Levin <ldv@altlinux.org>
50
51 config.sub: fix typo in timestamp
52 * config.sub: Fix timestamp.
53
54 2021-11-30 Andreas F. Borchert <github@andreas-borchert.de>
55
56 config.guess: x86_64-pc-solaris2.11 is not properly recognized
57 config.guess guesses Solaris 11 to run on a 32-bit platform
58 despite Solaris 11 no longer supporting any 32-bit platform.
59
60 See the following code at lines 434 to 445:
61
62 | SUN_ARCH=i386
63 | # If there is a compiler, see if it is configured for 64-bit objects.
64 | # Note that the Sun cc does not turn __LP64__ into 1 like gcc does.
65 | # This test works for both compilers.
66 | if test "$CC_FOR_BUILD" != no_compiler_found; then
67 | if (echo '#ifdef __amd64'; echo IS_64BIT_ARCH; echo '#endif') | \
68 | (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \
69 | grep IS_64BIT_ARCH >/dev/null
70 | then
71 | SUN_ARCH=x86_64
72 | fi
73 | fi
74
75 If "cc" is installed, i.e. the Oracle Studio compiler, this one is
76 chosen for $CC_FOR_BUILD. This compiler, the gcc provided by Oracle
77 and also gcc bootstrapped from sources on that platform with a default
78 configuration will by default generate 32-bit binaries -- even on
79 a 64-bit platform. And __amd64 will not be defined for compilations
80 targeting a 32-bit platform. This is different from the corresponding
81 behaviour on GNU/Linux systems where the local platform is targeted by
82 default.
83
84 Thus, as long as you do not add "-m64" or if you have a custom-built
85 gcc which defaults to 64 bit, you will get 32-bit binaries on Solaris
86 despite living on a 64-bit platform.
87
88 * config.guess (i86pc:SunOS:5.*:* || i86xen:SunOS:5.*:*): Adapt the
89 test by adding the "-m64" flag. This will work properly for Solaris
90 10 as well (the last Solaris release that supported x86 32-bit
91 platforms).
92
93 2021-10-27 Jordi Sanfeliu <jordi@fibranet.cat>
94
95 Recognize Fiwix
96 $ make check
97 cd testsuite && bash config-guess.sh && rm uname
98 PASS: config.guess checks (137 tests)
99 cd testsuite && bash config-sub.sh
100 PASS: config.sub checks (882 tests)
101 PASS: config.sub idempotency checks (819 tests)
102 PASS: config.sub canonicalise each config.guess testcase (137 tests)
103
104 * config.guess (i*86:Fiwix:*:*): Recognize.
105 * config.sub (fiwix*): Likewise.
106
107 2021-10-18 Kinshuk Dua <kinshukdua@gmail.com>
108
109 config.sub: Fix typo in comment
110 Fixes: 5e531d391852a54e7fab2d8ff55625fca514b305
111
112 2021-08-14 Nick Bowler <nbowler@draconx.ca>
113
114 config.sub: work around command assignment bug in some shells
115 When combining variable assignments with a shell command, some older
116 shells (notably heirloom-sh and presumably also Solaris 10 /bin/sh)
117 have a bug which causes the assignment to alter the current execution
118 environment whenever the command is a shell built-in. For example:
119
120 % dash -c 'x=good; x=bad echo >/dev/null; echo $x'
121 good
122
123 % jsh -c 'x=good; x=bad echo >/dev/null; echo $x'
124 bad
125
126 The config.sub script contains a few commands of the form:
127
128 IFS=- read ...
129
130 which triggers this bug, causing the IFS assignment to persist for the
131 remainder of the script. This can cause misbehaviour in certain cases,
132 for example:
133
134 % jsh config.sub i386-linux-gnu
135 config.sub: test: unknown operator gnu
136
137 % jsh config.sub i386-gnu/linux
138 sed: can't read s|gnu/linux|gnu|: No such file or directory
139 Invalid configuration `i386-gnu/linux': OS `' not recognized
140
141 * config.sub: Save and restore IFS explicitly to avoid shell bugs.
142 * doc/config.sub.1: Regenerate.
143
144 2021-08-04 Jeremy Soller <jackpot51@gmail.com>
145
146 config.sub: add Linux Relibc Target
147 $ make check
148 cd testsuite && bash config-guess.sh && rm uname
149 PASS: config.guess checks (136 tests)
150 cd testsuite && bash config-sub.sh
151 PASS: config.sub checks (881 tests)
152 PASS: config.sub idempotency checks (818 tests)
153 PASS: config.sub canonicalise each config.guess testcase (136 tests)
154
155 * config.sub (relibc*): Recognize.
156 * doc/config.sub.1: Regenerate.
157 * testsuite/config-sub.data (x86_64-linux-relibc): New test.
158
159 2021-07-06 Stephanos Ioannidis <root@stephanos.io>
160
161 config.sub: add Zephyr RTOS support
162 This adds the Zephyr RTOS targets in preparation for implementing the
163 Zephyr RTOS-specific toolchain support.
164
165 $ make check
166 cd testsuite && bash config-guess.sh && rm uname
167 PASS: config.guess checks (136 tests)
168 cd testsuite && bash config-sub.sh
169 PASS: config.sub checks (880 tests)
170 PASS: config.sub idempotency checks (817 tests)
171 PASS: config.sub canonicalise each config.guess testcase (136 tests)
172
173 * config.sub (zephyr*): Recognize.
174 * doc/config.sub.1: Regenerate.
175 * testsuite/config-sub.data: Add testcases for *-zephyr.
176
177 2021-07-03 Ozkan Sezer <sezero@users.sourceforge.net>
178
179 config.sub: disable shellcheck SC2006 / SC2268 warnings
180 This is in line with the recent config.guess change in commit
181 12fcf67c9108f4c4b581eaa302088782f0ee40ea
182
183 * config.sub (shellcheck disable): Add SC2006,SC2268.
184
185 Suggested-by: Jacob Bachmeyer <jcb@gnu.org>
186
187 2021-07-03 Ozkan Sezer <sezero@users.sourceforge.net>
188
189 config.sub: normalize the quoting in the `echo FOO | sed ...`
190 Some cases quote the argument to echo and some do not. At runtime
191 it probably does not matter because the substituted values will never
192 contain whitespace, but quoting them all would make shellcheck more
193 useful.
194
195 * config.sub: Consistently quote the argument of echo.
196 * doc/config.sub.1: Regenerate.
197
198 Suggested-by: Jacob Bachmeyer <jcb@gnu.org>
199
200 2021-07-02 Ozkan Sezer <sezero@users.sourceforge.net>
201
202 config.sub: replace POSIX $( ) with classic ` ` throughout
203 This is in line with the recent config.guess change in commit
204 d70c4fa934de164178054c3a60aaa0024ed07c91.
205
206 The patch was generated using patch-6.gawk script introduced in that
207 commit.
208
209 * config.sub: Revert POSIX command substitutions to classic form.
210
211 2021-06-04 Vineet Gupta <Vineet.Gupta1@synopsys.com>
212
213 Recognize arc32
214 This is the 32-bit variant of ARCv3 ISA (which is not compatible with the
215 32-bit ARCv2 ISA)
216
217 | make check
218 | cd testsuite && bash config-guess.sh && rm uname
219 | PASS: config.guess checks (136 tests)
220 | cd testsuite && bash config-sub.sh
221 | PASS: config.sub checks (864 tests)
222 | PASS: config.sub idempotency checks (801 tests)
223 | PASS: config.sub canonicalise each config.guess testcase (136 tests)
224
225 * config.guess (arc32:Linux:*:*): Recognize.
226 * config.sub (arc32): Likewise.
227
228 2021-05-27 Jacob Bachmeyer <jcb@gnu.org>
229
230 Remove automatic patch generators
231 These tools have served their purposes and need not be kept outside of
232 the repository history any longer. This patch as a diff also collects
233 the contents of the various tools in one convenient place.
234
235 * patch-1.gawk: Remove.
236 * patch-3.gawk: Likewise.
237 * patch-6.gawk: Likewise.
238
239 2021-05-26 Jacob Bachmeyer <jcb@gnu.org>
240
241 config.guess: manual fixups after previous automatic patch
242 The tool could not handle command substitutions that span lines, but
243 fortunately there were only two such substitutions in the script.
244
245 The test for which universe is active on Pyramid is rewritten into a
246 case block because it was the only use of a command substitution as an
247 argument to the test command, which would require quoting.
248
249 * config.guess: Rewrite "if" for Pyramid systems to "case".
250
251 2021-05-26 Jacob Bachmeyer <jcb@gnu.org>
252
253 config.guess: replace POSIX $( ) with classic ` ` throughout
254 The previous replacement of backticks with POSIX command substitutions
255 was ill-considered and illogical: this script recognizes many archaic
256 machine types that probably never had POSIX shells, therefore it needs
257 to be able to run successfully under pre-POSIX shells.
258
259 This patch was generated using the included GNU Awk program.
260
261 * config.guess: Revert POSIX command substitutions to classic form.
262 * patch-6.gawk: Store the tool that produced the automated patch.
263
264 2021-05-26 Jacob Bachmeyer <jcb@gnu.org>
265
266 config.guess: manual fixup after previous automated patches
267 This patch provides the special handling for the GNU system. As these
268 were two small and unique edits, they were not included in the scripts.
269
270 This patch also cleans up other minor issues that must be addressed
271 before reverting to classic command substitutions and updates
272 "shellcheck" directives to account for changes in this script and the
273 change in "shellcheck" towards reporting individual portability issues.
274
275 2021-05-26 Jacob Bachmeyer <jcb@gnu.org>
276
277 config.guess: automatic fixups after previous automated patch
278 This patch was generated using the following command:
279
280 sed -i config.guess \
281 -e '/="[^"]\+"\(-\|$\)/s/="\([^"([:space:])]\+\)"/=\1/' \
282 -e '/="[^"]\+"[[:alnum:]]/s/="\$\([^([:space:])]\+\)"/=${\1}/' \
283 -e \
284 '/\$(echo[^|]\+|/s/\([^[:space:]]\)[[:space:]]*|[[:space:]]*sed/\1 | sed/g'
285
286 * config.guess: Remove unneeded quotes in other variable assignments,
287 standardize spacing for "echo ... | sed" substitutions.
288
289 2021-05-26 Jacob Bachmeyer <jcb@gnu.org>
290
291 config.guess: remove unneeded quotes and factor command substitutions
292 This is further cleanup and simplifies some constructs that can confuse
293 Emacs' syntax highlighting while generally reducing required quoting.
294
295 This patch was generated using the included GNU Awk program.
296
297 * config.guess: Remove unneeded variable quotes and factor out command
298 substitutions when setting GUESS.
299 * patch-3.gawk: Store the tool that produced the automated patch.
300
301 2021-05-25 Jacob Bachmeyer <jcb@gnu.org>
302
303 config.guess: manual fixups after previous automatic patch
304 * config.guess: Adjust a few "leftover" cases that the tool could not
305 easily recognize and fixes comment indentation in a few other special
306 cases.
307
308 2021-05-25 Jacob Bachmeyer <jcb@gnu.org>
309
310 config.guess: use intermediate variable with uname results
311 This will allow quoting to be significantly simplified in another
312 pass through the file.
313
314 This patch was generated using the included GNU Awk program.
315
316 * config.guess: Use GUESS variable to hold results of uname analysis.
317 * patch-1.gawk: Store the tool that produced the automated patch.
318
319 2021-05-25 Jacob Bachmeyer <jcb@gnu.org>
320
321 config.guess: introduce intermediate variable with uname results
322 This will allow quoting to be significantly simplified in another
323 pass through the file.
324
325 * config.guess: Introduce GUESS variable to hold results of uname analysis.
326
327 2021-05-24 Dmitry V. Levin <ldv@altlinux.org>
328
329 config.guess: fix shellcheck warning SC2154
330 While, according to Plan 9 documentation, the environment variable
331 $cputype is set to the name of the kernel's CPU's architecture,
332 shellcheck warns that cputype is referenced but not assigned.
333 Be on the safe side and do not use cputype if it is not defined
334 or empty.
335
336 * config.guess (*:Plan9:*:*): Fix shellcheck warning SC2154.
337
338 2021-05-24 Dmitry V. Levin <ldv@altlinux.org>
339
340 config.guess: remove redundant quotes in case commands
341 According to the GNU Autoconf Portable Shell Programming manual,
342 the Bourne shell does not systematically split variables and back-quoted
343 expressions, in particular on the right-hand side of assignments and in
344 the argument of 'case'.
345
346 The change is made automatically using the following command:
347 $ sed -E -i 's/(\<case )"(\$[^"]+)"( in\>)/\1\2\3/' config.guess
348
349 * config.guess: Simplify case commands by removing quotes around the
350 argument.
351
352 Suggested-by: Jacob Bachmeyer <jcb@gnu.org>
353
354 2021-05-24 Dmitry V. Levin <ldv@altlinux.org>
355
356 config.guess: simplify exit status workaround on alphaev67-dec-osf5.1
357 Commit 29865ea8a5622cdd80b7a69a0afa78004b4cd311 introduced an exit trap
358 reset before exiting to avoid a spurious non-zero exit status on
359 alphaev67-dec-osf5.1. Simplify that code a bit by moving the exit trap
360 reset around.
361
362 * config.guess (alpha:OSF1:*:*): Reset exit trap earlier.
363 * doc/config.guess.1: Regenerate.
364
365 2021-10-29 Eli Zaretskii <eliz@gnu.org>
366
367 * gdb/doc/gdb.texinfo (Command Options): (Data): Document
368 '-memory-tag-violations'. Update the example.
369
370 2021-09-28 Andrew Burgess <andrew.burgess@embecosm.com>
371
372 * src-release.sh (GDB_SUPPPORT_DIRS): Add libbacktrace.
373
374 2021-09-27 Nick Alcock <nick.alcock@oracle.com>
375
376 PR libctf/27967
377 * libtool.m4 (LT_PATH_NM): Try BSDization flags with a user-provided
378 NM, if there is one. Run nm on itself, not on /dev/null, to avoid
379 errors from nms that refuse to work on non-regular files. Remove
380 other workarounds for this problem. Strip out blank lines from the
381 nm output.
382
383 2021-09-27 Nick Alcock <nick.alcock@oracle.com>
384
385 PR libctf/27967
386 * libtool.m4 (lt_cv_sys_global_symbol_pipe): Augment symcode for
387 Solaris 11.
388
389 2021-07-03 Nick Clifton <nickc@redhat.com>
390
391 * 2.37 release branch created.
392
393 2021-07-03 Nick Clifton <nickc@redhat.com>
394
395 * libiberty: Sync with gcc. Bring in:
396 2021-06-30 Gerald Pfeifer <gerald@pfeifer.com>
397
398 * make-temp-file.c (usrtmp): Remove.
399 (choose_tmpdir): Remove use of usrtmp.
400
401 2021-06-28 Indu Bhagat <indu.bhagat@oracle.com>
402
403 * simple-object.c (handle_lto_debug_sections): Copy over .BTF section.
404
405 2021-06-28 Indu Bhagat <indu.bhagat@oracle.com>
406 David Faust <david.faust@oracle.com>
407 Jose E. Marchesi <jose.marchesi@oracle.com>
408 Weimin Pan <weimin.pan@oracle.com>
409
410 * simple-object.c (handle_lto_debug_sections): Copy over .ctf
411 sections.
412
413 2021-06-05 John David Anglin <danglin@gcc.gnu.org>
414
415 PR target/100734
416 * configure.ac: Use libiberty snprintf and vsnprintf on
417 hppa*-*-hpux*.
418 * configure: Regenerate.
419
420 2021-05-06 Tom Tromey <tom@tromey.com>
421
422 * hashtab.c (htab_eq_string): New function.
423
424 2021-05-04 Eric Botcazou <ebotcazou@adacore.com>
425
426 * configure.ac: Make test for variables more robust.
427 * configure: Regenerate.
428
429 2021-05-03 H.J. Lu <hjl.tools@gmail.com>
430
431 PR bootstrap/99703
432 * configure: Regenerated.
433
434 2021-04-21 Andreas Schwab <schwab@linux-m68k.org>
435
436 PR demangler/100177
437 * rust-demangle.c (demangle_const_char): Properly print the
438 character value.
439
440 2021-03-31 Patrick Palka <ppalka@redhat.com>
441
442 PR c++/88115
443 * cp-demangle.c (d_dump, d_make_comp, d_expression_1)
444 (d_count_templates_scopes): Handle DEMANGLE_COMPONENT_VENDOR_EXPR.
445 (d_print_comp_inner): Likewise.
446 <case DEMANGLE_COMPONENT_EXTENDED_OPERATOR>: Revert r11-4926
447 change.
448 <case DEMANGLE_COMPONENT_UNARY>: Likewise.
449 * testsuite/demangle-expected: Adjust __alignof__ tests.
450
451 2021-03-16 Nick Clifton <nickc@redhat.com>
452
453 * sha1.c (sha1_process_bytes): Use memmove in place of memcpy.
454
455 2021-02-20 Mike Frysinger <vapier@gentoo.org>
456
457 * Makefile.in (ACLOCAL, ACLOCAL_AMFLAGS, $(srcdir)/aclocal.m4): Define.
458 (configure_deps): Rename to ...
459 (aclocal_deps): ... this. Replace aclocal.m4 with acinclude.m4.
460 ($(srcdir)/configure): Replace $(configure_deps) with
461 $(srcdir)/aclocal.m4.
462 * aclocal.m4: Move libiberty macros to acinclude.m4, then regenerate.
463 * acinclude.m4: New file.
464 * configure: Regenerate.
465
466 2021-02-19 Ayush Mittal <ayush.m@samsung.com>
467
468 * argv.c (expandargv): free allocated buffer if read fails.
469
470 2021-02-01 Martin Sebor <msebor@redhat.com>
471
472 * dyn-string.c (dyn_string_insert_cstr): Use memcpy instead of strncpy
473 to avoid -Wstringop-truncation.
474
475 2021-05-29 Mike Frysinger <vapier@gentoo.org>
476
477 * configure.ac: Add gnulib to configdirs for sim.
478 * configure: Regenerate.
479
480 2021-05-24 Maciej W. Rozycki <macro@orcam.me.uk>
481
482 * MAINTAINERS: Update path to readline config.{sub,guess} files.
483
484 2021-05-24 Maciej W. Rozycki <macro@orcam.me.uk>
485
486 * config.guess: Import from upstream.
487 * config.sub: Likewise.
488
489 2021-05-18 Mike Frysinger <vapier@gentoo.org>
490
491 * Makefile.def: Add configure-sim dependency on all-gnulib.
492 * Makefile.in: Regenerated.
493
494 2021-05-04 Nick Clifton <nickc@redhat.com>
495
496 * configure.ac (AC_PROG_CC): Replace with AC_PROG_CC_C99.
497 * configure: Regenerate.
498
499 2021-03-18 Nick Alcock <nick.alcock@oracle.com>
500
501 PR libctf/27482
502 * Makefile.def: Add install-bfd dependencies for install-libctf and
503 install-ld, and install-strip-bfd dependencies for
504 install-strip-libctf and install-strip-ld; move the install-ld
505 dependency on install-libctf to join it.
506 * Makefile.in: Regenerated.
507
508 2021-03-12 Mike Frysinger <vapier@gentoo.org>
509
510 * Makefile.def: Remove all-sim dependency on configure-gdb.
511 * Makefile.in: Regenerated.
512
513 2021-02-28 H.J. Lu <hongjiu.lu@intel.com>
514
515 PR binutils/26766
516 * Makefile.tpl (PGO_BUILD_TRAINING_FLAGS_TO_PASS): Add
517 PGO_BUILD_TRAINING=yes.
518 (PGO_BUILD_TRAINING_MFLAGS): New.
519 (all): Pass $(PGO_BUILD_TRAINING_MFLAGS) to the PGO build.
520
521 2021-02-09 Alan Modra <amodra@gmail.com>
522
523 * configure.ac: Delete arm*-*-symbianelf* entry.
524 * configure: Regenerate.
525
526 2021-01-26 Nick Alcock <nick.alcock@oracle.com>
527
528 * Makefile.def: Add install-libctf dependency to install-ld.
529 * Makefile.in: Regenerated.
530
531 2021-01-12 Mike Frysinger <vapier@gentoo.org>
532
533 * src-release.sh (do_proto_toplev): Rewrite indentation.
534
535 2021-01-11 H.J. Lu <hongjiu.lu@intel.com>
536
537 PR binutils/26766
538 * configure.ac:
539 * configure: Regenerated.
540
541 2021-01-11 H.J. Lu <hongjiu.lu@intel.com>
542
543 PR ld/27173
544 * configure: Regenerated.
545 * libtool.m4 (_LT_CMD_OLD_ARCHIVE): Check if AR works with
546 --plugin and rc before enabling --plugin.
547
548 2021-01-09 H.J. Lu <hongjiu.lu@intel.com>
549
550 PR binutils/26766
551 * Makefile.tpl (BUILD_CFLAGS): New.
552 (CFLAGS): Append $(BUILD_CFLAGS).
553 (CXXFLAGS): Likewise.
554 (PGO_BUILD_GEN_FLAGS_TO_PASS): New.
555 (PGO_BUILD_TRAINING_CFLAGS): Likewise.
556 (PGO_BUILD_TRAINING_CXXFLAGS): Likewise.
557 (PGO_BUILD_TRAINING_FLAGS_TO_PASS): Likewise.
558 (PGO_BUILD_TRAINING_MFLAGS): Likewise.
559 (PGO_BUILD_USE_FLAGS_TO_PASS): Likewise.
560 (PGO-TRAINING-TARGETS): Likewise.
561 (PGO_BUILD_TRAINING): Likewise.
562 (all): Add '+' to the command line for recursive make. Support
563 the PGO build.
564 * configure.ac: Add --enable-pgo-build[=lto].
565 AC_SUBST PGO_BUILD_GEN_CFLAGS, PGO_BUILD_USE_CFLAGS and
566 PGO_BUILD_LTO_CFLAGS. Enable the PGO build in Makefile.
567 * Makefile.in: Regenerated.
568 * configure: Likewise.
569
570 2021-01-09 H.J. Lu <hongjiu.lu@intel.com>
571
572 * Makefile.tpl (AR): Add @AR_PLUGIN_OPTION@
573 (RANLIB): Add @RANLIB_PLUGIN_OPTION@.
574 * configure.ac: Include config/gcc-plugin.m4.
575 AC_SUBST AR_PLUGIN_OPTION and RANLIB_PLUGIN_OPTION.
576 * libtool.m4 (_LT_CMD_OLD_ARCHIVE): Pass --plugin to AR and
577 RANLIB if possible.
578 * Makefile.in: Regenerated.
579 * configure: Likewise.
580
581 2021-01-09 Nick Clifton <nickc@redhat.com>
582
583 * 2.36 release branch crated.
584
585 2021-01-07 Samuel Thibault <samuel.thibault@gnu.org>
586
587 * libtool.m4: Match gnu* along with other GNU systems.
588
589 2021-01-07 Alan Modra <amodra@gmail.com>
590
591 * config.sub: Accept OS of eabi* and gnueabi*.
592
593 2021-01-05 Nick Alcock <nick.alcock@oracle.com>
594
595 * Makefile.def (libctf): No longer no_check. Checking depends on
596 all-ld.
597 * Makefile.in: Regenerated.
598
599 2021-01-05 Nick Clifton <nickc@redhat.com>
600
601 * libiberty: Sync with gcc. Bring in:
602 2021-01-04 Martin Liska <mliska@suse.cz>
603
604 * strverscmp.c: Convert to utf8 from iso8859.
605
606 2020-12-22 Jason Merrill <jason@redhat.com>
607
608 PR c++/67343
609 * cp-demangle.h (struct d_info): Add unresolved_name_state.
610 * cp-demangle.c (d_prefix): Add subst parm.
611 (d_nested_name): Pass it.
612 (d_unresolved_name): Split out from...
613 (d_expression_1): ...here.
614 (d_demangle_callback): Maybe retry with old sr mangling.
615 * testsuite/demangle-expected: Add test.
616
617 2020-12-21 Jason Merrill <jason@redhat.com>
618
619 * cp-demangle.c (d_expression_1): Recognize qualified-id
620 on RHS of dt/pt.
621 * testsuite/demangle-expected: Add test.
622
623 2020-12-21 Jason Merrill <jason@redhat.com>
624
625 * cp-demangle.c (d_unqualified_name): Clear is_expression.
626 * testsuite/demangle-expected: Add tests.
627
628 2020-11-25 Matthew Malcomson <matthew.malcomson@arm.com>
629
630 * configure: Regenerate.
631 * configure.ac: Avoid using sanitizer.
632
633 2020-11-13 Eduard-Mihai Burtescu <eddyb@lyken.rs>
634
635 * rust-demangle.c (struct rust_demangler): Add
636 skipping_printing and bound_lifetime_depth fields.
637 (eat): Add (v0-only).
638 (parse_integer_62): Add (v0-only).
639 (parse_opt_integer_62): Add (v0-only).
640 (parse_disambiguator): Add (v0-only).
641 (struct rust_mangled_ident): Add punycode{,_len} fields.
642 (parse_ident): Support v0 identifiers.
643 (print_str): Respect skipping_printing.
644 (print_uint64): Add (v0-only).
645 (print_uint64_hex): Add (v0-only).
646 (print_ident): Respect skipping_printing,
647 Support v0 identifiers.
648 (print_lifetime_from_index): Add (v0-only).
649 (demangle_binder): Add (v0-only).
650 (demangle_path): Add (v0-only).
651 (demangle_generic_arg): Add (v0-only).
652 (demangle_type): Add (v0-only).
653 (demangle_path_maybe_open_generics): Add (v0-only).
654 (demangle_dyn_trait): Add (v0-only).
655 (demangle_const): Add (v0-only).
656 (demangle_const_uint): Add (v0-only).
657 (basic_type): Add (v0-only).
658 (rust_demangle_callback): Support v0 symbols.
659 * testsuite/rust-demangle-expected: Add v0 testcases.
660
661 2020-11-13 Seija Kijin <doremylover456@gmail.com>
662
663 * strstr.c (strstr): Make implementation ANSI/POSIX compliant.
664
665 2020-11-11 Patrick Palka <ppalka@redhat.com>
666
667 PR c++/88115
668 * cp-demangle.c (d_print_comp_inner)
669 <case DEMANGLE_COMPONENT_EXTENDED_OPERATOR>: Don't print the
670 "operator " prefix for __alignof__.
671 <case DEMANGLE_COMPONENT_UNARY>: Always print parens around the
672 operand of __alignof__.
673 * testsuite/demangle-expected: Test demangling for __alignof__.
674
675 2020-11-09 Christophe Lyon <christophe.lyon@linaro.org>
676
677 * pex-win32.c (pex_win32_exec_child): Initialize orig_err.
678
679 2020-10-06 Martin Liska <mliska@suse.cz>
680
681 PR lto/97290
682 * simple-object-elf.c (simple_object_elf_copy_lto_debug_sections):
683 Use sh_link of a .symtab_shndx section.
684
685 2021-01-05 Alan Modra <amodra@gmail.com>
686
687 * config.guess: Import from upstream.
688 * config.sub: Likewise.
689
690 2020-12-16 Martin Liska <mliska@suse.cz>
691 Tom de Vries <tdevries@suse.de>
692
693 * gdb/debuginfod-support.c (struct user_data): Remove has_printed
694 field. Add meter field.
695 (progressfn): Print progress using meter.
696
697 2020-12-02 Enze Li <lienze2010@hotmail.com>
698
699 * .gitignore: Add gnu global outputs.
700
701 2020-12-02 Simon Marchi <simon.marchi@polymtl.ca>
702
703 * .gitignore: Sync with gcc.
704
705 2020-10-26 Andreas Rammhold <andreas@rammhold.de>
706
707 * src-release.sh: Use sha256sum instead of md5sum.
708
709 2020-10-14 Andrew Burgess <andrew.burgess@embecosm.com>
710
711 * Makefile.in: Rebuild.
712 * Makefile.def: Make distclean-gnulib depend on distclean-gdb and
713 distclean-gdbserver.
714
715 2020-07-24 Aaron Merey <amerey@redhat.com>
716
717 * configure: Rebuild.
718 * configure.ac: Remove AC_DEBUGINFOD.
719
720 2020-07-04 Nick Clifton <nickc@redhat.com>
721
722 Binutils 2.35 branch created.
723
724 2020-04-21 Stephen Casner <casner@acm.org>
725
726 PR 25830
727 * configure.ac (noconfigdirs): Exclude gdb & gprof for pdp11.
728 * configure: Rebuild.
729
730 2020-03-12 Tom Tromey <tom@tromey.com>
731
732 * Makefile.in: Rebuild.
733 * Makefile.def (gdbserver): Depend on gdbsupport.
734
735 2020-03-12 Tom Tromey <tom@tromey.com>
736
737 * Makefile.in: Rebuild.
738 * Makefile.def (gdbsupport): Don't depend on bfd.
739
740 2020-03-12 Tom Tromey <tom@tromey.com>
741
742 * Makefile.in: Rebuild.
743 * Makefile.def (gdbsupport): Depend on intl.
744
745 2020-02-17 Tom Tromey <tom@tromey.com>
746
747 * configure: Rebuild.
748 * configure.ac (configdirs): Add gnulib and gdbsupport when building
749 gdbserver.
750
751 2020-02-14 Tom Tromey <tom@tromey.com>
752
753 * Makefile.in: Rebuild.
754 * Makefile.def: Make gdbserver require gnulib and libiberty.
755
756 2020-02-07 Tom Tromey <tom@tromey.com>
757 Pedro Alves <palves@redhat.com>
758
759 * src-release.sh (GDB_SUPPORT_DIRS): Add gdbserver.
760 * gdbserver: New directory, moved from gdb/gdbserver.
761 * configure.ac (host_tools): Add gdbserver.
762 Only build gdbserver on certain systems.
763 * Makefile.in, configure: Rebuild.
764 * Makefile.def (host_modules, dependencies): Add gdbserver.
765 * MAINTAINERS: Add gdbserver.
766
767 2020-01-28 Sergio Durigan Junior <sergiodj@redhat.com>
768
769 * src-release.sh (getver): Look for gdbsupport's
770 create-version.sh script at the current directory if tool is
771 "gdb".
772
773 2020-01-19 Simon Marchi <simon.marchi@polymtl.ca>
774
775 * remote-sim.c (gdbsim_target::wait): Return
776 sim_data->remote_sim_ptid instead of inferior_ptid.
777
778 2020-01-18 Nick Clifton <nickc@redhat.com>
779
780 Binutils 2.34 branch created.
781
782 2020-01-18 Nick Clifton <nickc@redhat.com>
783
784 Synchronize top level configure files with master version:
785
786 2020-01-01 Ben Elliston <bje@gnu.org>
787
788 * config.guess: Update copyright years.
789 * config.sub: Likewise.
790
791 2019-12-21 Ben Elliston <bje@gnu.org>
792
793 * config.guess (set_cc_for_build): Prevent multiple calls by
794 checking if $tmp is already set. We can't check CC_FOR_BUILD as
795 the user may set it externally. Thanks to Torbjörn Granlund for
796 the bug report.
797
798 2019-12-21 Torbjörn Granlund <tg@gmplib.org>
799
800 * config.guess (alpha:Linux:*:*): Guard against missing
801 /proc/cpuinfo by redirecting standard error to /dev/null.
802
803 2019-09-12 Daniel Bittman <danielbittman1@gmail.com>
804
805 * config.guess (*:Twizzler:*:*): New.
806 * config.sub (-twizzler*): New.
807
808 2019-07-24 Ben Elliston <bje@gnu.org>
809
810 * config.guess (mips:OSF1:*.*): Whitespace cleanup.
811
812 2019-06-30 Ben Elliston <bje@gnu.org>
813
814 * config.sub (case $os): Match nsk* and powerunix. Don't later
815 match nsk* and set os=nsk which removes the OS version number.
816
817 2019-06-30 Ben Elliston <bje@gnu.org>
818
819 * config.sub: Recognise os108*.
820
821 2019-06-26 Ben Elliston <bje@gnu.org>
822
823 * config.sub (hp300): Set $os to hpux.
824
825 2019-06-26 Ben Elliston <bje@gnu.org>
826
827 * config.sub (vsta): Move into alphabetical order.
828
829 2019-06-10 Ben Elliston <bje@gnu.org>
830
831 * config.guess (*:OS108:*:*): Recognise new OS.
832
833 2019-05-28 Ben Elliston <bje@gnu.org>
834
835 * config.guess (*:Darwin:*:*): Run xcode-select to determine if a
836 system compiler is installed. If not, do not run set_cc_for_build,
837 as the default cc will open a dialog box asking to install
838 Xcode. If no C compiler is available, guess based on uname -p and
839 uname -m.
840
841 2019-05-28 Ben Elliston <bje@gnu.org>
842
843 * config.guess (*:Darwin:*:*): Simplify UNAME_PROCESSOR.
844
845 2020-01-17 Simon Marchi <simon.marchi@efficios.com>
846
847 * Makefile.def: Add dependencies of all-gdbsupport on all-bfd.
848 * Makefile.in: Re-generate.
849
850 2020-01-14 Tom Tromey <tom@tromey.com>
851
852 * src-release.sh (GDB_SUPPORT_DIRS): Add gdbsupport.
853 * MAINTAINERS: Add gdbsupport.
854 * configure: Rebuild.
855 * configure.ac (configdirs): Add gdbsupport.
856 * gdbsupport: New directory, move from gdb/gdbsupport.
857 * Makefile.def (host_modules, dependencies): Add gnulib.
858 * Makefile.in: Rebuild.
859
860 2020-01-09 Aaron Merey <amerey@redhat.com>
861
862 * config/debuginfod.m4: New file. Add macro AC_DEBUGINFOD. Adds
863 new configure option --with-debuginfod.
864 * configure: Regenerate.
865 * configure.ac: Call AC_DEBUGINFOD.
866
867 2019-12-26 Christian Biesinger <cbiesinger@google.com>
868
869 * .gitignore: Add perf.data and perf.data.old.
870
871 2019-10-17 Sergio Durigan Junior <sergiodj@redhat.com>
872
873 * src-release.sh (GDB_SUPPORT_DIRS): Add libctf.
874
875 2019-10-17 Alan Modra <amodra@gmail.com>
876
877 PR 29
878 * src-release.sh (getver): Replace "head -1" with "head -n 1".
879
880 2019-07-30 Nick Alcock <nick.alcock@oracle.com>
881
882 * Makefile.def (host_modules): libctf is no longer no_install.
883 * Makefile.in: Regenerated.
884
885 2019-07-13 Nick Alcock <nick.alcock@oracle.com>
886
887 * Makefile.def (dependencies): all-ld depends on all-libctf.
888 * Makefile.in: Regenerated.
889
890 2019-09-09 Phil Blundell <pb@pbcl.net>
891
892 binutils 2.33 branch created
893
894 2019-08-19 Tom Tromey <tom@tromey.com>
895
896 * configure: Rebuild.
897 * configure.ac: Add --with-static-standard-libraries.
898
899 2019-08-09 Nick Clifton <nickc@redhat.com>
900
901 * libiberty: Sync with gcc. Bring in:
902 2019-08-08 Martin Liska <mliska@suse.cz>
903
904 PR bootstrap/91352
905 * lrealpath.c (is_valid_fd): New function.
906
907 2019-07-24 Martin Liska <mliska@suse.cz>
908
909 PR lto/91228
910 * simple-object-elf.c (simple_object_elf_copy_lto_debug_sections):
911 Find first '\0' starting from gnu_lto + 1.
912
913 2019-07-12 Ren Kimura <rkx1209dev@gmail.com>
914
915 * simple-object-elf.c (simple_object_elf_match): Check zero value shstrndx.
916 This fixes a Bug 90924.
917
918 2019-07-22 Martin Liska <mliska@suse.cz>
919
920 * simple-object-elf.c (simple_object_elf_copy_lto_debug_sections):
921 Do not search for gnu_lto_v1, but search for first '\0'.
922
923 2019-07-18 Eduard-Mihai Burtescu <eddyb@lyken.rs>
924
925 * cplus-dem.c: Include rust-demangle.h.
926 * rust-demangle.c: Include rust-demangle.h.
927 * rust-demangle.h: New file.
928
929 2019-05-31 Michael Forney <mforney@mforney.org>
930
931 * cp-demangle.c: Don't define CP_DYNAMIC_ARRAYS if __STDC_NO_VLA__
932 is non-zero.
933
934 2019-04-30 Ben L <bobsayshilol@live.co.uk>
935
936 * d-demangle.c (dlang_parse_assocarray): Correctly handle error result.
937 * testsuite/d-demangle-expected: Add testcase.
938
939 * d-demangle.c (dlang_parse_tuple): Correctly handle error result.
940 * testsuite/d-demangle-expected: Add testcase.
941
942 * d-demangle.c (dlang_parse_structlit): Correctly handle error result.
943 * testsuite/d-demangle-expected: Add testcase.
944
945 * d-demangle.c (dlang_parse_arrayliteral): Correctly handle error result.
946 * testsuite/d-demangle-expected: Add testcase.
947
948 * d-demangle.c (dlang_parse_integer): Fix stack underflow.
949 * testsuite/d-demangle-expected: Add testcase.
950
951 * cp-demangle (d_print_comp_inner): Guard against a NULL 'typed_name'.
952 * testsuite/demangle-expected: Add testcase.
953
954 * cp-demangle.c (d_encoding): Guard against NULL return values from
955 d_right (dc).
956 * testsuite/demangle-expected: Add testcase.
957
958 2019-04-29 Ben L <bobsayshilol@live.co.uk>
959
960 * cp-demangle.c (d_expression_1): Don't peek ahead unless the current
961 char is valid.
962 * testsuite/demangle-expected: Add testcase.
963
964 2019-04-10 Nick Clifton <nickc@redhat.com>
965
966 PR 89394
967 * cp-demangle.c (cplus_demangle_fill_name): Reject negative
968 lengths.
969 (d_count_templates_scopes): Replace num_templates and num_scopes
970 parameters with a struct d_print_info pointer parameter. Adjust
971 body of the function accordingly. Add recursion counter and check
972 that the recursion limit is not reached.
973 (d_print_init): Pass dpi parameter to d_count_templates_scopes.
974 Reset recursion counter afterwards, unless the recursion limit was
975 reached.
976
977 2019-07-13 Joel Brobecker <brobecker@adacore.com>
978
979 * src-release (getver): If $tool/gdbsupport/create-version.sh
980 exists, use that to determine the version number.
981
982 2019-06-21 Andreas Schwab <schwab@linux-m68k.org>
983
984 * src-release.sh (GDB_SUPPORT_DIRS): Add gnulib.
985
986 2019-06-14 Tom Tromey <tom@tromey.com>
987
988 * MAINTAINERS: Add gnulib.
989 * gnulib: New directory, move from gdb/gnulib.
990 * configure.ac (host_libs): Add gnulib.
991 * configure: Rebuild.
992 * Makefile.def (host_modules, dependencies): Add gnulib.
993 * Makefile.in: Rebuild.
994
995 2019-06-03 Nick Clifton <nickc@redhat.com>
996
997 Revert:
998 2019-05-29 Nick Clifton <nickc@redhat.com>
999
1000 * configure.ac (noconfigdirs): Add libctf if the target does not use
1001 the ELF file format.
1002 * configure: Regenerate.
1003
1004 2019-05-29 Nick Clifton <nickc@redhat.com>
1005
1006 * src-release.sh (do_proto_toplev): Add libctf to list of
1007 directories that can be disabled.
1008
1009 2019-05-29 Nick Clifton <nickc@redhat.com>
1010
1011 * configure.ac (noconfigdirs): Add libctf if the target does not use
1012 the ELF file format.
1013 * configure: Regenerate.
1014
1015 2019-05-28 Nick Alcock <nick.alcock@oracle.com>
1016
1017 * Makefile.def (dependencies): configure-libctf depends on all-bfd
1018 and all its deps.
1019 * Makefile.in: Regenerated.
1020
1021 2019-05-28 Nick Alcock <nick.alcock@oracle.com>
1022
1023 * MAINTAINERS: Add libctf.
1024
1025 2019-05-28 Nick Alcock <nick.alcock@oracle.com>
1026
1027 * Makefile.def (host_modules): Add libctf.
1028 * Makefile.def (dependencies): Likewise.
1029 libctf depends on zlib, libiberty, and bfd.
1030 * Makefile.in: Regenerated.
1031 * configure.ac (host_libs): Add libctf.
1032 * configure: Regenerated.
1033
1034 2019-05-23 Jose E. Marchesi <jose.marchesi@oracle.com>
1035
1036 * config.guess: Synchronize with config project master sources.
1037 * config.sub: Likewise.
1038 * readline/support/config.guess: Likewise.
1039 * readline/support/config.sub: Likewise.
1040
1041 2019-04-10 Nick Clifton <nickc@redhat.com>
1042
1043 * libiberty: Sync with gcc. Bring in:
1044 2019-04-10 Nick Clifton <nickc@redhat.com>
1045
1046 PR 89394
1047 * cp-demangle.c (cplus_demangle_fill_name): Reject negative
1048 lengths.
1049 (d_count_templates_scopes): Replace num_templates and num_scopes
1050 parameters with a struct d_print_info pointer parameter. Adjust
1051 body of the function accordingly. Add recursion counter and check
1052 that the recursion limit is not reached.
1053 (d_print_init): Pass dpi parameter to d_count_templates_scopes.
1054 Reset recursion counter afterwards, unless the recursion limit was
1055 reached.
1056
1057 2018-06-24 Nick Clifton <nickc@redhat.com>
1058
1059 2.32 branch created.
1060
1061 2019-01-14 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
1062
1063 Merge from GCC:
1064 PR target/88535
1065 * config.guess: Import upstream version 2019-01-03.
1066 * config.sub: Import upstream version 2019-01-01.
1067
1068 2019-01-10 Nick Clifton <nickc@redhat.com>
1069
1070 * libiberty: Sync with gcc. Bring in:
1071 2019-01-09 Sandra Loosemore <sandra@codesourcery.com>
1072
1073 PR other/16615
1074
1075 * cp-demangle.c: Mechanically replace "can not" with "cannot".
1076 * floatformat.c: Likewise.
1077 * strerror.c: Likewise.
1078
1079 2018-12-22 Jason Merrill <jason@redhat.com>
1080
1081 Remove support for demangling GCC 2.x era mangling schemes.
1082 * cplus-dem.c: Remove cplus_mangle_opname, cplus_demangle_opname,
1083 internal_cplus_demangle, and all subroutines.
1084 (libiberty_demanglers): Remove entries for ancient GNU (pre-3.0),
1085 Lucid, ARM, HP, and EDG demangling styles.
1086 (cplus_demangle): Remove 'work' variable. Don't call
1087 internal_cplus_demangle.
1088
1089 2019-01-03 Дилян Палаузов <dilyan.palauzov@aegee.org>
1090
1091 * configure.ac: Don't configure readline if --with-system-readline is
1092 used.
1093 * configure: Re-generate.
1094
1095 2018-10-31 Joseph Myers <joseph@codesourcery.com>
1096
1097 Merge from GCC:
1098 PR bootstrap/82856
1099 * multilib.am: New file. From automake.
1100
1101 2018-09-12 Sergio Durigan Junior <sergiodj@redhat.com>
1102
1103 * src-release.sh (GDB_SUPPORT_DIRS): Add "contrib".
1104
1105 2018-07-16 Nick Clifton <nickc@redhat.com>
1106
1107 * src-release.sh (DEVO_SUPPORT): Add test-driver and ar-lib.
1108
1109 2018-07-06 Sebastian Huber <sebastian.huber@embedded-brains.de>
1110
1111 * config.sub: Sync with upstream version 2018-07-03.
1112
1113 2018-07-05 Sebastian Huber <sebastian.huber@embedded-brains.de>
1114
1115 * config.guess: Sync with upstream version 2018-06-26.
1116 * config.sub: Sync with upstream version 2018-07-02.
1117
1118 2018-06-29 Alexandre Oliva <oliva@adacore.com>
1119
1120 * configure.ac: Introduce support for @unless/@endunless.
1121 * Makefile.tpl (dep-kind): Rewrite with cond; return
1122 postbootstrap in some cases.
1123 (make-postboot-dep, postboot-targets): New.
1124 (dependencies): Do not output postbootstrap dependencies at
1125 first. Output non-target ones changed for configure to depend
1126 on stage_last @if gcc-bootstrap, and the original deps @unless
1127 gcc-bootstrap.
1128 * configure.in, Makefile.in: Rebuilt.
1129
1130 2018-06-24 Nick Clifton <nickc@redhat.com>
1131
1132 * configure: Regenerate.
1133
1134 2018-06-19 Simon Marchi <simon.marchi@ericsson.com>
1135
1136 * libtool.m4: Use AC_LANG_SOURCE.
1137 * configure.ac: Remove AC_PREREQ, use AC_LANG_SOURCE.
1138 * README-maintainer-mode: Update version requirements.
1139 * ar-lib: New file.
1140 * test-driver: New file.
1141 * configure: Re-generate.
1142
1143 2018-06-18 Eric Botcazou <ebotcazou@adacore.com>
1144
1145 * Makefile.def (fortran): Add check-target-libgomp-fortran.
1146 * Makefile.tpl (check-target-libgomp-fortran): New phony target.
1147 * Makefile.in: Regenerate.
1148
1149 * configure: Regenerate.
1150
1151 2018-06-18 Simon Marchi <simon.marchi@ericsson.com>
1152
1153 * configure.ac: Sync with GCC, remove MPX-related things.
1154
1155 2018-05-01 Nick Clifton <nickc@redhat.com>
1156
1157 * config.guess: Synchronize with config project master sources.
1158 * config.sub: Likewise.
1159
1160 2018-05-01 Francois H. Theron <francois.theron@netronome.com>
1161
1162 * configure.ac: Added "nfp" target.
1163 * configure: Regenerate.
1164
1165 2018-02-13 Maciej W. Rozycki <macro@mips.com>
1166
1167 * configure.ac <wasm32-*-*> (noconfigdirs): Add `ld'.
1168 * configure: Regenerate.
1169
1170 2018-01-30 Nick Clifton <nickc@redhat.com>
1171
1172 * src-release.sh (do_proto_toplev): Add patterns for more junk files
1173 to delete before creating the tarball.
1174
1175 2018-01-29 Nick Clifton <nickc@redhat.com>
1176
1177 * src-release.sh (do_proto_toplev): Strip patch remnant files from
1178 the sources before creating the tarball.
1179
1180 2018-01-13 Nick Clifton <nickc@redhat.com>
1181
1182 * src-release.sh: Update copyright notice. Change reference to devo
1183 to be a reference to root.
1184
1185 2018-01-10 Nick Clifton <nickc@redhat.com>
1186
1187 * config-ml.in: Sync with gcc sources.
1188 * config.guess: Likewise.
1189 * config.sub: Likewise.
1190 * configure.ac: Likewise.
1191 * configure: Regenerate.
1192
1193 2017-12-14 Nick Clifton <nickc@redhat.com>
1194
1195 * COPYING.LIBGLOSS: Update address of FSF in copyright notice.
1196
1197 2017-12-12 Stafford Horne <shorne@gmail.com>
1198
1199 * configure.ac: Remove logic adding gdb to noconfigsdirs for or1k.
1200 * configure: Regenerate.
1201
1202 2017-09-15 Nick Clifton <nickc@redhat.com>
1203
1204 * src-release.sh (LZIPPROG): New define. Provides the name of the
1205 lzip program.
1206 (do_lz): New function. Compresses a tarball using the lzip
1207 program.
1208 (do_compress): Add support for lzip compression.
1209 (usage): Mention -l option.
1210 (build_release): Support -l option to invoke lzip compression.
1211
1212 2017-09-15 Alan Modra <amodra@gmail.com>
1213
1214 * src-release.sh (do_proto_toplev): Revert last patch. Enable or
1215 disable binutils, gas, gdb, gold, gprof, ld, libdecnumber, readline,
1216 and sim depending on $tool and $support_files. Echo configure line.
1217
1218 2017-09-14 Matt Rice <ratmice@gmail.com>
1219
1220 * src-release.sh (do_proto_toplev): Enable gold during release process.
1221
1222 2017-04-13 Andrew Jenner <andrew@codesourcery.com>
1223
1224 * config.sub: Sync with master version in config project.
1225
1226 2017-04-03 Andrew Jenner <andrew@codesourcery.com>
1227
1228 * config.sub: Handle ia16 in $basic_machine.
1229
1230 bfd/
1231 * config.bfd: Handle ia16.
1232
1233 gas/
1234 * configure.tgt: Handle ia16.
1235
1236 ld/
1237 * configure.tgt: Handle ia16.
1238
1239 2017-03-22 Nick Clifton <nickc@redhat.com>
1240
1241 * config.sub: Sync with master version in config project.
1242 * config.guess: Likewise.
1243
1244 2017-01-23 Nick Clifton <nickc@redhat.com>
1245
1246 * configure.ac: Update year in copyright notice.
1247 Sync from FSF GCC mainline, bringing in the following patches.
1248 * Makefile.def: Likewise.
1249 * Makefile.tpl: Likewise.
1250 * configure: Regenerate.
1251 * Makefile.in: Regenerate.
1252
1253 2016-12-21 Jakub Jelinek <jakub@redhat.com>
1254
1255 * configure.ac: Don't bootstrap libmpx unless --with-build-config
1256 includes bootstrap-mpx.
1257
1258 2016-12-01 Matthias Klose <doko@ubuntu.com>
1259
1260 * configure.ac: Don't use pkg-config to check for bdw-gc.
1261
1262 2016-11-30 Matthias Klose <doko@ubuntu.com>
1263
1264 * Makefile.def: Remove reference to boehm-gc target module.
1265 * configure.ac: Include pkg.m4, check for --with-target-bdw-gc
1266 options and for the bdw-gc pkg-config module.
1267
1268 2016-11-15 Matthias Klose <doko@ubuntu.com>
1269
1270 * config-ml.in: Remove references to GCJ.
1271 * configure.ac: Likewise.
1272
1273 2016-09-30 Jakub Jelinek <jakub@redhat.com>
1274
1275 * configure.ac: Add target-libffi to target_libraries.
1276 Readd libgcj target disablings, modified to only target-libffi.
1277 Readd target addition of go to unsupported languages.
1278
1279 2016-09-30 Andrew Haley <aph@redhat.com>
1280
1281 * Makefile.def: Remove libjava.
1282 * Makefile.tpl: Likewise.
1283 * configure.ac: Likewise.
1284
1285 2016-09-26 Anton Kolesov <Anton.Kolesov@synopsys.com>
1286
1287 * configure.ac: Disable "sim" directory for arc*-*-*.
1288
1289 2016-09-12 Maciej W. Rozycki <macro@imgtec.com>
1290
1291 * configure.ac: Check for the minimum in-tree MPFR version
1292 handled.
1293
1294 2016-12-31 Alan Modra <amodra@gmail.com>
1295
1296 * config.sub: Import from upstream.
1297
1298 2016-12-08 Alan Modra <amodra@gmail.com>
1299
1300 * configure: Regenerate.
1301
1302 2016-12-02 Josh Conner <joshconner@google.com>
1303
1304 * configure.ac: Add fuchsia to targets that use ELF.
1305 * configure: Regenerated.
1306
1307 2016-11-07 Doug Evans <dje@google.com>
1308
1309 * config.sub: Sync with upstream version 2016-11-03.
1310 git://git.sv.gnu.org/config.git
1311 * config.guess: Sync with upstream version 2016-10-02.
1312
1313 2016-09-27 Simon Marchi <simon.marchi@polymtl.ca>
1314
1315 * .gitignore: Add archives and make stamps.
1316
1317 2016-07-20 Yan-Ting Lin <currygt52@gmail.com>
1318
1319 * configure.ac (nds32*-*-*): Remove entry to enable gdb.
1320 * configure: Regenerated.
1321
1322 2016-06-28 Walter Lee <walt@tilera.com>
1323
1324 * configure.ac (tilepro-*-*): Add gdb to noconfigdirs.
1325 * configure: Regenerate.
1326
1327 2016-05-28 Alan Modra <amodra@gmail.com>
1328
1329 * Makefile.tpl (configure): Depend on m4 files included.
1330 * Makefile.in: Regenerate.
1331
1332 2016-05-27 Nick Clifton <nickc@redhat.com>
1333
1334 * config.guess (Alpha OSF1): Fix typo introduced during the most
1335 recent synchronization update.
1336
1337 2016-05-23 Nick Clifton <nickc@redhat.com>
1338
1339 * Import these patches from the gcc mainline:
1340
1341 2016-05-16 Jakub Sejdak <jakub.sejdak@phoesys.com>
1342
1343 * config.guess: Import version 2016-04-02 (newest).
1344 * config.sub: Import version 2016-05-10 (newest).
1345
1346 2016-04-19 Nick Clifton <nickc@redhat.com>
1347
1348 * Import this patch from the GCC mainline:
1349
1350 2016-04-13 Segher Boessenkool <segher@kernel.crashing.org>
1351
1352 PR bootstrap/70173
1353 * Makefile.tpl (local-distclean): Delete the libcc1, gnattools,
1354 and gotools directories. Delete the stage_final file.
1355 * Makefile.in: Regenerate.
1356
1357 2016-03-17 Cary Coutant <ccoutant@gmail.com>
1358
1359 * configure.ac: Add mips and s390 to the gold target check.
1360 * configure: Regenerate.
1361
1362 2016-02-10 Nick Clifton <nickc@redhat.com>
1363
1364 Import these patches from the GCC mainline:
1365
1366 2016-01-12 Andris Pavenis <andris.pavenis@iki.fi>
1367
1368 * configure.ac: Enable LTO for DJGPP
1369 * configure: Regenerate
1370
1371 2016-01-24 Mikhail Maltsev <maltsevm@gmail.com>
1372
1373 PR bootstrap/69329
1374 * Makefile.tpl (BASE_FLAGS_TO_PASS): Add LSAN_OPTIONS.
1375 * Makefile.in: Regenerate.
1376
1377 2016-01-25 Aditya Kumar <aditya.k7@samsung.com>
1378 Sebastian Pop <s.pop@samsung.com>
1379
1380 * Makefile.in: Regenerate.
1381 * Makefile.tpl: Export ISLVER.
1382 * configure: Regenerate.
1383 * config/isl.m4: Detect isl-0.15.
1384
1385 2016-01-29 Sebastian Pop <s.pop@samsung.com>
1386
1387 * config/isl.m4: Add comments about isl-0.16.
1388 * configure: Regenerate.
1389
1390 2016-01-12 H.J. Lu <hongjiu.lu@intel.com>
1391
1392 Sync with GCC
1393 2015-11-26 David Edelsohn <dje.gcc@gmail.com>
1394
1395 * m4/libtool.m4 (export_symbols_cmds) [AIX]: Add global TLS "L"
1396 symbols.
1397
1398 2016-01-12 Bernd Edlinger <bernd.edlinger@hotmail.de>
1399
1400 PR bootstrap/69134
1401 * Makefile.def (mpfr): Disable assembler.
1402 * Makefile.in: Regenerate.
1403
1404 2016-01-11 Nick Clifton <nickc@redhat.com>
1405
1406 Import the following changes from the GCC mainline:
1407
1408 2015-11-13 Tsvetkova Alexandra <aleksandra.tsvetkova@intel.com>
1409
1410 * configure.ac: Enable libmpx by default.
1411 * configure: Regenerated.
1412
1413 2015-11-19 Martin Liska <mliska@suse.cz>
1414
1415 * .gitignore: Add .clang-format to ignored files.
1416 * Makefile.tpl: Add clang-format.
1417 * Makefile.in: Regenerate.
1418
1419 2015-12-01 Andreas Tobler <andreast@gcc.gnu.org>
1420
1421 PR libffi/65726
1422 * Makefile.def (lang_env_dependencies): Make libffi depend
1423 on cxx.
1424 * Makefile.in: Regenerate.
1425
1426 2015-12-02 Ian Lance Taylor <iant@google.com>
1427
1428 PR go/66147
1429 * Makefile.tpl (HOST_EXPORTS): Add XGCC_FLAGS_FOR_TARGET.
1430 * Makefile.in: Regenerate.
1431
1432 2015-12-17 Nathan Sidwell <nathan@acm.org>
1433
1434 * config/isl.m4 (ISL_CHECK_VERSION): Add gmp libs.
1435 * configure: Regenerate.
1436
1437 2015-12-17 Sebastian Pop <s.pop@samsung.com>
1438
1439 * Makefile.in: Replace ISL with isl.
1440 * Makefile.tpl: Same.
1441 * config/isl.m4: Same.
1442 * configure.ac: Same.
1443 * contrib/download_prerequisites: Same.
1444 * configure: Regenerate.
1445
1446 2016-01-01 Ben Elliston <bje@gnu.org>
1447
1448 * config.guess: Import version 2016-01-01.
1449 * config.sub: Likewise.
1450
1451 2015-11-20 Tristan Gingold <gingold@adacore.com>
1452
1453 * configure.ac: Add aarch64-*-darwin* and arm-*-darwin*.
1454 * configure: Regenerate.
1455
1456 2015-10-21 Nick Clifton <nickc@redhat.com>
1457
1458 PR gas/19109
1459 * configure.ac: Note the 'none' is an acceptable argument to
1460 --enable-compressed-debug-sections.
1461 * configure: Regenerate.
1462
1463 2015-10-20 H.J. Lu <hongjiu.lu@intel.com>
1464
1465 PR gas/19109
1466 * configure.ac: Add
1467 --enable-compressed-debug-sections={all,gas,gold,ld}.
1468 * configure: Regenerated.
1469
1470 2015-09-30 Nick Clifton <nickc@redhat.com>
1471
1472 Import the following patches from the GCC mainline:
1473
1474 2015-08-23 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
1475
1476 PR libfortran/54572
1477 * Makefile.def: Make libgfortran depend on libbacktrace.
1478 * Makefile.in: Regenerate.
1479
1480 2015-08-12 Tom de Vries <tom@codesourcery.com>
1481
1482 PR other/67092
1483 PR other/67098
1484 * configure.ac: Remove --with_host_libstdcxx support.
1485 * configure: Regenerate.
1486
1487 2015-08-10 Thomas Schwinge <thomas@codesourcery.com>
1488 Jakub Jelinek <jakub@redhat.com>
1489
1490 * configure.ac (noconfigdirs): Don't add "target-libgomp" for target
1491 nvptx*-*-*.
1492 * configure: Regenerate.
1493
1494 2015-08-07 H.J. Lu <hongjiu.lu@intel.com>
1495
1496 Sync with GCC
1497 2015-07-28 Ben Elliston <bje@gnu.org>
1498
1499 * config.sub, config.guess: Import from upstream.
1500
1501 2015-08-06 Yaakov Selkowitz <yselkowi@redhat.com>
1502
1503 * Makefile.def (libiconv): Define bootstrap=true.
1504 Mark pdf/html/info as missing.
1505 (configure-gcc): Depend on all-libiconv.
1506 (all-gcc): Ditto.
1507 (configure-libcpp): Ditto.
1508 (all-libcpp): Ditto.
1509 (configure-intl): Ditto.
1510 (all-intl): Ditto.
1511 * Makefile.in: Regenerate.
1512
1513 2015-07-27 H.J. Lu <hongjiu.lu@intel.com>
1514
1515 Sync with GCC
1516 2015-07-24 Michael Darling <darlingm@gmail.com>
1517
1518 PR other/66259
1519 * config-ml.in: Reflects renaming of configure.in to configure.ac
1520 * configure: Likewise
1521 * configure.ac: Likewise
1522
1523 2015-07-14 H.J. Lu <hongjiu.lu@intel.com>
1524
1525 * Makefile.in: Regenerated.
1526
1527 Sync with GCC
1528 2015-05-21 Jason Merrill <jason@redhat.com>
1529
1530 * Makefile.tpl: Update comments.
1531
1532 2015-04-22 Bernhard Reutner-Fischer <aldot@gcc.gnu.org>
1533
1534 * Makefile.tpl: Remove surplus whitespace throughout.
1535
1536 2015-03-25 Martin Liska <mliska@suse.cz>
1537 Yury Gribov <y.gribov@samsung.com>
1538
1539 * Makefile.tpl: Fix ln source location for vimrc file.
1540
1541 2015-07-14 H.J. Lu <hongjiu.lu@intel.com>
1542
1543 Sync with GCC
1544 2015-05-16 James Bowman <james.bowman@ftdichip.com>
1545
1546 * configure.ac: FT32 target added.
1547 * configure: Regenerate.
1548
1549 2015-07-14 H.J. Lu <hongjiu.lu@intel.com>
1550
1551 Sync with GCC
1552 2015-06-02 Jason Merrill <jason@redhat.com>
1553
1554 PR bootstrap/66319
1555 * configure.ac: Use -std=gnu++98.
1556
1557 2015-05-28 Mike Frysinger <vapier@gentoo.org>
1558
1559 * configure.ac (--vtable-verify): Use AS_HELP_STRING for help.
1560 * configure: Regenerate.
1561
1562 2015-05-11 Paulo Matos <paulo@matos-sorge.com>
1563
1564 * configure.ac: Fix typo.
1565 * configure: Regenerate.
1566
1567 2015-05-03 Matthias Klose <doko@ubuntu.com>
1568
1569 * configure.ac: Match $host configured with triplets.
1570 * configure: Regenerate.
1571
1572 2015-04-17 Jakub Jelinek <jakub@redhat.com>
1573
1574 PR bootstrap/62077
1575 * configure.ac (--enable-stage1-checking): Default to
1576 release,misc,gimple,rtlflag,tree,types if --disable-checking
1577 or --enable-checking is not specified and DEV-PHASE is not
1578 experimental.
1579 * configure: Regenerated.
1580
1581 2015-03-27 Uros Bizjak <ubizjak@gmail.com>
1582
1583 Install back PR target/47230 fix (Revert the revert).
1584
1585 2015-06-30 H.J. Lu <hongjiu.lu@intel.com>
1586
1587 * configure.ac (ospace_frag): Enable for i?86*-*-elfiamcu
1588 target.
1589 * configure: Regenerate.
1590
1591 2015-05-13 John David Anglin <dave.anglin@bell.net>
1592
1593 * configure.ac: Disable configuration of GDB for HPUX targets.
1594 * configure: Regenerate.
1595
1596 2015-05-01 H.J. Lu <hongjiu.lu@intel.com>
1597
1598 PR ld/18355
1599 * Makefile.def: Add extra_configure_flags to host zlib.
1600 * configure.ac (extra_host_zlib_configure_flags): New. Set
1601 to --enable-host-shared When bfd is to be built as shared
1602 library. AC_SUBST.
1603 * Makefile.in: Regenerated.
1604
1605 2015-04-15 Mike Frysinger <vapier@gentoo.org>
1606 Hans-Peter Nilsson <hp@axis.com>
1607
1608 Adjust src-release.sh for sim using the gdb create-version.sh.
1609 * src-release.sh (tar_compress): If there's a fifth parameter,
1610 use that in the getver call instead of $tool.
1611 (sim_release): Pass gdb as fifth parameter to tar_compress.
1612 (SIM_SUPPORT_DIRS): Add gdb/common/create-version.sh.
1613
1614 2015-04-14 Max Ostapenko <m.ostapenko@partner.samsung.com>
1615
1616 * Makefile.tpl (EXTRA_HOST_EXPORTS): New variables.
1617 (EXTRA_BOOTSTRAP_FLAGS): Likewise.
1618 (check-[+module+]): Add EXTRA_HOST_EXPORTS and EXTRA_BOOTSTRAP_FLAGS.
1619 * Makefile.in: Regenerate.
1620
1621 2015-04-01 H.J. Lu <hongjiu.lu@intel.com>
1622
1623 * configure.ac: Add --with-system-zlib.
1624 * configure: Regenerated.
1625
1626 2015-03-31 H.J. Lu <hongjiu.lu@intel.com>
1627
1628 * src-release.sh: Don't configure with --with-target-subdir=.
1629 --disable-multilib.
1630
1631 2015-03-31 H.J. Lu <hongjiu.lu@intel.com>
1632
1633 * src-release.sh (DEVO_SUPPORT): Replace src-release with
1634 src-release.sh.
1635
1636 2015-03-30 Ed Schouten <ed@nuxi.nl>
1637
1638 * config.sub: Update from upstream, to 2015-03-04 version.
1639 * config.guess: Likewise.
1640
1641 2015-03-30 H.J. Lu <hongjiu.lu@intel.com>
1642
1643 * Makefile.def (dependencies): Add all-zlib to all-bfd.
1644 * Makefile.in: Regenerated.
1645
1646 2015-03-28 H.J. Lu <hongjiu.lu@intel.com>
1647
1648 * src-release.sh (do_proto_toplev): Configure with --target
1649 --with-target-subdir and --disable-multilib.
1650 (BINUTILS_SUPPORT_DIRS): Add zlib.
1651 (GAS_SUPPORT_DIRS): Likewise.
1652 (GDB_SUPPORT_DIRS): Likewise.
1653 (SIM_SUPPORT_DIRS): Likewise.
1654
1655 2015-03-17 H.J. Lu <hongjiu.lu@intel.com>
1656
1657 * configure.ac (target_configdirs): Exclude target-zlib if
1658 target-libjava isn't built.
1659 * configure: Regenerated.
1660
1661 2015-03-17 H.J. Lu <hongjiu.lu@intel.com>
1662
1663 Sync with GCC
1664 2014-06-13 Thomas Schwinge <thomas@codesourcery.com>
1665
1666 * config-ml.in: Robustify ac_configure_args parsing.
1667
1668 2015-03-16 H.J. Lu <hongjiu.lu@intel.com>
1669
1670 * Makefile.def: Updated from GCC trunk.
1671 * Makefile.tpl: Likewise.
1672 * configure.ac: Likewise.
1673 * Makefile.in: Regenerated.
1674 * configure: Likewise.
1675
1676 2015-01-28 James Bowman <james.bowman@ftdichip.com>
1677
1678 * configure.ac: Add FT32 support.
1679 * configure: Regenerate.
1680
1681 2015-01-12 Anthony Green <green@moxielogic.com>
1682
1683 * configure.ac: Don't disable gprof for moxie.
1684 * configure: Rebuild.
1685
1686 2015-01-03 Andrew Pinski <apinski@cavium.com>
1687
1688 * Makefile.def (flags_to_pass): Pass OBJCOPY_FOR_TARGET also.
1689 * Makefile.tpl (HOST_EXPORTS): Add OBJCOPY_FOR_TARGET.
1690 (BASE_TARGET_EXPORTS): Add OBJCOPY.
1691 (OBJCOPY_FOR_TARGET): New variable.
1692 (EXTRA_TARGET_FLAGS): Add OBJCOPY.
1693 * Makefile.in: Regenerate.
1694 * configure.ac: Check for already installed target objcopy.
1695 Also GCC_TARGET_TOOL on objcopy.
1696 * configure: Regenerate.
1697
1698 2015-01-02 Hans-Peter Nilsson <hp@bitrange.com>
1699
1700 * config.sub: Update from upstream, to 2015-01-01 version.
1701 * config.guess: Ditto.
1702
1703 2014-12-06 Eric Botcazou <ebotcazou@adacore.com>
1704
1705 * config.sub: Update from upstream config repo.
1706
1707 2014-11-24 H.J. Lu <hongjiu.lu@intel.com>
1708
1709 * libtool.m4: Updated from GCC trunk.
1710
1711 2014-11-16 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1712
1713 * config.guess: Update from upstream config repo.
1714 * config.sub: Ditto.
1715
1716 2014-11-16 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1717
1718 * move-if-change: Update from upstream gnulib.
1719
1720 2014-11-16 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1721
1722 * compile: Sync with upstream Automake.
1723 * depcomp: Ditto.
1724 * install-sh: Ditto.
1725 * missing: Ditto.
1726 * mkinstalldirs: Ditto.
1727 * ylwrap: Ditto.
1728
1729 2014-10-15 Tristan Gingold <gingold@adacore.com>
1730
1731 * src-release.sh (do_proto_toplev): Configure with --target.
1732
1733 2014-10-03 Jing Yu <jingyu@google.com>
1734
1735 * configure.ac: Add aarch64 to list of targets that support gold.
1736 * configure: Regenerate.
1737
1738 2014-09-12 Andrew Bennett <andrew.bennett@imgtec.com>
1739
1740 * configure.ac: Add mips*-img-elf* target triple.
1741 * configure: Regenerate.
1742
1743 2014-09-06 Kuan-Lin Chen <kuanlinchentw@gmail.com>
1744 * configure: Disable gdb for nds32*-*-* until supported.
1745 * configure.ac: Disable gdb for nds32*-*-* until supported.
1746
1747 2014-09-05 Joel Brobecker <brobecker@adacore.com>
1748
1749 * configure: Regenerate.
1750
1751 2014-08-27 Will Newton <will.newton@linaro.org>
1752
1753 * src-release.sh: New file.
1754 * src-release: Remove file.
1755
1756 2014-07-27 Joel Sherrill <joel.sherrill@oarcorp.com>
1757
1758 GDB not supported for or1k*-*-rtems*
1759 * configure.ac (or1k*-*-rtems*): gdb not supported. The ordering
1760 of the stanzas results in this not being caught by or1k*-*-* later.
1761 * configure. Regenerated.
1762
1763 2014-07-25 Samuel Bronson <naesten@gmail.com>
1764
1765 * .gitattributes: New file for use with git-merge-changelog.
1766
1767 2014-07-21 Joel Sherrill <joel.sherrill@oarcorp.com>
1768
1769 Disable gdb for or1k*-*-* until supported
1770 * configure.ac (or1k*-*-*): Disable gdb.
1771 * configure: Regenerated.
1772
1773 2014-05-14 Sandra Loosemore <sandra@codesourcery.com>
1774
1775 * configure.ac (target_makefile_frag): Set for nios2-*-elf*.
1776 * configure: Regenerated.
1777
1778 2014-03-26 Jakub Jelinek <jakub@redhat.com>
1779
1780 PR sanitizer/56781
1781 * Makefile.def: Set bootstrap=true; for host fixincludes.
1782 * configure.ac: Don't bootstrap host fixincludes unless
1783 --with-build-config=bootstrap-{a,ub}san.
1784 * Makefile.in: Regenerated.
1785 * configure: Regenerated.
1786
1787 2014-03-21 Jakub Jelinek <jakub@redhat.com>
1788
1789 * configure.ac: Move BUILD_CONFIG set up earlier. Add
1790 --enable-vtable-verify option parsing. Don't add
1791 target-libsanitizer to bootstrap_target_libs unless
1792 --with-build-config=bootstrap-asan or
1793 --with-build-config=bootstrap-ubsan. Don't add target-libvtv
1794 to bootstrap_target_libs unless --enable-vtable-verify.
1795 * configure: Regenerated.
1796
1797 2014-03-07 Jakub Jelinek <jakub@redhat.com>
1798
1799 PR bootstrap/58572
1800 * Makefile.tpl (POSTSTAGE1_CXX_EXPORT): Use -isystem instead of
1801 -I for libstdc++-v3 includes if $(LEAN).
1802 * Makefile.in: Regenerated.
1803
1804 2014-02-24 Walter Lee <walt@tilera.com>
1805
1806 * configure.ac (tilepro-*-*) Change to tilepro*-*-*.
1807 (tilegx-*-*): Change to tilegx*-*-*.
1808 * configure: Regenerate.
1809
1810 2014-05-01 Richard Sandiford <rdsandiford@googlemail.com>
1811
1812 * config.sub, config.guess: Import from upstream.
1813
1814 2014-04-04 Eric Botcazou <ebotcazou@adacore.com>
1815
1816 PR bootstrap/60620
1817 * Makefile.def (dependencies): Make gnattools depend on libstdc++-v3.
1818 * Makefile.in: Regenerate.
1819
1820 2014-03-28 Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
1821
1822 * Makefile.def (dependencies): Make all-ld depend on all-binutils
1823 for WINDRES_FOR_TARGET in default-manifest.o rule.
1824 * Makefile.in: Regenerate.
1825
1826 2014-02-04 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
1827
1828 PR target/59788
1829 * ltmain.sh (opt_duplicate_compiler_generated_deps): Enable on
1830 *solaris2*.
1831
1832 2013-12-19 Keven Boell <keven.boell@intel.com>
1833
1834 * cp-namespace.c (cp_lookup_nested_symbol): Enable
1835 nested lookups for fortran modules.
1836 * dwarf2read.c (read_module): Add fortran module to
1837 the symbol table.
1838 (add_partial_symbol, add_partial_module): Add fortran
1839 module to the partial symbol table.
1840 (new_symbol_full): Create full symbol for fortran module.
1841 * f-exp.y (yylex): Add new module domain to be parsed.
1842 * symtab.h: New domain for fortran modules.
1843
1844 2013-12-19 Keven Boell <keven.boell@intel.com>
1845
1846 * f-exp.y (yylex): Add domain array to enable lookup
1847 in multiple domains. Loop over lookup domains and try
1848 to find requested symbol. Add STRUCT_DOMAIN to lookup
1849 domains to be able to query for user defined types.
1850
1851 2013-12-13 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
1852
1853 * configure.ac: Add user-friendly check for native x86_64-linux
1854 multilibs.
1855 * configure: Regenerate.
1856
1857 2013-11-23 Alan Modra <amodra@gmail.com>
1858
1859 * config.sub, config.guess: Import from upstream.
1860
1861 2013-11-07 Thomas Schwinge <thomas@codesourcery.com>
1862
1863 * Makefile.in: Regenerate.
1864
1865 * Makefile.tpl: Fix typo.
1866 * Makefile.in: Regenerate partially.
1867
1868 2013-11-04 Balaji V. Iyer <balaji.v.iyer@intel.com>
1869
1870 * configure.ac: Added libcilkrts to noconfig list when C++ is not
1871 supported.
1872 * configure: Regenerated.
1873
1874 2013-10-30 Jason Merrill <jason@redhat.com>
1875
1876 * Makefile.tpl (STAGE1_CONFIGURE_FLAGS): Pass
1877 --disable-build-format-warnings.
1878
1879 2013-10-29 Balaji V. Iyer <balaji.v.iyer@intel.com>
1880
1881 * Makefile.def: Add libcilkrts to target_modules. Make libcilkrts
1882 depend on libstdc++ and libgcc.
1883 * configure: Regenerate.
1884 * configure.ac: Added libcilkrts to target binaries. Also, restrict
1885 libcilkrts for POSIX and i*86, and x86_64 architectures.
1886 * Makefile.in: Added libcilkrts related fields to support building it.
1887
1888 2013-10-26 Jeff Law <law@redhat.com>
1889
1890 * Makefile.def (target_modules): Remove libmudflap
1891 (languages): Remove check-target-libmudflap).
1892 * Makefile.in: Rebuilt.
1893 * Makefile.tpl (check-target-libmudflap-c++): Remove.
1894 * configure.ac (target_libraries): Remove target-libmudflap.
1895 Remove checks which disabled libmudflap on some systems.
1896 * configure: Rebuilt.
1897 * libmudflap: Directory removed.
1898
1899 2013-10-16 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1900
1901 * configure.ac: Update from GCC.
1902 * configure: Regenerate.
1903
1904 2013-10-15 Hans-Peter Nilsson <hp@axis.com>
1905
1906 * src-release (do-proto-toplevel): Support subdir-path-prefixed
1907 files in SUPPORT_FILES.
1908 (SIM_SUPPORT_DIRS): New variable.
1909 (sim.tar.bz2): New rule.
1910
1911 2013-10-08 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1912
1913 * configure.ac: Update from GCC.
1914 * configure: Regenerate.
1915
1916 2013-10-01 Jeff Johnston <jjohnstn@redhat.com>
1917
1918 * COPYING.NEWLIB: Update with new copyright.
1919
1920 2013-09-21 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1921
1922 * configure.ac: Update from GCC.
1923 * configure: Regenerate.
1924
1925 2013-09-20 Alan Modra <amodra@gmail.com>
1926
1927 * libtool.m4 (_LT_ENABLE_LOCK <ld -m flags>): Remove non-canonical
1928 ppc host match. Support little-endian powerpc linux hosts.
1929
1930 2013-08-16 Joel Brobecker <brobecker@adacore.com>
1931
1932 * src-release (VER): When using $(TOOL)/common/create-version.sh,
1933 strip the "-cvs" suffix from the version number if present.
1934
1935 2013-08-12 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1936
1937 * configure.ac: Sync with GCC repo.
1938 * Makefile.def: Ditto.
1939 * configure: Regenerate.
1940 * Makefile.in: Ditto.
1941
1942 2013-07-22 Joel Brobecker <brobecker@adacore.com>
1943
1944 * src-release (VER): Use $(TOOL)/common/create-version.sh
1945 if it exists.
1946
1947 2013-06-22 Richard Sandiford <rdsandiford@googlemail.com>
1948
1949 * configure.ac (mips*-*-bsd*, mips*-*-ultrix*, mips*-*-osf*)
1950 (mips*-*-ecoff*, mips*-*-pe*, mips*-*-irix* [v4 and earlier])
1951 (mips*-*-lnews*, mips*-*-riscos*): Add gas and ld to noconfigdirs.
1952 * configure: Regenerate.
1953
1954 2013-06-01 George Thomas <george.thomas@atmel.com>
1955
1956 * include/opcode/avr.h: Rename AVR_ISA_XCH to AVR_ISA_RMW. Remove
1957 from AVR_ISA_XMEGA and add new AVR_ISA_XMEGAU
1958
1959 2013-05-06 Sandra Loosemore <sandra@codesourcery.com>
1960
1961 * COPYING.NEWLIB: Add Altera Corporation copyright.
1962
1963 2013-04-29 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1964
1965 * config.guess: Update from config repo.
1966 * config.sub: Ditto.
1967
1968 2013-04-22 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1969
1970 * Makefile.def: Sync with GCC.
1971 * Makefile.in: Regenerate.
1972
1973 2013-04-22 Jan-Benedict Glaw <jbglaw@lug-owl.de>
1974
1975 * configure.ac: Sync with GCC.
1976 * configure: Regenerate.
1977
1978 2013-03-22 Mike Frysinger <vapier@gentoo.org>
1979
1980 * src-release (VER): Change bfd/configure.in sed to use the new
1981 `bfd/configure --version` output.
1982
1983 2013-02-15 Yufeng Zhang <yufeng.zhang@arm.com>
1984
1985 * configure.ac: Sync with GCC repo.
1986 * configure: Ditto.
1987
1988 2013-02-05 Ian Lance Taylor <iant@google.com>
1989
1990 PR go/55969
1991 * configure.ac: Disable libgo on some systems where it does not
1992 work.
1993 * configure: Rebuild.
1994
1995 2013-02-05 Alan Modra <amodra@gmail.com>
1996
1997 * configure: Regenerate after syncing config/.
1998
1999 2013-01-15 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2000
2001 * configure.ac: Sync with GCC repo.
2002 * configure: Ditto.
2003 * Makefile.def: Ditto.
2004 * Makefile.in: Ditto.
2005
2006 2013-01-11 Joel Brobecker <brobecker@adacore.com>
2007
2008 Sync with GCC, merge:
2009
2010 2013-01-09 Jason Merrill <jason@redhat.com>
2011
2012 * .gitignore: Import from gdb repository.
2013
2014 2013-01-11 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2015
2016 * config.sub: Update from config repo.
2017
2018 2013-01-11 Eric Botcazou <ebotcazou@adacore.com>
2019
2020 * Makefile.tpl (BOOT_ADAFLAGS): Remove -gnata.
2021 * Makefile.in: Regenerate.
2022
2023 2013-01-09 H.J. Lu <hongjiu.lu@intel.com>
2024
2025 * Makefile.def (configure-gcc): Depend on all-gmp.
2026 (all-gcc): Remove dependency on all-gmp.
2027 * Makefile.in: Regenerated.
2028
2029 2013-01-08 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2030
2031 * config.guess: Update from config repo.
2032 * config.sub: Ditto.
2033
2034 2013-01-07 Jeff Johnston <jjohnstn@redhat.com>
2035
2036 * COPYING.LIBGLOSS: Remove license for mips/lsi33k-stub.h which no longer
2037 exists and replace the new bfin license in its location.
2038
2039 2013-01-07 H.J. Lu <hongjiu.lu@intel.com>
2040
2041 PR gas/14899
2042 * Makefile.def (dependencies): Make all-binutils, all-gprof,
2043 all-ld and all-gold depend on all-gas.
2044 * Makefile.in: Regenerated.
2045
2046 2012-12-29 Ben Elliston <bje@gnu.org>
2047
2048 * config.guess: Update to 2012-12-29 version.
2049 * config.sub: Likewise.
2050
2051 2012-12-20 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2052
2053 * Makefile.def (install-target-libgo): Depend on
2054 install-target-libatomic. Merged from GCC repo.
2055 * Makefile.in: Regenerate.
2056
2057 2012-12-17 Jeff Johnston <jjohnstn@redhat.com>
2058
2059 * COPYING.LIBGLOSS: Add license for bfin libgloss.
2060
2061 2012-12-16 Thomas Schwinge <thomas@codesourcery.com>
2062
2063 * configure.ac (ENABLE_GOLD): Consider *-*-gnu* targets ELF.
2064 * configure: Regenerate.
2065
2066 2012-12-11 H.J. Lu <hongjiu.lu@intel.com>
2067
2068 * Makefile.def (target_modules): Add bootstrap=true and
2069 raw_cxx=true to libsanitizer.
2070 * configure.ac (bootstrap_target_libs): Add libsanitizer.
2071 * Makefile.in: Regenerated.
2072 * configure: Likewise.
2073
2074 2012-12-08 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2075
2076 * config.sub: Merge from config repo.
2077
2078 2012-11-30 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2079
2080 * configure.ac: Merge from GCC.
2081 * Makefile.tpl: Ditto.
2082 * Makefile.in: Ditto.
2083 * configure: Ditto.
2084
2085 2012-11-28 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2086
2087 * configure.ac (noconfigdirs): Merge from GCC.
2088 * configure: Regenerate.
2089
2090 2012-11-19 Jan-Benedict Glaw <jbglaw@lug-owl.de>
2091
2092 * config.sub (arm): Merge from upstream: Handle armv[6-8] targets.
2093
2094 2012-11-14 Roland McGrath <mcgrathr@google.com>
2095
2096 * configure.ac (ENABLE_GOLD): Consider *-*-nacl* targets ELF.
2097 * configure: Regenerate.
2098
2099 2012-11-13 Richard Henderson <rth@redhat.com>
2100
2101 * configure.ac: Move libsanitizer logic to subdirectory.
2102 * configure: Regenerate.
2103
2104 2012-11-13 Dodji Seketeli <dodji@redhat.com>
2105
2106 * configure.ac: Enable libsanitizer just on x86 linux for now.
2107 * configure: Re-generate.
2108
2109 2012-11-13 David Edelsohn <dje.gcc@gmail.com>
2110
2111 * configure.ac: Merge libquadmath sections.
2112 * configure: Regenerate.
2113
2114 2012-11-12 Wei Mi <wmi@google.com>
2115
2116 * configure.ac: Add libsanitizer to target_libraries.
2117 * Makefile.def: Ditto.
2118 * configure: Regenerate.
2119 * Makefile.in: Regenerate.
2120
2121 2012-11-03 H.J. Lu <hongjiu.lu@intel.com>
2122
2123 * configure: Regenerated.
2124
2125 2012-11-03 Robert Mason <rbmj@verizon.net>
2126
2127 * configure.ac: add --disable-libstdcxx configure option
2128 and handle defaulted state only for VxWorks, ARM-wince-pe and AVR.
2129
2130 2012-10-24 Corinna Vinschen <corinna@vinschen.de>
2131
2132 * configure.ac (FLAGS_FOR_TARGET,target=cygwin): Fix for building
2133 against Mingw64 w32api.
2134 * configure: Regenerate.
2135
2136 2012-10-23 Eric Botcazou <ebotcazou@adacore.com>
2137
2138 PR bootstrap/54820
2139 * configure.ac (have_static_libs): Force 'no' for GCC version < 4.5.
2140 * configure: Regenerate.
2141
2142 2012-10-22 Eric Botcazou <ebotcazou@adacore.com>
2143
2144 PR bootstrap/54820
2145 * Makefile.tpl (STAGE1_FLAGS_TO_PASS): New variable.
2146 (all-[+prefix+][+module+]): Pass stage1_args to sub-makes.
2147 (all-stage[+id+]-[+prefix+][+module+]): Likewise, if prev is false.
2148 (clean-stage[+id+]-[+prefix+][+module+]): Likewise, if prev is false.
2149 (host_modules): Set stage1_args to STAGE1_FLAGS_TO_PASS.
2150 * Makefile.in: Regenerate.
2151 * configure.ac (have_static_libs): New variable and associated check.
2152 (stage1-ldflags): Move to after stage1_libs and set to -static-libstdc++
2153 -static-libgcc if stage1_libs is empty and have_static_libs is yes.
2154 * configure: Regenerate.
2155
2156 2012-10-10 David Holsgrove <david.holsgrove@xilinx.com>
2157
2158 * config.guess, config.sub: Include updated version from
2159 config-patches. Adds microblaze little endian support.
2160
2161 2012-09-28 Ian Lance Taylor <iant@google.com>
2162
2163 * Makefile.def: Make all-target-libgo depend on
2164 all-target-libbacktrace.
2165 * Makefile.in: Rebuild.
2166
2167 2012-09-26 Ian Lance Taylor <iant@google.com>
2168
2169 * Makefile.def: Make all-gcc depend on all-libbacktrace.
2170 * Makefile.in: Rebuild.
2171
2172 2012-09-06 Diego Novillo <dnovillo@google.com>
2173
2174 * configure.ac: Bump minimum GMP version to 4.2.3.
2175 * configure: Re-generate.
2176
2177 2012-09-05 Georg-Johann Lay <avr@gjlay.de>
2178
2179 PR target/54461
2180 * configure.ac (noconfigdirs,target=avr-*-*): Add target-newlib,
2181 target-libgloss if not configured --with-avrlibc=no.
2182 * configure: Regenerate.
2183
2184 2012-09-04 Jason Merrill <jason@redhat.com>
2185
2186 * configure.ac: Fix --enable-languages=all.
2187
2188 2012-09-03 Richard Guenther <rguenther@suse.de>
2189
2190 PR bootstrap/54138
2191 * configure.ac: Re-organize ISL / CLOOG checks to allow
2192 disabling with either --without-isl or --without-cloog.
2193 * configure: Regenerated.
2194
2195 2012-09-03 Georg-Johann Lay <avr@gjlay.de>
2196
2197 * configure.ac (noconfigdirs,target=avr): Add target-libquadmath.
2198 * configure: Regenerate.
2199
2200 2012-09-21 Steve Ellcey <sellcey@mips.com>
2201
2202 * configure.ac: Add mips*-mti-elf* target.
2203 * configure: Regenerate.
2204
2205 2012-09-19 Ian Lance Taylor <iant@google.com>
2206
2207 * configure.ac (host_libs): Add libbacktrace.
2208 (target_libraries): Add libbacktrace.
2209 * Makefile.def (host_modules): Add libbacktrace.
2210 (target_modules): Likewise.
2211 * configure, Makefile.in: Rebuild.
2212
2213 2012-09-15 Jiong Wang <jiwang@tilera.com>
2214
2215 * configure.ac (ENABLE_GOLD): support tilegx*
2216 * configure: rebuild
2217
2218 2012-09-14 David Edelsohn <dje.gcc@gmail.com>
2219
2220 PR target/38607
2221 Merge upstream change.
2222 * libtool.m4 (_LT_COMPILER_PIC): Add -fPIC to GCC and GXX for AIX.
2223
2224 * configure.ac: Add target-libquadmath to noconfigdirs for AIX.
2225 Add libgomp*.o to compare_exclusions for AIX.
2226 * configure: Regenerate.
2227
2228 2012-08-26 H.J. Lu <hongjiu.lu@intel.com>
2229
2230 PR binutils/4970
2231 * Makefile.def (host_modules): Rmove lib_path=.libs from bfd
2232 and opcodes.
2233 * Makefile.in: Regenerated.
2234
2235 2012-08-14 Diego Novillo <dnovillo@google.com>
2236
2237 Merge from cxx-conversion branch.
2238
2239 * Makefile.tpl (STAGE[+id+]_CXXFLAGS): Remove
2240 POSTSTAGE1_CONFIGURE_FLAGS.
2241 * Makefile.in: Regenerate.
2242 * configure.ac (ENABLE_BUILD_WITH_CXX): Remove. Update all users.
2243 Force C++ when bootstrapping.
2244 * configure: Regenerate.
2245
2246 2012-07-06 Richard Guenther <rguenther@suse.de>
2247
2248 * Makefile.def (cloog): Pass $(HOST_GMPINC) and $(HOST_ISLINC)
2249 as CPPFLAGS, pass path to built gmp as LDFLAGS, always use
2250 --with-gmp=system.
2251 * Makefile.in: Regenerated.
2252 * configure: Likewise.
2253
2254 2012-07-06 Richard Guenther <rguenther@suse.de>
2255
2256 * configure.ac (extra_isl_gmp_configure_flags): Initialize and subst.
2257 * Makefile.def (isl): Use extra_isl_gmp_configure_flags and
2258 supply V=1 as extra_make_flags.
2259 * configure: Regenerated.
2260 * Makefile.in: Likewise.
2261
2262 2012-07-03 Richard Guenther <rguenther@suse.de>
2263
2264 * Makfile.def (isl): Remove not necessary extra_exports and
2265 extra_make_flags.
2266 (cloog): Use $$CPPFLAGS instead of ${CPPFLAGS}.
2267 * Makefile.in: Regenerated.
2268
2269 2012-07-03 Richard Guenther <rguenther@suse.de>
2270
2271 * Makefile.def (cloog): Add V=1 to extra_make_flags.
2272 * configure.ac: If either the ISL or the CLooG check failed
2273 do not try to build in-tree versions.
2274 * Makefile.in: Regenerated.
2275 * configure: Regenerated.
2276
2277 2012-07-02 Richard Guenther <rguenther@suse.de>
2278 Michael Matz <matz@suse.de>
2279 Tobias Grosser <tobias@grosser.es>
2280 Sebastian Pop <sebpop@gmail.com>
2281
2282 * Makefile.def: Add ISL host module, remove PPL host module.
2283 Adjust ClooG host module to use the proper ISL.
2284 * Makefile.tpl: Pass ISL include flags instead of PPL ones.
2285 * configure.ac: Include config/isl.m4. Add ISL host library,
2286 remove PPL. Remove PPL configury, add ISL configury, adjust
2287 ClooG configury.
2288 * Makefile.in: Regenerated.
2289 * configure: Likewise.
2290
2291 2012-07-02 Richard Guenther <rguenther@suse.de>
2292
2293 Merge from graphite branch
2294 2011-07-21 Tobias Grosser <tobias@grosser.es>
2295
2296 * configure: Regenerated.
2297 * config/cloog.m4: Remove support for CLooG-ppl and CLooG-parma,
2298 both cloog.org and legacy versions. The only supported version will
2299 be CLooG with the isl backend.
2300
2301 2011-07-21 Tobias Grosser <tobias@grosser.es>
2302
2303 * configure: Regenerated.
2304 * configure.ac: Require cloog isl 0.17.0
2305
2306 2011-07-21 Tobias Grosser <tobias@grosser.es>
2307
2308 * configure: Regenerated.
2309 * config/cloog.m4: Do not define CLOOG_ORG
2310
2311 2012-06-29 Steven Bosscher <steven@gcc.gnu.org>
2312
2313 * configure.ac: Skip C if explicitly selected.
2314 * configure: Regenerate.
2315
2316 2012-06-28 Christophe Lyon <christophe.lyon@st.com>
2317
2318 * configure.ac (CFLAGS_FOR_TARGET, CXXFLAGS_FOR_TARGET): Make sure
2319 they contain -O2.
2320 * configure: Regenerate.
2321
2322 2012-06-20 Jason Merrill <jason@redhat.com>
2323
2324 * Makefile.tpl (check-target-libgomp-c++): New.
2325 (check-target-libitm-c++): New.
2326 * Makefile.def (c++): Add them.
2327 * Makefile.in: Regenerate.
2328
2329 2012-05-16 Olivier Hainque <hainque@adacore.com>
2330
2331 * Makefile.tpl (gcc-no-fixedincludes): Rename into ...
2332 (gcc-install-no-fixedincludes): Now forwarder to local target in gcc/
2333 (install-no-fixedincludes): Adjust accordingly.
2334 * Makefile.in: Regenerate.
2335
2336 2012-05-09 Nick Clifton <nickc@redhat.com>
2337 Paul Smith <psmith@gnu.org>
2338
2339 PR bootstrap/50461
2340 * configure.ac (mpfr-dir): When using in-tree MPFR sources
2341 allow for the fact that from release v3.1.0 of MPFR the source
2342 files were moved into a src sub-directory.
2343 * configure: Regenerate.
2344
2345 2012-05-07 Janne Blomqvist <jb@gcc.gnu.org>
2346
2347 * configure.ac: Bump minimum MPFR version to 2.4.0.
2348 * configure: Regenerated.
2349
2350 2012-05-01 Richard Henderson <rth@redhat.com>
2351
2352 * Makefile.def (libatomic): New target_module.
2353 * configure.ac (target_libraries): Add libatomic.
2354 (noconfigdirs): Check if libatomic is supported.
2355 * Makefile.in, configure: Rebuild.
2356
2357 2012-05-15 H.J. Lu <hongjiu.lu@intel.com>
2358
2359 Merge upstream change
2360 * libtool.m4 (_LT_ENABLE_LOCK): Support x32.
2361
2362 2011-11-21 Andreas Tobler <andreast@fgznet.ch>
2363
2364 * libtool.m4: Additional FreeBSD 10 fixes.
2365
2366 2012-06-28 Christophe Lyon <christophe.lyon@st.com>
2367
2368 * configure.ac (CFLAGS_FOR_TARGET, CXXFLAGS_FOR_TARGET): Make sure
2369 they contain -O2.
2370 * configure: Regenerate.
2371
2372 2012-05-14 Catherine Moore <clm@codesourcery.com>
2373
2374 * NEWS: Mention PowerPC VLE port.
2375
2376 2012-05-11 Mike Frysinger <vapier@gentoo.org>
2377
2378 * MAINTAINERS (config/): Move to intl/ section.
2379 (compile; depcomp; install-sh; missing; ylwrap): Likewise.
2380
2381 2012-05-09 Nick Clifton <nickc@redhat.com>
2382 Paul Smith <psmith@gnu.org>
2383
2384 PR bootstrap/50461
2385 * configure.ac (mpfr-dir): When using in-tree MPFR sources
2386 allow for the fact that from release v3.1.0 of MPFR the source
2387 files were moved into a src sub-directory.
2388 * configure: Regenerate.
2389
2390 2012-05-02 Roland McGrath <mcgrathr@google.com>
2391
2392 * configure.ac (ENABLE_GOLD): Consider *-*-nacl* targets ELF.
2393 * configure: Regenerate.
2394
2395 2012-04-25 Joel Brobecker <brobecker@adacore.com>
2396
2397 * config.sub: Update to 2012-04-18 version from official repo.
2398
2399 2012-03-19 Tristan Gingold <gingold@adacore.com>
2400
2401 * configure.ac (ia64*-*-*vms*): Add support for ld.
2402 * configure: Regenerate.
2403
2404 2012-03-14 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2405
2406 * configure.ac (enable_libgomp): Remove *-*-irix6*.
2407 (unsupported_languages): Remove mips-sgi-irix6.*.
2408 (noconfigdirs): Don't add ${libgcj} for mips*-*-irix6*.
2409 (with_stabs): Remove.
2410 * configure: Regenerate.
2411
2412 2012-03-12 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2413
2414 * configure.ac (enable_libgomp): Remove *-*-osf*.
2415 (with_stabs): Remove alpha*-*-osf*.
2416 * configure: Regenerate.
2417
2418 2012-03-09 Jeff Johnston <jjohnstn@redhat.com>
2419
2420 * COPYING.NEWLIB: Modify DJ Delorie license to include
2421 modification rights in clause as permitted by DJ Delorie.
2422 * COPYING.LIBGLOSS: Ditto.
2423
2424 2012-03-09 Jeff Johnston <jjohnstn@redhat.com>
2425
2426 * COPYING.NEWLIB: Remove two unused licenses.
2427
2428 2012-03-05 Tristan Gingold <gingold@adacore.com>
2429
2430 * configure.ac: Enable gdb and readline for ia64*-*-*vms*.
2431 * configure: Regenerate.
2432
2433 2012-02-21 Joern Rennecke <joern.rennecke@embecosm.com>
2434
2435 * COPYING.NEWLIB: Add Adapteva notice.
2436 * COPYING.LIBGLOSS: Add Adapteva notice.
2437
2438 2011-12-18 Eric Botcazou <ebotcazou@adacore.com>
2439
2440 * configure: Regenerate.
2441
2442 2011-12-15 Jeff Johnston <jjohnstn@redhat.com>
2443
2444 * COPYING.LIBGLOSS: Add GPL with exception license.
2445
2446 2011-11-09 Roland McGrath <mcgrathr@google.com>
2447
2448 * configure.ac: Add tool checks for READELF and READELF_FOR_TARGET.
2449 * configure: Rebuild.
2450 * Makefile.def (flags_to_pass): Add READELF_FOR_TARGET.
2451 * Makefile.tpl (READELF, READELF_FOR_TARGET): New variables.
2452 (HOST_EXPORTS): Add READELF, READELF_FOR_TARGET.
2453 (BASE_FLAGS_TO_PASS): Add READELF_FOR_TARGET.
2454 (BASE_TARGET_EXPORTS, EXTRA_HOST_FLAGS, EXTRA_TARGET_FLAGS):
2455 Add READELF.
2456 * Makefile.in: Rebuild.
2457
2458 2011-11-08 Richard Henderson <rth@redhat.com>
2459
2460 * configure.ac: Test for libitm directory present first.
2461
2462 * configure.ac: Adjust srcdir for running libitm/configure.tgt.
2463
2464 * configure.ac: Test libitm/configure.tgt to disable libitm.
2465 * configure: Rebuild.
2466
2467 2011-11-02 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2468
2469 * Makefile.tpl (EXTRA_GCC_FLAGS): Remove LIBGCC2_CFLAGS,
2470 LIBGCC2_DEBUG_CFLAGS, LIBGCC2_INCLUDES.
2471 * Makefile.in: Regenerate.
2472
2473 2011-11-01 DJ Delorie <dj@redhat.com>
2474
2475 * configure.ac (rl78-*-*) New case.
2476 * configure: Regenerate.
2477
2478 2011-11-01 DJ Delorie <dj@redhat.com>
2479
2480 * config.sub: Update to version 2011-10-29 (added rl78)
2481
2482 2011-10-27 Nick Clifton <nickc@redhat.com>
2483
2484 * config.sub: Import these changes from the config project:
2485
2486 2011-10-08 Joern Rennecke <joern.rennecke@embecosm.com>
2487 Ben Elliston <bje@gnu.org>
2488
2489 * config.sub (epiphany): New.
2490
2491 2011-09-09 Linas Vepstas <linasvepstas@gmail.com>
2492 Ben Elliston <bje@gnu.org>
2493
2494 * config.sub (hexagon, hexagon-*): New.
2495
2496 2011-08-23 Roland McGrath <mcgrathr@google.com>
2497
2498 * config.sub: Rename 32eb to be32, 32el to le32, 64el to le64, and
2499 64eb to be64.
2500
2501 2011-08-16 Roland McGrath <mcgrathr@google.com>
2502
2503 * config.sub (32eb, 32el, 64eb, 64el): New (pseudo-)CPUs.
2504 (nacl): Grok as alias for 32el-unknown-nacl.
2505
2506 2011-08-19 Joel Brobecker <brobecker@adacore.com>
2507
2508 * src-release (GDB_SUPPORT_DIRS): Add 'cpu'.
2509
2510 2011-08-14 Yao Qi <yao@codesourcery.com>
2511
2512 Merge from gcc:
2513
2514 2011-08-14 Yao Qi <yao@codesourcery.com>
2515 * configure.ac (tic6x-*-*): Remove gdb from noconfigdirs.
2516 * configure: Regenerate.
2517
2518 2011-07-26 Ian Lance Taylor <iant@google.com>
2519
2520 Merge from gcc:
2521
2522 2011-07-26 Ian Lance Taylor <iant@google.com>
2523 * configure.ac: Set have_compiler based on whether gcc directory
2524 exists, rather than on whether gcc is in configdirs.
2525 * configure: Rebuild.
2526
2527 2011-07-20 David Edelsohn <dje.gcc@gmail.com>
2528 * Makefile.tpl (POSTSTAGE1_CONFIGURE_FLAGS): Add libsupc++ to
2529 link directories.
2530 * Makefile.in: Rebuild.
2531
2532 2011-07-20 Ian Lance Taylor <iant@google.com>
2533 PR bootstrap/49787
2534 * configure.ac: Move --enable-bootstrap handling earlier in file.
2535 If --enable-bootstrap and either --enable-build-with-cxx or
2536 --enable-build-poststage1-with-cxx, enable C++ automatically.
2537 * configure: Rebuild.
2538
2539 2011-07-19 Ian Lance Taylor <iant@google.com>
2540 * configure.ac: Add --enable-build-poststage1-with-cxx. If set,
2541 make C++ a boot_language. Set and substitute
2542 POSTSTAGE1_CONFIGURE_FLAGS.
2543 * Makefile.tpl (POSTSTAGE1_CONFIGURE_FLAGS): New variable.
2544 (STAGE[+id+]_CONFIGURE_FLAGS): Add $(POSTSTAGE1_CONFIGURE_FLAGS).
2545 * configure, Makefile.in: Rebuild.
2546
2547 2011-07-16 Jason Merrill <jason@redhat.com>
2548 * Makefile.def (language=c++): Add check-c++0x and
2549 check-target-libmudflap-c++.
2550 * Makefile.tpl (check-target-libmudflap-c++): New.
2551 * Makefile.in: Regenerate.
2552
2553 2011-07-16 Matthias Klose <doko@ubuntu.com>
2554 * Makefile.tpl (EXTRA_CONFIGARGS_LIBJAVA): Define.
2555 * Makefile.def (target_modules/libjava): Pass
2556 $(EXTRA_CONFIGARGS_LIBJAVA).
2557 * configure.ac: Pass --disable-static in EXTRA_CONFIGARGS_LIBJAVA,
2558 if not configured with --enable-static-libjava.
2559 * Makefile.in: Regenerate.
2560 * configure: Likewise.
2561
2562 2011-06-22 Hans-Peter Nilsson <hp@axis.com>
2563 PR regression/47836
2564 PR bootstrap/23656
2565 PR other/47733
2566 PR bootstrap/49247
2567 PR c/48825
2568 * configure.ac (target_libraries): Remove target-libiberty.
2569 Remove case-statement setting skipdirs=target-libiberty for
2570 multiple targets. Remove checking target_configdirs and
2571 removing target-libiberty but keeping target-libgcc if
2572 otherwise empty.
2573 * Makefile.def (target_modules): Don't add libiberty.
2574 (dependencies): Remove all traces of target-libiberty.
2575 * configure, Makefile.in: Regenerate.
2576
2577 2011-07-22 Jason Merrill <jason@redhat.com>
2578
2579 * Makefile.def (language=c++): Add check-c++0x and
2580 check-target-libmudflap-c++.
2581 * Makefile.tpl (check-target-libmudflap-c++): New.
2582 * Makefile.in: Regenerate.
2583
2584 2011-07-18 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2585
2586 * configure: Regenerate.
2587
2588 2011-07-07 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2589
2590 PR target/39150
2591 * configure.ac (i[3456789]86-*-solaris2*): Also accept
2592 x86_64-*-solaris2.1[0-9]*.
2593 * configure: Regenerate.
2594
2595 2011-06-13 Walter Lee <walt@tilera.com>
2596
2597 * configure.ac (tilepro-*-*) New case.
2598 (tilegx-*-*): Likewise.
2599 * configure: Regenerate.
2600
2601 2011-06-06 Nick Clifton <nickc@redhat.com>
2602
2603 * config.sub: Sync from upstream.
2604
2605 2011-05-08 Doug Kwan <dougkwan@google.com>
2606
2607 Merge from gcc:
2608
2609 2011-05-08 Doug Kwan <dougkwan@google.com>
2610
2611 * configure.ac: Propagate LDFLAGS_FOR_TARGET.
2612 * configure: Regenerated.
2613 * Makefile.tpl (LDFLAGS_FOR_TARGET): Use LDFLAGS_FOR_TARGET
2614 value from configure.
2615 * Makefile.in: Regenerated.
2616
2617 2011-05-05 Joseph Myers <joseph@codesourcery.com>
2618
2619 * configure.ac (alpha*-dec-osf*, i[[3456789]]86-*-rdos*,
2620 sh*-*-pe|mips*-*-pe|arm-wince-pe, sparc-*-sunos4*, *-*-aix*,
2621 *-*-beos*, *-*-chorusos, *-*-dragonfly*, *-*-freebsd*, *-*-linux*
2622 | *-*-gnu* | *-*-k*bsd*-gnu | *-*-kopensolaris*-gnu, *-*-lynxos*,
2623 *-*-mingw*, *-*-netbsd*, *-*-netware*, *-*-tpf*, *-*-uclinux*,
2624 *-*-vxworks*): Disable newlib and libgloss in separate case
2625 statement.
2626 (i[[3456789]]86-*-linux*): Move logic allowing newlib to be built
2627 to separate case statement.
2628 (*-*-chorusos, *-*-dragonfly*, *-*-freebsd*, *-*-netbsd*,
2629 *-*-netware*, *-*-tpf*, *-*-uclinux*, *-*-vxworks*,
2630 alpha*-dec-osf*, alpha*-*-linux*, am33_2.0-*-linux*, sh-*-linux*,
2631 sh*-*-pe|mips*-*-pe|*arm-wince-pe, arm-*-coff, arm-*-elf* |
2632 arm*-*-eabi*, arm*-*-linux-gnueabi, arm*-*-symbianelf*, avr-*-*,
2633 bfin-*-*, cris-*-* | crisv32-*-*, frv-*-*, i[[3456789]]86-*-coff |
2634 i[[3456789]]86-*-elf, i[[3456789]]86-w64-mingw*,
2635 i[[3456789]]86-*-mingw*, x86_64-*-mingw*,
2636 i[[3456789]]86-*-interix*, i[[3456789]]86-*-beos*,
2637 i[[3456789]]86-*-rdos*, m32r-*-*,
2638 m68hc11-*-*|m6811-*-*|m68hc12-*-*|m6812-*-*, m68k-*-elf*, m68*-*-*
2639 | fido-*-*, powerpc-*-aix*, powerpc-*-beos*, powerpc-*-eabi,
2640 powerpc-*-eabi* | powerpcle-*-eabi* | powerpc-*-rtems*,
2641 rs6000-*-lynxos*, rs6000-*-aix*, mips*-*-linux*, sparclet-*-aout*
2642 | sparc86x-*-*, sparc-*-elf*, sparc64-*-elf*, sparclite-*-*,
2643 sparc-*-sunos4*, sparc-*-solaris* | sparc64-*-solaris* |
2644 sparcv9-*-solaris*, *-*-linux* | *-*-gnu* | *-*-k*bsd*-gnu |
2645 *-*-kopensolaris*-gnu, *-*-lynxos*, *-*-*): Don't disable newlib
2646 and libgloss in main case over targets. Remove most empty cases
2647 in main case over targets.
2648 * configure: Regenerate.
2649
2650 2011-05-04 Joseph Myers <joseph@codesourcery.com>
2651
2652 * configure.ac: Remove code setting special library locations for
2653 hppa*64*-*-hpux11*. Remove code setting compiler for
2654 sparc-sun-solaris2*.
2655 * configure: Regenerate.
2656
2657 2011-05-04 Joseph Myers <joseph@codesourcery.com>
2658
2659 * configure.ac: Separate libgloss_dir settings from general case
2660 over targets.
2661 * configure: Regenerate.
2662
2663 2011-04-28 Joseph Myers <joseph@codesourcery.com>
2664
2665 * configure.ac (*-*-dragonfly*, *-*-freebsd*, *-*-netbsd*,
2666 alpha*-dec-osf*, alpha*-*-linux*, alpha*-*-*, sh-*-linux*,
2667 arm-*-elf* | arm*-*-eabi*, arm*-*-linux-gnueabi, frv-*-*): Remove
2668 cases in libgcj-disabling case statement.
2669 (hppa*64*-*-linux*): Set unsupported_languages instead of
2670 disabling target-zlib.
2671 (hppa*64*-*-*): Restrict case in libgcj-disabling case statement
2672 to hppa*64*-*-hpux*.
2673 (hppa*-*-*): Restrict case in libgcj-disabling case statement to
2674 hppa*-*-hpux*.
2675 (ia64*-*-elf*, ia64*-**-hpux*, i[[3456789]]86-*-elf,
2676 i[[3456789]]86-*-linux*, *-*-cygwin*, i[[3456789]]86-*-interix*,
2677 i[[3456789]]86-*-solaris2*, m32r-*-*, m68k-*-elf*, m68*-*-* |
2678 fido-*-*, powerpc-*-eabi, powerpc-*-eabi* | powerpcle-*-eabi* |
2679 powerpc-*-rtems*, mips*-*-linux*, mips*-*-*, sh-*-* | sh64-*-*,
2680 sparc-*-elf*, sparc64-*-elf*, sparc-*-solaris* |
2681 sparc64-*-solaris* | sparcv9-*-solaris*, *-*-linux* | *-*-gnu* |
2682 *-*-k*bsd*-gnu | *-*-kopensolaris*-gnu, *-*-*): Remove cases in
2683 libgcj-disabling case statement.
2684 * configure: Regenerate.
2685
2686 2011-04-28 Joseph Myers <joseph@codesourcery.com>
2687
2688 * configure.ac: Disable Java for targets not supporting libffi.
2689 (*-*-chorusos, *-*-kaos*, am33_2.0-*-linux*, sh*-*-pe|mips*-*-pe):
2690 Remove cases in Java-disabling statement.
2691 (*arm-wince-pe): Change to arm-wince-pe.
2692 (arc-*-*, arm-*-coff, arm-*-pe*, arm-*-riscix*, avr-*-*): Remove
2693 cases in Java-disabling statement.
2694 (bfin-*-*): Don't disable Java again.
2695 (c4x-*-* | tic4x-*-*, tic54x-*-*, cr16-*-*, d10v-*-*, d30v-*-*,
2696 fr30-*-elf*, moxie-*-*, h8300*-*-*, h8500-*-*, hppa1.1-*-osf* |
2697 hppa1.1-*-bsd*, hppa*-*-*elf* | hppa*-*-lites* | hppa*-*-openbsd*,
2698 hppa*-*-pro*, i960-*-*, i[[3456789]]86-*-coff,
2699 i[[3456789]]86-*-pe, i[[3456789]]86-*-sco3.2v5*,
2700 i[[3456789]]86-*-sco*, i[[3456789]]86-*-sysv4*,
2701 i[[3456789]]86-*-beos*, i[[3456789]]86-*-rdos*,
2702 m68hc11-*-*|m6811-*-*|m68hc12-*-*|m6812-*-*): Remove cases in
2703 Java-disabling statement.
2704 (mmix-*-*): Don't disable Java again.
2705 (mt-*-*, powerpc*-*-winnt* | powerpc*-*-pe*, powerpcle-*-solaris*,
2706 powerpc-*-beos*, rs6000-*-lynxos*, rs6000-*-*, m68k-apollo-*,
2707 microblaze*, mips*-sde-elf*, mips*-*-irix5*, mips*-*-bsd*,
2708 sparclet-*-aout* | sparc86x-*-*, sparclite-*-*, sparc-*-sunos4*,
2709 tic6x-*-*, v810-*-*, vax-*-*): Remove cases in Java-disabling
2710 statement.
2711 * configure: Regenerate.
2712
2713 2011-04-28 Joseph Myers <joseph@codesourcery.com>
2714
2715 Merge from GCC:
2716
2717 2011-04-18 Jack Howarth <howarth@bromo.med.uc.edu>
2718
2719 PR lto/48086
2720 * configure.ac: Re-enable LTO on *-apple-darwin9*.
2721 * configure: Regenerate.
2722
2723 2011-04-28 Joseph Myers <joseph@codesourcery.com>
2724
2725 * configure.ac: Separate cases disabling Java and Java libraries
2726 from general case over targets.
2727 * configure: Regenerate.
2728
2729 2011-04-06 Joseph Myers <joseph@codesourcery.com>
2730
2731 * configure.ac (build_tools): Remove build-byacc.
2732 (host_libs): Remove mmalloc.
2733 (host_tools): Remove byacc make patch prms send-pr ash bash bzip2
2734 autoconf automake libtool diff rcs fileutils shellutils time
2735 textutils wdiff find uudecode hello tar gzip indent recode release
2736 sed perl gawk findutils gettext zip.
2737 (libgcj): Remove target-qthreads.
2738 (target_tools): Remove target-examples target-gperf.
2739 (YACC): Don't handle building byacc.
2740 * configure: Regenerate.
2741 * Makefile.def (ash, autoconf, automake, bash, byacc, bzip2, diff,
2742 dosutils, examples, fileutils, find, findutils, gawk, gettext,
2743 gnuserv, gperf, gzip, hello, indent, libtool, make, mmalloc,
2744 patch, perl, prms, qthreads, rcs, recode, release, sed, send-pr,
2745 shellutils, tar, textutils, time, uudecode, wdiff, zip): Don't
2746 handle building components.
2747 * Makefile.in: Regenerate.
2748
2749 2011-04-05 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
2750
2751 * config.sub: Sync from upstream.
2752
2753 2011-04-01 Joseph Myers <joseph@codesourcery.com>
2754
2755 * configure.ac (avr-*-*): Add comment about why libssp is disabled.
2756 (microblaze*): Don't disable libssp.
2757 * configure: Regenerate.
2758
2759 2011-04-01 Joseph Myers <joseph@codesourcery.com>
2760
2761 * configure.ac: Remove code setting CONFIG_SHELL, config_shell and
2762 moveifchange.
2763 * configure: Regenerate.
2764 * Makefile.tpl: Use @SHELL@ not @config_shell@.
2765 * Makefile.in: Regenerate.
2766
2767 2011-04-01 Joseph Myers <joseph@codesourcery.com>
2768
2769 * configure.ac (*-*-sysv4*): Don't enable libgomp.
2770 (alpha*-*-*vms*, i[[34567]]86-*-sco3.2v5*, mn10300-*-*,
2771 powerpc-*-chorusos*, powerpc*-*-eabi*, powerpc*-*-sysv*,
2772 powerpc*-*-kaos*, s390x-ibm-tpf*, sparc64-*-elf*, v850*-*-*,
2773 xtensa*-*-elf*, *-*-beos*, *-*-elf*, *-*-netware*, *-*-rtems*,
2774 *-*-sysv[[45]]*, *-*-vxworks*, *-wrs-windiss): Remove
2775 md_exec_prefix cases.
2776 * configure: Regenerate.
2777
2778 2011-04-01 Joseph Myers <joseph@codesourcery.com>
2779
2780 * configure.ac: Separate cases disabling target-libssp,
2781 target-libiberty, target-libstdc++-v3 and Fortran from general
2782 case over targets.
2783 * configure: Regenerate.
2784
2785 2011-04-01 Joseph Myers <joseph@codesourcery.com>
2786
2787 * configure.ac (*-*-chorusos): Don't disable libgcj.
2788 (*-*-freebsd[[12]] | *-*-freebsd[[12]].* | *-*-freebsd*aout*):
2789 Remove case.
2790 (*-*-kaos*): Don't disable GCC libraries, zlib or fastjar.
2791 (arm-*-coff): Don't disable libgcj.
2792 (arm*-*-linux-gnueabi): Remove useless assignment.
2793 (arm-*-riscix*): Don't disable libgcj.
2794 (bfin-*-*): Don't enable target-bsp and target-cygmon depending on
2795 configuration.
2796 (c4x-*-* | tic4x-*-*): Don't disable GCC libraries.
2797 (c54x*-*-*): Remove case.
2798 (tic54x-*-*): Don't disable GCC or GCC libraries.
2799 (cris-*-* | crisv32-*-*): Don't handle *-*-aout. Change *-*-elf
2800 to *.
2801 (d10v-*-*): Don't disable GCC libraries.
2802 (d30v-*-*): Don't disable libgcj.
2803 (h8500-*-*): Don't disable GCC libraries.
2804 (i960-*-*): Don't disable libgcj.
2805 (i[[3456789]]86-*-linux*): Don't handle *-*-*libc1*.
2806 (i[[3456789]]86-*-sco3.2v5*, i[[3456789]]86-*-sco*,
2807 i[[3456789]]86-*-sysv4*, i[[3456789]]86-*-beos*): Don't disable
2808 libgcj.
2809 (m68k-*-coff*): Remove case.
2810 (mmix-*-*): Don't disable libgloss on host.
2811 (mn10200-*-*, mn10300-*-*): Remove cases.
2812 (powerpc*-*-winnt* | powerpc*-*-pe*, powerpcle-*-solaris*,
2813 powerpc-*-beos*, m68k-apollo-*, mips*-*-irix5*, mips*-*-bsd*):
2814 Don't disable libgcj.
2815 (romp-*-*): Remove case.
2816 (sparclite-*-*, sparc-*-sunos4*): Don't disable libgcj.
2817 (sparc-*-solaris2.[[0-6]] | sparc-*-solaris2.[[0-6]].*): Remove
2818 case.
2819 (v810-*-*): Don't disable GCC libraries.
2820 (v850*-*-*, vax-*-vms, xtensa*-*-*): Remove cases.
2821 (ip2k-*-*): Don't disable GCC libraries.
2822 * configure: Regenerate.
2823
2824 2011-03-28 Joseph Myers <joseph@codesourcery.com>
2825
2826 * configure.ac (i[[3456789]]86-*-msdosdjgpp*): Don't disable
2827 libffi on host.
2828 (x86_64-*-mingw*, i[[3456789]]86-*-mingw32*): Don't disable newlib
2829 on host.
2830 (c54x*-*-* | tic54x-*-*): Don't disable newlib on host.
2831 * configure: Regenerate.
2832
2833 2011-03-26 John Marino <binutils@marino.st>
2834
2835 * configure.ac: Add support for *-*-dragonfly*
2836 * configure: Regenerate.
2837
2838 2011-03-25 Joseph Myers <joseph@codesourcery.com>
2839
2840 * configure.ac (native_only): Remove.
2841 (i[[3456789]]86-*-msdosdjgpp*): Don't disable expect dejagnu
2842 send-pr uudecode guile gnuserv on host.
2843 (x86_64-*-mingw*): Don't disable expect dejagnu autoconf automake
2844 send-pr rcs guile perl texinfo libtool on host.
2845 (i[[3456789]]86-*-mingw32*): Don't disable expect dejagnu autoconf
2846 automake send-pr rcs guile perl texinfo libtool on host.
2847 (*-*-cygwin*, *-*-netbsd*): Remove host cases.
2848 (*-*-kaos*): Don't disable target-examples target-gperf on target.
2849 (alpha*-dec-osf*): Don't disable fileutils on target.
2850 (sh*-*-pe|mips*-*-pe|*arm-wince-pe): Don't disable target-examples
2851 texinfo send-pr expect dejagnu on target.
2852 (arm-*-elf* | arm*-*-eabi*, arm*-*-linux-gnueabi): Don't disable
2853 target-qthreads on target.
2854 (hppa*-hp-hpux11*, hppa*-*-*): Don't disable shellutils on target.
2855 (ia64*-*-elf*, ia64*-*-*vms*): Don't disable mmalloc on target.
2856 (i[[3456789]]86-w64-mingw*, i[[3456789]]86-*-mingw*,
2857 x86_64-*-mingw*): Don't disable expect on target.
2858 (*-*-cygwin*): Don't disable target-gperf on target.
2859 (powerpc*-*-winnt* | powerpc*-*-pe*): Don't disable make expect
2860 gnuserv on target.
2861 (powerpcle-*-solaris*): Don't disable make expect gnuserv on
2862 target.
2863 * configure: Regenerate.
2864
2865 2011-03-25 Joseph Myers <joseph@codesourcery.com>
2866
2867 * configure.ac (target_tools): Remove target-groff.
2868 (native_only): Remove target-groff.
2869 (hppa*64*-*-*): Don't disable byacc.
2870 (i[[3456789]]86-*-mingw32*): Remove commented-out noconfigdirs
2871 setting.
2872 (*-*-kaos*): Don't skip target-librx and target-groff.
2873 (*-*-netware*): Don't skip target-libmudflap.
2874 (*-*-tpf*): Don't skip target-libmudflap.
2875 (sh*-*-pe|mips*-*-pe|*arm-wince-pe): Don't condition configured
2876 directories on the host.
2877 (ia64*-*-*vms*): Don't skip tix.
2878 (sh-*-* | sh64-*-*): Don't condition skipped directories on the
2879 host.
2880 * configure: Regenerate.
2881
2882 2011-03-24 Paolo Bonzini <pbonzini@redhat.com>
2883
2884 * configure.ac: Remove references to mt-mep, mt-netware,
2885 mt-wince.
2886 * Makefile.def: Add all-utils soft dependencies.
2887 * Makefile.tpl: Remove GDB_NLM_DEPS.
2888 * configure: Regenerate.
2889 * Makefile.in: Regenerate.
2890
2891 2011-03-24 Paolo Bonzini <bonzini@gnu.org>
2892
2893 Sync from GCC:
2894
2895 2011-03-24 Paolo Bonzini <bonzini@gnu.org>
2896
2897 * configure.ac: Do not include mh-x86omitfp.
2898 * configure: Regenerate.
2899
2900 2011-03-24 Paolo Bonzini <bonzini@gnu.org>
2901
2902 * configure.ac: Remove empty cases.
2903 * configure: Regenerate.
2904
2905 2011-03-24 Paolo Bonzini <bonzini@gnu.org>
2906
2907 * Makefile.def: Add dependency from termcap to gdb.
2908 * Makefile.in: Regenerate.
2909
2910 2011-03-24 Paolo Bonzini <bonzini@gnu.org>
2911
2912 * configure.ac: Remove all mentions of mh-sysv4 and mh-solaris.
2913 * configure: Regenerate.
2914 * Makefile.def: Remove all mentions of X11_FLAGS_TO_PASS.
2915 * Makefile.tpl: Likewise.
2916 * Makefile.in: Regenerate.
2917
2918 2011-03-24 Paolo Bonzini <bonzini@gnu.org>
2919
2920 * configure.ac: Remove all mentions of tentative_cc.
2921 * configure: Regenerate.
2922
2923 2011-03-16 Jack Howarth <howarth@bromo.med.uc.edu>
2924
2925 PR lto/48086
2926 * configure.ac: Re-enable LTO on *-apple-darwin9.
2927 * configure: Regenerate.
2928
2929 2011-03-24 Joseph Myers <joseph@codesourcery.com>
2930
2931 * configure.ac (i[[3456789]]86-*-vsta, i[[3456789]]86-*-go32*,
2932 i[[3456789]]86-*-beos*, powerpc-*-beos*, m68k-hp-hpux*,
2933 m68k-apollo-sysv*, m68k-apollo-bsd*, m88k-dg-dgux*,
2934 m88k-harris-cxux*, m88k-motorola-sysv*, mips*-dec-ultrix*,
2935 mips*-nec-sysv4*, mips*-sgi-irix4*, mips*-*-sysv4*, mips*-*-sysv*,
2936 i370-ibm-opened*, i[[3456789]]86-*-sysv5*, i[[3456789]]86-*-dgux*,
2937 i[[3456789]]86-ncr-sysv4.3*, i[[3456789]]86-ncr-sysv4*,
2938 i[[3456789]]86-*-sco3.2v5*, i[[3456789]]86-*-sco*,
2939 i[[3456789]]86-*-udk*, vax-*-ultrix2*, m68k-sun-sunos*,
2940 hppa*-*-hiux*, *-*-hiux*, rs6000-*-lynxos*, *-*-sysv4*,
2941 *-*-rhapsody*): Remove host cases.
2942 * configure: Regenerate.
2943
2944 2011-03-24 Joseph Myers <joseph@codesourcery.com>
2945
2946 * configure.ac (ppc*-*-pe): Remove host case.
2947 (strongarm-*-coff | xscale-*-coff, strongarm-*-elf* |
2948 xscale-*-elf*, thumb-*-coff, thumb-*-elf, thumb-*-pe, ep9312-*-elf
2949 | ep9312-*-coff, parisc*64*-*-linux*, ppc*-*-pe): Remove target
2950 cases.
2951 * configure: Regenerate.
2952
2953 2011-03-24 Joseph Myers <joseph@codesourcery.com>
2954
2955 * config.sub: Update to version 2011-03-23.
2956
2957 2011-03-22 Joseph Myers <joseph@codesourcery.com>
2958
2959 * configure.ac (arm-semi-aof, crx-*-*, parisc*-*-linux*,
2960 i370-*-opened*, i[[3456789]]86-moss-msdos | i[[3456789]]86-*-moss*
2961 | i[[3456789]]86-*-uwin*, mcore-*-pe*): Remove empty cases.
2962 * configure: Regenerate.
2963
2964 2011-03-22 Joseph Myers <joseph@codesourcery.com>
2965
2966 * config-ml.in: Don't handle arc-*-elf*.
2967 * configure.ac (arc-*-*, crx-*-*, i[[3456789]]86-*-pe,
2968 m68hc11-*-*|m6811-*-*|m68hc12-*-*|m6812-*-*, mcore-*-pe*): Don't
2969 handle GCC libraries.
2970 * configure: Regenerate.
2971
2972 2011-03-21 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2973
2974 PR bootstrap/48120:
2975 * configure.ac (pwllib): Use LIBS instead of LDFLAGS.
2976 Add -lstdc++ -lm to LIBS.
2977 * configure: Regenerate.
2978
2979 2011-03-18 David Edelsohn <dje.gcc@gmail.com>
2980
2981 * config.guess: Update to version 2011-02-02
2982 * config.sub: Update to version 2011-02-24
2983
2984 2011-03-03 Sebastian Pop <sebastian.pop@amd.com>
2985
2986 * configure.ac: Adjust test of with_ppl.
2987 * configure: Regenerated.
2988
2989 2011-03-02 Sebastian Pop <sebastian.pop@amd.com>
2990
2991 * configure.ac: Add -lpwl to ppllibs.
2992 * config/cloog.m4: Add -lisl to clooglibs.
2993 * configure: Regenerated.
2994
2995 2011-02-13 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
2996
2997 Import from Libtool and gnulib:
2998
2999 2011-01-27 Gerald Pfeifer <gerald@pfeifer.com>
3000
3001 Prepare for supporting FreeBSD 10.
3002 * config.rpath: Remove handling of freebsd1* which soon would
3003 match FreeBSD 10.0.
3004
3005 2011-01-20 Gerald Pfeifer <gerald@pfeifer.com> (tiny change)
3006
3007 Remove support for FreeBSD 1.x.
3008 * libtool.m4 (_LT_LINKER_SHLIBS)
3009 (_LT_SYS_DYNAMIC_LINKER): Remove handling of freebsd1* which
3010 soon would incorrectly match FreeBSD 10.0.
3011
3012 2011-02-12 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3013
3014 PR binutils/12283
3015 * MAINTAINERS (mkinstalldirs): Comes from Automake.
3016 (move-if-change): Comes from gnulib.
3017 * move-if-change: Import version from gnulib.
3018
3019 2011-02-12 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3020
3021 Sync from GCC:
3022
3023 2011-02-12 Alexandre Oliva <aoliva@redhat.com>
3024
3025 PR lto/47225
3026 * Makefile.def (lto-plugin): Double dash for enable-shared.
3027 (configure-gcc): Depend on all-lto-plugin.
3028 * Makefile.in: Rebuilt.
3029
3030 2011-02-11 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3031
3032 * configure.ac: Remove extra bracket.
3033 * configure: Regenerate.
3034
3035 2011-02-06 Kai Tietz <kai.tietz@onevision.com>
3036
3037 PR lto/47225
3038 * Makefile.def: Add dependency for install-gcc
3039 on install-lto-plugin.
3040 * Makfile.in: Regenerated
3041
3042 2011-01-25 Jakub Jelinek <jakub@redhat.com>
3043
3044 * configure.ac: If with_ppl is no, move setting with_cloog=no
3045 after CLOOG_REQUESTED check.
3046 * configure: Regenerated.
3047
3048 2011-01-25 Sebastian Pop <sebastian.pop@amd.com>
3049
3050 * configure.ac: Call AC_MSG_ERROR when PPL 0.11 is not present and
3051 CLooG has been requested.
3052 * configure: Regenerated.
3053
3054 2011-01-25 Sebastian Pop <sebastian.pop@amd.com>
3055
3056 * configure: Regenerated.
3057 * configure.ac: Check for version 0.11 (or later revision) of PPL.
3058
3059 2011-01-25 Tobias Grosser <grosser@fim.uni-passau.de>
3060
3061 * configure: Regenerated.
3062 * configure.ac: Use CLOOG_CHECK_VERSION(0,16,1).
3063
3064 2011-01-07 Jan Hubicka <jh@suse.cz>
3065
3066 PR lto/47225
3067 * Makefile.in: Regenerate.
3068 * Makefile.def (lto-plugin): Always pass enable-shared to the plugin
3069 configure.
3070
3071 2011-01-31 Alexandre Oliva <aoliva@redhat.com>
3072
3073 PR libgcj/44341
3074 * configure.ac: Discard --with-* flags for host when configuring
3075 target libraries for cross build.
3076 * configure: Rebuilt.
3077
3078 2011-01-21 Andreas Schwab <schwab@redhat.com>
3079
3080 Sync from GCC:
3081
3082 2011-01-21 Andreas Schwab <schwab@redhat.com>
3083
3084 * configure.ac: Use AS_HELP_STRING throughout.
3085 * configure: Regenerate.
3086
3087 2011-01-18 Jie Zhang <jie.zhang@analog.com>
3088
3089 * configure.ac (bfin-*-*): Remove gdb from noconfigdirs.
3090 * configure: Regenerate.
3091
3092 2010-12-10 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
3093
3094 * ltmain.sh (relink): Use absolute path when hardcoding with -L.
3095
3096 2011-01-13 Joel Brobecker <brobecker@adacore.com>
3097
3098 * configure.ac: Remove readline, mmalloc, and gdb from noconfigdirs
3099 for ia64-hpux.
3100 * configure: Regenerate.
3101
3102 2011-01-02 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3103
3104 Sync from GCC:
3105 2010-12-22 Hariharan Sandanagobalane <hariharan@picochip.com>
3106
3107 * configure.ac: (picochip): Disable libiberty.
3108 * configure: Regenerate.
3109
3110 2010-12-18 Jeff Johnston <jjohnstn@redhat.com>
3111
3112 * COPYING.LIBGLOSS: Remove the GPL for fr30 target.
3113
3114 2010-12-10 Ian Lance Taylor <iant@google.com>
3115
3116 PR bootstrap/46819
3117 * configure.ac: For --disable-libgcj clear libgcj_saved.
3118 * configure: Rebuild.
3119
3120 2010-12-10 Tobias Burnus <burnus@net-b.de>
3121
3122 PR fortran/46540
3123 * configure.ac: Add --disable-libquadmath and
3124 --disable-libquadmath-support.
3125 * configure: Regenerate.
3126
3127 2010-12-10 Tristan Gingold <gingold@adacore.com>
3128
3129 * src-release (ETC_SUPPORT): add gnu-oids.texi
3130
3131 2010-12-03 Hans-Peter Nilsson <hp@axis.com>
3132
3133 PR libffi/46792
3134 * configure.ac (cris-*-elf, crisv32-*-elf): Disable target-libffi.
3135 * configure: Regenerate.
3136
3137 2010-12-02 Ian Lance Taylor <iant@google.com>
3138
3139 * configure.ac: Always set default for poststage1_ldflags to
3140 -static-libstdc++ -static-libgcc.
3141
3142 2010-12-02 Jeff Johnston <jjohnstn@redhat.com>
3143
3144 * COPYING.NEWLIB: Add National Semiconductor notice.
3145
3146 2010-11-29 Andreas Schwab <schwab@redhat.com>
3147
3148 * configure.ac: Move comment to remove extra space in last argument
3149 of GCC_TARGET_TOOL.
3150
3151 2010-11-26 Alexandre Oliva <aoliva@redhat.com>
3152
3153 PR other/46026
3154 * configure.ac (CXX_FOR_TARGET): Add -funconfigured-libstdc++-v3.
3155 * Makefile.def (CXX_FOR_TARGET): Removed from flags_to_pass.
3156 * Makefile.tpl (CXX_FOR_TARGET_FLAG_TO_PASS): New.
3157 (BASE_FLAGS_TO_PASS): Use it.
3158 * configure: Rebuilt.
3159 * Makefile.in: Rebuilt.
3160
3161 2010-11-23 H.J. Lu <hongjiu.lu@intel.com>
3162
3163 PR binutils/12258
3164 * configure.ac: Correct comments for --enable-gold/--enable-ld.
3165 Properly check default linker.
3166 * configure: Regnerated.
3167
3168 2010-11-23 Matthias Klose <doko@ubuntu.com>
3169
3170 * configure.ac: For --enable-gold, handle value `default' instead of
3171 `both*'. New configure option --{en,dis}able-ld.
3172 * configure: Regenerate.
3173
3174 2010-11-20 Ian Lance Taylor <iant@google.com>
3175
3176 * configure.ac: Only disable a language library if no language needs
3177 it. Don't let --disable-libgcj uncondtionally disable libffi.
3178 * configure: Rebuild.
3179
3180 2010-11-20 Paolo Bonzini <bonzini@gnu.org>
3181
3182 * configure: Regenerate.
3183
3184 2010-11-20 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3185
3186 PR other/46202
3187 * configure.ac: Fix just-built in-tree STRIP name to be
3188 binutils/strip-new.
3189 * configure: Regenerate.
3190 * Makefile.def (install-strip-gcc, install-strip-binutils)
3191 (install-strip-opcodes, install-strip-ld, install-strip-itcl)
3192 (install-strip-sid): Mirror dependencies on non-strip variants
3193 of these targets on the respective -strip prerequisites.
3194 * Makefile.tpl (install-strip, install-strip-host)
3195 (install-strip-target): New targets.
3196 (install-strip-[+module+], install-strip-target-[+module+]):
3197 New targets.
3198 * Makefile.in: Regenerate.
3199
3200 2010-11-19 Ian Lance Taylor <iant@google.com>
3201 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3202
3203 * configure.ac: Add target-libgo to target_libraries. Set
3204 and substitute GOC_FOR_BUILD and GOC_FOR_TARGET.
3205 * Makefile.tpl (BUILD_EXPORTS): Add GOC and GOCFLAGS.
3206 (HOST_EXPORTS): Add GOC.
3207 (BASE_TARGET_EXPORTS): Add GOC.
3208 (GOC_FOR_BUILD, GOCFLAGS, GOC_FOR_TARGET): New variables.
3209 (GOCFLAGS_FOR_TARGET): New variable.
3210 (EXTRA_HOST_FLAGS): Add GOC.
3211 (EXTRA_TARGET_FLAGS): Add GOC and GOCFLAGS.
3212 * Makefile.def (target_modules): Add libgo.
3213 (flags_to_pass): Add GOC_FOR_TARGET and GOCFLAGS_FOR_TARGET.
3214 (dependencies): Add dependency from configure-target-libgo to
3215 configure-target-libffi and all-target-libstdc++-v3. Add
3216 dependencies from all-target-libgo to all-target-libffi.
3217 (languages): Add go.
3218 * configure: Rebuild.
3219 * Makefile.in: Rebuild.
3220
3221 2010-11-19 Ian Lance Taylor <iant@google.com>
3222
3223 * config-ml.in: Add Go support: treat GOC and GOCFLAGS like other
3224 compiler/flag environment variables.
3225
3226 2010-11-18 Ian Lance Taylor <iant@google.com>
3227
3228 * configure.ac: Check for lang_requires_boot_languages in
3229 config-lang.in files.
3230 * configure: Rebuild.
3231
3232 2010-11-17 Mike Frysinger <vapier@gentoo.org>
3233
3234 * .gitignore: New file.
3235
3236 2010-11-16 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
3237 Tobias Burnus <burnus@net-b.de>
3238
3239 PR fortran/32049
3240 * Makefile.def: Add libquadmath; build it with language=fortran.
3241 * configure.ac: Add libquadmath.
3242 * Makefile.tpl: Handle multiple libs in check-[+language+].
3243 * Makefile.in: Regenerate.
3244 * configure: Regenerate.
3245
3246 2010-11-15 Andreas Schwab <schwab@redhat.com>
3247
3248 * configure.ac: Fix spelling in option names.
3249 * configure: Regenerated.
3250
3251 2010-11-13 Georg-Johann Lay <georgjohann@web.de>
3252
3253 PR bootstrap/39622
3254 * configure.ac (FLAGS_FOR_TARGET): Add include-fixed path.
3255 * configure: Regenerated.
3256
3257 2010-11-12 Tobias Grosser <grosser@fim.uni-passau.de>
3258
3259 * config/cloog.m4: Add -enable-cloog-backend=(isl|ppl|ppl-legacy) to
3260 define the cloog backend to use. Furthermore, only pass the ppllibs to
3261 the configure checks, if necessary.
3262 * configure: Regenerate.
3263
3264 2010-11-12 Tobias Grosser <grosser@fim.uni-passau.de>
3265
3266 * config/cloog.m4: Use CLooG predefined macro to check for CLooG PPL.
3267 * configure: regenerate
3268
3269 2010-11-12 Tobias Grosser <grosser@fim.uni-passau.de>
3270
3271 * config/cloog.m4: Fix typo. verison -> version.
3272 * configure: Regenerate.
3273
3274 2010-11-12 Tobias Grosser <grosser@fim.uni-passau.de>
3275
3276 * config/cloog.m4: Pass ppl libraries to the CLooG version check.
3277 * configure: Regenerate.
3278
3279 2010-11-11 Andreas Simbuerger <simbuerg@fim.uni-passau.de>
3280
3281 * configure.ac: Support official CLooG.org versions.
3282 * configure: Regenerate.
3283 * config/cloog.m4: New.
3284
3285 2010-11-05 Michael Eager <eager@eagercon.com>
3286
3287 * COPYING.LIBGLOSS: Correct typo in microblaze.
3288 * COPYING.NEWLIB: Same.
3289
3290 2010-11-04 Iain Sandoe <iains@gcc.gnu.org>
3291
3292 * configure.ac (*-*-darwin*): Use mh-darwin for all Darwin variants.
3293 * configure: Regenerate.
3294
3295 2010-11-03 Ian Lance Taylor <iant@google.com>
3296 Dave Korn <dave.korn.cygwin@gmail.com>
3297
3298 PR lto/46273
3299 * configure.ac: Remove libelf tests. Build lto-plugin on ELF always
3300 and on other supported platforms whenever LTO is enabled.
3301 * configure: Rebuild.
3302
3303 2010-11-02 Alan Modra <amodra@gmail.com>
3304
3305 PR binutils/12110
3306 * configure.ac: Error when source path contains spaces.
3307 * configure: Regenerate.
3308
3309 2010-10-20 Ian Lance Taylor <iant@google.com>
3310
3311 * Makefile.def (target_modules): Set lib_path to src/.libs for
3312 libstdc++-v3 module.
3313 * Makefile.tpl: Fix typo in TARGET_LIB_PATH comment.
3314 * Makefile.in: Rebuild.
3315
3316 2010-10-08 Bernd Schmidt <bernds@codesourcery.com>
3317 Joseph Myers <joseph@codesourcery.com>
3318
3319 * COPYING.LIBGLOSS: Add National Semiconductor and CodeSourcery
3320 notices.
3321 * COPYING.NEWLIB: Add Texas Instruments notice.
3322
3323 2010-10-07 Dave Korn <dave.korn.cygwin@gmail.com>
3324
3325 * configure.ac (build_lto_plugin): New shell variable.
3326 (--enable-lto): Turn on by default for all non-ELF platforms that
3327 have had LTO support added so far. Set build_lto_plugin appropriately
3328 for both ELF and non-ELF.
3329 (configdirs): Add lto-plugin or not based on build_lto_plugin.
3330 * configure: Regenerate.
3331
3332 2010-10-02 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3333
3334 PR bootstrap/45326
3335 PR bootstrap/45174
3336 * configure.ac: Honor initial values of $build_configargs,
3337 $host_configargs, $target_configargs. Mark the precious, so
3338 environment settings get recorded.
3339 * configure: Regenerate.
3340
3341 2010-10-02 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3342
3343 Sync from GCC:
3344
3345 2010-09-30 Michael Eager <eager@eagercon.com>
3346
3347 * configure.ac (microblaze): Add target-libssp to noconfigdirs.
3348 * configure: Regenerate.
3349
3350 2010-09-21 Iain Sandoe <iains@gcc.gnu.org>
3351
3352 * configure.ac (enable-lto): Add Darwin to the list of supported lto
3353 targets and amend comment.
3354 * configure: Regenerate.
3355
3356 2010-09-03 Jack Howarth <howarth@bromo.med.uc.edu>
3357
3358 * configure.ac: Enable LTO by default on Darwin.
3359 * configure: Regenerate.
3360
3361 2010-07-23 Marc Glisse <marc.glisse@normalesup.org>
3362
3363 PR bootstrap/44455
3364 * configure.ac (extra_mpfr_configure_flags): Copy from
3365 extra_mpc_gmp_configure_flags.
3366 * configure: Re-generated.
3367
3368 2010-09-30 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3369
3370 Sync from GCC:
3371
3372 PR bootstrap/45796
3373 * Makefile.def (info-gcc, dvi-gcc, pdf-gcc, html-gcc):
3374 Depend on all-build-libiberty.
3375 * Makefile.in: Regenerate.
3376
3377 2010-09-27 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3378
3379 Sync from GCC:
3380
3381 PR bootstrap/44621
3382 * configure.ac: Fix unportable shell quoting.
3383 * configure: Regenerate.
3384
3385 2010-07-26 Naveen.H.S <naveen.S@kpitcummins.com>
3386
3387 * configure.ac: Support all v850 targets.
3388 * configure: Regenerate.
3389
3390 2010-07-17 Jack Howarth <howarth@bromo.med.uc.edu>
3391
3392 PR target/44862
3393 * Makefile.tpl (POSTSTAGE1_CXX_EXPORT):
3394 Provide -B option to allow for link spec %s substitutions for
3395 libstdc++.a on darwin.
3396 * Makefile.in: Regenerate.
3397
3398 2010-06-10 Alexandre Oliva <aoliva@redhat.com>
3399
3400 * Makefile.def (configure-gcc): Depend on all-libelf.
3401 * Makefile.in: Rebuild.
3402
3403 2010-06-01 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3404
3405 * config.sub, config.guess: Update from upstream sources.
3406
3407 2010-06-01 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3408
3409 Sync from GCC:
3410
3411 2010-05-05 Sebastian Pop <sebastian.pop@amd.com>
3412 * configure.ac: Allow all the versions greater than 0.10 of PPL.
3413 * configure: Regenerated.
3414
3415 2010-04-20 Eric Botcazou <ebotcazou@adacore.com>
3416 * configure.ac (BUILD_CONFIG): Redirect output to /dev/null.
3417 * configure: Regenerate.
3418
3419 2010-04-17 Ralf Cors<E9>pius <ralf.corsepius@rtems.org>
3420 * configure.ac (*-*-rtems*): Add target-libiberty to $skipdirs.
3421 * configure: Regenerate.
3422
3423 2010-04-16 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
3424 * configure.ac: Check for elf_getshdrstrndx or elf_getshstrndx
3425 separately.
3426 * configure: Regenerate.
3427
3428 2010-04-13 Steve Ellcey <sje@cup.hp.com>
3429 * configure: Regenerate after change to elf.m4.
3430
3431 2010-04-02 Sebastian Pop <sebastian.pop@amd.com>
3432 * configure.ac: Add brackets around AC_TRY_COMPILE alternative.
3433 * configure: Regenerated.
3434
3435 2010-04-02 Sebastian Pop <sebastian.pop@amd.com>
3436 * configure.ac: Print "buggy but acceptable" when CLooG
3437 revision is less than 9.
3438 * configure: Regenerated.
3439
3440 2010-05-26 Dave Korn <dave.korn.cygwin@gmail.com>
3441
3442 Merge from gcc:
3443
3444 2010-05-18 Steven Bosscher <steven@gcc.gnu.org>
3445 * configure.ac (--enable-lto): All *-apple-darwin* now support LTO.
3446 * configure: Regenerate.
3447
3448 2010-05-07 Steven Bosscher <steven@gcc.gnu.org>
3449 * configure.ac (--enable-lto): Add x86_64-apple-darwin* as
3450 a platform that supports LTO.
3451 * configure: Regenerate.
3452
3453 2010-04-27 Dave Korn <dave.korn.cygwin@gmail.com>
3454 PR lto/42776
3455 * configure.ac (--enable-lto): Refactor handling so libelf tests
3456 are only performed inside then-clause of ACX_ELF_TARGET_IFELSE,
3457 and allow LTO to be explicitly enabled on non-ELF platforms that
3458 are known to support it inside else-clause.
3459 * configure: Regenerate.
3460
3461 2010-04-27 Roland McGrath <roland@redhat.com>
3462 H.J. Lu <hongjiu.lu@intel.com>
3463
3464 * configure.ac (--enable-gold): Support both, both/gold and
3465 both/bfd to add gold to configdirs without removing ld.
3466 * configure: Regenerated.
3467
3468 * Makefile.def: Add install-gold dependency to install-ld.
3469 * Makefile.in: Regenerated.
3470
3471 2010-04-14 Tristan Gingold <gingold@adacore.com>
3472
3473 * configure.ac (alpha*-*-*vms*): Remove ld from noconfigdirs.
3474 * configure: Regenerate.
3475
3476 2010-04-08 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3477
3478 Merge from gcc:
3479 PR bootstrap/43615
3480 PR bootstrap/43328
3481 Revert:
3482 2010-03-31 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3483 * configure.ac: Do not pass --enable-multilib nor
3484 --disable-multilib in baseargs. Accept explicitly passed
3485 --enable_multilib.
3486 * configure: Regenerate.
3487
3488 2010-03-31 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3489
3490 PR bootstrap/43328
3491 * configure.ac: Do not pass --enable-multilib nor
3492 --disable-multilib in baseargs. Accept explicitly passed
3493 --enable_multilib.
3494 * configure: Regenerate.
3495
3496 2010-03-23 Joseph Myers <joseph@codesourcery.com>
3497
3498 * configure.ac (tic6x-*-*): New case.
3499 * configure: Regenerate.
3500
3501 2010-03-23 Joseph Myers <joseph@codesourcery.com>
3502
3503 Merge from gcc:
3504 2010-03-19 Jack Howarth <howarth@bromo.med.uc.edu>
3505 PR ada/42554
3506 * configure.ac: Only pass -c to ranlib for darwin9 and earlier.
3507 * configure: Regenerate.
3508
3509 2010-03-23 Joseph Myers <joseph@codesourcery.com>
3510
3511 * config.sub: Update to version 2010-03-22.
3512 * config.guess: Update to version 2009-12-30.
3513
3514 2010-03-14 Joseph Myers <joseph@codesourcery.com>
3515
3516 Merge from gcc:
3517 2010-01-11 Richard Guenther <rguenther@suse.de>
3518 PR lto/41569
3519 * Makefile.def (all-lto-plugin): Depend on all-gcc.
3520 * Makefile.in: Regenerated.
3521
3522 2010-03-01 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
3523
3524 PR libstdc++/32499
3525 * configure.ac (RANLIB): Default to true.
3526 (STRIP): Likewise.
3527 (RANLIB_FOR_TARGET): Remove superfluous : argument.
3528 * configure: Regenerate.
3529
3530 2010-02-17 Nick Clifton <nickc@redhat.com>
3531
3532 PR 11238
3533 * Makefile.tpl (local-distclean): Also remove config.cache files in
3534 sub-directories as there may not be Makefiles present in the
3535 sub-directories.
3536 * Makefile.tpl: Use "-exec rm {}" rather than "-delete" to delete
3537 the config.cache files found by the find command.
3538
3539 * Makefile.in: Regenerate.
3540 * configure.ac: Revert previous delta.
3541 * configure: Regenerate.
3542
3543 2010-02-15 Nick Clifton <nickc@redhat.com>
3544
3545 PR 11238
3546 * configure.ac: Delete config.cache files in sub-directories when
3547 deleting Makefiles.
3548 * configure: Regenerate.
3549
3550 2010-02-15 Nick Clifton <nickc@redhat.com>
3551
3552 * configure.ac: Sync from gcc.
3553 * configure: Regenerate.
3554
3555 2010-01-31 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3556
3557 Sync from gcc:
3558 * configure.ac: Add "recommended" version checks for GMP/MPC.
3559 Update recommended GMP/MPFR/MPC versions.
3560 * configure: Regenerate.
3561
3562 2010-01-25 Joern Rennecke <amylaar@spamcop.net>
3563
3564 gcc PR libstdc++/36101, gcc PR libstdc++/42813
3565 * configure.ac (bootstrap_target_libs): Make inclusion of
3566 target-libgomp conditional on libgomb being in target_configdirs.
3567 * configure: Regenerate.
3568
3569 2010-01-23 Joern Rennecke <amylaar@spamcop.net>
3570
3571 gcc PR libstdc++/36101, gcc PR libstdc++/42813
3572 * configure.ac (bootstrap_target_libs): Include target-libgomp.
3573 * configure: Regenerate.
3574
3575 2010-01-22 Joern Rennecke <amylaar@spamcop.net>
3576
3577 gcc PR libstdc++/36101, gcc PR libstdc++/42813
3578 * configure.ac (target_configdirs): Substitute.
3579 * Makefile.def: Bootstrap target module libgomp.
3580 Add dependency of all-target-libstdc++-v3 on configure-target-libgomp.
3581 * Makefile.tpl (TARGET_CONFIGDIRS): New makefile variable.
3582 (BASE_TARGET_EXPORTS): Export TARGET_CONFIGDIRS.
3583 * configure, Makefile.in: Regenerate.
3584
3585 2009-12-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3586
3587 * libtool.m4: Sync from git Libtool.
3588 * ltmain.sh: Likewise.
3589 * ltoptions.m4: Likewise.
3590 * ltversion.m4: Likewise.
3591 * lt~obsolete.m4: Likewise.
3592
3593 2010-01-07 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3594 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
3595
3596 PR bootstrap/42424
3597 * configure.ac: Include libtool m4 files.
3598 (_LT_CHECK_OBJDIR): Call it.
3599 (extra_mpc_mpfr_configure_flags, extra_mpc_gmp_configure_flags,
3600 gmplibs, ppllibs, clooglibs): Use $lt_cv_objdir.
3601
3602 * configure: Regenerate.
3603
3604 2010-01-07 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3605
3606 PR bootstrap/41818
3607 * Makefile.tpl (BASE_TARGET_EXPORTS): Only add TARGET_LIB_PATH
3608 to $(RPATH_ENVVAR) if bootstrapping. Fix typo in comment.
3609 * Makefile.in: Regenerate.
3610
3611 2009-12-18 Ben Elliston <bje@au.ibm.com>
3612
3613 * config.sub, config.guess: Update from upstream sources.
3614
3615 2009-12-17 Jeff Johnston <jjohnstn@redhat.com>
3616
3617 * COPYING.NEWLIB: Update copyright date.
3618 * COPYING.LIBGLOSS: Ditto.
3619
3620 2009-12-07 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3621
3622 PR middle-end/30447
3623 PR middle-end/30789
3624 PR other/40302
3625
3626 * configure.ac: Require MPC.
3627 * configure: Regenerate.
3628
3629 * configure.ac: Update minimum MPC version to 0.8.
3630 * configure: Regenerate.
3631
3632 2009-11-20 Paolo Bonzini <bonzini@gnu.org>
3633
3634 * config.guess: Sync with upstream and gcc.
3635 * config.sub: Sync with upstream and gcc.
3636
3637 2009-11-16 Alexandre Oliva <aoliva@redhat.com>
3638
3639 * Makefile.def: Restore host and target settings for gmp.
3640 * Makefile.in: Rebuild.
3641
3642 2009-11-16 Alexandre Oliva <aoliva@redhat.com>
3643
3644 * configure.ac: Add libelf to host_libs. Enable in-tree configury
3645 of ppl and cloog. Fix in-tree configury of libelf, skip tests.
3646 Fix portability of test of C++ as bootstrap language. Add
3647 ppl/src/ppl-config.o to the bootstrap compare exclusion list.
3648 * configure: Rebuild.
3649 * Makefile.def: Drop host and target settings from gmp, mpfr, ppl,
3650 and cloog. Fix in-tree ppl configuration. Introduce libelf
3651 in-tree building.
3652 * Makefile.tpl (POSTSTAGE1_CXX_EXPORT): New.
3653 (POSTSTAGE1_HOST_EXPORTS): Use it.
3654 (STAGE[+id+]_CXXFLAGS): New.
3655 (BASE_FLAGS_TO_PASS): Pass it down.
3656 (configure-stage[+id+]-[+prefix+][+module+]): Use it. Add
3657 extra_exports.
3658 (all-stage[+id+]-[+prefix+][+module+]): Likewise.
3659 (configure-[+prefix+][+module+], all-[+prefix+][+module+]): Add
3660 extra_exports.
3661 * Makefile.in: Rebuild.
3662
3663 2009-11-06 Ozkan Sezer <sezeroz@gmail.com>
3664
3665 * configure.ac (FLAGS_FOR_TARGET): Add -L and -isystem
3666 paths for *-w64-mingw* and x86_64-*mingw*.
3667 * configure: Regenerated.
3668
3669 2009-10-30 Kai Tietz <kai.tietz@onevision.com>
3670
3671 * configure.ac: Disable target-winsup & co for
3672 x86_64-*-mingw* and *-w64-mingw* targets.
3673 * configure: Regenerated.
3674
3675 2009-10-23 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
3676
3677 * configure.ac (CLooG test): Use = with test.
3678 * configure: Regenerate.
3679
3680 2009-10-22 Richard Guenther <rguenther@suse.de>
3681
3682 * configure.ac: Do not set LIBS for ppl/cloog checks. Disable
3683 cloog if the ppl version check failed. Move flags saving
3684 before setting in libelf check.
3685 * configure: Regenerate.
3686
3687 2009-10-21 Richard Guenther <rguenther@suse.de>
3688
3689 * configure.ac: Adjust the ppl and cloog configure to work as
3690 documented. Disable cloog if ppl was disabled. Omit the version
3691 checks if they were disabled.
3692 * configure: Re-generate.
3693
3694 2009-10-13 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3695
3696 * configure.ac: Add 'lto' to enable_languages, not
3697 new_enable_languages, and only if not already present.
3698 * configure: Regenerate.
3699
3700 2009-10-06 Ian Lance Taylor <iant@google.com>
3701
3702 * Makefile.def: check-gold depends upon all-gas.
3703 * Makefile.in: Rebuild.
3704
3705 2009-10-03 2009-02-05 Rafael Avila de Espindola <espindola@google.com>
3706
3707 * Makefile.def: all-lto-plugin depends on all-libiberty.
3708 set bootstrap=true for lto-plugin.
3709 Add lto-plugin.
3710 * Makefile.in: Regenerate.
3711 * configure.ac (host_libs): Add lto-plugin.
3712 * configure: Regenerate.
3713
3714 2009-10-03 Diego Novillo <dnovillo@google.com>
3715
3716 * Makefile.tpl (HOST_EXPORTS): Add LIBELFLIBS and LIBELFINC.
3717 (HOST_LIBELFLIBS): Define.
3718 (HOST_LIBELFINC): Define.
3719 * Makefile.in: Regenerate.
3720 * configure.ac: Add --enable-lto.
3721 Add --with-libelf, --with-libelf-include and --with-libelf-lib.
3722 If --enable-lto is used, add 'lto' to new_enable_languages.
3723 If --enable-lto is used and gold is enabled, add
3724 lto-plugin to configdirs.
3725 * configure: Regenerate.
3726
3727 2009-10-03 Simon Baldwin <simonb@google.com>
3728
3729 * configure.ac: If --with-system-zlib, suppress local zlib and
3730 pass --with-system-zlib to subdir configure scripts.
3731 * configure: Regenerate.
3732
3733 2009-10-01 Loren J. Rittle <ljrittle@acm.org>
3734 Paolo Bonzini <bonzini@gnu.org>
3735
3736 * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Use $$s rather than
3737 $(srcdir).
3738 * Makefile.in: Rebuilt.
3739
3740 2009-09-29 Paolo Bonzini <bonzini@gnu.org>
3741
3742 Sync from gcc:
3743 2009-09-26 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3744
3745 * configure.ac: Update minimum MPC version to 0.7.
3746 * configure: Regenerate.
3747
3748 2009-09-25 Nick Clifton <nickc@redhat.com>
3749
3750 * configure.ac: Pass any --cache-file=/dev/null option on to
3751 subconfigures.
3752 * configure: Regenerate.
3753
3754 2009-09-23 Nick Clifton <nickc@redhat.com>
3755
3756 * config.sub, config.guess: Update from upstream sources.
3757
3758 2009-09-22 Loren J. Rittle <ljrittle@acm.org>
3759
3760 * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Remove stray $$r/.
3761 * Makefile.in: Rebuilt.
3762
3763 2009-09-22 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3764
3765 PR bootstrap/32272
3766 * configure.ac: Error out if $srcdir isn't '.' but contains
3767 host-${host_noncanonical}.
3768 * configure: Regenerate.
3769
3770 2009-09-21 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3771
3772 * configure.ac: If bootstrapping a combined tree with
3773 --enable-gold, require c++ in stage1_languages.
3774 * configure: Regenerate.
3775
3776 * configure.ac: Also add target_libs of stage1_languages to
3777 bootstrap_target_libs.
3778 * configure: Regenerate.
3779
3780 * configure.ac: Diagnose --enable-build-with-cxx bootstrap
3781 with --enable-languages not containing c++.
3782 * configure: Regenerate.
3783
3784 2009-09-16 Jie Zhang <jie.zhang@analog.com>
3785
3786 * configure.ac: Disable java and boehm-gc for bfin-*-*.
3787 * configure: Regenerate.
3788
3789 2009-09-08 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3790
3791 * configure.ac: Do not use $extrasub for replacing @if/@endif
3792 parts in Makefile; instead, use additional arguments to
3793 AC_CONFIG_COMMANDS to do the replacement manually, with several
3794 sed invocations, to avoid HP-UX sed command limits.
3795 * configure: Regenerate.
3796
3797 2009-09-04 Alexandre Oliva <aoliva@redhat.com>
3798
3799 * configure.ac (with-build-config): Document. Handle without.
3800 Handle missing argument.
3801 * configure: Rebuilt.
3802
3803 2009-09-03 Alexandre Oliva <aoliva@redhat.com>
3804
3805 * configure.ac (--with-build-config): New. Set BUILD_CONFIG.
3806 Default to bootstrap-debug only if compare-debug works.
3807 * configure: Rebuilt.
3808 * Makefile.tpl: Make BUILD_CONFIG configure-configurable.
3809 * Makefile.in: Rebuilt.
3810
3811 2009-09-01 Alexandre Oliva <aoliva@redhat.com>
3812
3813 * Makefile.tpl (BUILD_CONFIG): Default to bootstrap-debug.
3814 * Makefile.in: Rebuilt.
3815
3816 2009-09-02 Paolo Bonzini <bonzini@gnu.org>
3817
3818 * Makefile.tpl (AWK): Fix typo.
3819 * Makefile.in: Regenerate.
3820
3821 2009-09-02 Paolo Bonzini <bonzini@gnu.org>
3822
3823 * configure.ac: Detect awk and sed.
3824 * Makefile.def (flags_to_pass): Add AWK and SED.
3825 * Makefile.tpl (AWK, SED): New.
3826 (BASE_FLAGS_TO_PASS): Add AWK and SED.
3827 * configure: Regenerate.
3828 * Makefile.in: Regenerate.
3829
3830 2009-09-01 Tristan Gingold <gingold@adacore.com>
3831
3832 * setup.com: Ported to Itanium VMS. Can also build using DCL scripts.
3833 Remove logical names.
3834
3835 2009-08-31 Dave Korn <dave.korn.cygwin@gmail.com>
3836
3837 * ltmain.sh (func_normal_abspath): New function.
3838 (func_relative_path): Likewise.
3839 (func_mode_help): Document new -bindir option for link mode.
3840 (func_mode_link): Add new -bindir option, and use it to place
3841 output DLL if specified.
3842
3843 2009-08-24 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3844
3845 * configure.ac (AC_PREREQ): Bump to 2.64.
3846
3847 2009-08-22 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3848
3849 * README-maintainer-mode: Point directly to upstream locations
3850 for autoconf, automake, libtool, gettext, instead of copies on
3851 sources.redhat.com. Document required versions.
3852 * configure.ac: Do not substitute datarootdir, htmldir,
3853 pdfdir, docdir. Do not process --with-datarootdir,
3854 --with-htmldir, --with-pdfdir, --with-docdir.
3855 * configure: Regenerate.
3856
3857 * configure: Regenerate.
3858
3859 * compile: Sync from Automake 1.11.
3860 * depcomp: Likewise.
3861 * install-sh: Likewise.
3862 * missing: Likewise.
3863 * mkinstalldirs: Likewise.
3864 * ylwrap: Likewise.
3865
3866 2009-08-19 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3867
3868 * configure.ac: Call AC_DISABLE_OPTION_CHECKING.
3869 (baseargs): Add --disable-option-checking.
3870 * configure: Regenerate.
3871
3872 * Makefile.def (configure-target-libiberty): Depend on
3873 all-binutils and all-ld.
3874 (configure-target-newlib): Likewise.
3875 * Makefile.in: Regenerate.
3876
3877 2009-08-19 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3878
3879 Sync with GCC, merge:
3880
3881 2009-07-31 Christian Bruel <christian.bruel@st.com>
3882
3883 * configure.ac (sh*-*-elf): Don't add target-libgloss to noconfigdirs.
3884 * configure: Regenerate.
3885
3886 2009-07-06 Ian Lance Taylor <iant@google.com>
3887
3888 * configure.ac: Add missing comma in AC_ARG_WITH(boot-libs).
3889 * configure: Rebuild.
3890
3891 2009-06-26 Steve Ellcey <sje@cup.hp.com>
3892
3893 PR bootstrap/40338
3894 * configure.ac (comparestring): Create new variable.
3895 * Makefile.tpl (comparestring): Use to skip some comparisions.
3896 * configure: Regenerate.
3897 * Makefile.in: Regenerate.
3898
3899 2009-06-23 Ian Lance Taylor <iant@google.com>
3900
3901 * configure.ac: Add --enable-build-with-cxx. When set, add c++ to
3902 boot_languages. Only bootstrap target libraries listed in
3903 target_libs for some boot language. Add --with-stage1-ldflags,
3904 --with-stage1-libs, --with-boot-ldflags, --with-boot-libs. Remove
3905 with_host_libstdcxx from ppllibs. Only add -fkeep-inline-functions
3906 if not building with C++.
3907 * Makefile.def: For target_module libstdc++-v3, set bootstrap=true.
3908 * Makefile.tpl (STAGE1_LDFLAGS, STAGE1_LIBS): New variables.
3909 (POSTSTAGE1_LDFLAGS, POSTSTAGE1_LIBS): New variables.
3910 (HOST_EXPORTS): Add STAGE1_LDFLAGS to LDFLAGS. Export HOST_LIBS.
3911 (POSTSTAGE1_HOST_EXPORTS): Set CXX and CXX_FOR_BUILD. Add
3912 POSTSTAGE1_LDFLAGS to LDFLAGS. Export HOST_LIBS.
3913 (POSTSTAGE1_FLAGS_TO_PASS): Likewise.
3914 * configure, Makefile.in: Rebuild.
3915
3916 2009-06-08 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3917
3918 * configure.ac: Detect MPC in default directory.
3919 * configure: Regenerate.
3920
3921 2009-06-02 Richard Sandiford <r.sandiford@uk.ibm.com>
3922
3923 * configure.ac (powerpc-*-aix*, rs6000-*-aix*): Add target-newlib
3924 to noconfdirs.
3925 * configure: Regenerate.
3926
3927 2009-05-29 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3928
3929 * Makefile.def: Add MPC support and dependencies.
3930 * configure.ac: Likewise. Reorganize GMP/MPFR checks.
3931
3932 * Makefile.in, configure: Regenerate.
3933
3934 2009-05-24 Nicolas Roche <roche@adacore.com>
3935
3936 * Makefile.tpl (compare-target): Skip ./ada/*tools directories.
3937 * Makefile.in: Regenerate.
3938
3939 2009-05-21 Dave Korn <dave.korn.cygwin@gmail.com>
3940
3941 * configure.ac (cygwin noconfigdirs): Remove libgcj.
3942 * configure: Regenerate.
3943
3944 2009-05-07 Dave Korn <dave.korn.cygwin@gmail.com>
3945
3946 * configure.ac ($with_ppl): Default to no if not supplied.
3947 ($with_cloog): Likewise.
3948 configure: Regenerate.
3949
3950 2009-04-24 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3951
3952 PR bootstrap/39739
3953 * configure.ac (extra_mpfr_configure_flags): Set and AC_SUBST.
3954 * Makefile.def (module=mpfr): Use extra_mpfr_configure_flags.
3955
3956 * configure, Makefile.in: Regenerate.
3957
3958 2009-04-14 Jakub Jelinek <jakub@redhat.com>
3959
3960 * configure.ac: Change copyright header to refer to version
3961 3 of the GNU General Public License and to point readers at the
3962 COPYING3 file and the FSF's license web page.
3963 * Makefile.def: Likewise.
3964 * Makefile.tpl: Likewise.
3965 * Makefile.in: Regenerate.
3966
3967 2009-04-09 Jack Howarth <howarth@bromo.med.uc.edu>
3968
3969 * configure.ac: Restore match for darwin9 or later. Use double
3970 brackets since regeneration eats one pair.
3971 * configure: Regenerate.
3972
3973 2009-08-18 Christopher Faylor <me+cygwin@cgf.cx>
3974
3975 * MAINTAINERS: Perform some obvious fixups.
3976
3977 2009-08-17 Ben Elliston <bje@au.ibm.com>
3978
3979 * config.sub, config.guess: Update from upstream sources.
3980
3981 2009-08-06 Michael Eager <eager@eagercon.com>
3982
3983 * configure.ac: Add Microblaze target.
3984 * configure: Regenerate.
3985
3986 2009-07-02 Tristan Gingold <gingold@adacore.com>
3987
3988 * configure.ac: Do not exclude gas for i386-*-darwin.
3989 Add a case for x86_64-*-darwin.
3990 * configure: Regenerate.
3991
3992 2009-06-26 Doug Evans <dje@sebabeach.org>
3993
3994 * Makefile.def (host_modules): Add cgen.
3995 * Makefile.in: Regenerate.
3996 * configure.ac (host_tools): Add cgen.
3997 * configure: Regenerate.
3998
3999 2009-06-17 Michael Eager <eager@eagercon.com>
4000
4001 * COPYING.LIBGLOSS: Add Xilinx license.
4002
4003 2009-06-15 Ryan Mansfield <rmansfield@qnx.com>
4004
4005 * configure.ac: Define is_elf for QNX Neutrino targets.
4006 * configure: Regenerate.
4007
4008 2009-06-03 Jerome Guitton <guitton@adacore.com>
4009 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4010
4011 * Makefile.tpl (all): Avoid a trailing backslash.
4012 * Makefile.in: Regenerate.
4013
4014 2009-06-03 Ben Elliston <bje@au.ibm.com>
4015
4016 * config.sub, config.guess: Update from upstream sources.
4017
4018 2009-06-02 Alexandre Oliva <aoliva@redhat.com>
4019
4020 * Makefile.tpl ([+compare-target+]): Compare all stage
4021 directories, rather than just gcc.
4022 * Makefile.in: Rebuilt.
4023
4024 2009-05-28 Doug Kwan <dougkwan@google.com>
4025
4026 * configure.ac: Support gold for target arm*-*-*.
4027 * configure: Regenerate.
4028
4029 2009-05-27 Alexandre Oliva <aoliva@redhat.com>
4030
4031 * Makefile.tpl (all): Avoid harmless warning in make all when
4032 gcc-bootstrap is enabled but stage_last does not exist.
4033 * Makefile.in: Rebuilt.
4034
4035 2009-05-25 Tristan Gingold <gingold@adacore.com>
4036
4037 * setup.com: Complete the file with configuration and build.
4038
4039 2009-05-18 Alexandre Oliva <aoliva@redhat.com>
4040
4041 PR other/40159
4042 * Makefile.tpl (all): Don't assume gcc-bootstrap and
4043 gcc-no-bootstrap are mutually exclusive.
4044 * Makefile.in: Rebuilt.
4045
4046 2009-05-18 Alexandre Oliva <aoliva@redhat.com>
4047
4048 PR other/40159
4049 * Makefile.tpl (all): Don't end with unconditional success.
4050 * Makefile.in: Rebuilt.
4051
4052 2009-05-12 Alexandre Oliva <aoliva@redhat.com>
4053
4054 PR target/37137
4055 * Makefile.def (flags_to_pass): Remove redundant and incomplete
4056 STAGE1_CFLAGS, STAGE2_CFLAGS, STAGE3_CFLAGS, and STAGE4_CFLAGS.
4057 Add FLAGS_FOR_TARGET and BUILD_CONFIG.
4058 (bootstrap_stage): Remove bootstrap-debug custom stages. Turn
4059 stage_configureflags, stage_cflags and stage_libcflags into
4060 explicit Makefile macros.
4061 * Makefile.tpl (HOST_EXPORTS, EXTRA_HOST_FLAGS): Pass GCJ and
4062 GFORTRAN.
4063 (POSTSTAGE1_HOST_EXPORTS): Add XGCC_FLAGS_FOR_TARGET and TFLAGS to
4064 CC. Set CC_FOR_BUILD from CC.
4065 (BASE_TARGET_EXPORTS, RAW_CXX_TARGET_EXPORTS,
4066 NORMAL_TARGET_EXPORTS): Move SYSROOT_CFLAGS_FOR_TARGET and
4067 DEBUG_PREFIX_CFLAGS_FOR_TARGET from CFLAGS and CXXFLAGS to
4068 XGCC_FLAGS_FOR_TARGET. Add it along with TFLAGS to CC, CXX, GCJ,
4069 and GFORTRAN.
4070 (TFLAGS, STAGE_CFLAGS, STAGE_TFLAGS, STAGE_CONFIGURE_FLAGS): New.
4071 (_LIBCFLAGS): Renamed to _TFLAGS.
4072 (do-compare-debug, do-compare3-debug): Drop.
4073 (CC, GCC_FOR_TARGET, CXX_FOR_TARGET, RAW_CXX_FOR_TARGET,
4074 GCJ_FOR_TARGET, GFORTRAN_FOR_TARGET): Remove FLAGS_FOR_TARGET.
4075 (FLAGS_FOR_TARGET, SYSROOT_CFLAGS_FOR_TARGET,
4076 DEBUG_PREFIX_CFLAGS_FOR_TARGET): Move down.
4077 (XGCC_FLAGS_FOR_TARGET): New.
4078 (BASE_FLAGS_TO_PASS): Pass STAGEid_CFLAGS, STAGEid_TFLAGS and TFLAGS.
4079 (EXTRA_HOST_FLAGS): Pass GCJ and GFORTRAN.
4080 (POSTSTAGE1_FLAGS_TO_PASS): Move SYSROOT_CFLAGS_FOR_TARGET and
4081 DEBUG_PREFIX_CFLAGS_FOR_TARGET from CFLAGS, CXXFLAGS, LIBCFLAGS,
4082 LIBCXXFLAGS to XGCC_FLAGS_FOR_TARGET. Add it along with TFLAGS
4083 to CC, CXX, GCJ, and GFORTRAN. Pass XGCC_FLAGS_FOR_TARGET and
4084 TFLAGS.
4085 (BUILD_CONFIG): Include if requested.
4086 (all): Set TFLAGS on bootstrap.
4087 (configure-stageid-prefixmodule): Pass TFLAGS, adjust FLAGS.
4088 (all-stageid-prefixmodule): Likewise.
4089 (do-clean, distclean-stageid): Set TFLAGS.
4090 (restrap): Fix whitespace.
4091 * Makefile.in: Rebuilt.
4092
4093 2009-04-25 Eric Botcazou <ebotcazou@adacore.com>
4094
4095 * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Add GNATBIND.
4096 (POSTSTAGE1_FLAGS_TO_PASS): Pick up exported value for GNATBIND.
4097 * Makefile.in: Regenerate.
4098
4099 2009-04-24 Eli Zaretskii <eliz@gnu.org>
4100
4101 * config.guess (pc:*:*:*): Return i586-pc-msdosdjgpp, for
4102 consistency with config.sub. (Update from upstream sources.)
4103
4104 2009-04-21 Joseph Myers <joseph@codesourcery.com>
4105
4106 * texinfo/texinfo.tex: Update to version 2009-03-28.05.
4107
4108 2009-04-17 Ben Elliston <bje@au.ibm.com>
4109
4110 * config.sub, config.guess: Update from upstream sources.
4111
4112 2009-04-15 Anthony Green <green@moxielogic.com>
4113
4114 * configure.ac: Add moxie support.
4115 * configure: Rebuilt.
4116
4117 2009-04-09 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4118
4119 * configure.ac: Bump minimum GMP/MPFR versions to 4.2 and 2.3.1.
4120 * configure: Regenerate.
4121
4122 2009-04-09 H.J. Lu <hongjiu.lu@intel.com>
4123
4124 PR gas/10039
4125 * configure.ac: Require texinfo 4.7.
4126 * configure: Regenerated.
4127
4128 2009-04-09 Steve Ellcey <sje@cup.hp.com>
4129
4130 * Makefil.def (languages): New entries.
4131 * Makefile.tpl (check-gcc-*): New generic target.
4132 * Makefile.in: Regenerate.
4133
4134 2009-03-27 Eli Zaretskii <eliz@gnu.org>
4135
4136 * djunpack.bat: Use ".." quoting in Sed command, for the sake of
4137 Windows builds of Sed.
4138
4139 2009-03-18 Tom Tromey <tromey@redhat.com>
4140
4141 * configure: Rebuild.
4142 * configure.ac (host_libs): Add libiconv.
4143 * Makefile.in: Rebuild.
4144 * Makefile.def (host_modules): Add libiconv.
4145 (configure-gdb, all-gdb): Depend on libiconv.
4146
4147 2009-03-16 Tristan Gingold <gingold@adacore.com>
4148
4149 * configure.ac: Treat gdb as supported on x86_64-darwin.
4150 * configure: Regenerate.
4151
4152 2009-03-16 Joseph Myers <joseph@codesourcery.com>
4153
4154 Merge from GCC:
4155
4156 2009-03-16 Joseph Myers <joseph@codesourcery.com>
4157
4158 * configure.ac (--with-host-libstdcxx): New option.
4159 * configure: Regenerate.
4160
4161 2009-01-29 Robert Millan <rmh@aybabtu.com>
4162
4163 * configure.ac: Recognize GNU/kOpenSolaris (*-*-kopensolaris*-gnu).
4164 * configure: Regenerate.
4165
4166 2009-01-12 Sebastian Pop <sebastian.pop@amd.com>
4167
4168 PR tree-optimization/38515
4169 * configure.ac (cloog-polylib): Removed.
4170 (with_ppl, with_cloog): Test for "no".
4171 * configure: Regenerated.
4172
4173 2009-03-01 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4174
4175 Backport from git Libtool:
4176
4177 2009-01-19 Robert Millan <rmh@aybabtu.com>
4178 Support GNU/kOpenSolaris.
4179 * libltdl/m4/libtool.m4 (_LT_SYS_DYNAMIC_LINKER)
4180 (_LT_CHECK_MAGIC_METHOD, _LT_COMPILER_PIC, _LT_LINKER_SHLIBS)
4181 (_LT_LANG_CXX_CONFIG) [kopensolaris*-gnu]: Recognize
4182 GNU/kOpenSolaris.
4183
4184 2009-02-05 Andreas Schwab <schwab@suse.de>
4185
4186 * Makefile.tpl (stage_last): Define $r and $s before using
4187 $(RECURSE_FLAGS_TO_PASS).
4188 * Makefile.in: Regenerate
4189
4190 2009-01-21 Jeff Johnston <jjohnstn@redhat.com>
4191
4192 * COPYING.NEWLIB: Add ARM license.
4193
4194 2009-01-16 Alan Modra <amodra@bigpond.net.au>
4195
4196 * Makefile.def (configure-opcodes): Depend on configure-libiberty.
4197 (all-opcodes): Depend on all-libiberty.
4198 * Makefile.in: Regenerate.
4199
4200 2009-01-15 Douglas B Rupp <rupp@gnat.com>
4201
4202 * configure.ac (ia64*-*-*vms*): Add case with no gdb or ld support.
4203 * configure: Regenerate.
4204
4205 2008-12-18 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4206
4207 Backport link test fix from upstream Libtool:
4208
4209 * libltdl.m4 (_LT_SYS_DYNAMIC_LINKER, _LT_LINKER_SHLIBS):
4210 Add cache variables to tests that require the linker to work.
4211 For shlibpath_overrides_runpath, this also changes the semantics
4212 to let the result from the C compiler take precedence.
4213 compiler take precedence.
4214
4215 2008-12-02 Ben Elliston <bje@au.ibm.com>
4216
4217 * config.sub, config.guess: Update from upstream sources.
4218
4219 2008-12-17 Jeff Johnston <jjohnstn@redhat.com>
4220
4221 * COPYING.NEWLIB: Updated.
4222 * COPYING.LIBGLOSS: Ditto.
4223
4224 2008-12-16 Paolo Bonzini <bonzini@gnu.org>
4225
4226 Sync with GCC:
4227
4228 2008-12-12 Sebastian Pop <sebastian.pop@amd.com>
4229
4230 * configure.ac (ppllibs): Add by default the lib flags.
4231 * configure: Regenerate.
4232
4233 2008-12-04 Jack Howarth <howarth@bromo.med.uc.edu>
4234
4235 * configure.ac: Add double brackets on darwin[912].
4236 * configure: Regenerate.
4237
4238 2008-12-02 Jack Howarth <howarth@bromo.med.uc.edu>
4239
4240 * configure.ac: Expand to darwin10 and later.
4241 * configure: Regenerate.
4242
4243 2008-12-02 Andreas Schwab <schwab@suse.de>
4244
4245 * Makefile.def: configure-target-boehm-gc depends on
4246 all-target-libstdc++-v3.
4247 * Makefile.in: Regenerate.
4248
4249 2008-12-02 Ben Elliston <bje@au.ibm.com>
4250
4251 * config.sub, config.guess: Update from upstream sources.
4252
4253 2008-11-27 Joseph Myers <joseph@codesourcery.com>
4254
4255 Merge from GCC:
4256
4257 2007-12-02 Matthias Klose <doko@ubuntu.com>
4258
4259 * config-ml.in: Remove 64bit configure tests.
4260
4261 2008-05-14 Rafael Espindola <espindola@google.com>
4262
4263 * config-ml.in: don't handle --enable-shared and --enable-static.
4264
4265 2008-09-02 Sebastian Pop <sebastian.pop@amd.com>
4266 Tobias Grosser <grosser@fim.uni-passau.de>
4267 Jan Sjodin <jan.sjodin@amd.com>
4268 Harsha Jagasia <harsha.jagasia@amd.com>
4269 Dwarakanath Rajagopal <dwarak.rajagopal@amd.com>
4270 Konrad Trifunovic <konrad.trifunovic@inria.fr>
4271 Adrien Eliche <aeliche@isty.uvsq.fr>
4272
4273 Merge from graphite branch.
4274 * configure: Regenerate.
4275 * Makefile.in: Regenerate.
4276 * configure.ac (host_libs): Add ppl and cloog.
4277 Add checks for PPL and CLooG.
4278 * Makefile.def (ppl, cloog): Added modules and dependences.
4279 * Makefile.tpl (PPLLIBS, PPLINC, CLOOGLIBS, CLOOGINC): New.
4280 (HOST_PPLLIBS, HOST_PPLINC, HOST_CLOOGLIBS, HOST_CLOOGINC): New.
4281
4282 2008-09-03 Richard Guenther <rguenther@suse.de>
4283
4284 * configure.ac: Always pass -DCLOOG_PPL_BACKEND to the
4285 cloog test.
4286 * configure: Re-generate.
4287
4288 2008-09-03 Sebastian Pop <sebastian.pop@amd.com>
4289
4290 * configure.ac (--with-cloog-polylib): New.
4291 (--disable-cloog-version-check): New.
4292 (--disable-ppl-version-check): New.
4293 * configure: Re-generate.
4294
4295 2008-09-05 Richard Guenther <rguenther@suse.de>
4296
4297 * configure.ac: Initialize clooglibs to -lcloog.
4298 * configure: Re-generate.
4299
4300 2008-10-13 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4301
4302 * configure.ac (MPFR check): Bump minimum version to 2.3.0 and
4303 recommended version to 2.3.2.
4304
4305 * configure: Regenerate.
4306
4307 2008-10-31 Ben Elliston <bje@au.ibm.com>
4308
4309 * configure.ac (spu-*-*): Remove special case.
4310 * configure: Regenerate.
4311
4312 Complete comment text from GCC version of:
4313
4314 2008-08-31 Aaron W. LaFramboise <aaronavay62@aaronwl.com>
4315
4316 * configure.ac (RPATH_ENVVAR): Use PATH on Windows.
4317 (GCC_SHLIB_SUBDIR): New.
4318 * Makefile.tpl (HOST_LIB_PATH_gcc): Use GCC_SHLIB_SUBDIR.
4319 * configure: Regenerate.
4320 * Makefile.in: Regenerate.
4321
4322 2008-11-27 Tristan Gingold <gingold@adacore.com>
4323
4324 * configure.ac: Build gdb for i?86-*-darwin*
4325 * configure: Regenerated.
4326
4327 2008-11-14 Daniel Jacobowitz <dan@codesourcery.com>
4328
4329 PR bootstrap/38014
4330 PR bootstrap/37923
4331
4332 Revert:
4333
4334 2008-10-24 Daniel Jacobowitz <dan@codesourcery.com>
4335
4336 * Makefile.tpl (HOST_EXPORTS): Correct CPPFLAGS typo.
4337 * Makefile.in: Regenerated.
4338
4339 2008-10-22 Daniel Jacobowitz <dan@codesourcery.com>
4340
4341 PR gdb/921
4342 PR gdb/1646
4343 PR gdb/2175
4344 PR gdb/2176
4345
4346 * Makefile.def (flags_to_pass): Add CPPFLAGS_FOR_BUILD and CPPFLAGS.
4347 * Makefile.tpl (BUILD_EXPORTS): Set CPPFLAGS.
4348 (EXTRA_BUILD_FLAGS): Correct typo. Pass CPPFLAGS.
4349 (HOST_EXPORTS): Pass CPPFLAGS.
4350 (CPPFLAGS_FOR_BUILD, CPPFLAGS, CPPFLAGS_FOR_TARGET): Define.
4351 (LDFLAGS_FOR_TARGET): Initialize from configure script.
4352 (EXTRA_TARGET_FLAGS): Set CPPFLAGS.
4353 * Makefile.in, configure: Regenerated.
4354 * configure.ac: Set CPPFLAGS_FOR_TARGET, LDFLAGS_FOR_TARGET,
4355 and CPPFLAGS_FOR_BUILD.
4356
4357 2008-10-29 Stefan Schulze Frielinghaus <xxschulz@de.ibm.com>
4358
4359 * configure.ac [spu-*-*]: Do not set skipdirs.
4360 * configure: Re-generate.
4361
4362 2008-10-24 Daniel Jacobowitz <dan@codesourcery.com>
4363
4364 * Makefile.tpl (HOST_EXPORTS): Correct CPPFLAGS typo.
4365 * Makefile.in: Regenerated.
4366
4367 2008-10-22 Daniel Jacobowitz <dan@codesourcery.com>
4368
4369 PR gdb/921
4370 PR gdb/1646
4371 PR gdb/2175
4372 PR gdb/2176
4373
4374 * Makefile.def (flags_to_pass): Add CPPFLAGS_FOR_BUILD and CPPFLAGS.
4375 * Makefile.tpl (BUILD_EXPORTS): Set CPPFLAGS.
4376 (EXTRA_BUILD_FLAGS): Correct typo. Pass CPPFLAGS.
4377 (HOST_EXPORTS): Pass CPPFLAGS.
4378 (CPPFLAGS_FOR_BUILD, CPPFLAGS, CPPFLAGS_FOR_TARGET): Define.
4379 (LDFLAGS_FOR_TARGET): Initialize from configure script.
4380 (EXTRA_TARGET_FLAGS): Set CPPFLAGS.
4381 * Makefile.in, configure: Regenerated.
4382 * configure.ac: Set CPPFLAGS_FOR_TARGET, LDFLAGS_FOR_TARGET,
4383 and CPPFLAGS_FOR_BUILD.
4384
4385 2008-09-29 Peter O'Gorman <pogma@thewrittenword.com>
4386
4387 * libtool.m4: Update to libtool 2.2.6.
4388 * lt~obsolete.m4: Update to libtool 2.2.6.
4389 * ltmain.sh: Update to libtool 2.2.6.
4390 * ltsugar.m4: Update to libtool 2.2.6.
4391 * ltversion.m4: Update to libtool 2.2.6.
4392 * ltoptions.m4: Update to libtool 2.2.6.
4393 * ltgcc.m4: Update to match changes from libtool 2.2.6.
4394
4395 2008-08-31 Aaron W. LaFramboise <aaronavay62@aaronwl.com>
4396
4397 * configure.ac (RPATH_ENVVAR): Use PATH on Windows.
4398 (GCC_SHLIB_SUBDIR): New.
4399 * Makefile.tpl (HOST_LIB_PATH_gcc): Use GCC_SHLIB_SUBDIR.
4400 * configure: Regenerate.
4401 * Makefile.in: Regenerate.
4402
4403 2008-08-28 Tristan Gingold <gingold@adacore.com>
4404
4405 * configure.ac (powerpc-*-darwin*, i?86-*-darwin*,x86_64-*-darwin9):
4406 Enable bfd, binutils and opcodes.
4407 * configure: Regenerate.
4408
4409 2008-08-16 Nicolas Roche <roche@adacore.com>
4410
4411 * Makefile.tpl: Add BOOT_ADAFLAGS.
4412 * Makefile.in: Regenerate.
4413
4414 2008-08-16 Richard Sandiford <rdsandiford@googlemail.com>
4415
4416 * configure.ac (mips*-*-*linux*, mips*-*-gnu*): Use mt-mips-gnu.
4417 * configure: Regenerate.
4418
4419 2008-07-30 Paolo Bonzini <bonzini@gnu.org>
4420
4421 Sync with gcc:
4422 2008-07-30 Paolo Bonzini <bonzini@gnu.org>
4423
4424 * configure.ac: Add makefile fragments for hpux.
4425 * Makefile.def (flags_to_pass): Add ADA_CFLAGS.
4426 * Makefile.tpl (HOST_EXPORTS): Pass ADA_CFLAGS.
4427 * configure: Regenerate.
4428 * Makefile.in: Regenerate.
4429
4430 2008-06-17 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4431
4432 * Makefile.tpl ($(srcdir)/configure): Update dependencies.
4433 * Makefile.in: Regenerate.
4434 * configure: Regenerate.
4435
4436 2008-06-18 Ian Lance Taylor <iant@google.com>
4437
4438 * src-release (BINUTILS_SUPPORT_DIRS): Remove mkdep and depcomp.
4439
4440 * src-release (BINUTILS_SUPPORT_DIRS): Add depcomp.
4441
4442 2008-06-17 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4443
4444 * configure: Regenerate.
4445
4446 2008-06-16 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4447
4448 * configure.ac: Set TOPLEVEL_CONFIGURE_ARGUMENTS early, when
4449 "$@" is still intact with both Autoconf 2.59 and 2.62.
4450 * configure: Regenerate.
4451
4452 2008-06-16 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4453
4454 * Makefile.tpl: Fix comment errors.
4455 * Makefile.in: Regenerate.
4456
4457 2008-06-13 Julian Brown <julian@codesourcery.com>
4458
4459 * configure.ac (arm*-*-linux-gnueabi): Don't disable building
4460 of libobjc for ARM EABI Linux.
4461 * configure: Regenerate.
4462
4463 2008-06-12 David S. Miller <davem@davemloft.net>
4464 David Edelsohn <edelsohn@gnu.org>
4465
4466 * configure.ac: Add powerpc*-*-* to gold supported targets.
4467 * configure: Regenerate.
4468
4469 2008-06-08 Joseph Myers <joseph@codesourcery.com>
4470
4471 PR tree-optimization/36218
4472 * Makefile.def (flags_to_pass): Add LDFLAGS_FOR_BUILD.
4473 * Makefile.tpl (EXTRA_BUILD_FLAGS): Define.
4474 (all prefix="build-"): Pass them to build-system sub-makes.
4475 * Makefile.in: Regenerate.
4476
4477 2008-05-16 Daniel Jacobowitz <dan@codesourcery.com>
4478
4479 * src-release (DEVO_SUPPORT): Add ChangeLog, MAINTAINERS,
4480 README-maintainer-mode, lt~obsolete.m4, ltgcc.m4, depcomp,
4481 mkdep, and compile. Update comments.
4482 (ETC_SUPPORT): Add ChangeLog and update comments.
4483
4484 2008-05-11 Ian Lance Taylor <iant@google.com>
4485
4486 * src-release (BINUTILS_SUPPORT_DIRS): Add elfcpp and gold.
4487
4488 2008-04-18 Paolo Bonzini <bonzini@gnu.org>
4489
4490 Sync with gcc:
4491 2008-04-18 Paolo Bonzini <bonzini@gnu.org>
4492
4493 PR bootstrap/35457
4494 * configure.ac: Include override.m4.
4495 * configure: Regenerate.
4496
4497 2008-04-18 Paolo Bonzini <bonzini@gnu.org>
4498
4499 * Makefile.tpl (restrap): Call `make all' using double-colon rules.
4500 * Makefile.in: Regenerate.
4501
4502 2008-04-11 Eric B. Weddington <eweddington@cso.atmel.com>
4503
4504 * configure.ac: Do not build libssp for the AVR.
4505 * configure: Regenerate.
4506
4507 2008-04-18 Nick Clifton <nickc@redhat.com>
4508
4509 * MAINTAINERS: Replace reference to configure.in with reference to
4510 configure.ac.
4511
4512 2008-04-18 M R Swami Reddy <MR.Swami.Reddy@nsc.com>
4513
4514 * configure.ac (cr16-*-*): Add case for cr16 target and include gdb
4515 as nonconfigurable directories list.
4516 * configure: Regenerate.
4517
4518 2008-04-14 David S. Miller <davem@davemloft.net>
4519
4520 * configure.ac: Add sparc*-*-* to gold supported targets.
4521 * configure: Regenerate.
4522
4523 2008-04-14 Ben Elliston <bje@au.ibm.com>
4524
4525 * config.sub, config.guess: Update from upstream sources.
4526
4527 2008-04-12 Hans-Peter Nilsson <hp@axis.com>
4528
4529 * Makefile.tpl <gcc>: Error early unless at least GNU make 3.80.
4530 * Makefile.in: Regenerate.
4531
4532 2008-04-07 Ian Lance Taylor <iant@google.com>
4533
4534 * Makefile.def: check-gold depends upon all-binutils.
4535 * Makefile.in: Regenerate.
4536
4537 2008-04-04 Nick Clifton <nickc@redhat.com>
4538
4539 PR binutils/4334
4540 * configure.ac: Run ACX_CHECK_CYGWIN_CAT_WORKS for cygwin hosted
4541 builds.
4542 * configure: Regenerate.
4543
4544 2008-04-04 NightStrike <NightStrike@gmail.com>
4545
4546 PR other/35151
4547 * configure.ac: Combine rules for mingw32 and mingw64.
4548 * configure: Regenerate.
4549
4550 2008-03-27 Paolo Bonzini <bonzini@gnu.org>
4551
4552 * Makefile.tpl (PICFLAG, PICFLAG_FOR_TARGET): Remove.
4553 * Makefile.in: Regenerate.
4554
4555 2008-03-20 Ian Lance Taylor <iant@google.com>
4556
4557 * configure.ac: Add support for --enable-gold.
4558 * Makefile.def: Add gold as a directory like ld.
4559 * configure, Makefile.in: Regenerate.
4560
4561 2008-03-19 Andreas Krebbel <krebbel1@de.ibm.com>
4562
4563 * opcodes/s390-mkopc.c (s390_opcode_cpu_val): S390_OPCODE_Z10 added.
4564 (s390_cond_extensions): Reduced extensions to the compare related.
4565 (main): z10 cpu type option added.
4566 (expandConditionalJump): Renamed to ...
4567 (insertExpandedMnemonic): ... this.
4568
4569 * opcodes/s390-opc.c: Re-group the operand format makros.
4570 (INSTR_RIE_RRPU, INSTR_RIE_RRP0, INSTR_RIE_RUPI,
4571 INSTR_RIE_R0PI, INSTR_RIE_RUPU, INSTR_RIE_R0PU, INSTR_RIE_R0IU,
4572 INSTR_RIE_R0I0, INSTR_RIE_R0UU, INSTR_RIE_R0U0,
4573 INSTR_RIE_RRUUU, INSTR_RIS_RURDI, INSTR_RIS_R0RDI, INSTR_RIS_RURDU,
4574 INSTR_RIS_R0RDU, INSTR_RRF_U0RR, INSTR_RRF_00RR, INSTR_RRS_RRRDU,
4575 INSTR_RRS_RRRD0, INSTR_RXY_URRD, INSTR_SIY_IRD, INSTR_SIL_RDI,
4576 INSTR_SIL_RDU): New instruction formats added.
4577 (MASK_RIE_RRPU, MASK_RIE_RRP0, MASK_RIE_RUPI, MASK_RIE_R0PI,
4578 MASK_RIE_RUPU, MASK_RIE_R0PU, MASK_RIE_R0IU, MASK_RIE_R0I0,
4579 MASK_RIE_R0UU, MASK_RIE_R0U0, MASK_RIE_RRUUU, MASK_RIS_RURDI,
4580 MASK_RIS_R0RDI, MASK_RIS_RURDU, MASK_RIS_R0RDU, MASK_RRF_U0RR,
4581 MASK_RRF_00RR, MASK_RRS_RRRDU, MASK_RRS_RRRD0, MASK_RXY_URRD,
4582 MASK_SIY_IRD, MASK_SIL_RDI, MASK_SIL_RDU): New instruction format
4583 masks added.
4584 (s390_opformats): New formats added "ris", "rrs", "sil".
4585 * opcodes/s390-opc.txt: Add the conditional jumps with the
4586 extensions removed from automatic expansion in s390-mkopc.c manually.
4587 (asi - trtre): Add new System z10 EC instructions.
4588 * include/opcode/s390.h (s390_opcode_cpu_val): S390_OPCODE_Z10 added.
4589
4590 2008-03-17 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4591
4592 * configure.ac: m4_include config/proginstall.m4.
4593 * configure: Regenerate.
4594
4595 2008-03-16 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4596
4597 Backport from upstream Libtool:
4598
4599 2007-10-12 Eric Blake <ebb9@byu.net>
4600
4601 Deal with Autoconf 2.62's semantic change in m4_append.
4602 * ltsugar.m4 (lt_append): Replace broken versions of
4603 m4_append.
4604 (lt_if_append_uniq): Don't require separator to be overquoted,
4605 and avoid broken m4_append.
4606 (lt_dict_add): Fix typo.
4607 * libtool.m4 (_LT_DECL): Don't overquote separator.
4608
4609 2008-03-13 David Edelsohn <edelsohn@gnu.org>
4610
4611 * config.rpath: Add AIX 6 support.
4612
4613 2008-03-13 Paolo Bonzini <bonzini@gnu.org>
4614
4615 * Makefile.def (stageprofile). Remove -fprofile-generate
4616 from stage_libcflags.
4617 * Makefile.in: Regenerate.
4618
4619 2008-03-13 Ben Elliston <bje@au.ibm.com>
4620
4621 * config.sub, config.guess: Update from upstream sources.
4622
4623 2008-03-06 Florian Krohm <fkrohm@us.ibm.com>
4624
4625 * s390-opc.c (INSTR_RSL_R0RD): Fix operands.
4626 * s390-opc.txt (cmpsc): Duplicate entry removed.
4627 (dxr, sqdr, sqer, cxfbr, cdfbr, cefbr, lzer, lzdr, lzxr,
4628 cegbr, cdgbr, cxgbr, cegr, cdgr, cxgr, cxfr, cdfr, cefr, fixr, fidr,
4629 fier, cu42, cu41): Fix operand format.
4630
4631 2008-02-20 Paolo Bonzini <bonzini@gnu.org>
4632
4633 PR bootstrap/32009
4634 PR bootstrap/32161
4635
4636 * configure.ac (CFLAGS_FOR_TARGET, CXXFLAGS_FOR_TARGET): Compute here.
4637 * configure: Regenerate.
4638
4639 * Makefile.def: Define stage_libcflags for all bootstrap stages.
4640 * Makefile.tpl (BOOT_LIBCFLAGS, STAGE2_LIBCFLAGS, STAGE3_LIBCFLAGS,
4641 STAGE4_LIBCFLAGS): New.
4642 (CFLAGS_FOR_TARGET, CXXFLAGS_FOR_TARGET): Subst from autoconf, without
4643 $(SYSROOT_CFLAGS_FOR_TARGET) and $(DEBUG_PREFIX_CFLAGS_FOR_TARGET).
4644 (BASE_TARGET_EXPORTS): Append them here to C{,XX}FLAGS.
4645 (EXTRA_TARGET_FLAGS): Append them here to {LIB,}C{,XX}FLAGS.
4646 (configure-stage[+id+]-[+prefix+][+module+]): Pass stage_libcflags
4647 for target modules. Don't export LIBCFLAGS.
4648 (all-stage[+id+]-[+prefix+][+module+]): Pass stage_libcflags; pass
4649 $(BASE_FLAGS_TO_PASS) where [+args+] was passed, and [+args+] after
4650 the overridden CFLAGS_FOR_TARGET and CXXFLAGS_FOR_TARGET.
4651 (invocations of `all'): Replace $(TARGET_FLAGS_TO_PASS) with
4652 $(EXTRA_TARGET_FLAGS), $(FLAGS_TO_PASS) with $(EXTRA_HOST_FLAGS).
4653 * Makefile.in: Regenerate.
4654
4655 2008-02-16 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4656
4657 PR libgcj/33085
4658 * libtool.m4 (_LT_COMPILER_PIC) [ mingw, cygwin ] <GCJ>:
4659 Do not use -DDLL_EXPORT. Backport from upstream.
4660
4661 2008-02-14 Nick Clifton <nickc@redhat.com>
4662
4663 Import this patch from gcc:
4664 2008-01-24 David Edelsohn <edelsohn@gnu.org>
4665
4666 * libtool.m4: Backport AIX 6 support from ToT Libtool.
4667
4668 2008-02-02 Hans-Peter Nilsson <hp@axis.com>
4669
4670 * configure.ac: Enable fortran for cris-*-elf and crisv32-*-elf.
4671 * configure: Regenerate.
4672
4673 2008-01-31 Marc Gauthier <marc@tensilica.com>
4674
4675 * configure.ac (xtensa*-*-*): Recognize processor variants.
4676 * configure: Regenerate.
4677
4678 2008-01-30 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4679
4680 PR bootstrap/34922
4681 * configure.ac (PARSE_ARGS): Push suitable setting of
4682 ac_subdirs_all, for `./configure --help=recursive'.
4683 Handle `+' in generic toplevel directory disabling.
4684 * configure: Regenerate.
4685
4686 2008-01-23 Ben Elliston <bje@au.ibm.com>
4687
4688 * config.sub, config.guess: Update from upstream sources.
4689
4690 2008-01-08 Ben Elliston <bje@au.ibm.com>
4691
4692 * config.sub, config.guess: Update from upstream sources.
4693
4694 2007-12-19 Jeff Johnston <jjohnstn@redhat.com>
4695
4696 * COPYING.LIBGLOSS: Update default copyright.
4697
4698 2007-12-19 Jeff Johnston <jjohnstn@redhat.com>
4699
4700 * COPYING.NEWLIB: Update default copyright.
4701
4702 2007-12-17 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4703
4704 * configure.ac: Change required MPFR from 2.2.0 -> 2.2.1.
4705 Change recommended MPFR from 2.2.1 > 2.3.0.
4706 * configure: Regenerate.
4707
4708 2007-12-13 Richard Sandiford <rsandifo@nildram.co.uk>
4709
4710 * Makefile.tpl (CFLAGS_FOR_TARGET): Add -g.
4711 (CXXFLAGS_FOR_TARGET): Add -O2 -g.
4712 * Makefile.in: Regenerate.
4713
4714 2007-12-10 Andreas Tobler <a.tobler@schweiz.org>
4715
4716 * configure.ac: Enable libjava for x86_64-*-darwin9.
4717 * configure: Regenerate.
4718
4719 2007-12-05 Ben Elliston <bje@au.ibm.com>
4720
4721 * config.sub, config.guess: Update from upstream sources.
4722
4723 2007-11-28 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4724
4725 * config-ml.in: Robustify against white space in absolute file
4726 names.
4727
4728 * config-ml.in (multi-clean): Substitute ${Makefile}.
4729 Remove superfluous ${Makefile} in list.
4730
4731 2007-10-23 Daniel Jacobowitz <dan@codesourcery.com>
4732
4733 * Makefile.def (dependencies): Make configure-gdb depend on
4734 all-intl.
4735 * Makefile.in: Regenerated.
4736
4737 2007-10-15 Patrick Mansfield <patmans@us.ibm.com>
4738
4739 * Makefile.def: To avoid problems running with parallel makes,
4740 build newlib before libgloss so that target specific header
4741 files are availble.
4742 * Makefile.in: Regenerate.
4743
4744 2007-10-11 Daniel Jacobowitz <dan@codesourcery.com>
4745
4746 * Makefile.def (dependencies): Add all-gdb -> all-libdecnumber.
4747 * Makefile.in: Regenerate.
4748
4749 2007-10-11 Daniel Jacobowitz <dan@codesourcery.com>
4750
4751 * src-release (GDB_SUPPORT_DIRS): Add libdecnumber.
4752 * libdecnumber: New directory, imported from GCC.
4753
4754 2007-10-08 Mike Frysinger <vapier@gentoo.org>
4755
4756 * configure.ac (CFLAGS_FOR_BUILD, CXXFLAGS_FOR_BUILD,
4757 LDFLAGS_FOR_BUILD): Default them to host flags only for $host = $build.
4758 Set default CXXFLAGS_FOR_BUILD to CXXFLAGS, not CFLAGS. Set default
4759 LDFLAGS_FOR_BUILD to LDFLAGS, not CFLAGS.
4760 * configure: Regenerate.
4761
4762 2007-10-01 Paolo Bonzini <bonzini@gnu.org>
4763
4764 * Makefile.tpl (AR_FOR_BUILD, AS_FOR_BUILD, CXX_FOR_BUILD,
4765 DLLTOOL_FOR_BUILD, GCJ_FOR_BUILD, GFORTRAN_FOR_BUILD,
4766 LDFLAGS_FOR_BUILD, LD_FOR_BUILD, NM_FOR_BUILD, RANLIB_FOR_BUILD,
4767 WINDMC_FOR_BUILD, WINDRES_FOR_BUILD): Use autoconf substitutions.
4768 * configure.ac: Default them to host tools for $host = $build.
4769 Subst them.
4770
4771 * configure: Regenerate.
4772 * Makefile.in: Regenerate.
4773
4774 2007-09-20 Richard Sandiford <rsandifo@nildram.co.uk>
4775
4776 * configure.ac (mipsisa*-*-elfoabi*): New stanza.
4777 * configure: Regenerate.
4778
4779 2007-09-19 Benjamin Kosnik <bkoz@redhat.com>
4780
4781 * configure.ac (TOPLEVEL_CONFIGURE_ARGUMENTS): Move libgomp before
4782 libstdc++.
4783 * Makefile.def: Add libgomp config as a maybe dependency for libstdc++.
4784 * configure: Regenerate.
4785 * Makefile.in: Regenerate.
4786
4787 2007-09-17 Andreas Schwab <schwab@suse.de>
4788
4789 * configure.ac: Raise minimum makeinfo version to 4.6.
4790 * configure: Regenerate.
4791
4792 2007-09-15 Alan Modra <amodra@bigpond.net.au>
4793
4794 * configure.ac: Correct makeinfo version check.
4795 * configure: Regenerate.
4796
4797 2007-09-14 Richard Sandiford <richard@codesourcery.com>
4798
4799 * configure.ac (mips*-sde-elf*): New stanza. Add target-libiberty
4800 to $skipdirs and only disable gprof for newlib. Use the normal
4801 mips*-elf* handling in other respects.
4802 * configure: Regnerate.
4803
4804 2007-09-12 David Daney <ddaney@avtrex.com>
4805
4806 * configure.ac: Remove mips64*-*-linux* noconfigdirs section, thus
4807 enabling libgcj.
4808 * configure: Regenerate.
4809
4810 2007-09-12 Richard Guenther <rguenther@suse.de>
4811
4812 * configure.ac (--enable-stage1-checking): If neither --enable-checking
4813 nor --disable-checking is provided also turn on yes and types
4814 checking for stage1.
4815 * configure: Re-generate.
4816
4817 2007-09-11 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
4818
4819 PR target/33281
4820 * configure.ac: Use config/mh-mingw on mingw.
4821 * configure: Regenerate.
4822
4823 2007-09-10 Rask Ingemann Lambertsen <rask@sygehus.dk>
4824
4825 PR other/32154
4826 * configure.ac: For libgloss targets, point the linker to the linker
4827 script, startup code and simulator library.
4828 * configure: Regenerate.
4829
4830 2007-09-09 Andrew Haley <aph@redhat.com>
4831
4832 * configure.ac (noconfigdirs): Remove target-libffi and
4833 target-libjava.
4834
4835 2007-08-29 Nick Clifton <nickc@redhat.com>
4836
4837 * config.sub, config.guess: Update from upstream sources.
4838
4839 2007-08-21 Richard Guenther <rguenther@suse.de>
4840
4841 * configure.ac: Add types checking to stage1 checking flags.
4842 * configure: Regenerate.
4843
4844 2007-08-18 Paul Brook <paul@codesourcery.com>
4845 Joseph Myers <joseph@codesourcery.com>
4846
4847 * Makefile.tpl (DEBUG_PREFIX_CFLAGS_FOR_TARGET): New.
4848 (CFLAGS_FOR_TARGET, CXXFLAGS_FOR_TARGET): Include it.
4849 * Makefile.in: Regenerate.
4850 * configure.ac (--with-debug-prefix-map): New.
4851 * configure: Regenerate.
4852
4853 2007-08-17 Richard Sandiford <richard@codesourcery.com>
4854 Nigel Stephens <nigel@mips.com>
4855
4856 * configure.ac (mips*-sde-elf*): New stanza. Use config/mt-sde
4857 as target_makefile_frag.
4858 * configure: Regenerate.
4859
4860 2007-08-16 Alexandre Oliva <aoliva@redhat.com>
4861
4862 * Makefile.def (STAGE2_CFLAGS, STAGE3_CFLAGS, STAGE4_CFLAGS):
4863 Add to flags_to_pass. Adjust uses of BOOT_CFLAGS.
4864 (bootstrap2-debug, bootstrap-debug): New bootstrap stages.
4865 * Makefile.tpl (STAGE2_CFLAGS, STAGE3_CFLAGS, STAGE4_CFLAGS): New.
4866 (do-compare, do-compare3, do-compare-debug): New.
4867 ([+compare-target+]): Use them.
4868
4869 2007-08-16 Alexandre Oliva <aoliva@redhat.com>
4870
4871 * Makefile.def (STAGE2_CFLAGS, STAGE3_CFLAGS, STAGE4_CFLAGS):
4872 Add to flags_to_pass. Adjust uses of BOOT_CFLAGS.
4873 (bootstrap2-debug, bootstrap-debug): New bootstrap stages.
4874 * Makefile.tpl (STAGE2_CFLAGS, STAGE3_CFLAGS, STAGE4_CFLAGS): New.
4875 (do-compare, do-compare3, do-compare-debug): New.
4876 ([+compare-target+]): Use them.
4877
4878 2007-08-13 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4879 Ben Elliston <bje@au.ibm.com>
4880
4881 * configure.ac (TOPLEVEL_CONFIGURE_ARGUMENTS, baseargs): Pass
4882 --silent if $silent.
4883 * configure: Regenerate.
4884
4885 2007-08-12 Daniel Jacobowitz <dan@codesourcery.com>
4886
4887 * src-release (DEVO_SUPPORT): Add COPYING3 and COPYING3.LIB.
4888
4889 2007-07-17 Nick Clifton <nickc@redhat.com>
4890
4891 * COPYING3: New file. Contains version 3 of the GNU General
4892 Public License.
4893 * COPYING3.LIB: New file. Contains version 3 of the GNU
4894 Lesser General Public License.
4895
4896 2007-07-11 Bernd Schmidt <bernd.schmidt@analog.com>
4897
4898 * configure.ac: Fix my previous change to really match GCC.
4899 * configure: Regenerate.
4900
4901 2007-07-11 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4902
4903 * configure.ac: Rewrite 'configure --help' strings to look nicer.
4904 * configure: Regenerate.
4905
4906 2007-07-11 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4907
4908 * configure.ac: Add some missing m4 quotation.
4909 * configure: Regenerate.
4910
4911 2007-07-09 Kai Tietz <kai.tietz@onevision.com>
4912
4913 * Makefile.def: Add windmc tool to build.
4914 * Makefile.tpl: Likewise.
4915 * configure.ac: Likewise.
4916 * Makefile.in: Regenerate.
4917 * configure: Regenerate.
4918
4919 2007-07-05 H.J. Lu <hongjiu.lu@intel.com>
4920
4921 * lt~obsolete.m4: New. Import from 20070318 libtool.
4922
4923 2007-06-29 Bernd Schmidt <bernd.schmidt@analog.com>
4924
4925 * configure.ac: Don't add target-libmudflap to noconfigdirs for
4926 uclinux and linux-uclibc targets.
4927 * configure: Regenerate.
4928
4929 2007-06-28 DJ Delorie <dj@redhat.com>
4930
4931 * configure.ac (arm*-*-linux-gnueabi): Don't build libgloss if we're
4932 not building newlib.
4933 * configure: Regenerated.
4934
4935 2007-06-22 Daniel Jacobowitz <dan@codesourcery.com>
4936
4937 * src-release (DEVO_SUPPORT): Correct typos.
4938
4939 2007-06-18 Daniel Jacobowitz <dan@codesourcery.com>
4940
4941 * Makefile.def: Add dependency from configure-gdb to all-bfd.
4942 * Makefile.in: Regenerated.
4943
4944 2007-06-14 Paolo Bonzini <bonzini@gnu.org>
4945
4946 * Makefile.tpl (cleanstrap): Don't delete the toplevel Makefile.
4947 (distclean-stage[+id+]): Possibly delete stage_last.
4948 * Makefile.in: Regenerate.
4949
4950 2007-06-07 Ben Elliston <bje@au.ibm.com>
4951
4952 * config.sub, config.guess: Update from upstream sources.
4953
4954 2007-06-07 Ben Elliston <bje@au.ibm.com>
4955
4956 * Makefile.tpl: Fix spelling error.
4957 * Makefile.in: Regenerate.
4958
4959 2007-06-04 Paolo Bonzini <bonzini@gnu.org>
4960
4961 Sync with gcc:
4962 2007-05-30 Jakub Jelinek <jakub@redhat.com>
4963
4964 PR bootstrap/29382
4965 * configure.ac: Don't use -fkeep-inline-functions for GCC < 3.3.1.
4966 * configure: Rebuilt.
4967
4968 2007-06-01 Steve Ellcey <sje@cup.hp.com>
4969
4970 * libtool.m4 (LT_CMD_MAX_LEN): Try using getconf to set
4971 lt_cv_sys_max_cmd_len.
4972
4973 2007-05-31 Paolo Bonzini <bonzini@gnu.org>
4974
4975 * ltgcc.m4: Update from GCC.
4976
4977 2007-05-25 Andreas Tobler <a.tobler@schweiz.org>
4978
4979 * ltmain.sh: Fix Darwin verstring, remove ${wl}.
4980
4981 2007-05-24 Steve Ellcey <sje@cup.hp.com>
4982
4983 * ltmain.sh: Update from GCC.
4984 * libtool.m4: Update from GCC.
4985 * ltsugar.m4: New. Update from GCC.
4986 * ltversion.m4: New. Update from GCC.
4987 * ltoptions.m4: New. Update from GCC.
4988 * ltconfig: Remove.
4989 * ltcf-c.sh: Remove.
4990 * ltcf-cxx.sh: Remove.
4991 * ltcf-gcj.sh: Remove.
4992 * src-release: Update with new libtool file list.
4993
4994 2007-05-16 Paolo Bonzini <bonzini@gnu.org>
4995
4996 * Makefile.def (bootstrap_stage): Replace stage_make_flags with
4997 stage_cflags.
4998 * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS, POSTSTAGE1_FLAGS_TO_PASS):
4999 Remove CFLAGS/LIBCFLAGS.
5000 (configure-stage[+id+]-[+prefix+][+module+],
5001 all-stage[+id+]-[+prefix+][+module+]): Pass it from [+stage_cflags+].
5002 * Makefile.in: Regenerate.
5003
5004 2007-04-14 Steve Ellcey <sje@cup.hp.com>
5005
5006 * config-ml.in: Update from GCC.
5007
5008 2007-04-09 Daniel Jacobowitz <dan@codesourcery.com>
5009
5010 * src-release (do-proto-toplev): Process the support directories before
5011 the tool directory.
5012
5013 2007-03-21 Richard Sandiford <richard@codesourcery.com>
5014
5015 * configure.ac (TOPLEVEL_CONFIGURE_ARGUMENTS): Fix m4 quoting
5016 of glob. Quote arguments with single quotes too.
5017 * configure: Regenerate.
5018
5019 2007-03-12 Brooks Moses <brooks.moses@codesourcery.com>
5020
5021 * Makefile.def (fixincludes): Remove unneeded "missing" lines.
5022 * Makefile.in: Regenerate
5023
5024 2007-03-07 Andreas Schwab <schwab@suse.de>
5025
5026 * configure: Regenerate.
5027
5028 2007-03-01 Brooks Moses <brooks.moses@codesourcery.com>
5029
5030 * configure.ac: Add "--with-pdfdir" configure option,
5031 which defines pdfdir variable.
5032 * Makefile.def (target=fixincludes): Add install-pdf to
5033 missing targets.
5034 (recursive_targets): Add install-pdf target.
5035 (flags_to_pass): Add pdfdir.
5036 * Makefile.tpl: Add pdfdir handling, add do-install-pdf
5037 target.
5038 * configure: Regenerate
5039 * Makefile.in: Regenerate
5040
5041 2007-02-28 Eric Christopher <echristo@apple.com>
5042
5043 Revert:
5044 2006-12-07 Mike Stump <mrs@apple.com>
5045
5046 * Makefile.def (dependencies): Add dependency for
5047 install-target-libssp and install-target-libgomp on
5048 install-gcc.
5049 * Makefile.in: Regenerate.
5050
5051 2007-02-27 Matt Kraai <kraai@ftbfs.org>
5052
5053 * configure: Regenerate.
5054 * configure.ac: Move statements after variable declarations.
5055
5056 2007-02-19 Joseph Myers <joseph@codesourcery.com>
5057
5058 * configure.ac: Adjust for loop syntax.
5059 * configure: Regenerate.
5060
5061 2007-02-18 Alexandre Oliva <aoliva@redhat.com>
5062
5063 * configure: Rebuilt.
5064
5065 2007-02-18 Alexandre Oliva <aoliva@redhat.com>
5066
5067 * configure.ac: Drop multiple occurrences of --enable-languages,
5068 and fix its quoting.
5069 * configure: Rebuilt.
5070
5071 2007-02-17 Mark Mitchell <mark@codesourcery.com>
5072 Nathan Sidwell <nathan@codesourcery.com>
5073 Vladimir Prus <vladimir@codesourcery.com
5074 Joseph Myers <joseph@codesourcery.com>
5075
5076 * configure.ac (TOPLEVEL_CONFIGURE_ARGUMENTS): Fix quoting.
5077 * configure: Regenerate.
5078
5079 2007-02-13 Daniel Jacobowitz <dan@codesourcery.com>
5080
5081 * configure.ac (target_libraries): Move libgcc before libiberty.
5082 * configure: Regenerated.
5083
5084 2007-02-13 Paolo Bonzini <bonzini@gnu.org>
5085
5086 * configure: Regenerate again?
5087
5088 2007-02-13 Paolo Bonzini <bonzini@gnu.org>
5089
5090 * configure: Reapply PR30748 fix which was lost in the previous commit.
5091
5092 2007-02-13 Daniel Jacobowitz <dan@codesourcery.com>
5093 Paolo Bonzini <bonzini@gnu.org>
5094
5095 PR bootstrap/30753
5096 * configure.ac: Remove obsolete build / host tests. Use AC_PROG_CC
5097 unconditionally. Use AC_PROG_CXX. Use ACX_TOOL_DIRS to find $prefix.
5098 * configure: Regenerated.
5099
5100 2007-02-10 Paolo Bonzini <bonzini@gnu.org>
5101
5102 * configure: Regenerate.
5103
5104 2007-02-09 Daniel Jacobowitz <dan@codesourcery.com>
5105
5106 PR bootstrap/30748
5107 * configure.ac: Correct syntax for Solaris ksh.
5108 * configure: Regenerated.
5109
5110 2007-02-09 Paolo Bonzini <bonzini@gnu.org>
5111
5112 * Makefile.def: Sync with GCC.
5113 * Makefile.tpl: Sync with GCC.
5114 * Makefile.in: Regenerate.
5115 * configure: Regenerate.
5116
5117 2007-02-09 Daniel Jacobowitz <dan@codesourcery.com>
5118
5119 * Makefile.tpl (build_alias, host_alias, target_alias): Use
5120 noncanonical equivalents.
5121 * configure.in: Rename to...
5122 * configure.ac: ...this. Update AC_PREREQ. Prevent error for
5123 AS_FOR_TARGET. Set build_noncanonical, host_noncanonical, and
5124 target_noncanonical. Use them. Rewrite removal of configure
5125 arguments for autoconf 2.59. Discard variable settings. Force
5126 program_transform_name for native tools.
5127
5128 * Makefile.in: Regenerated.
5129 * configure: Regenerated with autoconf 2.59.
5130
5131 * src-release (DEVO_SUPPORT, do-proto-toplev): Expect configure.ac.
5132
5133 2007-02-08 Jeff Johnston <jjohnstn@redhat.com>
5134
5135 * COPYING.LIBGLOSS: Reformat default Red Hat
5136 license to fit within 80 columns.
5137 * COPYING.NEWLIB: Ditto.
5138
5139 2007-02-05 Dave Brolley <brolley@redhat.com>
5140
5141 * Contribute the following changes:
5142 2006-11-28 DJ Delorie <dj@redhat.com>
5143
5144 * configure.in: Fix typo for mep's target_makefile_frag.
5145 * configure: Regenerated.
5146
5147 2005-04-22 Richard Sandiford <rsandifo@redhat.com>
5148
5149 * configure.in (mep*): Add -mlibrary to FLAGS_FOR_TARGET.
5150 * configure: Regenerate.
5151
5152 2001-09-19 DJ Delorie <dj@redhat.com>
5153
5154 * configure.in (target_makefile_frag): use mt-mep
5155
5156 2001-06-12 Don Howard <dhoward@redhat.com>
5157
5158 * configure.in: Remove gdb from MeP skip list.
5159
5160 2001-04-05 DJ Delorie <dj@redhat.com>
5161
5162 * configure.in (noconfigdirs): Remove gcc from MeP skip list.
5163
5164 2001-03-20 Ben Elliston <bje@redhat.com>
5165
5166 * configure.in (noconfigdirs): Add gcc and gdb for MeP.
5167
5168 2001-03-19 Ben Elliston <bje@redhat.com>
5169
5170 * config.sub (mep, mep-*): Add.
5171
5172 2007-01-31 Andreas Schwab <schwab@suse.de>
5173
5174 * Makefile.tpl (LDFLAGS): Substitute it.
5175 * Makefile.in: Regenerate.
5176
5177 2007-01-11 Paolo Bonzini <bonzini@gnu.org>
5178
5179 * configure.in: Change == to = in test command.
5180 * configure: Regenerate.
5181
5182 2007-01-11 Paolo Bonzini <bonzini@gnu.org>
5183 Nick Clifton <nickc@redhat.com>
5184 Kaveh R. Ghazi <ghazi@caip.rutgets.edu>
5185
5186 * configure.in (build_configargs, host_configargs, target_configargs):
5187 Remove build/host/target parameters.
5188 (host_libs): Add gmp and mpfr.
5189 (GMP tests): Reorganize to allow in-tree GMP/MPFR.
5190 * Makefile.def (gmp, mpfr): New.
5191 (gcc): Remove target.
5192 * Makefile.tpl (build_os, build_vendor, host_os, host_vendor,
5193 target_os, target_vendor): New.
5194 (configure): Add host_alias/target_alias arguments. Adjust invocations.
5195 * configure: Regenerate.
5196 * Makefile.in: Regenerate.
5197
5198 2007-01-11 Matt Fago <fago@earthlink.net>
5199
5200 * configure.in: Try to link to functions only in mpfr 2.2.x
5201 to improve robustness of configure tests.
5202 * configure: Regenerate.
5203
5204 2007-01-08 Kai Tietz <kai.tietz@onevision.com>
5205
5206 * configure.in: Add support for an x86_64-mingw* target.
5207 * configure: Regenerate.
5208
5209 2007-01-05 Daniel Jacobowitz <dan@codesourcery.com>
5210
5211 * Makefile.tpl (all-target): Correct @if conditional for target
5212 modules.
5213 * configure.in: Omit libiberty if building only target libgcc.
5214 * configure, Makefile.in: Regenerated.
5215
5216 2007-01-04 Paolo Bonzini <bonzini@gnu.org>
5217
5218 * configure.in: Use DEV-PHASE to detect the default for --enable-werror.
5219 * configure: Regenerate.
5220
5221 2007-01-03 Daniel Jacobowitz <dan@codesourcery.com>
5222
5223 * Makefile.def (target_modules): Add libgcc.
5224 (lang_env_dependencies): Remove default items. Use no_c and no_gcc.
5225 * Makefile.tpl (clean-target-libgcc): Delete.
5226 (configure-target-[+module+]): Emit --disable-bootstrap dependencies
5227 on gcc even for bootstrapped modules. Rewrite handling of
5228 lang_env_dependencies to loop over target_modules.
5229 * configure.in (target_libraries): Add target-libgcc.
5230 * Makefile.in, configure: Regenerated.
5231
5232 2006-12-29 Paolo Bonzini <bonzini@gnu.org>
5233
5234 Sync with gcc:
5235 2006-12-29 Paolo Bonzini <bonzini@gnu.org>
5236
5237 * configure.in: Reorganize recognition of languages. Add
5238 --enable-stage1-languages. Show supported languages for the chosen
5239 target rather than all recognized languages.
5240 * configure: Regenerate.
5241
5242 2006-12-29 Paolo Bonzini <bonzini@gnu.org>
5243
5244 * Makefile.tpl (GCC_STRAP_TARGETS, all-prebootstrap): Remove.
5245 * Makefile.in: Regenerate.
5246
5247 2006-12-29 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
5248
5249 * configure.in: Warn that MPFR 2.2.0 is buggy.
5250 * configure: Regenerate.
5251
5252 2006-12-27 Ian Lance Taylor <iant@google.com>
5253
5254 * configure.in: When removing Makefiles to force a reconfigure, also
5255 remove prev-DIR*/Makefile.
5256 * configure: Regenerate.
5257
5258 2006-12-23 Kazu Hirata <kazu@codesourcery.com>
5259
5260 * config.bfd: Recognize fido.
5261
5262 2006-12-19 Paolo Bonzini <bonzini@gnu.org>
5263
5264 Sync with gcc:
5265
5266 2006-12-19 Paolo Bonzini <bonzini@gnu.org>
5267
5268 * configure.in: Remove "$build" case for powerpc-*-darwin* since
5269 it only affects bootstrap and could be tested on "$host" as well.
5270 * configure: Regenerate.
5271 * config/mh-ppc-darwin: Add to the stage1 cflags here.
5272
5273 2006-12-19 Paolo Bonzini <bonzini@gnu.org>
5274
5275 PR bootstrap/29544
5276 * Makefile.def (flags_to_pass): Add STAGE1_CHECKING.
5277 (bootstrap_stage): Add STAGE1_CHECKING to stage1 configure flags,
5278 move here comment from Makefile.tpl.
5279 * Makefile.tpl: Move some definitions higher in the file.
5280 (STAGE1_CHECKING): New.
5281 * configure.in: Add --enable-stage1-checking.
5282 * configure: Regenerate.
5283 * Makefile.in: Regenerate.
5284
5285 2006-12-03 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
5286
5287 * configure.in: Update error message for missing GMP/MPFR.
5288
5289 * configure: Regenerate.
5290
5291 2006-12-02 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
5292
5293 * configure.in: Update MPFR version in error message.
5294
5295 * configure: Regenerate.
5296
5297 2006-11-26 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
5298
5299 * configure.in (--with-mpfr-dir, --with-gmp-dir): Remove flags.
5300 (--with-mpfr-include, --with-mpfr-lib, --with-gmp-include,
5301 --with-gmp-lib): New flags.
5302
5303 * configure: Regenerate.
5304
5305 2006-12-12 Andreas Tobler <a.tobler@schweiz.org>
5306
5307 PR bootstrap/30134
5308 * configure.in: Correct x86 darwin support for libjava to powerpc
5309 and i?86 only.
5310 * configure: Regenerate.
5311
5312 2006-12-11 Alan Modra <amodra@bigpond.net.au>
5313
5314 * configure.in: Handle spu makefile frag.
5315 * Makefile.tpl (MAINT): Define
5316 (MAINTAINER_MODE_FALSE, MAINTAINER_MODE_TRUE): Define.
5317 * configure: Regenerate.
5318 * Makefile.in: Regenerate.
5319
5320 2006-12-11 Ben Elliston <bje@au.ibm.com>
5321
5322 * config.sub, config.guess: Update from upstream sources.
5323
5324 2006-12-11 Ben Elliston <bje@au.ibm.com>
5325
5326 * configure.in: Sync with GCC (spu-*-*).
5327 * configure: Sync with GCC.
5328
5329 2006-12-07 Mike Stump <mrs@apple.com>
5330
5331 * Makefile.def (dependencies): Add dependency for
5332 install-target-libssp and install-target-libgomp on
5333 install-gcc.
5334 * Makefile.in: Regenerate.
5335
5336 2006-11-16 Paolo Bonzini <bonzini@gnu.org>
5337
5338 * Makefile.tpl (clean-target-libgcc): Test for gcc Makefile presence.
5339 (unstage): Test for stage_last presence.
5340
5341 PR bootstrap/29802
5342 * Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Add HOST_SUBDIR in STAGE_PREFIX.
5343 * Makefile.in: Regenerate.
5344
5345 2006-11-14 DJ Delorie <dj@redhat.com>
5346
5347 * Makefile.tpl (clean-stage*): Sync with GCC (clean).
5348 * Makefile.in: Sync with GCC.
5349 * configure.in: Sync with GCC (mpfr, gmp).
5350 * configure: Sync with GCC.
5351
5352 2006-11-08 Jie Zhang <jie.zhang@analog.com>
5353
5354 * configure.in: Remove target-libgloss from noconfigdirs for
5355 bfin-*-*.
5356 * configure: Regenerated.
5357
5358 2006-10-27 Jeff Johnston <jjohnstn@redhat.com>
5359
5360 * COPYING.NEWLIB: Add spu license.
5361 * COPYING.LIBGLOSS: Ditto.
5362
5363 2006-10-17 Brooks Moses <bmoses@stanford.edu>
5364
5365 * Makefile.def: Added pdf target handling.
5366 * Makefile.tpl: Added pdf target handling.
5367 * Makefile.in: Regenerated.
5368
5369 2006-10-11 Jeff Johnston <jjohnstn@redhat.com>
5370
5371 * COPYING.NEWLIB: Updated.
5372 * COPYING.LIBGLOSS: Ditto.
5373
5374 2006-09-27 Dave Brolley <brolley@redhat.com>
5375
5376 * configure.in (RUNTEST): Look for 'runtest' in the source tree by using
5377 $s instead of $r.
5378 * configure: Regenerated.
5379
5380 2006-09-26 Ben Elliston <bje@au.ibm.com>
5381
5382 * config.sub, config.guess: Update from upstream sources.
5383
5384 2006-09-20 Thiemo Seufer <ths@mips.com>
5385
5386 * configure.in: Remove redundant handling of mips*-dec-bsd*. Likewise
5387 for mipstx39-*-*. Disable libgloss for mips64*-*-linux*.
5388 * configure: Regenerate.
5389
5390 2006-08-30 Corinna Vinschen <corinna@vinschen.de>
5391
5392 * configure.in: Never build newlib for a Mingw host.
5393 Never build newlib as Mingw target library.
5394 Test the existence of winsup/cygwin for building a Cygwin newlib,
5395 rather than just winsup.
5396 Add winsup/mingw and winsup/w32api paths to FLAGS_FOR_TARGET if
5397 building a Mingw target.
5398 * configure: Regenerate.
5399
5400 2006-08-15 Thiemo Seufer <ths@mips.com>
5401 Nigel Stephens <nigel@mips.com>
5402 David Ung <davidu@mips.com>
5403
5404 * config.sub: Add support for sde as alias of mipsisa32-sde-elf.
5405
5406 2006-07-25 Paolo Bonzini <bonzini@gnu.org>
5407
5408 Sync from GCC:
5409 2006-07-04 Eric Botcazou <ebotcazou@libertysurf.fr>
5410
5411 PR bootstrap/18058
5412 * configure.in: Add -fkeep-inline-functions to CFLAGS for stage 1
5413 if the bootstrap compiler is a GCC version that supports it.
5414 * configure: Regenerate.
5415
5416 2006-07-22 Daniel Jacobowitz <dan@codesourcery.com>
5417
5418 * configure.in: Allow mingw32 and cygwin targets to build cross-gdb.
5419 * configure: Regenerated.
5420
5421 2006-07-18 Paolo Bonzini <bonzini@gnu.org>
5422
5423 * Makefile.tpl (configure-stageN-MODULE): Pass --with-build-libsubdir
5424 for stages after the first.
5425
5426 2006-07-17 Jakub Jelinek <jakub@redhat.com>
5427
5428 * Makefile.def: Add dependencies for configure-opcodes
5429 on configure-intl and all-opcodes on all-intl.
5430 * Makefile.in: Regenerated.
5431
5432 2006-07-04 Peter O'Gorman <peter@pogma.com>
5433
5434 * ltconfig: chmod 644 before ranlib during install.
5435
5436 2006-07-03 Paolo Bonzini <bonzini@gnu.org>
5437
5438 * configure.in: Fix thinkos in previous check-in.
5439 * configure: Regenerate.
5440
5441 2006-07-03 Paolo Bonzini <bonzini@gnu.org>
5442
5443 Sync from gcc:
5444
5445 2007-07-03 Paolo Bonzini <bonzini@gnu.org>
5446
5447 PR other/27063
5448 * configure.in: Test subdir_requires and give an appropriate
5449 error message.
5450 * configure: Regenerate.
5451
5452 2006-06-16 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
5453
5454 PR target/27540
5455 * configure.in: Only enable libgomp on IRIX 6.
5456 * configure: Regenerate.
5457
5458 2006-06-20 David Ayers <d.ayers@inode.at>
5459
5460 PR bootstrap/28072
5461 * configure.in: Add target-boehm-gc to noconfigdirs depending on
5462 whether target-libjava is being configured instead of whether the
5463 java front end is enabled.
5464 * configure: Regenerate.
5465
5466 2006-06-15 Mark Shinwell <shinwell@codesourcery.com>
5467
5468 * include/elf/arm.h: Correct names of R_ARM_LDC_G{0,1,2}
5469 to R_ARM_LDC_SB_G{0,1,2} respectively.
5470
5471 2006-06-15 Paolo Bonzini <bonzini@gnu.org>
5472
5473 * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Export CFLAGS and LDFLAGS
5474 too.
5475 * Makefile.in: Regenerate.
5476
5477 2006-06-13 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
5478
5479 Sync from gcc:
5480
5481 2006-06-12 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
5482 * configure.in: Don't enable libgomp on hpux10.
5483 * configure: Rebuilt.
5484
5485 2006-06-13 David Ayers <d.ayers@inode.at>
5486
5487 Sync from gcc:
5488
5489 2006-06-12 David Ayers <d.ayers@inode.at>
5490
5491 PR bootstrap/27963
5492 PR target/19970
5493 * configure.in: Remove target-boehm-gc from noconfigdirs where
5494 ${libgcj} is specified.
5495 * configure: Regenerate.
5496
5497 2006-06-08 Jeff Johnston <jjohnstn@redhat.com>
5498
5499 Sync from gcc:
5500
5501 2005-01-12 David Edelsohn <edelsohn@gnu.org>
5502 Andreas Schwab <schwab@suse.de>
5503
5504 PR bootstrap/18033
5505 * config-ml.in: Eval option if surrounded by single quotes.
5506
5507 2006-06-07 Carlos O'Donell <carlos@codesourcery.com>
5508
5509 Sync from gcc:
5510
5511 2006-06-06 David Ayers <d.ayers@inode.at>
5512
5513 PR libobjc/13946
5514 * Makefile.def: Add dependencies for libobjc which boehm-gc.
5515 * Makefile.in: Regenerate.
5516 * configure.in: Add --enable-objc-gc at toplevel and have it
5517 enable boehm-gc for Objective-C.
5518 Remove target-boehm-gc from libgcj.
5519 Add target-boehm-gc to target_libraries.
5520 Add target-boehm-gc to noconfigdirs where ${libgcj}
5521 is specified.
5522 Assert that boehm-gc is supported when requested for Objective-C.
5523 Only build boehm-gc if needed either for Java or Objective-C.
5524 * configure: Regenerate.
5525
5526 2006-06-05 Paolo Bonzini <bonzini@gnu.org>
5527
5528 PR 27674
5529 * Makefile.tpl (configure-[+prefix+][+module+],
5530 all-[+prefix+][+module+]): Depend on stage_current if bootstrapping.
5531 Remove rule to unstage bootstrapped modules.
5532 (stage_current): New.
5533 * Makefile.in: Regenerate.
5534
5535 2006-05-20 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
5536 Andreas Tobler <a.tobler@schweiz.ch>
5537
5538 * configure.in: Enable libgcj for hppa*-hp-hpux11*.
5539 * configure: Rebuilt.
5540
5541 Revert
5542 2006-01-31 Richard Guenther <rguenther@suse.de>
5543 Paolo Bonzini <bonzini@gnu.org>
5544
5545 * Makefile.def (target_modules): Add libgcc-math target module.
5546 * configure.in (target_libraries): Add libgcc-math target library.
5547 (--enable-libgcc-math): New configure switch.
5548 * Makefile.in: Re-generate.
5549 * configure: Re-generate.
5550
5551 2006-06-05 Jeff Johnston <jjohnstn@redhat.com>
5552
5553 * config-ml.in: Alter CCASFLAGS to include special
5554 multilib options the same as is done for CFLAGS.
5555
5556 2006-05-31 Daniel Jacobowitz <dan@codesourcery.com>
5557
5558 * Makefile.def: Added dependencies from sim and gdb on intl, and
5559 added configure dependencies to everything with an all dependency
5560 on intl.
5561 * gettext.m4: Removed.
5562 * src-release (DEVO_SUPPORT): Don't mention gettext.m4.
5563 (GDB_SUPPORT_DIRS): Add intl.
5564 * Makefile.in: Regenerated.
5565
5566 2006-05-25 Daniel Jacobowitz <dan@codesourcery.com>
5567
5568 * src-release (DEVO_SUPPORT): Add config.rpath.
5569
5570 2006-05-25 Paolo Bonzini <bonzini@gnu.org>
5571
5572 * Makefile.def (bfd, opcodes): Fix lib_path.
5573 * Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Replace ADAC with ADAFLAGS.
5574 (restrap): Move under "@if gcc-bootstrap". Fix typo.
5575 * Makefile.in: Regenerate.
5576
5577 2006-05-24 Mark Shinwell <shinwell@codesourcery.com>
5578
5579 * configure.in: Enable gprof for cross builds.
5580 * configure: Regenerate.
5581
5582 2006-05-17 Daniel Jacobowitz <dan@codesourcery.com>
5583
5584 * src-release (MAKEINFOFLAGS): Define.
5585 (do-proto-toplev): Pass MAKEINFOFLAGS to submakes.
5586
5587 2006-05-14 Ben Elliston <bje@au.ibm.com>
5588
5589 * config.sub, config.guess: Update from upstream sources.
5590
5591 2006-05-12 Ben Elliston <bje@au.ibm.com>
5592
5593 * config.sub, config.guess: Update from upstream sources.
5594
5595 2006-05-04 Steve Ellcey <sje@cup.hp.com>
5596
5597 * blt, iwidgets, mmalloc: Remove directories.
5598
5599 2006-05-01 DJ Delorie <dj@redhat.com>
5600
5601 * configure.in: Restore CFLAGS if GMP isn't present.
5602 * configure: Regenerate.
5603
5604 2006-04-18 DJ Delorie <dj@redhat.com>
5605
5606 * configure.in (m32c): Build libstdc++-v3. Pass flags to
5607 reference libgloss so that libssp can be built in a combined
5608 tree.
5609 * configure: Regenerate.
5610
5611 2006-04-10 Ben Elliston <bje@au.ibm.com>
5612
5613 * contrib: Remove directory.
5614
5615 2006-04-06 Carlos O'Donell <carlos@codesourcery.com>
5616
5617 * Makefile.tpl: Add install-html target.
5618 * Makefile.def: Add install-html target.
5619 * Makefile.in: Regenerate.
5620 * configure.in: Add --with-datarootdir, --with-docdir,
5621 and --with-htmldir options.
5622 * configure: Regenerate.
5623
5624 2006-03-31 Ben Elliston <bje@au.ibm.com>
5625
5626 PR binutils/1860
5627 * configure.in: Require makeinfo 4.4 or higher.
5628 * configure: Regenerate.
5629
5630 2006-03-14 Paolo Bonzini <bonzini@gnu.org>
5631
5632 * Makefile.in: Regenerate.
5633
5634 2006-03-14 Paolo Bonzini <bonzini@gnu.org>
5635
5636 Sync with gcc:
5637 2006-03-10 Aldy Hernandez <aldyh@redhat.com>
5638
5639 * configure.in: Handle --disable-<component> generically.
5640 * configure: Regenerate.
5641
5642 2006-02-21 Rafael Avila de Espindola <rafael.espindola@gmail.com>
5643
5644 * Makefile.tpl (BUILD_CONFIGDIRS): Remove.
5645 (TARGET_CONFIGDIRS): Remove.
5646 * configure.in: Remove AC_SUBST(target_configdirs).
5647 * Makefile.in, configure: Regenerated.
5648
5649
5650 2006-03-01 H.J. Lu <hongjiu.lu@intel.com>
5651
5652 PR libgcj/17311
5653 * ltmain.sh: Don't use "$finalize_rpath" for compile.
5654
5655 2006-02-20 Paolo Bonzini <bonzini@gnu.org>
5656
5657 PR bootstrap/25670
5658
5659 * Makefile.tpl ([+compare-target+]): Print explanation messages.
5660
5661 * Makefile.def (ADAFLAGS, BOOT_ADAFLAGS, LANGUAGES): New flags_to_pass.
5662 * Makefile.tpl (BASE_FLAGS_TO_PASS): Support optional flags_to_pass.
5663 (EXTRA_GCC_FLAGS): Remove ADAFLAGS, BOOT_ADAFLAGS, LANGUAGES,
5664 BUILD_PREFIX, BUILD_PREFIX_1.
5665 * configure.in: (BUILD_PREFIX, BUILD_PREFIX_1): Don't substitute.
5666
5667 * Makefile.def (bootstrap stage 1): Pass LIBCFLAGS too.
5668 * Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Override LIBCFLAGS too.
5669
5670 * Makefile.tpl (configure-stage[+id+]-[+prefix+][+module+],
5671 all-stage[+id+]-[+prefix+][+module+], : Use $(current_stage) instead
5672 of `cat stage_current`. Always provide the `r' and `s' variables.
5673 (clean-stage[+id+]-[+prefix+][+module+]): Likewise, and make it into
5674 a single shell execution.
5675 (configure-[+prefix+][+module+], all-[+prefix+][+module+]): For
5676 bootstrapped modules, make the stage1 module if the build was not
5677 started yet, else build the current stage.
5678 (all-host, all-target): Omit bootstrapped modules (if bootstrapping).
5679 (all-build, all-host, all-target, [+make_target+]-host,
5680 [+make_target+]-target): Do not use \-continued lines.
5681 (target modules): Depend on stage_last, not all-gcc, if bootstrapping.
5682 (current_stage, restrap, stage_last): New.
5683
5684 * Makefile.in: Regenerate.
5685 * configure: Regenerate.
5686
5687 2006-02-14 Paolo Bonzini <bonzini@gnu.org>
5688
5689 Sync from gcc:
5690
5691 2006-01-31 Richard Guenther <rguenther@suse.de>
5692 Paolo Bonzini <bonzini@gnu.org>
5693
5694 * Makefile.def (target_modules): Add libgcc-math target module.
5695 * configure.in (target_libraries): Add libgcc-math target library.
5696 (--enable-libgcc-math): New configure switch.
5697 * Makefile.in: Re-generate.
5698 * configure: Re-generate.
5699 * libgcc-math: New toplevel directory.
5700
5701 2006-01-18 Richard Henderson <rth@redhat.com>
5702 Jakub Jelinek <jakub@redhat.com>
5703 Diego Novillo <dnovillo@redhat.com>
5704
5705 * libgomp: New directory.
5706 * Makefile.def: Add target_module libgomp.
5707 * Makefile.in: Regenerate.
5708 * configure.in (target_libraries): Add target-libgomp.
5709 * configure: Regenerate.
5710
5711 2006-02-14 Paolo Bonzini <bonzini@gnu.org>
5712 Andreas Schwab <schwab@suse.de>
5713
5714 * configure: Regenerate.
5715
5716 2006-01-16 Paolo Bonzini <bonzini@gnu.org>
5717
5718 * configure.in: Set with_gnu_as, with_gnu_ld, with_newlib earlier.
5719 Set md_exec_prefix. Use ACX_CHECK_INSTALLED_TARGET_TOOL to find
5720 the assembler, linker and binutils.
5721 * configure: Regenerate.
5722
5723 2006-01-16 Nick Clifton <nickc@redhat.com>
5724
5725 * config.sub, config.guess: Sync from config repository.
5726
5727 2006-01-05 Alexandre Oliva <aoliva@redhat.com>
5728
5729 * Makefile.tpl (clean-stage[+id+]-[+prefix+][+module+]): Remove
5730 @ from continuation.
5731 * Makefile.in: Rebuilt.
5732
5733 2006-01-04 Paolo Bonzini <bonzini@gnu.org>
5734
5735 Sync from gcc:
5736
5737 2006-01-04 Paolo Bonzini <bonzini@gnu.org>
5738
5739 PR bootstrap/24252
5740
5741 * Makefile.def (flags_to_pass): Add STAGE1_CFLAGS and STAGE1_LANGUAGES.
5742 * Makefile.tpl (OBJDUMP): New.
5743 (EXTRA_HOST_FLAGS): Add it.
5744 (EXTRA_GCC_FLAGS): Remove flags already specified in flags_to_pass.
5745
5746 * Makefile.tpl (stage[+id+]-start, stage[+id+]-end): Do not try
5747 to use symbolic links between directories. Avoid race conditions
5748 or make them harmless.
5749 * configure.in: Do not try to use symbolic links between directories.
5750
5751 * Makefile.def (LEAN): Pass.
5752 * Makefile.tpl (LEAN): Define.
5753 (stage[+id+]-start): Accept that the previous directory does not
5754 exist, if the bootstrap is lean.
5755 (stage[+id+]-bubble): Invoke lean bootstrap commands after
5756 stage[+id+]-start. Use a makefile variable and an `if' instead of a
5757 configure substitution.
5758 ([+compare-target+]): Likewise.
5759 ([+bootstrap-target+]-lean): New.
5760 * configure.in: Remove lean bootstrap support from here.
5761
5762 * Makefile.in: Regenerate.
5763 * configure: Regenerate.
5764
5765 2006-01-02 Andreas Schwab <schwab@suse.de>
5766
5767 * configure.in: When reconfiguring remove Makefile in
5768 all stage directories.
5769 * configure: Regenerate.
5770
5771 2005-12-27 Leif Ekblad <leif@rdos.net>
5772
5773 * configure.in: Add support for RDOS target.
5774 * configure: Regenerate.
5775
5776 2005-12-27 Nick Clifton <nickc@redhat.com>
5777
5778 PR binutils/1990
5779 * libtool.m4: Synchronize with version in GCC sources.
5780
5781 2005-12-20 Paolo Bonzini <bonzini@gnu.org>
5782
5783 Revert Ada-related part of the previous change.
5784
5785 * Makefile.def (ADAFLAGS, BOOT_ADAFLAGS, ADAFLAGS_FOR_TARGET):
5786 Do not pass.
5787 * Makefile.tpl (BOOT_ADAFLAGS): Do not define.
5788 * Makefile.in: Regenerate.
5789 * configure.in: Do not include mt-ppc-aix target fragment.
5790 * configure: Regenerate.
5791
5792 2005-12-19 Paolo Bonzini <bonzini@gnu.org>
5793
5794 * configure.in: Select appropriate fragments for PowerPC/AIX.
5795 * configure: Regenerate.
5796
5797 * Makefile.def (flags_to_pass): Add ADAFLAGS, BOOT_ADAFLAGS,
5798 BOOT_CFLAGS, BOOT_LDFLAGS.
5799 * Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Handle BOOT_ADAFLAGS,
5800 BOOT_CFLAGS, BOOT_LDFLAGS.
5801 (TARGET_FLAGS_TO_PASS): Handle ADAFLAGS_FOR_TARGET.
5802 (stage[+id+]-bubble): Pass flags recursively to the comparison target.
5803 (stage): Fail if we cannot complete the work.
5804 * Makefile.in: Regenerate.
5805
5806 2005-12-16 Jeff Johnston <jjohnstn@redhat.com>
5807
5808 * COPYING.NEWLIB: Update copyright year for default
5809 copyright.
5810
5811 2005-12-15 Paolo Bonzini <bonzini@gnu.org>
5812
5813 * Makefile.tpl (all, do-[+make_target+], do-check, install,
5814 install-host-nogcc): Don't invoke $(stage) at the end.
5815 * Makefile.in: Regenerate.
5816
5817 2005-12-14 Paolo Bonzini <bonzini@gnu.org>
5818
5819 * configure.in: Flip the top-level bootstrap switch.
5820 * configure: Regenerate.
5821
5822 Merge from gcc:
5823
5824 2005-12-14 Daniel Jacobowitz <dan@codesourcery.com>
5825
5826 * Makefile.tpl: Throughout the file, use : $(MAKE) along with
5827 $(stage) and $(unstage).
5828 (EXTRA_TARGET_FLAGS): Correct double-quoting.
5829 (all): Remove stray semicolon.
5830 (local-distclean): Don't handle multilib.tmp and multilib.out.
5831 (install.all): Set $s for consistency.
5832 (configure-[+prefix+][+module+]): Instead of [+deps+], handle
5833 check_multilibs setting. Always make the install directory.
5834 (configure-stage[+id+]-[+prefix+][+module+]): Likewise.
5835 Correct @if/@endif.
5836 (all-stage[+id+]-[+prefix+][+module+]): Correct @if/@endif.
5837 ($(TARGET_SUBDIR)/[+module+]/multilib.out): Remove.
5838 (stage[+id+]-start, stage[+id+]-end): Stage $(TARGET_SUBDIR).
5839 (multilib.out): Remove.
5840 * Makefile.in: Regenerated.
5841
5842 2005-12-12 Nathan Sidwell <nathan@codesourcery.com>
5843
5844 * config.sub: Replace ms1 arch with mt. Allow ms1 as alias.
5845 * configure.in: Replace ms1 arch with mt.
5846 * configure: Rebuilt.
5847
5848 2005-12-05 Paolo Bonzini <bonzini@gnu.org>
5849
5850 Sync with gcc:
5851
5852 2005-12-12 Nathan Sidwell <nathan@codesourcery.com>
5853
5854 * config.sub: Replace ms1 arch with mt. Allow ms1 as alias.
5855 * configure.in: Replace ms1 arch with mt.
5856 * configure: Rebuilt.
5857
5858 2005-12-05 Paolo Bonzini <bonzini@gnu.org>
5859
5860 Sync with gcc:
5861
5862 2005-12-05 Paolo Bonzini <bonzini@gnu.org>
5863
5864 * configure.in (CONFIGURED_BISON, CONFIGURED_YACC, CONFIGURED_M4,
5865 CONFIGURED_FLEX, CONFIGURED_LEX, CONFIGURED_MAKEINFO): Remove
5866 "CONFIGURED_" from the AC_CHECK_PROGS invocation. Move below.
5867 Find in-tree tools if available.
5868 (EXPECT, RUNTEST, LIPO, STRIP): Find them and substitute them.
5869 (CONFIGURED_*_FOR_TARGET): Don't set nor substitute.
5870 (*_FOR_TARGET): Set them with GCC_TARGET_TOOL.
5871 (COMPILER_*_FOR_TARGET): New.
5872 * Makefile.tpl (HOST_EXPORTS): Add *_FOR_TARGET symbols that gcc needs.
5873 (BASE_TARGET_EXPORTS): Use COMPILER_*_FOR_TARGET symbols.
5874 (CONFIGURED_*, USUAL_*): Remove.
5875 (BISON, YACC, FLEX, LEX, M4, MAKEINFO, EXPECT, RUNTEST, LIPO,
5876 STRIP): Use autoconf substitutions.
5877 (COMPILER_AS_FOR_TARGET, COMPILER_LD_FOR_TARGET,
5878 COMPILER_NM_FOR_TARGET): New.
5879 (EXTRA_HOST_FLAGS): Pass LIPO and STRIP.
5880
5881 (all): Make all-host and all-target in parallel.
5882 (do-[+make_target+], do-check, install, [+compare-target+]): Ensure
5883 that $$r and $$s are set before invoking a recursive make.
5884 (stage[+id+]-bubble): Likewise, and invoke the comparison at the end.
5885 ([+bootstrap-target+]): Inline most of the `all' target.
5886
5887 2005-11-29 Ben Elliston <bje@au.ibm.com>
5888
5889 * Makefile.tpl (clean-target-libgcc): Invoke clean-target-libgcc
5890 from the gcc build directory.
5891 * Makefile.in: Regenerate.
5892
5893 2005-11-29 Ben Elliston <bje@au.ibm.com>
5894
5895 * Makefile.def: Add new libdecnumber host_module. Make all-gcc
5896 depend on all-libdecnumber.
5897 * configure.in (host_libs): Include libdecnumber.
5898 * Makefile.in: Regenerate.
5899 * configure: Likewise.
5900
5901 2005-11-21 Kean Johnston <jkj@sco.com>
5902
5903 * config.sub, config.guess: Sync from upstream sources.
5904
5905 2005-11-11 Daniel Jacobowitz <dan@codesourcery.com>
5906
5907 * Makefile.def: Remove gdb dependencies for gdbtk.
5908 * Makefile.tpl (CONFIGURE_GDB_TK, INSTALL_GDB_TK): New variables.
5909 (configure-gdb, install-gdb): New rules.
5910 * configure.in: Set CONFIGURE_GDB_TK and INSTALL_GDB_TK.
5911 * Makefile.in, configure: Regenerated.
5912
5913 2005-10-22 Paolo Bonzini <bonzini@gnu.org>
5914
5915 PR bootstrap/24297
5916 * Makefile.tpl (do-[+make-target+], do-check, install,
5917 stage[+id+]-bubble, [+compare-target+]): Ensure $$r and $$s
5918 are set before recursing.
5919 * Makefile.in: Regenerate.
5920
5921 2005-10-20 Eric Botcazou <ebotcazou@adacore.com>
5922
5923 PR bootstrap/18939
5924 * Makefile.def (gcc) <target>: Fix thinko.
5925 * Makefile.in: Regenerate.
5926
5927 2005-10-17 Bernd Schmidt <bernd.schmidt@analog.com>
5928
5929 * configure.in (bfin-*-*): Use test, not brackets, in if statement.
5930 * configure: Regenerate.
5931
5932 2005-10-09 Kazu Hirata <kazu@codesourcery.com>
5933
5934 * configure.in (arm-*-linux-gnueabi): Add to noconfigdirs
5935 target-libffi, target-qthreads, target-libjava, and
5936 targetlibobjc.
5937 * configure: Regenerate.
5938
5939 2005-10-06 Daniel Jacobowitz <dan@codesourcery.com>
5940
5941 * Makefile.def (flags_to_pass): Add OBJDUMP_FOR_TARGET.
5942 * Makefile.tpl (BASE_TARGET_EXPORTS): Add OBJDUMP.
5943 (OBJDUMP_FOR_TARGET, CONFIGURED_OBJDUMP_FOR_TARGET)
5944 (USUAL_OBJDUMP_FOR_TARGET): New.
5945 (EXTRA_TARGET_FLAGS): Add OBJDUMP.
5946 * configure.in: Check for $OBJDUMP_FOR_TARGET.
5947 * configure, Makefile.in: Regenerated.
5948
5949 2005-10-05 Paolo Bonzini <bonzini@gnu.org>
5950
5951 * Makefile.tpl (all) [gcc-no-bootstrap]: Make prebootstrap packages
5952 before other host packages.
5953
5954 2005-10-05 Paolo Bonzini <bonzini@gnu.org>
5955
5956 PR bootstrap/22340
5957
5958 * configure.in (default_target): Remove.
5959 * Makefile.tpl (all): Do not use prerequisites as subroutines
5960 (all) [gcc-bootstrap]: Bootstrap gcc first if it was not done yet.
5961 (do-[+make_target+], check, install, [+bootstrap_target+]): Do not
5962 use prerequisites as subroutines.
5963 (check-host, check-target): New.
5964 (bootstrap configure & all targets): Do not use stage*-start
5965 if the directory layout is already ok.
5966 (non-bootstrap configure & all targets): Prepend a $(unstage).
5967 (stage[+id+]-bubble): Do that here. Do not use NOTPARALLEL.
5968 (NOTPARALLEL): Remove.
5969 (unstage, stage variables): New variables.
5970 (unstage, stage targets): Simply expand to those variables.
5971
5972 * configure: Regenerate.
5973 * Makefile.in: Regenerate.
5974
5975 2005-10-04 James E Wilson <wilson@specifix.com>
5976
5977 * Makefile.def (lang_env_dependencies): Add libmudflap.
5978 * Makefile.in: Regenerate.
5979
5980 2005-10-03 Catherine Moore <clm@cm00re.com>
5981
5982 * configure.in (bfin-*-*): Support bfin.
5983 * configure: Regenerated.
5984
5985 2005-09-30 H.J. Lu <hongjiu.lu@intel.com>
5986
5987 * configure.in (*-*-darwin*): Build bfd, binutils and opcodes.
5988 * configure: Regenerated.
5989
5990 2005-09-28 Geoffrey Keating <geoffk@apple.com>
5991
5992 * Makefile.tpl (BASE_TARGET_EXPORTS): Add LIPO, STRIP.
5993 (LIPO_FOR_TARGET): New.
5994 (CONFIGURED_LIPO_FOR_TARGET): New.
5995 (USUAL_LIPO_FOR_TARGET): New.
5996 (STRIP_FOR_TARGET): New.
5997 (CONFIGURED_STRIP_FOR_TARGET): New.
5998 (USUAL_STRIP_FOR_TARGET): New.
5999 * Makefile.def (flags_to_pass): Add LIPO_FOR_TARGET and
6000 STRIP_FOR_TARGET.
6001 * configure.in: Set LIPO_FOR_TARGET, STRIP_FOR_TARGET,
6002 CONFIGURED_LIPO_FOR_TARGET, CONFIGURED_STRIP_FOR_TARGET.
6003 * Makefile.in: Regenerate.
6004 * configure: Regenerate.
6005
6006 2005-09-19 David Edelsohn <edelsohn@gnu.org>
6007
6008 * configure.in (powerpc-*-aix*): Add target-libssp to noconfigdirs.
6009 (rs6000-*-aix*): Same.
6010 * configure: Regenerate.
6011
6012 2005-09-14 Francois-Xavier Coudert <coudert@clipper.ens.fr>
6013
6014 * configure.in: Recognize f95 in the --enable-languages option,
6015 and substitute it for fortran, issuing a warning.
6016 * configure: Regenerate.
6017
6018 2005-09-07 Ben Elliston <bje@au.ibm.com>
6019
6020 Import from Autoconf sources:
6021
6022 2005-09-06 Paul Eggert <eggert@cs.ucla.edu>
6023 * move-if-change: Don't output "$2 is unchanged"; suggested by Ben
6024 Elliston. Handle weird characters correctly.
6025
6026 2005-08-30 Phil Edwards <phil@codesourcery.com>
6027
6028 * configure.in (*-*-vxworks*): Add target-libstdc++-v3 to noconfigdirs.
6029 * configure: Regenerated.
6030
6031 2005-08-20 Richard Earnshaw <richard.earnshaw@arm.com>
6032
6033 * Makefile.def (libssp): Add to lang_env_dependencies.
6034 * Makefile.in: Regenerate.
6035
6036 2005-08-17 Christian Groessler <chris@groessler.org>
6037
6038 * Makefile.tpl: (USUAL_CC_FOR_TARGET): Add missing trailing slash.
6039 * Makefile.in: Regenerate.
6040
6041 2005-08-12 Paolo Bonzini <bonzini@gnu.org>
6042
6043 * configure.in: Replace NCN_STRICT_CHECK_TOOL with
6044 NCN_STRICT_CHECK_TOOLS, and likewise for NCN_STRICT_CHECK_TARGET_TOOLS.
6045 Look for alternate names of the target cc and c++
6046 * configure: Regenerate.
6047
6048 2005-08-08 Paolo Bonzini <bonzini@gnu.org>
6049
6050 * configure.in (CC_FOR_TARGET, CXX_FOR_TARGET, GCJ_FOR_TARGET,
6051 GCC_FOR_TARGET, RAW_CXX_FOR_TARGET, GFORTRAN_FOR_TARGET): Find
6052 them with NCN_STRICT_CHECK_TARGET_TOOL, like the other target
6053 tools; remove code to manually set them.
6054 (Target tools): Look in the environment for them.
6055 * Makefile.tpl (CC_FOR_TARGET, CXX_FOR_TARGET, GCJ_FOR_TARGET,
6056 GCC_FOR_TARGET, RAW_CXX_FOR_TARGET, GFORTRAN_FOR_TARGET): Redefine.
6057 (AS_FOR_TARGET, LD_FOR_TARGET, NM_FOR_TARGET): Look into gcc
6058 build directory.
6059 (CONFIGURED_CC_FOR_TARGET, CONFIGURED_CXX_FOR_TARGET,
6060 CONFIGURED_GCJ_FOR_TARGET, CONFIGURED_GCC_FOR_TARGET,
6061 CONFIGURED_GFORTRAN_FOR_TARGET, USUAL_CC_FOR_TARGET,
6062 USUAL_CXX_FOR_TARGET, USUAL_GCJ_FOR_TARGET, USUAL_GCC_FOR_TARGET,
6063 USUAL_RAW_CXX_FOR_TARGET, USUAL_GFORTRAN_FOR_TARGET): New.
6064 (CXX_FOR_TARGET_FOR_RECURSIVE_MAKE,
6065 RAW_CXX_FOR_TARGET_FOR_RECURSIVE_MAKE, RECURSE_FLAGS): Delete.
6066 * configure: Regenerate.
6067 * Makefile.in: Regenerate.
6068
6069 2005-07-27 Mark Mitchell <mark@codesourcery.com>
6070
6071 * Makefile.tpl (EXTRA_TARGET_FLAGS): Set LDFLAGS=LDFLAGS_FOR_TARGET.
6072 * Makefile.def (flags_to_pass): Add LDFLAGS_FOR_TARGET.
6073 * Makefile.in: Regenerated.
6074
6075 2005-07-26 Mark Mitchell <mark@codesourcery.com>
6076
6077 * Makefile.tpl (SYSROOT_CFLAGS_FOR_TARGET): New variable.
6078 (CFLAGS_FOR_TARGET): Use it.
6079 (CXXFLAGS_FOR_TARGET): Likewise.
6080 * Makefile.in: Regenerated.
6081 * configure.in (--with-build-sysroot): New option.
6082 * configure: Regenerated.
6083
6084 2005-07-24 Paolo Bonzini <bonzini@gnu.org>
6085
6086 * Makefile.tpl: Wrap install between unstage and stage
6087 * Makefile.in: Regenerate.
6088
6089 2005-07-16 Kelley Cook <kcook@gcc.gnu.org>
6090
6091 * all files: Update FSF address.
6092
6093 2005-07-14 Jim Blandy <jimb@redhat.com>
6094
6095 * configure.in: Add cases for Renesas m32c.
6096 * configure: Regenerated.
6097
6098 2005-07-14 Kelley Cook <kcook@gcc.gnu.org>
6099
6100 * COPYING, compile, config-ml.in, config.guess,
6101 config.sub, install-sh, missing, mkinstalldirs,
6102 symlink-tree, ylwrap: Sync from upstream sources.
6103
6104 2005-07-13 Eric Christopher <echristo@redhat.com>
6105
6106 * configure.in: Add toplevel noconfigdir support for tpf.
6107 * configure: Regenerate.
6108
6109 2005-07-11 Jakub Jelinek <jakub@redhat.com>
6110
6111 * Makefile.def (target_modules): Add libssp.
6112 * configure.in (target_libraries): Add target-libssp.
6113 * configure: Rebuilt.
6114 * Makefile.in: Rebuilt.
6115
6116 2005-07-11 Paolo Bonzini <bonzini@gnu.org>
6117
6118 PR ada/22340
6119
6120 * Makefile.def: Sync with gcc.
6121 * Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Fix pasto.
6122 * Makefile.in: Regenerate.
6123
6124 2005-07-07 Andreas Schwab <schwab@suse.de>
6125
6126 * Makefile.def (flags_to_pass): Add CFLAGS_FOR_BUILD.
6127 * Makefile.tpl (EXTRA_GCC_FLAGS): Don't pass CFLAGS_FOR_BUILD here.
6128 * Makefile.in: Regenerated.
6129
6130 2005-07-07 Kazu Hirata <kazu@codesourcery.com>
6131
6132 * configure.in: Add --enable-libssp and --disable-libssp.
6133 * configure: Regenerate with autoconf-2.13.
6134
6135 2005-07-06 Geoffrey Keating <geoffk@apple.com>
6136
6137 * configure.in: Don't build sim or rda when targetting darwin.
6138 * configure: Regenerate.
6139
6140 2005-07-04 Ben Elliston <bje@gnu.org>
6141
6142 * src-release (do-proto-toplev): Remove dejagnu bits.
6143 (DEJAGNU_SUPPORT_DIRS): Remove.
6144 (dejagnu.tar.bz2, dejagnu.tar): Likewise.
6145 (GDBD_SUPPORT_DIRS): Likewise.
6146 (gdb+dejagnu.tar.bz2, gdb+dejagnu.tar): Likewise.
6147 (INSIGHTD_SUPPORT_DIRS): Likewise.
6148 (insight+dejagnu.tar.bz2, insight+dejagnu.tar): Likewise.
6149
6150 2005-06-30 Ben Elliston <bje@gnu.org>
6151
6152 * setup.com (mpw): Remove unused directive.
6153
6154 2005-06-22 Paolo Bonzini <bonzini@gnu.org>
6155
6156 * Makefile.def (stagefeedback): Come after profile.
6157 Define profiledbootstrap target.
6158 * Makefile.tpl (profiledbootstrap): Remove.
6159 (stageprofile-end): Zap stagefeedback.
6160 (stagefeedback-start): Copy all .gcda files, not only GCC's.
6161 * Makefile.in: Regenerate.
6162
6163 2005-06-13 Zack Weinberg <zack@codesourcery.com>
6164
6165 * depcomp: Update from automake CVS. Add 'ia64hp' stanza.
6166 In 'cpp' stanza, support '#line' as well as '# '.
6167
6168 2005-06-07 Hans-Peter Nilsson <hp@axis.com>
6169
6170 * configure.in (unsupported_languages): New macro.
6171 <mmix-knuth-mmixware>: Set unsupported_languages. Name explicit
6172 non-ported target libraries in noconfigdirs.
6173 <cris-*, crisv32-*> Ditto, except for non-aout, non-elf,
6174 non-linux-gnu. Remove libgcj_ex_libffi.
6175 <lang_frag loop>: Set add_this_lang=no if the language is in
6176 unsupported_languages.
6177 * configure: Regenerate.
6178
6179 2005-06-04 Tobias Schl"uter <tobias.schlueter@physik.uni-muenchen.de>
6180
6181 * configure.in: Fix typo in handling of --with-mpfr-dir.
6182 * configure: Regenerate.
6183
6184 2005-06-02 Jim Blandy <jimb@redhat.com>
6185
6186 * config.sub: Add cases for the Renesas m32c. (This patch has been
6187 accepted into the master sources.)
6188
6189 2005-06-02 Aldy Hernandez <aldyh@redhat.com>
6190 Michael Snyder <msnyder@redhat.com>
6191 Stan Cox <scox@redhat.com>
6192
6193 * configure.in: Set noconfigdirs for ms1.
6194
6195 * configure: Regenerate.
6196
6197 2005-05-25 Paolo Bonzini <bonzini@gnu.org>
6198
6199 * Makefile.tpl (stage[+id+]-start): Iterate over target module as well.
6200 (Dependencies): Consider target modules for bootstrap dependencies.
6201 Make target bootstrap modules depend on each stage's gcc.
6202 * Makefile.in: Regenerate.
6203
6204 2005-05-20 Paolo Bonzini <bonzini@gnu.org>
6205
6206 * Makefile.def (configure-gcc): Depend on binutils having been built.
6207 (all-gcc): No need to do it here.
6208 * Makefile.in: Regenerate.
6209
6210 2005-05-19 Paul Brook <paul@codesourcery.com>
6211
6212 * configure.in: Rewrite misleading error message when requested
6213 language cannot be built.
6214 * configure: Regenerate.
6215
6216 2005-05-15 Daniel Jacobowitz <dan@codesourcery.com>
6217
6218 * ylwrap: Import from Automake 1.9.5.
6219
6220 2005-05-04 Mike Stump <mrs@apple.com>
6221
6222 * configure.in: Always pass --target to target configures as
6223 otherwise rebuilds that do --recheck will fail.
6224 * configure: Rebuilt.
6225
6226 2005-05-04 Paolo Bonzini <bonzini@gnu.org>
6227
6228 * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Rename from
6229 STAGE_HOST_EXPORTS.
6230 (configure, all): Add bootstrap support.
6231 (Host modules, target modules): Pass post-stage1 flags and exports.
6232 (Top-level bootstrap): Remove bootstrap rules, expanded elsewhere.
6233 * Makefile.in: Regenerate.
6234
6235 2005-04-29 Paolo Bonzini <bonzini@gnu.org>
6236
6237 Sync from gcc:
6238
6239 2005-04-22 Bernd Schmidt <bernd.schmidt@analog.com>
6240
6241 * config.sub: Update from master copy.
6242
6243 2005-04-19 Hans-Peter Nilsson <hp@axis.com>
6244
6245 * configure.in <crisv32-*-*, cris-*-*>: New local variable
6246 libgcj_ex_libffi. Have specific match for *-*-linux*. Separate
6247 matches for "*-*-aout" and "*-*-elf". Don't disable libffi for
6248 "*-*-elf" and "*-*-linux*".
6249 * configure: Regenerate.
6250
6251 2005-04-06 Paolo Bonzini <bonzini@gnu.org>
6252
6253 * Makefile.tpl (BUILD_CONFIGARGS): Include --with-build-subdir.
6254 (TARGET_CONFIGARGS): Include --with-target-subdir.
6255 (configure, all): New macros. Use them throughout.
6256
6257 2005-04-05 Paolo Bonzini <bonzini@gnu.org>
6258
6259 * Makefile.tpl: Sync with gcc.
6260 * Makefile.in: Regenerate.
6261
6262 2005-03-30 J"orn Rennecke <joern.rennecke@st.com>
6263
6264 * config/mh-mingw32: Delete.
6265 * configure.in: Don't use it.
6266 * configure: Regenerate.
6267
6268 2005-03-31 Paolo Bonzini <bonzini@gnu.org>
6269
6270 * Makefile.def (bfd, opcodes, libstdc++-v3, libmudflap): Set lib_path.
6271 * Makefile.tpl (SET_LIB_PATH, REALLY_SET_LIB_PATH): Remove.
6272 (HOST_EXPORTS, STAGE_HOST_EXPORTS, TARGET_EXPORTS): Set $(RPATH_ENVVAR).
6273 (HOST_LIB_PATH): Generate from Makefile.def.
6274 (TARGET_LIB_PATH): Likewise.
6275 (Old bootstrap targets): Include TARGET_LIB_PATH into RPATH_ENVVAR.
6276 * Makefile.in: Regenerate.
6277 * configure.in (set_lib_path, SET_LIB_PATH, SET_GCC_LIB_PATH): Remove.
6278 (RPATH_ENVVAR): Include Darwin case.
6279 * configure: Regenerate.
6280
6281 2005-03-25 Paolo Bonzini <bonzini@gnu.org>
6282
6283 * configure.in (RPATH_ENVVAR): Set to DYLD_LIBRARY_PATH on Darwin.
6284 * configure: Regenerate.
6285
6286 2005-03-21 Zack Weinberg <zack@codesourcery.com>
6287
6288 * Makefile.def: Remove libstdcxx_incdir, libsubdir, gxx_include_dir,
6289 gcc_version, and gcc_version_trigger from set of flags to pass.
6290 * Makefile.tpl: Remove definitions of above variables.
6291 (config.status): Remove dependency on $(gcc_version_trigger).
6292 * Makefile.in: Regenerate.
6293 * configure.in: Do not reference config/gcc-version.m4 nor
6294 config/gxx-include-dir.m4. Do not invoke TL_AC_GCC_VERSION nor
6295 TL_AC_GXX_INCLUDE_DIR. Do not set gcc_version_trigger.
6296 * configure: Regenerate.
6297
6298 2005-03-16 Manfred Hollstein <manfred.h@gmx.net>
6299 Andrew Pinski <pinskia@physics.uc.edu>
6300
6301 * Makefile.tpl (check-[+module+]): Fix shell statement inside if ... fi.
6302 * Makefile.in: Regenerate.
6303
6304 2005-03-01 Alexandre Oliva <aoliva@redhat.com>
6305
6306 PR libgcj/20160
6307 * ltmain.sh: Avoid creating archives with components that have
6308 duplicate basenames.
6309
6310 2005-02-28 Andrew Pinski <pinskia@physics.uc.edu>
6311
6312 PR bootstrap/20250
6313 * Makefile.tpl (HOST target installs): Fix copy and pasto, use install
6314 instead of check.
6315 * Makefile.in: Regenerate.
6316
6317 2005-02-28 Paolo Bonzini <bonzini@gnu.org>
6318
6319 Sync from gcc.
6320
6321 2005-02-28 Paolo Bonzini <bonzini@gnu.org>
6322
6323 PR bootstrap/17383
6324 * Makefile.def (target_modules): Remove "stage", now unnecessary.
6325 * Makefile.tpl (HOST_SUBDIR): New substitution.
6326 (STAGE_HOST_EXPORTS, EXPECT, HOST_LIB_PATH, USUAL_AR_FOR_TARGET,
6327 USUAL_AS_FOR_TARGET, USUAL_DLLTOOL_FOR_TARGET, USUAL_GCC_FOR_TARGET,
6328 USUAL_LD_FOR_TARGET, USUAL_NM_FOR_TARGET, USUAL_OBJDUMP_FOR_TARGET,
6329 USUAL_RANLIB_FOR_TARGET, USUAL_WINDRES_FOR_TARGET): Use it.
6330 (Host modules, Bootstrapped modules): Use it.
6331 (Build modules, Target modules): Do not create symlink trees,
6332 always configure out-of-srcdir.
6333 (distclean): Try removing $(host_subdir) with rm before using rm -rf.
6334 * configure.in (FLAGS_FOR_TARGET, CC_FOR_TARGET, GCJ_FOR_TARGET,
6335 GFORTRAN_FOR_TARGET, CXX_FOR_TARGET, RAW_CXX_FOR_TARGET): Use
6336 $(HOST_SUBDIR). Create a symlink for host_subdir.
6337
6338 * Makefile.in: Regenerate.
6339 * configure: Regenerate.
6340
6341 Merged from libada-gnattools-branch:
6342 2004-11-28 Nathanael Nerode <neroden@gcc.gnu.org>
6343
6344 * Makefile.def: Add gnattools as a module, depending on target-libada.
6345 * Makefile.in: Regenerate.
6346 * configure.in: Include gnattools in host_tools; disable it if ada
6347 is disabled.
6348 * configure: Regenerate.
6349
6350 2005-02-23 Nick Clifton <nickc@redhat.com>
6351
6352 * configure: Regenerate.
6353
6354 2005-02-22 Paul Schlie <schlie@comcast.net>
6355
6356 * configure.in: Allow darwin targeted ports to build tk, itcl and
6357 libgui.
6358
6359 2005-02-21 Eric Botcazou <ebotcazou@libertysurf.fr>
6360
6361 PR libgcj/10353
6362 * configure.in (noconfigdirs) <sparc-*-solaris2.[0-6]>: Add libgcj.
6363 * configure: Regenerate.
6364
6365 2005-02-08 Andrew Cagney <cagney@gnu.org>
6366
6367 * MAINTAINERS: Delete reference to dejagnu/ and mmalloc/ from the
6368 gdb/ section. Update GDB's URL.
6369
6370 2005-01-31 Andrew Cagney <cagney@gnu.org>
6371
6372 * gettext.m4: Only set ENABLE_NLS when gettext is present.
6373
6374 2005-01-29 Hans-Peter Nilsson <hp@axis.com>
6375
6376 * configure.in (noconfigdirs) <crisv32-*-*>: Match like cris-*-*.
6377 <crisv32-*-*, cris-*-*>: Only disable target-newlib and
6378 target-libgloss when not *-*-elf and *-*-aout.
6379 * configure: Regenerate.
6380
6381 2005-01-27 Andrew Cagney <cagney@gnu.org>
6382
6383 * gettext.m4: Don't use NONE as a default for CATOBJEXT.
6384
6385 2005-01-24 Andrew Cagney <cagney@gnu.org>
6386
6387 * gettext.m4: Only fall back to ../intl/ when it's present.
6388
6389 2005-01-17 Kelley Cook <kcook@gcc.gnu.org>
6390
6391 * install-sh, config.sub: Import from upstream.
6392
6393 2005-01-17 Kelley Cook <kcook@gcc.gnu.org>
6394
6395 PR bootstrap/18222
6396 * Makefile.def: Pass CPPFLAGS_FOR_TARGET.
6397 * Makefile.tpl: Define target CPPFLAGS on CPPFLAGS_FOR_TARGET.
6398 * Makefile.in: Regenerate.
6399
6400 2005-01-03 Paolo Bonzini <bonzini@gnu.org>
6401
6402 Revert 2004-12-28 Makefile changes, a better fix will be
6403 applied to mainline and src after GCC 4.0 branches.
6404
6405 2004-12-28 Paolo Bonzini <bonzini@gnu.org>
6406
6407 PR bootstrap/17383
6408
6409 * Makefile.def (target_modules): Remove stage parameter,
6410 it is always true now.
6411 * Makefile.tpl (configure-build-[+module+],
6412 configure-target-[+module+]): Always build symlink tree
6413 for the directory and for include. BUILD_SUBDIR and
6414 TARGET_SUBDIR cannot be . anymore.
6415 * Makefile.in: Regenerate.
6416
6417 2004-12-25 David Edelsohn <edelsohn@gnu.org>
6418
6419 Revert 2004-12-08 Makefile changes.
6420
6421 2004-12-16 Andrew Stubbs <andrew.stubbs@st.com>
6422
6423 * configure.in (sh64-*-*): Reenable gprof.
6424 * configure: Regenerate.
6425
6426 2004-12-09 Jim Blandy <jimb@redhat.com>
6427
6428 * MAINTAINERS: List 'depcomp' as part of automake.
6429
6430 2004-12-08 David Edelsohn <edelsohn@gnu.org>
6431
6432 * Makefile.def (flags_to_pass): Add PICFLAG_FOR_TARGET.
6433 * Makefile.tpl (EXTRA_HOST_FLAGS): Add PICFLAG.
6434 (EXTRA_TARGET_FLAGS): Add PICFLAG.
6435 * Makefile.in: Regenerate.
6436
6437 2004-12-07 Matt Kraai <kraai@ftbfs.org>
6438
6439 * Makefile.tpl: Generate normal dependencies if the LHS module is
6440 not bootstrapped.
6441 * Makefile.in: Regenerate.
6442
6443 2004-12-03 Richard Sandiford <rsandifo@redhat.com>
6444
6445 * configure.in: Include config/gxx-include-dir.m4. Use
6446 TL_AC_GXX_INCLUDE_DIR. Remove some now-redundant AC_SUBSTs.
6447 * configure: Regenerate.
6448
6449 2004-12-03 Richard Sandiford <rsandifo@redhat.com>
6450
6451 * config.if: Delete.
6452 * configure.in: Set libstdcxx_incdir directly.
6453 * configure: Regenerate.
6454 * MAINTAINERS: Remove mention of config.if.
6455 * src-release (DEVO_SUPPORT): Remove config.if.
6456
6457 2004-12-02 Eric Christopher <echristo@redhat.com>
6458
6459 * Makefile.tpl (clean-target-libgcc): Add stmp-dirs to list
6460 of things to remove.
6461 * Makefile.in: Regenerate.
6462
6463 2004-12-02 Richard Sandiford <rsandifo@redhat.com>
6464
6465 * configure.in: Clear gcc_version_trigger if the file doesn't exist.
6466 * configure: Regenerate.
6467
6468 2004-12-02 Richard Sandiford <rsandifo@redhat.com>
6469
6470 * configure.in: Include config/gcc-version.m4. Use TL_AC_GCC_VERSION
6471 to set gcc_version_trigger. Remove some now-redundant AC_SUBSTs.
6472 * configure: Regenerate.
6473
6474 2004-11-26 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
6475
6476 * configure.in (hppa*-*-linux*): Don't add libgcj to noconfigdirs.
6477 (hppa*64*-*-*): Delete incorrect comment.
6478 * configure: Rebuilt.
6479
6480 2004-11-15 Kelley Cook <kcook@gcc.gnu.org>
6481
6482 * install-sh, compile: Import from automake.
6483
6484 2004-11-15 Kelley Cook <kcook@gcc.gnu.org>
6485
6486 * config.guess, config.sub: Import from savannnah.
6487
6488 2004-11-12 Mike Stump <mrs@apple.com>
6489
6490 * Makefile.def: Add html support.
6491 * Makefile.tpl: Likewise.
6492 * Makefile.in: Regenerate.
6493
6494 2004-11-11 Geoffrey Keating <geoffk@apple.com>
6495
6496 PR 18423
6497 * configure.in: Remove all instances of build-fixincludes from
6498 noconfigdirs.
6499 (build_configargs): Supply --target to subdirectories.
6500 * configure: Regenerate.
6501
6502 * Makefile.def: Make gcc install depend on fixincludes install.
6503 * Makefile.in: Regenerate.
6504
6505 2004-11-08 Hans-Peter Nilsson <hp@bitrange.com>
6506
6507 * configure.in (noconfigdirs) [mmix-*-*]: Disable
6508 target-libgfortran.
6509 * configure: Regenerate.
6510
6511 2004-11-07 David Edelsohn <edelsohn@gnu.org>
6512
6513 * config-ml.in: Pass FCFLAGS for multilibs, handle GFORTRAN
6514 like CC.
6515
6516 2004-11-05 Paolo Bonzini <bonzini@gnu.org>
6517
6518 * Makefile.def (host fixincludes): Specify missing targets.
6519 * Makefile.in: Regenerate.
6520
6521 2004-11-04 H.J. Lu <hongjiu.lu@intel.com>
6522
6523 PR other/17783
6524 * configure.in: Set up LD_LIBRARY_PATH by default for gcc.
6525 * configure: Regenerated.
6526
6527 2004-11-04 Daniel Jacobowitz <dan@debian.org>
6528
6529 * configure.in (arm-*-oabi*, thumb-*-oabi*): Remove.
6530 * configure: Regenerated.
6531
6532 2004-10-28 Eric B. Weddington <ericw@evcohs.com>
6533
6534 PR target/18151
6535 * configure.in (case ${target}): Do not build fixincludes for avr.
6536 * configure: Regenerated.
6537
6538 2004-10-26 Paolo Bonzini <bonzini@gnu.org>
6539
6540 * configure.in (case ${target}): Do not build fixincludes
6541 on platforms where it is not used.
6542 * configure: Regenerated.
6543
6544 2004-10-23 Daniel Jacobowitz <dan@debian.org>
6545
6546 * configure.in: Use an absolute path to install-sh.
6547 * configure: Regenerated.
6548
6549 2004-10-19 Andrew Cagney <cagney@gnu.org>
6550
6551 * src-release (do-djunpack, do-md5sum): Install the generated file
6552 directly into the proto-toplev/ directory.
6553
6554 2004-10-19 Andrew Cagney <cagney@gnu.org>
6555
6556 * src-release (GDB_SUPPORT_DIRS): Remove utils and intl.
6557
6558 2004-10-12 Kelley Cook <kcook@gcc.gnu.org>
6559
6560 * configure.in (*-*-cygwin*): Supress warning if newlib not present.
6561 * configure: Regenerate.
6562
6563 2004-10-06 Paolo Bonzini <bonzini@gnu.org>
6564
6565 Fix wrong conflict resolution in:
6566
6567 2004-08-16 Paolo Bonzini <bonzini@gnu.org>
6568
6569 * Makefile.in: Regenerate.
6570 * Makefile.tpl (Autogenerated `all-*' targets): Invoke $(TARGET-*)
6571 in the recursive `make', instead of hardwiring `all'.
6572 (Autogenerated TARGET-* variables): New.
6573
6574 2004-10-05 Ulrich Weigand <uweigand@de.ibm.com>
6575
6576 Merged from GCC / libtool upstream:
6577 2004-10-02 P.J. Darcy <darcypj@us.ibm.com>
6578 * ltcf-c.sh (tpf*): Add ld_shlibs=yes.
6579 * ltcf-cxx.sh (tpf*): Likewise.
6580 * ltconfig (tpf*): Add TPF OS configuration support.
6581
6582 2004-09-30 Tomer Levi <Tomer.Levi@nsc.com>
6583
6584 * configure.in: Enable target-libgloss for crx-*-*.
6585 * configure: Regenerate.
6586
6587 2004-09-24 Michael Roth <mroth@nessie.de>
6588
6589 * configure.in (--without-headers): Add missing double quotes.
6590 * configure: Regenerate.
6591
6592 2004-09-24 Kelley Cook <kcook@gcc.gnu.org>
6593
6594 * ylwrap: Revert to previous version.
6595
6596 2004-09-23 H.J. Lu <hongjiu.lu@intel.com>
6597
6598 PR bootstrap/17369
6599 * Makefile.tpl (REALLY_SET_LIB_PATH): Add @SET_GCC_LIB_PATH@.
6600 (HOST_EXPORTS]): Add @SET_GCC_LIB_PATH@. Set and export
6601 SET_GCC_LIB_PATH_CMD.
6602 (BASE_TARGET_EXPORTS): Likewise.
6603 * Makefile.in: Regenerated.
6604
6605 * configure.in (SET_GCC_LIB_PATH): Set and substitute.
6606 * configure: Regenerated.
6607
6608 2004-09-23 Kelley Cook <kcook@gcc.gnu.org>
6609
6610 * config.guess: New upstream version
6611 * compile, depcomp, install-sh, ylwrap: Likewise.
6612
6613 2004-09-19 Roger Sayle <roger@eyesopen.com>
6614
6615 * config/mh-x86omitfp: New host makefile fragment. Add
6616 -fomit-frame-pointer to the default BOOT_CFLAGS.
6617 * configure.in: Use it to speed up bootstrap on some IA-32 hosts.
6618 * configure: Regenerate.
6619
6620 2004-09-15 Andrew Pinski <pinskia@physics.uc.edu>
6621
6622 PR target/11572
6623 * configure.in (*-*-darwin*): Renable libobjc.
6624 * configure: Regenerate.
6625
6626 2004-09-09 Daniel Berlin <dberlin@dberlin.org>
6627
6628 * Makefile.def: Remove libbanshee.
6629 * Makefile.tpl: Ditto.
6630 * configure.in: Ditto.
6631 * Makefile.in: Regen.
6632 * configure: Ditto.
6633
6634 2004-09-07 Paolo Bonzini <bonzini@gnu.org>
6635
6636 * missing: Import latest version from master repository.
6637
6638 2004-09-04 Nick Clifton <nickc@redhat.com>
6639
6640 * config.sub: Import latest version from master repository.
6641 * config.guess: Likewise.
6642 This includes these changes:
6643
6644 2004-08-27 Hans-Peter Nilsson <hp@axis.com>
6645
6646 * config.sub: Handle crisv32, alias etraxfs.
6647 * config.guess (crisv32:Linux:*:*): Handle.
6648
6649 2004-08-13 Brad Smith <brad@comstyle.com>
6650
6651 * config.guess (*:OpenBSD:*:*): Remove defunct MIPS machines.
6652 (sgi:OpenBSD:*:*): Emit mips64, not mipseb.
6653
6654 2004-08-11 Paul Eggert <eggert@cs.ucla.edu>
6655
6656 * config.guess (*:Darwin:*:*): If uname -p reports "unknown",
6657 assume the processor is a powerpc. This is because coreutils
6658 uname (at least versions 4.5.7 through 5.2.1) outputs "unknown"
6659 in this case, due to a MacOS X bug that causes
6660 sysctl ((int[]) {CTL_HW, HW_MACHINE_ARCH}, 2, buffer, &bufsize, 0, 0)
6661 to return a negative number.
6662 Problem reported by Petter Reinholdtsen in:
6663 http://lists.gnu.org/archive/html/bug-gnu-utils/2003-02/msg00201.html
6664
6665 2004-07-19 Ben Elliston <bje@gnu.org>
6666
6667 * config.guess (S7501:*:4.0:3.0): Handle NCR System V UNIX machine.
6668
6669 2004-06-24 Ben Elliston <bje@gnu.org>
6670
6671 * config.guess: Update copyright years.
6672 * config.sub: Likewise.
6673
6674 2004-06-22 Robert Millan <robertmh@gnu.org>
6675
6676 * config.guess (*:FreeBSD:*:*): Remove check for glibc (unneeded
6677 since GNU/kFreeBSD systems match *:GNU/*:*:* instead).
6678
6679 2004-06-22 Stanley F. Quayle <stan@stanq.com>
6680
6681 * config.guess (*:*VMS:*:*): New entry. Replaces
6682 Alpha:OpenVMS:*. Recognize and advertise all VMS flavors as dec
6683 manufacturer.
6684
6685 2004-06-22 Ben Elliston <bje@gnu.org>
6686
6687 * config.guess: Cray fixes from Wendy Palm <wendyp@cray.com>.
6688 * config.sub: Likewise.
6689
6690 2004-06-22 Ben Elliston <bje@gnu.org>
6691
6692 Reported by Hans-Peter Nilsson <hp@bitrange.com>:
6693 * config.sub: Correctly handle mmix-knuth and mmix-knuth-mmixware.
6694
6695 2004-06-11 Ben Elliston <bje@gnu.org>
6696
6697 * config.guess (pegasos:OpenBSD:*:*): Remove.
6698
6699 2004-06-11 Ben Elliston <bje@gnu.org>
6700
6701 From Wouter Verhelst <wouter@grep.be>:
6702 * config.guess (M68*:*:R3V[5678]:*): Detect R3V8.
6703
6704 2004-06-11 Ben Elliston <bje@gnu.org>
6705
6706 * config.guess (luna88k:OpenBSD:*:*): New.
6707
6708 2004-03-12 Kazuhiro Inaoka <inaoka.kazuhiro@renesas.com>
6709
6710 * config.guess (m32r*:Linux:*:*): New case.
6711 * config.sub: Handle m32rle.
6712
6713 2004-03-12 Ben Elliston <bje@wasabisystems.com>
6714
6715 From Jens Petersen <petersen@redhat.com>:
6716 * config.sub: Handle sparcv8.
6717
6718 2004-03-03 Ben Elliston <bje@wasabisystems.com>
6719
6720 From Tom Smith <smith@cag.lkg.hp.com>:
6721 * config.guess: Version suffixes are equally significant on Tru64
6722 V4.* and V5.*, so do not ignore them on V5.*. Handle a version
6723 prefix of "P" (patched kernel).
6724
6725 2004-02-23 Tal Agmon <Tal.Agmon@nsc.com>
6726
6727 * config.sub: Add support for National Semiconductor CRX target.
6728
6729 2004-09-03 Jan Beulich <jbeulich@novell.com>
6730
6731 * configure.in: Remove target-libstdc++-v3 from noconfigdirs for
6732 *-*-netware, but add target-libmudflap.
6733 Consolidate *-*-netware targets (of which really only i?86 exists)
6734 into a single entry.
6735 * configure: Likewise.
6736
6737 2004-09-01 Paolo Bonzini <bonzini@gnu.org>
6738
6739 * Makefile.tpl (sorry): Remove.
6740 (clean-stage[+id+], clean-stage[+id+]-module): New targets.
6741 (cleanstrap targets): Depend on distclean, not distclean-stage1.
6742 (do-clean): Clean per-stage directories too.
6743 (do-distclean): Run distclean-stage1 too.
6744 (.NOTPARALLEL): Enable during toplevel bootstrap.
6745 (stage[+id+]-bubble): Enable parallel execution during
6746 the recursive invocation.
6747 * Makefile.in: Regenerate.
6748
6749 Sync from gcc (moving the Makefile.in change to Makefile.tpl):
6750
6751 2004-08-31 Robert Bowdidge <bowdidge@apple.com>
6752
6753 * Makefile.in: Move BOOT_CFLAGS above host makefile fragment include.
6754 * configure.in: add test for powerpc-*-darwin* to specify makefile frag
6755 * configure: regenerate
6756 * config/mh-ppc-darwin: create file, override BOOT_CFLAGS for
6757 -mdynamic-no-pic
6758
6759 2004-08-31 Paolo Bonzini <bonzini@gnu.org>
6760
6761 * Makefile.tpl: Move BOOT_CFLAGS above host makefile fragment
6762 include.
6763 * configure.in: Fix indentation.
6764 * configure: Regenerate.
6765
6766 2004-08-31 Paolo Bonzini <bonzini@gnu.org>
6767
6768 * Makefile.def (build_modules): Add fixincludes.
6769 (dependencies): Make gcc depend on fixincludes.
6770 * configure.in (build_tools): Add fixincludes.
6771 (build_configdirs): Always include build_libs.
6772 * Makefile.in: Regenerate.
6773 * configure: Regenerate.
6774
6775 2004-08-30 Paolo Bonzini <bonzini@gnu.org>
6776
6777 * Makefile.def (bootstrap stages): Add 'lean' parameter.
6778 * Makefile.tpl (configure-stageN-*, all-stageN-*): Turned into
6779 phony targets; do not generate timestamp files.
6780 (distclean-stageN): Remove references to their timestamp files.
6781 (restageN, touch-stageN): Remove.
6782 (stageN-bubble): Rewritten.
6783 (compare): Support lean bootstraps.
6784 * Makefile.in: Regenerate.
6785
6786 * configure.in: Only warn when bootstrapping but
6787 build != host or build != target. Support lean bootstraps.
6788 * configure: Regenerate.
6789
6790 Sync from gcc:
6791 2004-08-26 Phil Edwards <phil@codesourcery.com>
6792
6793 * configure.in: Give a better error message if GMP/MPFR are missing
6794 and a language needing them has been requested.
6795 * configure: Regenerated.
6796
6797 2004-08-25 Phil Edwards <phil@codesourcery.com>
6798
6799 * configure.in: Print a list of available language front-ends if
6800 a requested one is missing. Tidy stray tab characters.
6801 * configure: Regenerated.
6802
6803 2004-08-17 Paolo Bonzini <bonzini@gnu.org>
6804
6805 * Makefile.in: Regenerate.
6806 * configure: Regenerate.
6807
6808 * Makefile.def (bootstrap-stage): Rename extra_*_flags to
6809 stage_*_flags.
6810 * Makefile.tpl (configure-[+module+], all-[+module+]): Exit
6811 for bootstrapped modules if toplevel bootstrap is going.
6812 (GCC bootstrap): Generate per-stage targets for all bootstrapped
6813 modules. Adjust for changes in Makefile.def. Enable several
6814 rules even in non-bootstrap mode, just to avoid peppering the
6815 template with unnecessary "@if/@endif gcc-bootstrap" pairs.
6816 (stage-[+prev+]-bubble): Remove.
6817
6818 * Makefile.def (Dependencies): Depend on all-build-bison,
6819 all-build-flex, all-build-byacc, all-build-texinfo, rather
6820 than the host variations.
6821 * Makefile.tpl (BUILD_DIR_PREFIX): Remove. Replace throughout
6822 with BUILD_SUBDIR.
6823 (BISON): Update for recent Bisons.
6824 (YACC): Fix typo.
6825 (cross): Depend on all-build.
6826 (all): Do not depend on all-build.
6827 (prebootstrap): Remove.
6828 (dep-kind): Accept separate prefixes for MODULE and ON variables.
6829 (Prebootstrap dependencies): Add them to the per-stage targets
6830 and to all-prebootstrap.
6831 * configure.in (build_configdirs): Always enable build_tools.
6832 (BUILD_DIR_PREFIX): Remove.
6833
6834 * Makefile.def (gcc): Add target variable.
6835 (gdb, expect, guile, tk, tix): Replace with_x with extra_make_flags.
6836 * Makefile.tpl (Autogenerated `all-*' targets): Invoke $(TARGET-*)
6837 in the recursive `make', instead of hardwiring `all'.
6838 (Autogenerated TARGET-* variables): New.
6839
6840 2004-08-17 Robert Millan <robertmh@gnu.org>
6841
6842 * configure.in: In noconfigdirs check, match GNU/k*BSD with GNU/Linux
6843 (instead of FreeBSD).
6844 * configure: Regenerate.
6845
6846 2004-08-12 Nathanael Nerode <neroden@gcc.gnu.org>
6847
6848 * Makefile.def, configure.in, src-release: Remove useless, bogus
6849 references to tix.
6850 * Makefile.in, configure: Regenerate.
6851
6852 * src-release: Stop distributing mmalloc with gdb (which doesn't
6853 use it).
6854 * Makefile.def: GDB doesn't depend on mmalloc anymore.
6855 * Makefile.in: Regenerate.
6856
6857 2004-08-09 Mark Mitchell <mark@codesourcery.com>
6858
6859 * configure.in (arm*-*-eabi*): New target.
6860 * configure: Regenerate.
6861
6862 2004-08-01 Robert Millan <robertmh@gnu.org>
6863
6864 * configure.in: Turn mt-linux into mt-gnu. Use mt-gnu and enable
6865 libmudflap for all GNU-based systems (with Glibc).
6866 * configure: Regenerate.
6867
6868 2004-08-06 Paolo Bonzini <bonzini@gnu.org>
6869
6870 * Makefile.def (bfd, opcodes, gcc, zlib): Mark as bootstrap module.
6871 (bison, byacc, flex, texinfo): Do not mark as bootstrap module.
6872 (Dependencies): New section.
6873 * Makefile.tpl (Dependencies): Generate from Makefile.def.
6874 (configure-target-[+module+]): Depend on maybe-all-gcc
6875 (all-prebootstrap): New name of all-bootstrap. Changed throughout.
6876 (toplevel profiledbootstrap): Fix dependencies.
6877 * Makefile.in: Regenerate.
6878
6879 2004-08-03 Mark Mitchell <mark@codesourcery.com>
6880
6881 * configure.in (arm*-*-symbianelf*): Add ${libgcj} and
6882 target-libiberty to noconfigdirs.
6883
6884 2004-08-03 Paul Brook <paul@codesourcery.com>
6885
6886 * configure.in: Check for MPFR as well as GMP.
6887 * configure: Regenerate.
6888
6889 2004-08-03 Paolo Bonzini <bonzini@gnu.org>
6890
6891 * Makefile.def (host-modules): Add gcc.
6892 * Makefile.in: Regenerate.
6893 * Makefile.tpl (sorry): New rule.
6894 (configure-host, all-host, [+make_target+]-host, do-check,
6895 install-host): Do not add gcc as a special case.
6896 (host modules): Add a small special-casing for gcc. Export
6897 extra_make_flags through the environment.
6898 (maybe-configure-gcc, configure-gcc, maybe-all-gcc, all-gcc,
6899 maybe-check-gcc, check-gcc, maybe-install-gcc, install-gcc,
6900 other recursive targets for gcc): Remove.
6901
6902 (all, do-[+make_target+], do-check): Wrap between unstage and stage.
6903 (stage, unstage): New rules.
6904 (stage[+id+]-start, stage[+id+]-end, [+compare-target+],
6905 distclean-stage[+id+]): Use stage_current.
6906 ([+bootstrap-target+], profiledbootstrap): Do not invoke manually
6907 the stage*-start rules.
6908
6909 2004-07-19 Robert Millan <robertmh@gnu.org>
6910
6911 Synced from gcc:
6912
6913 2004-04-26 Robert Millan <robertmh@gnu.org>
6914
6915 Add patches from libtool CVS.
6916 * libtool.m4: Add kfreebsd*-gnu and knetbsd*-gnu.
6917 * ltconfig: Likewise.
6918 * ltcf-c.sh: Likewise.
6919 * ltcf-cxx.sh: Likewise.
6920 * ltcf-gcj.sh: Likewise.
6921
6922 2004-07-12 Paolo Bonzini <bonzini@gnu.org>
6923
6924 * configure.in: Add noconfigdirs for crx-*-*.
6925 * configure: Regenerate.
6926
6927 2004-07-12 Paolo Bonzini <bonzini@gnu.org>
6928
6929 Synced from gcc:
6930
6931 2004-07-09 Loren J. Rittle <ljrittle@acm.org>
6932
6933 * configure.in: Build libmudflap by default on FreeBSD.
6934 * configure: Regenerated.
6935
6936 2004-07-09 Mark Mitchell <mark@codesourcery.com>
6937
6938 * configure.in: Do not build libmudflap by default on non-GNU/Linux
6939 systems.
6940 * configure: Regenerated.
6941
6942 2004-07-08 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
6943
6944 PR target/16344
6945 * Makefile.tpl (profiledbootstrap): Build runtime libraries with
6946 feedback based compiler.
6947 * Makefile.in: Rebuilt.
6948
6949 2004-07-05 Phil Edwards <phil@codesourcery.com>
6950
6951 * configure.in: Do not prepend $srcdir to /dev/null in
6952 makefile fragments.
6953 * configure: Regenerate.
6954
6955 2004-07-08 Alexandre Oliva <aoliva@redhat.com>
6956
6957 * Makefile.def (host_modules): Set bootstrap=true for flex.
6958 * Makefile.tpl (all-gcc): Depend on texinfo and flex.
6959 * Makefile.in: Rebuilt.
6960
6961 2004-07-01 Paolo Bonzini <bonzini@gnu.org>
6962
6963 * Makefile.def (build_modules): Add bison, byacc, flex,
6964 m4, texinfo.
6965 (flags_to_pass): Add FLEX.
6966 * Makefile.tpl (BUILD_DIR_PREFIX, BASE_EXPORTS): New.
6967 (BUILD_EXPORTS, HOST_EXPORTS, BASE_TARGET_EXPORTS): Include it.
6968 (DEFAULT_YACC, USUAL_YACC, DEFAULT_LEX, USUAL_LEX, DEFAULT_M4,
6969 DEFAULT_MAKEINFO): Remove.
6970 (CONFIGURED_YACC, CONFIGURED_FLEX, CONFIGURED_BISON,
6971 CONFIGURED_LEX, CONFIGURED_M4, CONFIGURED_MAKEINFO): Substitute.
6972 (YACC, FLEX, BISON, LEX, M4, MAKEINFO): Define to look into
6973 objdir or else use configured tool.
6974 (all-build): New.
6975 (all): Depend on it.
6976 (Build module dependencies): Add.
6977 * Makefile.in: Regenerate.
6978 * configure.in: Better support for multiple build modules,
6979 matching what is done for host/target modules. Do not look
6980 for "plausible" locations of build tools if Canadian cross.
6981 Use autoconf's AC_PROG_CC to find a C compiler. Define
6982 BUILD_DIR_PREFIX. Look for flex, makeinfo and m4.
6983 * configure: Regenerate.
6984
6985 2004-06-22 Paolo Bonzini <bonzini@gnu.org>
6986
6987 * Makefile.tpl (HOST_EXPORTS): Fix pasto.
6988 * Makefile.in: Regenerate.
6989
6990 2004-06-22 Paolo Bonzini <bonzini@gnu.org>
6991
6992 * Makefile.tpl (configure-build-[+module+],
6993 configure-[+module+], configure-target-[+module+]): Pass
6994 [+extra_configure_args+].
6995 (all-build-[+module+], all-[+module+], check-[+module+],
6996 install-[+module+], [+make_target+]-[+module+],
6997 all-target-[+module+], check-target-[+module+],
6998 install-target-[+module+], [+make_target+]-target-[+module+]):
6999 Pass [+extra_make_args+].
7000 (HOST_EXPORTS): Include the former GCC_HOST_EXPORTS.
7001 (GCC_HOST_EXPORTS): Remove.
7002 (configure-gcc, all-gcc, GCC_STRAP_TARGETS, profiledbootstrap,
7003 cross, check-gcc, check-gcc-c++, install-gcc,
7004 gcc-no-fixedincludes, [+make_target+]-gcc, stage[+id+]-bubble):
7005 Replace GCC_HOST_EXPORTS with HOST_EXPORTS.
7006 * Makefile.in: Regenerate.
7007
7008 2004-06-21 Christopher Faylor <cgf@alum.bu.edu>
7009
7010 * configure.in: Check for srcdir/winsup rather than build directory
7011 winsup.
7012 * configure: Regenerate.
7013
7014 2004-06-17 Corinna Vinschen <vinschen@redhat.com>
7015
7016 * configure.in: Don't build Cygwin native newlib if winsup
7017 directory is missing. Emit warning instead.
7018 * configure: Regenerate.
7019
7020 2004-06-09 Paolo Bonzini <bonzini@gnu.org>
7021
7022 * Makefile.tpl (touch-stage[+id+]): New.
7023 (restage[+prev+]): Depend on touch-stage[+id+].
7024
7025 * Makefile.tpl (RECURSE_FLAGS_TO_PASS): New.
7026 Use it throughout.
7027
7028 * Makefile.def: Add profile and feedback bootstrap stages.
7029 Remove next field from bootstrap stages.
7030 * Makefile.tpl (LN, LN_S): Substitute.
7031 (stageN-start, stageN-end): Use double-colon rules, to
7032 provide a hook for additional setup commands.
7033 (distclean-stageN-gcc, restageN): Create dependencies from
7034 [+prev+], not from [+next+].
7035 (stageN-bubble): Add commands for successive stages from
7036 [+prev+], using double-colon rules.
7037 (all-stageN-gcc): Fix typo.
7038 (stagefeedback-start, profiledbootstrap): New.
7039 * Makefile.in: Regenerate.
7040 * configure.in: Call ACX_PROG_LN.
7041 * configure: Regenerate.
7042
7043 2004-06-03 Paolo Bonzini <bonzini@gnu.org>
7044
7045 * configure.in: Fix --enable-bootstrap breakage introduced in trees
7046 without gcc.
7047 * configure: Regenerate.
7048
7049 2004-06-01 Paolo Bonzini <bonzini@gnu.org>
7050
7051 * Makefile.tpl: Fix typo.
7052 * Makefile.in: Regenerate.
7053
7054 2004-06-01 Paolo Bonzini <bonzini@gnu.org>
7055
7056 * configure.in: Remove new- prefix from toplevel
7057 bootstrap targets.
7058 * configure: Regenerate.
7059
7060 2004-06-01 Paolo Bonzini <bonzini@gnu.org>
7061
7062 Merge this patch from the gcc tree:
7063
7064 2004-05-30 Andreas Jaeger <aj@suse.de>
7065 Jim Wilson <wilson@specifixinc.com>
7066
7067 * config-ml.in: Pass FFLAGS and ADAFLAGS for multilibs, handle F77
7068 like CC.
7069
7070 2004-06-01 Paolo Bonzini <bonzini@gnu.org>
7071
7072 * Makefile.tpl (all.normal): Rename to all.
7073 (all): Replace with a rule to pick the default
7074 target from configure.
7075 (all-gcc, configure-gcc): Use conditionals to
7076 do nothing when toplevel bootstrap is going on.
7077 (GCC directory bootstrap) [gcc-bootstrap]: Disable.
7078 (Toplevel bootstrap) [gcc-no-bootstrap]: Disable.
7079 * configure.in: Support --enable-bootstrap.
7080
7081 * Makefile.def: Remove new- prefix from toplevel
7082 bootstrap targets.
7083 * Makefile.tpl: Likewise.
7084
7085 * Makefile.def: Add bootstrap_stage 4. Add bootstrap2
7086 target.
7087
7088 * Makefile.tpl (Toplevel bootstrap): Pass $(BASE_FLAGS_TO_PASS)
7089 $(RECURSE_FLAGS) to recursive invocation of make.
7090
7091 * Makefile.in: Regenerate.
7092 * configure: Regenerate.
7093
7094 2004-05-27 Daniel Jacobowitz <dan@debian.org>
7095
7096 * configure.in: Fix sed invocation for GFORTRAN_FOR_TARGET.
7097 * configure: Regenerate.
7098
7099 2004-05-25 Daniel Jacobowitz <drow@false.org>
7100
7101 * Makefile.tpl (BUILD_EXPORTS, HOST_EXPORTS, GCC_HOST_EXPORTS)
7102 (STAGE_HOST_EXPORTS, BASE_TARGET_EXPORTS, RAW_CXX_TARGET_EXPORTS)
7103 (NORMAL_TARGET_EXPORTS): New macros. Use them in all the recursive
7104 targets.
7105 * Makefile.in: Regenerate.
7106
7107 2005-05-24 Paolo Bonzini <bonzini@gnu.org>
7108
7109 * configure.in: Test the ability to symlink directories.
7110 * configure: Regenerate.
7111
7112 * Makefile.def (bootstrap-stage): New definitions.
7113 * Makefile.tpl (configure-stage1-gcc,
7114 configure-stage2-gcc, configure-stage3-gcc,
7115 all-stage1-gcc, all-stage2-gcc, all-stage3-gcc,
7116 new-bootstrap, new-cleanstrap, new-restage1, new-restage2,
7117 new-restage3, compare): Autogenerate, see Makefile.in
7118 entry for behavioral changes.
7119 (distclean-stage1, new-stage1-start, new-stage1-end,
7120 new-stage1-bubble, distclean-stage2, new-stage2-start,
7121 new-stage2-end, new-stage2-bubble, distclean-stage3,
7122 new-stage3-start, new-stage3-end): New autogenerated targets.
7123 (objext, prebootstrap, BOOT_CFLAGS,
7124 POSTSTAGE1_FLAGS_TO_PASS): Move above the autogenerated
7125 targets.
7126
7127 * Makefile.in: Regenerate.
7128 (distclean-stage1, new-stage1-start, new-stage1-end,
7129 new-stage1-bubble, distclean-stage2, new-stage2-start,
7130 new-stage2-end, new-stage2-bubble, distclean-stage3,
7131 new-stage3-start, new-stage3-end): New targets.
7132 (all-stage1-gcc): Move prebootstrap dependency from here...
7133 (configure-stage1-gcc): ...to here.
7134 (new-bootstrap): Use bubble targets.
7135 (new-cleanstrap, new-restage1, new-restage2, new-restage3):
7136 Use per-stage distclean targets.
7137 (configure-stage1-gcc, configure-stage2-gcc,
7138 configure-stage3-gcc, all-stage1-gcc,
7139 all-stage2-gcc, all-stage3-gcc, new-bootstrap):
7140 Use new-stageN-start to prepare the tree.
7141
7142 2004-05-23 Paolo Bonzini <bonzini@gnu.org>
7143
7144 * Makefile.def (host_modules): add libcpp.
7145 * Makefile.tpl: Add dependencies on and for libcpp.
7146 * Makefile.in: Regenerate.
7147 * configure.in: Add libcpp host module.
7148 * configure: Regenerate.
7149
7150 2004-05-17 Zack Weinberg <zack@codesourcery.com>
7151
7152 * Makefile.def, Makefile.tpl, configure.in: Remove all mention
7153 of libf2c.
7154 * configure, Makefile.in: Regenerate.
7155
7156 2004-05-13 Diego Novillo <dnovillo@redhat.com>
7157
7158 Merge from tree-ssa-20020619-branch.
7159
7160 * Makefile.def: Add libbanshee, libmudflap and libgfortran.
7161 * Makefile.tpl (BUILD_CONFIGDIRS): Add libbanshee.
7162 (HOST_GMPLIBS): Define.
7163 (HOST_GMPINC): Define.
7164 (TARGET_LIB_PATH): Add libmudflap.
7165 (GFORTRAN_FOR_TARGET): Define.
7166 (configure-build*): Export GFORTRAN.
7167 (configure-gcc): Export GMPLIBS and GMPINC.
7168 (all-gcc): Add maybe-all-libbanshee.
7169 (configure-target-libgfortran): Define.
7170 * Makefile.in: Regenerate.
7171 * configure.in (host_libs): Add libbanshee.
7172 (target_libraries): Add target-libmudflap and target-libgfortran.
7173 Add --with-libbanshee.
7174 Handle --disable-libmudflap.
7175 (*-*-freebsd*): Use with_gmp.
7176 Add $(libgcj) to noconfigdirs.
7177 * configure: Regenerate.
7178 * depcomp: New file.
7179 * MAINTAINERS: Add tree-ssa maintainers.
7180
7181 2004-04-28 Paolo Bonzini <bonzini@gnu.org>
7182
7183 * config/acx.m4: Fix fastcompare support for new-bootstrap.
7184 * configure: Regenerate.
7185
7186 2004-04-27 Paolo Bonzini <bonzini@gnu.org>
7187
7188 Revert:
7189 2004-04-26 Paolo Bonzini <bonzini@gnu.org>
7190
7191 * Makefile.def (flags_to_pass): Remove *dir variables that
7192 are passed to the modules via TOPLEVEL_CONFIGURE_ARGUMENTS,
7193 as well as prefix and exec_prefix.
7194 * Makefile.in: Regenerate.
7195
7196 2004-04-26 Paolo Bonzini <bonzini@gnu.org>
7197
7198 * Makefile.def (host_modules): Mark with the bootstrap
7199 flag packages on which gcc depends.
7200 * Makefile.tpl (all-bootstrap): Use it.
7201 * Makefile.in: Regenerate.
7202
7203 2004-04-26 Paolo Bonzini <bonzini@gnu.org>
7204
7205 * Makefile.def (flags_to_pass): Remove *dir variables that
7206 are passed to the modules via TOPLEVEL_CONFIGURE_ARGUMENTS,
7207 as well as prefix and exec_prefix.
7208 * Makefile.in: Regenerate.
7209
7210 2004-04-26 Paolo Bonzini <bonzini@gnu.org>
7211
7212 * configure.in: Invoke ACX_PROG_CMP_IGNORE_INITIAL.
7213 * configure: Regenerate.
7214 * config/acx.m4: Mutuate ACX_PROG_CMP_IGNORE_INITIAL from gcc.
7215 * gcc/Makefile.tpl (compare): Use the result of the test.
7216 * gcc/Makefile.in: Regenerate.
7217
7218 2004-04-23 Paolo Bonzini <bonzini@gnu.org>
7219
7220 * Makefile.tpl (all-stage1-gcc, all-stage2-gcc, all-stage3-gcc):
7221 Always relocate gcc and prev-gcc to the original names, even
7222 if the build fails.
7223 (new-cleanstrap, new-restage1, new-restage2, new-restage3):
7224 New targets.
7225
7226 2004-04-19 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
7227
7228 * configure.in (mips*-*-irix5*): Enable ld.
7229 * configure: Regenerate.
7230
7231 2004-04-15 James E Wilson <wilson@specifixinc.com>
7232
7233 * Makefile.tpl (configure-[+module+], configure-gcc,
7234 configure-stage1-gcc, configure-stage2-gcc, configure-stage3-gcc):
7235 Set and export LDFLAGS.
7236 * Makefile.in: Regenerate.
7237
7238 2004-04-09 Nathanael Nerode <neroden@gcc.gnu.org>
7239
7240 PR bootstrap/14871
7241 * Makefile.tpl: If we don't have built-in-tree target tools,
7242 use the ones found by configure rather than hacking around with
7243 program_transform_name.
7244 * configure.in: Give Makefile.tpl the information necessary
7245 to do that.
7246 * Makefile.in: Regenerate.
7247 * configure: Regenerate.
7248
7249 2004-04-06 Nathanael Nerode <neroden@gcc.gnu.org>
7250
7251 PR bootstrap/14760
7252 * configure.in: When computing baseargs, strip *all* copies of
7253 offending options. Also, don't match/substitute the trailing space,
7254 so that this actually works when two similar options are separated by
7255 only one space.
7256 * configure: Regenerate.
7257
7258 2004-04-06 David Edelsohn <edelsohn@gnu.org>
7259
7260 * configure.in (powerpc-*-aix*): Remove target-libada from noconfigdirs.
7261 (rs6000-*-aix*): Same.
7262 * configure: Regenerate.
7263
7264 2004-03-25 Stan Shebs <shebs@apple.com>
7265
7266 Remove MPW support, no longer used.
7267 * mpw-README, mpw-build.in, mpw-config.in, mpw-configure,
7268 mpw-install: Remove files.
7269 * src-release (DEVO_SUPPORT): Remove names of removed files.
7270 * MAINTAINERS: Likewise.
7271
7272 2004-03-24 Nathanael Nerode <neroden@gcc.gnu.org>
7273
7274 * Makefile.tpl (top level bootstrap support): Remove now-unneeded
7275 STRICT_WARN, WARN_CFLAGS flags passed down to make.
7276 * Makefile.in: Regenerate.
7277
7278 * configure.in (top level bootstrap support): Rework --enable-werror
7279 to set @stage2_werror_flag@.
7280 * configure: Regenerate.
7281 * Makefile.tpl (top level bootstrap support): Pass
7282 @stage2_werror_flag@ down to configure in stages 2 and 3.
7283 * Makefile.in: Regenerate.
7284
7285 2004-03-23 Nathanael Nerode <neroden@gcc.gnu.org>
7286
7287 * Makefile.tpl (new-bootstrap): Set CC and CC_FOR_BUILD in configure
7288 for stages 2 and 3 as well as in make. As a consequence, remove
7289 OUTPUT_OPTION (now detected by configure) from the flags passed down
7290 to make.
7291 * Makefile.in: Regenerate.
7292
7293 * Makefile.tpl (new-bootstrap): Fix typo.
7294 * Makefile.in: Regenerate.
7295
7296 2004-03-22 Nathanael Nerode <neroden@gcc.gnu.org>
7297
7298 * Makefile.tpl: Rearrange by moving recursive_targets rules
7299 into their proper sections.
7300 * Makefile.tpl (top level bootstrap support): Move disabling
7301 of coverage flags from 'make' to 'configure'; improve comments.
7302 * Makefile.in: Regenerate.
7303
7304 * Makefile.tpl (experimental top level bootstrap) Move stage1
7305 language setting from all- target to configure- target; disable
7306 intermodule optimization in stage 1; prevent gratuitous rebuilds
7307 of stage 1.
7308 * Makefile.in: Regenerate.
7309 * configure.in: Comma-separate stage 1 language list for top
7310 level bootstrap.
7311 * configure: Regenerate.
7312
7313 * Makefile.tpl: Clean up experimental top level bootstrap support:
7314 note known problems; set CONFIG_SHELL; don't set BUILD_CC; relocate
7315 prev-gcc in configure- targets as well as all- targets.
7316 * Makefile.in: Regenerate.
7317
7318 2004-03-17 Paolo Bonzini <bonzini@gnu.org>
7319
7320 * configure.in: Remove symbolic link section.
7321 * configure: Regenerate.
7322 * Makefile.tpl (links): Remove.
7323 * Makefile.in: Regenerate.
7324
7325 2004-03-15 Paolo Bonzini <bonzini@gnu.org>
7326 Nathanael Nerode <neroden@gcc.gnu.org>
7327
7328 * configure.in (DEFAULT_YACC, DEFAULT_M4, DEFAULT_LEX):
7329 Set with AC_CHECK_PROGS.
7330 * configure.in: Fix comment typo from last patch.
7331 * configure: Regenerate.
7332
7333 2004-03-15 Nathanael Nerode <neroden@gcc.gnu.org>
7334
7335 * Makefile.tpl: Introduce experimental top level bootstrap support.
7336 * Makefile.in: Regenerate.
7337 * configure.in: Introduce support for top level bootstrap.
7338 * configure: Regenerate.
7339
7340 2004-03-12 Eric Botcazou <ebotcazou@gcc.gnu.org>
7341 Paolo Bonzini <bonzini@gnu.org>
7342
7343 PR bootstrap/14522
7344 * configure.in: Cope with shells that do not support unquoted ^
7345 * configure: Regenerate.
7346
7347 2004-03-11 Eric Botcazou <ebotcazou@gcc.gnu.org>
7348 Paolo Bonzini <bonzini@gnu.org>
7349
7350 PR bootstrap/14522
7351 * configure.in: Cope with shell that do not support nesting
7352 quotes inside quoted backquote substitutions.
7353 * configure: Regenerate.
7354
7355 2004-03-10 Andrew Pinski <pinskia@physics.uc.edu>
7356
7357 PR bootstrap/14522
7358 * configure.in: Fix escaping of $.
7359 * configure: Regenerate.
7360
7361 2004-03-11 Nathanael Nerode <neroden@gcc.gnu.org>
7362
7363 * configure: Regenerate.
7364
7365 2004-03-08 Paolo Bonzini <bonzini@gnu.org>
7366
7367 PR ada/14131
7368 Move language detection to the top level.
7369 * configure.in: Find default values for the tools as
7370 soon as possible. Disable ada if GNAT is not found.
7371 Emit error message about missing languages. Expand
7372 --enable-languages=all for the gcc subdirectory.
7373
7374 2004-03-01 Richard Sandiford <rsandifo@redhat.com>
7375
7376 * configure.in (mips64*-*-linux*): Override mips*-*-linux* case
7377 and disable libgcj.
7378 * configure: Regenerated.
7379
7380 2004-02-28 Nathanael Nerode <neroden@gcc.gnu.org>
7381
7382 PR bootstrap/7087
7383 * Makefile.tpl: Guard XFOO sed statements better.
7384 * Makefile.tpl: Add dependency for configure-target-libada.
7385 * Makefile.in: Regenerate (incidentally fixes broken
7386 commit when libada-branch was merged).
7387
7388 2004-02-28 Andrew Cagney <cagney@redhat.com>
7389
7390 * src-release (CVS_NAMES): Define.
7391 (do-tar, do-tar): Prune $(CVS_NAMES).
7392
7393 2004-02-23 Andrew Cagney <cagney@redhat.com>
7394
7395 * texinfo/texinfo.tex: Update from version 2003-02-03.16 to
7396 2004-02-19.09.
7397
7398 2004-02-19 Nathanael Nerode <neroden@gcc.gnu.org>
7399
7400 PR bootstrap/11932
7401 * mkinstalldirs, install-sh: Import from automake CVS HEAD.
7402
7403 2004-02-19 Andrew Cagney <cagney@redhat.com>
7404
7405 * config.guess: Update from version 2003-06-12 to 2004-02-16.
7406 * config.sub: Update from version 2003-06-13 to 2004-02-16.
7407
7408 2004-02-11 David Edelsohn <edelsohn@gnu.org>
7409
7410 * configure.in (powerpc-*-aix*): Add target-libada to noconfigdirs.
7411 (rs6000-*-aix*): Same.
7412 * configure: Regenerate.
7413
7414 2004-02-11 Kelley Cook <kcook@gcc.gnu.org>
7415
7416 * configure.in (host): Add in missing $noconfigdirs to defines.
7417 * configure: Regenerate.
7418
7419 2004-02-10 Arnaud Charlet <charlet@act-europe.fr>,
7420 Nathanael Nerode <neroden@gcc.gnu.org>
7421
7422 PR ada/6637, PR ada/5911
7423 Merge with libada-branch:
7424 * configure.in, Makefile.tpl, Makefile.def: Add target-libada,
7425 with appropriate dependencies. Add --enable-libada configure switch.
7426 * configure, Makefile.in: Regenerate.
7427
7428 2004-02-05 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
7429
7430 * configure.in: Don't pass --with-stabs on IRIX 5 either.
7431 * configure: Regenerate.
7432
7433 2004-02-02 Jeff Johnston <jjohnstn@redhat.com>
7434
7435 * COPYING.NEWLIB: Update Red Hat license to 2004.
7436
7437 2004-01-23 DJ Delorie <dj@redhat.com>
7438
7439 * Makefile.def (target_modules) [libiberty]: Don't stage.
7440 * Makefile.in: Rebuilt.
7441
7442 2004-01-23 Jeff Johnston <jjohnstn@redhat.com>
7443
7444 * COPYING.NEWLIB: Update to include copyrights for new
7445 iconv code.
7446
7447 2004-01-15 Andrew Cagney <cagney@redhat.com>
7448
7449 * src-release: Update copyright year.
7450 (do-proto-toplev): Configure using i686-pc-linux-gnu.
7451 (NEWLIB_SUPPORT_DIRS): Delete macro.
7452 (newlib.tar.bz2): Delete rule.
7453
7454 2004-01-14 Loren J. Rittle <ljrittle@acm.org>
7455
7456 * Makefile.def (target_modules) [libtermcap, libiberty, zlib]: Stage.
7457 * Makefile.tpl (configure-target-[+module+]): Support stage.
7458 * Makefile.in: Rebuilt.
7459
7460 2003-01-14 Maciej W. Rozycki <macro@ds2.pg.gda.pl>
7461
7462 * gettext.m4: Quote names of macros to be defined by AC_DEFUN
7463 throughout.
7464
7465 2004-01-04 Nathanael Nerode <neroden@gcc.gnu.org>
7466
7467 * configure.in: Use ./config.cache, not config.cache.
7468 * configure: Regenerate.
7469 * Makefile.tpl: Special-casing not needed for GCC any more.
7470 * Makefile.in: Regenerate.
7471
7472 * configure.in: Don't share a cache file for host dirs.
7473 * configure: Regenerate.
7474
7475 * config-ml.in: Don't mess with the cache file.
7476
7477 2004-01-03 Nathanael Nerode <neroden@gcc.gnu.org>
7478
7479 * Makefile.tpl: Make GCC use a separate config.cache.
7480 * Makefile.in: Regenerate.
7481
7482 PR bootstrap/11932, PR bootstrap/11933
7483 (I don't know if it will fix either of them, but it relates
7484 to them.)
7485 * configure.in: Don't use shared config.cache for target
7486 directories.
7487 * configure: Regenerate.
7488
7489 2003-12-31 Roger Sayle <roger@eyesopen.com>
7490
7491 * configure.in (ia64*-*-hpux*): Disable building java libraries.
7492 * configure: Regenerated.
7493
7494 2003-12-21 Bernardo Innocenti <bernie@develer.com>
7495
7496 * configure.in (*-*-uclinux): Exclude newlib, libgloss and rda.
7497 * configure: Regenerated.
7498
7499 2003-12-19 Nathanael Nerode <neroden@gcc.gnu.org>
7500
7501 Port change over from GCC:
7502 2003-11-20 Kelley Cook <kcook@gcc.gnu.org>
7503 * Makefile.tpl (BASE_FLAGS_TO_PASS): Pass along CONFIG_SHELL.
7504 (configure-build-[+module+], configure-[+module+]): Likewise.
7505 (configure-target-[+module+], configure-gcc, config.status): Likewise.
7506 * Makefile.in: Regenerate.
7507
7508 2003-12-08 Thomas Fitzsimmons <fitzsim@redhat.com>
7509
7510 * configure.in (raw_libstdcxx_flags): Remove the leading space.
7511 * configure: Regenerate.
7512
7513 2003-11-27 Jeff Johnston <jjohnstn@redhat.com>
7514
7515 * COPYING.NEWLIB: Add license info for long long routines added to
7516 stdlib.
7517
7518 2003-11-14 Arnaud Charlet <charlet@act-europe.fr>
7519
7520 * Makefile.tpl (EXTRA_GCC_FLAGS): Pass BOOT_ADAFLAGS.
7521 * Makefile.in: Regenerate.
7522
7523 2003-10-20 Phil Edwards <phil@codesourcery.com>
7524
7525 * configure.in (*-*-vxworks): Add target-libiberty to noconfdirs.
7526 * configure: Regenerate.
7527
7528 2003-10-13 Nathanael Nerode <neroden@gcc.gnu.org>
7529
7530 * Makefile.tpl: Make GCC_FLAGS_TO_PASS a superset of
7531 HOST_FLAGS_TO_PASS.
7532 * Makefile.in: Regenerate.
7533
7534 2003-10-05 Mohan Embar <gnustuff@thisiscool.com>
7535
7536 * configure.in: Allow explicit specification of CFLAGS_FOR_BUILD.
7537 * configure: Rebuilt
7538 * Makefile.tpl: Use CFLAGS_FOR_BUILD computed by configure
7539 * Makefile.in: Rebuilt
7540
7541 2003-10-03 H.J. Lu <hongjiu.lu@intel.com>
7542
7543 * ltconfig (sys_lib_search_path_spec): Fix a typo for HPUX.
7544
7545 2003-10-01 Phil Edwards <pme@gcc.gnu.org>
7546
7547 * config-ml.in: Use ac_configure_args directly instead of
7548 ml_arguments. Only set ml_norecursion if --no[-]recursion is
7549 actually seen.
7550
7551 2003-10-01 Eric Botcazou <ebotcazou@libertysurf.fr>
7552
7553 * config-ml.in: Propagate INSTALL variables.
7554
7555 2003-09-21 Daniel Jacobowitz <drow@mvista.com>
7556
7557 * configure.in: Pass a computed --program-transform-name
7558 to subconfigures.
7559 * configure: Regenerated.
7560
7561 2003-09-20 Nathanael Nerode <neroden@gcc.gnu.org>
7562
7563 * Makefile.tpl: Don't pass down obsolete ENQUIRE variable.
7564 * Makefile.in: Regenerate.
7565
7566 * Makefile.tpl: Don't pass (unused) DLLTOOL or WINDRES to gcc.
7567 * Makefile.in: Regenerate.
7568
7569 2003-09-17 Daniel Jacobowitz <drow@mvista.com>
7570
7571 * configure.in (TOPLEVEL_CONFIGURE_ARGUMENTS, baseargs): Fix
7572 quoting.
7573 * configure: Regenerated.
7574
7575 2003-09-12 Michael Chastain <mec@shout.net>
7576
7577 Fix PR gdb/857.
7578 * src-release (do-proto-topleve): Remove junk files
7579 intl/config.cache, intl/config.status,
7580 intl/config.h, intl/stamp-h.
7581
7582 2003-09-14 Andrew Cagney <cagney@redhat.com>
7583
7584 * src-release (dejagnu.tar): New target.
7585 (dejagnu.tar.bz2): Recursively call "gdb-taz" rule.
7586 (do-djunpack): Use $(PACKAGE) for the package name.
7587
7588 2003-09-04 DJ Delorie <dj@redhat.com>
7589
7590 * configure: Regenerate.
7591
7592 2003-09-04 Robert Millan <robertmh@gnu.org>
7593
7594 * configure.in: Match GNU/KFreeBSD with new kfreebsd*-gnu triplet.
7595
7596 2003-09-02 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
7597
7598 * configure.in: Ensure arguments to sed are properly spaced.
7599 * configure: Regenerate.
7600
7601 2003-08-28 Daniel Jacobowitz <drow@mvista.com>
7602
7603 Merge from gcc:
7604 2003-07-20 Phil Edwards <pme@gcc.gnu.org>
7605 * install-sh: Update to newer upstream versions (associated with
7606 aclocal 1.7).
7607 * missing: Likewise, plus $1Help2man -> $1 typo fix.
7608
7609 2003-08-27 Daniel Jacobowitz <drow@mvista.com>
7610
7611 * configure.in: Set RAW_CXX_FOR_TARGET if unset.
7612 * configure: Regenerated.
7613
7614 2003-08-23 Phil Edwards <pme@gcc.gnu.org>
7615
7616 * configure.in: Use newline instead of semicolon when assuming
7617 shell arguments in a for loop.
7618 * configure: Regenerated.
7619
7620 2003-08-20 Geoffrey Keating <geoffk@apple.com>
7621
7622 PR 8180
7623 * configure.in: When testing with_libs and with_headers, treat
7624 'no' as unset. Based on a patch by Dan Kegel <dank@kegel.com>.
7625 * configure: Regenerate.
7626
7627 * configure.in (TOPLEVEL_CONFIGURE_ARGUMENTS): Quote properly for
7628 make, shell, etc.
7629 (baseargs): Likewise.
7630 * configure: Regenerate.
7631
7632 2003-08-19 Geoffrey Keating <geoffk@apple.com>
7633
7634 * configure.in: Disable libgcj for darwin not on powerpc.
7635 * configure: Rebuild.
7636
7637 2003-08-15 Michael Chastain <mec@shout.net>
7638
7639 * src-release (do-proto-toplev): Remove junk files
7640 dejagnu/example/calc/config.status,
7641 dejagnu/example/calc/config.log.
7642
7643 2003-08-14 Alexandre Duret-Lutz <adl@gnu.org>
7644
7645 * config-ml.in, symlink-tree: Add license.
7646
7647 2003-08-01 Nathanael Nerode <neroden@gcc.gnu.org>
7648
7649 Merge from gcc:
7650
7651 2003-08-01 Matt Kraai <kraai@alumni.cmu.edu>
7652 * Makefile.tpl (check, check-c++): Express dependencies using
7653 dependencies rather than commands.
7654 * Makefile.in: Regenerate.
7655
7656 2003-07-31 Geoffrey Keating <geoffk@apple.com>
7657 * Makefile.tpl (libsubdir): Use gcc instead of gcc-lib.
7658 * Makefile.in: Update.
7659
7660 2003-08-01 Andrew Cagney <cagney@redhat.com>
7661
7662 * configure.in (noconfigdirs): Do not add GDB when m32r-*-*.
7663 * configure: Ditto.
7664
7665 2003-07-30 Andreas Tobler <a.tobler@schweiz.ch>
7666
7667 * configure.in: Enable libgcj for darwin.
7668 * configure: Rebuild.
7669
7670 2003-07-29 Nathanael Nerode <neroden@gcc.gnu.org>
7671
7672 * mkinstalldirs: Import autoconf 2.57 / automake 1.7 version.
7673
7674 2003-07-27 Nathanael Nerode <neroden@gcc.gnu.org>
7675
7676 * Makefile.tpl: Use 'mkinstalldirs' rather than 'mkdir' when
7677 creating target and build subdirs to build all parent dirs as needed.
7678 * Makefile.in: Rebuild.
7679 * configure.in: Don't build dirs explicitly here.
7680 * configure: Rebuild.
7681
7682 2003-07-22 Alexandre Oliva <aoliva@redhat.com>
7683
7684 * Makefile.tpl (all-make): Depend on intl.
7685 * Makefile.in: Rebuilt.
7686
7687 2003-07-16 Nathanael Nerode <neroden@gcc.gnu.org>
7688
7689 * config.if: Remove unused libc_interface determination.
7690
7691 2003-07-14 Nathanael Nerode <neroden@gcc.gnu.org>
7692
7693 * Makefile.in: Regenerate, correctly this time.
7694
7695 2003-07-13 Nathanael Nerode <neroden@gcc.gnu.org>
7696
7697 * Makefile.tpl: Set INSTALL and friends using autoconf. Remove
7698 unused INSTALL_PROGRAM_ARGS.
7699 * configure.in: Use AC_PROG_INSTALL.
7700 * Makefile.in: Regenerate.
7701 * configure: Regenerate.
7702
7703 2003-07-10 Alexandre Oliva <aoliva@redhat.com>
7704
7705 * configure: Rebuilt.
7706 2001-09-26 Alexandre Oliva <aoliva@redhat.com>
7707 * configure.in (noconfigdirs) [am33_2.0-*-linux*]: Don't build
7708 newlib nor libgloss.
7709 Wed May 9 10:07:19 2001 Alexandre Oliva <aoliva@redhat.com>
7710 * configure.in (am33_2.0-*-linux*): Added.
7711
7712 2003-07-09 Bob Wilson <bob.wilson@acm.org>
7713
7714 * configure.in: Add ${libgcj} to noconfigdirs for xtensa-*-* targets.
7715 * configure: Regenerate.
7716
7717 2003-07-06 H.J. Lu <hongjiu.lu@intel.com>
7718
7719 * config-ml.in: Replace PWD with PWD_COMMAND.
7720 * Makefile.tpl: Likewise.
7721 * Makefile.in: Regenerated.
7722
7723 2003-06-27 Nathanael Nerode <neroden@gcc.gnu.org>
7724
7725 * configure.in: Clean up config-lang.in handling. Delete
7726 useless assignment to "subdirs".
7727 * configure: Regenerate.
7728
7729 2003-06-26 Nathanael Nerode <neroden@gcc.gnu.org>
7730
7731 * configure.in: Rename 'target_libs' to 'target_libraries'.
7732 Remove useless reference to 'target_libs'.
7733 * configure: Regenerate.
7734
7735 2003-06-23 Keith Seitz <kseitz@sources.redhat.com>
7736
7737 * Makefile.tpl: Add maybe-configure-itcl to configure-gdb.
7738 * Makefile.in: Regenerate.
7739
7740 2003-06-23 Nathanael Nerode <neroden@gcc.gnu.org>
7741
7742 * Makefile.def: Introduce flags_to_pass.
7743 * Makefile.tpl: Generate BASE_FLAGS_TO_PASS using it.
7744 * Makefile.in: Regenerate.
7745
7746 2003-06-23 Hans-Peter Nilsson <hp@bitrange.com>
7747
7748 * configure.in (noconfigdirs) <cris-*-*>: Disable target-newlib
7749 and target-libgloss.
7750 <d30v-*-*, fr30-*-*, i960-*-*, m32r-*-*>: Disable gdb.
7751 <h8300*-*-*>: Disable libf2c and ${libgcj}.
7752 * configure: Regenerate.
7753
7754 2003-06-17 Benjamin Kosnik <bkoz@redhat.com>
7755
7756 * configure.in: Update testsuite_flags to new location.
7757 * configure. Regenerate.
7758
7759 2003-06-18 Nathanael Nerode <neroden@gcc.gnu.org>
7760
7761 * Makefile.tpl: Remove BUILD_CC stuff.
7762 * Makefile.in: Regenerate.
7763
7764 2003-06-14 H.J. Lu <hongjiu.lu@intel.com>
7765
7766 * config.guess: Update to 2003-06-12 version.
7767 * config.sub: Update to 2003-06-13 version.
7768
7769 2003-06-12 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
7770
7771 * MAINTAINERS: Add myself as MIPS co-maintainer.
7772
7773 2003-06-12 H.J. Lu <hongjiu.lu@intel.com>
7774
7775 * config.guess: Update to 2003-06-06 version.
7776 * config.sub: Update to 2003-06-06 version.
7777
7778 2003-06-11 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
7779
7780 * configure.in: Don't pass --with-stabs for mips*-sgi-irix6*o32.
7781 * configure. Regenerate.
7782
7783 2003-06-10 Nathanael Nerode <neroden@gcc.gnu.org>
7784
7785 * configure.in: Disable serial configure by default.
7786 * configure: Regenerate.
7787 * Makefile.tpl: Abolish .NOTPARALLEL.
7788 * Makefile.in: Regenerate.
7789
7790 * Makefile.tpl: Replace {build,host,target}_canonical by
7791 {build,host,target}.
7792 * Makefile.in: Regenerate.
7793
7794 * Makefile.tpl: Fix stupid pasto.
7795 * Makefile.in: Regenerate.
7796
7797 2003-06-09 Nathanael Nerode <neroden@gcc.gnu.org>
7798
7799 * Makefile.tpl: Remove bogus conditional.
7800 * Makefile.in: Regenerate.
7801
7802 2003-06-03 Nathanael Nerode <neroden@gcc.gnu.org>
7803
7804 * Makefile.tpl: Make 'recursive targets' using autogen rather
7805 than shell loop. Remove duplicate 'clean' targets and false
7806 comments.
7807 * Makefile.def: Add systematic dependencies to 'recursive' targets.
7808 Add systematic method of specifying missing targets in subdirs.
7809 Add copyright boilerplate.
7810 * Makefile.in: Regenerate.
7811 * configure.in: Add 'recursive targets' to maybe list.
7812 * configure: Regenerate.
7813
7814 * Makefile.tpl: Rename [+target+] to [+make_target+].
7815 * Makefile.def: Rename 'target' to 'make_target'.
7816
7817 2003-05-30 Nick Clifton <nickc@redhat.com>
7818
7819 * README-maintainer-mode: Update URL for locating blessed config
7820 tools.
7821
7822 2003-05-29 Robert Millan <rmh@debian.org>
7823
7824 * ltconfig: Import this patch and modify for use with current
7825 version of ltconfig:
7826
7827 2003-05-21 Bruno Haible <bruno@clisp.org>
7828
7829 * libtool.m4 (AC_LIBTOOL_SYS_DYNAMIC_LINKER): Add support for
7830 GNU/FreeBSD.
7831
7832 2003-05-28 DJ Delorie <dj@redhat.com>
7833
7834 * Makefile.tpl: Make maybe-check-gcc .PHONY.
7835 * Makefile.in: Regenerate.
7836
7837 2003-05-28 Jeff Johnston <jjohnstn@redhat.com>
7838
7839 * COPYING.NEWLIB: Add license info for newlib/libc/sys/linux/stdlib.
7840
7841 2003-05-21 DJ Delorie <dj@redhat.com>
7842
7843 * Makefile.tpl (configure-target-libiberty): Depend only on gcc, not
7844 newlib or libgloss.
7845 * Makefile.in: Regenerate.
7846
7847 2003-05-21 DJ Delorie <dj@redhat.com>
7848
7849 * Makefile.tpl: Add missing empty maybe-check-gcc target.
7850 * Makefile.in: Regenerate.
7851
7852 2003-05-20 Maciej W. Rozycki <macro@ds2.pg.gda.pl>
7853
7854 * configure.in: Use curly braces in the definition of tooldir.
7855 * configure: Regenerate.
7856
7857 2003-05-19 Nathanael Nerode <neroden@gcc.gnu.org>
7858
7859 * configure.in: Switch more things to use maybe dependencies.
7860 * Makefile.tpl: Switch more things to use maybe dependencies.
7861 Factor out common code from autogen IF statements.
7862 * configure: Regenerate.
7863 * Makefile.in: Regenerate.
7864
7865 2003-05-14 Kelley Cook <kelleycook@wideopenwest.com>
7866
7867 * configure.in: Accept i[3456789]86 for machine type.
7868 * configure: Regenerate.
7869
7870 2003-05-18 Nathanael Nerode <neroden@gcc.gnu.org>
7871
7872 * configure.in: Switch more things to use maybe dependencies.
7873 Rearrange a little. Use GCC_TOPLEV_SUBDIRS.
7874 * configure: Regenerate.
7875 * Makefile.tpl: Switch more things to use maybe dependencies.
7876 * Makefile.in: Regenerate.
7877
7878 2003-05-16 Andreas Schwab <schwab@suse.de>
7879
7880 * Makefile.tpl (install-opcodes): Define.
7881 * Makefile.in: Rebuild.
7882
7883 2003-05-13 Andreas Jaeger <aj@suse.de>
7884
7885 * config.guess: Update to 2003-05-09 version.
7886 * config.sub: Update to 2003-05-09 version.
7887
7888 2003-05-13 Michael Eager <eager@mvista.com>
7889
7890 * configure.in: Correct sed script so that options in quotes are not
7891 deleted.
7892 * configure: Rebuild.
7893
7894 2003-05-12 Corinna Vinschen <corinna@vinschen.de>
7895
7896 * configure.in (FLAGS_FOR_TARGET): Remove $$s/newlib/libc/sys/cygwin
7897 and $$s/newlib/libc/sys/cygwin32 include paths.
7898 * configure: Ditto.
7899
7900 2003-05-05 H.J. Lu <hjl@gnu.org>
7901
7902 * config-ml.in: Restored from gcc repository.
7903
7904 2003-05-02 Chris Demetriou <cgd@broadcom.com>
7905
7906 * Makefile.tpl: Require "makeinfo" from texinfo 4.2 or later.
7907 * Makefile.in: Regenerate.
7908
7909 2003-04-27 Daniel Jacobowitz <drow@mvista.com>
7910
7911 * src-release (DEVO_SUPPORT): Add src-release, Makefile.tpl,
7912 and Makefile.def.
7913
7914 2003-04-27 Daniel Jacobowitz <drow@mvista.com>
7915
7916 * Makefile.tpl: Clean $(BUILD_SUBDIR).
7917 * Makefile.in: Regenerated.
7918
7919 2003-04-18 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
7920
7921 * Makefile.tpl (MAKEINFOFLAGS): Default to --split-size=5000000.
7922 * Makefile.in: Regenerate.
7923
7924 2003-04-18 Jakub Jelinek <jakub@redhat.com>
7925
7926 * configure.in (powerpc64*-*-linux*): Remove.
7927 * configure: Rebuilt.
7928
7929 2003-04-17 Phil Edwards <pme@gcc.gnu.org>
7930
7931 * Makefile.tpl (GCC_STRAP_TARGETS): New variable containing all the
7932 previous bootstrap targets, plus bubblestrap, quickstrap, cleanstrap,
7933 and restrap.
7934 * Makefile.in: Regenerate.
7935
7936 2003-04-16 Richard Earnshaw <rearnsha@arm.com>
7937
7938 * configure.in (arm-*-netbsdelf*): Enable building java libraries.
7939 * configure: Regenerated.
7940
7941 2003-04-11 Alexandre Oliva <aoliva@redhat.com>
7942
7943 * libtool.m4 (lt_cv_deplibs_check_method): Use pass_all on mips*.
7944 * */configure: Rebuilt.
7945
7946 2003-03-14 Nathanael Nerode <neroden@gcc.gnu.org>
7947
7948 * Makefile.tpl: Move .NOEXPORT, MAKEOVERRIDES back down.
7949 * Makefile.in: Regenerate.
7950
7951 2003-03-14 Michael Chastain <mec@shout.net>
7952
7953 * Makefile.in: Regenerate with correct Makefile.def.
7954
7955 2003-03-12 Nathanael Nerode <neroden@gcc.gnu.org>
7956
7957 * Makefile.tpl: Move .NOEXPORT, MAKEOVERRIDES up. Delete unused
7958 Make macro.
7959 * Makefile.in: Regenerate.
7960 * configure.in: Clean up gxx_include_dir logic.
7961 * configure: Regenerate.
7962
7963 2003-03-09 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
7964
7965 * configure.in (gxx_include_dir): Fix typo.
7966 * configure: Regenerated.
7967
7968 2003-03-06 Andrew Cagney <cagney@redhat.com>
7969
7970 * texinfo/texinfo.tex: Import version 2003-02-03.16.
7971
7972 2003-03-04 Daniel Jacobowitz <drow@mvista.com>
7973
7974 * configure.in: Include $(build_tooldir)/sys-include in
7975 FLAGS_FOR_TARGET.
7976 * configure: Regenerated.
7977
7978 2003-03-04 Nathanael Nerode <neroden@gcc.gnu.org>
7979
7980 * Makefile.tpl: Reindent.
7981 * Makefile.in: Regenerate.
7982 * configure.in: Reindent. Don't set unused variables.
7983 * configure: Regenerate.
7984
7985 * Makefile.tpl: Always pass down RANLIB.
7986 * Makefile.in: Regenerate.
7987
7988 * Makefile.tpl: Don't set unused enable_shared, enable_threads macros.
7989 * Makefile.in: Regenerate.
7990 * configure.in: Remove unused logic relating to --enable-shared
7991 and --enable-threads. Remove bogus comments. Remove redundant
7992 noconfigdirs.
7993 * configure: Regenerate.
7994
7995 * configure.in: Replace ${libstdcxx_version} by its value.
7996 Remove reference to mh-dgux.
7997 * configure: Regenerate.
7998
7999 2003-02-28 Nathanael Nerode <neroden@gcc.gnu.org>
8000
8001 * Makefile.tpl: Rearrange.
8002 * Makefile.in: Regenerate.
8003
8004 2003-02-25 Nick Clifton <nickc@redhat.com>
8005
8006 * configure: Remove site-file supprot - it is obsolete.
8007
8008 2003-02-24 Uwe Stieber <uwe@wwws.de>
8009
8010 * configure.in: Add support for kaOS as cross build target system.
8011 * configure: Regenerated.
8012
8013 2003-02-20 Sean McNeil <sean@blue.mcneil.com>
8014
8015 * Makefile.tpl: Add definition of CPPFLAGS to pass into
8016 configure-target-* as some target builds may require additional
8017 flags for preprocessor tests.
8018 * Makefile.in: Regenerated.
8019
8020 2003-02-19 Alexandre Oliva <aoliva@redhat.com>
8021
8022 * libtool.m4 (LD): Append -melf* option to LD on IRIX with GNU ld.
8023 * ltconfig: Handle it.
8024 * ltcf-cxx.sh: Use with_gnu_ld passed as a shell variable instead of
8025 auto-detecting it.
8026
8027 2003-02-19 Alexandre Oliva <aoliva@redhat.com>
8028
8029 * ltcf-cxx.sh: Replace $linker_flags with $compiler_flags wherever
8030 it is used as argument to $CC.
8031 * ltcf-gcj.sh: Likewise.
8032
8033 2003-02-19 Alexandre Oliva <aoliva@redhat.com>
8034
8035 * configure.in: Introduce --enable-maintainer-mode.
8036 * configure: Rebuilt.
8037 * Makefile.tpl (Makefile.in, configure): Enable dependencies only
8038 for maintainer mode.
8039 * Makefile.in: Rebuilt.
8040
8041 2003-02-19 Andrew Cagney <ac131313@redhat.com>
8042
8043 * configure: Regenerate using autoconf 2.13.
8044
8045 2003-02-19 Alan Modra <amodra@bigpond.net.au>
8046
8047 * config.guess: Import latest version.
8048 * config.sub: Import latest version.
8049
8050 2003-02-18 Jason Merrill <jason@redhat.com>
8051
8052 * Makefile.tpl (check-c++): Allow parallelism.
8053
8054 2003-02-17 Andrew Cagney <ac131313@redhat.com>
8055
8056 * configure: Regenerate using autoconf 000227.
8057
8058 2003-02-15 Geoffrey Keating <geoffk@apple.com>
8059
8060 * configure.in (*-*-darwin*): Rename from powerpc*-*-darwin*,
8061 don't configure target-libobjc.
8062 * configure: Regenerate.
8063
8064 2003-02-14 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
8065
8066 * Makefile.tpl (RANLIB): Define.
8067 * Makefile.in: Regenerate.
8068
8069 2003-02-06 Keith R Seitz <keiths@redhat.com>
8070
8071 * Makefile.def: Remove "snavigator", "grep", and "db" modules.
8072 * Makefile.tpl: Remove "all-snavigator" and "all-grep".
8073 * Makefile.in: Regenerated.
8074 * configure.in: Remove all traces of snavigator, db, and grep.
8075 * configure: Regenerated.
8076
8077 2003-01-31 Frank Ch. Eigler <fche@redhat.com>
8078
8079 * Makefile.tpl (all-sid): Add libiberty/bfd/opcodes dependencies.
8080 * Makefile.in: Regenerated.
8081
8082 2003-01-30 Alexandre Oliva <aoliva@redhat.com>
8083
8084 * config.if: Copy from GCC.
8085
8086 2003-01-27 Phil Edwards <pme@gcc.gnu.org>
8087
8088 * configure.in: Revert 24Jan change.
8089 * configure: Regenerate.
8090
8091 2003-01-23 Nathanael Nerode <neroden@gcc.gnu.org>
8092
8093 * configure.in: Revert previous change.
8094 * configure: Regenerate.
8095
8096 2003-01-23 Nathanael Nerode <neroden@gcc.gnu.org>
8097
8098 * configure.in: Make rda native-only.
8099 * configure: Regenerate.
8100
8101 2003-01-19 Nathanael Nerode <neroden@gcc.gnu.org>
8102
8103 * configure.in: Add missing \.
8104 * configure: Rebuilt.
8105
8106 2003-01-17 Jakub Jelinek <jakub@redhat.com>
8107
8108 * configure.in (baseargs): Avoid using \| in sed regular
8109 expressions.
8110 * configure: Rebuilt.
8111
8112 2003-01-16 Jakub Jelinek <jakub@redhat.com>
8113
8114 * configure.in (baseargs): Remove all supported forms of
8115 --cache-file, --srcdir, --host, --build and --target options
8116 from argument lists.
8117 * configure: Rebuilt.
8118
8119 2003-01-15 Alexandre Oliva <aoliva@redhat.com>
8120
8121 * configure.in (noconfigdirs): Don't skip gas on IRIX 6.
8122 * configure: Rebuilt.
8123
8124 2003-01-09 Nathanael Nerode <neroden@gcc.gnu.org>
8125
8126 * configure.in: Substitute TOPLEVEL_CONFIGURE_ARGUMENTS.
8127 * Makefile.tpl: Pass TOPLEVEL_CONFIGURE_ARGUMENTS to gcc.
8128 * Makefile.in: Regenerate.
8129 * configure: Regenerate.
8130
8131 2003-01-09 Christian Cornelssen <ccorn@cs.tu-berlin.de>
8132
8133 * Makefile.tpl (BASE_FLAGS_TO_PASS): Also pass DESTDIR.
8134 (install-info, dir.info): Prepend $(DESTDIR) to $(infodir).
8135 * Makefile.in: Regenerate.
8136
8137 2003-01-09 Alexandre Oliva <aoliva@redhat.com>
8138
8139 * configure.in: Remove Makefile in build, host and target modules
8140 unless configure was run with --no-recursion.
8141 * configure: Rebuilt.
8142
8143 2003-01-08 Chris Demetriou <cgd@broadcom.com>
8144
8145 * config.guess: Update to 2003-01-03 version.
8146 * config.sub: Update to 2003-01-03 version.
8147
8148 2003-01-07 Christopher Faylor <cgf@redhat.com>
8149
8150 * configure: Regenerate with proper autoconf 2.13.
8151
8152 2003-01-07 Christopher Faylor <cgf@redhat.com>
8153
8154 * configure.in: Add AC_PREREQ for consistency.
8155 * configure: Regenerate.
8156
8157 2003-01-06 Andrew Cagney <ac131313@redhat.com>
8158
8159 * configure.in (GDB_TK): Add tcl directories conditional on
8160 gdb/gdbtk directory being present.
8161 * configure: Regenerate.
8162
8163 2003-01-04 John David Anglin <dave.anglin@nrc.ca>
8164
8165 * configure.in (LD): Improve test for gcc. Try to set LD to the ld used
8166 by gcc if LD is not defined and we are not doing a Canadian Cross.
8167 * configure: Rebuilt.
8168
8169 2003-01-01 Daniel Jacobowitz <drow@mvista.com>
8170
8171 * src-release (ETC_SUPPORT): Add fdl.texi and texi2pod.pl.
8172
8173 2002-12-31 Tom Tromey <tromey@redhat.com>
8174
8175 * Makefile.in: Rebuilt.
8176 * Makefile.def (target_modules) [libffi]: Allow installation.
8177
8178 2002-12-31 Andreas Schwab <schwab@suse.de>
8179
8180 * configure.in: Fix use of $program_transform_name.
8181 * configure: Regenerated.
8182
8183 2002-12-30 Daniel Jacobowitz <drow@mvista.com>
8184
8185 * configure.in (baseargs): Don't remove first configure argument.
8186 * configure: Regenerated.
8187
8188 2002-12-29 Alexandre Oliva <aoliva@redhat.com>
8189
8190 * Makefile.tpl (local-distclean): Don't remove...
8191 (multilib.ts): ... this. Moved into...
8192 (multilib.out): ... this. Don't use sub-make.
8193 ($(BUILD_SUBDIR)/[+module+]/Makefile, [+module+]/Makefile,
8194 $(TARGET_SUBDIR)/[+module+]/Makefile, gcc/Makefile): Moved into...
8195 (configure-build-[+module+], configure-[+module+],
8196 configure-target-[+module+], configure-gcc): ... these. Test
8197 for Makefile existence. Drop config.status from dependencies.
8198 * Makefile.in: Rebuilt.
8199 * configure.in: Move gcc-version-trigger to the end of
8200 ac_configure_args. Add comments to maybedep.tmp and
8201 serdep.tmp. Introduce --disable-serial-configure. Remove
8202 nonopt from baseargs, matching and removing corresponding
8203 whitespace while at it.
8204 * configure: Rebuilt.
8205
8206 2002-12-28 Alexandre Oliva <aoliva@redhat.com>
8207
8208 * configure.in (host_configargs): Replace reference to
8209 no-longer-defined buildopts with --build=${build_alias}.
8210 * configure: Rebuilt.
8211
8212 2002-12-28 Alexandre Oliva <aoliva@redhat.com>
8213
8214 * Makefile.tpl ($(NOTPARALLEL)): Move to the end. Bring uses of
8215 program_transform_name to standard idiom.
8216 (AUTOGEN, AUTOCONF): Define.
8217 (Makefile.in): Use $(AUTOGEN).
8218 (Makefile): Depend on config.status, and use autoconf-style rule to
8219 build it. Move original commands to...
8220 (config.status): ... this new target.
8221 (configure): Add $(srcdir). Depend on config/acx.m4. Use
8222 $(AUTOCONF).
8223 * Makefile.in: Rebuilt.
8224
8225 2002-12-28 Nathanael Nerode <neroden@gcc.gnu.org>
8226
8227 * Makefile.tpl: Fix dramatic bustage due to change in
8228 program_transform_name.
8229 * Makefile.in: Regenerate.
8230
8231 * configure.in: Remove unnecessary PATH setting.
8232 * configure: Regnerate.
8233
8234 * configure.in: Don't default to unprefixed tools unless
8235 the native tools will work.
8236 * configure: Regenerate.
8237
8238 * configure.in: Convert to autoconf script. Blow away lots
8239 of now-redundant Makefile fragments.
8240 * configure: Generate using Autoconf.
8241 * Makefile.tpl: Rewrite to reflect autoconfiscation.
8242 * Makefile.in: Regenerate.
8243
8244 2002-12-27 Nathanael Nerode <neroden@gcc.gnu.org>
8245
8246 * configure: Remove unneeded 'export's. Make CC_FOR_TARGET,
8247 CXX_FOR_TARGET, GCJ_FOR_TARGET substituted in configure.in only.
8248
8249 * ChangeLog: Move a couple of entries from here to winsup/cygwin,
8250 where they belong.
8251
8252 2002-12-24 Andreas Schwab <schwab@suse.de>
8253
8254 * Makefile.tpl (multilib.out): Fix missing space.
8255 * Makefile.in: Regenerate.
8256
8257 2002-12-23 Nathanael Nerode <neroden@gcc.gnu.org>
8258
8259 * Makefile.tpl: Use shared multilib.out. Use move-if-change for it.
8260 Convert (cd foo; make) to (cd foo && make). Clean up multilib.out.
8261 * Makefile.in: Regenerate.
8262 * configure.in: Remove unnecessary leftovers.
8263
8264 2002-12-21 Geoffrey Keating <geoffk@apple.com>
8265
8266 * configure.in (extra_ranlibflags_for_target): New variable.
8267 (*-*-darwin): Add -c to ranlib commands.
8268 * configure (tooldir): Handle extra_ranlibflags_for_target.
8269
8270 2002-12-20 Jeff Johnston <jjohnstn@redhat.com>
8271
8272 * COPYING.NEWLIB: Updated.
8273 * COPYING.LIBGLOSS: Ditto.
8274
8275 2002-12-19 Nathanael Nerode <neroden@gcc.gnu.org>
8276
8277 * Makefile.tpl: Revert HJL's change.
8278 * Makefile.in: Regenerated.
8279 * configure.in: Put build_prefix before $(BUILD_SUBDIR) here, and
8280 always.
8281
8282 2002-12-19 Andreas Schwab <schwab@suse.de>
8283
8284 * Makefile.tpl, configure.in: Substitute libstdcxx_incdir.
8285 * Makefile.in: Regenerate.
8286
8287 2002-12-18 H.J. Lu <hjl@gnu.org>
8288
8289 * Makefile.tpl: Add @build_prefix@ before $(BUILD_SUBDIR).
8290 * Makefile.in: Regenerated.
8291
8292 * configure.in (build_prefix): New. Substitute.
8293
8294 2002-12-18 Nathanael Nerode <neroden@gcc.gnu.org>
8295
8296 * Makefile.tpl: Don't let real targets depend on phony targets.
8297 * Makefile.in: Regenerate.
8298
8299 * Makefile.tpl (do-info): Depend on maybe-all-texinfo, not all-texinfo.
8300 * Makefile.in: Regenerate.
8301
8302 2002-12-16 Jason Merrill <jason@redhat.com>
8303
8304 * Makefile.tpl (all-gcc): Use 'make quickstrap' if there was a
8305 previous 'make bootstrap'.
8306 * Makefile.in: Regenerate.
8307
8308 2002-12-17 Hans-Peter Nilsson <hp@bitrange.com>
8309
8310 * configure.in (noconfigdirs) [mmix-*-*]: Disable libgloss and gdb.
8311
8312 2002-12-13 Jason Merrill <jason@redhat.com>
8313
8314 * Makefile.tpl (check-gcc-c++): Renamed from check-c++. Don't run
8315 library tests.
8316 (check-c++): Just depend on it and check-target-libstdc++-v3.
8317 * Makefile.in: Regenerate.
8318
8319 2002-12-13 Nathanael Nerode <neroden@gcc.gnu.org>
8320
8321 * configure.in, Makefile.tpl, Makefile.def: Remove tclX.
8322 * Makefile.in: Regenerate.
8323
8324 2002-12-12 Jeff Johnston <jjohnstn@redhat.com>
8325
8326 * COPYING.NEWLIB: Update list of alternate Regent of California
8327 licenses and discuss official revoking of advertising clause.
8328 * COPYING.LIBGLOSS: Ditto.
8329
8330 2002-12-12 Alexandre Oliva <aoliva@redhat.com>
8331
8332 * Makefile.tpl (configure-target-rda): Depend on $(ALL_GCC_C).
8333 * Makefile.in: Rebuilt.
8334
8335 2002-12-10 Nathanael Nerode <neroden@gcc.gnu.org>
8336
8337 * configure: Fix bug put in by gremlins.
8338
8339 * Makefile.tpl: Substitute more autoconfily.
8340 * configure: Substitute more autoconfily.
8341 * Makefile.in: Regenerate.
8342
8343 2002-12-08 Andrew Cagney <ac131313@redhat.com>
8344
8345 * Makefile.tpl (all-sim): Depend on maybe-configure-gdb.
8346 * Makefile.in (all-sim): Ditto.
8347
8348 2002-12-06 DJ Delorie <dj@redhat.com>
8349
8350 * Makefile.tpl: Change configure dependencies to not have real
8351 targets depend on phony targets.
8352
8353 2002-12-05 Nathanael Nerode <neroden@gcc.gnu.org>
8354
8355 * configure.in: Revert unintentional change.
8356
8357 * src-release: Configure host subdirs.
8358
8359 * Makefile.tpl: Change dependency for */multilib.out so that
8360 it works when gcc isn't in the tree.
8361
8362 * configure.in: Substitute more.
8363 * configure: Run subconfigures from the Makefile.
8364 * Makefile.tpl: Run subconfigures from the Makefile; add a few
8365 convenience targets. Make sure gcc isn't rebuilt after bootstrap.
8366
8367 2002-12-03 Nathanael Nerode <neroden@gcc.gnu.org>
8368
8369 * Makefile.tpl: Add targets for configuring host subdirs in Makefile,
8370 and corresponding dependencies.
8371 * Makefile.in: Regenerate.
8372
8373 * configure.in (host_tools): Order binutils, gas and ld for
8374 convenience in running the testsuites.
8375
8376 * Makefile.tpl: Introduce rules to serialize subconfigure runs.
8377 * Makefile.in: Regenerate.
8378 * configure.in: Introduce rules to serialize subconfigure runs.
8379
8380 * configure.in: Introduce BASE_CC_FOR_TARGET.
8381 * Makefile.tpl: Reorganize and comment. Introduce HOST_CONFIGARGS.
8382 Realize configure-build-* targets. Realize configure-target-* targets.
8383 * Makefile.in: Regenerate.
8384
8385 2002-12-02 Nathanael Nerode <neroden@gcc.gnu.org>
8386
8387 * configure: Move gcc_version_trigger stuff from here...
8388 * configure.in: ...to here.
8389
8390 * configure.in: Separate subconfigure options added by this file from
8391 options given by the user. Add machinery to put args for host
8392 subconfigures into the Makefile.
8393
8394 * Makefile.tpl: Remove 'vault' targets.
8395 * Makefile.tpl: Reorder and comment dependencies.
8396 * Makefile.in: Regenerate.
8397
8398 2002-11-28 Geoffrey Keating <geoffk@apple.com>
8399
8400 * configure.in: Move host-specific darwin noconfigdirs into
8401 the host-specific section.
8402
8403 2002-12-02 Nathanael Nerode <neroden@gcc.gnu.org>
8404
8405 * Makefile.tpl: Restore bkorb's style patch, accidentally lost
8406 during replay.
8407 * Makefile.in: Regenerate.
8408
8409 (finishing slow-motion replay)
8410 * configure: Remove skip-this-dir support.
8411 * Makefile.tpl: Remove skip-this-dir support.
8412
8413 * Makefile.tpl: Remove leftover support for non-autoconfiscated
8414 subdirectories.
8415 * Makefile.in: Regenerate.
8416
8417 * Makefile.tpl: Strip out useless setting of 'dir'.
8418 * Makefile.in: Regenerate.
8419
8420 2002-12-02 Nathanael Nerode <neroden@gcc.gnu.org>
8421
8422 (finishing slow-motion replay)
8423 * configure.in: Fix deeply stupid bug.
8424
8425 * configure.in: Introduce RAW_CXX_FOR_TARGET and simplify embedded
8426 shell code in CXX_FOR_TARGET
8427 * Makefile.def: Introduce raw_cxx.
8428 * Makefile.tpl: Use raw_cxx to select between CXX_FOR_TARGET and
8429 RAW_CXX_FOR_TARGET.
8430 * Makefile.in: Regenerate.
8431
8432 2002-12-02 Nathanael Nerode <neroden@gcc.gnu.org>
8433
8434 (finishing slow-motion replay)
8435 * Makefile.tpl: Remove unnecessary ifs.
8436 * Makefile.in: Regenerate.
8437
8438 * Makefile.tpl: Implement soft dependency machinery. Maybe-ize
8439 dependencies. Maybe-ize build-libiberty. Create dummy install
8440 targets for 'no_install' modules.
8441 * configure: Move GDB_TK substitution to configure.in. Move
8442 build_modules stuff to configure.in.
8443 * configure.in: Implement soft dependency machinery. Maybe-ize
8444 GDB_TK, rearrange slightly. Move build_modules stuff from configure.
8445 * Makefile.in: Regenerate.
8446
8447 2002-12-01 Nathanael Nerode <neroden@gcc.gnu.org>
8448
8449 (continuing slow-motion replay)
8450 * Makefile.tpl: Make all-target, install-target behave similarly
8451 to all, install (only hitting configured targets). Eliminate
8452 unused macro defintions.
8453
8454 * Makefile.tpl: Add all-gcc: all-build-libiberty dependency when
8455 build != host.
8456
8457 * Makefile.tpl: Add all-gcc: all-libiberty dependency.
8458
8459 * ltcf-c.sh, ltcf-gcj.sh, Makefile.tpl: Correct BUILD/HOST confusion.
8460
8461 * configure.in: Produce lists of subdir targets we're actually
8462 configuring. Remove references to "dosrel".
8463 * Makefile.tpl: Let configure set which subdir targets are hit.
8464 Remove install-cross; clean up install; remove ALL. Remove
8465 references to "dosrel". Remove "EXTRA_TARGET_HOST" hackery.
8466 Autogenerate host module targets. Remove empty dependency lines
8467 and redundant dependency; rearrange slightly.
8468 * Makefile.def: Add host-side libtermcap, utils.
8469
8470 * Makefile.in: Regenerate.
8471
8472 2002-12-01 Nathanael Nerode <neroden@gcc.gnu.org>
8473
8474 (Continuing slow-motion replay)
8475 * Makefile.def: Add list of recursive targets to autogenerate.
8476 Add build_modules.
8477 * Makefile.tpl: Autogenerate do-* targets. Autogenerate *-target-*
8478 targets. Autogenerate *-build-* targets.
8479 * Makefile.in: Regenerate.
8480
8481 2002-11-30 Nathanael Nerode <neroden@gcc.gnu.org>
8482
8483 (Continuing slow-motion replay)
8484 * configure: More autoconf-style substitutions.
8485 * Makefile.tpl: More autoconf-style substitutions.
8486 * Makefile.in: Regenerate.
8487
8488 2002-11-30 Nathanael Nerode <neroden@gcc.gnu.org>
8489
8490 (Continuing slow-motion replay)
8491 * configure: Substitute more variables in a more autoconf-friendly
8492 way. Simplify slightly.
8493 * Makefile.tpl: Make more variables substitutable in an
8494 autoconf-friendly way.
8495 * Makefile.in: Regenerate.
8496
8497 2002-11-29 Nathanael Nerode <neroden@gcc.gnu.org>
8498
8499 (Continuing slow-motion replay)
8500 * configure.in (v810*): Remove special setting of tools.
8501
8502 * configure: Add support for extra required flags for ar or nm.
8503 * configure.in (aix4.3+): Use above support for target-specific
8504 issues, rather than using config/mt-aix43.
8505
8506 2002-11-29 Nathanael Nerode <neroden@gcc.gnu.org>
8507
8508 (Starting slow-motion replay merge from gcc 3.4 b-i-b branch)
8509 * configure: Remove 'removing', which doesn't work. Replace $subdir
8510 with . everywhere. Replace $subdirs with ''. Replace $makesrcdir
8511 with $srcdir. Reformat indentation. Substitute some variables
8512 formerly hard-coded in the Makefile for build=host.
8513 * Makefile.tpl: Autogenerate more; make more autoconf-friendly.
8514 * Makefile.def: Autogenerate more.
8515 * Makefile.in: Regenerate.
8516
8517 2002-11-13 Bruce Korb <bkorb@gnu.org>
8518
8519 * Makefile.tpl: syntactic cleanup
8520
8521 2002-11-04 Kevin Buettner <kevinb@redhat.com>
8522
8523 * Makefile.def (host_modules): Add rda.
8524 * Makefile.in: Regenerate.
8525 * configure.in (target_tool): Add target-rda to list.
8526
8527 2002-10-25 Phil Edwards <pme@gcc.gnu.org>
8528
8529 * Makefile.tpl (bootstrap): Add bubblestrap, quickstrap, cleanstrap,
8530 and restrap targets to this rule.
8531 * Makefile.in: Regenerate.
8532
8533 2002-10-24 Hans-Peter Nilsson <hp@bitrange.com>
8534
8535 * configure.in (i[3456]86-*-linux*): Add check to disable
8536 ${libgcj} for glibc1.
8537
8538 2002-10-07 Svein E. Seldal <Svein.Seldal@solidas.com>
8539
8540 * configure.in: Add tic4x target.
8541
8542 2002-10-03 Nathanael Nerode <neroden@gcc.gnu.org>
8543
8544 * Makefile.tpl: Make SET_LIB_PATH substitution more autoconfy.
8545 * Makefile.tpl: Make RPATH_ENVVAR substitution more autoconfy.
8546 * configure.in: Make SET_LIB_PATH substitution more autoconfy.
8547 * configure.in: Make RPATH_ENVVAR substitution more autoconfy.
8548 * Makefile.in: Regenerate.
8549
8550 2002-10-02 Nathanael Nerode <neroden@gcc.gnu.org>
8551
8552 * Makefile.tpl: Eliminate reference to all-gui, all-libproc.
8553 * Makefile.in: Regenerate.
8554
8555 * Makefile.def: Remove order dependency comments.
8556 * Makefile.tpl: Add explicit install-install dependencies.
8557 * Makefile.in: Regenerate.
8558
8559 * Makefile.tpl: Remove material now in src-release. (Finally!)
8560 * Makefile.in: Regenerate.
8561
8562 * configure: Restore my original patch by syncing with gcc version.
8563
8564 * Bring following over from gcc:
8565
8566 2002-09-30 Ulrich Weigand <uweigand@de.ibm.com>
8567
8568 * configure.in (s390*-*-linux*): Enable libgcj.
8569
8570 2002-10-02 Nathanael Nerode <neroden@gcc.gnu.org>
8571
8572 * Makefile.in: Regenerate. This really ought to fix things. :sigh:
8573
8574 2002-10-02 Alan Modra <amodra@bigpond.net.au>
8575
8576 * configure: Move stray lines back to where they belong.
8577
8578 2002-10-01 Nathanael Nerode <neroden@gcc.gnu.org>
8579
8580 * Makefile.tpl: Insert configure-target target, for src-release.
8581
8582 * configure: Finish reverting change which Andrew Cagney started
8583 reverting. Should fix bustage.
8584
8585 * src-release (BINUTILS_SUPPORT_DIRS): Add cpu directory.
8586 * src-release: New file. Contains material for making net
8587 releases for gdb, binutils, et al., formerly in Makefile.in.
8588
8589 2002-09-30 Nick Clifton <nickc@redhat.com>
8590
8591 * cpu: New top level directory. Intended to hold input files for
8592 CGEN which have FSF copyright assignment.
8593 * Makefile.in (BINUTILS_SUPPORT_DIRS): Add cpu directory.
8594
8595 2002-09-29 Andrew Cagney <ac131313@redhat.com>
8596
8597 Revert below (note that src does not contain Makefile.tpl):
8598 * Makefile.tpl: Make subsituted variables more autoconfy.
8599 * Makefile.in: Regenerate.
8600
8601 2002-09-29 Nathanael Nerode <neroden@gcc.gnu.org>
8602
8603 * configure: Revert accidentally applied changes.
8604
8605 * Makefile.tpl: Make more autoconf-friendly.
8606 * Makefile.in: Regenerate.
8607 * configure: Make substitution more autoconf-like.
8608
8609 2002-09-28 Richard Earnshaw <rearnsha@arm.com>
8610
8611 * configure.in (arm-*-coff, strongarm-*-coff, xscale-*-coff): Use a
8612 single entry to handle all these.
8613 (arm-*-elf, strongarm-*-elf, xscale-*-elf): Likewise. Also enable
8614 libjava on arm-*-elf.
8615
8616 2002-09-27 Geoffrey Keating <geoffk@apple.com>
8617
8618 * configure.in (powerpc-*-darwin*): Don't configure BFD, TK, or the
8619 things that depend on them.
8620
8621 2002-09-25 Nathanael Nerode <neroden@gcc.gnu.org>
8622
8623 * Makefile.tpl: Make subsituted variables more autoconfy.
8624 * Makefile.in: Regenerate.
8625 * configure: Make seds more autoconfy.
8626
8627 2002-09-25 Nathanael Nerode <neroden@gcc.gnu.org>
8628
8629 * Makefile.tpl: Rewrite substituted lines to look autoconfy.
8630 * Makefile.in: Regenerate.
8631 * configure.in: Rewrite sed statements to look autoconfy.
8632
8633 * Makefile.tpl: Autogenerate *-target-* lists, dependencies of
8634 all-target-foo on configure-target-foo.
8635 * Makefile.def: Ditto.
8636 * Makefile.in: Rebuild.
8637
8638 2002-09-22 Nathanael Nerode <neroden@gcc.gnu.org>
8639
8640 * Makefile.def: New file.
8641 * Makefile.tpl: New file.
8642 * Makefile.in: Generate from Makefile.tpl with 'autogen Makefile.def'.
8643
8644 * configure.in: Minor rearrangement. Simplify tests.
8645
8646 2002-09-23 Jason Thorpe <thorpej@wasabisystems.com>
8647
8648 * configure.in (with_headers): Skip copy if value is "yes".
8649 (with_libs): Likewise.
8650
8651 2002-09-20 Nathanael Nerode <neroden@gcc.gnu.org>
8652
8653 * configure.in (*-*-netbsd*): Use noconfigdirs, not skipdirs.
8654 * configure.in (sh*-*-pe*): Ditto.
8655 * configure.in (mips*-*-pe*): Ditto.
8656 * configure.in (*arm-wince-pe): Ditto.
8657
8658 * configure.in: Rearrange.
8659
8660 2002-09-12 Nick Clifton <nickc@redhat.com>
8661
8662 * Import these changes from the config master repository:
8663
8664 2002-09-05 Svein E. Seldal <Svein.Seldal@solidas.com>
8665
8666 * config.sub: Add tic4x target.
8667
8668 2002-09-03 Ben Elliston <bje@redhat.com>
8669
8670 * config.guess: Detect NSR-D machines for nsr-tandem-nsk.
8671 Reported by <Duncan_Stodart@insession.com>.
8672
8673 2002-09-10 Jeff Johnston <jjohnstn@redhat.com>
8674
8675 * COPYING.NEWLIB: More updates.
8676
8677 2002-09-09 Jeff Johnston <jjohnstn@redhat.com>
8678
8679 * COPYING.NEWLIB: Update.
8680
8681 2002-08-23 Andrew Cagney <ac131313@redhat.com>
8682
8683 * texinfo/texinfo.tex: Import version 2002-06-04.06.
8684
8685 * config.guess: Import version 2002-08-23.
8686 * config.sub: Import version 2002-08-22.
8687
8688 2002-08-20 Alexandre Oliva <aoliva@redhat.com>
8689
8690 * Makefile.in (GCC_FOR_TARGET): Prepend STAGE_CC_WRAPPER.
8691 * configure.in (CC_FOR_TARGET, GCJ_FOR_TARGET, CXX_FOR_TARGET,
8692 CXX_FOR_TARGET_FOR_RECURSIVE_MAKE): Likewise.
8693
8694 2002-08-06 Federico G. Schwindt <fgsch@olimpo.com.br>
8695
8696 * configure.in (hppa*-*-openbsd*): Treat like hppa*-*-*elf*.
8697
8698 2002-08-04 H.J. Lu (hjl@gnu.org)
8699
8700 * configure.in (mips*-*-linux*): Don't skip target-libffi.
8701
8702 2002-07-31 Alan Modra <amodra@bigpond.net.au>
8703
8704 * configure.in: Move generic linux case to end. Copy generic
8705 linux noconfigdirs to mips*-*-linux* entry and new
8706 powerpc64*-*-linux* entry. Add target-libffi for the latter.
8707
8708 2002-07-19 Chris Demetriou <cgd@broadcom.com>
8709
8710 * MAINTAINERS: Clarify on config.guess and config.sub, and add
8711 one instance of them which was missed to the list to update.
8712
8713 2002-07-16 Chris Demetriou <cgd@broadcom.com>
8714
8715 * config.guess: Update to 2002-07-09 version.
8716 * config.sub: Update to 2002-07-03 version.
8717
8718 2002-07-11 Nathanael Nerode <neroden@gcc.gnu.org>
8719
8720 * configure.in: Remove two redundant tests.
8721
8722 2002-07-11 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
8723
8724 * configure.in (mips*-*-irix6*o32): Enable stabs.
8725
8726 2002-07-08 Nathanael Nerode <neroden@gcc.gnu.org>
8727
8728 * configure.in: Don't build grez.
8729 * Makefile.in: Ditto.
8730
8731 * Makefile.in: Remove references to bsp, cygmon, libstub.
8732 * configure.in: Ditto.
8733
8734 * configure.in: Remove leftover reference to gdbtest.
8735
8736 2002-07-08 Phil Edwards <pme@gcc.gnu.org>
8737
8738 * configure.in (gxx_include_dir): Change to match versioned
8739 C++ headers if --enable-version-specific-runtime-libs is used.
8740
8741 2002-07-04 Steve Ellcey <sje@cup.hp.com>
8742
8743 * ltcf-cxx.sh (hpux*): Modify to support ia64-*-hpux*.
8744
8745 2002-07-03 Nathanael Nerode <neroden@gcc.gnu.org>
8746
8747 * configure.in: Make --without-x work.
8748
8749 2002-07-03 Nick Clifton <nickc@cambridge.redhat.com>
8750
8751 * contrib: New directory. Created to contain a copy of the
8752 texi2pod.pl script so that it is in the same place as the version in
8753 the FSF GCC sources.
8754
8755 2002-07-02 Nathanael Nerode <neroden@gcc.gnu.org>
8756
8757 * configure.in: Rearrange target Makefile fragment collection.
8758
8759 * Makefile.in: Don't try to build gdbtest, tgas, ispell, inet, or
8760 cvs[src].
8761 * configure.in: Ditto.
8762
8763 2002-07-01 Nathanael Nerode <neroden@gcc.gnu.org>
8764
8765 * Makefile.in: Eliminate 'apache' targets.
8766 * configure.in: Eliminate 'apache' targets.
8767
8768 * configure.in: Eliminate redundant tests. Reorganize.
8769
8770 * Makefile.in: Eliminate last reference to LIBGCC1_TEST.
8771
8772 * config-ml.in: Eliminate references to Cygnus configure.
8773
8774 * Makefile.in: Eliminate references to building emacs.
8775
8776 2002-07-01 Denis Chertykov <denisc@overta.ru>
8777
8778 * configure.in: Add support for ip2k.
8779
8780 2002-06-24 Ben Elliston <bje@redhat.com>
8781
8782 * configure.in (host_tools): Remove cgen.
8783
8784 * Makefile.in (all-cgen): Remove; runs from its source directory.
8785 (check-cgen, install-cgen, clean-cgen): Likewise.
8786 (all-opcodes): No not depend on all-cgen.
8787 (all-sim): Likewise.
8788
8789 2002-06-22 Nathanael Nerode <neroden@twcny.rr.com>
8790
8791 * configure.in: Fix AIX configury bug.
8792
8793 2002-06-19 Nathanael Nerode <neroden@twcny.rr.com>
8794
8795 * configure.in: Replace ${topsrcdir} with ${srcdir}.
8796
8797 * configure.in: Move definition of libstdcxx_flags right above
8798 usage, rather than way earlier.
8799
8800 * configure.in: Pull definition of is_cross_compiler earlier.
8801
8802 * configure.in: Rearrange a little.
8803
8804 * configure.in: Remove references to librx.
8805 * Makefile.in: Remove references to librx.
8806
8807 2002-06-19 Nathanael Nerode <neroden@twcny.rr.com>
8808
8809 * configure.in: Eliminate ${gasdir} variable.
8810
8811 2002-06-18 Dave Brolley <brolley@redhat.com>
8812
8813 * configure.in: Add support for frv.
8814 * config.sub: Add support for frv.
8815
8816 2002-06-12 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
8817
8818 * Makefile.in (CFLAGS_FOR_TARGET): Add -O2.
8819
8820 2002-06-08 Jason Thorpe <thorpej@wasabisystems.com>
8821
8822 * configure.in (vax-*-netbsd*): Re-enable gas.
8823
8824 2002-05-31 Nathanael Nerode <neroden@twcny.rr.com>
8825
8826 * Makefile.in: Replace HOST_PREFIX, HOST_PREFIX_1 with BUILD_PREFIX,
8827 BUILD_PREFIX_1, to correct nomenclature.
8828 * configure: Likewise.
8829
8830 * Makefile.in: Eliminate version-specific references to tcl8.1, tk8.1.
8831 * configure.in: Eliminate version-specific references to tcl8.1, tk8.1.
8832
8833 2002-05-31 Olaf Hering <olh@suse.de>
8834
8835 * config-ml.in: Propogate DESTDIR also.
8836
8837 2002-05-29 Jason Thorpe <thorpej@wasabisystems.com>
8838
8839 * configure.in (vax-*-netbsd*): Don't build gas for this
8840 platform.
8841
8842 2002-05-28 Marek Michalkiewicz <marekm@amelek.gda.pl>
8843
8844 * configure.in (noconfigdirs): Don't compile libiberty, libstdcxx
8845 and libgcj for AVR.
8846
8847 2002-05-28 Nick Clifton <nickc@cambridge.redhat.com>
8848
8849 * config.sub: Add DLX target.
8850
8851 2002-05-22 Jason Thorpe <thorpej@wasabisystems.com>
8852
8853 * config.guess: Update to 2002-05-22 version.
8854 * config.sub: Likewise.
8855
8856 2002-05-16 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
8857
8858 * Makefile.in: Allow for PWDCMD to override hardcoded pwd.
8859 * config-ml.in: Likewise.
8860 * configure: Likewise.
8861 * configure.in: Likewise.
8862
8863 2002-05-13 Nathanael Nerode <neroden@twcny.rr.com>
8864
8865 * configure.in: Simplify makefile fragment collection.
8866
8867 * configure.in: Remove code to build emacs.
8868
8869 * configure.in : Remove --srcdir argument from targargs and buildargs
8870 (it's always overridden in the Makefile anyway). Rearrange a bit.
8871
8872 * configure: Move some logic to configure.in.
8873 * configure.in: Move some logic from configure.
8874
8875 2002-05-07 Jeff Johnston <jjohnstn@redhat.com>
8876
8877 * COPYING.LIBGLOSS: New file.
8878
8879 2002-05-07 Federico G. Schwindt <fgsch@olimpo.com.br>
8880
8881 * Makefile.in: Honour DESTDIR.
8882
8883 2002-05-05 Alexandre Oliva <aoliva@redhat.com>
8884
8885 * configure.in (noconfigdirs): Don't disable libgcj on
8886 sparc64-*-solaris* and sparcv9-*-solaris*.
8887
8888 2002-05-03 Alexandre Oliva <aoliva@redhat.com>
8889
8890 * configure.in: Revert 2002-04-18's patch; fixed in libjava.
8891
8892 2002-05-03 Thomas Fitzsimmons <fitzsim@redhat.com>
8893
8894 * configure.in (FLAGS_FOR_TARGET): Do not add
8895 -B$$r/$(TARGET_SUBDIR)/newlib/ when compiling newlib natively
8896 on i[3456]86-*-linux*.
8897
8898 2002-05-01 Thomas Fitzsimmons <fitzsim@redhat.com>
8899
8900 * configure.in (noconfigdirs): Replace [ ] with test.
8901
8902 * configure.in (noconfigdirs): Do not add target-newlib if
8903 target == i[3456]86-*-linux*, and host == target.
8904
8905 2002-04-29 Mark Mitchell <mark@codesourcery.com>
8906
8907 * config.guess: Updated to 2002-04-26's version.
8908 * config.sub: Updated to 2002-04-26's version.
8909
8910 2002-04-29 Nathanael Nerode <neroden@doctormoo.dyndns.org>
8911
8912 * configure.in: delete reference to absent file
8913
8914 * configure.in: replace '[' with 'test'
8915
8916 * configure.in: Eliminate references to gash.
8917 * Makefile.in: Eliminate references to gash.
8918
8919 * configure.in: remove useless references to 'pic' makefile fragments.
8920
8921 * configure.in: (*-*-windows*) Finish removing.
8922
8923 * configure.in: Eliminate redundant test for libgui.
8924
8925 2002-04-26 Joel Sherrill <joel@OARcorp.com>
8926
8927 * configure.in (h8300*-*-rtems*): Disable libf2c and libgcj.
8928 (sparc-*-elf*, sparc64-*-elf*): Disable libgcj.
8929
8930 2002-04-19 Nathanael Nerode <neroden@twcny.rr.com>
8931
8932 * configure.in: remove references to dead files
8933
8934 2002-04-18 Tom Tromey <tromey@redhat.com>
8935
8936 * configure.in: Disallow configuring libgcj when it is already
8937 installed and we're using Solaris 2.8 linker. Do enable libgcj on
8938 Solaris 2.8 by default. For PR libgcj/6158.
8939
8940 2002-04-17 Nathanael Nerode <neroden@twcny.rr.com>
8941
8942 * configure.in: Move default CC setting out of config/mh-* fragments
8943 directly into here.
8944
8945 2002-04-17 Nathanael Nerode <neroden@twcny.rr.com>
8946
8947 * configure.in: don't even try to configure or make a subdirectory
8948 if there's no configure script for it.
8949
8950 2002-04-15 Mark Mitchell <mark@codesourcery.com>
8951
8952 * MAINTAINERS: Remove chill maintainers.
8953 * Makefile.in (CHILLFLAGS): Remove.
8954 (CHILL_LIB): Remove.
8955 (TARGET_CONFIGDIRS): Remove libchill.
8956 (CHILL_FOR_TARGET): Remove.
8957 (BASE_FLAGS_TO_PASS): Don't pass CHILLFLAGS, CHILL_FOR_TARGET, or
8958 CHILL_LIB.
8959 (CONFIGURE_TARGET_MODULES): Remove configure-target-libchill.
8960 (CHECK_TARGET_MODULES): Likewise.
8961 (INSTALL_TARGET_MODULES): Likewise.
8962 (CLEAN_TARGET_MODULES): Likewise.
8963 (configure-target-libchill): Remove.
8964 (all-target-libchill): Remove.
8965 * configure.in (target_libs): Remove target-libchill.
8966 Do not compute CHILL_FOR_TARGET.
8967 * libchill: Remove directory.
8968
8969 2002-04-15 DJ Delorie <dj@redhat.com>
8970
8971 * Makefile.in, configure.in, configure: Sync with gcc, entries
8972 follow...
8973
8974 2002-04-08 Tom Tromey <tromey@redhat.com>
8975
8976 * configure.in: Add FLAGS_FOR_TARGET to GCJ_FOR_TARGET.
8977 Fixes PR libgcj/6068.
8978
8979 2002-03-30 Krister Walfridsson <cato@df.lth.se>
8980
8981 * configure.in (i*86-*-netbsdelf*): Don't disable libgcj.
8982
8983 2002-03-27 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
8984
8985 * configure.in (alpha*-dec-osf*): Enable libgcj.
8986
8987 2002-03-24 Nick Clifton <nickc@cambridge.redhat.com>
8988
8989 Fix for: PR bootstrap/3591, target/5676
8990 * configure.in (mcore-pe): Disable the configuration of
8991 libstdc++-v3 since exceptions are not supported.
8992
8993 2002-03-20 Anthony Green <green@redhat.com>
8994
8995 * configure.in: Enable libgcj for xscale-elf target.
8996
8997 2002-02-28 Alexandre Oliva <aoliva@redhat.com>
8998
8999 * configure.in (libstdcxx_flags): Don't add libstdc++-v3 flags for
9000 libjava.
9001 (CXX_FOR_TARGET): Explain why -shared-libgcc here.
9002
9003 2002-02-22 Alexandre Oliva <aoliva@redhat.com>
9004
9005 * configure.in (CXX_FOR_TARGET): Add -shared-libgcc for
9006 libstdc++-v3 and libjava.
9007
9008 2002-02-11 Adam Megacz <adam@xwt.org>
9009
9010 * gcc/Makefile.in: Removed libstdc++-v3 dependancy for libjava and
9011 boehm-gc
9012
9013 2002-02-09 Alexandre Oliva <aoliva@redhat.com>
9014
9015 * config.guess: Updated to 2002-01-30's version.
9016 * config.sub: Updated to 2002-02-01's version.
9017 Contribute sh64-elf.
9018 2000-12-01 Alexandre Oliva <aoliva@redhat.com>
9019 * configure.in: Added sh64-*-*.
9020
9021 2002-01-17 H.J. Lu <hjl@gnu.org>
9022
9023 * Makefile.in (all-fastjar): Also depend on all-libiberty.
9024 (all-target-fastjar): Also depend on all-target-libiberty.
9025
9026 Wed Dec 5 07:33:45 2001 Douglas B. Rupp <rupp@gnat.com>
9027
9028 * configure, configure.in: Use temp file for long sed commands.
9029
9030 2001-11-14 Hans-Peter Nilsson <hp@bitrange.com>
9031
9032 * configure.in (noconfigdirs) [h8300*-*-*, h8500-*-*]: Disable
9033 libf2c.
9034
9035 2001-11-03 Hans-Peter Nilsson <hp@bitrange.com>
9036
9037 * configure.in (noconfigdirs) [mmix-*-*]: Disable libgcj.
9038
9039 2001-10-11 Hans-Peter Nilsson <hp@axis.com>
9040
9041 * configure.in (noconfigdirs) [cris-*-*]: Disable libgcj.
9042
9043 2001-10-02 Joseph S. Myers <jsm28@cam.ac.uk>
9044
9045 * configure: Handle temporary files securely using mkdir.
9046
9047 2001-09-26 Will Cohen <wcohen@redhat.com>
9048
9049 * configure.in (*-*-linux*): Disable configuration of target-newlib
9050 and target-libgloss.
9051
9052 2001-09-26 Alexandre Oliva <aoliva@redhat.com>
9053
9054 * Makefile.in (EXTRA_TARGET_FLAGS): Pass RANLIB_FOR_TARGET for
9055 RANLIB.
9056
9057 2001-08-11 Graham Stott <grahams@redhat.com>
9058
9059 * Makefile.in (check-c++): Add missing semicolon.
9060
9061 2001-07-25 Andrew Haley <aph@cambridge.redhat.com>
9062
9063 * configure.in (sh-*-linux*): New.
9064
9065 2001-07-12 Stephane Carrez <Stephane.Carrez@worldnet.fr>
9066
9067 * configure.in (noconfigdirs): Don't compile libiberty, libstdcxx
9068 and libgcj on m68hc11/m68hc12.
9069
9070 2001-06-27 H.J. Lu (hjl@gnu.org)
9071
9072 * Makefile (CFLAGS_FOR_BUILD): New.
9073 (EXTRA_GCC_FLAGS): Add CFLAGS_FOR_BUILD.
9074
9075 2001-06-01 Hans-Peter Nilsson <hp@axis.com>
9076
9077 * configure.in (libstdcxx_flags): Do not try to execute
9078 libstdc++-v3/testsuite_flags until it exists.
9079
9080 2001-05-18 Benjamin Kosnik <bkoz@redhat.com>
9081
9082 * configure.in (libstdcxx_flags): Remove reference to libstdc++.INC.
9083
9084 2001-05-09 Jeffrey Oldham <oldham@codesourcery.com>
9085
9086 * ltcf-cxx.sh: Add -nostdlib to IRIX 6 archive_cmds.
9087
9088 Mon Apr 23 09:15:03 2001 Anthony Green <green@redhat.com>
9089
9090 * configure.in: Move *-chorusos target case to the proper switch.
9091 Disable libgcj.
9092
9093 2001-04-13 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
9094
9095 * Makefile.in (STAGE1_CFLAGS): Pass down.
9096
9097 2001-04-13 Alan Modra <amodra@one.net.au>
9098
9099 * config.guess: Add hppa64-linux support. Note for next import that
9100 this is already in the master file.
9101 * configure.in: Likewise. Accept `parisc' alias for `hppa'.
9102
9103 2001-03-22 Colin Howell <chowell@redhat.com>
9104
9105 * Makefile.in (DO_X): Do not backslash single-quotes in
9106 backquotes (two places).
9107
9108 2001-03-18 Laurynas Biveinis <lauras@softhome.net>
9109
9110 * Makefile.in (DO_X): Quote nested quotes.
9111
9112 2001-03-15 Laurynas Biveinis <lauras@softhome.net>
9113
9114 * Makefile.in (DO_X): Use double quotes for quoting
9115 "RANLIB=$${RANLIB}".
9116
9117 2001-03-09 Nicola Pero <n.pero@mi.flashnet.it>
9118
9119 * configure.in: Only use `lang_requires' for languages athat are
9120 actually enabled.
9121
9122 2001-03-07 Tom Tromey <tromey@redhat.com>
9123
9124 * configure.in: Allow config-lang.in to set `lang_requires' to list
9125 of other required languages.
9126
9127 2001-03-06 Laurynas Biveinis <lauras@softhome.net>
9128
9129 * Makefile.in: Remove RANLIB definition. Use RANLIB
9130 in RANLIB_FOR_TARGET, EXTRA_HOST_FLAGS, EXTRA_TARGET_FLAGS,
9131 EXTRA_GCC_FLAGS, $(DO_X) targets only when the RANLIB is set.
9132
9133 2001-02-28 Benjamin Kosnik <bkoz@redhat.com>
9134 Alexandre Oliva <aoliva@redhat.com>
9135
9136 * Makefile.in (check-c++): Use tabs, not spaces.
9137
9138 2001-02-19 Benjamin Kosnik <bkoz@redhat.com>
9139
9140 * Makefile.in (check-c++): New rule.
9141
9142 * configure.in (target_libs): Remove libg++.
9143 (noconfigdirs): Remove libg++.
9144 (noconfigdirs): Same.
9145 (noconfigdirs): Same.
9146 (noconfigdirs): Same.
9147
9148 * config-ml.in: Remove libg++ references.
9149
9150 * Makefile.in (TARGET_CONFIGDIRS): Remove libio, libstdc++, libg++.
9151 (ALL_TARGET_MODULES): Same.
9152 (configure-target-libg++): Remove.
9153 (all-target-libg++): Remove.
9154 (configure-target-libio): Remove.
9155 (all-target-libio): Remove.
9156 (check-target-libio): Remove.
9157 (.PHONY): Remove.
9158 (libg++.tar.bz2): Remove.
9159 (all-target-cygmon): Remove libio.
9160 (all-target-libstdc++): Remove.
9161 (configure-target-libstdc++): Remove.
9162 (TARGET_LIB_PATH): Remove libstdc++.
9163 (ALL_GCC_CXX): Remove libstdc++.
9164 (all-target-gperf): Correct.
9165
9166 2001-02-15 Anthony Green <green@redhat.com>
9167
9168 * configure: Introduce GCJ_FOR_TARGET.
9169 * configure.in: Ditto.
9170 * Makefile.in: Ditto.
9171
9172 2001-02-08 Chandrakala Chavva <cchavva@redhat.com>
9173
9174 * configure.in: for *-chorusos, don't config target-newlib and
9175 target-libgloss.
9176
9177 2001-02-04 Mark Mitchell <mark@codesourcery.com>
9178
9179 Remove V2 C++ library.
9180 * configure.in: Remove --enable-libstdcxx_v3 support.
9181
9182 2001-01-27 Richard Henderson <rth@redhat.com>
9183
9184 * configure.in (target_makefile_frag) [alpha*-*]: Use mt-alphaieee.
9185
9186 2001-01-26 Tom Tromey <tromey@redhat.com>
9187
9188 * configure.in: Allow libgcj to be built on Sparc Solaris.
9189
9190 2001-01-23 Bryce McKinlay <bryce@albatross.co.nz>
9191
9192 * configure.in: Enable libgcj on several additional platforms.
9193
9194 2001-01-22 Bryce McKinlay <bryce@albatross.co.nz>
9195
9196 * configure.in: Enable libgcj for linux targets.
9197
9198 2001-01-09 Mike Stump <mrs@wrs.com>
9199
9200 * Makefile.in (CONFIGURE_TARGET_MODULES): Pass back configuration
9201 failures of subdirectories.
9202
9203 2001-01-02 Laurynas Biveinis <lauras@softhome.net>
9204
9205 * configure: handle DOS-style absolute paths.
9206
9207 2001-01-02 Laurynas Biveinis <lauras@softhome.net>
9208
9209 * configure.in: remove supported directories from $noconfigdirs for DJGPP.
9210
9211 2000-12-18 Benjamin Kosnik <bkoz@redhat.com>
9212
9213 * Makefile.in (BASE_FLAGS_TO_PASS): Alphabetize.
9214 (libstdcxx_incdir): Pass down.
9215 * config.if: Remove expired bits for cxx_interface, add stub.
9216 (libstdcxx_incdir): Add variable for g++ include directory.
9217 * configure.in (gxx_include_dir): Use it.
9218
9219 2000-12-15 Andreas Jaeger <aj@suse.de>
9220
9221 * configure.in: Handle lang_dirs.
9222
9223 2000-12-13 Anthony Green <green@redhat.com>
9224
9225 * configure.in: Disable libgcj for any target not specifically
9226 listed. Disable libgcj for x86 and Alpha Linux until compatible
9227 with g++ abi.
9228
9229 2000-12-13 Mike Stump <mrs@wrs.com>
9230
9231 * Makefile.in (local-distclean): Also remove fastjar.
9232
9233 2000-12-10 Anthony Green <green@redhat.com>
9234
9235 * configure.in: Define libgcj. Disable libgcj target libraries for
9236 most targets.
9237
9238 2000-12-09 Alexandre Petit-Bianco <apbianco@cygnus.com>
9239
9240 * configure.in (target_libs): Revert 2000-12-08 patch.
9241 (noconfigdirs): Added target-libjava.
9242
9243 2000-12-09 Laurynas Biveinis <lauras@softhome.net>
9244
9245 * Makefile.in: handle DOS-style absolute paths.
9246
9247 2000-12-08 Alexandre Petit-Bianco <apbianco@cygnus.com>
9248
9249 * Makefile.in (TARGET_CONFIGDIRS): Wrong place. Removed note about
9250 libjava.
9251 * configure.in (target_libs): Removed `target-libjava'.
9252
9253 2000-12-08 Alexandre Petit-Bianco <apbianco@cygnus.com>
9254
9255 * Makefile.in (TARGET_CONFIGDIRS): Added note about libjava.
9256 (ALL_MODULES): Added fastjar.
9257 (NATIVE_CHECK_MODULES, INSTALL_MODULES, CLEAN_MODULES): Likewise.
9258 (all-target-libjava): all-fastjar replaces all-zip.
9259 (all-fastjar): Added.
9260 (configure-target-fastjar, all-target-fastjar): Likewise.
9261 * configure.in (host_tools): Added fastjar.
9262
9263 2000-12-07 Mike Stump <mrs@wrs.com>
9264
9265 * Makefile.in (local-distclean): Remove leftover built files.
9266
9267 2000-11-16 Fred Fish <fnf@be.com>
9268
9269 * configure.in (enable_libstdcxx_v3): Fix typo,
9270 libstd++ -> libstdc++.
9271
9272 2000-11-13 Joseph S. Myers <jsm28@cam.ac.uk>
9273
9274 * configure: Provide the original toplevel configure arguments
9275 (including $0) to subprocesses in the environment rather than
9276 through gcc/configargs.h.
9277
9278 2000-11-12 Mark Mitchell <mark@codesourcery.com>
9279
9280 * configure: Turn on libstdc++ V3 by default.
9281
9282 2000-10-16 Michael Meissner <meissner@redhat.com>
9283
9284 * configure (gcc/configargs.h): Only create if there is a build GCC
9285 directory created.
9286
9287 2000-10-05 Phil Edwards <pme@gcc.gnu.org>
9288
9289 * configure: Save configure arguments to gcc/configargs.h.
9290
9291 2000-10-04 Andris Pavenis <pavenis@latnet.lv>
9292
9293 * Makefile.in (bootstrap): avoid recursion if subdir missing
9294 (cross): ditto
9295 (do-proto-toplev): ditto
9296
9297 Wed Sep 13 11:11:29 2000 Jeffrey A Law (law@cygnus.com)
9298
9299 * configure.in: Do not build byacc for hppa64. Provide paths to the
9300 X11 libraries for hppa64.
9301
9302 2000-09-02 Anthony Green <green@cygnus.com>
9303
9304 * Makefile.in (all-gcc): Depend on all-zlib.
9305 (CLEAN_MODULES): Add clean-zlib.
9306 (ALL_MODULES): Add all-zlib.
9307 * configure.in (host_libs): Add zlib.
9308
9309 2000-08-25 Alexandre Oliva <aoliva@redhat.com>
9310
9311 * configure.in (FLAGS_FOR_TARGET): Use $target_configdirs and
9312 $targargs to tell whether newlib is going to be built.
9313
9314 * configure.in [disable-libstdcxx-v3] (libstdcxx_flags): Search
9315 $$r/TARGET_SUBDIR/libio for _G_config.h.
9316
9317 2000-08-14 Zack Weinberg <zack@wolery.cumb.org>
9318
9319 * configure.in (libstdcxx_flags): Remove -isystem $$s/libio/stdio.
9320
9321 * configure: Make enable_threads and enable_shared defaults
9322 explicit. Substitute enable_threads into generated Makefiles.
9323 * configure.in: Accept *-*-linux* not just *-*-linux-gnu*.
9324 * libtool.m4: Accept *-*-linux* not just *-*-linux-gnu*.
9325
9326 2000-08-02 Manfred Hollstein <manfredh@redhat.com>
9327
9328 * configure.in: Re-enable all references to libg++ and librx.
9329
9330 2002-04-09 Loren James Rittle <rittle@labs.mot.com>
9331
9332 * configure.in: Add *-*-freebsd* configurations.
9333
9334 2002-04-07 Andrew Cagney <ac131313@redhat.com>
9335
9336 * Makefile.in (do-tar-bz2): Delete rule. Replace with ...
9337 (do-tar, do-bz2): New rules.
9338 (taz): Update. Replace do-tar-bz2 with do-tar and do-bz2.
9339 (gdb-tar): New rule.
9340 (gdb-taz): Rewrite. Use gdb-tar and do-bz2.
9341 (insight_dejagnu.tar): New rule.
9342 (insight.tar): New rule.
9343 (gdb+dejagnu.tar): New rule.
9344 (gdb.tar): New rule.
9345
9346 2002-04-07 Andrew Cagney <ac131313@redhat.com>
9347
9348 * MAINTAINERS: Update dejagnu/
9349
9350 2002-03-16 Alexandre Oliva <aoliva@redhat.com>
9351
9352 * ltmain.sh (relink_command): Fix typo in previous change.
9353
9354 2002-03-15 Alexandre Oliva <aoliva@redhat.com>
9355
9356 * ltmain.sh (taglist): Initialized. Don't let `CC' tag out of it.
9357 (relink_command): Added --tag flags.
9358 (mode=install): If relinking fails; error out.
9359
9360 2002-03-12 Richard Henderson <rth@redhat.com>
9361
9362 * Makefile.in (NOTPARALLEL): New. Use it instead of explicit
9363 .NOTPARALLEL tag.
9364 (do-check): Rename from check.
9365 (check): Allow parallel check.
9366
9367 2002-03-11 Richard Henderson <rth@redhat.com>
9368
9369 * Makefile.in (.NOTPARALLEL): Add fake tag.
9370
9371 2002-03-07 H.J. Lu (hjl@gnu.org)
9372
9373 * configure.in: Enable gprof for mips*-*-linux*.
9374
9375 2002-02-28 Alexandre Oliva <aoliva@redhat.com>
9376
9377 * configure.in (libstdcxx_flags): Don't add libstdc++-v3 flags for
9378 libjava.
9379 (CXX_FOR_TARGET): Add -shared-libgcc for libstdc++-v3 and libjava.
9380
9381 2002-02-24 Andrew Cagney <ac131313@redhat.com>
9382
9383 * texinfo/texinfo.tex: Update to version 2002-02-14.08.
9384
9385 2002-02-23 Daniel Jacobowitz <drow@mvista.com>
9386
9387 * config.guess: Import from master sources, rev 1.232.
9388 * config.sub: Import from master sources, rev 1.246.
9389
9390 2002-02-23 Alexandre Oliva <aoliva@redhat.com>
9391
9392 * Makefile.in (MAKEINFO): Don't assume makeinfo will be built just
9393 because its Makefile is there; test for the executable instead.
9394
9395 2002-02-09 Alexandre Oliva <aoliva@redhat.com>
9396
9397 Contribute sh64-elf.
9398 2000-12-01 Alexandre Oliva <aoliva@redhat.com>
9399 * configure.in: Added sh64-*-*.
9400
9401 2002-02-04 Jeff Johnston <jjohnstn@redhat.com>
9402
9403 * COPYING.NEWLIB: Remove advertising clause from
9404 Berkeley and Red Hat licenses.
9405
9406 2002-02-01 Mo DeJong <supermo@bayarea.net>
9407
9408 * Makefile.in: Add all-tix to deps for all-snavigator
9409 so that tix is built when building snavigator.
9410
9411 2002-02-01 Ben Elliston <bje@redhat.com>
9412
9413 * config.guess: Import from master sources, rev 1.229.
9414 * config.sub: Import from master sources, rev 1.240.
9415
9416 2002-01-27 Daniel Jacobowitz <drow@mvista.com>
9417
9418 From Steve Ellcey <sje@cup.hp.com>:
9419 * libtool.m4 (HPUX_IA64_MODE): Set to 32 or 64 based on ABI.
9420 (lt_cv_deplibs_check_method, lt_cv_file_magic_cmd,
9421 lt_cv_file_magic_test_file): Set to appropriate values for HP-UX
9422 IA64.
9423 * ltcf-c.sh (archive_cmds, hardcode_*): Ditto.
9424 * ltconfig (shlibpath_*, dynamic_linker, library_names_spec,
9425 soname_spec, sys_lib_search_path_spec): Ditto.
9426
9427 2002-01-26 Jason Thorpe <thorpej@wasabisystems.com>
9428
9429 * configure.in (*-*-netbsd*): New. Skip target-newlib,
9430 target-libiberty, and target-libgloss. Skip Java-related
9431 libraries if not supported for NetBSD on target CPU.
9432
9433 2002-01-23 Nick Clifton <nickc@cambridge.redhat.com>
9434
9435 * configure.in: Import StrongARM and XScale target_configdirs from
9436 FSF GCC version.
9437
9438 2002-01-16 H.J. Lu (hjl@gnu.org)
9439
9440 * config.guess: Import from master sources, rev 1.225.
9441 * config.sub: Import from master sources, rev 1.238.
9442
9443 * MAINTAINERS: Updated notes on config.guess and config.sub.
9444
9445 2002-01-11 Steve Ellcey <sje@cup.hp.com>
9446
9447 * configure.in (ia64*-*-hpux*): New target for IA64 HP-UX,
9448 ld and gdb are not supported.
9449
9450 2002-01-07 Jeff Johnston <jjohnstn@redhat.com>
9451
9452 * Change reference to Cygnus Solutions to be Red Hat.
9453
9454 2002-01-07 Jeff Johnston <jjohnstn@redhat.com>
9455
9456 * COPYING.NEWLIB: Update generic copyright date.
9457
9458 2002-01-07 Mark Salter <msalter@redhat.com>
9459
9460 * configure.in: Remove target-bsp and target-cygmon from arm builds.
9461 Allow target-libgloss to be built for arm, strongarm, and xscale.
9462
9463 2002-01-03 Ben Elliston <bje@redhat.com>
9464
9465 * MAINTAINERS: Update URL for config.* scripts.
9466
9467 2001-12-18 Alan Modra <amodra@bigpond.net.au>
9468
9469 * config.sub: Import latest version.
9470 * config.guess: Likewise.
9471
9472 2001-12-13 Thomas Fitzsimmons <fitzsim@redhat.com>
9473
9474 * configure.in (FLAGS_FOR_TARGET): Remove -nostdinc and -isystem
9475 options for i[3456]86-pc-linux* native builds.
9476
9477 2001-12-05 Laurent Guerby <guerby@acm.org>
9478
9479 * MAINTAINERS: gcc adopts symlink-tree, refer more to
9480 libiberty.
9481
9482 Import this patch from gcc:
9483
9484 2000-12-09 Laurynas Biveinis <lauras@softhome.net>
9485
9486 * symlink-tree: handle DOS-style absolute paths.
9487
9488 2001-11-28 DJ Delorie <dj@redhat.com>
9489 Zack Weinberg <zack@codesourcery.com>
9490
9491 When build != host, create libiberty for the build machine.
9492
9493 * Makefile.in (TARGET_CONFIGARGS, BUILD_CONFIGARGS): Replace
9494 CONFIG_ARGUMENTS.
9495 (ALL_BUILD_MODULES_LIST, BUILD_CONFIGDIRS, BUILD_SUBDIR):
9496 New variables.
9497 (ALL_BUILD_MODULES, CONFIGURE_BUILD_MODULES): New variables
9498 and rules.
9499 (all.normal): Depend on ALL_BUILD_MODULES.
9500 (CONFIGURE_TARGET_MODULES rule): Use TARGET_CONFIGARGS.
9501 (all-build-libiberty): Depend on configure-build-libiberty.
9502
9503 * configure: Calculate and substitute proper value for
9504 ALL_BUILD_MODULES.
9505 * configure.in: Create the build subdirectory.
9506 Calculate and substitute TARGET_CONFIGARGS (formerly
9507 CONFIG_ARGUMENTS); also BUILD_SUBDIR and BUILD_CONFIGARGS (new).
9508
9509 2001-11-26 Geoffrey Keating <geoffk@redhat.com>
9510
9511 * config.sub: Update to version 1.232 on subversion.
9512
9513 2001-11-20 Nick Clifton <nickc@cambridge.redhat.com>
9514
9515 * Makefile.in (do-proto-toplev): Use msgfmt to generate .gmo
9516 files from .po files for a distribution.
9517
9518 2001-11-19 Hans-Peter Nilsson <hp@bitrange.com>
9519
9520 * COPYING.NEWLIB: Mention preserved notice in specific parts.
9521
9522 2001-11-13 Jeff Holcomb <jeffh@redhat.com>
9523
9524 Merged from net gcc:
9525 2001-07-30 Jeff Sturm <jsturm@one-pont.com>
9526 * ltcf-c.sh: Use $objext, not $ac_objext.
9527 2001-07-27 Mark Kettenis <kettenis@gnu.org>
9528 * ltcf-cxx.sh: Add support for GNU.
9529 2001-07-22 Timothy Wall <twall@redhat.com>
9530 * ltcf-c.sh: Don't disable shared libraries for AIX5/IA64. Preserve
9531 default settings if using GNU tools with that configuration.
9532 * ltcf-cxx.sh: Ditto.
9533 * ltcf-gcj.sh: Ditto.
9534 2001-07-21 Michael Chastain <chastain@redhat.com>
9535 * ltconfig: Set max_cmd_len to a maximum of 512Kb, as it seems some
9536 HPUX 11.0 systems have trouble with 1MB. Mark as gcc-local.
9537 * ltmain.sh: Mark as gcc-local.
9538
9539 2001-11-13 Jeff Holcomb <jeffh@redhat.com>
9540
9541 * Makefile.in (all-bison): Revert 2001-10-24.
9542 Don't depend on texinfo.
9543
9544 2001-11-12 Hans-Peter Nilsson <hp@bitrange.com>
9545
9546 * COPYING.NEWLIB: Add BSD-style license/copyright blurb for my work.
9547
9548 2001-11-08 Phil Edwards <pedwards@disaster.jaj.com>
9549
9550 * configure.in (--enable-languages): Be more permissive about
9551 syntax. Check for empty lists better. Warn about $LANGUAGES.
9552
9553 2001-11-06 Hans-Peter Nilsson <hp@bitrange.com>
9554
9555 * Makefile.in (MAKEINFO): Use "missing" for makeinfo older than 4.0.
9556
9557 2001-10-24 Jeff Holcomb <jeffh@redhat.com>
9558
9559 Makefile.in (all-bison): Don't depend on texinfo.
9560
9561 2001-10-03 Alan Modra <amodra@bigpond.net.au>
9562
9563 * gettext.m4: Test po/POTFILES.in exists before trying to read.
9564
9565 2001-09-29 Alexandre Oliva <aoliva@redhat.com>
9566
9567 * Makefile.in (configure-target-gperf): Depend on $(ALL_GCC_CXX).
9568
9569 2001-09-28 Hans-Peter Nilsson <hp@axis.com>
9570
9571 * config.sub, config.guess: Import latest from subversions.
9572
9573 2001-09-21 Alexandre Oliva <aoliva@redhat.com>
9574
9575 * Makefile.in (AS_FOR_TARGET, LD_FOR_TARGET,
9576 DLLTOOL_FOR_TARGET, WINDRES_FOR_TARGET, AR_FOR_TARGET,
9577 RANLIB_FOR_TARGET, NM_FOR_TARGET): Don't use double quotes to
9578 avoid quotes nesting problems.
9579 (NATIVE_CHECK_MODULES): Ditto, just for consistency.
9580 (DO_X): Export only variables that are set.
9581
9582 2001-09-19 Ben Elliston <bje@redhat.com>
9583
9584 * configure.in (sparc-sun-solaris2*): Don't use /usr/bin/which on
9585 Solaris when testing for the /usr/ucb/cc compiler; it has incorrect
9586 semantics. Use the shell built-in "type" command instead.
9587
9588 2001-09-15 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
9589
9590 * config.sub: Reverted the earlier change, this version is not the
9591 master file.
9592
9593 2001-09-14 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
9594
9595 * config.sub: Change machine triplets from mipsel*-* to mips*el-*.
9596 Add support for mips64.
9597
9598 2001-09-03 Jeff Holcomb <jeffh@redhat.com>
9599
9600 * configure.in: Enable libstdc++-v3 for h8300 targets.
9601
9602 2001-08-30 Eric Christopher <echristo@redhat.com>
9603 Jason Eckhardt <jle@redhat.com>
9604
9605 * config.sub: Add support for mipsisa32.
9606
9607 2001-08-30 Eric Christopher <echristo@redhat.com>
9608
9609 * config.sub, config.guess: Import latest from subversions.
9610
9611 2001-08-20 Alan Modra <amodra@bigpond.net.au>
9612
9613 * config.sub, config.guess: Import latest from subversions.
9614
9615 2001-07-26 DJ Delorie <dj@redhat.com>
9616
9617 * MAINTAINERS: Clarify libiberty merge rules and procedures.
9618
9619 2001-06-19 Alan Modra <amodra@bigpond.net.au>
9620
9621 * Makefile.in: Revert 2001-06-17.
9622 (VER): If AM_INIT_AUTOMAKE uses BFD_VERSION, get version from bfd/.
9623
9624 2001-06-17 H.J. Lu <hjl@gnu.org>
9625
9626 * Makefile.in (gas.tar.bz2): Pass TOOL=bfd PACKAGE=gas to make.
9627 (gas+binutils.tar.bz2): Likewise.
9628 (binutils.tar.bz2): Pass TOOL=bfd PACKAGE=binutils to make.
9629
9630 Fri Jun 8 11:14:02 2001 Andrew Cagney <cagney@b1.cygnus.com>
9631
9632 * Makefile.in (VER): When present, extract the version number from
9633 the file version.in.
9634
9635 2001-06-08 Alexandre Oliva <aoliva@redhat.com>, Jeff Sturm <jsturm@one-point.com>
9636
9637 * Makefile.in (AS_FOR_TARGET, LD_FOR_TARGET, NM_FOR_TARGET): If
9638 gcc/xgcc is built, use -print-prog-name to find out the program
9639 name to use.
9640
9641 2001-06-04 Mark Mitchell <mark@codesourcery.com>
9642
9643 * ltcf-c.sh (archive_cmds, archive_expsym_cmds) [solaris,
9644 with_gcc]: Use `gcc -shared' to build a shared library.
9645
9646 2001-06-04 John David Anglin <dave@hiauly1.hia.nrc.ca>
9647
9648 * ltcf-c.sh (archive_cmd) [hpux, with_gcc]: Use gcc to link shared
9649 archives.
9650
9651 2001-05-28 Simon Patarin <simon.patarin@inria.fr>
9652
9653 * ltcf-cxx.sh (osf3/osf4/osf5): Support creation of C++ shared
9654 libraries when using g++ with native linker.
9655
9656 2001-05-28 Alexandre Oliva <aoliva@redhat.com>
9657
9658 * ltconfig, ltmain.sh: Upgrade to libtool 1.4a 1.641.2.256.
9659
9660 2001-05-24 Tom Rix <trix@redhat.com>
9661
9662 * configure.in : enable ld for aix
9663
9664 2001-05-22 Alexandre Oliva <aoliva@redhat.com>
9665
9666 * ltcf-cxx.sh (allow_undefined_flag, no_undefined_flag)
9667 [aix4*|aix5*]: Prepend blank.
9668
9669 2001-05-20 Alexandre Oliva <aoliva@redhat.com>
9670
9671 * ltconfig, ltmain.sh, libtool.m4, ltcf-c.sh, ltcf-cxx.sh,
9672 ltcf-gcj.sh: Upgraded to libtool 1.4a 1.641.2.254. Rebuilt a number
9673 of subdir/configure scripts to use the new libtool.m4.
9674
9675 2001-05-14 H.J. Lu <hjl@gnu.org>
9676
9677 * config.if (libc_interface): Set to -libc6.2- for cross
9678 compiling to Linux/glibc 2.2.
9679
9680 2001-05-03 Alexandre Oliva <aoliva@redhat.com>
9681
9682 * configure.in (noconfigdirs) [*-cygwin*, *-mingw*, *-beos]: Disable
9683 libgcj.
9684
9685 2001-04-26 Alexandre Oliva <aoliva@redhat.com>
9686
9687 * configure.in (noconfigdirs): Don't reset it from scratch in the
9688 target case; only append to it.
9689
9690 2001-04-26 Alexandre Oliva <aoliva@redhat.com>
9691
9692 * configure.in (noconfigdirs) [hppa*-*-*, mips*-*-irix6*,
9693 sparc-*-solaris2.8]: Disable ${libgcj}.
9694
9695 2001-04-25 Alexandre Oliva <aoliva@redhat.com>
9696
9697 * configure.in (libgcj_saved): Copy from $libgcj.
9698 (libgcj): Zero out if --enable-libgcj; add to noconfigdirs is
9699 --disable-libgcj.
9700
9701 2001-04-20 Alexandre Oliva <aoliva@redhat.com>
9702
9703 * ltconfig, ltmain.sh, ltcf-cxx.sh: Upgraded to libtool 1.4a
9704 1.641.2.228.
9705
9706 2001-04-12 Alexandre Oliva <aoliva@redhat.com>
9707
9708 * ltconfig, ltmain.sh, libtool.m4, ltcf-c.sh, ltcf-cxx.sh,
9709 ltcf-gcj.sh: Upgraded to libtool 1.4a 1.641.2.226.
9710
9711 2001-04-01 Alexandre Oliva <aoliva@redhat.com>
9712
9713 * Makefile.in (CXX_FOR_TARGET_FOR_RECURSIVE_MAKE, RECURSE_FLAGS):
9714 New macros.
9715 (bootstrap, cross): Use RECURSE_FLAGS.
9716 * configure.in: Subst CXX_FOR_TARGET_FOR_RECURSIVE_MAKE.
9717
9718 2001-03-27 Alexandre Oliva <aoliva@redhat.com>
9719
9720 * configure.in (CXX_FOR_TARGET): Use xgcc for libstdc++-v3.
9721
9722 2001-03-23 Nick Clifton <nickc@redhat.com>
9723
9724 * README-maintainer-mode: Add note about inability to use "make
9725 distclean" in maintainer mode.
9726
9727 2001-03-22 Alexandre Oliva <aoliva@redhat.com>
9728
9729 Re-installed:
9730 2001-01-02 Laurynas Biveinis <lauras@softhome.net>
9731 * ltcf-c.sh: Clear ac_cv_prog_cc_pic for DJGPP. Do not add
9732 '-DPIC' to ac_cv_prog_cc_pic for DJGPP.
9733 * ltcf-cxx.sh: Likewise.
9734 * ltcf-gcj.sh: Likewise.
9735
9736 2001-03-22 Philip Blundell <philb@gnu.org>
9737
9738 * config.sub, config.guess: Import latest from subversions.
9739
9740 2001-03-22 Alexandre Oliva <aoliva@redhat.com>
9741
9742 * ltconfig, ltmain.sh, libtool.m4, ltcf-c.sh, ltcf-cxx.sh,
9743 ltcf-gcj.sh: Upgraded to libtool 1.4a 1.641.2.198.
9744
9745 2001-03-20 Michael Chastain <chastain@redhat.com>
9746
9747 * Makefile.in: all-m4 depends on all-texinfo.
9748
9749 2001-03-08 Alexandre Oliva <aoliva@redhat.com>
9750
9751 * Makefile.in (ALL_GCC, ALL_GCC_C, ALL_GCC_CXX): Set before use.
9752
9753 2001-02-22 Jeff Johnston <jjohnstn@redhat.com>
9754
9755 * COPYING.NEWLIB: Remove DJ Delorie's address because it is no
9756 longer valid.
9757
9758 2001-02-16 Nick Clifton <nickc@redhat.com>
9759
9760 * configure.in (noconfigdirs): Allow configuration of texinfo
9761 for Cygwin hosts.
9762
9763 2001-02-09 Martin Schwidefsky <schwidefsky@de.ibm.com>
9764
9765 * config.guess: Add linux target for S/390.
9766 * config.sub: Likewise.
9767 * configure.in: Likewise.
9768
9769 2001-02-06 Ben Elliston <bje@redhat.com>
9770
9771 * configure: Output host type to stdout, not stderr.
9772
9773 2001-02-04 Michael Sokolov <msokolov@ivan.Harhan.ORG>
9774
9775 * config.guess: Import from subversions.gnu.org (revision 1.181).
9776 * config.sub: Import from subversions.gnu.org (revision 1.199).
9777
9778 2001-01-30 Alan Modra <alan@linuxcare.com.au>
9779
9780 * config.guess: Handle hppa64-linux systems.
9781
9782 2001-01-27 Michael Sokolov <msokolov@ivan.Harhan.ORG>
9783
9784 * ltcf-cxx.sh (ac_cv_prog_cc_pic_works, ac_cv_prog_cc_static_works):
9785 Don't unset, it's non-portable and no longer necessary, set to empty
9786 instead.
9787
9788 2001-01-27 Michael Sokolov <msokolov@ivan.Harhan.ORG>, Alexandre Oliva <oliva@lsd.ic.unicamp.br>
9789
9790 * ltconfig: Shell portability fix for the tagname validity check.
9791
9792 2001-01-27 Michael Sokolov <msokolov@ivan.Harhan.ORG>
9793
9794 * ltcf-cxx.sh: Use parentheses around eval $ac_compile.
9795
9796 2001-01-27 Alexandre Oliva <aoliva@redhat.com>
9797
9798 * ltcf-c.sh (ld_shlibs) [aix5*]: Disable on unknown CPU types.
9799 * ltcf-cxx.sh, ltcf-gcj.sh: Likewise.
9800
9801 2001-01-24 Alexandre Oliva <aoliva@redhat.com>
9802
9803 * ltmain.sh (TAG disable-shared, TAG disable-static): Make sure we
9804 keep at least one of build_libtool_libs or build_old_libs set to
9805 yes.
9806
9807 2001-01-24 Alexandre Oliva <aoliva@redhat.com>
9808
9809 * ltcf-gcj.sh (lt_simple_link_test_code): Remove stray `(0)'.
9810 * libtool.m4 (_AC_LIBTOOL_GCJ): Pass $CPPFLAGS on.
9811
9812 2000-11-07 Philip Blundell <pb@futuretv.com>
9813
9814 * Makefile.in (ETC_SUPPORT): Also add configbuild.* and configdev.*.
9815
9816 2000-11-03 Philip Blundell <pb@futuretv.com>
9817
9818 * Makefile.in (ETC_SUPPORT): Add configure.texi and associated info
9819 files.
9820
9821 2001-01-15 Jeff Johnston <jjohnstn@redhat.com>
9822
9823 * COPYING.NEWLIB: Put into source repository.
9824
9825 2001-01-15 Ben Elliston <bje@redhat.com>
9826
9827 * configure.in (host_tools): Add sid.
9828 Always configure cgen.
9829 * Makefile.in (all-sid): New target.
9830 (check-sid, clean-sid, install-sid): Likewise.
9831
9832 2001-01-07 Andreas Jaeger <aj@suse.de>
9833
9834 * config.sub, config.guess: Update from subversions.
9835
9836 2000-12-12 Alexandre Oliva <aoliva@redhat.com>
9837
9838 * configure.in: Disable language-specific target libraries for
9839 languages that aren't enabled.
9840
9841 2000-11-24 Nick Clifton <nickc@redhat.com>
9842
9843 * configure.in (xscale-elf): Add target.
9844 (xscale-coff): Add target.
9845 (c4x, c5x, tic54x): Move after ARM targets.
9846
9847 2000-11-23 Alexandre Oliva <aoliva@redhat.com>
9848
9849 * ltcf-gcj.sh: Added file, required by 2000-11-18 merge.
9850
9851 2000-11-20 Ian Lance Taylor <ian@zembu.com>
9852
9853 * ltcf-cxx.sh: Added file, required by 2000-11-18 merge.
9854
9855 2000-11-18 Alexandre Oliva <aoliva@redhat.com>
9856
9857 * Makefile.in: Merge with GCC and libgcj.
9858 (ALL_GCC_C, ALL_GCC_CXX): New macros. Use them as dependencies of
9859 configure-target-<library> when their configure scripts need the C
9860 or C++ library to have already been built to work properly.
9861 (do_proto_toplev): Set them to an empty string.
9862
9863 2000-11-18 Alexandre Oliva <aoliva@redhat.com>
9864
9865 * Makefile.in (HOST_LIB_PATH, TARGET_LIB_PATH): New macros.
9866 (REALLY_SET_LIB_PATH): Use them.
9867
9868 2000-11-06 Christopher Faylor <cgf@cygnus.com>
9869
9870 * config.sub: Add support for Sun Chorus
9871
9872 2000-11-02 Per Lundberg <plundis@chaosdev.org>
9873
9874 * config.sub: Add support for the *-storm-chaos OS.
9875
9876 2000-10-30 Stephane Carrez <stcarrez@worldnet.fr>
9877
9878 * configure.in (noconfigdirs): Don't compile some
9879 of the libraries for 68HC11 & 68hc12 targets.
9880
9881 2000-09-30 Alexandre Oliva <aoliva@redhat.com>
9882
9883 * ltconfig, ltmain.sh, libtool.m4: Updated from libtool
9884 multi-language branch, to work around Solaris' /bin/sh bug. Rebuilt
9885 all affected `configure' scripts.
9886
9887 2000-09-25 Alexandre Oliva <aoliva@redhat.com>
9888
9889 * Makefile.in (DEVO_SUPPORT): Added gettext.m4, libtool.m4 and
9890 ltcf-c.sh.
9891
9892 2000-09-12 Philip Blundell <philb@gnu.org>
9893
9894 * config.sub, config.guess: Update from subversions.
9895
9896 2000-09-06 Alexandre Oliva <aoliva@redhat.com>
9897
9898 * Makefile.in (all-zlib): Added dummy target.
9899
9900 * ltconfig, ltmain.sh, libtool.m4, ltcf-c.sh: Updated from libtool
9901 multi-language branch.
9902
9903 2000-09-05 Alexandre Oliva <aoliva@redhat.com>
9904
9905 * Makefile.in (all-bootstrap): Added all-texinfo and all-zlib.
9906 (bootstrap*): Depend on all-bootstrap.
9907
9908 2000-09-02 Alexandre Oliva <aoliva@redhat.com>, DJ Delorie <dj@redhat.com>
9909
9910 * configure.in (FLAGS_FOR_TARGET): Use -nostdinc even for Canadian
9911 crosses, but add gcc/include to the header search path for them.
9912
9913 2000-08-31 Alexandre Oliva <aoliva@redhat.com>
9914
9915 * ltconfig, ltmain.sh: Updated from libtool multi-language branch.
9916 * libtool.m4, ltcf-c.sh: Copied from libtool multi-language branch.
9917 * gettext.m4: New file, extracted from aclocal.m4.
9918
9919 2000-08-22 Alexandre Oliva <aoliva@redhat.com>
9920
9921 * config-ml.in (CC, CXX): Avoid trailing whitespace.
9922 (LD_LIBRARY_PATH, SHLIB_PATH): Adjust for multilibs and export to
9923 sub-configures.
9924
9925 2000-08-20 Doug Evans <dje@casey.transmeta.com>
9926
9927 * Makefile.in (ALL_MODULES): Add all-cgen.
9928 (CROSS_CHECK_MODULES,INSTALL_MODULES,CLEAN_MODULES): Similarily.
9929 (all-cgen): New target.
9930 (all-opcodes,all-sim): Depend on all-cgen.
9931 * configure.in (host_tools): Add cgen.
9932 Only configure cgen if --enable-cgen-maint.
9933
9934 2000-08-17 Alexandre Oliva <aoliva@redhat.com>
9935
9936 * config-ml.in (CC, CXX): Don't introduce a leading space.
9937
9938 2000-08-16 Alexandre Oliva <aoliva@redhat.com>
9939
9940 * configure.in (libstdcxx_flags): Use
9941 libstdc++-v3/src/libstdc++.INC.
9942
9943 2000-08-15 Alexandre Oliva <aoliva@redhat.com>
9944
9945 * configure.in (libstdcxx_flags): Use libstdc++-v3/src/INCLUDES.
9946
9947 2000-08-11 Jason Merrill <jason@redhat.com>
9948
9949 * configure.in (CC_FOR_TARGET, CHILL_FOR_TARGET,
9950 CXX_FOR_TARGET): Add -B$$r/gcc/ here.
9951 (FLAGS_FOR_TARGET): Not here.
9952 (CHILL_FOR_TARGET, CXX_FOR_TARGET): Don't check the list of languages.
9953
9954 2000-08-07 DJ Delorie <dj@redhat.com>
9955
9956 * configure.in (FLAGS_FOR_TARGET): invert test for xgcc, should mean
9957 "if we're also building gcc, and it's a gcc that will run on the
9958 build machine, we want to use its includes instead of the system's
9959 default includes".
9960
9961 2000-08-03 Alexandre Oliva <aoliva@redhat.com>
9962
9963 * configure.in (libstdcxx_flags): Don't use `"'.
9964
9965 * config-ml.in: Adjust multilib search paths to the
9966 appropriate multilib tree.
9967
9968 2000-08-02 Alexandre Oliva <aoliva@redhat.com>
9969
9970 * configure.in (CHILL_FOR_TARGET, CXX_FOR_TARGET): Convert blanks to
9971 commas in $LANGUAGES.
9972
9973 2000-08-01 Alexandre Oliva <aoliva@redhat.com>
9974
9975 * configure.in (qCXX_FOR_TARGET): Use echo instead of expr.
9976
9977 2000-07-31 Alexandre Oliva <aoliva@redhat.com>
9978
9979 * configure.in (qCXX_FOR_TARGET): Quote `&' characters in
9980 CXX_FOR_TARGET for sed.
9981
9982 2000-07-30 Alexandre Oliva <aoliva@redhat.com>
9983
9984 * configure.in (CC_FOR_TARGET, CHILL_FOR_TARGET, CXX_FOR_TARGET):
9985 Do not override if already set in the environment or in configure.
9986 Don't duplicate $(FLAGS_FOR_TARGET) if it already appears in them.
9987 (FLAGS_FOR_TARGET): Don't use host directories on Canadian crosses.
9988
9989 2000-07-27 Alexandre Oliva <aoliva@redhat.com>
9990
9991 * Makefile.in (FLAGS_FOR_TARGET): New macro.
9992 (GCC_FOR_TARGET): Use it.
9993 (CC_FOR_TARGET, CXX_FOR_TARGET, CHILL_FOR_TARGET): Now defined...
9994 * configure.in: ... here.
9995 (FLAGS_FOR_TARGET): Define. Add ld build dir to -L path.
9996 (libstdcxx_flags): Define and append to CXX_FOR_TARGET.
9997
9998 2000-07-24 Alexandre Oliva <aoliva@redhat.com>
9999
10000 * Makefile.in (configure-target-libf2c): Depend on $(ALL_GCC).
10001 (configure-target-libchill, configure-target-libobjc): Likewise.
10002
10003 * configure.in: Use the same cache file for all target libs.
10004 * config-ml.in: But different cache files per multilib variant.
10005
10006 2000-07-23 Michael Sokolov <msokolov@ivan.Harhan.ORG>
10007
10008 * configure (topsrcdir): Don't use dirname.
10009
10010 2000-07-20 Jason Merrill <jason@redhat.com>
10011
10012 * configure.in: Remove all references to libg++ and librx.
10013
10014 * configure, configure.in, Makefile.in: Unify gcc and binutils.
10015
10016 2000-07-20 Hans-Peter Nilsson <hp@axis.com>
10017
10018 * config.sub: Update to subversions version 2000-07-06.
10019
10020 2000-07-12 Andrew Haley <aph@cygnus.com>
10021
10022 * configure.in (host_makefile_frag): Use mh-ia64pic on IA-64 hosts.
10023 (target_makefile_frag): Use mt-ia64pic on IA-64 targets.
10024
10025 2000-07-07 Phil Edwards <pme@sourceware.cygnus.com>
10026
10027 * symlink-tree: Check number of arguments.
10028
10029 2000-06-06 Andrew Cagney <cagney@b1.cygnus.com>
10030
10031 * texinfo/texinfo.tex: Update to version 2000-05-28.15.
10032
10033 2000-07-05 Jim Wilson <wilson@cygnus.com>
10034
10035 * Makefile.in (CXX_FOR_TARGET): Add libstdc++ to the library
10036 search path for a g++ extracted from the build tree. This
10037 will allow link tests run by configure scripts in
10038 subdirectories to succeed.
10039
10040 2000-07-01 Koundinya K <kk@ddeorg.soft.net>
10041
10042 * ltconfig: Add support for mips-dde-sysv4.2MP
10043
10044 2000-06-28 Corinna Vinschen <vinschen@cygnus.com>
10045
10046 * ltconfig: Check for host_os beeing one of `cygwin', `mingw' or
10047 `os2'. Force ac_cv_exeext to be ".exe" in that case.
10048
10049 2000-06-19 Timothy Wall <twall@cygnus.com>
10050
10051 * configure.in (noconfigdirs): Set noconfigdirs for tic54x target.
10052 * config.sub: Add tic54x target.
10053
10054 2000-06-07 Phillip Thomas <pthomas@suse.de>
10055
10056 * README-maintainer-mode: New file: Contains notes on using
10057 --enable-maintainer-mode with binutils.
10058
10059 2000-05-29 Andrew Cagney <cagney@b1.cygnus.com>
10060
10061 * texinfo/texinfo.tex: Update. Version from makeinfo 4.0.
10062
10063 2000-05-30 Andrew Cagney <cagney@b1.cygnus.com>
10064
10065 * config.sub: Import CVS version 1.167 Tue May 30 09:00:07 2000.
10066 * config.guess: Import CVS version 1.148 Tue May 30 09:00:06 2000
10067
10068 20000-05-21 H.J. Lu (hjl@gnu.org)
10069
10070 * Makefile.in (CC_FOR_TARGET): Make sure as/ld in the gcc
10071 directory are used if they exist. Make sure
10072 $(build_tooldir)/include is searched for header files,
10073 $(build_tooldir)/lib/ for library files.
10074 (GCC_FOR_TARGET): Likewise.
10075 (CXX_FOR_TARGET): Likewise.
10076
10077 2000-05-18 Jeffrey A Law (law@cygnus.com)
10078
10079 * configure.in (hppa*64*-*-*): Do build ld for this configuration.
10080
10081 2000-05-17 Alexandre Oliva <aoliva@cygnus.com>
10082
10083 * Makefile.in (configure-target-libiberty): Depend on
10084 configure-target-newlib.
10085
10086 2000-05-16 Alexandre Oliva <aoliva@cygnus.com>
10087
10088 * configure.in, Makefile.in: Merge all libffi-related
10089 configury stuff from the libgcj tree.
10090
10091 2000-05-16 Andrew Cagney <cagney@b1.cygnus.com>
10092
10093 Thu Apr 27 11:01:48 2000 Andrew Cagney <cagney@b1.cygnus.com>:
10094 * Makefile.in (do-tar-bz2, do-md5sum): Skip CVS directories.
10095
10096 2000-05-16 Andrew Cagney <cagney@b1.cygnus.com>
10097
10098 Wed Apr 26 17:03:53 2000 Andrew Cagney <cagney@b1.cygnus.com>:
10099 * Makefile.in (do-djunpack): New target. Update djunpack.bat with
10100 current version information. Add to proto-toplev directory.
10101 (gdb-taz): Build do-djunpack.
10102
10103 2000-05-15 David Edelsohn <edelsohn@gnu.org>
10104
10105 * configure.in: Special case powerpc*-*-aix* target_makefile_frag.
10106
10107 2000-05-13 Alexandre Oliva <oliva@lsd.ic.unicamp.br>
10108
10109 * ltmain.sh: Preserve in relink_command any environment
10110 variables that may affect the linker behavior.
10111
10112 2000-05-12 Jeffrey A Law (law@cygnus.com)
10113
10114 * config.sub (basic_machine): Recognize hppa64 as a valid cpu type.
10115
10116 2000-05-10 Jim Wilson <wilson@cygnus.com>
10117
10118 * configure.in (ia64*-*-elf*): Add gdb and friends to noconfigdirs.
10119
10120 2000-05-08 Eli Zaretskii <eliz@is.elta.co.il>
10121
10122 * djunpack.bat: Change the Sed script to replace @V@ in fnchange.lst
10123 with the version name.
10124
10125 2000-05-01 Benjamin Kosnik <bkoz@cygnus.com>
10126
10127 * config.if: Tweak.
10128
10129 2000-04-23 Eli Zaretskii <eliz@is.elta.co.il>
10130
10131 * djunpack.bat: New file.
10132
10133 2000-04-19 Andrew Cagney <cagney@b1.cygnus.com>
10134
10135 * Makefile.in (taz, gdb-taz, gas.tar.bz2, binutils.tar.bz2,
10136 gas+binutils.tar.bz2, libg++.tar.bz2, gnats.tar.bz2, gdb.tar.bz2,
10137 dejagnu.tar.bz2, gdb+dejagnu.tar.bz2, insight.tar.bz2,
10138 insight+dejagnu.tar.bz2, newlib.tar.bz2): Pass MD5PROG to sub-make.
10139
10140 2000-04-16 Dave Pitts <dpitts@cozx.com>
10141
10142 * config.sub (case $basic_machine): Change default for "ibm-*"
10143 to "openedition".
10144
10145 2000-04-12 Andrew Cagney <cagney@b1.cygnus.com>
10146
10147 * Makefile.in (gdb-taz): New target. GDB specific archive.
10148 (do-md5sum): New target.
10149 (MD5PROG): Define.
10150 (PACKAGE): Default to TOOL.
10151 (VER): Default to a shell script.
10152 (taz): Rewrite target. Move real work to do-proto-toplev. Include
10153 md5 checksum generation.
10154 (do-proto-toplev): New target. Create $(PACKAGE)-$(VER) link.
10155 (do-tar-bz2): Delete creation of $(PACKAGE)-$(VER) link.
10156 (gdb.tar.bz2, dejagnu.tar.bz2, gdb+dejagnu.tar.bz2,
10157 insight.tar.bz2): Use gdb-taz to create archive.
10158
10159 2000-04-07 Andrew Cagney <cagney@b1.cygnus.com>
10160
10161 * configure (warn_cflags): Delete.
10162
10163 2000-04-05 Benjamin Kosnik <bkoz@cygnus.com>
10164 Martin v. Loewis <martin@loewis.home.cs.tu-berlin.de>
10165
10166 * configure.in (enable_libstdcxx_v3): Add.
10167 (target_libs): Add bits here to switch between libstdc++-v2 and
10168 libstdc++-v3.
10169 * config.if: And this file too.
10170 * Makefile.in: Add libstdc++-v3 targets.
10171
10172 2000-04-05 Michael Meissner <meissner@redhat.com>
10173
10174 * config.sub (d30v): Add d30v as a basic machine type.
10175
10176 2000-03-29 Jason Merrill <jason@casey.cygnus.com>
10177
10178 * configure.in: -linux-gnu*, not -linux-gnu.
10179
10180 2000-03-03 Andrew Cagney <cagney@b1.cygnus.com>
10181
10182 * Makefile.in (taz): Set PACKAGE to TOOL when not defined.
10183 (do-tar-bz2): Replace TOOL with PACKAGE.
10184 (gdb.tar.bz2): Remove GDBTK from GDB package.
10185 (gdb+dejagnu.tar.bz2, insight.tar.bz2, insight+dejagnu.tar.bz2,
10186 dejagnu.tar.bz2): New packages.
10187
10188 2000-02-27 Andreas Jaeger <aj@suse.de>
10189
10190 * configure.in: Add entry for mips*-*-linux*, move catch all
10191 *-*-*linux* entry below this one.
10192
10193 2000-02-27 Ian Lance Taylor <ian@zembu.com>
10194
10195 * ltconfig, ltmain.sh: Update to libtool 1.3.4.
10196
10197 2000-02-24 Nick Clifton <nickc@cygnus.com>
10198
10199 * config.sub: Support an OS of "wince".
10200
10201 2000-02-24 Andrew Cagney <cagney@b1.cygnus.com>
10202
10203 * config.guess, config.sub: Updated to match config's 2000-02-15
10204 version.
10205
10206 2000-02-23 Linas Vepstas <linas@linas.org>
10207
10208 * config.sub: Add support for Linux/IBM 370.
10209 * configure.in: Likewise.
10210
10211 2000-02-22 Nick Clifton <nickc@cygnus.com>
10212
10213 * configure.in: Add mips-pe, sh-pe and arm-wince-pe targets.
10214
10215 2000-02-20 Christopher Faylor <cgf@cygnus.com>
10216
10217 * config.guess: Guess "cygwin" rather than "cygwin32".
10218
10219 2000-02-16 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
10220
10221 * configure (gcc_version): When setting, narrow search to
10222 lines containing `version_string'.
10223
10224 2000-02-15 Denis Chertykov <denisc@overta.ru>
10225
10226 * config.sub: Add support for avr target.
10227
10228 2000-02-01 Hans-Peter Nilsson <hp@bitrange.com>
10229
10230 * config.sub: Add mmix-knuth-mmixware.
10231
10232 2000-01-27 Christopher Faylor <cgf@redhat.com>
10233
10234 * Makefile.in (CC_FOR_TARGET): Add new winsup directory
10235 structure stuff to -L library search.
10236 (CXX_FOR_TARGET): Ditto.
10237 (CROSS_CHECK_MODULES): Fix spelling mistake.
10238
10239 2000-01-24 Mark Mitchell <mark@codesourcery.com>
10240
10241 * Makefile.in (CXX_FOR_TARGET): Use g++, not xgcc, to invoke
10242 the C++ compiler.
10243
10244 2000-01-12 Richard Henderson <rth@cygnus.com>
10245
10246 * configure.in: Don't build some bits for beos.
10247
10248 2000-01-12 Joel Sherrill (joel@OARcorp.com)
10249
10250 * Makefile.in (CC_FOR_TARGET): Use newlib libraries as well
10251 as include files.
10252
10253 2000-01-06 Geoff Keating <geoffk@cygnus.com>
10254
10255 * configure.in: Use mt-aix43 to handle *_TARGET defs,
10256 not mh-aix43.
10257
10258 1999-12-14 Richard Henderson <rth@cygnus.com>
10259
10260 * config.guess (alpha-osf, alpha-linux): Detect ev67.
10261 * config.sub: Accept alphaev[78], alphaev8.
10262
10263 1999-12-03 Alexandre Oliva <oliva@lsd.ic.unicamp.br>
10264
10265 * config.guess, config.sub: Update from autoconf.
10266
10267 Tue Nov 23 00:57:41 1999 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
10268
10269 * config-ml.in (sparc*-*-*): Disable sparcv9 support if the
10270 necessary libraries are missing.
10271
10272 1999-10-25 Andreas Schwab <schwab@suse.de>
10273
10274 * configure: Fix quoting inside arguments of eval.
10275
10276 1999-10-21 Nick Clifton <nickc@cygnus.com>
10277
10278 * config-ml.in: Allow suppression of some ARM multilibs.
10279
10280 Tue Sep 7 23:33:57 1999 Linas Vepstas <linas@linas.org>
10281
10282 * config.guess: Add OS/390 match pattern.
10283 * config.sub: Add mvs, openedition targets.
10284 * configure.in (i370-ibm-opened*): New.
10285
10286 1999-09-04 Steve Chamberlain <sac@pobox.com>
10287
10288 * config.sub: Add support for configuring for pj.
10289
10290 1999-08-31 Nick Clifton <nickc@cygnus.com>
10291
10292 * config.sub (maybe_os): Add support for configuring for fr30.
10293
10294 1999-08-25 Nick Clifton <nickc@cygnus.com>
10295
10296 * configure.in: Do not configure or build ld for AIX
10297 platforms. ld is known to be broken on these platforms.
10298
10299 Wed Aug 25 01:12:25 1999 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
10300
10301 * config-ml.in: Pass compiler flag corresponding to multidirs to
10302 subdir configures.
10303
10304 1999-08-09 Ian Lance Taylor <ian@zembu.com>
10305
10306 * Makefile.in (LDFLAGS): Define.
10307
10308 1999-08-08 Mumit Khan <khan@xraylith.wisc.edu>
10309
10310 * configure.in (i[3456]-*-mingw32*): Don't put gprof in
10311 noconfigdirs.
10312 (*-*-cygwin*): Likewise.
10313
10314 1999-08-08 Ian Lance Taylor <ian@zembu.com>
10315
10316 * mkdep: New file.
10317 * Makefile.in (GAS_SUPPORT_DIRS): Add mkdep.
10318 (BINUTILS_SUPPORT_DIRS): Add mkdep.
10319
10320 From Eli Zaretskii <eliz@is.elta.co.il>:
10321 * configure (tmpfile): Change cONf$$ to cNf$$ to avoid an overly
10322 long file name when using DJGPP on MS-DOS.
10323
10324 Wed Aug 4 02:07:14 1999 Jeffrey A Law (law@cygnus.com)
10325
10326 * config.sub (vxworks case): Use os=-vxworks, not os=vxworks.
10327
10328 1999-07-30 Alan Modra <alan@spri.levels.unisa.edu.au>
10329
10330 * Makefile.in (check-target-libio): Remove all-target-libstdc++
10331 dependency as this causes "make check" to globally "make all"
10332
10333 Tue Jun 22 23:45:18 1999 Tom Tromey <tromey@cygnus.com>
10334
10335 * configure.in (target_libs): Added target-zlib.
10336 * Makefile.in (ALL_TARGET_MODULES): Added zlib.
10337 (CONFIGURE_TARGET_MODULES): Likewise.
10338 (CHECK_TARGET_MODULES): Likewise.
10339 (INSTALL_TARGET_MODULES): Likewise.
10340 (CLEAN_TARGET_MODULES): Likewise.
10341 (configure-target-zlib): New target.
10342 (all-target-zlib): Likewise.
10343 (all-target-libjava): Depend on all-target-zlib.
10344 (configure-target-libjava): Depend on configure-target-zlib.
10345
10346 * Makefile.in (configure-target-libjava): Depend on
10347 configure-target-newlib.
10348 (configure-target-boehm-gc): New target.
10349 (configure-target-qthreads): New target.
10350
10351 * configure.in (target_libs): Added target-qthreads.
10352 * Makefile.in (ALL_TARGET_MODULES): Added qthreads.
10353 (CONFIGURE_TARGET_MODULES): Likewise.
10354 (CHECK_TARGET_MODULES): Likewise.
10355 (INSTALL_TARGET_MODULES): Likewise.
10356 (CLEAN_TARGET_MODULES): Likewise.
10357 (all-target-qthreads): New target.
10358 (configure-target-libjava): Depend on configure-target-qthreads.
10359 (all-target-libjava): Depend on all-target-qthreads.
10360
10361 * Makefile.in (ALL_TARGET_MODULES): Added libjava, boehm-gc.
10362 (CONFIGURE_TARGET_MODULES): Likewise.
10363 (CHECK_TARGET_MODULES): Likewise.
10364 (INSTALL_TARGET_MODULES): Likewise.
10365 (CLEAN_TARGET_MODULES): Likewise.
10366 (all-target-libjava): New target.
10367 (all-target-boehm-gc): Likewise.
10368 * configure.in (target_libs): Added libjava, boehm-gc.
10369
10370 1999-07-22 Ian Lance Taylor <ian@zembu.com>
10371
10372 * Makefile.in (binutils.tar.bz2): Don't pass makeall.bat and
10373 configure.bat in SUPPORT_FILES.
10374 (gas+binutils.tar.bz2): Likewise.
10375
10376 * makeall.bat: Remove; obsolete.
10377
10378 1999-07-21 Ian Lance Taylor <ian@zembu.com>
10379
10380 From Mark Elbrecht:
10381 * configure.bat: Remove; obsolete.
10382
10383 1999-07-11 Ian Lance Taylor <ian@zembu.com>
10384
10385 * configure: Add -W -Wall to the default CFLAGS when compiling with
10386 gcc.
10387
10388 Thu Jul 8 12:32:23 1999 John David Anglin <dave@hiauly1.hia.nrc.ca>
10389
10390 * configure.in: Build ld, binutils & gas for hppa*-*-linux-gnu*.
10391
10392 1999-06-30 Mark Mitchell <mark@codesourcery.com>
10393
10394 * configure.in: Build ld on IRIX6.
10395
10396 1999-06-12 Ian Lance Taylor <ian@zembu.com>
10397
10398 * Makefile.in: Change distribution targets to use bzip2 instead of
10399 gzip.
10400 (TEXINFO_SUPPORT): Set to just texinfo/texinfo.tex.
10401 (taz): Don't use texinfo/gpl.texinfo or texinfo/lgpl.texinfo.
10402
10403 1999-06-04 Nick Clifton <nickc@cygnus.com>
10404
10405 * config.sub: Add mcore target.
10406
10407 1999-05-30 Cort Dougan <cort@cs.nmt.edu>
10408
10409 * config.guess (ppc-*-linux-gnu): Also use ld emul elf32ppclinux.
10410
10411 1999-05-25 H.J. Lu (hjl@gnu.org)
10412
10413 * config.guess (dummy): Changed to $dummy.
10414
10415 1999-05-24 Nick Clifton <nickc@cygnus.com>
10416
10417 * config.sub: Tidied up case statements.
10418
10419 1999-05-22 Ben Elliston <bje@cygnus.com>
10420
10421 * config.guess: Handle NEC UX/4800. Contributed by Jiro Takabatake
10422 <jiro@din.or.jp>.
10423
10424 * config.guess: Merge with FSF version. Future changes will be
10425 more accurately recorded in this ChangeLog.
10426 * config.sub: Likewise.
10427
10428 1999-05-20 Stephen L Moshier <moshier@world.std.com>
10429
10430 * Makefile.in (GCC_FOR_TARGET): Add -I$(build_tooldir)/include.
10431
10432 1999-04-30 Tom Tromey <tromey@cygnus.com>
10433
10434 * ltmain.sh: [mode link] Always use CC given by ltconfig.
10435
10436 1999-04-23 Tom Tromey <tromey@cygnus.com>
10437
10438 * ltconfig, ltmain.sh: Update to libtool 1.2f.
10439
10440 1999-04-20 Drew Moseley <dmoseley@cygnus.com>
10441
10442 * configure.in (noconfigdirs): Don't build libstub for arm-elf targets.
10443 (noconfigdirs): Don't build any bsp stuff for for arm-oabi targets.
10444 Bad merge removed these two changes.
10445
10446 Tue Apr 13 22:50:54 1999 Donn Terry (donn@interix.com)
10447 Martin Heller (Ing.-Buero_Heller@t-online.de)
10448
10449 * config.guess (interix Alpha): Add.
10450
10451 1999-04-11 Richard Henderson <rth@cygnus.com>
10452
10453 * configure.in (i?86-*-beos*): Do config gperf; don't config
10454 gdb, newlib, or libgloss.
10455
10456 1999-04-11 Alexandre Oliva <oliva@dcc.unicamp.br>
10457
10458 * config-ml.in: On mips*-*-*, if multidirs contains mabi=64, try to
10459 link a trivial program with -mabi=64. If it fails, remove mabi=64
10460 from multidirs.
10461
10462 1999-04-10 Philipp Thomas (kthomas@gwdg.de)
10463
10464 * config.sub: Set basic_machine to i586 when target_alias = k6-*.
10465
10466 1999-04-08 Nick Clifton <nickc@cygnus.com>
10467
10468 * config.sub: Add support for mcore targets.
10469
10470 1999-04-07 Michael Meissner <meissner@cygnus.com>
10471
10472 * configure.in (d30v-*): Use config/mt-d30v as makefile fragment,
10473 not mt-ospace, in order to shut up assembler warning about using
10474 symbols that are named the same as registers.
10475
10476 1999-04-07 Drew Moseley <dmoseley@cygnus.com>
10477
10478 * Makefile.in (all-target-cygmon): Added all-target-bsp to the
10479 dependency list for all-target-cygmon.
10480
10481 1999-04-05 Doug Evans <devans@casey.cygnus.com>
10482
10483 * config-ml.in: Check $host, not $target, for selective multilibs.
10484 (arm-*-*): Allow disabling of biendian, h/w fp, 26 bit apcs,
10485 thumb interworking, and underscore prefix multilibs.
10486
10487 1999-04-04 Ian Lance Taylor <ian@zembu.com>
10488
10489 * missing: Update to version from current automake.
10490
10491 Fri Apr 2 15:11:32 1999 H.J. Lu (hjl@gnu.org)
10492
10493 * configure (gxx_include_dir): Removed.
10494
10495 * configure.in (gxx_include_dir): Handle it.
10496 * Makefile.in: Likewise.
10497
10498 1999-03-29 Gavin Romig-Koch <gavin@cygnus.com>
10499
10500 * config.sub (mips64vr4111,mips64vr4111el) Add.
10501
10502 1999-03-21 Ben Elliston <bje@cygnus.com>
10503
10504 * config.guess: Correct typo for detecting ELF on FreeBSD.
10505
10506 Thu Mar 18 00:17:50 1999 Mark Elbrecht <snowball3@usa.net>
10507
10508 * configure.in (pc-msdosdjgpp): Set host_makefile_frag to
10509 config/mh-djgpp.
10510
10511 Thu Mar 11 18:37:23 1999 Drew Moseley <dmoseley@cygnus.com>
10512
10513 * Makefile.in (all-target-bsp): Added all-gcc all-binutils and
10514 all-target-newlib to dependency list for all-target-bsp.
10515
10516 Thu Mar 11 01:19:31 1999 Mumit Khan <khan@xraylith.wisc.edu>
10517
10518 * config.sub: Add i386-uwin support.
10519 * config.guess: Likewise.
10520
10521 Thu Mar 11 01:07:55 1999 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
10522
10523 * configure.in: cleanup, add mh-*pic handling for arm, special
10524 case powerpc*-*-aix*
10525
10526 Wed Mar 10 18:35:07 1999 Jeff Johnston <jjohnstn@cygnus.com>
10527
10528 * configure.in (noconfigdirs): Removed target-libgloss so libnosys.a
10529 can be built.
10530
10531 Wed Mar 10 17:39:09 1999 Drew Moseley <dmoseley@cygnus.com>
10532
10533 * configure.in: Added bsp support to arm-*-coff and arm-*-elf
10534 targets.
10535
10536 1999-03-02 Nick Clifton <nickc@cygnus.com>
10537
10538 * config.sub: Rename CYGNUS LOCAL to EGCS LOCAL
10539
10540 1999-02-28 Geoffrey Noer <noer@cygnus.com>
10541
10542 * config.sub: Check for "cygwin*" rather than "cygwin32*"
10543
10544 1999-02-24 Nick Clifton <nickc@cygnus.com>
10545
10546 * config.sub: Fix typo in arm recognition.
10547
10548 1999-02-24 Drew Moseley <dmoseley@cygnus.com>
10549
10550 * configure.in (noconfigdirs): Changed target_configdirs to
10551 include target-bsp only for m68k-*-elf* and m68k-*-coff*
10552 rather than m68k-*-* since it is not known to work on
10553 m68k-aout. Ditto for arm-*-*oabi.
10554
10555 1999-02-24 Stan Shebs <shebs@andros.cygnus.com>
10556
10557 * configure.in (*-*-windows*): Remove, no longer used.
10558
10559 1999-02-19 Ben Elliston <bje@cygnus.com>
10560
10561 * config.guess: Automatically recognise ELF on FreeBSD. From Niall
10562 Smart and improved by Andrew Cagney.
10563
10564 1999-02-18 Marc Espie <espie@cvs.openbsd.org>
10565
10566 * config.guess: Recognize openbsd-*-hppa.
10567
10568 1999-02-17 H.J. Lu (hjl@gnu.org)
10569
10570 * Makefile.in (REALLY_SET_LIB_PATH): Append $$$(RPATH_ENVVAR)
10571 only if it is not empty.
10572
10573 1999-02-17 Nick Clifton <nickc@cygnus.com>
10574
10575 Patch from: Scott Bambrough <scottb@corelcomputer.com>
10576
10577 * config.guess: Modified to recognize uname's armv* syntax.
10578
10579 * config.sub: Modified to recognize uname's armv* syntax.
10580
10581 1999-02-17 Mark Salter <msalter@cygnus.com>
10582
10583 * configure.in: Added target-bsp for sparclite.
10584
10585 1999-02-08 Richard Henderson <rth@cygnus.com>
10586
10587 * config.sub: Recognize alphapca5[67] and up to alphaev8.
10588
10589 1999-02-08 Nick Clifton <nickc@cygnus.com>
10590
10591 * configure.in: Add support for strongarm port.
10592 * config.sub: Add support for strongarm target.
10593
10594 1999-02-07 Mumit Khan <khan@xraylith.wisc.edu>
10595
10596 * configure.in (*-*-cygwin32*): Use config/mh-cygwin instead of
10597 the old name config/mh-cygwin32.
10598 Enable texinfo.
10599
10600 1999-02-04 Ian Lance Taylor <ian@cygnus.com>
10601
10602 * configure.in: Do build ld for ix86 Solaris.
10603
10604 1999-02-02 Jim Wilson <wilson@cygnus.com>
10605
10606 * Makefile.in (EXTRA_GCC_FLAGS): Set AR to $AR instead of
10607 $AR_FOR_TARGET. Likewise for RANLIB.
10608
10609 1999-02-02 Catherine Moore <clm@cygnus.com>
10610
10611 * config.sub (oabi): Recognize.
10612 * configure.in (arm-*-oabi): Handle.
10613
10614 1999-01-30 Robert Lipe (robertlipe@usa.net)
10615
10616 * config.guess: Improve detection of i686 on UnixWare 7.
10617
10618 1999-01-30 Mumit Khan <khan@xraylith.wisc.edu>
10619
10620 * config.guess: Add support for i386-pc-interix.
10621 * config.sub: Likewise.
10622 * configure.in: Likewise.
10623
10624 1999-01-18 Christopher Faylor <cgf@cygnus.com>
10625
10626 * Makefile.in: Remove unneeded all-target-libio from
10627 from all-target-winsup target since it is now unneeded.
10628 Add all-target-libtermcap in its place since it is now
10629 needed.
10630
10631 1998-12-30 Christopher Faylor <cgf@cygnus.com>
10632
10633 * configure.in: makefile stub for cygwin target is probably
10634 unnecessary. Remove it for now.
10635
10636 1998-12-30 Christopher Faylor <cgf@cygnus.com>
10637
10638 * configure.in: libtermcap.a should be built when cygwin is the
10639 target as well as the host.
10640 * config.guess: Allow mixed case in cygwin uname output.
10641 * Makefile.in: Add libtermcap target.
10642
10643 1998-12-23 Jeffrey A Law (law@cygnus.com)
10644
10645 * config.sub: Clean up handling of hppa2.0.
10646
10647 1998-12-22 Rodney Brown (rodneybrown@pmsc.com)
10648
10649 * config.guess: Use C code to identify more HP machines.
10650
10651 Thu Dec 17 01:22:30 1998 Jeffrey A Law (law@cygnus.com)
10652
10653 * config.sub: Handle hppa2.0.
10654
10655 Tue Dec 15 17:02:58 1998 Bob Manson <manson@charmed.cygnus.com>
10656
10657 * configure.in: Add cygmon for x86-coff and x86-elf. Configure
10658 cygmon for all sparclite targets, regardless of object format.
10659
10660 1998-12-15 Mark Salter <msalter@cygnus.com>
10661
10662 * configure.in: Added target-bsp for several target architectures.
10663
10664 * Makefile.in: Added rules for bsp.
10665
10666 Fri Dec 4 01:34:02 1998 Jeffrey A Law (law@cygnus.com)
10667
10668 * config.guess: Improve detection of hppa2.0 processors.
10669
10670 Fri Dec 4 01:33:05 1998 Niall Smart <nialls@euristix.ie>
10671
10672 * config.guess: Recognize FreeBSD using ELF automatically.
10673
10674 1998-11-26 Manfred Hollstein <manfred@s-direktnet.de>
10675
10676 * configure (skip-this-dir): Add handling for new shell script, which
10677 might be created by a sub-directory's configure to indicate, this particular
10678 directory is "unwanted".
10679 * Makefile.in ($(CONFIGURE_TARGET_MODULES)): Likewise.
10680
10681 Wed Nov 18 18:28:45 1998 Geoffrey Noer <noer@cygnus.com>
10682
10683 * ltconfig: import from libtool, after changing libtool to
10684 account for the cygwin name change.
10685
10686 Wed Nov 18 18:09:14 1998 Geoffrey Noer <noer@cygnus.com>
10687
10688 * Makefile.in: CC_FOR_TARGET and CXX_FOR_TARGET should also
10689 include newlib/libc/sys/cygwin and newlib/libc/sys/cygwin32.
10690
10691 Wed Nov 18 20:13:29 1998 Christopher Faylor <cgf@cygnus.com>
10692
10693 * configure.in: Add libtermcap to list of cygwin dependencies.
10694
10695 1998-11-17 Geoffrey Noer <noer@cygnus.com>
10696
10697 * Makefile.in: modify CC_FOR_TARGET and CXX_FOR_TARGET so that
10698 they include winsup/include when it's a cygwin target.
10699
10700 1998-11-12 Tom Tromey <tromey@cygnus.com>
10701
10702 * configure.in (host_tools): Added zip.
10703 * Makefile.in (all-target-libjava): Depend on all-zip.
10704 (all-zip): New target.
10705 (ALL_MODULES): Added all-zip.
10706 (NATIVE_CHECK_MODULES): Added check-zip.
10707 (INSTALL_MODULES): Added install-zip.
10708 (CLEAN_MODULES): Added clean-zip.
10709
10710 1998-11-12 Geoffrey Noer <noer@cygnus.com>
10711
10712 * Makefile.in: lose "32" from comment about cygwin.
10713
10714 1998-11-05 Nick Clifton <nickc@cygnus.com>
10715
10716 * configure.in: Use -Os to build target libraries for the fr30.
10717
10718 1998-11-04 Dave Brolley <brolley@cygnus.com>
10719
10720 * config.sub: Add fr30.
10721
10722 1998-11-02 Geoffrey Noer <noer@cygnus.com>
10723
10724 * configure.in: drop "32" from config/mh-cygwin32. Check
10725 cygwin* instead of cygwin32*.
10726 * config.sub: Check cygwin* instead of cygwin32*.
10727
10728 1998-10-22 Robert Lipe <robertl@dgii.com>
10729
10730 * config.guess: Match any version of Unixware7.
10731
10732 1998-10-20 Syd Polk <spolk@cygnus.com>
10733
10734 * Makefile.in configure.in: Add the ability to use tcl8.1 and tk8.1
10735 if desired.
10736
10737 1998-10-18 Jeffrey A Law (law@cygnus.com)
10738
10739 * config.if (cxx_interface, libstdcxx_interface): Do not try to set
10740 these if the appropriate directories and files to not exist.
10741
10742 1998-10-14 Jeffrey A Law (law@cygnus.com)
10743
10744 * Makefile.in (DEVO_SUPPORT): Add config.if.
10745
10746 1998-10-13 Manfred Hollstein <manfred@s-direktnet.de>
10747
10748 * configure: Add pattern to replace "build_tooldir"'s
10749 definition in the generated Makefile with "tooldir"'s
10750 actual value.
10751
10752 Tue Oct 13 09:17:06 1998 Jeffrey A Law (law@cygnus.com)
10753
10754 * config.sub: Bring back lost sparcv9.
10755
10756 * Makefile.in (all-snvavigator): Remove all-flexlm dependency.
10757
10758 Mon Oct 12 12:09:44 1998 Jeffrey A Law (law@cygnus.com)
10759
10760 * Makefile.in (CHILL_FOR_TARGET): Mirror recent changes to
10761 CC_FOR_TARGET and friends.
10762
10763 Mon Oct 12 12:09:30 1998 Alexandre Oliva <oliva@dcc.unicamp.br>
10764
10765 * Makefile.in (build_tooldir): New variable, same as tooldir.
10766 (CC_FOR_TARGET, GCC_FOR_TARGET, CXX_FOR_TARGET): Add
10767 -B$(build_tooldir)/bin/.
10768 (BASE_FLAGS_TO_PASS): Pass build_tooldir down.
10769
10770 Wed Sep 30 22:20:50 1998 Robert Lipe <robertl@dgii.com>
10771
10772 * config.sub: Add support for i[34567]86-pc-udk.
10773 * configure.in: Likewise.
10774
10775 Wed Sep 30 19:23:48 1998 Geoffrey Noer <noer@cygnus.com>
10776
10777 * Makefile.in: add bzip2 package building bits for user
10778 tools module
10779 * configure.in: ditto
10780
10781 Wed Sep 30 03:00:05 1998 Jeffrey A Law (law@cygnus.com)
10782
10783 * Makefile.in (TARGET_CONFIGDIRS): Add libobjc.
10784 (ALL_TARGET_MODULES): Add all-target-libobjc.
10785 (CONFIGURE_TARGET_MODULES, CHECK_TARGET_MODULES): Similarly.
10786 (INSTALL_TARGET_MODULES, CLEAN_TARGET_MODULES): Similarly.
10787 (all-target-libchill): Add dependencies.
10788 * configure.in (target_libs): Add libchill.
10789
10790 1998-09-30 Manfred Hollstein <manfred@s-direktnet.de>
10791
10792 * configure.in (target_subdir): Remove duplicate line.
10793
10794 Tue Sep 29 22:45:41 1998 Felix Lee <flee@cygnus.com>
10795
10796 * Makefile.in (all-automake): fix dependencies.
10797
10798 Mon Sep 28 04:04:27 1998 Jeffrey A Law (law@cygnus.com)
10799
10800 * configure.in: Minor cleanups for building in the $(target_alias)
10801 subdir.
10802
10803 1998-09-22 Jim Wilson <wilson@cygnus.com>
10804
10805 * Makefile.in (bootstrap): Set r and s before make all. Use
10806 BASE_FLAGS_TO_PASS in make all.
10807 (cross): Likewise.
10808
10809 1998-09-20 Mark Mitchell <mark@markmitchell.com>
10810
10811 * Makefile.in (bootstrap): Pass TARGET_FLAGS_TO_PASS to `make all'.
10812
10813 Sun Sep 20 00:13:02 1998 Richard Henderson <rth@cygnus.com>
10814
10815 * config.sub: Fix typo in last change.
10816
10817 1998-09-19 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
10818
10819 * config.sub: Add support for C4x target.
10820 * configure.in: Likewise.
10821
10822 1998-09-13 David S. Miller <davem@pierdol.cobaltmicro.com>
10823
10824 * config.sub: Recognize sparcv9 just like sparc64.
10825
10826 Wed Sep 9 15:44:52 1998 Robert Lipe <robertl@dgii.com>
10827
10828 * config.guess: Match "Pent II" or "PentII" for OpenServer.
10829
10830 Tue Sep 8 01:18:39 1998 Jeffrey A Law (law@cygnus.com)
10831
10832 * config.guess: Correctly identify Pentium II sco boxes.
10833
10834 * config.guess: Fix "tr" code. From Weiwen Liu.
10835
10836 Sat Sep 5 13:56:52 1998 John Hughes <john@Calva.COM>
10837
10838 * configure.in: Do not assume x86-svr4 or x86-unixware can handle
10839 stabs.
10840
10841 Sat Sep 5 02:12:02 1998 Jeffrey A Law (law@cygnus.com)
10842
10843 * Makefile.in (TARGET_CONFIGDIRS): Add libchill.
10844 (ALL_TARGET_MODULES): Add all-target-libchill.
10845 (CONFIGURE_TARGET_MODULES, CHECK_TARGET_MODULES): Similarly.
10846 (INSTALL_TARGET_MODULES, CLEAN_TARGET_MODULES): Similarly.
10847 (all-target-libchill): Add dependencies.
10848 * configure.in (target_libs): Add libchill.
10849
10850 Sun Aug 30 22:27:02 1998 Lutz Wohlrab <lutz.wohlrab@informatik.tu-chemnitz.de>
10851
10852 * config.guess: Avoid assumptions about "tr" behaves when
10853 LANG is set to something other than English.
10854
10855 Sun Aug 30 22:14:44 1998 H.J. Lu (hjl@gnu.org)
10856
10857 * configure (gxx_include_dir): Changed to
10858 '${prefix}/include/g++'-${libstdcxx_interface}.
10859
10860 * config.if: New to determine the interfaces.
10861
10862 Sun Aug 30 21:15:19 1998 Mark Klein (mklein@dis.com)
10863
10864 * config.guess: Detect and handle MPE/IX.
10865 * config.sub: Deal with MPE/IX.
10866
10867 Sat Aug 29 14:32:55 1998 David Edelsohn <edelsohn@mhpcc.edu>
10868
10869 * configure.in: Use mh-aix43.
10870
10871 1998-07-29 Manfred Hollstein <manfred@s-direktnet.de>
10872
10873 * configure: Fix --without/--disable cases for gxx-include-dir.
10874
10875 Fri Aug 28 12:28:26 1998 Per Bothner <bothner@cygnus.com>
10876
10877 * mdata-sh: Imported. Needed for automake support.
10878
10879 Thu Aug 13 12:49:29 1998 H.J. Lu <hjl@gnu.org>
10880
10881 * Makefile.in (taz): Try "chmod -R og=u ." before
10882 "chmod og=u `find . -print`".
10883
10884 Fri Jul 31 09:38:33 1998 Catherine Moore <clm@cygnus.com>
10885
10886 * configure.in: Add arm-elf and thumb-elf support.
10887
10888 Mon Jul 27 16:23:58 1998 Doug Evans <devans@canuck.cygnus.com>
10889
10890 * Makefile.in: Undo previous patch.
10891
10892 Fri Jul 24 19:55:24 1998 Doug Evans <devans@canuck.cygnus.com>
10893
10894 * Makefile.in (INSTALL_TARGET): Move EXTRA_TARGET_HOST_INSTALL_MODULES
10895 to here ...
10896 (install-no-fixedincludes): and here
10897 (INSTALL_MODULES): ... from here.
10898
10899 Fri Jul 24 17:01:42 1998 Ian Lance Taylor <ian@cygnus.com>
10900
10901 * config.sub: Merge with FSF.
10902
10903 * config.guess: Merge with FSF.
10904
10905 Fri Jul 24 08:43:36 1998 Doug Evans <devans@canuck.cygnus.com>
10906
10907 * configure (extraconfigdirs): New variable.
10908 (SUBDIRS): Add extraconfigdirs and recurse on them too.
10909 * Makefile.in (all): Move higher in file.
10910 (EXTRA_TARGET_HOST_ALL_MODULES): New variable.
10911 (EXTRA_TARGET_HOST_{INSTALL,CHECK}_MODULES): New variables.
10912 (ALL_MODULES): Add EXTRA_TARGET_HOST_ALL_MODULES.
10913 (CROSS_CHECK_MODULES): Add EXTRA_TARGET_HOST_CHECK_MODULES.
10914 (INSTALL_MODULES): Add EXTRA_TARGET_HOST_INSTALL_MODULES.
10915
10916 1998-07-23 Brendan Kehoe <brendan@cygnus.com>
10917
10918 * Makefile.in (all-target-libjava): Depend on all-gcc and
10919 all-target-newlib.
10920 (configure-target-libjava): Depend on $(ALL_GCC).
10921
10922 Sat Jul 18 14:32:43 CDT 1998 Robert Lipe <robertl@dgii.com>
10923
10924 * config.guess: (*-pc-sco3.2v5) Add detection for Pentium II.
10925 (*-pc-unixware7) Add detection for Pentium II, Pentium Pro.
10926
10927 Fri Jul 17 13:30:18 1998 Ian Lance Taylor <ian@cygnus.com>
10928
10929 * ylwrap: Change absolute path checks to check for DOS style path
10930 names.
10931
10932 * ylwrap: Don't use a full path name if the source file is in the
10933 same directory. From hjl@lucon.org (H.J. Lu).
10934
10935 * config-ml.in: Default to being verbose, to match Feb 18 change to
10936 configure.
10937
10938 Thu Jul 16 12:29:51 1998 Ian Lance Taylor <ian@cygnus.com>
10939
10940 Brought over from egcs:
10941
10942 Sat Jun 27 22:46:32 1998 Jeffrey A Law (law@cygnus.com)
10943
10944 * configure.in (target_subdir): Set to ${target_alias} instead
10945 of "libraries".
10946
10947 Mon Sep 1 16:45:44 1997 Jim Wilson <wilson@cygnus.com>
10948
10949 * configure.in (target_subdir): Set to libraries if enable_multilib.
10950
10951 Wed Jul 15 01:00:54 1998 Ian Lance Taylor <ian@cygnus.com>
10952
10953 * Makefile.in ($(CONFIGURE_TARGET_MODULES)): If there are any
10954 multilibs, force reconfiguration the first time we create
10955 multilib.out in a subdirectory, in case TARGET_SUBDIR is `.'.
10956
10957 Tue Jul 14 23:41:03 1998 Ian Lance Taylor <ian@cygnus.com>
10958
10959 * configure.in: Strip any --no option from CONFIG_ARGUMENTS, to
10960 avoid confusion with --no-recursion.
10961
10962 Tue Jul 14 15:37:41 1998 Geoffrey Noer <noer@cygnus.com>
10963
10964 * configure.in: Win32 hosts shouldn't use install -x
10965 * install-sh: remove -x option, and special .exe-handling
10966 hack.
10967
10968 Tue Jul 14 15:28:41 1998 Richard Henderson <rth@cygnus.com>
10969
10970 * config.guess: Recognize i586-pc-beos.
10971 * configure.in: Don't build some bits for beos.
10972
10973 Tue Jul 14 13:22:18 1998 Ian Lance Taylor <ian@cygnus.com>
10974
10975 * configure: If CC is set but CFLAGS is not, and CC is gcc, make
10976 CFLAGS default to -O2.
10977
10978 * ltmain.sh: Add some hacks to make SunOS --enable-shared work
10979 when using GNU ld.
10980
10981 Fri Jul 10 13:18:23 1998 Ian Lance Taylor <ian@cygnus.com>
10982
10983 * ltmain.sh: Correct install when using a different shell.
10984
10985 Tue Jul 7 15:24:38 1998 Ian Lance Taylor <ian@cygnus.com>
10986
10987 * ltconfig, ltmain.sh: Update to libtool 1.2b.
10988
10989 Thu Jul 2 13:57:36 1998 Klaus Kaempf <kkaempf@rmi.de>
10990
10991 * makefile.vms: Update to build binutils/makefile.vms. Add install
10992 target.
10993
10994 Wed Jul 1 16:45:21 1998 Ian Lance Taylor <ian@cygnus.com>
10995
10996 * ltconfig: Update to correct AIX handling.
10997
10998 Sat Jun 27 22:46:32 1998 Jeffrey A Law (law@cygnus.com)
10999
11000 * Makefile.in (BASE_FLAGS_TO_PASS): Add TARGET_SUBDIR.
11001
11002 * configure.in (target_subdir): Set to ${target_alias} instead
11003 of "libraries".
11004
11005 1998-06-26 Manfred Hollstein <manfred@s-direktnet.de>
11006
11007 * Makefile.in (BASE_FLAGS_TO_PASS): Add gcc_version_trigger.
11008 (Makefile): Depend on $(gcc_version_trigger).
11009
11010 * configure (gcc_version): Change default initializer to empty
11011 string.
11012 (gcc_version_trigger): New variable; pass this variable down
11013 to subdir configures to enable them checking gcc's version
11014 themselves. Emit make macros for both gcc_version vars.
11015 (topsrcdir): Initialize reliably.
11016 (recursion line): Remove --with-gcc-version=${gcc_version}.
11017
11018 1998-06-24 Manfred Hollstein <manfred@s-direktnet.de>
11019
11020 * configure (enable_version_specific_runtime_libs): Implement new flag
11021 --enable-version-specific-runtime-libs which installs C++ runtime stuff
11022 in $(libsubdir); emit definition in each generated Makefile.
11023 (gxx_include_dir): Initialize depending on
11024 $enable_version_specific_runtime_libs.
11025
11026 1998-06-24 Manfred Hollstein <manfred@s-direktnet.de>
11027
11028 * configure (gcc_version): Initialize properly depending on
11029 how and where configure is started.
11030 (recursion line): Pass a --with-gcc-version=${gcc_version}
11031 to configures in subdirs.
11032
11033 Wed Jun 24 16:01:59 1998 John Metzler <jmetzler@cygnus.com>
11034
11035 * configure.in (noconfigdirs): Add configure pattern for mips tx39
11036 cygmon
11037
11038 Tue Jun 23 22:42:32 1998 Mark Alexander <marka@cygnus.com>
11039
11040 * configure.in: Add cygmon and libstub support for mn10200.
11041
11042 1998-06-19 Manfred Hollstein <manfred@s-direktnet.de>
11043
11044 * configure (gcc_version): Add new variable describing the
11045 particular gcc version we're building.
11046 * Makefile.in (libsubdir): Add new macro for the directory
11047 in which the compiler finds executables, libraries, etc.
11048 (BASE_FLAGS_TO_PASS): Pass down gcc_version, target_alias
11049 and libsubdir.
11050
11051 Fri Jun 19 02:36:59 1998 Alexandre Oliva <oliva@dcc.unicamp.br>
11052
11053 * Makefile.in (local-clean): Remove *.log.
11054 (warning.log): Built with warn_summary from build.log.
11055 (mail-report.log): Run test_summary.
11056 (mail-report-with-warnings.log): Run test_summary including
11057 warning.log in the report.
11058
11059 Thu Jun 18 11:26:03 1998 Robert Lipe <robertl@dgii.com>
11060
11061 * config.guess: Detection of Pentium II for *-sco-3.2v5*.
11062
11063 Mon Jun 15 14:53:54 1998 Andrew Cagney <cagney@b1.cygnus.com>
11064
11065 * Makefile.in (grep): Grep no longer depends on libiberty.
11066
11067 Fri Jun 12 14:03:34 1998 Syd Polk <spolk@cygnus.com>
11068
11069 * Makefile.in: all-snavigator needs all-libgui.
11070
11071 Thu Jun 11 19:43:47 1998 Mark Alexander <marka@cygnus.com>
11072
11073 * configure.in: Add cygmon and libstub support for mn10300.
11074
11075 Wed Jun 10 11:19:47 1998 Ian Lance Taylor <ian@cygnus.com>
11076
11077 * missing: Update to version from automake 1.3.
11078
11079 * ltmain.sh: On installation, don't get confused if the same name
11080 appears more than once in the list of library names.
11081
11082 Wed Jun 3 14:51:42 1998 Ian Lance Taylor <ian@cygnus.com>
11083
11084 * config.sub: Accept m68060 and m5200 as CPU names.
11085
11086 Mon Jun 1 17:25:16 1998 Ian Lance Taylor <ian@cygnus.com>
11087
11088 * configure: Use && rather than using -a in test, because odd
11089 strings can confuse test.
11090 * configure.in: Likewise.
11091
11092 Thu May 28 19:31:13 1998 Ian Lance Taylor <ian@cygnus.com>
11093
11094 * ltconfig, ltmain.sh: Bring in Visual C++ support.
11095
11096 Sat May 23 23:44:13 1998 Alexandre Oliva <oliva@dcc.unicamp.br>
11097
11098 * Makefile.in (boostrap2-lean, bootstrap3-lean,
11099 bootstrap4-lean): New targets.
11100
11101 Mon May 11 23:55:56 1998 Jeffrey A Law (law@cygnus.com)
11102
11103 * mpw-* Delete. Not used.
11104
11105 Mon May 11 23:11:34 1998 Jeffrey A Law (law@cygnus.com)
11106
11107 * COPYING.LIB: Update FSF address.
11108
11109 Fri May 8 01:30:20 1998 Ian Lance Taylor <ian@cygnus.com>
11110
11111 * ltconfig, ltmain.sh: Update to libtool 1.2a.
11112
11113 * Makefile.in (GASB_SUPPORT_DIRS): Remove intl; already included via
11114 GAS_SUPPORT_DIRS.
11115
11116 Thu May 7 17:27:35 1998 Ian Lance Taylor <ian@cygnus.com>
11117
11118 * ltconfig, ltmain.sh: Avoid producing a version number if
11119 -version-info was not used.
11120
11121 Tue May 5 18:02:24 1998 Ian Lance Taylor <ian@cygnus.com>
11122
11123 * configure.in: Add --with-newlib to CONFIG_ARGUMENTS if we are
11124 building with newlib.
11125
11126 1998-04-30 Paul Eggert <eggert@twinsun.com>
11127
11128 * Makefile.in (EXTRA_GCC_FLAGS): Remove backslash at end;
11129 Solaris `make' causes it to continue to next definition.
11130
11131 Tue Apr 28 16:24:24 1998 Jason Molenda (crash@bugshack.cygnus.com)
11132
11133 * Makefile.in (install-gdbtk): Call this 'install-gdb' so that
11134 the right GUI libraries and files are installed along with GDB.
11135
11136 Tue Apr 28 18:11:24 1998 Ian Lance Taylor <ian@cygnus.com>
11137
11138 * configure.in: Change alpha to alpha* in several places.
11139
11140 Tue Apr 28 07:42:00 1998 Mark Alexander <marka@cygnus.com>
11141
11142 * config.sub: Recognize sparc86x.
11143
11144 Tue Apr 28 07:35:02 1998 Michael Meissner <meissner@cygnus.com>
11145
11146 * configure.in (--enable-target-optspace): Remove debug echo.
11147
11148 Thu Apr 23 21:31:16 1998 Jim Wilson <wilson@cygnus.com>
11149
11150 * configure: Set CXXFLAGS from CXXFLAGS, not CFLAGS.
11151
11152 Thu Apr 23 12:26:38 1998 Ian Lance Taylor <ian@cygnus.com>
11153
11154 * ltconfig: Update cygwin32 support.
11155
11156 * Makefile.in (GAS_SUPPORT_DIRS): Add intl.
11157 (BINUTILS_SUPPORT_DIRS, GASB_SUPPORT_DIRS): Likewise.
11158 (GDB_SUPPORT_DIRS): Likewise.
11159
11160 Wed Apr 22 12:30:10 1998 Michael Meissner <meissner@cygnus.com>
11161
11162 * configure.in (target_makefile_frag): If --enable-target-optspace,
11163 use -Os to compile target libraries rather than -O2. Default to
11164 using -Os for d10v and m32r if --{enable,disable}-target-optspace is
11165 not used.
11166 * configure.in (target_cflags): Ditto for d30v.
11167
11168 Tue Apr 21 23:06:54 1998 Tom Tromey <tromey@cygnus.com>
11169
11170 * Makefile.in (all-bfd): Depend on all-intl.
11171 (all-binutils): Likewise.
11172 (all-gas): Likewise.
11173 (all-gprof): Likewise.
11174 (all-ld): Likewise.
11175
11176 1998-04-19 Brendan Kehoe <brendan@cygnus.com>
11177
11178 * configure.in (host_tools): Fix typo, lbtool -> libtool.
11179
11180 Fri Apr 17 16:20:42 1998 Ian Lance Taylor <ian@cygnus.com>
11181
11182 * Makefile.in (all-bfd): Depend upon all-libiberty.
11183
11184 * ltconfig, ltmain.sh: Bring in newer cygwin32 support.
11185
11186 Fri Apr 17 12:22:22 1998 Bob Manson <manson@charmed.cygnus.com>
11187
11188 * Makefile.in: Add libstub.
11189
11190 * configure.in: Ditto. Build libstub for targets that have cygmon
11191 support.
11192
11193 Tue Apr 14 18:01:55 1998 Ian Lance Taylor <ian@cygnus.com>
11194
11195 * configure.in: Don't set PICFLAG on ix86-cygwin32.
11196
11197 Tue Apr 14 12:24:45 1998 J. Kean Johnston <jkj@sco.com>
11198
11199 * configure.in: Recognise i[3456]96-*-sysv5* as a valid host, and
11200 use mh-sysv5 if specified. Support gprof on SCO Open Server.
11201
11202 Tue Apr 14 11:33:51 1998 Krister Walfridsson <cato@df.lth.se>
11203
11204 * configure: Define DEFAULT_M4 by searching PATH.
11205 * Makfile.in: Use DEFAULT_M4.
11206
11207 Mon Apr 13 15:37:24 1998 Ian Lance Taylor <ian@cygnus.com>
11208
11209 * ltconfig: Add cygwin32 support.
11210
11211 * Makefile.in, configure.in: Add libtool as a native only directory
11212 to configure and build.
11213
11214 Sun Apr 12 20:58:46 1998 Jeffrey A Law (law@cygnus.com)
11215
11216 * Makefile.in (INSTALL_MODULES): Remove texinfo.
11217
11218 Wed Apr 8 13:18:56 1998 Philippe De Muyter <phdm@macqel.be>
11219
11220 * Makefile.in (EXTRA_GCC_FLAGS): XFOO lines shortened.
11221
11222 Thu Apr 2 14:48:44 1998 Geoffrey Noer <noer@cygnus.com>
11223
11224 * Makefile.in: add ash make rules
11225 * configure.in: add ash to native_only and host_tools lists
11226
11227 Thu Mar 26 12:53:20 1998 Tom Tromey <tromey@cygnus.com>
11228
11229 * Makefile.in (all-gettext, all-intl): New targets.
11230 (ALL_MODULES): Added all-gettext, all-intl.
11231 (CROSS_CHECK_MODULES): Added check-gettext, check-intl.
11232 (INSTALL_MODULES): Added install-gettext, install-intl.
11233 (CLEAN_MODULES): Added clean-gettext, clean-intl.
11234
11235 * configure.in (host_tools): Added gettext.
11236 (native_only): Likewise.
11237 (noconfigdirs) [various cases]: Likewise.
11238 (host_libs): Added intl.
11239
11240 Thu Mar 26 15:00:11 1998 Keith Seitz <keiths@onions.cygnus.com>
11241
11242 * configure: Do not disable building gdbtk for cygwin32 hosts.
11243
11244 Wed Mar 25 10:04:18 1998 Nick Clifton <nickc@cygnus.com>
11245
11246 * configure.in: Add thumb-coff target.
11247 * config.sub: Add thumb-coff target.
11248
11249 Wed Mar 25 11:49:12 1998 Jason Molenda (crash@bugshack.cygnus.com)
11250
11251 * Makefile.in: Revert yesterday's change.
11252 (all-target-winsup): all-target-librx stays out of here.
11253
11254 Tue Mar 24 16:58:29 1998 Jason Molenda (crash@bugshack.cygnus.com)
11255
11256 * Makefile.in (TARGET_CONFIGDIRS, ALL_TARGET_MODULES,
11257 CONFIGURE_TARGET_MODULES, CHECK_TARGET_MODULES,
11258 INSTALL_TARGET_MODULES, CLEAN_TARGET_MODULES, all-target-winsup):
11259 Remove references to librx and libg++.
11260
11261 Tue Mar 24 18:28:12 1998 Eric Mumpower <nocturne@cygnus.com>
11262
11263 * Makefile.in (BASE_FLAGS_TO_PASS): Pass $(lispdir) down to
11264 recursive makes
11265
11266 Tue Mar 24 11:37:45 1998 Ian Lance Taylor <ian@cygnus.com>
11267
11268 * Makefile.in (CC_FOR_TARGET): Use $(TARGET_SUBDIR) when passing -B
11269 for newlib directory.
11270 (CXX_FOR_TARGET): Likewise.
11271
11272 Mon Mar 23 11:30:21 1998 Jeffrey A Law (law@cygnus.com)
11273
11274 * ltconfig: Update after libtool/ltconfig.in change for
11275 hpux11.
11276
11277 Fri Mar 20 18:51:43 1998 Ian Lance Taylor <ian@cygnus.com>
11278
11279 * ltconfig, ltmain.sh: Update to libtool 1.2.
11280
11281 Fri Mar 20 09:32:14 1998 Manfred Hollstein <manfred@s-direktnet.de>
11282
11283 * Makefile.in (install-gcc): Don't specify LANGUAGES here.
11284 (install-gcc-cross): Instead, override LANGUAGES here.
11285
11286 1998-03-18 Dave Love <d.love@dl.ac.uk>
11287
11288 * Makefile.in ($(CONFIGURE_TARGET_MODULES)): Set CONFIG_SITE to a
11289 non-existent file since /dev/null loses with bash 2.0/autoconf 2.12.
11290
11291 Wed Mar 18 09:24:59 1998 Nick Clifton <nickc@cygnus.com>
11292
11293 * configure.in: Add Thumb-pe target.
11294
11295 Tue Mar 17 16:59:00 1998 Syd Polk <spolk@cygnus.com>
11296
11297 * Makefile.in - changed sn targets to snavigator
11298 * configure.in - changed sn targets to snavigator
11299
11300 Tue Mar 17 10:33:28 1998 Manfred Hollstein <manfred@s-direktnet.de>
11301
11302 * config-ml.in: After building symlink tree call make distclean
11303 if a Makefile got linked into ${ml_dir}/${ml_libdir}; this happens
11304 to be the case for libiberty.
11305
11306 Tue Mar 17 10:22:37 1998 H.J. Lu (hjl@gnu.ai.mit.edu)
11307
11308 * configure: When making link, also check the current
11309 directory. The configure scripts may create one.
11310
11311 Fri Mar 6 01:02:03 1998 Richard Henderson <rth@cygnus.com>
11312
11313 * config.sub: Accept alphapca56 and alphaev6 properly.
11314
11315 Fri Mar 6 00:14:55 1998 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
11316
11317 * configure.in: Revert 3 Jan change for powerpc-linux-gnulibc1.
11318
11319 Mon Feb 23 15:09:18 1998 Bruno Haible <bruno@linuix.mathematik.uni-karlsruhe.de
11320
11321 * config.sub (sco5): Fix typo.
11322
11323 Mon Feb 23 14:46:06 1998 Ian Lance Taylor <ian@cygnus.com>
11324
11325 * Makefile.in (INSTALL_MODULES): Move install-tcl before
11326 install-itcl.
11327 (install-itcl): Remove dependency on install-tcl.
11328
11329 Mon Feb 23 09:53:28 1998 Mark Alexander <marka@cygnus.com>
11330
11331 * configure.in: Remove libgloss from noconfigdirs for MN10300.
11332
11333 Thu Feb 19 13:40:41 1998 Ian Lance Taylor <ian@cygnus.com>
11334
11335 * configure.in: Don't build libgui for a cygwin32 target when not on
11336 a cygwin32 host.
11337
11338 Wed Feb 18 12:29:00 1998 Jason Molenda (crash@bugshack.cygnus.com)
11339
11340 * configure (redirect): Set to null, so default behavior of
11341 configure is now --verbose.
11342
11343 1998-02-16 Dave Love <d.love@dl.ac.uk>
11344
11345 * Makefile.in ($(CONFIGURE_TARGET_MODULES)): Run configure with
11346 CONFIG_SITE=/dev/null to forestall lossage with site configuration.
11347
11348 Mon Feb 16 12:23:53 1998 Manfred Hollstein <Manfred.Hollstein@ks.sel.alcatel.de>
11349
11350 * Makefile.in (BASE_FLAGS_TO_PASS, EXTRA_TARGET_FLAGS): Really add
11351 this change to sync Makefile.in with its ChangeLog entries.
11352
11353 Thu Feb 12 15:03:08 1998 H.J. Lu <hjl@gnu.org>
11354
11355 * ltmain.sh (mkdir): Check that the directory doesn't exist
11356 before we exit with error, so that we don't get races during
11357 parallel builds.
11358
11359 Sat Feb 7 15:19:18 1998 Ian Lance Taylor <ian@cygnus.com>
11360
11361 * ltconfig, ltmain.sh: Update from libtool 1.0i.
11362
11363 Fri Feb 6 01:33:52 1998 Manfred Hollstein <manfred@s-direktnet.de>
11364
11365 * Makefile.in (BASE_FLAGS_TO_PASS): Don't pass PICFLAG and
11366 PICFLAG_FOR_TARGET.
11367 (EXTRA_TARGET_FLAGS): Don't pass PICFLAG_FOR_TARGET.
11368
11369 * configure: Emit a definition for the new macro enable_shared
11370 into each Makefile.
11371
11372 Thu Feb 5 17:01:12 1998 Jason Molenda (crash@bugshack.cygnus.com)
11373
11374 * configure.in (host_tools, native_only): Add libtool.
11375
11376 Wed Feb 4 16:53:58 1998 Geoffrey Noer <noer@cygnus.com>
11377
11378 * configure.in: add target-gperf to noconfigdirs for Cygwin32.
11379 Fix typo in ming config comment.
11380
11381 Wed Feb 4 18:56:13 1998 Ian Lance Taylor <ian@cygnus.com>
11382
11383 * ltconfig, ltmain.sh: Update from libtool 1.0h.
11384
11385 Mon Feb 2 19:38:19 1998 Ian Lance Taylor <ian@cygnus.com>
11386
11387 * config.sub: Add tic30 cases, and map c30 to tic30.
11388
11389 Sun Feb 1 02:40:41 1998 Richard Henderson <rth@cygnus.com>
11390
11391 * Makefile.in (TARGET_CONFIGDIRS): Add libf2c.
11392 (ALL_TARGET_MODULES, CONFIGURE_TARGET_MODULES): Similarly
11393 (CHECK_TARGET_MODULES, INSTALL_TARGET_MODULES): Similarly
11394 (CLEAN_TARGET_MODULES): Similarly
11395 (all-target-libf2c): Add dependences.
11396 * configure.in (target_libs): Add libf2c.
11397
11398 Fri Jan 30 17:18:32 1998 Geoffrey Noer <noer@cygnus.com>
11399
11400 * configure.in: Remove expect from noconfigdirs when target
11401 is cygwin32. OK to build expect and dejagnu with Canadian
11402 Cross.
11403
11404 Wed Jan 28 12:58:49 1998 Ian Lance Taylor <ian@cygnus.com>
11405
11406 * configure.in: Do build expect, dejagnu, and cvssrc for a cygwin32
11407 host.
11408
11409 * config.guess: Use ${UNAME_MACHINE} rather than i386 for cygwin32
11410 and mingw32.
11411
11412 Wed Jan 28 10:26:37 1998 Manfred Hollstein <manfred@s-direktnet.de>
11413
11414 * Makefile.in (BASE_FLAGS_TO_PASS): Remove passing $(local_prefix)
11415 here as it is not defined in the toplevel Makefile.
11416
11417 Tue Jan 27 23:25:06 1998 Manfred Hollstein <manfred@s-direktnet.de>
11418
11419 * configure (package_makefile_rules_frag): New variable, which names
11420 a file with generic rules, ...
11421 Change comment to mention we now have FIVE parts.
11422 * configure: Undo last change.
11423
11424 Tue Jan 27 23:15:55 1998 Lassi A. Tuura <lat@iki.fi>
11425
11426 * config.guess: More accurate determination of HP processor types.
11427 * config.sub: More accurate determination of HP processor types.
11428
11429 Sat Jan 24 01:59:45 1998 Manfred Hollstein <manfred@s-direktnet.de>
11430
11431 * configure (package_makefile_frag): Move inserting the
11432 ${package_makefile_frag} to where it should be according
11433 to the comment.
11434
11435 Fri Jan 23 00:29:28 1998 Philip Blundell <pb@nexus.co.uk>
11436
11437 * config.guess: Add support for Linux/ARM.
11438
11439 Thu Jan 22 15:14:01 1998 Fred Fish <fnf@cygnus.com>
11440
11441 * .cvsignore: Remove *-info and *-install since they match
11442 release-info and mpw-install, which we don't want to just ignore.
11443
11444 Thu Jan 22 01:38:33 1998 Richard Henderson <rth@cygnus.com>
11445
11446 * configure.in: Revert 3 Jan change for alpha-linux-gnulibc1.
11447
11448 Sat Jan 17 21:28:08 1998 Pieter Nagel <pnagel@epiuse.co.za>
11449
11450 * Makefile.in (FLAGS_TO_PASS): Pass down gcc_include_dir and
11451 local_prefix to sub-make invocations.
11452
11453 Sat Jan 17 21:04:59 1998 H.J. Lu (hjl@gnu.org)
11454
11455 * configure.in: Check makefile fragments in the source
11456 directory.
11457
11458 Fri Jan 16 00:41:37 1998 Alexandre Oliva <oliva@dcc.unicamp.br>
11459
11460 * configure.in: Check whether host and target makefile
11461 fragments exist before adding them to *_makefile_frag.
11462
11463 Wed Jan 14 23:39:10 1998 Bob Manson <manson@charmed.cygnus.com>
11464
11465 * configure.in (target_configdirs): Add cygmon for sparc64-elf.
11466
11467 Wed Jan 14 12:48:07 1998 Keith Seitz <keiths@pizza.cygnus.com>
11468
11469 * configure.in: Make sure we only replace RPATH_ENVVAR on
11470 lines which begin with RPATH_ENVVAR, i.e. add "^" to the
11471 regexp to sed.
11472
11473 * Makefile.in (BASE_FLAGS_TO_PASS): Pass RRPATH_ENVVAR down
11474 to sub-makes.
11475
11476 1998-01-13 Lee Iverson (leei@ai.sri.com)
11477
11478 * config-ml.in (multi-do): LDFLAGS must include multilib
11479 designator.
11480
11481 Tue Jan 13 01:13:24 1998 Robert Lipe (robertl@dgii.com)
11482
11483 * config.guess: Recognize i[3456]-i586-UnixWare7-sysv5.
11484
11485 Sun Jan 4 01:06:55 1998 Mumit Khan <khan@xraylith.wisc.edu>
11486
11487 * config.sub: Add mingw32 support.
11488 * configure.in: Likewise.
11489
11490 Sat Jan 3 12:11:05 1998 Franz Sirl <franz.sirl-kernel@lauterbach.com>
11491
11492 * configure.in: Finalize support for {alpha|powerpc}*-*-linux-gnulibc1
11493
11494 Sun Dec 28 11:28:58 1997 Jeffrey A Law (law@cygnus.com)
11495
11496 * Makefile.in (INSTALL_TARGET): Do install-gcc first.
11497 * configure (gxx_include_dir): Provide a definition for subdirs
11498 which do not use autoconf.
11499
11500 Wed Dec 24 22:46:55 1997 Jeffrey A Law (law@cygnus.com)
11501
11502 * config.guess: Sync with egcs. Picks up new alpha support,
11503 BeOS & some additional linux support.
11504
11505 Tue Dec 23 12:44:24 1997 Jeffrey A Law (law@cygnus.com)
11506
11507 * config.guess: HP 9000/803 is a PA1.1 machine.
11508
11509 Mon Dec 22 02:39:24 1997 Richard Henderson <rth@cygnus.com>
11510
11511 * configure.in: It's alpha*-...
11512
11513 Sun Dec 21 16:53:12 1997 H.J. Lu (hjl@gnu.ai.mit.edu)
11514
11515 * configure.in (host_makefile_frag, target_makefile_frag):
11516 Handle multiple config files.
11517 (alpha-*-linux*): Treat alpha-*-linux* as alpha-*-linux* and
11518 alpha-*-*.
11519
11520 Thu Dec 18 13:13:03 1997 Doug Evans <devans@canuck.cygnus.com>
11521
11522 * mkdep: New file.
11523
11524 Wed Dec 17 09:53:02 1997 Michael Meissner <meissner@cygnus.com>
11525
11526 * configure.in (d30v-*-*): Allow configuring of libide, vmake, etc.
11527
11528 Tue Dec 16 17:36:05 1997 Ian Lance Taylor <ian@cygnus.com>
11529
11530 * Makefile.in: Add libgui directory.
11531 (GDB_TK): Add all-libgui.
11532 * configure.in: Add libgui directory.
11533 * configure: Add all-libgui to GDB_TK.
11534
11535 Mon Dec 15 16:12:28 1997 Nick Clifton <nickc@cygnus.com>
11536
11537 * config-ml.in (multidirs): Add m32r to multilib list.
11538
11539 Fri Dec 12 10:43:31 1997 Brendan Kehoe <brendan@canuck.cygnus.com>
11540
11541 * Makefile.in (all-target-gperf): Change dependency to
11542 all-target-libstdc++.
11543
11544 Thu Dec 11 23:30:51 1997 Fred Fish <fnf@ninemoons.com>
11545
11546 * config.guess: Add BeOS support.
11547
11548 Wed Dec 10 15:10:38 1997 Ian Lance Taylor <ian@cygnus.com>
11549
11550 Source directory cvs renamed to cvssrc:
11551 * configure.in (host_tools): Change cvs to cvssrc.
11552 (native_only): Likewise.
11553 (noconfigdirs) [various cases]: Likewise.
11554 * Makefile.in (ALL_MODULES): Change all-cvs to all-cvssrc.
11555 (CROSS_CHECK_MODULES): Change check-cvs to check-cvssrc.
11556 (INSTALL_MODULES): Change install-cvs to install-cvssrc.
11557 (CLEAN_MODULES): Change clean-cvs to clean-cvssrc.
11558 (all-cvssrc): Rename target from all-cvs.
11559
11560 Wed Dec 3 07:55:59 1997 Jeffrey A Law (law@cygnus.com)
11561
11562 * configure (gxx_include_dir): Fix thinko.
11563
11564 Tue Dec 2 10:55:34 1997 Jeffrey A Law (law@cygnus.com)
11565
11566 * Makefile.in (INSTALL_TARGET_CROSS): Define.
11567 (install-cross, install-gcc-cross): New targets.
11568
11569 Tue Dec 2 10:08:31 1997 Nick Clifton <nickc@cygnus.com>
11570
11571 * configure.in (noconfigdirs): Add support for Thumb target.
11572
11573 * config.sub (maybe_os): Add support for Thumb target.
11574
11575 Sun Nov 30 16:12:27 1997 Bob Manson <manson@charmed.cygnus.com>
11576
11577 * Makefile.in: Add rules for cygmon.
11578
11579 * configure.in: Build cygmon for sparc-elf and sparclite-aout.
11580
11581 Thu Nov 27 01:31:30 1997 Jeffrey A Law (law@cygnus.com)
11582
11583 * Makefile.in (INSTALL_TARGET): Do install-gcc first.
11584 * configure (gxx_include_dir): Provide a definition for subdirs
11585 which do not use autoconf.
11586
11587 Wed Nov 26 11:53:33 1997 Keith Seitz <keiths@onions.cygnus.com>
11588
11589 * Makefile.in, configure, configure.in, ChangeLog: merge with foundry's
11590 11/18/97 build
11591
11592 Wed Nov 26 16:08:50 1997 Jeffrey A Law (law@cygnus.com)
11593
11594 * From Franz Sirl.
11595 * config.guess (powerpc*-*-linux): Handle glibc2 beta release
11596 found on RedHat Linux systems.
11597
11598 Fri Nov 21 09:51:01 1997 Jeffrey A Law (law@cygnus.com)
11599
11600 * config.guess (alpha stuff): Merge with FSF to avoid incorrect
11601 guesses.
11602
11603 Thu Nov 13 11:38:37 1997 Jeffrey A Law (law@cygnus.com)
11604
11605 * configure.in (i[3456]86-ncr-sysv4.3*): Tweak.
11606
11607 Mon Nov 10 15:23:21 1997 H.J. Lu <hjl@gnu.ai.mit.edu>
11608
11609 * ltmain.sh: If mkdir fails, check whether the directory was created
11610 anyhow by some other process.
11611
11612 Mon Nov 10 14:38:03 1997 Michael Meissner <meissner@cygnus.com>
11613
11614 * configure.in (d30v-*-*): Configure all directories.
11615
11616 Sun Nov 9 17:36:20 1997 Michael Meissner <meissner@cygnus.com>
11617
11618 * configure.in (d30v-*-*): Configure newlib, libiberty directories
11619 for the D30V.
11620
11621 Sat Nov 8 14:42:59 1997 Michael Meissner <meissner@cygnus.com>
11622
11623 * configure.in (d30v-*-*): Configure target-libgloss on the D30V.
11624
11625 Fri Nov 7 10:34:09 1997 Rob Savoye <rob@darkstar.cygnus.com>
11626
11627 * include/libiberty.h: Add extern "C" { so it can be used with C++
11628 progrms.
11629 * include/remote-sim.h: Add extern "C" { so it can be used with C++
11630 programs.
11631
11632 Thu Oct 30 11:09:29 1997 Michael Meissner <meissner@cygnus.com>
11633
11634 * configure.in (d30v-*-*): Configure GCC now.
11635
11636 Mon Oct 27 13:17:24 1997 Stan Shebs <shebs@andros.cygnus.com>
11637
11638 * configure.in: Remove a "second pass" of tweaking noconfigdirs,
11639 is no longer needed.
11640
11641 Mon Oct 27 12:03:53 1997 Jason Merrill <jason@yorick.cygnus.com>
11642
11643 * Makefile.in: check-target-libio depends on all-target-libstdc++.
11644
11645 Sun Oct 26 11:48:27 1997 Manfred Hollstein (manfred@s-direktnet.de)
11646
11647 * Makefile.in (bootstrap-lean): Combined with `normal' bootstrap
11648 targets using "$@" to provide support for similar but not identical
11649 targets without having to duplicate code.
11650
11651 Mon Oct 20 15:28:49 1997 Klaus K"ampf <kkaempf@progis.de>
11652
11653 * makefile.vms: Fix to work with DEC C.
11654
11655 Tue Oct 7 23:58:57 1997 Gavin Koch <gavin@cygnus.com>
11656
11657 * config.sub: Add mips-tx39-elf to marketing names.
11658
11659 Tue Oct 7 14:24:41 1997 Ian Lance Taylor <ian@cygnus.com>
11660
11661 * ltmain.sh: Handle symlinks in generated script.
11662
11663 Wed Oct 1 13:11:27 1997 Ian Lance Taylor <ian@cygnus.com>
11664
11665 * configure: Handle autoconf style directory options: --bindir,
11666 --datadir, --includedir, --infodir, --libdir, --libexecdir,
11667 --mandir, --oldincludedir, --sbindir, --sharedstatedir,
11668 --sysconfdir.
11669 * Makefile.in (sbindir, libexecdir, sysconfdir): New variables.
11670 (sharedstatedir, localstatedir, oldincludedir): New variables.
11671 (BASE_FLAGS_TO_PASS): Pass down bindir, datadir, includedir,
11672 infodir, libdir, libexecdir, localstatedir, mandir, oldincludedir,
11673 sbindir, sharedstatedir, and sysconfdir.
11674
11675 Mon Sep 29 00:38:08 1997 Aaron Jackson <jackson@negril.msrce.howard.edu>
11676
11677 * Makefile.in (bootstrap-lean): New target.
11678
11679 Wed Sep 24 18:06:27 1997 Stu Grossman <grossman@babylon-5.cygnus.com>
11680
11681 * configure.in (d30v): Remove tcl, tk, expect, gdb, itcl, tix, db,
11682 sn, and gnuserv from noconfigdirs.
11683
11684 Wed Sep 24 15:18:32 1997 Ian Lance Taylor <ian@cygnus.com>
11685
11686 * ltmain.sh: Tweak shell pattern to avoid bug in NetBSD /bin/sh.
11687
11688 Thu Sep 18 23:58:27 1997 Jeffrey A Law (law@cygnus.com)
11689
11690 * Makefile.in (cross): New target.
11691
11692 Thu Sep 18 21:43:23 1997 Alexandre Oliva <oliva@dcc.unicamp.br>
11693 Jeff Law <law@cygnus.com>
11694
11695 * Makefile.in (bootstrap2, bootstrap3): New targets.
11696 (all-bootstrap): Remove outdated and confusing target.
11697 (bootstrap, bootstrap2, bootstrap3): Don't pass BOOT_CFLAGS down.
11698
11699 Thu Sep 18 15:37:42 1997 Andrew Cagney <cagney@b1.cygnus.com>
11700
11701 * configure (tooldir): enable_gdbtk=YES for cygwin32, NO for
11702 windows. Consistent with gdb/configure.
11703
11704 1997-09-15 02:37 Ulrich Drepper <drepper@cygnus.com>
11705
11706 * configure.in: Name Linux target fragment.
11707
11708 * configure: Rewrite so that project Makefile fragment is inserted
11709 first and appears last in the resulting Makefile.
11710
11711 Tue Sep 16 09:55:07 1997 Andrew Cagney <cagney@b1.cygnus.com>
11712
11713 * Makefile.in (install-itcl): Install tcl first.
11714
11715 Fri Sep 12 16:19:20 1997 Geoffrey Noer <noer@cygnus.com>
11716
11717 * configure.in: remove bison from noconfigdirs for Cygwin32 host
11718
11719 Thu Sep 11 16:40:46 1997 H.J. Lu (hjl@gnu.ai.mit.edu)
11720
11721 * Makefile.in (local-distclean): Also remove mh-frag mt-frag.
11722
11723 * configure.in (skipdirs): Add target-librx for Linux.
11724 (alpha-*-linux*): Use config/mh-elfalphapic and config/mt-elfalphapic.
11725
11726 Wed Sep 10 21:29:54 1997 Jeffrey A Law (law@cygnus.com)
11727
11728 * Makefile.in (bootstrap): New target.
11729
11730 Wed Sep 10 15:19:22 1997 Jeffrey A Law (law@cygnus.com)
11731
11732 * config.sub: Accept 'amigados' for backward compatability.
11733
11734 Mon Sep 8 20:46:20 1997 Ian Lance Taylor <ian@cygnus.com>
11735
11736 * config.guess: Merge with FSF.
11737
11738 Sun Sep 7 23:18:32 1997 Fred Fish <fnf@ninemoons.com>
11739
11740 * config.sub: Change 'amigados' to 'amigaos' to match current usage.
11741
11742 Sun Sep 7 15:55:28 1997 Gavin Koch <gavin@cygnus.com>
11743
11744 * config.sub: Add "marketing-names" patch.
11745
11746 Fri Sep 5 16:11:28 1997 Joel Sherrill (joel@OARcorp.com)
11747
11748 * configure.in (*-*-rtems*): Do not build libgloss for rtems.
11749
11750 Fri Sep 5 12:27:17 1997 Jeffrey A Law (law@cygnus.com)
11751
11752 * config.sub: Handle v850-elf.
11753
11754 Wed Sep 3 22:01:58 1997 Fred Fish <fnf@ninemoons.com>
11755
11756 * .cvsignore (*-install): Remove.
11757
11758 Wed Sep 3 12:15:24 1997 Chris Provenzano <proven@cygnus.com>
11759
11760 * ltconfig: Set CONFIG_SHELL in libtool.
11761 * ltmain.sh: Use CONFIG_SHELL instead of /bin/sh
11762
11763 Mon Sep 1 16:45:44 1997 Jim Wilson <wilson@cygnus.com>
11764
11765 * configure.in (target_subdir): Set to libraries if enable_multilib.
11766
11767 Wed Aug 27 16:15:11 1997 Jim Wilson <wilson@cygnus.com>
11768
11769 * config.guess: Update from gcc directory.
11770
11771 Tue Aug 26 16:46:46 1997 Andrew Cagney <cagney@b1.cygnus.com>
11772
11773 * Makefile.in (all-sim): Depends on all-readline.
11774
11775 Wed Aug 20 19:57:37 1997 Jason Merrill <jason@yorick.cygnus.com>
11776
11777 * Makefile.in (BISON, YACC): Use $$s.
11778 (all-bison): Depend on all-texinfo.
11779
11780 Tue Aug 19 01:41:32 1997 Jason Merrill <jason@yorick.cygnus.com>
11781
11782 * Makefile.in (BISON): Add -L flag.
11783 (YACC): Likewise.
11784
11785 Mon Aug 18 11:30:50 1997 Nick Clifton <nickc@cygnus.com>
11786
11787 * configure.in (noconfigdirs): Add support for v850e target.
11788
11789 * config.sub (maybe_os): Add support for v850e target.
11790
11791 Mon Aug 18 11:30:50 1997 Nick Clifton <nickc@cygnus.com>
11792
11793 * configure.in (noconfigdirs): Add support for v850ea target.
11794
11795 * config.sub (maybe_os): Add support for v850ea target.
11796
11797 Mon Aug 18 09:24:06 1997 Gavin Koch <gavin@cygnus.com>
11798
11799 * config.sub: Add mipstx39. Delete r3900.
11800
11801 Mon Aug 18 17:20:10 1997 Jason Molenda (crash@godzilla.cygnus.co.jp)
11802
11803 * Makefile.in (all-autoconf): Depends on all-texinfo.
11804
11805 Fri Aug 15 23:09:26 1997 Michael Meissner <meissner@cygnus.com>
11806
11807 * config-ml.in ({powerpc,rs6000}*-*-*): Update to current AIX and
11808 eabi targets.
11809
11810 Thu Aug 14 14:42:17 1997 Ian Lance Taylor <ian@cygnus.com>
11811
11812 * configure: Get CFLAGS and CXXFLAGS from Makefile, if possible.
11813
11814 * configure: When handling a Canadian Cross, handle YACC as well as
11815 BISON. Just set BISON to bison. When setting YACC, prefer bison.
11816 * Makefile.in (all-bison): Depend upon all-texinfo.
11817
11818 Tue Aug 12 20:09:48 1997 Jason Merrill <jason@yorick.cygnus.com>
11819
11820 * Makefile.in (BISON): bison, not byacc or bison -y.
11821 (YACC): bison -y or byacc or yacc.
11822 (various): Add *-bison as appropriate.
11823 (taz): No need to mess with BISON anymore.
11824
11825 Tue Aug 12 22:33:08 1997 Ian Lance Taylor <ian@cygnus.com>
11826
11827 * configure: If OSTYPE matches *win32*, try to find a good value for
11828 CONFIG_SHELL.
11829
11830 Sun Aug 10 14:41:11 1997 Ian Lance Taylor <ian@cygnus.com>
11831
11832 * Makefile.in (taz): Get the version number from AM_INIT_AUTOMAKE in
11833 configure.in if it is present.
11834
11835 Sat Aug 9 00:58:01 1997 Ian Lance Taylor <ian@cygnus.com>
11836
11837 * Makefile.in (LD_FOR_TARGET): Change ld.new to ld-new.
11838
11839 Fri Aug 8 16:30:13 1997 Doug Evans <dje@canuck.cygnus.com>
11840
11841 * config.sub: Recognize `arc' cpu.
11842 * configure.in: Likewise.
11843 * config-ml.in: Likewise.
11844
11845 Thu Aug 7 11:02:34 1997 Ian Lance Taylor <ian@cygnus.com>
11846
11847 * Makefile.in ($(INSTALL_X11_MODULES)): Depend upon installdirs.
11848
11849 Wed Aug 6 16:27:29 1997 Chris Provenzano <proven@cygnus.com>
11850
11851 * configure: Changed sed delimiter from ':' to '|' when
11852 attempting to substitute ${config_shell} for SHELL. On
11853 NT ${config_shell} may contain a ':' in it.
11854
11855 Wed Aug 6 12:29:05 1997 Jason Merrill <jason@yorick.cygnus.com>
11856
11857 * Makefile.in (EXTRA_GCC_FLAGS): Fix for non-bash shells.
11858
11859 Wed Aug 6 00:42:35 1997 Ian Lance Taylor <ian@cygnus.com>
11860
11861 * Makefile.in (AS_FOR_TARGET): Change as.new to as-new.
11862
11863 Tue Aug 5 14:08:51 1997 Ian Lance Taylor <ian@cygnus.com>
11864
11865 * Makefile.in (NM_FOR_TARGET): Change nm.new to nm-new.
11866
11867 * ylwrap: If the program is a relative path, force it to be
11868 absolute.
11869
11870 Tue Aug 5 12:12:44 1997 Andrew Cagney <cagney@b1.cygnus.com>
11871
11872 * configure (tooldir): Set BISON to `bison -y' and not just bison.
11873
11874 Mon Aug 4 22:59:02 1997 Andrew Cagney <cagney@b1.cygnus.com>
11875
11876 * Makefile.in (CC_FOR_TARGET): When winsup/Makefile present,
11877 correctly specify the target build directory $(TARGET_SUBDIR)/winsup
11878 for libraries.
11879
11880 Mon Aug 4 12:40:24 1997 Jason Merrill <jason@yorick.cygnus.com>
11881
11882 * Makefile.in (EXTRA_GCC_FLAGS): Fix handling of macros with values
11883 separated by spaces.
11884
11885 Thu Jul 31 19:49:49 1997 Ian Lance Taylor <ian@cygnus.com>
11886
11887 * ylwrap: New file.
11888 * Makefile.in (DEVO_SUPPORT): Add ylwrap.
11889
11890 * ltmain.sh: Handle /bin/sh at start of install program.
11891
11892 * Makefile.in (DEVO_SUPPORT): Add ltconfig, ltmain.sh, and missing.
11893
11894 * ltconfig, ltmain.sh: New files, from libtool 1.0.
11895 * missing: New file, from automake 1.2.
11896
11897 Thu Jul 24 12:57:56 1997 Ian Lance Taylor <ian@cygnus.com>
11898
11899 * Makefile.in: Treat tix like tk, putting it in X11_MODULES. Add
11900 check-tk to CHECK_X11_MODULES.
11901
11902 Wed Jul 23 17:03:29 1997 Ian Lance Taylor <ian@cygnus.com>
11903
11904 * config.sub: Merge with FSF.
11905
11906 Tue Jul 22 19:08:29 1997 Ian Lance Taylor <ian@cygnus.com>
11907
11908 * config.guess: Merge with FSF.
11909
11910 Tue Jul 22 14:50:42 1997 Robert Hoehne <robert.hoehne@Mathematik.TU-Chemnitz.DE>
11911
11912 * configure: Treat msdosdjgpp like go32.
11913 * configure.in: Likewise. Don't remove gprof for go32.
11914
11915 * configure: Change Makefile.tem2 to Makefile.tm2.
11916
11917 Mon Jul 21 10:31:26 1997 Stephen Peters <speters@cygnus.com>
11918
11919 * configure.in (noconfigdirs): For alpha-dec-osf*, don't ignore grep.
11920
11921 Tue Jul 15 14:33:03 1997 Brendan Kehoe <brendan@lisa.cygnus.com>
11922
11923 * install-sh (chmodcmd): Set to null if the DST directory already
11924 exists. Same as Nov 11th change.
11925
11926 Mon Jul 14 11:01:15 1997 Martin M. Hunt <hunt@cygnus.com>
11927
11928 * configure (GDB_TK): Needs itcl and tix.
11929
11930 Mon Jul 14 00:32:10 1997 Jason Merrill <jason@yorick.cygnus.com>
11931
11932 * config.guess: Update from FSF.
11933
11934 Fri Jul 11 11:57:11 1997 Martin M. Hunt <hunt@cygnus.com>
11935
11936 * Makefile.in (GDB_TK): Depend on itcl and tix.
11937
11938 Fri Jul 4 13:25:31 1997 Ian Lance Taylor <ian@cygnus.com>
11939
11940 * Makefile.in (INSTALL_PROGRAM_ARGS): New variable.
11941 (INSTALL_PROGRAM): Use $(INSTALL_PROGRAM_ARGS).
11942 (INSTALL_SCRIPT): New variable.
11943 (BASE_FLAGS_TO_PASS): Pass down INSTALL_SCRIPT.
11944 * configure.in: If host is *-*-cygwin32*, set INSTALL_PROGRAM_ARGS
11945 to -x.
11946 * install-sh: Add support for -x option.
11947
11948 Mon Jun 30 15:51:30 1997 Ian Lance Taylor <ian@cygnus.com>
11949
11950 * configure.in, Makefile.in: Treat tix like itcl.
11951
11952 Thu Jun 26 13:59:19 1997 Ian Lance Taylor <ian@cygnus.com>
11953
11954 * Makefile.in (WINDRES): New variable.
11955 (WINDRES_FOR_TARGET): New variable.
11956 (BASE_FLAGS_TO_PASS): Add WINDRES_FOR_TARGET.
11957 (EXTRA_HOST_FLAGS): Add WINDRES.
11958 (EXTRA_TARGET_FLAGS): Add WINDRES.
11959 (EXTRA_GCC_FLAGS): Add WINDRES.
11960 ($(DO_X)): Pass down WINDRES.
11961 ($(CONFIGURE_TARGET_MODULES)): Set WINDRES when configuring.
11962 * configure: Treat WINDRES like DLLTOOL, and WINDRES_FOR_TARGET like
11963 DLLTOOL_FOR_TARGET.
11964
11965 Wed Jun 25 15:01:26 1997 Felix Lee <flee@cygnus.com>
11966
11967 * configure.in: configure sim before gdb for win32-x-ppc
11968
11969 Wed Jun 25 12:18:54 1997 Brendan Kehoe <brendan@lisa.cygnus.com>
11970
11971 Move gperf into the toplevel, from libg++.
11972 * configure.in (target_tools): Add target-gperf.
11973 (native_only): Add target-gperf.
11974 * Makefile.in (all-target-gperf): New target, depend on
11975 all-target-libg++.
11976 (configure-target-gperf): Empty rule.
11977 (ALL_TARGET_MODULES): Add all-target-gperf.
11978 (CONFIGURE_TARGET_MODULES): Add configure-target-gperf.
11979 (CHECK_TARGET_MODULES): Add check-target-gperf.
11980 (INSTALL_TARGET_MODULES): Add install-target-gperf.
11981 (CLEAN_TARGET_MODULES): Add clean-target-gperf.
11982
11983 Mon Jun 23 10:51:53 1997 Jeffrey A Law (law@cygnus.com)
11984
11985 * config.sub (mn10200): Recognize new basic machine.
11986
11987 Thu Jun 19 14:16:42 1997 Brendan Kehoe <brendan@lisa.cygnus.com>
11988
11989 * configure.in: Don't set ENABLE_MULTILIB, so we'll be passing
11990 --enable-multilib down to subdirs; setting TARGET_SUBDIR was enough.
11991
11992 Tue Jun 17 15:31:20 1997 Brendan Kehoe <brendan@lisa.cygnus.com>
11993
11994 * configure.in: If we're building mips-sgi-irix6* native, turn on
11995 ENABLE_MULTILIB and set TARGET_SUBDIR.
11996
11997 Tue Jun 17 12:20:59 1997 Tom Tromey <tromey@cygnus.com>
11998
11999 * Makefile.in (all-sn): Depend on all-grep.
12000
12001 Mon Jun 16 11:11:10 1997 Ian Lance Taylor <ian@cygnus.com>
12002
12003 * configure.in: Use mh-ppcpic and mt-ppcpic for powerpc*-* targets.
12004
12005 * configure: Set CFLAGS and CXXFLAGS, and substitute them into
12006 Makefile. From Jeff Makey <jeff@cts.com>.
12007 * Makefile.in: Add comment for CFLAGS and CXXFLAGS.
12008
12009 * Makefile.in (DISTBISONFILES): Remove.
12010 (taz): Don't futz with DISTBISONFILES. Change BISON to use
12011 $(DEFAULT_YACC).
12012
12013 * configure.in: Build itl, db, sn, etc., when building for native
12014 cygwin32.
12015
12016 * Makefile.in (LD): New variable.
12017 (EXTRA_HOST_FLAGS): Pass down LD.
12018 ($(DO_X)): Likewise.
12019
12020 Mon Jun 16 11:10:35 1997 Philip Blundell <Philip.Blundell@pobox.com>
12021
12022 * Makefile.in (INSTALL): Use $(SHELL) when executing install-sh.
12023
12024 Fri Jun 13 10:22:56 1997 Bob Manson <manson@charmed.cygnus.com>
12025
12026 * configure.in (targargs): Strip out any supplied --build argument
12027 before adding our own. Always add --build.
12028
12029 Thu Jun 12 21:12:28 1997 Bob Manson <manson@charmed.cygnus.com>
12030
12031 * configure.in (targargs): Pass --build if we're doing
12032 a cross-compile.
12033
12034 Fri Jun 6 21:38:40 1997 Rob Savoye <rob@chinadoll.cygnus.com>
12035
12036 * configure: Use '|' instead of ":" as the separator in
12037 sed. Otherwise sed chokes on NT path names with drive
12038 designators. Also look for "?:*" as the leading characters in an
12039 absolute pathname.
12040
12041 Mon Jun 2 13:05:20 1997 Gavin Koch <gavin@cygnus.com>
12042
12043 * config.sub: Support for r3900.
12044
12045 Wed May 21 17:33:31 1997 Ian Lance Taylor <ian@cygnus.com>
12046
12047 * configure.in: Use install-sh, not install.sh.
12048
12049 Wed May 14 16:06:51 1997 Ian Lance Taylor <ian@cygnus.com>
12050
12051 * Makefile.in (taz): Improve check for BISON so it doesn't try to
12052 apply it twice.
12053
12054 Fri May 9 17:22:05 1997 Ian Lance Taylor <ian@cygnus.com>
12055
12056 * Makefile.in (INSTALL_MODULES): Put install-opcodes before
12057 install-binutils.
12058
12059 Thu May 8 17:29:50 1997 Ian Lance Taylor <ian@cygnus.com>
12060
12061 * Makefile.in: Add automake targets.
12062 * configure.in (host_tools): Add automake.
12063
12064 Tue May 6 15:49:52 1997 Ian Lance Taylor <ian@cygnus.com>
12065
12066 * configure: Default CXX to c++, not gcc.
12067 * Makefile.in (CXX): Set to c++, not gcc.
12068 (CXX_FOR_TARGET): When cross, transform c++, not gcc.
12069
12070 Thu May 1 10:11:43 1997 Geoffrey Noer <noer@cygnus.com>
12071
12072 * install-sh: try appending a .exe if source file doesn't
12073 exist
12074
12075 Wed Apr 30 12:05:36 1997 Jason Merrill <jason@yorick.cygnus.com>
12076
12077 * configure.in: Turn on multilib by default.
12078 (cross_only): Remove target-libiberty.
12079
12080 * Makefile.in (all-gcc): Don't depend on libiberty.
12081
12082 Mon Apr 28 18:39:45 1997 Michael Snyder <msnyder@cleaver.cygnus.com>
12083
12084 * config.guess: improve algorithm for recognizing Gnu Hurd x86.
12085
12086 Thu Apr 24 19:30:07 1997 Ian Lance Taylor <ian@cygnus.com>
12087
12088 * Makefile.in (DEVO_SUPPORT): Add mpw-install.
12089 (DISTBISONFILES): Add ld/Makefile.in
12090
12091 Tue Apr 22 17:17:28 1997 Geoffrey Noer <noer@pizza.cygnus.com>
12092
12093 * configure.in: if target is cygwin32 but host isn't cygwin32,
12094 don't configure gdb tcl tk expect, not just gdb.
12095
12096 Mon Apr 21 13:33:39 1997 Tom Tromey <tromey@cygnus.com>
12097
12098 * configure.in: Added gnuserv everywhere sn appears.
12099
12100 * Makefile.in (ALL_MODULES): Added all-gnuserv.
12101 (CROSS_CHECK_MODULES): Added check-gnuserv.
12102 (INSTALL_MODULES): Added install-gnuserv.
12103 (CLEAN_MODULES): Added clean-gnuserv.
12104 (all-gnuserv): New target.
12105
12106 Thu Apr 17 13:57:06 1997 Per Fogelstrom <pefo@openbsd.org>
12107
12108 * config.guess: Fixes for MIPS OpenBSD systems.
12109
12110 Tue Apr 15 12:21:07 1997 Ian Lance Taylor <ian@cygnus.com>
12111
12112 * Makefile.in (INSTALL_XFORM): Remove.
12113 (BASE_FLAGS_TO_PASS): Remove INSTALL_XFORM.
12114
12115 * mkinstalldirs: New file, copied from automake.
12116 * Makefile.in (installdirs): Rename from install-dirs. Use
12117 mkinstalldirs. Change all users.
12118 (DEVO_SUPPORT): Add mkinstalldirs.
12119
12120 Mon Apr 14 11:21:38 1997 Ian Lance Taylor <ian@cygnus.com>
12121
12122 * install-sh: Rename from install.sh.
12123 * Makefile.in (INSTALL): Change install.sh to install-sh.
12124 (DEVO_SUPPORT): Likewise.
12125
12126 * configure: Use ${config_shell} with ${moveifchange}. From Thomas
12127 Graichen <graichen@rzpd.de>.
12128
12129 Fri Apr 11 16:37:10 1997 Niklas Hallqvist <niklas@appli.se>
12130
12131 * config.guess: Recognize OpenBSD systems correctly.
12132
12133 Fri Apr 11 17:07:04 1997 Jason Molenda (crash@godzilla.cygnus.co.jp)
12134
12135 * README, Makefile.in (ETC_SUPPORT): Remove references to
12136 cfg-paper*, configure.{texi,man,info*}._
12137
12138 Sun Apr 6 18:47:57 1997 Andrew Cagney <cagney@kremvax.cygnus.com>
12139
12140 * Makefile.in (all.normal): Ensure that gcc is built after all
12141 the x11 - ie gdb - targets.
12142
12143 Tue Apr 1 16:28:50 1997 Klaus Kaempf <kkaempf@progis.de>
12144
12145 * makefile.vms: Don't run conf-a-gas.
12146
12147 Mon Mar 31 16:26:55 1997 Joel Sherrill <joel@oarcorp.com>
12148
12149 * configure.in (hppa1.1-*-rtems*): New target, like hppa-*-*elf*.
12150
12151 Sun Mar 30 12:38:27 1997 Fred Fish <fnf@cygnus.com>
12152
12153 * configure.in: Remove noconfigdirs case since gdb also
12154 configures and builds for tic80-coff.
12155
12156 Fri Mar 28 18:28:52 1997 Ian Lance Taylor <ian@cygnus.com>
12157
12158 * configure: Set cache_file to config.cache.
12159 * Makefile.in (local-distclean): Remove config.cache.
12160
12161 Wed Mar 26 18:49:39 1997 Ian Lance Taylor <ian@cygnus.com>
12162
12163 * COPYING: Update FSF address.
12164
12165 Wed Mar 26 10:38:25 1997 Michael Meissner <meissner@cygnus.com>
12166
12167 * configure.in (tic80-*-*): Remove G++ libraries and libgloss from
12168 noconfigdirs.
12169
12170 Mon Mar 24 15:02:39 1997 Ian Lance Taylor <ian@cygnus.com>
12171
12172 * Makefile.in (install-dirs): Don't crash if prefix, and hence
12173 MAKEDIRS, is empty.
12174
12175 Mon Mar 24 12:40:55 1997 Doug Evans <dje@canuck.cygnus.com>
12176
12177 * config.sub: Tweak mn10300 entry.
12178
12179 Fri Mar 21 15:35:27 1997 Michael Meissner <meissner@cygnus.com>
12180
12181 * configure.in (host_tools): Put sim before gdb, so gdb's
12182 configure.tgt can determine if the simulator was configured.
12183
12184 Sun Mar 16 16:07:08 1997 Fred Fish <fnf@cygnus.com>
12185
12186 * config.sub: Move BeOS $os case to be with other Cygnus
12187 local cases.
12188
12189 Sun Mar 16 01:34:55 1997 Martin Hunt <hunt@cygnus.com>
12190
12191 * config.sub: Remove misplaced comment that broke Linux.
12192
12193 Sat Mar 15 22:50:15 1997 Fred Fish <fnf@cygnus.com>
12194
12195 * config.sub: Add BeOS support.
12196
12197 Mon Mar 10 13:30:11 1997 Tom Tromey <tromey@cygnus.com>
12198
12199 * Makefile.in (CHECK_X11_MODULES): Don't run check-tk.
12200
12201 Wed Mar 5 12:09:29 1997 Martin <hunt@cygnus.com>
12202
12203 * configure.in (noconfigdirs): Remove tcl and tk from
12204 noconfigdirs for cygwin32 builds.
12205
12206 Fri Feb 28 18:20:15 1997 Fred Fish <fnf@cygnus.com>
12207
12208 * configure.in (tic80-*-*): Remove ld from noconfigdirs.
12209
12210 Thu Feb 27 14:57:26 1997 Ken Raeburn <raeburn@cygnus.com>
12211
12212 * Makefile.in (GAS_SUPPORT_DIRS, BINUTILS_SUPPORT_DIRS): Remove
12213 make-all.com, use makefile.vms instead.
12214
12215 Tue Feb 25 18:46:14 1997 Stan Shebs <shebs@andros.cygnus.com>
12216
12217 * config.sub: Accept -lnews*.
12218
12219 Tue Feb 25 13:19:14 1997 Andrew Cagney <cagney@kremvax.tpgi.com.au>
12220
12221 * configure.in (noconfigdirs): Disable target-newlib,
12222 target-examples and target-libiberty for d30v.
12223
12224 Fri Feb 21 17:56:25 1997 Martin M. Hunt <hunt@pizza.cygnus.com>
12225
12226 * configure.in (noconfigdirs): Enable ld for d30v.
12227
12228 Fri Feb 21 20:58:51 1997 Michael Meissner <meissner@cygnus.com>
12229
12230 * configure.in (tic80-*-*): Build compiler.
12231
12232 Sun Feb 16 15:41:09 1997 Andrew Cagney <cagney@critters.cygnus.com>
12233
12234 * configure.in (d30v-*): Remove sim directory from list of
12235 unsupported d30v directories
12236
12237 Tue Feb 18 17:32:42 1997 Martin M. Hunt <hunt@pizza.cygnus.com>
12238
12239 * config.sub, configure.in: Add d30v target cpu.
12240
12241 Thu Feb 13 22:04:44 1997 Klaus Kaempf <kkaempf@progis.de>
12242
12243 * makefile.vms: New file.
12244 * make-all.com: Remove.
12245
12246 Wed Feb 12 12:54:18 1997 Jim Wilson <wilson@cygnus.com>
12247
12248 * Makefile.in (EXTRA_GCC_FLAGS): Add LIBGCC2_DEBUG_CFLAGS.
12249
12250 Sat Feb 8 20:36:49 1997 Michael Meissner <meissner@cygnus.com>
12251
12252 * Makefile.in (all-itcl): The rule is all-itcl, not all-tcl.
12253
12254 Tue Feb 4 11:39:29 1997 Tom Tromey <tromey@cygnus.com>
12255
12256 * Makefile.in (ALL_MODULES): Added all-db.
12257 (CROSS_CHECK_MODULES): Addec check-db.
12258 (INSTALL_MODULES): Added install-db.
12259 (CLEAN_MODULES): Added clean-db.
12260
12261 Mon Feb 3 13:29:36 1997 Ian Lance Taylor <ian@cygnus.com>
12262
12263 * config.guess: Merge with latest FSF sources.
12264
12265 Tue Jan 28 09:20:37 1997 Tom Tromey <tromey@cygnus.com>
12266
12267 * Makefile.in (ALL_MODULES): Added all-itcl.
12268 (CROSS_CHECK_MODULES): Added check-itcl.
12269 (INSTALL_MODULES): Added install-itcl.
12270 (CLEAN_MODULES): Added clean-itcl.
12271
12272 Thu Jan 23 01:44:27 1997 Geoffrey Noer <noer@cygnus.com>
12273
12274 * configure.in: build gdb for mn10200
12275
12276 Fri Jan 17 15:32:15 1997 Doug Evans <dje@canuck.cygnus.com>
12277
12278 * Makefile.in (all-target-winsup): Depend on all-target-libio.
12279
12280 Mon Jan 13 22:46:54 1997 Michael Meissner <meissner@tiktok.cygnus.com>
12281
12282 * configure.in (tic80-*-*): Turn off most targets right now.
12283
12284 Fri Jan 3 16:04:03 1997 Ian Lance Taylor <ian@cygnus.com>
12285
12286 * Makefile.in (MAKEINFO): Check for the existence of the Makefile,
12287 rather than the makeinfo program.
12288 (do-info): Depend upon all-texinfo.
12289
12290 Tue Dec 31 16:00:31 1996 Ian Lance Taylor <ian@cygnus.com>
12291
12292 * configure.in: Remove uses of config/mh-linux.
12293
12294 * config.sub, config.guess: Merge with latest FSF sources.
12295
12296 Fri Dec 27 23:04:33 1996 Fred Fish <fnf@cygnus.com>
12297
12298 * config.sub (case $basic_machine): Add tic80 entries.
12299
12300 Fri Dec 27 12:07:59 1996 Ian Lance Taylor <ian@cygnus.com>
12301
12302 * config.sub, config.guess: Merge with latest FSF sources.
12303
12304 Wed Dec 18 22:46:39 1996 Stan Shebs <shebs@andros.cygnus.com>
12305
12306 * mpw-build.in: Build ld before gcc, use NewFolderRecursive.
12307 * mpw-config.in: Test for NewFolderRecursive.
12308 * mpw-install: Use symbolic name for startup filename.
12309 * mpw-README: Add various additional details.
12310
12311 Wed Dec 18 13:11:46 1996 Jim Wilson <wilson@cygnus.com>
12312
12313 * configure.in (mips*-sgi-irix6*): Remove binutils from noconfigdirs.
12314
12315 Wed Dec 18 10:29:31 1996 Jeffrey A Law (law@cygnus.com)
12316
12317 * configure.in: Do build gcc and the target libraries for
12318 the mn10200.
12319
12320 Wed Dec 4 16:53:05 1996 Geoffrey Noer <noer@cygnus.com>
12321
12322 * configure.in: don't avoid building gdb for mn10300 any more
12323 * Makefile.in: double-quote GCC_FOR_TARGET line in EXTRA_GCC_FLAGS
12324 instead of single-quoting it.
12325
12326 Tue Dec 3 23:26:50 1996 Jason Merrill <jason@yorick.cygnus.com>
12327
12328 * configure.in: Don't use --with-stabs on IRIX 6.
12329
12330 Tue Dec 3 09:05:25 1996 Doug Evans <dje@canuck.cygnus.com>
12331
12332 * configure.in (m32r): Build gdb, libg++ now.
12333
12334 Sun Dec 1 00:18:59 1996 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
12335
12336 * configure.in (mips*-sgi-irix6*): Remove gdb and related
12337 directories from noconfigdirs.
12338
12339 Tue Nov 26 11:45:33 1996 Kim Knuttila <krk@cygnus.com>
12340
12341 * config.sub (basic_machine): added mips16 configuration
12342
12343 Sat Nov 23 19:26:22 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12344
12345 * config.sub: Handle d10v-unknown.
12346
12347 Sat Nov 23 10:23:01 1996 Gavin Koch <gavin@cygnus.com>
12348
12349 * config.sub: Handle v850-unknown.
12350
12351 Thu Nov 21 16:19:44 1996 Geoffrey Noer <noer@cygnus.com>
12352
12353 * Makefile.in: add findutils
12354 * configure.in: add findutils to list of host_tools
12355
12356 Wed Nov 20 10:09:01 1996 Jeffrey A Law (law@cygnus.com)
12357
12358 * config.sub: Handle mn10200 and mn10300.
12359
12360 Tue Nov 19 16:35:14 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12361
12362 * configure.in (d10v-*): Do not build librx.
12363
12364 Mon Nov 18 13:28:41 1996 Jeffrey A Law (law@cygnus.com)
12365
12366 * configure.in (mn10300): Build everything except gdb & libgloss.
12367
12368 Wed Nov 13 14:59:46 1996 Per Bothner <bothner@deneb.cygnus.com>
12369
12370 * config.guess: Patch for Dansk Data Elektronik servers,
12371 from Niels Skou Olsen <nso@dde.dk>.
12372
12373 For ncr, use /bin/uname rather than uname, since GNU uname does not
12374 support -p. Suggested by Mark Mitchell <mmitchell@usa.net>.
12375
12376 Patch for MIPS R4000 running System V,
12377 from Eric S. Raymond <esr@snark.thyrsus.com>.
12378
12379 Fix thinko for nextstep.
12380
12381 Patch for OSF1 in i?86, from Dan Murphy <dlm@osf.org> via Harlan Stenn.
12382
12383 Sat Jun 24 18:58:17 1995 Morten Welinder <terra+@cs.cmu.edu>
12384 * config.guess: Guess mips-dec-mach_bsd4.3.
12385
12386 Thu Oct 10 04:07:04 1996 Harlan Stenn <harlan@pfcs.com>
12387 * config.guess (i?86-ncr-sysv*): Emit just enough of the minor
12388 release numbers.
12389 * config.guess (mips-mips-riscos*): Emit just enough of the
12390 release number.
12391
12392 Tue Oct 8 10:37:22 1996 Frank Vance <fvance@waii.com>
12393 * config.guess (sparc-auspex-sunos*): Added.
12394 (f300-fujitsu-*): Added.
12395
12396 Wed Sep 25 22:00:35 1996 Jeff Woolsey <woolsey@jlw.com>
12397 * config.guess: Recognize a Tadpole as a sparc.
12398
12399 Wed Nov 13 00:53:09 1996 David J. MacKenzie <djm@churchy.gnu.ai.mit.edu>
12400
12401 * config.guess: Don't assume that NextStep version is either 2 or
12402 3. NextStep 4 (aka OpenStep 4) has come out now.
12403
12404 Mon Nov 11 23:52:03 1996 David J. MacKenzie <djm@churchy.gnu.ai.mit.edu>
12405
12406 * config.guess: Support Cray T90 that reports itself as "CRAY TS".
12407 From Rik Faith <faith@cs.unc.edu>.
12408
12409 Fri Nov 8 11:34:58 1996 David J. MacKenzie <djm@geech.gnu.ai.mit.edu>
12410
12411 * config.sub: Contributions from bug-gnu-utils to:
12412 Support plain "hppa" (no version given) architecture, reported by
12413 OpenStep.
12414 OpenBSD like NetBSD.
12415 LynxOs is not a hardware supplier.
12416
12417 * config.guess: Contributions from bug-gnu-utils to add support for:
12418 OpenBSD like NetBSD.
12419 Stratus systems.
12420 More Pyramid systems.
12421 i[n>4]86 Intel chips.
12422 M680[n>4]0 Motorola chips.
12423 Use unknown instead of lynx for hardware manufacturer.
12424
12425 Mon Nov 11 10:09:08 1996 Brendan Kehoe <brendan@lisa.cygnus.com>
12426
12427 * install.sh (chmodcmd): Set to null if the DST directory already
12428 exists.
12429
12430 Mon Nov 11 10:43:41 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12431
12432 * configure.in (powerpc*-{eabi,elf,linux,rtem,sysv,solaris}*): Do
12433 not use mt-ppc target Makefile fragment any more.
12434
12435 Sun Nov 3 19:17:07 1996 Stu Grossman (grossman@critters.cygnus.com)
12436
12437 * configure.in (*-*-windows): Exclude everything but those dirs
12438 needed to build windows.
12439
12440 Tue Oct 29 16:41:31 1996 Doug Evans <dje@canuck.cygnus.com>
12441
12442 * Makefile.in (all-target-winsup): Depend on all-target-librx.
12443
12444 Mon Oct 28 17:32:46 1996 Stu Grossman (grossman@critters.cygnus.com)
12445
12446 * configure.in: Exclude mmalloc from i386-windows.
12447
12448 Thu Oct 24 09:22:46 1996 Stu Grossman (grossman@critters.cygnus.com)
12449
12450 * Undo my previous change.
12451
12452 Thu Oct 24 12:12:04 1996 Ian Lance Taylor <ian@cygnus.com>
12453
12454 * Makefile.in (EXTRA_GCC_FLAGS): Pass down GCC_FOR_TARGET
12455 unconditionally.
12456 (MAKEOVERRIDES): Define (revert this part of October 18 change).
12457
12458 Thu Oct 24 09:02:07 1996 Stu Grossman (grossman@critters.cygnus.com)
12459
12460 * Makefile.in (FLAGS_TO_PASS): Add $(HOST_FLAGS) to allow the
12461 host to add it's own flags.
12462
12463 Tue Oct 22 15:20:26 1996 Ian Lance Taylor <ian@cygnus.com>
12464
12465 * configure: Handle GCC_FOR_TARGET like CC_FOR_TARGET.
12466
12467 Fri Oct 18 13:37:13 1996 Ian Lance Taylor <ian@cygnus.com>
12468
12469 * Makefile.in (CC_FOR_TARGET): Check for xgcc, not Makefile.
12470 (CXX_FOR_TARGET): Likewise.
12471 (GCC_FOR_TARGET): Define.
12472 (BASE_FLAGS_TO_PASS): Remove GCC_FOR_TARGET.
12473 (EXTRA_GCC_FLAGS): Define GCC_FOR_TARGET based on whether
12474 CC_FOR_TARGET was specified on the command line.
12475 (MAKEOVERRIDES): Don't define.
12476
12477 Thu Oct 17 10:27:56 1996 Doug Evans <dje@canuck.cygnus.com>
12478
12479 * configure.in (m32r): Fix spelling of libg++ libs.
12480
12481 Thu Oct 10 10:37:17 1996 Stan Shebs <shebs@andros.cygnus.com>
12482
12483 * config.sub (-apple*): Remove, now redundant.
12484
12485 Thu Oct 10 12:30:54 1996 Ian Lance Taylor <ian@cygnus.com>
12486
12487 * configure: Don't get confused by CPU-VENDOR-linux-gnu.
12488
12489 * configure: Rework yesterday's sed script patch.
12490
12491 * config.sub: Merge with FSF.
12492
12493 Wed Oct 9 17:24:59 1996 Per Bothner <bothner@deneb.cygnus.com>
12494
12495 * config.guess: Merge from FSF.
12496
12497 1996-09-12 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
12498 * config.guess: Use pc instead of unknown, for pc clone systems.
12499 Change linux to linux-gnu.
12500
12501 Mon Jul 15 23:51:11 1996 Karl Heuer <kwzh@gnu.ai.mit.edu>
12502 * config.guess: Avoid non-portable tr syntax.
12503
12504 Wed Oct 9 06:06:46 1996 Jeffrey A Law (law@cygnus.com)
12505
12506 * test-build.mk (HOLES): Add "xargs" for gdb.
12507
12508 * configure: Avoid hpux10.20 sed bug.
12509
12510 Tue Oct 8 08:32:48 1996 Stu Grossman (grossman@critters.cygnus.com)
12511
12512 * configure.in: Add support for windows host
12513 (that is a build done under the Microsoft build environment).
12514
12515 Tue Oct 8 10:39:08 1996 Ian Lance Taylor <ian@cygnus.com>
12516
12517 * Makefile.in: Replace all uses of srcroot with s, to shrink
12518 command line lengths.
12519
12520 Patches from Geoffrey Noer <noer@cygnus.com>:
12521 * configure.in: If configuring for newlib, pass --with-newlib to
12522 subdirectories.
12523 * Makefile.in (CC_FOR_TARGET): If winsup/Makefile exists, pass a
12524 -Bnewlib/ and -Lwinsup to gcc.
12525 (CXX_FOR_TARGET): Likewise.
12526
12527 Mon Oct 7 10:59:35 1996 Ian Lance Taylor <ian@cygnus.com>
12528
12529 * Makefile.in (ETC_SUPPORT): Add configure.
12530
12531 Fri Oct 4 12:22:58 1996 Angela Marie Thomas (angela@cygnus.com)
12532
12533 * configure.in: Use config/mh-dgux386 for i[345]86-dg-dgux
12534 host configuration file.
12535
12536 Thu Oct 3 09:28:25 1996 Jeffrey A Law (law@cygnus.com)
12537
12538 * configure.in: Break mn10x00 support into separate
12539 mn10200 and mn10300 configurations.
12540 * config.sub: Likewise.
12541
12542 Wed Oct 2 22:27:52 1996 Jeffrey A Law (law@cygnus.com)
12543
12544 * configure.in: Add lots of stuff to noconfigdirs for
12545 the mn10x00 targets.
12546
12547 * config.sub, configure.in: Add mn10x00 support.
12548
12549 Wed Oct 2 15:52:36 1996 Klaus Kaempf <kkaempf@progis.de>
12550
12551 * make-all.com: Call conf-a-gas, not config-a-gas.
12552
12553 Tue Oct 1 01:28:41 1996 James G. Smith <jsmith@cygnus.co.uk>
12554
12555 * configure.in (noconfigdirs): Don't build libgloss for arm-coff
12556 targets.
12557
12558 Mon Sep 30 14:24:01 1996 Stan Shebs <shebs@andros.cygnus.com>
12559
12560 * mpw-README: Add much more detail for native PowerMac.
12561 * mpw-install: New file.
12562 * mpw-configure: Add --norecursion and --help options.
12563 * mpw-config.in: Translate readme and install files when
12564 copying to objdir.
12565 * mpw-build.in: Don't always depend on byacc and flex.
12566 (install-only-top): New action.
12567
12568 Fri Sep 27 17:39:44 1996 Stu Grossman (grossman@critters.cygnus.com)
12569
12570 * configure.in: You can now configure GDB for the v850.
12571
12572 Tue Sep 24 19:05:12 1996 Stan Shebs <shebs@andros.cygnus.com>
12573
12574 * configure.in (noconfigdirs): Don't configure any C++ dirs
12575 if targeting D10V.
12576
12577 Tue Sep 17 12:15:31 1996 Ian Lance Taylor <ian@cygnus.com>
12578
12579 * config.sub: Recognize mips64vr5000.
12580
12581 Mon Sep 16 17:00:52 1996 Ian Lance Taylor <ian@cygnus.com>
12582
12583 * configure.in: Use a single line for host_tools and native_only.
12584
12585 Mon Sep 9 12:21:30 1996 Doug Evans <dje@canuck.cygnus.com>
12586
12587 * config.sub, configure.in: Add entries for m32r.
12588
12589 Thu Sep 5 13:52:47 1996 Tom Tromey <tromey@creche.cygnus.com>
12590
12591 * Makefile.in (inet-install): Don't run install-gzip.
12592
12593 Wed Sep 4 17:26:13 1996 Stu Grossman (grossman@critters.cygnus.com)
12594
12595 * configure.in: Don't config lots of things for *-*-windows*.
12596
12597 Sat Aug 31 11:45:57 1996 Stan Shebs <shebs@andros.cygnus.com>
12598
12599 * mpw-config.in: Test for mpw-true, true, and null-command scripts.
12600 (host_libs, host_tools): Copy from configure.in.
12601 * mpw-configure: Don't complain about directories not found.
12602
12603 Thu Aug 29 16:44:58 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12604
12605 * configure.in (i[345]86): Recognize i686 for pentium pro.
12606 (i[3456]86-*-dgux*): Use config/mh-sysv for the host configuration
12607 file.
12608
12609 * config.guess (i[345]86): Ditto.
12610
12611 Mon Aug 26 18:34:42 1996 Martin M. Hunt <hunt@pizza.cygnus.com>
12612
12613 * configure.in (noconfigdirs): Removed gdb for D10V.
12614
12615 Thu Aug 22 17:13:52 1996 Jeffrey A Law (law@cygnus.com)
12616
12617 * configure.in: Remove ld, target-libio, target-libg++, and
12618 target-libstdc++ from noconfigdirs.
12619
12620 Wed Aug 21 18:56:38 1996 Fred Fish <fnf@cygnus.com>
12621
12622 * configure: Fix three locations where shell scripts were
12623 being run directly rather than with config_shell.
12624
12625 Tue Aug 20 13:08:47 1996 J.T. Conklin <jtc@hippo.cygnus.com>
12626
12627 * configure.in (v850-*-*): Set up initial $noconfigdirs.
12628 * config.sub (basic_machine): Recognize v850.
12629
12630 Thu Aug 15 12:19:33 1996 Stan Shebs <shebs@andros.cygnus.com>
12631
12632 * mpw-configure: Handle multiple enable/disable options and
12633 pass them down recursively, handle -c and -s flags appropriately
12634 depending on choice of compiler, add escape mechanism for
12635 quoted arguments to gC.
12636
12637 Mon Aug 12 13:15:13 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12638
12639 * configure.in (powerpc*-*-*): For eabi, system V.4, Linux, and
12640 solaris targets, use config/mt-ppc to set C{,XX}FLAGS_FOR_TARGETS
12641 so that -mrelocatable-lib and -mno-eabi are used.
12642
12643 * Makefile.in (CONFIGURE_TARGET_MODULES): If target compiler does
12644 not support --print-multi-lib, don't abort.
12645
12646 Thu Aug 8 12:18:59 1996 Klaus Kaempf <kkaempf@progis.de>
12647
12648 * make-all.com: Run config-a-gas.
12649 * setup.com: Don't copy subdirectory files around.
12650
12651 Tue Jul 30 17:49:31 1996 Brendan Kehoe <brendan@cygnus.com>
12652
12653 * configure.in (*-*-ose): Remove exclusion of libgloss for this
12654 target, it now compiles correctly.
12655
12656 Sat Jul 27 15:10:43 1996 Stan Shebs <shebs@andros.cygnus.com>
12657
12658 * mpw-config.in: Generate Mac include for elf/dwarf2.h.
12659
12660 Tue Jul 23 10:47:04 1996 Martin M. Hunt <hunt@pizza.cygnus.com>
12661
12662 * configure.in (d10v-*-*): Remove ld from $noconfigdirs.
12663
12664 Mon Jul 22 13:28:51 1996 Brendan Kehoe <brendan@lisa.cygnus.com>
12665
12666 * configure.in (native_only): Add prms.
12667
12668 Mon Jul 22 12:27:58 1996 Ian Lance Taylor <ian@cygnus.com>
12669
12670 * Makefile.in (GAS_SUPPORT_DIRS): Add make-all.com and setup.com.
12671 (BINUTILS_SUPPORT_DIRS): Likewise.
12672
12673 Thu Jul 18 12:55:40 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12674
12675 * configure.in (d10v-*-*): Don't configure ld or gdb until the
12676 d10v support is added.
12677
12678 Wed Jul 17 14:33:09 1996 Martin M. Hunt <hunt@pizza.cygnus.com>
12679
12680 * configure.in (d10v-*-*): New target.
12681
12682 Mon Jul 15 11:53:00 1996 Jeffrey A Law (law@cygnus.com)
12683
12684 * config.guess (HP 9000/811): Recognize this as a PA1.1
12685 machine.
12686
12687 Fri Jul 12 23:21:17 1996 Ken Raeburn <raeburn@cygnus.com>
12688
12689 * Makefile.in (do-tar-gz): New target, split out from tail end of
12690 taz target. Run each command separately, don't use pipes.
12691 (taz): Use it.
12692
12693 Fri Jul 12 12:08:04 1996 Stan Shebs <shebs@andros.cygnus.com>
12694
12695 * mpw-configure: Look for g-mpw-make.sed in config/mpw.
12696 * mpw-build.in: No builds should depend on building byacc or flex,
12697 they are assumed to be installed already.
12698
12699 Fri Jul 12 09:52:52 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12700
12701 * Makefile.in (CONFIGURE_TARGET_MODULES): Set r environment
12702 variable that CC_FOR_TARGET needs.
12703
12704 Thu Jul 11 10:09:45 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12705
12706 * Makefile.in (CONFIGURE_TARGET_MODULES): Determine if the multlib
12707 options have changed since the last time the subdirectory was
12708 configured, and if it has, reconfigure.
12709 (CLEAN_TARGET_MODULES): Delete multilib.out and tmpmulti.out, which
12710 CONFIGURE_TARGET_MODULES uses to remember the old multilib options.
12711
12712 Wed Jul 10 18:56:59 1996 Doug Evans <dje@canuck.cygnus.com>
12713
12714 * Makefile.in (ALL_MODULES,CROSS_CHECK_MODULES,INSTALL_MODULES,
12715 CLEAN_MODULES): Add bash.
12716 (all-bash): New target.
12717
12718 Mon Jul 8 17:33:14 1996 Jim Wilson <wilson@cygnus.com>
12719
12720 * configure.in (mips-sgi-irix6*): Use mh-irix6 instead of mh-irix5.
12721
12722 Mon Jul 1 13:31:35 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12723
12724 * config.sub (basic_machine): Recognize d10v as a valid processor.
12725
12726 Fri Jun 28 12:14:35 1996 Stan Shebs <shebs@andros.cygnus.com>
12727
12728 * mpw-configure: Add support for --bindir.
12729 * mpw-build.in: Use a GCC-specific build script for GCC actions.
12730
12731 Wed Jun 26 17:20:12 1996 Geoffrey Noer <noer@cygnus.com>
12732
12733 * configure.in: add bash, time, gawk to list of hosttools and things
12734 to only build for native toolchains
12735
12736 Tue Jun 25 23:09:03 1996 Jason Molenda (crash@godzilla.cygnus.co.jp)
12737
12738 * Makefile.in (docdir): Remove.
12739
12740 Tue Jun 25 19:00:08 1996 Jason Molenda (crash@godzilla.cygnus.co.jp)
12741
12742 * Makefile.in (datadir): Set to $(prefix)/share.
12743
12744 Mon Jun 24 23:26:07 1996 Geoffrey Noer <noer@cygnus.com>
12745
12746 * configure.in: build diff and patch for cygwin32-hosted
12747 toolchains.
12748
12749 Mon Jun 24 15:01:12 1996 Joel Sherrill <joel@merlin.gcs.redstone.army.mil>
12750
12751 * config.sub: Accept -rtems*.
12752
12753 Sun Jun 23 22:41:54 1996 Geoffrey Noer <noer@cygnus.com>
12754
12755 * configure.in: enable dosrel for cygwin32-hosted builds,
12756 remove diff from the list of things not buildable
12757 via Canadian Cross
12758
12759 Sat Jun 22 11:39:01 1996 Jason Merrill <jason@yorick.cygnus.com>
12760
12761 * Makefile.in (TARGET_SUBDIR): Move comment to previous line so we
12762 don't get ". ".
12763
12764 Fri Jun 21 17:24:48 1996 Jim Wilson <wilson@cygnus.com>
12765
12766 * configure.in (mips*-sgi-irix6*): Set noconfigdirs appropriately.
12767
12768 Thu Jun 20 16:57:40 1996 Ken Raeburn <raeburn@cygnus.com>
12769
12770 * Makefile.in (taz): Handle case where tex3patch didn't even get
12771 checked out. Also, if it was found, put the symlink in a new util
12772 subdirectory.
12773
12774 Thu Jun 20 12:20:33 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12775
12776 * config.guess (*:Linux:*:*): Add support for PowerPC Linux.
12777
12778 Tue Jun 18 14:24:12 1996 Klaus Kaempf (kkaempf@progis.de)
12779
12780 * config.sub: Recognize -openvms.
12781 * configure.in (alpha*-*-*vms*): Set noconfigdirs.
12782 * make-all.com, setup.com: New files.
12783
12784 Mon Jun 17 16:34:46 1996 Jason Merrill <jason@yorick.cygnus.com>
12785
12786 * Makefile.in (taz): tex3patch moved to texinfo/util.
12787
12788 Sat Jun 15 17:13:25 1996 Geoffrey Noer <noer@cygnus.com>
12789
12790 * configure: enable_gdbtk=no for cygwin32-hosted toolchains
12791 * configure.in: remove make from disable-if-Can-Cross list
12792 enable gdb if ${host} and ${target} are cygwin32
12793
12794 Fri Jun 7 18:16:52 1996 Harlan Stenn <harlan@pfcs.com>
12795
12796 * config.guess (i?86-ncr-sysv*): Emit minor release numbers.
12797 Recognize the NCR 4850 machine and NCR Pentium-based platforms.
12798
12799 Wed Jun 5 00:09:17 1996 Per Bothner <bothner@wombat.gnu.ai.mit.edu>
12800
12801 * config.guess: Combine mips-mips-riscos cases, and use cpp to
12802 distinguish sysv/svr4/bsd variants.
12803 Based on a patch from Harlan Stenn <harlan@pfcs.com>.
12804
12805 Fri Jun 7 14:24:49 1996 Tom Tromey <tromey@creche.cygnus.com>
12806
12807 * configure.in: Added copyright notice.
12808 * move-if-change: Added copyright notice.
12809
12810 Thu Jun 6 16:27:05 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12811
12812 * configure.in (powerpcle-*-solaris*): Until we get shared
12813 libraries working, don't build gdb, sim, make, tcl, tk, or
12814 expect.
12815
12816 Tue Jun 4 20:41:45 1996 Per Bothner <bothner@deneb.cygnus.com>
12817
12818 * config.guess: Merge with FSF:
12819
12820 Mon Jun 3 08:49:14 1996 Karl Heuer <kwzh@gnu.ai.mit.edu>
12821 * config.guess (*:Linux:*:*): Add guess for sparc-unknown-linux.
12822
12823 Fri May 24 18:34:53 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
12824 * config.guess (AViiON:dgux:*:*): Fix typo in recognizing mc88110.
12825
12826 Fri Apr 12 20:03:59 1996 Per Bothner <bothner@spiff.gnu.ai.mit.edu>
12827 * config.guess: Combine two OSF1 rules.
12828 Also recognize field test versions. From mjr@zk3.dec.com.
12829 * config.guess (dgux): Use /usr/bin/uname rather than uname,
12830 because GNU uname does not support -p. From pmr@pajato.com.
12831
12832 Tue Jun 4 11:07:25 1996 Tom Tromey <tromey@csk3.cygnus.com>
12833
12834 * Makefile.in (MAKEDIRS): Removed $(tooldir).
12835
12836 Tue May 28 12:30:50 1996 Stan Shebs <shebs@andros.cygnus.com>
12837
12838 * mpw-README: Document GCCIncludes.
12839
12840 Sun May 26 15:16:27 1996 Fred Fish <fnf@cygnus.com>
12841
12842 * configure.in (alpha-*-linux*): Set enable_shared to yes.
12843
12844 Tue May 21 15:41:39 1996 Stan Shebs <shebs@andros.cygnus.com>
12845
12846 * mpw-configure: Handle --enable-FOO and --disable-FOO.
12847
12848 Mon May 20 10:12:29 1996 Geoffrey Noer <noer@cygnus.com>
12849
12850 * configure.in (*-*-cygwin32): Configure make.
12851
12852 Tue May 7 14:19:42 1996 Tom Tromey <tromey@snuffle.cygnus.com>
12853
12854 * Makefile.in (inet-install): Quote value of INSTALL_MODULES.
12855
12856 Fri May 3 08:57:17 1996 Tom Tromey <tromey@lisa.cygnus.com>
12857
12858 * Makefile.in (all-inet): Depend on all-perl.
12859
12860 * Makefile.in (inet-install): New target.
12861
12862 * Makefile.in (all-inet): Depend on all-tcl.
12863 (all-inet): Depend on all-send-pr.
12864
12865 Tue Apr 30 13:55:51 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12866
12867 * configure.in (powerpcle-*-solaris*): Turn off tk and tcl
12868 temporarily.
12869
12870 Thu Apr 25 11:48:20 1996 Ian Lance Taylor <ian@cygnus.com>
12871
12872 * configure.in: Don't configure --with-gnu-ld on AIX.
12873
12874 Thu Apr 25 06:33:36 1996 Michael Meissner <meissner@wogglebug.tiac.net>
12875
12876 * configure.in (powerpcle-*-solaris*): Turn off gdb temporarily.
12877
12878 Tue Apr 23 09:07:39 1996 Tom Tromey <tromey@creche.cygnus.com>
12879
12880 * Makefile.in (ALL_MODULES): Added all-inet.
12881 (CROSS_CHECK_MODULES): Added check-inet.
12882 (INSTALL_MODULES): Added install-inet.
12883 (CLEAN_MODULES): Added clean-inet.
12884 (all-indent): New target.
12885
12886 * configure.in (host_tools): Added inet.
12887 (native_only): Added inet.
12888 (noconfigdirs): Added inet.
12889
12890 Fri Apr 19 15:35:29 1996 Ian Lance Taylor <ian@cygnus.com>
12891
12892 * configure.in: Don't configure libgloss if we are not configuring
12893 newlib.
12894
12895 Wed Apr 17 19:30:01 1996 Rob Savoye <rob@chinadoll.cygnus.com>
12896
12897 * configure.in: Don't configure libgloss for unsupported
12898 architectures.
12899
12900 Tue Apr 16 11:17:05 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12901
12902 * Makefile.in (CLEAN_MODULES): Add clean-apache.
12903
12904 Mon Apr 15 15:09:05 1996 Tom Tromey <tromey@creche.cygnus.com>
12905
12906 * Makefile.in (ALL_MODULES): Include all-apache.
12907 (CROSS_CHECK_MODULES): Include check-apache.
12908 (INSTALL_MODULES): Include install-apache.
12909 (all-apache): New target.
12910
12911 * configure.in: Added apache everywhere perl is seen.
12912
12913 Mon Apr 15 14:59:13 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12914
12915 * Makefile.in: Add support for clean-{module} and
12916 clean-target-{module} rules.
12917
12918 Wed Apr 10 21:37:41 PDT 1996 Marilyn E. Sander <msander@cygnus.com>
12919
12920 * configure.in (*-*-ose) do not build libgloss.
12921
12922 Mon Apr 8 16:16:20 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12923
12924 * config.guess (prep*:SunOS:5.*:*): Turn into
12925 powerpele-unknown-solaris2.
12926
12927 Mon Apr 8 14:45:41 1996 Ian Lance Taylor <ian@cygnus.com>
12928
12929 * configure.in: Permit --enable-shared to specify a list of
12930 directories.
12931
12932 Fri Apr 5 08:17:57 1996 Jason Molenda (crash@phydeaux.cygnus.com)
12933
12934 * configure.in (host==solaris): Pass only the first word of $CC
12935 to /usr/bin/which when checking if we're using /usr/ccs/bin/cc.
12936
12937 Fri Apr 5 03:16:13 1996 Jason Molenda (crash@phydeaux.cygnus.com)
12938
12939 * Makefile.in (BASE_FLAGS_TO_PASS): pass down $(MAKE).
12940
12941 Thu Mar 28 14:11:11 1996 Tom Tromey <tromey@creche.cygnus.com>
12942
12943 * Makefile.in (ALL_MODULES): Include all-perl.
12944 (CROSS_CHECK_MODULES): Include check-perl.
12945 (INSTALL_MODULES): Include install-perl.
12946 (ALL_X11_MODULES): Include all-guile.
12947 (CHECK_X11_MODULES): Include check-guile.
12948 (INSTALL_X11_MODULES): Include install-guile.
12949 (all-perl): New target.
12950 (all-guile): New target.
12951
12952 * configure.in (host_tools): Include perl and guile.
12953 (native_only): Include perl and guile.
12954 (noconfigdirs): Don't build guile and perl; no ports have been
12955 done.
12956
12957 Tue Mar 26 21:18:50 1996 Andrew Cagney <cagney@kremvax.highland.com.au>
12958
12959 * configure (--enable-*): Handle quoted option lists such as
12960 --enable-sim-cflags='-g0 -O' better.
12961
12962 Thu Mar 21 11:53:08 1996 Michael Meissner <meissner@tiktok.cygnus.com>
12963
12964 * Makefile.in ({,inst}all-target): New rule so we can make and
12965 install all of the target directories easily.
12966
12967 Wed Mar 20 18:10:57 1996 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
12968
12969 * configure.in: Add missing global flag in sed substitution when
12970 deleting `target-' from ${configdirs}.
12971
12972 Thu Mar 14 19:15:06 1996 Ian Lance Taylor <ian@cygnus.com>
12973
12974 * Makefile.in (DO_X): Don't get confused if CC contains `=' in an
12975 option.
12976
12977 * configure.in (mips*-nec-sysvr4*): Use a host_makefile_frag of
12978 config/mh-necv4.
12979
12980 * install.sh: Correct misspelling of transformbasename.
12981
12982 * config.guess: Recognize mips-*-sysv*.
12983
12984 Mon Mar 11 15:36:42 1996 Dawn Perchik <dawn@critters.cygnus.com>
12985
12986 * config.sub: Recognize mon960.
12987
12988 Sun Mar 10 13:18:38 1996 Ian Lance Taylor <ian@cygnus.com>
12989
12990 * configure: Restore Canadian Cross handling of BISON and LEX,
12991 removed in Feb 20 change.
12992
12993 Fri Mar 8 20:07:09 1996 Per Bothner <bothner@kalessin.cygnus.com>
12994
12995 * README: Suggestions from Torbjorn Granlund <tege@matematik.su.se>:
12996 Mention make install. Remove the old copyright date as well the
12997 clumsy and rather pointless copyright on the README file.
12998
12999 Fri Mar 8 17:51:35 1996 Ian Lance Taylor <ian@cygnus.com>
13000
13001 * Makefile.in ($(CONFIGURE_TARGET_MODULES)): If there is a
13002 Makefile after running symlink-tree, then run `make distclean' to
13003 avoid clobbering any generated files in srcdir.
13004
13005 Tue Mar 5 08:21:44 1996 J.T. Conklin <jtc@rtl.cygnus.com>
13006
13007 * configure.in (m68k-*-netbsd*): Build everything now.
13008
13009 Wed Feb 28 12:25:46 1996 Jason Merrill <jason@yorick.cygnus.com>
13010
13011 * Makefile.in (taz): Fix quoting.
13012
13013 Tue Feb 27 11:33:57 1996 Doug Evans <dje@charmed.cygnus.com>
13014
13015 * configure.in (sparclet-*-*): Build everything now.
13016
13017 Tue Feb 27 14:31:51 1996 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
13018
13019 * configure.in (m68k-*-linux*): New host.
13020
13021 Mon Feb 26 14:32:44 1996 Ian Lance Taylor <ian@cygnus.com>
13022
13023 * configure: Check for bison before byacc.
13024
13025 Tue Feb 20 23:12:35 1996 Stu Grossman (grossman@critters.cygnus.com)
13026
13027 * Makefile.in configure: Change the way LEX and BISON/YACC are
13028 set. configure now defines DEFAULT_LEX and DEFAULT_YACC by
13029 searching PATH. These are used as fallbacks by Makefile.in if
13030 flex/bison/byacc aren't in objdir.
13031
13032 Mon Feb 19 11:45:30 1996 Ian Lance Taylor <ian@cygnus.com>
13033
13034 * Makefile.in: Make everything which depends upon all-bfd also
13035 depend upon all-opcodes, in case --with-commonbfdlib is used.
13036
13037 Thu Feb 15 19:50:50 1996 Michael Meissner <meissner@tiktok.cygnus.com>
13038
13039 * configure.in (host *-*-cygwin32): Don't build gdb if we are
13040 building NT native compilers on Unix.
13041
13042 Thu Feb 15 17:42:25 1996 Ian Lance Taylor <ian@cygnus.com>
13043
13044 * configure.in: Don't get CC from the host Makefile fragment if we
13045 can find gcc in PATH, or if this is a Canadian Cross. Move the
13046 Solaris test for /usr/ucb/cc to the post target script, just after
13047 the compiler sanity test.
13048
13049 Wed Feb 14 16:57:40 1996 Ian Lance Taylor <ian@cygnus.com>
13050
13051 * config.sub: Merge with FSF.
13052
13053 Tue Feb 13 14:27:48 1996 Ian Lance Taylor <ian@cygnus.com>
13054
13055 * Makefile.in (RPATH_ENVVAR): New variable.
13056 (REALLY_SET_LIB_PATH): Use it.
13057 * configure.in: On HP/UX, set RPATH_ENVVAR to SHLIB_PATH.
13058
13059 Mon Feb 12 15:28:49 1996 Doug Evans <dje@charmed.cygnus.com>
13060
13061 * config.sub, configure.in: Recognize sparclet cpu.
13062
13063 Mon Feb 12 15:33:59 1996 Christian Bauernfeind <chrisbfd@theorie3.physik.uni-erlangen.de>
13064
13065 * config.guess: Support m68k-cbm-sysv4.
13066
13067 Sat Feb 10 12:06:42 1996 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
13068
13069 * config.guess (*:Linux:*:*): Guess m68k-unknown-linux and
13070 m68k-unknown-linuxaout from linker help string. Put quotes around
13071 $ld_help_string.
13072
13073 Thu Dec 7 09:03:24 1995 Tom Horsley <Tom.Horsley@mail.hcsc.com>
13074
13075 * config.guess (powerpc-harris-powerunix): Add guess for port
13076 to new target.
13077
13078 Thu Feb 8 15:37:52 1996 Brendan Kehoe <brendan@lisa.cygnus.com>
13079
13080 * config.guess (UNAME_VERSION): Recognize X4.x as an OSF version.
13081
13082 Mon Feb 5 16:36:51 1996 Ian Lance Taylor <ian@cygnus.com>
13083
13084 * configure.in: If --enable-shared was used, set SET_LIB_PATH to
13085 $(REALLY_SET_LIB_PATH) in Makefile.
13086 * Makefile.in (SET_LIB_PATH): New variable.
13087 (REALLY_SET_LIB_PATH): New variable.
13088 ($(DO_X)): Use $(SET_LIB_PATH).
13089 (install.all, gcc-no-fixedincludes, $(ALL_MODULES)): Likewise.
13090 ($(NATIVE_CHECK_MODULES), $(CROSS_CHECK_MODULES)): Likewise.
13091 ($(INSTALL_MODULES), $(CONFIGURE_TARGET_MODULES)): Likewise.
13092 ($(ALL_TARGET_MODULES), $(CHECK_TARGET_MODULES)): Likewise.
13093 ($(INSTALL_TARGET_MODULES), $(ALL_X11_MODULES)): Likewise.
13094 ($(CHECK_X11_MODULES), $(INSTALL_X11_MODULES)): Likewise.
13095 (all-gcc, all-bootstrap, check-gcc, install-gcc): Likewise.
13096 (install-dosrel): Likewise.
13097 (all-opcodes): Depend upon all-libiberty.
13098
13099 Sun Feb 4 16:51:11 1996 Steve Chamberlain <sac@slash.cygnus.com>
13100
13101 * config.guess (*:CYGWIN*): New
13102
13103 Sat Feb 3 10:42:35 1996 Michael Meissner <meissner@tiktok.cygnus.com>
13104
13105 * Makefile.in (all-target-winsup): All all-target-libiberty.
13106
13107 Fri Feb 2 17:58:56 1996 Michael Meissner <meissner@tiktok.cygnus.com>
13108
13109 * configure.in (noconfigdirs): Add missing # in front of comment.
13110
13111 Thu Feb 1 14:38:13 1996 Geoffrey Noer <noer@cygnus.com>
13112
13113 * configure.in: add second pass to things added to noconfigdirs
13114 so *-gm-magic can exclude libgloss properly.
13115
13116 Thu Feb 1 11:10:16 1996 Stan Shebs <shebs@andros.cygnus.com>
13117
13118 * mpw-configure (extralibs_name, rez_name): Set correctly
13119 for MWC68K compiler.
13120
13121 * mpw-README: Add more info on the necessary build tools.
13122
13123 Thu Feb 1 10:22:38 1996 Steve Chamberlain <sac@slash.cygnus.com>
13124
13125 * configure.in, config.sub: Recognize cygwin32.
13126
13127 Wed Jan 31 14:17:10 1996 Richard Henderson <rth@tamu.edu>
13128
13129 * config.guess, config.sub: Recognize A/UX.
13130
13131 Wed Jan 31 13:52:14 1996 Ian Lance Taylor <ian@cygnus.com>
13132
13133 * config.sub: Merge with gcc/config.sub.
13134
13135 Thu Jan 25 11:01:10 1996 Raymond Jou <rjou@mexican.cygnus.com>
13136
13137 * mpw-build.in (do-binutils): Add build of stamps.
13138
13139 Thu Jan 25 17:05:26 1996 James G. Smith <jsmith@cygnus.co.uk>
13140
13141 * config.sub: Add recognition for mips64vr4100*-* targets.
13142
13143 Wed Jan 24 12:47:55 1996 Brendan Kehoe <brendan@lisa.cygnus.com>
13144
13145 * test-build.mk: Add checking of `hpux9' rather than just `hpux'.
13146 Add creation of gconfigargs with `--enable-shared' turned on.
13147 ($(host)-stamp-stage2-configured): Pass $(gconfigargs).
13148 ($(host)-stamp-stage3-configured): Likewise.
13149 (HOLES): Add chatr and ldd.
13150 (i386-ncr-sysv4.3*): Add use of /usr/ccs/bin in the PATH and HOLE_DIRS.
13151
13152 Wed Jan 24 20:32:30 1996 Torbjorn Granlund <tege@noisy.matematik.su.se>
13153
13154 * configure: Pass --nfp to recursive configures.
13155
13156 Mon Jan 22 10:41:56 1996 Steve Chamberlain <sac@slash.cygnus.com>
13157
13158 * Makefile.in (DLLTOOL): New.
13159 (DLLTOOL_FOR_TARGET): New.
13160 (EXTRA_HOST_FLAGS): Pass down DLLTOOL.
13161 (EXTRA_TARGET_FLAGS): Ditto.
13162 (EXTRA_GCC_FLAGS): Ditto.
13163 (CONFIGURE_TARGET_MODULES): Ditto.
13164 (DO_X): Ditto.
13165 * configure: Add DLLTOOL.
13166
13167 Fri Jan 19 13:30:15 1996 Stan Shebs <shebs@andros.cygnus.com>
13168
13169 SCO OpenServer 5 changes from Robert Lipe <robertl@dgii.com>:
13170 * configure.in (i[345]86-*-sco3.2v5*): Use mh-sysv instead of
13171 mh-sco, since old workarounds no longer needed, and don't
13172 build ld, since libraries have weak symbols in COFF.
13173
13174 Sun Jan 14 23:01:31 1996 Fred Fish <fnf@cygnus.com>
13175
13176 * Makefile.in (CONFIGURE_TARGET_MODULES): Add missing ';'.
13177
13178 Fri Jan 12 15:25:35 1996 Ian Lance Taylor <ian@cygnus.com>
13179
13180 * configure.in: Make sure that ${CC} can be used to compile an
13181 executable.
13182
13183 Sat Jan 6 07:23:33 1996 Michael Meissner <meissner@wogglebug.tiac.net>
13184
13185 * Makefile.in (all-gdb): Depend on $(GDB_TK).
13186 * configure (GDB_TK): Set GDB_TK to either "all-tcl all-tk" or
13187 nothing depending on whether gdbtk is being built.
13188
13189 Wed Jan 3 17:54:41 1996 Doug Evans <dje@canuck.cygnus.com>
13190
13191 * Makefile.in (newlib.tar.gz): Delete building of newlib's info files.
13192
13193 Mon Jan 1 19:09:14 1996 Brendan Kehoe <brendan@rtl.cygnus.com>
13194
13195 * configure.in (noconfigdirs): Put ld or gas in this early, if the
13196 user specifically used --with-gnu-ld=no or --with-gnu-as=no.
13197
13198 Sat Dec 30 16:08:57 1995 Doug Evans <dje@canuck.cygnus.com>
13199
13200 * config-ml.in: Add support for
13201 --disable-{softfloat,m68881,m68000,m68020} on m68*-*-*.
13202 Simplify setting of multidirs from --disable-foo.
13203
13204 Fri Dec 29 07:56:11 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13205
13206 * Makefile.in (EXTRA_GCC_FLAGS): If any of the make variables
13207 LANGUAGES, BOOT_CFLAGS, STMP_FIXPROTO, LIMITS_H_TEST,
13208 LIBGCC1_TEST, LIBGCC2_CFLAGS, LIBGCC2_INCLUDES, and ENQUIRE are
13209 non-empty, pass them on to the GCC make.
13210 (all-bootstrap): New rule that is like all-gcc, except it executes
13211 the GCC bootstrap rule instead of the GCC all rule.
13212
13213 Wed Dec 27 15:51:48 1995 Doug Evans <dje@canuck.cygnus.com>
13214
13215 * config-ml.in (ml_realsrcdir): New, to account for ${subdir}.
13216
13217 Tue Dec 26 11:45:31 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13218
13219 * config.guess (AViiON:dgux:*:*): Update from FSF to add pentium
13220 DG/UX support.
13221
13222 Fri Dec 15 10:01:27 1995 Stan Cox <coxs@dg-rtp.dg.com>
13223
13224 * config.sub (i*86*) Change [345] to [3456]
13225
13226 Wed Dec 20 17:41:40 1995 Brendan Kehoe <brendan@lisa.cygnus.com>
13227
13228 * configure.in (noconfigdirs): Add gas or ld if --with-gnu-as=no or
13229 --with-gnu-ld=no.
13230
13231 Wed Dec 20 15:15:35 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13232
13233 * config-ml.in (rs6000*, powerpc*): Add switches to control which
13234 AIX multilibs get built.
13235
13236 Mon Dec 18 17:55:46 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13237
13238 * configure.in (i386-win32): Don't build expect if we're not
13239 building the tcl subdir.
13240
13241 Mon Dec 18 11:47:19 1995 Stan Shebs <shebs@andros.cygnus.com>
13242
13243 * Makefile.in: (configure-target-examples, all-target-examples):
13244 New targets, configure and build example programs.
13245
13246 Fri Dec 15 16:13:03 1995 Stan Shebs <shebs@andros.cygnus.com>
13247
13248 * mpw-configure: If an mpw-config.in generated a file mk.sed,
13249 use it as input to sedit the generated MPW makefile.
13250 * mpw-README: Add a suggestion about Gestalt.h.
13251
13252 Wed Dec 13 16:43:51 1995 Ian Lance Taylor <ian@cygnus.com>
13253
13254 * config.sub: Accept *-*-ieee*.
13255
13256 Tue Dec 12 11:52:57 1995 Ian Lance Taylor <ian@cygnus.com>
13257
13258 * Makefile.in (local-distclean): Remove $(TARGET_SUBDIR). From
13259 Ronald F. Guilmette <rfg@monkeys.com>.
13260
13261 Mon Dec 11 15:31:58 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13262
13263 * configure.in (host==powerpc-pe): Add many directories to noconfigdirs
13264 for powerpc-pe native.
13265 (target==i386-win32): add tcl, make to noconfigdirs if canadian cross.
13266 (target==powerpc-pe): duplicate i386-win32 entry.
13267
13268 Sat Dec 9 14:58:28 1995 Jim Wilson <wilson@chestnut.cygnus.com>
13269
13270 * configure.in (noconfigdirs): Exclude target-newlib for all versions
13271 of vxworks, not just vxworks5.1.
13272
13273 Mon Dec 4 12:05:40 1995 Stan Shebs <shebs@andros.cygnus.com>
13274
13275 * mpw-configure: Add support for exec-prefix.
13276
13277 Mon Dec 4 10:22:50 1995 Jeffrey A. Law <law@rtl.cygnus.com>
13278
13279 * config.guess: Recognize HP model 816 machines as having
13280 a PA1.1 processor.
13281
13282 Mon Dec 4 12:38:15 1995 Ian Lance Taylor <ian@cygnus.com>
13283
13284 * configure: Ignore new autoconf configure options.
13285
13286 Thu Nov 30 16:57:33 1995 Per Bothner <bothner@wombat.gnu.ai.mit.edu>
13287
13288 * config.guess: Recognize Pentium under SCO.
13289 From Robert Lipe <robertl@arnet.com>.
13290
13291 Wed Nov 29 13:49:08 1995 J.T. Conklin <jtc@rtl.cygnus.com>
13292
13293 * configure.in (noconfigdirs): Disable target-libio on v810-*-*.
13294
13295 Wed Nov 29 12:12:01 1995 Ian Lance Taylor <ian@cygnus.com>
13296
13297 * configure.in: Don't configure gas for alpha-dec-osf*.
13298
13299 Tue Nov 28 17:16:48 1995 Ian Lance Taylor <ian@cygnus.com>
13300
13301 * configure.in: Default to --with-stabs for some targets for which
13302 it makes sense: mips*-*-*, alpha*-*-osf*, i[345]86*-*-sysv4* and
13303 i[345]86*-*-unixware*.
13304
13305 Mon Nov 27 13:44:15 1995 Ian Lance Taylor <ian@cygnus.com>
13306
13307 * config-ml.in: Get list of multidirs using gcc --print-multi-lib
13308 rather than basing it on the target. Simplify handling of options
13309 controlling which directories to configure. Remove extraneous
13310 slash in multi-clean target.
13311
13312 Fri Nov 24 17:29:29 1995 Doug Evans <dje@deneb.cygnus.com>
13313
13314 * config-ml.in: Prefix more variables with ml_ so they don't collide
13315 with configure's.
13316
13317 Wed Nov 22 11:27:02 1995 Ian Lance Taylor <ian@cygnus.com>
13318
13319 * configure: Don't turn -v into --v.
13320
13321 Tue Nov 21 16:48:02 1995 Doug Evans <dje@deneb.cygnus.com>
13322
13323 * configure.in (targargs): Fix typo.
13324
13325 * Makefile.in (DEVO_SUPPORT): Add symlink-tree.
13326
13327 Tue Nov 21 14:08:28 1995 Ian Lance Taylor <ian@cygnus.com>
13328
13329 * configure.in: Strip --host and --target options from
13330 CONFIG_ARGUMENTS, and always configure for --host only. Add
13331 --with-cross-host option when building with a cross-compiler.
13332 * configure: Canonicalize the arguments put into config.status by
13333 always using `=' for an option with an argument. Pass a presumed
13334 --host or --target explicitly.
13335
13336 Fri Nov 17 17:50:30 1995 Stan Shebs <shebs@andros.cygnus.com>
13337
13338 * config.sub: Merge -macos*, -magic*, -pe*, and -win32 cases
13339 into general OS recognition case.
13340
13341 Fri Nov 17 17:42:25 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13342
13343 * configure.in (target_configdirs): add target-winsup only
13344 for win32 target systems.
13345
13346 Thu Nov 16 14:04:47 1995 Ian Lance Taylor <ian@cygnus.com>
13347
13348 * Makefile.in (all-target-libgloss): Depend upon
13349 configure-target-newlib, since when libgloss is built it looks to
13350 see if the newlib directory exists.
13351
13352 Wed Nov 15 14:47:52 1995 Ken Raeburn <raeburn@cygnus.com>
13353
13354 * Makefile.in (DEVO_SUPPORT): Use config-ml.in instead of
13355 cfg-ml-*.in.
13356
13357 Wed Nov 15 11:45:23 1995 Ian Lance Taylor <ian@cygnus.com>
13358
13359 * configure: Handle LD and LD_FOR_TARGET when configuring a
13360 Canadian Cross.
13361
13362 Tue Nov 14 14:56:11 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13363
13364 * configure.in (target_libs): add target-winsup.
13365 (target==i386-win32): add patch diff flex make to $noconfigdirs.
13366 (target==ppcle-pe): remove ld from $noconfigdirs.
13367
13368 Tue Nov 14 01:25:50 1995 Doug Evans <dje@canuck.cygnus.com>
13369
13370 * Makefile.in (CONFIGURE_TARGET_MODULES): Pass --with-target-subdir.
13371 Preserve relative path names in $srcdir. Build symlink tree if
13372 configuring cross target dir and srcdir=. (= no VPATH support).
13373 (configure-target-libg++): Depend on configure-target-librx.
13374 * cfg-ml-com.in, cfg-ml-pos.in: Deleted.
13375 * config-ml.in: New file.
13376 * symlink-tree: New file.
13377 * configure: Ensure srcdir="." if that's what it is.
13378
13379 Mon Nov 13 12:34:20 1995 Stan Shebs <shebs@andros.cygnus.com>
13380
13381 * mpw-README: Clarify some phrasing, add notes about CodeWarrior
13382 includes and FLEX_SKELETON setting.
13383 * mpw-configure (--with-gnu-ld): New option, controls whether
13384 to use PPCLink or ld with PowerMac GCC.
13385 * mpw-build.in (all-grez, do-grez, install-grez): New targets.
13386 * mpw-config.in: Configure grez if targeting Mac.
13387
13388 * config.sub: Accept pmac and pmac-mpw as names for PowerMacs,
13389 accept mpw and mac-mpw as names for m68k Macs, change macos7 to
13390 just macos.
13391 * configure.in: Configure grez resource compiler if targeting Mac.
13392 * Makefile.in (all-grez, install-grez): New targets.
13393
13394 Wed Nov 8 17:33:51 1995 Jason Merrill <jason@yorick.cygnus.com>
13395
13396 * configure: CXX defaults to gcc, not g++. If we find
13397 gcc in the path, set CC to gcc -O2.
13398
13399 Tue Nov 7 15:45:17 1995 Ian Lance Taylor <ian@cygnus.com>
13400
13401 * configure: Default ${build} correctly. Avoid picking up extra
13402 spaces when reading CC and CXX from Makefile. When doing a
13403 Canadian Cross, use plausible default values for numerous
13404 variables.
13405 * configure.in: When doing a Canadian Cross, don't try to
13406 configure tools whose configure script can't handle it.
13407
13408 Mon Nov 6 19:32:17 1995 Jim Wilson <wilson@chestnut.cygnus.com>
13409
13410 * cfg-ml-com.in (sh-*-*): Add m2 and ml/m2 to multidirs.
13411
13412 Sun Nov 5 00:15:41 1995 Per Bothner <bothner@kalessin.cygnus.com>
13413
13414 * configure: Remove dubious bug reporting address.
13415
13416 Fri Nov 3 08:17:54 1995 Per Bothner <bothner@kalessin.cygnus.com>
13417
13418 * Makefile.in ($(CONFIGURE_TARGET_MODULES)): If subdir has
13419 configure script, run that instead of this directory's configure.
13420 In either case, print a message that we're configuring the sub-dir.
13421
13422 Thu Nov 2 23:23:36 1995 Per Bothner <bothner@kalessin.cygnus.com>
13423
13424 * configure.in: Before checking for the existence of various files,
13425 use sed to filter out "target-".
13426
13427 Thu Nov 2 13:24:56 1995 Ian Lance Taylor <ian@cygnus.com>
13428
13429 * Makefile.in (DO_X): Split rule to decrease command line length
13430 for systems with small ARG_MAX values. From phdm@info.ucl.ac.be
13431 (Philippe De Muyter).
13432
13433 Wed Nov 1 15:18:35 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13434
13435 * Makefile.in (all-patch): depend on all-libiberty.
13436
13437 Wed Nov 1 12:23:20 1995 Ian Lance Taylor <ian@cygnus.com>
13438
13439 * configure.in: If the only directory in target_configdirs which
13440 actually exists is libiberty, then set target_configdirs to empty,
13441 to avoid trying to build a target libiberty in a gas or gdb
13442 distribution.
13443
13444 Tue Oct 31 17:52:39 1995 J.T. Conklin <jtc@slave.cygnus.com>
13445
13446 * configure.in (host_makefile_frag): Use m68k-sun-sunos* instead
13447 of m68k-sun-* when selecting mh-sun3 to avoid matching NetBSD/sun3
13448 systems.
13449
13450 Tue Oct 31 16:57:32 1995 Jim Wilson <wilson@chestnut.cygnus.com>
13451
13452 * configure.in (copy_dirs): Use sys-include instead of include
13453 for --with-headers option.
13454
13455 Tue Oct 31 10:29:36 1995 steve chamberlain <sac@slash.cygnus.com>
13456
13457 * Makefile.in, configure.in: Make winsup builds work with
13458 new scheme.
13459
13460 Mon Oct 30 18:57:09 1995 Ian Lance Taylor <ian@cygnus.com>
13461
13462 * configure.in: Build the linker on AIX.
13463
13464 Mon Oct 30 12:27:16 1995 Per Bothner <bothner@kalessin.cygnus.com>
13465
13466 * Makefile.in (CC_FOR_TARGET, CXX_FOR_TARGET): Add $(TARGET_SUBDIR)
13467 where needed.
13468
13469 Mon Oct 30 12:45:25 1995 Doug Evans <dje@cygnus.com>
13470
13471 * Makefile.in (all-gcc): Fix typo.
13472
13473 Sat Oct 28 10:27:59 1995 Per Bothner <bothner@kalessin.cygnus.com>
13474
13475 * Makefile.in ($(CHECK_TARGET_MODULES)): Fix typo.
13476
13477 Fri Oct 27 23:14:12 1995 Per Bothner <bothner@kalessin.cygnus.com>
13478
13479 * configure.in: Rename libFOO to target-libFOO, and xiberty
13480 to target-xiberty, to provide more flexibility.
13481 (target_subdir): Define. Create if cross.
13482 Set TARGET_SUBDIR in Makefile to ${target_subdir}.
13483 * Makefile.in: Rename all-libFOO -> all-target-libFOO, all-xiberty
13484 -> all-target-libiberty, configure-libFOO -> configure-target-libFOO,
13485 check-libFOO -> check-target-libFOO, etc.
13486 ($(DO_X)): Iterate over TARGET_CONFIGDIRS after SUBDIRS.
13487 ($(CONFIGURE_TARGET_MODULES), $(CHECK_TARGET_MODULES),
13488 $(ALL_TARGET_MODULES), $(INSTALL_TARGET_MODULES)): Update accordingly.
13489 (configure-target-XXX): Depend on $(ALL_GCC), not all-gcc, to
13490 allow ALL_GCC="" to only configure.
13491 (DEVO_SUPPORT): Add cfg-ml-com.in and cfg-ml-pos.in.
13492 (ETC_SUPPORT, ETC_SUPPORT_PFX): Merge; update 'taz' accordingly.
13493 (LIBGXX_SUPPORT_DIRS): Remove xiberty.
13494
13495 Sat Oct 28 01:53:49 1995 Ken Raeburn <raeburn@cygnus.com>
13496
13497 * Makefile.in (taz): Build "info" in etc explicitly.
13498
13499 Fri Oct 27 09:32:30 1995 Stu Grossman (grossman@cygnus.com)
13500
13501 * configure.in: Make sure that CC is undefined (as opposed to
13502 null) if toplevel/config/mh-{host} doesn't define it. Fixes a
13503 problem with autoconf trying to configure on a host without GCC.
13504
13505 Thu Oct 26 22:35:01 1995 Stan Shebs <shebs@andros.cygnus.com>
13506
13507 * mpw-configure: Set host alias from choice of host compiler,
13508 only use generic MPW Makefile sed if present, edit a file
13509 named "hacked_Makefile.in" instead of "Makefile.in" if present.
13510 * mpw-README: Add problem notes about CW6 and CW7.
13511
13512 Thu Oct 26 05:45:10 1995 Ken Raeburn <raeburn@kr-pc.cygnus.com>
13513
13514 * Makefile.in (taz): Use ";" instead of ";;".
13515
13516 Wed Oct 25 15:18:24 1995 Per Bothner <bothner@kalessin.cygnus.com>
13517
13518 * Makefile.in (taz): Grep for '^diststuff:' or '^info:' in
13519 sub-directory Makefiles, instead of using DISTSTUFFDIRS and
13520 DISTDOCDIRS.
13521 (DISTSTUFFDIRS, DISTDOCDIRS): Removed - no longer used.
13522 (newlib.tar.gz): Don't pass DISTDOCDIRS to recursive make.
13523
13524 Wed Oct 25 14:43:55 1995 Per Bothner <bothner@kalessin.cygnus.com>
13525
13526 * Makefile.in (DISTDOCDIRS): Remove ld gprof bnutils gas libg++ gdb
13527 and gnats, because they are now subsumed by DISTSTUFFDIRS.
13528 Move bfd to DISTSTUFFDIRS.
13529
13530 Tue Oct 24 18:19:09 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13531
13532 * Makefile.in (X11_LIB): Removed.
13533 (X11_FLAGS_TO_PASS): pass only X11_EXTRA_CFLAGS and X11_EXTRA_LIBS.
13534
13535 * configure.in (host_makefile_frag): mh-aix & mh-sun removed.
13536
13537 Sun Oct 22 13:04:42 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13538
13539 * cfg-ml-com.in (powerpc*): Shorten some of the multilib directory
13540 names.
13541
13542 Fri Oct 20 18:02:10 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13543
13544 * cfg-ml-com.in (powerpc*-eabi*): Add mcall-aixdesc varients.
13545
13546 Thu Oct 19 10:40:57 1995 steve chamberlain <sac@slash.cygnus.com>
13547
13548 * configure.in (i[345]86-*-win32): Always build newlib.
13549 Don't configure cvs, autoconf or texinfo.
13550 * Makefile.in (LD_FOR_TARGET): New.
13551 (BASE_FLAGS_TO_PASS, EXTRA_TARGET_FLAGS, CONFIGURE_TARGET_MODULES):
13552 Pass down LD_FOR_TARGET.
13553
13554 Wed Oct 18 15:53:56 1995 steve chamberlain <sac@slash.cygnus.com>
13555
13556 * winsup: New directory.
13557 * Makefile.in: Build winsup.
13558 * configure.in: Winsup is configured when target is win32.
13559 Can only build win32 target GDB when native.
13560
13561 Mon Oct 16 09:42:31 1995 Jeffrey A Law (law@cygnus.com)
13562
13563 * config.guess: Recognize HP model 819 machines as having
13564 a PA 1.1 processor.
13565
13566 Mon Oct 16 10:49:43 1995 Ian Lance Taylor <ian@cygnus.com>
13567
13568 * configure: Fix sed loop which substitutes for CC and CXX to
13569 avoid bug found in various sed implementations.
13570
13571 Wed Oct 11 16:16:20 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13572
13573 * cfg-ml-com.in (powerpc-*-eabisim): Delete separate rule for
13574 simulator. Use standard powerpc-*-eabi*.
13575
13576 Mon Oct 9 17:21:56 1995 Ian Lance Taylor <ian@cygnus.com>
13577
13578 * configure.in: Stop putting gas and binutils in noconfigdirs for
13579 powerpc-*-aix* and rs6000-*-*.
13580
13581 Mon Oct 9 12:38:40 1995 Michael Meissner <meissner@cygnus.com>
13582
13583 * cfg-ml-com.in (powerpc*-*-eabisim*): Add support for building
13584 -mcall-aixdesc libraries.
13585
13586 Fri Oct 6 16:17:57 1995 Ken Raeburn <raeburn@cygnus.com>
13587
13588 Mon Sep 25 22:49:32 1995 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
13589
13590 * config.sub (arm | armel | armeb): Fix shell syntax.
13591
13592 Fri Oct 6 14:40:28 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13593
13594 * cfg-ml-com.in ({powerpc,rs6000}-ibm-aix*): Add multilibs for
13595 -msoft-float and -mcpu=common support.
13596 (powerpc*-*-eabisim*): Add support for building -mcall-aix
13597 libraries.
13598
13599 Thu Oct 5 13:26:37 1995 Brendan Kehoe <brendan@lisa.cygnus.com>
13600
13601 * configure.in: Allow configuration and build of emacs19 for the alpha.
13602
13603 Wed Oct 4 22:05:36 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13604
13605 * configure.in (CC): Get ^CC, not just any old CC, from
13606 ${host_makefile_frag}.
13607
13608 Wed Oct 4 21:55:00 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13609
13610 * configure.in (CC): Try to get CC from
13611 ${srcdir}/${host_makefile_frag}, not ${host_makefile_frag}.
13612
13613 Wed Oct 4 21:44:12 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13614
13615 * Makefile.in (TARGET_CONFIGDIRS): configure targetdirs
13616 only if it exists in $(srcdir).
13617
13618 Wed Oct 4 11:52:31 1995 Ian Lance Taylor <ian@cygnus.com>
13619
13620 * configure: If CC and CXX are not set in the environment, set
13621 them, based on either an existing Makefile or on searching for gcc
13622 in PATH. Substitute for CC and CXX in Makefile.
13623 * configure.in: Remove libm from target_libs. Separate
13624 target_configdirs from configdirs. If CC is not set in
13625 environment, try to get it from a host Makefile fragment. Rewrite
13626 changes of configdirs to use skipdirs instead. A few minor
13627 tweaks. Take directories out of target_configdirs as they are
13628 taken out of configdirs. Remove existing Makefile files from
13629 subdirectories. Substitute for TARGET_CONFIGDIRS and
13630 CONFIG_ARGUMENTS in Makefile.
13631 * Makefile.in (TARGET_CONFIGDIRS): New variable, automatically set
13632 by configure.in.
13633 (CONFIG_ARGUMENTS): Likewise.
13634 (CONFIGURE_TARGET_MODULES): New variable.
13635 ($(DO_X)): Loop over TARGET_CONFIGDIRS as well as SUBDIRS.
13636 ($(CONFIGURE_TARGET_MODULES)): New target.
13637 (configure-libg++, configure-libio): New targets.
13638 (all-libg++): Depend upon configure-libg++.
13639 (all-libio): Depend upon configure-libio.
13640 (configure-libgloss, all-libgloss): New targets.
13641 (configure-libstdc++): New target.
13642 (all-libstdc++): Depend upon configure-libstdc++.
13643 (configure-librx, all-librx): New targets.
13644 (configure-newlib): New target.
13645 (all-newlib): Depend upon configure-newlib
13646 (configure-xiberty): New target.
13647 (all-xiberty): Depend upon configure-xiberty.
13648
13649 Sat Sep 30 04:32:59 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13650
13651 * configure.in (host i[345]86-*-win32): Expand the
13652 noconfigdirs again.
13653
13654 Thu Sep 28 21:18:49 1995 Stan Shebs <shebs@andros.cygnus.com>
13655
13656 * mpw-configure: Fix sed command file name.
13657
13658 Thu Sep 28 17:39:56 1995 steve chamberlain <sac@slash.cygnus.com>
13659
13660 * configure.in (host i[345]86-*-win32): Reduce the
13661 noconfigdirs again.
13662
13663 Wed Sep 27 12:24:00 1995 Ian Lance Taylor <ian@cygnus.com>
13664
13665 * configure.in: Don't configure ld and gdb for powerpc*-*-winnt*
13666 or powerpc*-*-pe*, since they are not yet supported.
13667
13668 Tue Sep 26 14:30:01 1995 Stan Shebs <shebs@andros.cygnus.com>
13669
13670 Add PowerMac support and many other enhancements.
13671 * mpw-configure: New option --cc to select compiler to use,
13672 paste options set according to --cc into the generated
13673 Makefile, generate the Makefile by sed'ing the Unix Makefile.in
13674 if mpw-make.sed is present.
13675 * mpw-config.in: Don't test for gC1, test for mpw-touch,
13676 add forward includes for PowerPC include files.
13677 * mpw-build.in: Build using Makefile.PPC if present.
13678 (do-byacc, etc): Remove separate version resource builds.
13679 (do-gas): Build "stamps" before "all".
13680 (do-gcc): Build "stamps-h" and "stamps-c" before "all".
13681 * mpw-README: Update to reflect --cc option, PowerMac support,
13682 and recently-reported compatibility problems.
13683
13684 Fri Sep 22 12:15:42 1995 Doug Evans <dje@deneb.cygnus.com>
13685
13686 * cfg-ml-com.in (m68*-*-*): Only build multilibs for
13687 embedded m68k systems (-aout, -coff, -elf, -vxworks).
13688 (--with-multilib-top): Pass to recursive invocations.
13689
13690 Tue Sep 19 13:51:05 1995 J.T. Conklin <jtc@blues.cygnus.com>
13691
13692 * configure.in (noconfigdirs): Disable libg++ and libstdc++ on
13693 v810-*-*.
13694
13695 Mon Sep 18 23:08:26 1995 J.T. Conklin <jtc@rtl.cygnus.com>
13696
13697 * configure.in (noconfigdirs): Disable bfd, binutils, gas, gcc,
13698 gdb, ld and opcodes on v810-*-*.
13699
13700 Tue Sep 12 18:03:31 1995 Ian Lance Taylor <ian@cygnus.com>
13701
13702 * Makefile.in (DO_X): Change do-realclean to do-maintainer-clean.
13703 (local-maintainer-clean): New target.
13704 (maintainer-clean): New target.
13705 (realclean): Just depend upon maintainer-clean.
13706
13707 Fri Sep 8 17:11:14 1995 J.T. Conklin <jtc@rtl.cygnus.com>
13708
13709 * configure.in (noconfigdirs): Disable gdb on m68k-*-netbsd*.
13710
13711 Fri Sep 8 16:46:29 1995 Ian Lance Taylor <ian@cygnus.com>
13712
13713 * configure.in: Build ld in mips*-*-bsd* case.
13714
13715 Thu Sep 7 20:03:41 1995 Ken Raeburn <raeburn@cygnus.com>
13716
13717 * config.sub: Accept -lites* OS. From Ian Dall.
13718
13719 Fri Sep 1 08:06:58 1995 James G. Smith <jsmith@beauty.cygnus.com>
13720
13721 * config.sub: recognise mips64vr4300 and mips64vr4300el as valid
13722 targets.
13723
13724 Wed Aug 30 21:06:50 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13725
13726 * configure.in: treat i386-win32 canadian cross the same as
13727 i386-go32 canadian cross.
13728
13729 Thu Aug 24 14:53:20 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13730
13731 * cfg-ml-com.in (powerpc*-*-eabisim): Add support for PowerPC
13732 running under the simulator to build a reduced set of libraries.
13733 (powerpc-*-eabiaix): Add fine grained multilib support added to
13734 other powerpc targets yesterday.
13735
13736 Wed Aug 23 09:41:56 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13737
13738 * cfg-ml-com.in (powerpc*): Add support for -disable-biendian,
13739 -disable-softfloat, -disable-relocatable, -disable-aix, and
13740 -disable-sysv to control which multilib libraries get built.
13741
13742 Thu Aug 17 16:03:41 1995 Ken Raeburn <raeburn@kr-laptop.cygnus.com>
13743
13744 * configure: Add Makefile.tem to list of files to remove in trap
13745 handler.
13746
13747 Mon Aug 14 19:27:56 1995 Per Bothner <bothner@kalessin.cygnus.com>
13748
13749 * config.guess (*Linux*): Add missing "exit"s.
13750 Also, need specific check for alpha-unknown-linux (uses COFF).
13751
13752 Fri Aug 11 15:38:20 1995 Per Bothner <bothner@kalessin.cygnus.com>
13753
13754 * config.guess: Merge with FSF:
13755
13756 Wed Jun 28 17:57:27 1995 David Edelsohn <edelsohn@mhpcc.edu>
13757 * config.guess (AIX4): More robust release numbering discovery.
13758
13759 Thu Jun 22 19:01:24 1995 Kenneth Stailey (kstailey@eagle.dol-esa.gov)
13760 * config.guess (i386-sequent-ptx): Properly get version number.
13761
13762 Thu Jun 22 18:36:42 1995 Uwe Seimet (seimet@iris1.chemie.uni-kl.de)
13763 * config.guess (mips:*:4*:UMIPS): New case.
13764
13765 Mon Aug 7 09:21:35 1995 Doug Evans <dje@canuck.cygnus.com>
13766
13767 * configure.in (i386-go32 host): Fix typo (deja-gnu -> dejagnu).
13768 (i386-win32 host): Likewise. Don't build readline.
13769
13770 Sat Aug 5 09:51:49 1995 Fred Fish <fnf@rtl.cygnus.com>
13771
13772 * Makefile.in (GDBTK_SUPPORT_DIRS): Define and pass as part of
13773 SUPPORT_FILES to submakes.
13774
13775 Fri Aug 4 13:04:36 1995 Fred Fish <fnf@cygnus.com>
13776
13777 * Makefile.in (GDB_SUPPORT_DIRS): Add utils.
13778 (DEVO_SUPPORT): Add mpw-README, mpw-build.in, mpw-config.h and
13779 mpw-configure.
13780
13781 Wed Aug 2 16:32:40 1995 Ken Raeburn <raeburn@cygnus.com>
13782
13783 * configure.in (appdirs): Use =, not ==, in test expression when
13784 trying to build the text to print in the warning message for
13785 Solaris users.
13786
13787 Mon Jul 31 09:56:18 1995 steve chamberlain <sac@slash.cygnus.com>
13788
13789 * cfg-ml-com.in (z8k-*-coff): Add 'std' multilib build.
13790
13791 Fri Jul 28 00:16:31 1995 Jeffrey A. Law <law@rtl.cygnus.com>
13792
13793 * config.guess: Recognize lynx-2.3.
13794
13795 Thu Jul 27 15:47:59 1995 steve chamberlain <sac@slash.cygnus.com>
13796
13797 * config.sub (z8ksim): Deleted
13798 (z8k-*-coff): New, this is the one true name of the target.
13799
13800 Thu Jul 27 14:33:33 1995 Doug Evans <dje@canuck.cygnus.com>
13801
13802 * cfg-ml-pos.in (dotdot): Work around SunOS sed bug.
13803
13804 Thu Jul 27 13:31:05 1995 Fred Fish (fnf@cygnus.com)
13805
13806 * config.guess (*:Linux:*:*): First try asking the linker what the
13807 default object file format is (elf, aout, or coff). Then if this
13808 fails, try previous methods.
13809
13810 Thu Jul 27 11:28:17 1995 J.T. Conklin <jtc@rtl.cygnus.com>
13811
13812 * configure.in: Don't build newlib for *-*-vxworks5.1.
13813
13814 Thu Jul 27 11:18:47 1995 Brendan Kehoe <brendan@lisa.cygnus.com>
13815
13816 * configure.in: Don't build newlib for a29k-*-vxworks5.1.
13817 * test-build.mk: Add setting of --with-headers for a29k-vxworks5.1.
13818
13819 Tue Jul 25 21:25:39 1995 Doug Evans <dje@canuck.cygnus.com>
13820
13821 * cfg-ml-pos.in (MULTITOP): Trim excess trailing "/.".
13822
13823 Fri Jul 21 10:41:12 1995 Doug Evans <dje@canuck.cygnus.com>
13824
13825 * cfg-ml-com.in: New file.
13826 * cfg-ml-pos.in: New file.
13827
13828 Wed Jul 19 00:37:27 1995 Jeffrey A. Law <law@rtl.cygnus.com>
13829
13830 * COPYING.NEWLIB: Add HP free copyright to list.
13831
13832 Tue Jul 18 10:58:51 1995 Michael Meissner <meissner@tiktok.cygnus.com>
13833
13834 * config.sub: Recognize -eabi* for the system, not just -eabi.
13835
13836 Mon Jul 3 13:44:51 1995 Steve Chamberlain <sac@slash.cygnus.com>
13837
13838 * Makfile.in (DLLTOOL_FOR_TARGET): New name, pass it down.
13839 * config.sub, configure.in (win32): New target and host.
13840
13841 Wed Jun 28 23:57:08 1995 Steve Chamberlain <sac@slash.cygnus.com>
13842
13843 * configure.in: Add i386-pe configuration.
13844
13845 Fri Jun 23 14:28:44 1995 Stan Shebs <shebs@andros.cygnus.com>
13846
13847 * mpw-build.in (install): Install GDB after LD.
13848
13849 Thu Jun 22 17:10:53 1995 Stan Shebs <shebs@andros.cygnus.com>
13850
13851 * mpw-config.in (elf/mips.h): Always forward-include, needed
13852 for GDB to build.
13853
13854 Wed Jun 21 15:17:30 1995 Rob Savoye <rob@darkstar.cygnus.com>
13855
13856 * testsuite: New directory for customer acceptance and whole tool
13857 chain tests.
13858
13859 Wed Jun 21 16:50:29 1995 Ken Raeburn <raeburn@cujo.cygnus.com>
13860
13861 * configure: If per-host line isn't found, but AC_OUTPUT is found
13862 and a configure script exists, run it instead.
13863
13864 Thu Jun 15 21:09:24 1995 Per Bothner <bothner@kalessin.cygnus.com>
13865
13866 * config.guess: Update from FSF, for alpha-dec-winnt3.5 and Crays.
13867
13868 Tue Jun 13 21:43:27 1995 Rob Savoye <rob@darkstar.cygnus.com>
13869
13870 * configure: Set build_{cpu,vendor,os,alias} to host values when
13871 --build isn't specified.
13872
13873 Mon Jun 5 18:26:36 1995 Jason Merrill <jason@phydeaux.cygnus.com>
13874
13875 * Makefile.in (PICFLAG, PICFLAG_FOR_TARGET): New macros.
13876 (FLAGS_TO_PASS): Pass them.
13877 (EXTRA_TARGET_FLAGS): Ditto.
13878
13879 Wed May 31 22:27:42 1995 Jim Wilson <wilson@chestnut.cygnus.com>
13880
13881 * Makefile.in (all-libg++): Depend on all-libstdc++.
13882
13883 Thu May 25 22:40:59 1995 J.T. Conklin <jtc@rtl.cygnus.com>
13884
13885 * configure.in (noconfigdirs): Enable all packages for
13886 i386-unknown-netbsd.
13887
13888 Sat May 20 13:22:31 1995 Angela Marie Thomas <angela@cirdan.cygnus.com>
13889
13890 * configure.in (noconfigdirs): Don't configure tk for i386-go32
13891 hosted builds (DOS builds)
13892
13893 Thu May 18 18:08:49 1995 Ken Raeburn <raeburn@kr-laptop.cygnus.com>
13894
13895 Changes for ARM based on patches from Richard Earnshaw:
13896 * config.sub: Handle armeb and armel.
13897 * configure.in: Omit arm linker only for riscix.
13898
13899 Thu May 11 17:23:26 1995 Per Bothner <bothner@kalessin.cygnus.com>
13900
13901 * config.guess: Update from FSF.
13902
13903 Tue May 9 15:52:05 1995 Michael Meissner <meissner@cygnus.com>
13904
13905 * config.sub: Recognize powerpcle as the little endian varient of
13906 the PowerPC. Recgonize ppc as a PowerPC variant, and ppcle as a
13907 powerpcle variant. Convert pentium into i586, not i486. Add p5
13908 alias for i586. Map new x86 variants p6, k5, nexgen into i586
13909 temporarily.
13910
13911 Tue May 2 16:29:41 1995 Jeff Law (law@snake.cs.utah.edu)
13912
13913 * configure.in (hppa*-*-lites*): Treat like hppa*-*-*elf*.
13914
13915 Sun Apr 30 21:38:09 1995 Jeff Law (law@snake.cs.utah.edu)
13916
13917 * config.sub: Accept -lites* as a basic system type.
13918
13919 Thu Apr 27 11:33:29 1995 Michael Meissner (meissner@cygnus.com)
13920
13921 * config.guess (*:Linux:*:*): Check for whether the pre-BFD linker is
13922 installed, and if so return linuxoldld as the system name.
13923
13924 Wed Apr 26 10:59:02 1995 Jeff Law (law@snake.cs.utah.edu)
13925
13926 * config.guess: Add hppa1.1-hp-lites support.
13927
13928 Tue Apr 25 11:08:11 1995 Rob Savoye <rob@darkstar.cygnus.com>
13929
13930 * configure.in: Don't build newlib for m68k-vxworks5.1.
13931
13932 Wed Apr 19 17:02:43 1995 Jim Wilson <wilson@chestnut.cygnus.com>
13933
13934 * configure.in (mips-sgi-irix6): Use mh-irix5.
13935
13936 Fri Apr 14 15:21:17 1995 Doug Evans <dje@chestnut.cygnus.com>
13937
13938 * Makefile.in (all-gcc): Depend on all-ld (for libgcc1-test).
13939
13940 Wed Apr 12 16:06:01 1995 Jason Merrill <jason@phydeaux.cygnus.com>
13941
13942 * test-build.mk: Enable building of shared libraries on IRIX 5 and
13943 OSF/1. Fix compiler flags.
13944 * build-all.mk: Support Linux and OSF/1 3.0. Fix compiler flags.
13945
13946 Tue Apr 11 18:55:40 1995 Doug Evans <dje@canuck.cygnus.com>
13947
13948 * configure.in: Recognize --with-newlib.
13949 (sparc-*-sunos4*): Build sim, dejagnu, expect, tcl if cross target.
13950
13951 Mon Apr 10 14:38:20 1995 Jason Molenda (crash@phydeaux.cygnus.com)
13952
13953 * Makefile.in: move {all,check,install}-gdb from *_MODULES
13954 to *_X11_MODULES due to gdbtk needing X include files et al.
13955
13956 Mon Apr 10 11:42:22 1995 Stan Shebs <shebs@andros.cygnus.com>
13957
13958 Merge in support for Mac MPW as a host.
13959 (Old change descriptions retained for informational value.)
13960
13961 * mpw-config.in: Add generic include forwards for cpu-specific
13962 include files in aout and elf directories.
13963
13964 * mpw-configure: Added copyright.
13965 * mpw-config.in: Check for presence of required build tools.
13966 (target_libs): Add newlib.
13967 (target_tools): Add examples.
13968 (Read Me): Generate as "Read Me for MPW" instead.
13969 * mpw-build.in: Base sub-builds on all-foo instead of do-foo.
13970 (all-byacc, do-byacc, all-flex, do-flex, do-newlib): New actions.
13971 (do-gas, do-gcc, do-gdb, do-ld): Build Version.r first.
13972
13973 * mpw-configure: Remove subdir-specific makefile hackery,
13974 delete mk.tmp after using it.
13975
13976 * mpw-build.in (all): Display start and end times.
13977
13978 * mpw-configure (host_canonical): Set.
13979 (target_cpu): Always add to makefiles.
13980 (ARCHDEFS, EMUL): Add to makefile only if nonempty.
13981 (TM_FILE, XM_FILE, NM_FILE): No longer add to makefile.
13982 (mpw-mh-mpw): Look for in srcdir and srcroot.
13983 Use sed instead of mpw-edit-prefix to edit prefix definitions.
13984
13985 * mpw-build.in: (install-only): New target.
13986
13987 * mpw-configure (host_alias, target_alias): Rename from hostalias
13988 and targetalias, add into generated Makefile.
13989 (mk.tmp): If present, add into generated Makefile.
13990 * mpw-build.in (all-gas): Build config.h first before gas proper.
13991
13992 * mpw-configure (config.status): Write only if changed.
13993 * mpw-config.in (readline): Configure it (not built, just used for
13994 definitions).
13995
13996 * mpw-config.in (elf/mips.h): Add a forward include.
13997
13998 * mpw-config.in: Forward-include most .h files in include into
13999 extra-include.
14000 (readline): Don't build.
14001 mpw-build.in (install): Install GDB.
14002
14003 * mpw-configure (prefix, mpw_prefix): Handle it.
14004 * mpw-config.in (mmalloc, readline): Don't configure.
14005 * mpw-build.in (thisscript): Rename to ThisScript.
14006 Use mpw-build instead of BuildProgram everywhere.
14007 (mmalloc, readline): Don't build.
14008 * mpw-README: New file, basic documentation about the MPW port.
14009
14010 * mpw-config.in: Use forward-include to create include files.
14011
14012 * mpw-configure: Add more things to the top of each configured
14013 Makefile, including contents of config/mpw-mh-mpw.
14014 * mpw-config.in (extra-include): Create this directory and fill it
14015 with Posix-like include files when configuring.
14016
14017 * config.sub (apple, mac, mpw): Add various aliases.
14018
14019 * mpw-build.in: New file, top-level build script fragment for MPW.
14020 * mpw-configure: New file, configure script for MPW.
14021 * mpw-config.in: New file, config fragment for MPW.
14022
14023 Fri Apr 7 19:33:16 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
14024
14025 * configure.in (host_libs): Remove glob, since it is gone from the
14026 sources.
14027
14028 Fri Mar 31 11:36:17 1995 Jason Molenda (crash@phydeaux.cygnus.com)
14029
14030 * Makefile.in: define empty GDB_NLM_DEPS var.
14031
14032 * configure.in(target_makefile_frag): use config/mt-netware
14033 for netware targets.
14034
14035 Thu Mar 30 13:51:43 1995 Ian Lance Taylor <ian@cygnus.com>
14036
14037 * config.sub: Merge in recent FSF changes. Remove linux special
14038 cases.
14039
14040 Tue Mar 28 14:47:34 1995 Jason Molenda (crash@phydeaux.cygnus.com)
14041
14042 Revert this change:
14043
14044 Tue Mar 30 10:03:09 1993 Ian Lance Taylor (ian@cygnus.com)
14045
14046 * build-all.mk: Use CC=cc -Xs on Solaris.
14047
14048 Tue Mar 21 10:43:32 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
14049
14050 * glob/*: Removed. Schauer's 24 Feb 1994 readline change made us
14051 stop using it.
14052 * Makefile.in: Nuke all references to glob subdirectory.
14053
14054 Thu Mar 16 13:35:30 1995 Jason Merrill <jason@phydeaux.cygnus.com>
14055
14056 * configure.in: Fix --enable-shared logic in per-host.
14057
14058 Mon Mar 13 12:33:15 1995 Ian Lance Taylor <ian@cygnus.com>
14059
14060 * configure.in (*-hp-hpux[78]*): Use mh-hpux8.
14061
14062 Mon Mar 6 10:21:58 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
14063
14064 * configure.in (noconfigdirs): Don't build gas on AIX, for
14065 powerpc*-*-aix* as well as for rs6000*-*-aix*.
14066
14067 Wed Mar 1 12:51:53 1995 Ian Lance Taylor <ian@cygnus.com>
14068
14069 * configure: Fix --cache-file to work if the file argument is a
14070 relative path.
14071
14072 Tue Feb 28 17:36:07 1995 Ian Lance Taylor <ian@cygnus.com>
14073
14074 * configure: If the --cache-file is used, pass it down to
14075 configure in subdirectories.
14076
14077 Mon Feb 27 12:52:46 1995 Kung Hsu <kung@mexican.cygnus.com>
14078
14079 * config.sub: add vxworks29k configuration.
14080
14081 Fri Feb 10 16:12:26 1995 Ken Raeburn <raeburn@cujo.cygnus.com>
14082
14083 * Makefile.in (taz): Do "diststuff" part quietly.
14084
14085 Sun Feb 5 14:16:35 1995 Doug Evans <dje@canuck.cygnus.com>
14086
14087 * config.sub: Mini-merge with gcc/config.sub.
14088
14089 Sat Feb 4 12:11:35 1995 Jim Wilson <wilson@chestnut.cygnus.com>
14090
14091 * config.guess (IRIX): Sed - to _.
14092
14093 Fri Feb 3 11:54:42 1995 J.T. Conklin <jtc@rtl.cygnus.com>
14094
14095 * Makefile.in (source-vault, binary-vault): New targets.
14096
14097 Thu Jan 26 13:00:11 1995 Michael Meissner <meissner@cygnus.com>
14098
14099 * config.sub: Recognize -eabi as a basic system type.
14100
14101 Thu Jan 12 13:13:23 1995 Jason Merrill <jason@phydeaux.cygnus.com>
14102
14103 * configure.in (enable_shared stuff): Fix typo.
14104
14105 Thu Jan 12 01:36:51 1995 deanm@medulla.LABS.TEK.COM (Dean Messing)
14106
14107 * Makefile.in (BASE_FLAGS_TO_PASS): Fix typo in passing LIBCXXFLAGS*.
14108
14109 Wed Jan 11 16:29:53 1995 Jason Merrill <jason@phydeaux.cygnus.com>
14110
14111 * Makefile.in (LIBCXXFLAGS_FOR_TARGET): Add -fno-implicit-templates.
14112
14113 Mon Jan 9 12:48:01 1995 Jim Kingdon <kingdon@lioth.cygnus.com>
14114
14115 * configure.in (rs6000-*-*): Don't build gas.
14116
14117 Wed Jan 4 23:53:49 1995 Ian Lance Taylor <ian@tweedledumb.cygnus.com>
14118
14119 * Makefile.in: Use /x/x/ instead of /brokensed/brokensed/, to
14120 reduce command line length.
14121 (AS_FOR_TARGET): Check for as.new, not Makefile.
14122 (NM_FOR_TARGET): Check for nm.new, not Makefile.
14123
14124 Wed Jan 4 13:02:39 1995 Per Bothner <bothner@kalessin.cygnus.com>
14125
14126 * config.guess: Merge from FSF.
14127
14128 Thu Dec 15 17:11:37 1994 Ian Lance Taylor <ian@sanguine.cygnus.com>
14129
14130 * configure: Don't use $ when handling program_suffix.
14131
14132 Mon Dec 12 12:09:37 1994 Stu Grossman (grossman@cygnus.com)
14133
14134 * configure.in: Configure tk for hppa/hpux.
14135
14136 Fri Dec 2 15:55:38 1994 Per Bothner <bothner@kalessin.cygnus.com>
14137
14138 * Makefile.in (LIBGXX_SUPPORT_DIRS): Add libstdc++.
14139
14140 Tue Nov 29 19:37:56 1994 Per Bothner <bothner@kalessin.cygnus.com>
14141
14142 * Makefile.in: Move -fno-implicit-template from CXXFLAGS
14143 to LIBCXXFLAGS. Tests are better run without it.
14144
14145 Wed Nov 23 10:29:25 1994 Brendan Kehoe (brendan@lisa.cygnus.com)
14146
14147 * Makefile.in (all-ispell): Depend on all-emacs19 instead of all-emacs.
14148
14149 Mon Nov 21 11:14:01 1994 J.T. Conklin <jtc@rtl.cygnus.com>
14150
14151 * configure.in (*-*-netware*): Don't configure xiberty.
14152
14153 Mon Nov 14 08:49:15 1994 Stu Grossman (grossman@cygnus.com)
14154
14155 * configure.in: Remove tk from native_only list.
14156
14157 Fri Nov 11 15:31:26 1994 Bill Cox (bill@rtl.cygnus.com)
14158
14159 * build-all.mk: Add mips-ncd-elf target to sun4 targets
14160 for special NCD build.
14161
14162 Mon Nov 7 20:58:17 1994 Ken Raeburn <raeburn@cujo.cygnus.com>
14163
14164 * Makefile.in (DEVO_SUPPORT): Remove configure.bat and
14165 makeall.bat, they're only useful for binutils snapshots.
14166 (binutils.tar.gz, gas+binutils.tar.gz): Add configure.bat and
14167 makeall.bat to specified SUPPORT_FILES.
14168
14169 Mon Nov 7 17:25:18 1994 Bill Cox (bill@cirdan.cygnus.com)
14170
14171 * build-all.mk: Add Ericsson targets to sun4 and solaris
14172 hosts. Add BNR's sun4 target to solaris host, so their
14173 build-from-source will be tested in-house first.
14174
14175 Sat Nov 5 18:43:30 1994 Jason Merrill (jason@phydeaux.cygnus.com)
14176
14177 * Makefile.in (LIBCFLAGS): New variable.
14178 (CFLAGS_FOR_TARGET): Ditto.
14179 (LIBCFLAGS_FOR_TARGET): Ditto.
14180 (LIBCXXFLAGS): Ditto.
14181 (CXXFLAGS_FOR_TARGET): Ditto.
14182 (LIBCXXFLAGS_FOR_TARGET): Ditto.
14183 (BASE_FLAGS_TO_PASS): Pass them.
14184 (EXTRA_TARGET_FLAGS): Ditto.
14185
14186 * configure.in: Support --enable-shared.
14187
14188 Sat Nov 5 15:44:00 1994 Per Bothner <bothner@kalessin.cygnus.com>
14189
14190 * configure.in (target_libs): Include libstdc++ again.
14191 * config.guess: Update from FSF (for FreeBSD).
14192
14193 Thu Nov 3 16:32:30 1994 Ken Raeburn <raeburn@cujo.cygnus.com>
14194
14195 * Makefile.in (DEVO_SUPPORT): Include configure.bat and
14196 makeall.bat.
14197 (DISTDOCDIRS): Add `etc'.
14198 (ETC_SUPPORT_PFX): New variable.
14199 (taz): Include anything from etc starting with a word in
14200 ETC_SUPPORT_PFX.
14201
14202 Wed Oct 26 16:19:35 1994 Ian Lance Taylor <ian@sanguine.cygnus.com>
14203
14204 * config.sub: Update for recent FSF changes. Remove obsolete
14205 h8300hds entry. Add -windows* and -osx as basic os. Minor
14206 spacing changes.
14207
14208 Thu Oct 20 18:41:56 1994 Per Bothner <bothner@kalessin.cygnus.com>
14209
14210 * configure.in (target_libs): Remove libstdc++ for libg++-2.6.1.
14211
14212 * config.guess: Merge with FSF.
14213 * configure.in: Match on i?86-ncr-sysv4.3, not i?86-ncr-sysv43.
14214
14215 Thu Oct 20 19:26:56 1994 Ken Raeburn <raeburn@cujo.cygnus.com>
14216
14217 * configure: Since the "trap 0" handler will override the exit
14218 status on many systems, only use it for "exit 1", and make it set
14219 a non-zero exit status; reset it before "exit 0". Also, check
14220 exit status of config.sub, and error out if it failed.
14221
14222 Wed Oct 19 18:49:55 1994 Rob Savoye (rob@cygnus.com)
14223
14224 * Makefile.in: (ALL_TARGET_MODULES,INSTALL_TARGET_MODULES) Build
14225 and install libgloss.
14226
14227 Tue Oct 18 15:25:24 1994 Ian Lance Taylor <ian@sanguine.cygnus.com>
14228
14229 * Makefile.in (all-binutils): Depend upon all-byacc.
14230
14231 * configure.in: Don't build emacs on Irix 5.
14232
14233 Mon Oct 17 16:22:12 1994 J.T. Conklin (jtc@phishhead.cygnus.com)
14234
14235 * configure.in (*-*-netware*): Add libio.
14236
14237 Thu Oct 13 15:51:20 1994 Jason Merrill (jason@phydeaux.cygnus.com)
14238
14239 * Makefile.in (ALL_TARGET_MODULES): Add libstdc++.
14240 (CHECK_TARGET_MODULES): Ditto.
14241 (INSTALL_TARGET_MODULES): Ditto.
14242 (TARGET_LIBS): Ditto.
14243 (all-libstdc++): Note dependencies.
14244
14245 Thu Oct 13 01:43:08 1994 Ken Raeburn <raeburn@cujo.cygnus.com>
14246
14247 * Makefile.in (BINUTILS_SUPPORT_DIRS): Add gas.
14248
14249 Tue Oct 11 12:12:29 1994 Jason Merrill (jason@phydeaux.cygnus.com)
14250
14251 * Makefile.in (CXXFLAGS): Use -fno-implicit-templates instead of
14252 -fexternal-templates.
14253
14254 * configure.in (target_libs): Add libstdc++.
14255 (noconfigdirs): Add libstdc++ as appropriate.
14256
14257 Thu Oct 6 18:00:54 1994 Per Bothner (bothner@kalessin.cygnus.com)
14258
14259 * config.guess: Update from FSF.
14260
14261 Tue Oct 4 12:05:42 1994 Ian Lance Taylor <ian@sanguine.cygnus.com>
14262
14263 * configure: Use ${config_shell} when running ${configsub}.
14264
14265 Mon Oct 3 14:28:34 1994 Doug Evans <dje@canuck.cygnus.com>
14266
14267 * config.sub: No longer recognize h8300h.
14268
14269 Mon Oct 3 12:40:54 1994 Ian Lance Taylor <ian@sanguine.cygnus.com>
14270
14271 * config.sub: Remove extraneous differences between config.sub and
14272 gcc/config.sub.
14273
14274 Sat Oct 1 00:23:12 1994 Ken Raeburn <raeburn@cujo.cygnus.com>
14275
14276 * Makefile.in (DISTSTUFFDIRS): Add gas.
14277
14278 Thu Sep 22 19:04:55 1994 Doug Evans (dje@canuck.cygnus.com)
14279
14280 * COPYING.NEWLIB: New file.
14281
14282 Mon Sep 19 18:25:40 1994 Per Bothner (bothner@kalessin.cygnus.com)
14283
14284 * config.guess (HP-UX): Patch from Harlan Stenn
14285 <harlan@landmark.com> to also emit release level.
14286
14287 Wed Sep 7 13:15:25 1994 Jim Wilson (wilson@sphagnum.cygnus.com)
14288
14289 * config.guess (sun4*:SunOS:*:*): Change '-JL' to '_JL'.
14290
14291 Tue Sep 6 23:23:18 1994 Per Bothner (bothner@kalessin.cygnus.com)
14292
14293 * config.sub: Merge nextstep cleanup from FSF.
14294
14295 Mon Sep 5 05:01:30 1994 Ken Raeburn (raeburn@kr-pc.cygnus.com)
14296
14297 * configure.in (arm-*-*): Don't configure ld for this target.
14298
14299 Thu Sep 1 09:35:00 1994 J.T. Conklin (jtc@phishhead.cygnus.com)
14300
14301 * configure.in (*-*-netware): don't configure libg++, libio,
14302 librx, or newlib.
14303
14304 Wed Aug 31 13:52:08 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14305
14306 * configure.in (alpha-dec-osf*): Use osf*, not osf1*. Don't
14307 configure ld--it works, but it doesn't support shared libraries.
14308
14309 Sun Aug 28 18:13:45 1994 Per Bothner (bothner@kalessin.cygnus.com)
14310
14311 * config.guess (*-unknown-freebsd*): Get rid of possible
14312 trailing "(Release)" in version string.
14313 Patch from Paul Richards <paul@isl.cf.ac.uk>.
14314
14315 Sat Aug 27 15:00:49 1994 Per Bothner (bothner@kalessin.cygnus.com)
14316
14317 * config.guess: Fix i486-ncr-sysv43 -> i486-ncr-sysv4.3.
14318 Fix type: *-next-neststep -> *-next-nextstep.
14319
14320 * config.guess: Merge from FSF:
14321
14322 Fri Aug 26 18:45:25 1994 Philippe De Muyter (phdm@info.ucl.ac.be)
14323
14324 * config.guess: Recognize powerpc-ibm-aix3.2.5.
14325
14326 Wed Apr 20 06:36:32 1994 Philippe De Muyter (phdm@info.ucl.ac.be)
14327
14328 * config.guess: Recognize UnixWare 1.1 (UNAME_SYSTEM is SYSTEM_V
14329 instead of UNIX_SV for UnixWare 1.0).
14330
14331 Sat Aug 27 01:56:30 1994 Stu Grossman (grossman@cygnus.com)
14332
14333 * Makefile.in (all-gdb): Add dependencies on all-gcc and all-ld
14334 to make gdb/nlm/* build after the compiler and linker.
14335
14336 Fri Aug 26 14:30:05 1994 Per Bothner (bothner@kalessin.cygnus.com)
14337
14338 * config.guess (netbsd, freebsd, linux): Accept any machine,
14339 not just i[34]86.
14340 (m68k-atari-sysv4): Relocate to match FSF version.
14341
14342 * config.guess: More merges from the FSF:
14343
14344 Add a space before function call or macro invocation.
14345
14346 Tue May 10 16:53:55 1994 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
14347
14348 * config.guess: Add trap cmd to remove dummy.c and dummy when
14349 interrupted.
14350
14351 Wed Apr 20 18:07:13 1994 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
14352
14353 * config.guess (dummy.c): Redirect stderr for `hostinfo' command.
14354 (dummy): Redirect stderr from compilation of dummy.c.
14355
14356 Sat Apr 9 14:59:28 1994 Christian Kranz (kranz@sent5.uni-duisburg.de)
14357
14358 * config.guess: Distinguish between NeXTStep 2.1 and 3.x.
14359
14360 Fri Aug 26 13:42:20 1994 Ken Raeburn (raeburn@kr-laptop.cygnus.com)
14361
14362 * configure: Accept and ignore --cache*, for compatibility with
14363 new autoconf.
14364
14365 Fri Aug 26 13:05:27 1994 Per Bothner (bothner@kalessin.cygnus.com)
14366
14367 * config.guess: Merge from FSF:
14368
14369 Thu Aug 25 20:28:51 1994 Richard Stallman <rms@mole.gnu.ai.mit.edu>
14370
14371 * config.guess (Pyramid*:OSx*:*:*): New case.
14372 (PATH): Add /.attbin at end for finding uname.
14373 (dummy.c): Handle i860-alliant-bsd. Follow whitespace conventions.
14374
14375 Wed Aug 17 18:21:02 1994 Tor Egge (tegge@pvv.unit.no)
14376
14377 * config.guess (M88*:DolphinOS:*:*): New case.
14378
14379 Thu Aug 11 17:00:13 1994 Stan Cox (coxs@dg-rtp.dg.com)
14380
14381 * config.guess (AViiON:dgux:*:*): Use TARGET_BINARY_INTERFACE
14382 to select whether to use ELF or COFF.
14383
14384 Sun Jul 24 16:20:53 1994 Richard Stallman <rms@mole.gnu.ai.mit.edu>
14385
14386 * config.guess: Recognize i860-stardent-sysv and i860-unknown-sysv.
14387
14388 Sun May 1 10:23:10 1994 Richard Stallman (rms@mole.gnu.ai.mit.edu)
14389
14390 * config.guess: Guess the OS version for HPUX.
14391
14392 Tue Mar 1 21:53:03 1994 Karl Heuer (kwzh@hal.gnu.ai.mit.edu)
14393
14394 * config.guess (UNAME_VERSION): Recognize aix3.2.4 and aix3.2.5.
14395
14396 Fri Aug 26 11:19:08 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14397
14398 * configure.in: Recognize --with-headers, --with-libs, and
14399 --without-newlib.
14400 * Makefile.in (all-xiberty): Depend upon all-ld.
14401
14402 Wed Aug 24 12:36:50 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14403
14404 * configure.in: Change i[34]86 to i[345]86.
14405
14406 Mon Aug 22 10:58:33 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14407
14408 * configure (version): A few more tweaks to help message.
14409
14410 Fri Aug 19 12:40:25 1994 Per Bothner (bothner@kalessin.cygnus.com)
14411
14412 * Makefile.in: Remove (for now) librx as a host library,
14413 now that we're building it for target.
14414
14415 Fri Aug 19 10:49:17 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14416
14417 * configure: Fix up help message; from karl@owl.hq.ileaf.com
14418 (Karl Berry).
14419
14420 Tue Aug 16 16:11:08 1994 Per Bothner (bothner@kalessin.cygnus.com)
14421
14422 * configure.in: Also configure librx.
14423
14424 Mon Aug 15 16:51:45 1994 Per Bothner (bothner@kalessin.cygnus.com)
14425
14426 * Makefile.in: Update various rules to reflect that librx
14427 is now needed for libg++.
14428
14429 Fri Aug 12 18:07:21 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14430
14431 * config.sub: Accept mips64orion and mips64orionel as a CPU name.
14432
14433 Mon Aug 8 11:36:17 1994 Stan Shebs (shebs@andros.cygnus.com)
14434
14435 * configure.in: Configure the examples directory.
14436
14437 Thu Aug 4 16:12:36 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14438
14439 * configure: Simplify Jun 2 1994 change.
14440
14441 Wed Aug 3 04:58:16 1994 D. V. Henkel-Wallace (gumby@cygnus.com)
14442
14443 * change CC to /usr/latest/bin/gcc for lynx host builds, since
14444 /bin/gcc isn't good enough to build gcc.
14445
14446 Wed Jul 27 09:07:14 1994 Fred Fish (fnf@cygnus.com)
14447
14448 * Makefile.in (GDB_SUPPORT_FILES): Remove
14449 (setup-dirs-gdb, gdb.tar.gz, make-gdb.tar.gz): Remove old rules.
14450 (gdb.tar.gz): Add new rule to use standard distribution building
14451 mechanism.
14452
14453 Mon Jul 25 11:10:06 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14454
14455 * configure.in: Warn about use of /usr/ucb/cc on Solaris. From
14456 Bill Cox <bill@cygnus.com>.
14457
14458 Sat Jul 23 12:19:46 1994 Per Bothner (bothner@kalessin.cygnus.com)
14459
14460 * config.guess: Recognize ISC. Patch from kwzh@gnu.ai.mit.edu.
14461
14462 Fri Jul 22 17:53:59 1994 Stu Grossman (grossman@cygnus.com)
14463
14464 * configure: Search current dir first in .gdbinit.
14465
14466 Fri Jul 22 11:28:30 1994 Per Bothner (bothner@kalessin.cygnus.com)
14467
14468 * config.sub: Recognize freebsd (merged from gcc config.sub).
14469
14470 Thu Jul 21 14:10:52 1994 Per Bothner (bothner@kalessin.cygnus.com)
14471
14472 * config.sub: Refer to NeXT's operating system as nextstep.
14473
14474 * config.sub (case $basic_machine): Re-order the cases, to match
14475 the order in the FSF version (which is mostly alphabethical).
14476 Merge in some additions and changes from the FSF.
14477
14478 Sat Jul 16 12:03:08 1994 Stan Shebs (shebs@andros.cygnus.com)
14479
14480 * config.guess: Recognize m68k-atari-sysv4 and m88k-harris-csux7.
14481 * config.sub: Recognize cxux7.
14482 * configure.in: Use mh-cxux for m88k-harris-cxux*.
14483
14484 Mon Jul 11 14:37:39 1994 Per Bothner (bothner@kalessin.cygnus.com)
14485
14486 * config.sub: Fix typo powerpc -> powerpc-*.
14487
14488 Sat Jul 9 13:03:43 1994 Michael Tiemann (tiemann@blues.cygnus.com)
14489
14490 * Makefile.in: `all-emacs19' depends on `all-byacc'.
14491
14492 * Makefile.in: Add all-emacs19 and install-emacs19 rules (in
14493 parallel with all-emacs and install-emacs). Top-level command
14494 `make all-emacs19 CC=gcc' now behaves as `make all-emacs CC=gcc'.
14495
14496 Thu Jun 30 16:53:42 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14497
14498 * test-build.mk ($(host)-stamp-stage2-installed): Remove
14499 $(relbindir)/make before doing ``make install'', and use
14500 $(GNU_MAKE) while doing it. Avoids problem on SunOS with
14501 installing over running make binary.
14502 ($(host)-stamp-stage3-installed): Likewise.
14503
14504 Tue Jun 28 13:43:25 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14505
14506 * config.guess: Recognize Mach.
14507
14508 Mon Jun 27 16:41:14 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
14509
14510 * configure: Check ${exec_prefixoption}, not ${exec_prefix}, to
14511 see whether --exec-prefix was used.
14512
14513 Sun Jun 26 21:15:54 1994 Per Bothner (bothner@kalessin.cygnus.com)
14514
14515 * README: Explicitly mention libg++/README. (Zoo's idea.)
14516
14517 Tue Jun 21 12:45:55 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14518
14519 * Makefile.in: Add all-librx target similar to all-libproc.
14520
14521 Wed Jun 8 23:11:55 1994 Stu Grossman (grossman@cygnus.com)
14522
14523 * config.guess: Rearrange tests for Alpha-OSF1 to properly deal
14524 with post 1.2 uname bogosity.
14525
14526 Thu Jun 9 00:27:59 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14527
14528 * configure: Remove temporary files on receipt of a signal.
14529
14530 Tue Jun 7 12:06:24 1994 Ian Lance Taylor (ian@cygnus.com)
14531
14532 * configure: If there is a package_makefile_frag, remove
14533 ${subdir}/Makefile.tem after copying it in.
14534
14535 Mon Jun 6 21:35:02 1994 D. V. Henkel-Wallace (gumby@cygnus.com)
14536
14537 * build_all.mk: support rs6000 lynx identifies itself as
14538 rs6000-lynx-lynxos2.2.2. Also, use /usr/cygnus/progressive/bin/gcc
14539 since /bin/gcc is too feeble to compile a modern gcc.
14540
14541 Mon Jun 6 16:06:34 1994 Karen Christiansen (karen@cirdan.cygnus.com)
14542
14543 * brought devo/test-build.mk update-to-date with progressive/
14544 test-build.mk. Add lynx targets and hppa flag info.
14545
14546 Sat Jun 4 17:23:54 1994 Per Bothner (bothner@kalessin.cygnus.com)
14547
14548 * configure.in: Use mh-ncrsvr43. Patch from
14549 Tom McConnell <tmcconne@sedona.intel.com>.
14550
14551 Fri Jun 3 17:47:24 1994 Per Bothner (bothner@kalessin.cygnus.com)
14552
14553 * config.guess (i386-unknown-bsdi): No longer need to
14554 check #if defined(__bsdi__) && defined(__i386__).
14555
14556 Thu Jun 2 18:56:46 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14557
14558 * configure: Set program_transform_nameoption correctly.
14559
14560 Thu Jun 2 10:57:06 1994 Karen Christiansen (karen@cirdan.cygnus.com)
14561
14562 * brought build-all.mk update-to-date with progressive build-all.mk,
14563 added new targets and hppa info.
14564
14565 Thu Jun 2 00:12:44 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14566
14567 * configure: If config.guess result is a prefix of the user
14568 specified target, assume a native build and use the user specified
14569 target as the host alias. Remove SunOS patch suffix removal hack.
14570 * configure.in: Remove SunOS patch suffix removal hack.
14571
14572 * Makefile.in (CROSS_CHECK_MODULES): Remove check-flex, since it's
14573 in NATIVE_CHECK_MODULES.
14574
14575 Wed Jun 1 10:49:41 1994 Bill Cox (bill@rtl.cygnus.com)
14576
14577 * Makefile.in: Rename HOST_ONLY to NATIVE.
14578 * configure: Delete SunOs patch suffix from host_canonical
14579 and build_canonical variables that are prepended to Makefiles.
14580 * configure.in: Add comments for easier maintenance.
14581
14582 Tue May 31 19:39:47 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14583
14584 * Makefile.in: Add all-libproc target similar to all-gui.
14585
14586 Tue May 31 17:16:33 1994 Tom Lord (lord@cygnus.com)
14587
14588 * Makefile.in (CHECK_MODULES): split into
14589 HOST_ONLY_CHECK_MODULES and CROSS_CHECK_MODULES.
14590
14591 Tue May 31 16:36:36 1994 Paul Eggert (eggert@twinsun.com)
14592
14593 * config.guess (i386-unknown-bsdi): New system to guess.
14594
14595 Wed May 25 16:47:10 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14596
14597 * Makefile.in: Add all-gui target (but not yet build by "all").
14598
14599 Thu May 26 08:53:19 1994 Bill Cox (bill@rtl.cygnus.com)
14600
14601 * config.sub: Move deletion of patch suffix from here...
14602 * configure.in: To here, at Ian's suggestion. The top-
14603 level scripts might need to know of a patch level.
14604
14605 Wed May 25 09:15:54 1994 Bill Cox (bill@rtl.cygnus.com)
14606
14607 * config.sub: Strip off patch suffix so rtl is recognized
14608 as a sunos4.1.3 machine, even though it's been patched.
14609
14610 Fri May 20 08:25:49 1994 Steve Chamberlain (sac@deneb.cygnus.com)
14611
14612 * Makefile.in (INSTALL_LAST): Delete.
14613 (INSTALL_DOSREL): New.
14614
14615 Thu May 19 17:12:12 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14616
14617 * configure.in: Use ld for i[34]86-*-sysv4* and sparc-*-solaris2*.
14618 Don't set use_gnu_ld to no for *-*-sysv4; that only controls
14619 whether we pass down --with-gnu-ld anyhow.
14620
14621 Thu May 19 09:29:12 1994 Steve Chamberlain (sac@cygnus.com)
14622
14623 * Makefile.in (INSTALL_LAST): Change operation so it works
14624 on more flavors of make.
14625 * configure.in (go32): Don't build libg++ or libio.
14626
14627 Fri May 13 13:28:34 1994 Steve Chamberlain (sac@cygnus.com)
14628
14629 * Makefile.in (Move HOST_PREFIX_1 and friends up so
14630 they can be overriden by templates.
14631
14632 Sat May 7 16:46:44 1994 Steve Chamberlain (sac@cygnus.com)
14633
14634 * configure.in (target==go32): Don't build gdb.
14635 * dosrel: New directory.
14636
14637 Fri May 6 14:19:25 1994 Steve Chamberlain (sac@cygnus.com)
14638
14639 * configure.in (host==go32): Configure dosrel too.
14640 * Makefile.in (INTALL_TARGET): Call INSTALL_LAST last.
14641 (HOST_CC, HOST_PREFIX, HOST_PREFIX_1): Undefine, they should
14642 be set by incoming names or templates.
14643 (INSTALL_LAST): New rule.
14644
14645 Thu May 5 17:35:05 1994 Stan Shebs (shebs@andros.cygnus.com)
14646
14647 * config.sub (sparclitefrw, sparclitefrwcompat): Don't set the os.
14648
14649 Thu May 5 20:06:45 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
14650
14651 * configure.in (appdirs): New variable. Currently empty, but will
14652 be used in gas distribution. If nonempty, lists a set of
14653 directories at least one of which must get configured, or top
14654 level configuration is considered to have failed.
14655 (rs6000-*-lynxos*): Use new file name.
14656
14657 Thu May 5 13:38:36 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14658
14659 Eliminate XTRAFLAGS.
14660 * Makefile.in (CC_FOR_TARGET): If newlib exists, refer to the
14661 newlib include files using -idirafter, and also use -nostdinc.
14662 (CXX_FOR_TARGET): Likewise.
14663 (XTRAFLAGS): Removed.
14664 (BASE_FLAGS_TO_PASS): Remove XTRAFLAGS_FOR_TARGET.
14665 (EXTRA_HOST_FLAGS): Remove XTRAFLAGS.
14666 (EXTRA_TARGET_FLAGS, EXTRA_GCC_FLAGS): Likewise.
14667 ($(DO_X)): Don't pass down XTRAFLAGS.
14668
14669 Thu May 5 00:16:36 1994 Ken Raeburn (raeburn@kr-pc.cygnus.com)
14670
14671 * configure.in (mips*-dec-bsd*): New target; do build linker.
14672 (mips*-*-bsd*): New target; don't build linker.
14673
14674 Wed May 4 20:10:10 1994 D. V. Henkel-Wallace (gumby@cygnus.com)
14675
14676 * configure.in: support rs6000-*-lynxos* configuration.
14677 support sunos4 as a cross target.
14678
14679 * config.sub: look for lynx*, not lynx since the OS version may
14680 legitimately be part of the name.
14681
14682 Tue May 3 21:48:11 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
14683
14684 * configure.in (i[34]86-*-sco*): Move to be with other i386
14685 targets.
14686 (romp-*-*): New target. Skip various binary utilities.
14687 (vax-*-*): New target. Don't build newlib.
14688 (vax-*-vms): Renamed from *-*-vms. Don't build opcodes or newlib.
14689
14690 Thu Apr 28 15:03:05 1994 David J. Mackenzie (djm@rtl.cygnus.com)
14691
14692 * configure.in: Only set host_makefile_frag if config
14693 directory exists.
14694
14695 Wed Apr 27 12:14:30 1994 David J. Mackenzie (djm@rtl.cygnus.com)
14696
14697 * install.sh: If $dstdir exists, don't check whether each
14698 component does.
14699
14700 Tue Apr 26 18:11:33 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14701
14702 * test-build.mk (HOLES): Add sleep; used by rcs/src/conf.sh.
14703
14704 Mon Apr 25 15:06:34 1994 Stan Shebs (shebs@andros.cygnus.com)
14705
14706 * configure.in (*-*-lynxos*): Don't configure newlib for either
14707 native or cross Lynx.
14708
14709 Sat Apr 16 11:58:16 1994 Doug Evans (dje@canuck.cygnus.com)
14710
14711 * config.sub (sparc64-elf): Fix os.
14712 (z8k): Remove duplicate.
14713
14714 Thu Apr 14 23:33:17 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14715
14716 * Makefile.in (gcc-no-fixedincludes): Touch gcc/include/fixed, not
14717 gcc/stmp-fixproto, to try to prevent fixproto from being run.
14718
14719 Wed Apr 13 15:14:52 1994 Bill Cox (bill@cygnus.com)
14720
14721 * configure: Make file links cleanly even if Lynx fails on
14722 an NFS symlink (at least fail cleanly).
14723
14724 Mon Apr 11 10:58:56 1994 Jim Wilson (wilson@sphagnum.cygnus.com)
14725
14726 * test-build.mk (CC): For mips-sgi-irix4, change -XNh1500 to
14727 -XNh2000.
14728
14729 Sat Apr 9 15:10:45 1994 David J. Mackenzie (djm@rtl.cygnus.com)
14730
14731 * configure: Unknown options are fatal again.
14732
14733 Fri Apr 8 12:01:41 1994 David J. Mackenzie (djm@cygnus.com)
14734
14735 * configure: Ignore --x-includes and --x-libraries, for Autoconf
14736 compatibility.
14737
14738 Thu Apr 7 17:31:43 1994 Doug Evans (dje@canuck.cygnus.com)
14739
14740 * build-all.mk: Add `clean' target.
14741
14742 Wed Apr 6 20:44:56 1994 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
14743
14744 * config.guess: Add SINIX support.
14745 * configure.in: Add mips-*-sysv4* support.
14746
14747 Mon Apr 4 17:41:44 1994 Doug Evans (dje@canuck.cygnus.com)
14748
14749 * build-all.mk: Document all useful targets.
14750 If canonhost is sparc-sun-solaris2.3, change it to sparc-sun-solaris2.
14751 If canonhost is mips-sgi-irix4.0.5H, change it to mips-sgi-irix4.
14752
14753 Thu Mar 31 04:55:57 1994 David J. Mackenzie (djm@rtl.cygnus.com)
14754
14755 * configure: Support --silent, --quiet.
14756
14757 Wed Mar 30 21:37:38 1994 David J. Mackenzie (djm@rtl.cygnus.com)
14758
14759 * configure: Support --disable-FEATURE.
14760
14761 Tue Mar 29 19:15:05 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14762
14763 * config.guess: Recognize NCR running SVR4.3.
14764
14765 Mon Mar 28 14:55:15 1994 Per Bothner (bothner@kalessin.cygnus.com)
14766
14767 * config.guess: Make BSDI generate i386-unknown-bsd386.
14768 Patch from Paul Eggert <eggert@twinsun.com>.
14769
14770 Mon Mar 28 12:54:52 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14771
14772 * configure.in (powerpc-*-aix*): Treat like rs6000-*-*.
14773
14774 Sat Mar 26 11:25:48 1994 David J. Mackenzie (djm@rtl.cygnus.com)
14775
14776 * configure: Make unrecognized options give nonfatal warnings
14777 instead of fatal errors, and pass them to any subdirectory
14778 configures in case they recognize them.
14779 Make --x equivalent to --with-x.
14780
14781 Fri Mar 25 21:52:10 1994 David J. Mackenzie (djm@rtl.cygnus.com)
14782
14783 * configure: Add --enable-* options. Clean up usage message and
14784 some comments.
14785
14786 Thu Mar 24 09:12:53 1994 Doug Evans (dje@canuck.cygnus.com)
14787
14788 * Makefile.in (NM_FOR_TARGET): Build tree version is now nm.new.
14789
14790 Sun Mar 20 11:28:22 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
14791
14792 * configure.in (hppa*-*-*): Enable binutils.
14793
14794 Sat Mar 19 11:50:16 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14795
14796 * config.sub: Recognize cisco.
14797
14798 Fri Mar 18 16:42:32 1994 Jason Merrill (jason@deneb.cygnus.com)
14799
14800 * Makefile.in (CXXFLAGS): Add -fexternal-templates.
14801
14802 Tue Mar 15 11:25:55 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14803
14804 * config.guess: about target *-hitachi-hiuxwe2, don't print more
14805 than one configuration name. Add comment.
14806
14807 Sun Mar 6 23:13:38 1994 Hisashi MINAMINO (minamino@sra.co.jp)
14808
14809 * config.guess: about target *-hitachi-hiuxwe2, fixed
14810 machine guessing order. [Hitachi's CPU_IS_HP_MC68K
14811 macro is incorrect.]
14812
14813 Sun Mar 13 09:10:08 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14814
14815 * Makefile.in (TAGS): Just build TAGS in each subdirectory, rather
14816 than the "make ls" stuff which used to be here.
14817
14818 Fri Mar 11 12:52:39 1994 Per Bothner (bothner@kalessin.cygnus.com)
14819
14820 * config.guess: Recognize i[34]86-unknown-freebsd.
14821 From Shawn M Carey <smcarey@rodan.syr.edu>.
14822
14823 Thu Mar 3 14:24:21 1994 Per Bothner (bothner@kalessin.cygnus.com)
14824
14825 * configure.in (noconfigdirs for alpha): Remove libg++ and libio.
14826
14827 Wed Mar 2 13:28:48 1994 Jim Kingdon (kingdon@deneb.cygnus.com)
14828
14829 * config.guess: Check for ptx.
14830
14831 Mon Feb 28 16:46:50 1994 Kung Hsu (kung@mexican.cygnus.com)
14832
14833 * config.sub: Add os9k checking.
14834
14835 Thu Feb 24 07:09:04 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
14836
14837 * config.guess: Handle OSF1 running on HPPA processors
14838
14839 Fri Feb 18 14:14:00 1994 Ken Raeburn (raeburn@rtl.cygnus.com)
14840
14841 * configure: If subdir configure fails, print out a message with
14842 subdirectory name, in case subdir's configure code didn't identify
14843 itself.
14844
14845 Fri Feb 18 12:50:15 1994 Doug Evans (dje@cygnus.com)
14846
14847 * configure.in: Remove embedded newlines from configdirs.
14848 Avoid mismatches of substrings. Fix matching strings at end
14849 of configdirs.
14850
14851 Fri Feb 11 15:33:33 1994 Stu Grossman (grossman at cygnus.com)
14852
14853 * config.guess: Add Lynx/rs6000 config support.
14854
14855 Tue Feb 8 13:41:09 1994 Ken Raeburn (raeburn@rtl.cygnus.com)
14856
14857 * configure.in (alpha-dec-osf1*, alpha*-*-*): Build gas.
14858
14859 Mon Feb 7 15:42:36 1994 Jeffrey A. Law (law@cygnus.com)
14860
14861 * configure.in (hppa*-*-osf*): Treat this just like most other
14862 PA configurations (eg no binutils or ld).
14863 (hppa*-*-*elf*): These configurations have binutils and ld.
14864
14865 Sun Feb 6 16:35:07 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
14866
14867 * config.sub (hiux): Fix typo. From m-kasahr@sramhc.sra.co.JP.
14868
14869 Sat Feb 5 01:00:33 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14870
14871 * configure.in (rs6000-*-*): Build gas.
14872
14873 Wed Feb 2 13:57:57 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
14874
14875 * Makefile.in: Avoid bug in losing hpux sed.
14876
14877 Wed Feb 2 14:53:05 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
14878
14879 * Makefile.in, test-build.mk: Remove MUNCH_NM; it was only needed
14880 for GDB and GDB has been fixed to not need it.
14881
14882 Sun Jan 30 17:58:06 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
14883
14884 * config.guess: Recognize vax hosts.
14885
14886 Fri Jan 28 15:29:38 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
14887
14888 * configure (while loop): Don't use "break 2" inside case
14889 statement -- the case statement isn't an enclosing loop.
14890
14891 Mon Jan 24 18:40:06 1994 Per Bothner (bothner@kalessin.cygnus.com)
14892
14893 * config.guess: Clean up NeXT support, to allow nextstep
14894 on Intel machines. Make OS be nextstep.
14895
14896 Sun Jan 23 18:47:22 1994 Richard Kenner (kenner@vlsi1.ultra.nyu.edu)
14897
14898 * config.guess: Add alternate forms for Convex.
14899
14900 Thu Jan 20 16:13:41 1994 Stu Grossman (grossman at cygnus.com)
14901
14902 * configure: Completely rewrite option processing. Take
14903 advantage of pattern-matching to avoid invoking test frequently.
14904 Also clean up host and target defaulting logic.
14905
14906 Mon Jan 17 15:06:56 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
14907
14908 * Makefile.in: Replace all occurrances of "rootme" with "r" and
14909 "$${rootme}" with "$$r", to increase the likelihood that the do-*
14910 commands (plus user environment) will fit SCO limits.
14911
14912 Thu Jan 6 11:20:57 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14913
14914 * configure.in: Don't issue warnings about directories which are
14915 not being configured if -norecursion is set. Correct test for
14916 --with-gnu-as and --with-gnu-ld to not get confused by substring
14917 matches.
14918
14919 * configure.in: Don't build gas for alpha-dec-osf1*.
14920
14921 Tue Jan 4 17:10:19 1994 Stu Grossman (grossman at cygnus.com)
14922
14923 * configure: Back out Per's change of 12/19/1993. It changes the
14924 behavior of configure in unexpected and confusing ways.
14925
14926 Also, use different delim char when calculating
14927 program_transform_name so that the name can contain slashes.
14928
14929 Sat Jan 1 13:45:31 1994 Rob Savoye (rob@darkstar.cygnus.com)
14930
14931 * configure.in, config.sub: Add support for VSTa micro-kernel.
14932
14933 Sat Dec 25 20:00:47 1993 Jeffrey A. Law (law@snake.cs.utah.edu)
14934
14935 * configure.in: Nuke hacks which were used to get a special
14936 version of GAS for HPPA configurations.
14937
14938 Sun Dec 19 20:40:44 1993 Per Bothner (bothner@kalessin.cygnus.com)
14939
14940 * configure: If only ${target_alias} is given, use that
14941 as the default for ${host_alias}.
14942 * configure: Add missing back-slashes before nested quotes.
14943
14944 Wed Dec 15 18:07:18 1993 david d `zoo' zuhn (zoo@andros.cygnus.com)
14945
14946 * Makefile.in (BASE_FLAGS_TO_PASS): add YACC=$(BISON)
14947
14948 Tue Dec 14 21:25:33 1993 Per Bothner (bothner@cygnus.com)
14949
14950 * config.guess: Recognize some Tektronix configurations.
14951 From Kaveh R. Ghazi <ghazi@noc.rutgers.edu>.
14952
14953 Sat Dec 11 11:18:00 1993 Steve Chamberlain (sac@thepub.cygnus.com)
14954
14955 * config.sub: Match any flavor of SH.
14956
14957 Thu Dec 2 17:16:58 1993 Ken Raeburn (raeburn@cujo.cygnus.com)
14958
14959 * configure.in: Don't try to configure newlib for Alpha.
14960
14961 Thu Dec 2 14:35:54 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
14962
14963 * configure.in: Don't build ld for Irix 5. Don't build gas,
14964 libg++ or libio for any Alpha target.
14965
14966 * configure.in (mips*-sgi-irix5*): New target; use mh-irix5.
14967
14968 Wed Dec 1 17:00:33 1993 Jason Merrill (jason@deneb.cygnus.com)
14969
14970 * Makefile.in (GZIPPROG): Renamed from GZIP, which gzip uses for
14971 default arguments -- so it tried to compress itself.
14972
14973 Tue Nov 30 13:45:15 1993 david d `zoo' zuhn (zoo@andros.cygnus.com)
14974
14975 * configure.in (notsupp): ensure that a space is always at the end
14976 of the configdirs list, since the grep checks for an explicit space
14977
14978 Tue Nov 16 15:04:27 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
14979
14980 * configure.in (target i386-sysv4.2): don't build ld, since static
14981 versions of many libraries are not available.
14982
14983 Tue Nov 16 14:28:12 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
14984
14985 * config.guess: Recognize Apollos (using environment variables).
14986 * configure.in: Don't configure ld, binutils, or gprof for Apollo.
14987
14988 Thu Nov 11 12:03:50 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
14989
14990 * config.guess: Recognize Sony news mips running newsos.
14991
14992 Wed Nov 10 16:57:00 1993 Mark Eichin (eichin@cygnus.com)
14993
14994 * Makefile.in (all-cygnus, build-cygnus): "fi else" needs to be
14995 "fi ; else" for bash.
14996
14997 Tue Nov 9 15:54:01 1993 Mark Eichin (eichin@cygnus.com)
14998
14999 * Makefile.in (BASE_FLAGS_TO_PASS): pass SHELL.
15000
15001 Fri Nov 5 08:07:27 1993 D. V. Henkel-Wallace (gumby@blues.cygnus.com)
15002
15003 * config.sub: accept unixware as an alias for svr4.2.
15004 Fix some inconsistancies with the gcc version.
15005
15006 Fri Nov 5 15:14:12 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15007
15008 * Makefile.in (DISTDOCDIRS): Add gdb.
15009
15010 Fri Nov 5 11:59:42 1993 Per Bothner (bothner@kalessin.cygnus.com)
15011
15012 * Makefile.in (DISTDOCDIRS): Add libg++ and libio.
15013
15014 Fri Nov 5 10:35:05 1993 Ken Raeburn (raeburn@rover.cygnus.com)
15015
15016 * Makefile.in (taz): Only build "info" in DISTDOCDIRS.
15017 (DISTDOCDIRS): Don't assume libg++ and gdb folks necessarily want
15018 this now.
15019
15020 Thu Nov 4 18:58:23 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15021
15022 * config.sub: Accept hiux* as an OS name.
15023
15024 * Makefile.in: Change RUNTEST_FLAGS back to RUNTESTFLAGS per
15025 etc/make-stds.texi. The underscore came from gcc, and dje now
15026 agrees that RUNTESTFLAGS is the correct name.
15027
15028 Thu Nov 4 10:49:01 1993 Per Bothner (bothner@kalessin.cygnus.com)
15029
15030 * install.sh: Remove 'set -e'. It makes any conditionals
15031 in the script useless.
15032
15033 * config.guess: Automatically recognize arm-acorn-riscix
15034 Patch from Richard Earnshaw (rwe11@cl.cam.ac.uk).
15035
15036 Thu Nov 04 08:08:04 1993 Jeffrey Wheat (cassidy@cygnus.com)
15037
15038 * Makefile.in: Change RUNTESTFLAGS to RUNTEST_FLAGS
15039
15040 Wed Nov 3 22:09:46 1993 Ken Raeburn (raeburn@rtl.cygnus.com)
15041
15042 * Makefile.in (DISTDOCDIRS): New variable.
15043 (taz): Edit local Makefile.in sooner, instead of proto-toplev
15044 Makefile.in later. Build "info" and "dvi" in DISTDOCDIRS.
15045
15046 Wed Nov 3 21:31:52 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15047
15048 * configure.in (hppa target): check the source directory for the
15049 pagas sub-directory
15050
15051 Wed Nov 3 11:12:22 1993 Doug Evans (dje@canuck.cygnus.com)
15052
15053 * config.sub: Allow -aout* and -elf*.
15054
15055 Wed Nov 3 11:08:33 1993 Ken Raeburn (raeburn@rtl.cygnus.com)
15056
15057 * configure.in: Don't build ld on i386-solaris2, same as for
15058 sparc-solaris2.
15059
15060 Tue Nov 2 14:21:25 1993 Per Bothner (bothner@kalessin.cygnus.com)
15061
15062 * Makefile.in (taz): Add texinfo/lgpl.texinfo (for libg++).
15063
15064 Tue Nov 2 13:38:30 1993 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
15065
15066 * configure.in: Configure gdb for alpha.
15067
15068 Mon Nov 1 10:42:54 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15069
15070 * Makefile.in (CXXFLAGS): Add -O.
15071
15072 Wed Oct 27 10:45:06 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15073
15074 * config.guess: added support for DG Aviion
15075
15076 Tue Oct 26 14:37:37 1993 Ken Raeburn (raeburn@rover.cygnus.com)
15077
15078 * configure.in: Produce warning message for subdirectories not
15079 configurable for this host/target combination. Don't try to
15080 configure gdb for vms.
15081
15082 Mon Oct 25 11:22:15 1993 Ken Raeburn (raeburn@rover.cygnus.com)
15083
15084 * Makefile.in (taz): Replace "byacc" with "bison -y" in the
15085 appropriate files before making "diststuff".
15086 (DISTBISONFILES): New var: list of files to be edited.
15087 (DISTSTUFFDIRS): Add binutils.
15088
15089 Fri Oct 22 20:32:15 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15090
15091 * config.sub: also handle mipsel and mips64el (for little endian mips)
15092
15093 Fri Oct 22 07:59:20 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15094
15095 * configure.in: Add * to end of all OS names.
15096
15097 Thu Oct 21 11:38:28 1993 Stan Shebs (shebs@rtl.cygnus.com)
15098
15099 * configure.in: Build newlib for LynxOS native.
15100
15101 Wed Oct 20 09:56:12 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15102
15103 * config.guess: Add support for delta 88k running SVR3.
15104
15105 * configure.in: Add comment about HP compiler vs. emacs.
15106
15107 Tue Oct 19 16:02:22 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15108
15109 * configure.in: don't build ld on solaris2 (not a viable option
15110 due to bugs in getpwnam & getpwuid)
15111
15112 Tue Oct 19 15:13:56 1993 Ken Raeburn (raeburn@rtl.cygnus.com)
15113
15114 * configure.in: Accept alpha-dec-osf1*, not just -osf1, since
15115 config.guess will produce a full version number.
15116
15117 Tue Oct 19 15:58:01 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
15118
15119 * configure.in: Build linker and binutils for alpha-dec-osf1.
15120
15121 Tue Oct 19 11:41:55 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15122
15123 * Makefile.in: Remove -O from CXXFLAGS for consistency with CFLAGS,
15124 and gdb/testsuite/Makefile.in.
15125
15126 Sat Oct 9 18:39:07 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15127
15128 * configure.in: recognize mips*- instead of mips-
15129
15130 Fri Oct 8 14:15:39 1993 Ken Raeburn (raeburn@cygnus.com)
15131
15132 * config.sub: Accept linux*coff and linux*elf as operating
15133 systems.
15134
15135 Thu Oct 7 12:57:19 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
15136
15137 * config.sub: Recognize mips64, and mips3 as an alias for it.
15138
15139 Wed Oct 6 13:54:21 1993 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
15140
15141 * configure.in: Remove alpha-dec-osf*, no longer necessary now that
15142 gdb knows how to handle OSF/1 shared libraries.
15143
15144 Tue Oct 5 11:55:04 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15145
15146 * configure.in: Recognize hppa*-*-hiux* (currently synonym for hpux).
15147 * config.guess: Recognize Hitachi's HIUX.
15148 * config.sub: Recognize h3050r* and hppahitachi.
15149 Remove redundant cases for hp9k[23]*.
15150
15151 Mon Oct 4 16:15:09 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15152
15153 * configure.in: default to '--with-gnu-as' and '--with-gnu-ld'
15154 if gas and ld are in the source tree and are in ${configdirs}.
15155 If ${use_gnu_as} or ${use_gnu_ld} are 'no', then don't set the
15156 --with options (but still pass them down on the command line,
15157 if they were explicitly specified).
15158
15159 Fri Sep 24 19:11:13 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15160
15161 * configure: substitute SHELL value in Makefile.in with
15162 ${CONFIG_SHELL}
15163
15164 Thu Sep 23 18:05:13 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
15165
15166 * configure.in: Build gas, ld, and binutils for *-*-sysv4* and
15167 *-*-solaris2* targets.
15168
15169 Sun Sep 19 17:01:41 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15170
15171 * Makefile.in: define M4, and pass it down to sub-makes;
15172 all-autoconf now depends on all-m4
15173
15174 Sat Sep 18 00:38:23 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15175
15176 * Makefile.in ({AR,RANLIB}_FOR_TARGET): make contingent on
15177 presence of {ar,ranlib} instead of a configured directory
15178
15179 Wed Sep 15 08:41:44 1993 Jim Kingdon (kingdon@cirdan.cygnus.com)
15180
15181 * config.guess: Accept 34?? as well as 33?? for NCR.
15182
15183 Mon Sep 13 12:28:43 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15184
15185 * configure.in: grab mt-hppa for HPPA targets; use 'gas ' instead
15186 of 'gas' in sed commands, since 'gash' is now in the tree as well.
15187
15188 Fri Sep 10 11:23:52 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15189
15190 * configure: grab values for $(CC) and $(CXX) from the
15191 environment, so that someone can do "CC=gcc configure; make" and
15192 have it work right (matching the way that autoconf works now)
15193
15194 * configure.in, Makefile.in: add support for gash, the tcl
15195 interface to Galaxy
15196
15197 * config.guess: add NetBSD variants (hp300, x86)
15198
15199 Thu Sep 9 16:48:52 1993 Jason Merrill (jason@deneb.cygnus.com)
15200
15201 * install.sh: Support -d option (in the manner of SunOS 4 install,
15202 as it is more deterministic than that of GNU install)
15203 (chmodcmd): Set file to mode 755 by default (should also do default
15204 chgrp and chown, but I don't feel like dealing with that now)
15205
15206 Tue Sep 7 11:59:39 1993 Doug Evans (dje@canuck.cygnus.com)
15207
15208 * config.sub: Remove h8300hhms alias.
15209
15210 Tue Aug 31 11:00:09 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15211
15212 * configure.in: Match *-*-solaris2* not *-sun-solaris2*.
15213
15214 Mon Aug 30 18:29:10 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15215
15216 * Makefile.in (gcc-no-fixedincludes): touch stmp-fixproto as well
15217 as stmp-fixinc
15218
15219 Wed Aug 25 16:35:59 1993 K. Richard Pixley (rich@sendai.cygnus.com)
15220
15221 * config.sub: recognize m88110-bug-coff.
15222
15223 Tue Aug 24 10:23:24 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15224
15225 * Makefile.in (all-libio): all dependencies on the toolchain used
15226 to build this (gcc, gas, ld, etc)
15227
15228 Fri Aug 20 17:24:24 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15229
15230 * config.guess: Deal with OSF/1 1.3 on alpha.
15231
15232 Thu Aug 19 11:43:04 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15233
15234 * install.sh: add some 'else true' clauses for portability
15235
15236 * configure.in: don't build libio for h8[35]00-*-* targets
15237
15238 Tue Aug 17 19:02:31 1993 Per Bothner (bothner@kalessin.cygnus.com)
15239
15240 * Makefile.in: Add support for new libio.
15241
15242 Sun Aug 15 20:48:55 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15243
15244 * install.sh: If one command fails, don't try the rest. Don't try
15245 to remove $dsttmp (via trap) unless we have already created it.
15246 If $src doesn't exist, detect it and exit with an error.
15247
15248 * config.guess: Recognize BSD on hp300.
15249
15250 Wed Aug 11 18:35:13 1993 Per Bothner (bothner@kalessin.cygnus.com)
15251
15252 * config.guess: Map (9000/[34]??:HP-UX:*:*) to m68k-hp-hpux.
15253 Bug report from "Hamish (H.I.) Macdonald" <hamish@bnr.ca>.
15254
15255 Wed Aug 11 15:37:51 1993 Jason Merrill (jason@deneb.cygnus.com)
15256
15257 * Makefile.in (all-send-pr): depends on all-prms
15258
15259 Wed Aug 11 16:56:03 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15260
15261 * config.guess: Fix typo (9000/8??:4.3bsd -> 9000/7??:4.3bsd).
15262
15263 Fri Aug 6 14:45:02 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
15264
15265 * config.guess: From michael@mercury.cs.mun.ca (Michael Rendell):
15266 Added test for mips-mips-riscos5.
15267
15268 Thu Aug 5 15:45:08 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15269
15270 * configure.in: use mh-hp300 for 68k HP hosts
15271
15272 Mon Aug 2 11:56:53 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15273
15274 * configure: add support for CONFIG_SHELL, so that you can use
15275 some alternate shell for evaluating configure scripts
15276
15277 Sun Aug 1 11:36:27 1993 Fred Fish (fnf@deneb.cygnus.com)
15278
15279 * Makefile.in (make-gdb.tar.gz): Sed bug reporting address
15280 in configure script to bug-gdb@prep.ai.mit.edu when building
15281 distribution archive.
15282 * Makefile.in (COMPRESS): Remove def.
15283 * Makefile.in (gdb.tar.gz, make-gdb.tar.gz): Renamed from
15284 gdb.tar.Z and make-gdb.tar.Z respectively.
15285 * Makefile.in (make-gdb.tar.gz): Now only build gzip'd archive.
15286 * Makefile.in (make-gdb.tar.gz): Minor changes to move closer
15287 to convergence with 'taz' target in Makefile.in.
15288
15289 Fri Jul 30 12:34:57 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15290
15291 * install.sh (dsttmp): use trap to ensure that tmp files go
15292 away on error conditions
15293
15294 Wed Jul 28 11:57:36 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15295
15296 * Makefile.in (BASE_FLAGS_TO_PASS): remove LOADLIBES
15297
15298 Tue Jul 27 12:43:40 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15299
15300 * Makefile.in (install-dirs): Deal with a prefix like /gnu;
15301 its parent is '/' not ''.
15302
15303 * Makefile.in (DEVO_SUPPORT): Add comments about ChangeLog.
15304
15305 Fri Jul 23 09:53:37 1993 Jason Merrill (jason@wahini.cygnus.com)
15306
15307 * configure: if ${newsrcdir}/configure doesn't exist, don't assume
15308 that ${newsrcdir}/configure.in does.
15309
15310 Tue Jul 20 11:28:50 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
15311
15312 * test-build.mk: support for CONFIG_SHELL
15313
15314 Mon Jul 19 21:54:46 1993 Fred Fish (fnf@deneb.cygnus.com)
15315
15316 * config.sub (netware): Add as a basic system type.
15317
15318 Wed Jul 14 12:03:11 1993 K. Richard Pixley (rich@sendai.cygnus.com)
15319
15320 * Makefile.in (Makefile): depend on configure.in. Also drop the
15321 $(srcdir)/ from the dependency on Makefile.in.
15322
15323 Tue Jul 13 20:10:58 1993 Doug Evans (dje@canuck.cygnus.com)
15324
15325 * config.sub: Recognize h8300hhms as h8300h-hitachi-hms.
15326 (h8300hhms is temporary until multi-libraries are implemented).
15327 * configure.in: Handle h8300h too.
15328
15329 Sun Jul 11 17:35:27 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15330
15331 * config.guess: Recognize dpx/2 as m68k-bull-sysv3.
15332
15333 Thu Jul 8 18:26:12 1993 John Gilmore (gnu@cygnus.com)
15334
15335 * configure: Remove extraneous output when guessing host type.
15336 * config.guess: Remove extraneous output when guessing using C
15337 compiler rather than uname, or when guessing fails.
15338
15339 Wed Jul 7 17:58:14 1993 david d `zoo' zuhn (zoo at rtl.cygnus.com)
15340
15341 * Makefile.in: remove all.cross and install.cross targets
15342
15343 * configure: remove CROSS=-DCROSS_COMPILE and ALL=all.cross
15344 definitions
15345
15346 Tue Jul 6 10:39:44 1993 Steve Chamberlain (sac@phydeaux.cygnus.com)
15347
15348 * configure.in (target sh): Build gprof.
15349
15350 Thu Jul 1 16:52:56 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15351
15352 * config.sub: change -solaris to -solaris2
15353
15354 Thu Jul 1 15:46:16 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15355
15356 * configure.in: Use config/mh-riscos for mips-*-sysv*.
15357
15358 Wed Jun 30 09:31:58 1993 Ian Lance Taylor (ian@cygnus.com)
15359
15360 * configure: Correct error message for missing Makefile.in to
15361 print correct directory.
15362
15363 Tue Jun 29 13:52:16 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15364
15365 * install.sh: kludge around 386BSD shell bug
15366
15367 Tue Jun 29 13:06:49 1993 Per Bothner (bothner@rtl.cygnus.com)
15368
15369 * config.guess: Recognize NeXT.
15370 * config.guess: Recognize i486-ncr-sysv4.
15371 * Makefile.in (taz): rm $(TOOL)-$$VER before linking.
15372
15373 Tue Jun 29 12:50:57 1993 Ian Lance Taylor (ian@cygnus.com)
15374
15375 * Makefile.in (MAKEINFOFLAGS): New variable.
15376 (FLAGS_TO_PASS): Pass MAKEINFO as MAKEINFO MAKEINFOFLAGS.
15377 * build-all.mk, test-build.mk: Pass down --no-split as
15378 MAKEINFOFLAGS when hosted on DOS. Compile DOS hosted without -g.
15379
15380 Thu Jun 24 13:39:11 1993 Per Bothner (bothner@rtl.cygnus.com)
15381
15382 * Makefile.in (DEVO_SUPPORT): Add COPYING COPYING.LIB install.sh.
15383
15384 Wed Jun 23 12:59:21 1993 Per Bothner (bothner@rtl.cygnus.com)
15385
15386 * Makefile.in (libg++.tar.z): New rule.
15387 * Makefile.in (taz): Replace 'configure -rm' by 'make distclean'.
15388 * Makefile.in (taz): Only do a single chmod.
15389
15390 Fri Jun 18 12:03:10 1993 david d `zoo' zuhn (zoo at majipoor.cygnus.com)
15391
15392 * install.sh: don't use dirname anymore (replaced with sed usage)
15393
15394 Thu Jun 17 18:43:42 1993 Fred Fish (fnf@cygnus.com)
15395
15396 * Makefile.in: Change extension for gzip'd files from '.z' to
15397 '.gz' per new FSF standard usage.
15398
15399 Thu Jun 17 16:58:50 1993 david d `zoo' zuhn (zoo at majipoor.cygnus.com)
15400
15401 * configure: put quotes around the final value of program_transform_name
15402
15403 Tue Jun 15 16:48:51 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15404
15405 * Makefile.in: new install.sh support; update install-info rules
15406
15407 Wed Jun 9 12:31:34 1993 Ian Lance Taylor (ian@cygnus.com)
15408
15409 * configure.in: Build diff for crosses, but not for go32 host.
15410
15411 * configure.in: Build gprof only for native, and don't build it
15412 for mips-*-*, rs6000-*-*, or i[34]86-*-sco*.
15413
15414 Mon Jun 7 13:12:11 1993 david d `zoo' zuhn (zoo at deneb.cygnus.com)
15415
15416 * configure.in: don't build gas,ld,binutils on for *-*-sysv4
15417
15418 Mon Jun 7 11:40:11 1993 Brendan Kehoe (brendan@lisa.cygnus.com)
15419
15420 * configure.in (host_tools): Add prms.
15421
15422 Fri Jun 4 13:30:42 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15423
15424 * Makefile.in: install gcc, do installation of $(INSTALL_MODULES)
15425 with $(FLAGS_TO_PASS) on the command line
15426
15427 * config.sub: Recognize lynx and lynxos
15428
15429 Fri Jun 4 10:59:56 1993 Ian Lance Taylor (ian@cygnus.com)
15430
15431 * config.sub: Accept -ecoff*, not just -ecoff.
15432
15433 Thu Jun 3 17:38:54 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
15434
15435 * Makefile.in (taz): Use .gz suffix instead of .z.
15436 (binutils.tar.gz, gas+binutils.tar.gz, gas.tar.gz): Fixed target
15437 names.
15438
15439 Thu Jun 3 00:27:06 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15440
15441 * Makefile.in (vault-install): add an 'else true' (for Ultrix)
15442
15443 Wed Jun 2 18:19:16 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15444
15445 * Makefile.in (install-no-fixedincludes): install gcc last, so
15446 that rebuilds that might happen during 'make install' don't get
15447 bogus gcc include files
15448
15449 Wed Jun 2 16:14:10 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
15450
15451 Change from Utah for HPPA support:
15452 * config.guess: Recognize hppa1.x-hp-bsd.
15453
15454 Wed Jun 2 11:53:33 1993 Per Bothner (bothner@rtl.cygnus.com)
15455
15456 * config.guess: Add support for Motorola Delta 68k, up to r3v7.
15457 Patch from pot@fly.cnuce.cnr.it (Francesco Potorti`).
15458
15459 Tue Jun 1 17:48:42 1993 Rob Savoye (rob at darkstar.cygnus.com)
15460
15461 * config.sub: Add support for rom68k and bug boot monitors.
15462
15463 Mon May 31 09:36:37 1993 Jim Kingdon (kingdon@cygnus.com)
15464
15465 * Makefile.in: Make all-opcodes depend on all-bfd.
15466
15467 Thu May 27 08:05:31 1993 Ian Lance Taylor (ian@cygnus.com)
15468
15469 * config.guess: Added special check for i[34]86-univel-sysv4*.
15470
15471 Wed May 26 16:33:40 1993 Ian Lance Taylor (ian@cygnus.com)
15472
15473 * config.guess: For i[34]86-unknown-sysv4 use UNAME_MACHINE for
15474 the processor rather than assuming i486.
15475
15476 Wed May 26 09:40:18 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
15477
15478 * config.guess: Recognize SunOS6 as Solaris3.
15479
15480 Tue May 25 23:03:11 1993 Per Bothner (bothner@cygnus.com)
15481
15482 * config.guess: Fix typo. Avoid #elif (not in K&R 1).
15483 Recognize SunOS 5.* only (and not [6-9].*) as being Solaris2.
15484
15485 Tue May 25 12:44:18 1993 Ian Lance Taylor (ian@cygnus.com)
15486
15487 * build-all.mk (all-cross): New target for Canadian Cross.
15488 Added Q2 go32 targets.
15489 * test-build.mk: Configure go32 cross sparclite-aout and
15490 mips-idt-ecoff -with-gnu-ld. Moved build binary directory from
15491 PARTIAL_HOLE_DIRS to BUILD_HOLES_DIRS.
15492
15493 Mon May 24 15:30:06 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15494
15495 * configure.in: fix Alpha GDB typo; also, don't build DejaGnu for
15496 GO32 hosted toolchains
15497
15498 Mon May 24 14:18:41 1993 Rob Savoye (rob at darkstar.cygnus.com)
15499
15500 * configure: change so "-exec-prefix" gets passed down rather
15501 than "-exec_prefix" so autoconf generated Makefiles get the
15502 exec_prefix set right.
15503
15504 Fri May 21 10:42:25 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15505
15506 * config.guess: get the Solaris2 minor version number
15507
15508 * Makefile.in: add standards.texi and make-stds.texi to ETC_SUPPORT
15509
15510 Fri May 21 06:20:52 1993 Brendan Kehoe (brendan@lisa.cygnus.com)
15511
15512 * config.guess: Recognize some Sequent platforms.
15513
15514 Thu May 20 14:33:48 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15515
15516 * Makefile.in: added the vault-install target
15517
15518 * configure.in: actually use the Sun3 makefile fragment that's in
15519 config, also added the release dir to configdirs
15520
15521 Thu May 20 14:19:18 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
15522
15523 * Makefile.in (taz): Fix modes on stuff in $(TOOL) dir also.
15524
15525 Tue May 18 20:26:41 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15526
15527 * configure.in: remove some program from Alpha targetted toolchains
15528
15529 Tue May 18 15:23:19 1993 Ken Raeburn (raeburn@cygnus.com)
15530
15531 * Makefile.in (DISTSTUFFDIRS): Renamed from PROTODIRS. Add ld and
15532 gprof.
15533 (taz): Run "make diststuff" in those directories instead of "make
15534 proto-dir". Look for "VERSION=" only at start of line in subdir
15535 Makefile. Use "gzip -9" for compression.
15536 (TEXINFO_SUPPORT, DIST_SUPPORT, BINUTILS_SUPPORT_DIRS): New vars.
15537 (binutils.tar.z): New target.
15538
15539 Mon May 17 17:01:15 1993 Ken Raeburn (raeburn@deneb.cygnus.com)
15540
15541 * Makefile.in (taz): Include gpl.texinfo.
15542
15543 Fri May 14 06:48:38 1993 Ken Raeburn (raeburn@deneb.cygnus.com)
15544
15545 * Makefile.in (setup-dirs): Merged into "taz" target.
15546 (taz): Only do `proto-dir' stuff if a directory is actually needed
15547 for this target.
15548
15549 Wed May 12 13:09:44 1993 Ian Lance Taylor (ian@cygnus.com)
15550
15551 * Makefile.in (MUNCH_NM): New variable, defined to be $(NM).
15552 (FLAGS_TO_PASS): Pass down MUNCH_NM.
15553 (HOST_CC, HOST_PREFIX, HOST_PREFIX_1): New variables.
15554 (EXTRA_GCC_FLAGS): Pass down HOST_* variables.
15555 (gcc-no-fixedincludes): Correct for current gcc Makefile.
15556
15557 Tue May 11 10:14:25 1993 Fred Fish (fnf@cygnus.com)
15558
15559 * Makefile.in (make-gdb.tar.Z): Add configure, config.guess,
15560 config.sub, and move-if-change to gdb testsuite distribution
15561 archive, so the testsuite can be extracted, configured, and
15562 run separately from the gdb distribution. Blow away the Chill
15563 tests that require a Chill compiled executable, since GNU Chill
15564 is not yet publically available.
15565
15566 Mon May 10 17:22:26 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15567
15568 * test-build.mk: set environment variables in a single command,
15569 instead of a list of assignments and exports
15570
15571 * config.guess: recognize Alpha/OSF1 systems
15572
15573 Mon May 10 14:55:51 1993 K. Richard Pixley (rich@rtl.cygnus.com)
15574
15575 * configure: Change help message to prefer --options rather than
15576 -options.
15577
15578 Mon May 10 05:58:35 1993 Ken Raeburn (raeburn@kr-pc.cygnus.com)
15579
15580 * config.sub: Convergent Tech. "miniframe" uses m68010, sez
15581 zippy@ecst.csuchico.edu.
15582 * config.guess: Recognize miniframe.
15583
15584 Sun May 9 17:47:57 1993 Rob Savoye (rob at darkstar.cygnus.com)
15585
15586 * Makefile.in: Use srcroot to find runtest rather than rootme.
15587 Pass RUNTESTFLAGS and EXPECT down in BASE_FLAGS_TO_PASS.
15588
15589 Fri May 7 14:55:59 1993 Ian Lance Taylor (ian@cygnus.com)
15590
15591 * test-build.mk: Extensive additions to support building on a
15592 machine other than the host.
15593
15594 Wed May 5 08:35:04 1993 Ken Raeburn (raeburn@deneb.cygnus.com)
15595
15596 * configure (tooldir): Fix for i386-aix again.
15597
15598 Mon May 3 19:00:27 1993 Per Bothner (bothner@cygnus.com)
15599
15600 * configure, Makefile.in: Change definition of $(tooldir)
15601 to match the FSF.
15602
15603 Fri Apr 30 15:55:21 1993 Fred Fish (fnf@cygnus.com)
15604
15605 * config.guess: Recognize i[34]86/SVR4.
15606
15607 Fri Apr 30 15:52:46 1993 Steve Chamberlain (sac@thepub.cygnus.com)
15608
15609 * Makefile.in (all-gdb): gdb depends on sim.
15610
15611 Thu Apr 29 23:30:48 1993 Fred Fish (fnf@cygnus.com)
15612
15613 * Makefile.in (gdb.tar.Z): Make prototype gdb testsuite directory
15614 at the same time we make the prototype gdb directory.
15615 * Makefile.in (make-gdb.tar.Z): Make the testsuite distribution
15616 files at the same time as the gdb base release distribution.
15617
15618 Thu Apr 29 12:50:37 1993 Ian Lance Taylor (ian@cygnus.com)
15619
15620 * Makefile.in (check): Use individual check targets rather than
15621 DO_X rule.
15622 (check-gcc): Added.
15623
15624 Thu Apr 29 09:50:07 1993 Jim Kingdon (kingdon@cygnus.com)
15625
15626 * config.sub: Use sysv3.2 not sysv32 for canonical OS
15627 for System V release 3.2.
15628
15629 Thu Apr 29 10:33:22 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
15630
15631 * config.sub: Recognize hppaosf.
15632 * configure.in: Do configure ld/binutils/gas for it.
15633
15634 Tue Apr 27 06:25:34 1993 Ken Raeburn (raeburn@kr-pc.cygnus.com)
15635
15636 * configure (tooldir): Alter syntax used to set this, for systems
15637 where "\$" isn't handled right, like i386-aix.
15638
15639 Thu Apr 22 08:17:35 1993 Ian Lance Taylor (ian@cygnus.com)
15640
15641 * configure: Pass program-transform-name, not
15642 program_transform_name, to recursive configures.
15643
15644 Thu Apr 22 02:58:21 1993 Ken Raeburn (raeburn@cygnus.com)
15645
15646 * Makefile.in (gas+binutils.tar.z): New rule for building snapshots
15647 of gas+ld+binutils.
15648
15649 Mon Apr 19 17:41:30 1993 Per Bothner (bothner@cygnus.com)
15650
15651 * config.guess: Recognize AIX3.2 as distinct from 3.1.
15652
15653 Sat Apr 17 17:19:50 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15654
15655 * configure.in: rename m88k-motorola-m88kbcs to m88k-motorola-sysv
15656
15657 Tue Apr 13 16:52:16 1993 Brendan Kehoe (brendan@lisa.cygnus.com)
15658
15659 * Makefile.in (PRMS): Set back to all-prms.
15660
15661 Sat Apr 10 12:04:07 1993 Ian Lance Taylor (ian@cygnus.com)
15662
15663 * test-build.mk: Pass -with-gnu-as for known MIPS native and MIPS
15664 targets, rather than for MIPS hosts.
15665
15666 Fri Apr 9 13:51:06 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15667
15668 * configure.in: add comment for --with-x default values
15669
15670 * config.guess: handle Motorola Delta88 box for SVR3 and SVR4.
15671
15672 * Makefile.in: add check-* targets for each of the directories in
15673 the tree. Add a definition of RUNTEST that will use the one we
15674 just built, if it exists. Pass this down via FLAGS_TO_PASS.
15675
15676 Thu Apr 8 09:21:30 1993 Ian Lance Taylor (ian@cygnus.com)
15677
15678 * configure.in: Removed obsolete references to bfd_target and
15679 target_makefile_frag.
15680
15681 * build-all.mk: Set assorted targets for Q2.
15682 * config.sub: Recognize z8k-sim and h8300-hms.
15683 * test-build.mk: Really don't pass host to configure.
15684 (HOLES): Added uname.
15685
15686 Wed Apr 7 15:48:19 1993 Ian Lance Taylor (ian@cygnus.com)
15687
15688 * configure: Handle an empty program-prefix, program-suffix or
15689 program-transform-name correctly.
15690
15691 Tue Apr 6 13:48:41 1993 Ian Lance Taylor (ian@cygnus.com)
15692
15693 * build-all.mk: -G 8 no longer required for MIPS targets.
15694 * test-build.mk: Don't pass host argument to configure; make it
15695 guess.
15696
15697 Tue Apr 6 10:36:53 1993 Fred Fish (fnf@cygnus.com)
15698
15699 * Makefile.in (gdb.tar.Z): Fix for building gzip'd distribution.
15700 * Makefile.in (COMPRESS): New macro, like GZIP.
15701
15702 Fri Apr 2 09:02:31 1993 Ian Lance Taylor (ian@cygnus.com)
15703
15704 * test-build.mk: Use -with-gnu-as for mips-sgi-irix4 as well.
15705
15706 * build-all.mk: Set GCC to gcc -O -G 8 for MIPS targets, since gcc
15707 with gas currently defaults to -G 0.
15708
15709 Thu Apr 1 08:25:42 1993 Ian Lance Taylor (ian@cygnus.com)
15710
15711 * Makefile.in (all-flex): flex depends on byacc.
15712
15713 * build-all.mk: If host not specified, use config.guess. Pass TAG
15714 to test-build.mk as RELEASE_TAG.
15715 * test-build.mk (configargs): New variable containing arguments to
15716 pass to configure. Set to -with-gnu-as on mips-dec-ultrix.
15717 (FLAGS_TO_PASS): Pass down RELEASE_TAG.
15718
15719 * config.guess: Use /bin/uname when checking -X argument on SCO,
15720 to avoid invoking GNU uname which doesn't understand -X.
15721
15722 * test-build.mk: Don't use /usr/unsupported/bin/as on AIX.
15723
15724 * configure.in: Build gas for mips-*-*.
15725
15726 Wed Mar 31 21:20:58 1993 K. Richard Pixley (rich@rtl.cygnus.com)
15727
15728 * Makefile.in (all.normal): insert missing backslash.
15729
15730 Wed Mar 31 12:31:56 1993 Ian Lance Taylor (ian@cygnus.com)
15731
15732 * build-all.mk: Bump -XNh value to 1500 to match gcc requirements.
15733
15734 * Makefile.in: Complete overhaul to merge many almost identical
15735 targets.
15736
15737 Tue Mar 30 20:17:01 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
15738
15739 * Makefile.in (setup-dirs-gdb): Renamed from setup-dirs.
15740 (gdb.tar.Z): Adjusted.
15741
15742 * Makefile.in (setup-dirs, taz): New targets; should be general
15743 enough to adapt for gdb sometime. Build only .z file.
15744 (gas.tar.z): New target.
15745
15746 Tue Mar 30 10:03:09 1993 Ian Lance Taylor (ian@cygnus.com)
15747
15748 * build-all.mk: Use CC=cc -Xs on Solaris.
15749
15750 Thu Mar 25 15:14:30 1993 Fred Fish (fnf@cygnus.com)
15751
15752 * Makefile.in: Incorporate changes suggested by wilson@cygnus.com
15753 for handling BISON for FSF releases.
15754
15755 Thu Mar 25 06:19:48 1993 Ken Raeburn (raeburn@kr-pc.cygnus.com)
15756
15757 * configure: Actually implement the change zoo just documented.
15758
15759 Wed Mar 24 13:02:44 1993 david d `zoo' zuhn (zoo at poseidon.cygnus.com)
15760
15761 * configure: when using config.guess, only set target_alias when
15762 it's not already been set (ie, on the command line)
15763
15764 Mon Mar 22 23:07:39 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15765
15766 * Makefile.in: add installcheck target, set PRMS to install-prms
15767
15768 Sun Mar 21 16:46:12 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15769
15770 * configure: add support for package_makefile_fragment, handle the
15771 case where a directory has a configure.in file but no Makefile.in
15772 more gracefully (with an actual understandable error message, even);
15773 add support for --without (and add this to the usage message); also
15774 explicitly add a --host=${host_alias} to the command line when
15775 config.guess is used
15776
15777 Sun Mar 21 12:11:58 1993 Jim Wilson (wilson@sphagnum.cygnus.com)
15778
15779 * configure: Must use both --host and --target in recursive calls.
15780
15781 Thu Mar 18 12:31:35 1993 Ian Lance Taylor (ian@cygnus.com)
15782
15783 * Makefile.in: Change deja-gnu to dejagnu.
15784
15785 Mon Mar 15 15:44:35 1993 Ian Lance Taylor (ian@cygnus.com)
15786
15787 * configure.in (h8300-*-*, h8500-*-*): Don't build libg++.
15788
15789 Fri Mar 12 18:30:14 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15790
15791 * configure.in: canonicalize all instances to *-*-solaris2*,
15792 also strip out a number of tools to not build for go32 host
15793
15794 Wed Mar 10 12:08:27 1993 K. Richard Pixley (rich@rtl.cygnus.com)
15795
15796 * config.guess: add GPL.
15797
15798 * Makefile.in, config.guess, config.sub, configure: bump
15799 copyrights to 93.
15800
15801 Wed Mar 10 07:12:48 1993 Ian Lance Taylor (ian@cygnus.com)
15802
15803 * Makefile.in (do-info): Removed obsolete check for existence of
15804 localenv file.
15805
15806 * Makefile.in (MAKEOVERRIDES): Define to be empty.
15807
15808 Wed Mar 10 03:11:56 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15809
15810 * Makefile.in: a couple of 'else true' for decstation,
15811 support for TclX
15812
15813 * configure.in: configure tclX too; don't remove Tk on RS/6000 anymore
15814
15815 Tue Mar 9 16:06:12 1993 K. Richard Pixley (rich@cygnus.com)
15816
15817 * Makefile.in (setup-dirs): change invocation of make to $(MAKE).
15818
15819 Mon Mar 8 14:52:11 1993 Ken Raeburn (raeburn@cambridge)
15820
15821 * config.guess: Recognize i386-ibm-aix (PS/2).
15822 * configure.in: Use config/mh-aix386 file for it.
15823
15824 Mon Mar 8 11:12:43 1993 Ian Lance Taylor (ian@cygnus.com)
15825
15826 * Makefile.in (GCC_FOR_TARGET): Eliminated definition; use
15827 CC_FOR_TARGET instead.
15828 (BASE_FLAGS_TO_PASS): Pass GCC_FOR_TARGET=$(CC_FOR_TARGET).
15829
15830 Wed Mar 3 16:00:28 1993 Steve Chamberlain (sac@ok.cygnus.com)
15831
15832 * Makefile.in: Add sim to list of directories sent with gdb
15833
15834 Wed Mar 3 11:42:39 1993 Ken Raeburn (raeburn@cygnus.com)
15835
15836 * configure.in: Put back mips-dec-bsd* case.
15837
15838 Tue Mar 2 21:15:58 1993 Fred Fish (fnf@cygnus.com)
15839
15840 (Ultrix 2.2 support from Michael Rendell <michael@mercury.cs.mun.ca>)
15841 * configure.in (vax-*-ultrix2*): Add Ultrix 2.2 triplet.
15842 * config.guess: Change 'VAX*:ULTRIX:*:*' to 'VAX*:ULTRIX*:*:*'.
15843
15844 Tue Mar 2 18:11:03 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15845
15846 * configure.in: remove no-op mips-dec-bsd* in "case $target"
15847
15848 * Makefile.in (dir.info): only run gen-info-dir if it exists,
15849 (install-info): install dir.info only if it exists,
15850 (all-expect, install-expect): pass along X11_FLAGS_TO_PASS
15851
15852 Tue Mar 2 09:01:30 1993 Ken Raeburn (raeburn@cygnus.com)
15853
15854 * configure.in: For vms target, skip bfd, ld, binutils. Do build
15855 gas for mips-dec-bsd.
15856
15857 Tue Mar 2 08:35:24 1993 Ian Lance Taylor (ian@cygnus.com)
15858
15859 * configure (makesrcdir): If ${srcdir} is relative and not ".",
15860 and ${subdir} is not ".", set makesrcdir based on ${invsubdir}.
15861
15862 Tue Feb 23 14:18:28 1993 Mike Werner (mtw@poseidon.cygnus.com)
15863
15864 * configure.in: Added "dejagnu" to hosttools list.
15865
15866 Mon Feb 22 23:28:38 1993 Per Bothner (bothner@rtl.cygnus.com)
15867
15868 * config.sub, configure.in, config.guess: Add support
15869 for Bosx, an AIX variant from Bull.
15870 Patches from F.Pierresteguy@frcl.bull.fr.
15871
15872 Sun Feb 21 11:15:22 1993 Mike Werner (mtw@poseidon.cygnus.com)
15873
15874 * devo/dejagnu: Initial creation of devo/dejagnu.
15875 Migrated dejagnu testcases and support files for testing software
15876 tools to reside as subdirectories, currently called "testsuite",
15877 within the directory of the software tool. Migrated all programs,
15878 support libraries, etc. beloging to dejagnu proper from
15879 devo/deja-gnu to devo/dejagnu. These files were moved "as is"
15880 with no modifications. The changes to these files which will
15881 allow them to configure, build, and execute properly will be made
15882 in a future update.
15883
15884 Fri Feb 19 20:19:39 1993 Brendan Kehoe (brendan@lisa.cygnus.com)
15885
15886 * Makefile.in: Change send_pr to send-pr.
15887 * configure.in: Likewise.
15888 * send_pr: Renamed directory to send-pr.
15889
15890 Fri Feb 19 19:00:13 1993 Per Bothner (bothner@cygnus.com)
15891
15892 * Makefile.in: Add some extra semi-colons (needed if SHELL=bash).
15893
15894 Fri Feb 19 00:59:33 1993 John Gilmore (gnu@cygnus.com)
15895
15896 * README: Update for gdb-4.8 release.
15897 * Makefile.in (gdb.tar.Z): Add texinfo/tex3patch. Build
15898 gdb-xxx.tar.z (gzip'd) file also.
15899
15900 Thu Feb 18 09:16:17 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15901
15902 * Makefile.in: make all-diff depend on all-libiberty
15903
15904 Tue Feb 16 16:06:31 1993 K. Richard Pixley (rich@cygnus.com)
15905
15906 * config.guess: add vax-ultrix in the spirit of mips-ultrix.
15907
15908 Tue Feb 16 05:57:15 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15909
15910 * configure.in, Makefile.in: add hello, tar, gzip, recode, indent
15911
15912 Tue Feb 16 00:58:20 1993 John Gilmore (gnu@cygnus.com)
15913
15914 * Makefile.in (DEVO_SUPPORT): Remove etc directory
15915 (ETC_SUPPORT): Only add the files GDB wants from etc/.
15916 (gdb.tar.Z): Use ETC_SUPPORT. Use byacc when building the file.
15917
15918 Thu Feb 11 20:14:28 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15919
15920 * Makefile.in: makeinfo binary is in a new location
15921
15922 Tue Feb 9 12:42:27 1993 Ian Lance Taylor (ian@cygnus.com)
15923
15924 * config.sub: Accept -ecoff as an OS.
15925
15926 * Makefile.in: Various changes to eliminate a level of make
15927 recursion and reduce the required command line length.
15928 (BASE_FLAGS_TO_PASS): New variable holding flags passed to all
15929 sub-makes.
15930 (EXTRA_HOST_FLAGS, EXTRA_TARGET_FLAGS, EXTRA_GCC_FLAGS): New
15931 variables holding settings for specific sub-makes.
15932 (FLAGS_TO_PASS, TARGET_FLAGS_TO_PASS, GCC_FLAGS_TO_PASS): Rewrote
15933 in terms of BASE_FLAGS_TO_PASS.
15934 (TARGET_LIBS): New variable listing directories which use
15935 TARGET_FLAGS_TO_PASS.
15936 (subdir_do): Eliminated.
15937 (do-*): New set of targets to replace subdir_do.
15938 (various): All targets which used subdir_do now depend on do-*.
15939 (local-clean): Renamed from do_clean.
15940 (local-distclean): New target, dependency of distclean and
15941 realclean.
15942 (install-info): Don't create directories. Depend on dir.info
15943 rather than calling make recursively.
15944 (install-dir.info): Eliminated.
15945 (install-info-dirs): Create all info directories here.
15946 (dir.info): Depend upon do-install-info.
15947
15948 * test-build.mk (HOLES): Added false.
15949
15950 Sat Feb 6 14:05:09 1993 Per Bothner (bothner@rtl.cygnus.com)
15951
15952 * config.guess: Recognize BSDI and BSDJ (Jolitz 386bsd).
15953
15954 Thu Feb 4 20:49:18 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15955
15956 * Makefile.in (info): remove dependency on all-texinfo. The
15957 problem was really in texinfo/C, not at this level.
15958
15959 Thu Feb 4 13:38:41 1993 Ian Lance Taylor (ian@cygnus.com)
15960
15961 * Makefile.in (info): Added dependency on all-texinfo (PR 2112).
15962
15963 Thu Feb 4 01:50:53 1993 John Gilmore (gnu@cygnus.com)
15964
15965 * Makefile.in (make-gdb.tar.Z): Change BISON to 'bison -y' for
15966 GDB releases.
15967
15968 Wed Feb 3 17:22:16 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
15969
15970 * configure: Include srcdir in message about target of link not
15971 being found. Don't convert `-' to `_' in `with' options being
15972 passed to subdirs.
15973
15974 Tue Feb 2 18:57:59 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
15975
15976 * configure.in: add uudecode to host_tools
15977
15978 * Makefile.in: added {all,install}-uudecode targets, added them to
15979 the appropriate lists
15980
15981 Tue Feb 2 11:45:53 1993 Ian Lance Taylor (ian@cygnus.com)
15982
15983 * Makefile.in (all-gcc): Added dependency on all-gas.
15984
15985 * configure.in (mips-*-*): Build ld and binutils.
15986
15987 Mon Feb 1 12:35:41 1993 K. Richard Pixley (rich@rtl.cygnus.com)
15988
15989 * configure: check return code from mkdir, print error message and
15990 exit on failure.
15991
15992 Sat Jan 30 16:40:28 1993 John Gilmore (gnu@cygnus.com)
15993
15994 * Makefile.in (make-gdb.tar.Z): New location for texinfo.tex.
15995
15996 Thu Jan 28 15:09:59 1993 Ian Lance Taylor (ian@cygnus.com)
15997
15998 * test-build.mk (HOLES): Added tar, cpio and uudecode.
15999
16000 Wed Jan 27 16:50:32 1993 Jim Wilson (wilson@sphagnum.cygnus.com)
16001
16002 * config.sub (h8500): Recognize this as a cpu type.
16003
16004 Sat Jan 23 20:32:01 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16005
16006 * configure: source directory missing is no longer a warning
16007
16008 * configure.in: recognize irix[34]* instead of irix[34]
16009
16010 * Makefile.in: define and pass down X11_LIB
16011
16012 Sat Jan 23 13:49:40 1993 Per Bothner (bothner@cygnus.com)
16013
16014 * guess-systype: Renamed to ...
16015 * config.guess: ... by popular request.
16016 * configure.in, Makefile.in: Update accordingly.
16017
16018 Thu Jan 21 12:20:55 1993 Per Bothner (bothner@cygnus.com)
16019
16020 * guess-systype: Patches from John Eaton <jwe@che.utexas.edu>:
16021 + Add Convex, Cray/Unicos, and Encore/Multimax support.
16022 + Execute ./dummy instead of assuming . is in PATH.
16023
16024 Tue Jan 19 17:18:06 1993 Per Bothner (bothner@cygnus.com)
16025
16026 * guess-systype: New shell script. Attempts to guess the
16027 canonical host name of the executing host.
16028 Only a few hosts are supported so far.
16029 * configure: Call guess-systype if no host is specified.
16030
16031 Tue Jan 19 08:26:07 1993 Ian Lance Taylor (ian@cygnus.com)
16032
16033 * Makefile.in (gcc-no-fixedincludes): Made to work with current
16034 gcc Makefile.
16035
16036
16037 Fri Jan 15 10:27:02 1993 Ian Lance Taylor (ian@cygnus.com)
16038
16039 * Makefile.in (GCC_FLAGS_TO_PASS): New variable.
16040 (all-gcc, install-gcc, subdir_do): Use it.
16041
16042 Wed Jan 13 17:06:45 1993 Jim Wilson (wilson@sphagnum.cygnus.com)
16043
16044 * Makefile.in: Rename uninstalled gcc driver from gcc to xgcc.
16045
16046 Wed Jan 6 20:29:16 1993 Mike Werner (mtw@rtl.cygnus.com)
16047
16048 * Makefile.in: Removed explicit setting of SUBDIRS. SUBDIRS is now
16049 set exclusively by configure, using configure.in .
16050
16051 Wed Jan 6 13:44:11 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16052
16053 * test-build.mk: set $PATH for all builds
16054
16055 * Makefile.in: pass TARGET_FLAGS_TO_PASS for xiberty and libm
16056
16057 Wed Jan 6 11:02:10 1993 Fred Fish (fnf@cygnus.com)
16058
16059 * Makefile.in (GCC_FOR_TARGET): Supply a default that matches
16060 the one used in gcc/Makefile.in, so that a null expansion doesn't
16061 override the one needed to build gcc with a native cc.
16062
16063
16064 Tue Jan 5 07:55:12 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
16065
16066 * configure: Accept -with arguments.
16067
16068 Sun Jan 3 15:15:09 1993 Steve Chamberlain (sac@thepub.cygnus.com)
16069
16070 * Makefile.in: added h8300sim
16071
16072 Tue Dec 29 15:06:00 1992 Ian Lance Taylor (ian@cygnus.com)
16073
16074 * build-all.mk: If canonhost is i386-unknown-sco3.2v4, change it
16075 to i386-sco3.2v4. Set TARGETS and CFLAGS for i386-sco3.2v4.
16076 (all-cygnus, native, build-cygnus): Make
16077 $(canonhost)-stamp-3stage-done, not $(host)....
16078 * test-build.mk (stamp-3stage-compared): Use tail +10c for
16079 i386-sco3.2v4. Added else true to if command.
16080
16081 Mon Dec 28 12:08:56 1992 Ken Raeburn (raeburn@cygnus.com)
16082
16083 * config.sub: (from FSF) Sequent uses a BSD-like OS.
16084
16085 Mon Dec 28 08:32:06 1992 Minh Tran-Le (mtranle@paris.intellicorp.com)
16086
16087 * configure.in (i[34]86-*-isc*): added; uses mh-sysv.
16088
16089 Thu Dec 24 17:26:24 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16090
16091 * configure.in: don't remove binutils from Solaris builds
16092
16093 Thu Dec 24 14:08:38 1992 david d`zoo' zuhn (zoo@cygnus.com)
16094
16095 * Makefile.in: get rid of earlier definitions for *clean,
16096 also handle the recursive info rule better
16097
16098 Thu Dec 24 12:40:21 1992 Per Bothner (bothner@rtl.cygnus.com)
16099
16100 * Makefile.in (mostlyclean, distclean, realclean): Fix to
16101 do more-or-less the right thing.
16102
16103 Wed Dec 16 10:25:31 1992 Ian Lance Taylor (ian@cygnus.com)
16104
16105 * Makefile.in: Add lines defining CC and CXX, and use CXX rather
16106 than gcc in definitions of CXX_FOR_BUILD and CXX_FOR_TARGET.
16107
16108 Tue Dec 15 00:34:32 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16109
16110 * Makefile.in: change all $(host_cpu)-$(host_vendor)-$(host_os) to
16111 $(host_canonical).
16112
16113 * configure.in: split the configdirs list into 4 categories (native
16114 v. cross, library v. tool) and handle the cross-only and native-
16115 only in more reasonable (and correct!) way.
16116
16117 Mon Dec 14 17:04:22 1992 Stu Grossman (grossman at cygnus.com)
16118
16119 * configure.in (hppa*-*-*): Don't remove bfd and gdb from
16120 configdirs anymore.
16121
16122 Sun Dec 13 00:37:26 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16123
16124 * Makefile.in: extensive cleanup:: removed all of the explicit
16125 clean-* targets, collapsed many wrappers around subdir_do into
16126 one, added additional targets to satisfy standards.texi, deleted
16127 some old targets, some changes for consistency
16128
16129 Fri Dec 11 20:18:02 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16130
16131 * configure.in: handle some programs as cross-only, and others as
16132 native only
16133
16134 * test-build.mk: handle partial holes in a more generic manner
16135
16136 * Makefile.in: m4 depends on libiberty
16137
16138 Thu Dec 3 21:52:11 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16139
16140 * configure.in: add m4, textutils, fileutils, sed, shellutils,
16141 time, wdiff, and find to configdirs
16142
16143 * Makefile.in: all, clean, and install rules for the new programs
16144 added to configure.in
16145
16146 Mon Nov 30 14:54:34 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16147
16148 * configure.in: use mh-sun for all *-sun-* hosts
16149
16150 Fri Nov 27 18:35:54 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16151
16152 * Makefile.in: define flags for X11 include files and library file
16153 locations, pass them down to the programs that need this info
16154
16155 * build-all.mk: added a 'native' target, to 3stage the native toolchain
16156
16157 Sun Nov 22 18:59:13 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16158
16159 * configure.in: start building libg++ for HP-UX targets
16160
16161 Wed Nov 18 19:33:11 1992 John Gilmore (gnu@cygnus.com)
16162
16163 * README: Update references to files moved into etc/.
16164
16165 Sun Nov 15 09:36:08 1992 Fred Fish (fnf@cygnus.com)
16166
16167 * config.sub (i386sol2, i486sol2): i[34]86-unknown-solaris2.
16168 * configure.in (i[34]86-*-solaris2*): Use config/mh-sysv4.
16169
16170 Thu Nov 12 08:50:42 1992 Ian Lance Taylor (ian@cygnus.com)
16171
16172 * configure: accept dash as well as underscore in long option
16173 names for FSF compatibility.
16174
16175 Wed Nov 11 08:04:37 1992 Ian Lance Taylor (ian@cygnus.com)
16176
16177 * config.sub: added -sco3.2v4 support from FSF.
16178
16179 Sun Nov 8 21:14:30 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16180
16181 * configure.in: expand the section that adds or removes
16182 directories from the list of programs to build, to handle native
16183 vs. cross in addition to host v. native
16184
16185 Sat Nov 7 18:52:27 1992 Per Bothner (bothner@rtl.cygnus.com)
16186
16187 * Makefile.in: Replace C++ in macro names with CXX.
16188 This is less likely to break ...
16189
16190 Sat Nov 7 15:16:58 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16191
16192 * test-build.mk: add -w to GNU_MAKE
16193
16194 Fri Nov 6 23:10:37 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16195
16196 * config.sub: remove 'sparc'-->'sparc-sun' default transformation,
16197 add 'sparc' to list of recognized cpus. This needed to make
16198 'sparc-aout' expand to 'sparc-unknown-aout' instead of 'sparc-sun-aout'.
16199 Delete some redundant ose68 variants. Recognize -wrs as an os,
16200 then changes that into $CPU-wrs-vxworks.
16201
16202 * configure.in: remove most references to gdbtest, regularize
16203 target based program removal
16204
16205 * test-build.mk: import from p3 tree (many fixes and changes)
16206
16207 Fri Nov 6 20:59:00 1992 david d `zoo' zuhn (zoo@cygnus.com)
16208
16209 * Makefile.in: added rules to handle tcl, tk, and expect
16210
16211 * configure.in: handle those directories if they exist
16212
16213 Thu Nov 5 14:35:41 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16214
16215 * config.sub: removed bogus hppabsd and hppahpux names, since
16216 "hppa" is not a valid cpu (hppa1.1 or hppa1.0 are, though)
16217
16218 Thu Oct 29 00:12:41 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16219
16220 * Makefile.in: all-gcc now depends on all-binutils. all-libg++
16221 depends upon all-xiberty
16222
16223 * Makefile.in: changes from p3, including:
16224
16225 Thu Oct 8 15:00:17 1992 Ian Lance Taylor (ian@cygnus.com)
16226
16227 * Makefile.in (XTRAFLAGS): include newlib directories if
16228 newlib/Makefile exists, rather than if host != target.
16229
16230 Fri Sep 25 13:41:52 1992 Ian Lance Taylor (ian@cygnus.com)
16231
16232 * Makefile.in: added -nostdinc to XTRAFLAGS if we are using gcc
16233 from the same source tree and not building a cross-compiler. This
16234 matters for the libg++ configuration if reconfiguring a tree that
16235 has already been installed.
16236
16237 Thu Sep 10 10:35:51 1992 Ian Lance Taylor (ian@cygnus.com)
16238
16239 * Makefile.in: added -I for newlib/targ-include to XTRAFLAGS, to
16240 pick up the machine and system specific header files.
16241
16242 * Makefile.in: added AS_FOR_TARGET, passed down in
16243 TARGET_FLAGS_TO_PASS. Added CC_FOR_BUILD, which is intended to be
16244 the C compiler to use to create programs which are run in the
16245 build environment, set it to default to $(CC), and passed it down
16246 in FLAGS_TO_PASS and TARGET_FLAGS_TO_PASS.
16247
16248 Mon Sep 7 22:34:42 1992 Ian Lance Taylor (ian@cirdan.cygnus.com)
16249
16250 * Makefile.in: add $(host) = $(target) tests back to *_FOR_TARGET.
16251 We need them for unusual native builds, like systems without
16252 ranlib.
16253
16254 * configure: also define $(host_canonical) and
16255 $(target_canonical), which are the full, canonical names for the
16256 given host and target
16257
16258 Sun Nov 1 16:38:17 1992 Per Bothner (bothner@cygnus.com)
16259
16260 * Makefile.in: Added separate definitions for C++.
16261
16262 Fri Oct 30 11:37:52 1992 Fred Fish (fnf@cygnus.com)
16263
16264 * configure.in (configdirs): Add deja-gnu.
16265
16266 Fri Oct 23 00:39:18 1992 John Gilmore (gnu@cygnus.com)
16267
16268 * README: Update for configure.texi and gdb-4.7 release.
16269
16270 Wed Oct 21 21:54:27 1992 John Gilmore (gnu@cygnus.com)
16271
16272 * Makefile.in: Move "all" target to top of file.
16273 Previously, first target was ".PHONY" which caused BSD4.4 make
16274 to build .PHONY when make was run without arguments.
16275
16276 Mon Oct 19 01:17:54 1992 John Gilmore (gnu@cygnus.com)
16277
16278 * Makefile.in: Add COPYING.LIB to GDB releases, now that there's
16279 Library-copylefted code in libiberty.
16280
16281 Tue Oct 13 01:22:32 1992 John Gilmore (gnu@cygnus.com)
16282
16283 * config.sub: Replace m68kmote with plain old m68k.
16284
16285 Fri Oct 9 03:14:24 1992 John Gilmore (gnu@cygnus.com)
16286
16287 * Makefile.in: Remove space from blank line, avoid Make complaints.
16288
16289 Thu Oct 8 18:41:45 1992 Ken Raeburn (raeburn@cygnus.com)
16290
16291 * config.sub: Complain if no argument is given. Added support for
16292 386bsd as OS and target alias.
16293
16294 Thu Oct 8 15:07:22 1992 Ian Lance Taylor (ian@cygnus.com)
16295
16296 * Makefile.in (XTRAFLAGS): include newlib directories if
16297 newlib/Makefile exists, rather than if host != target.
16298
16299 Mon Oct 5 03:00:09 1992 Mark Eichin (eichin at tweedledumber.cygnus.com)
16300
16301 * config.sub: recognize sparclite-wrs-vxworks.
16302
16303 * Makefile.in (install-xiberty): added *-xiberty make rules (from
16304 p3.) Added clean-xiberty to clean.
16305
16306 Thu Oct 1 17:59:19 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16307
16308 * configure.in: use *-*-* instead of nested cases for host and target
16309
16310 Tue Sep 29 14:11:18 1992 Ian Lance Taylor (ian@cygnus.com)
16311
16312 * Makefile.in: added -nostdinc to XTRAFLAGS if we are using gcc
16313 from the same source tree and not building a cross-compiler. This
16314 matters for the libg++ configuration if reconfiguring a tree that
16315 has already been installed.
16316
16317 Sep 20 08:53:10 1992 Fred Fish (fnf@cygnus.com)
16318
16319 * config.sub (i486v/i486v4): Merge in from FSF version.
16320
16321 Fri Sep 18 00:32:00 1992 Mark Eichin (eichin@cygnus.com)
16322
16323 * configure: only set PWD if it is already set.
16324
16325 Thu Sep 17 23:05:53 1992 Mark Eichin (eichin@cygnus.com)
16326
16327 * configure: just set PWD=`pwd` at the top, since Ultrix sh
16328 doesn't have unset and all success paths (and most error paths)
16329 out set it anyway. (Note: should change all uses of ${PWD=`pwd`}
16330 to just ${PWD} to avoid confusion.)
16331
16332 Tue Sep 15 16:00:54 1992 Ian Lance Taylor (ian@cygnus.com)
16333
16334 * configure: always set $(tooldir) to $(libdir)/$(target_alias),
16335 even for a native compilation.
16336
16337 Tue Sep 15 02:22:56 1992 John Gilmore (gnu@cygnus.com)
16338
16339 Changes to make the gdb.tar.Z rule work better.
16340
16341 * Makefile.in (GDB_SUPPORT_DIRS): Add opcodes.
16342 (DEVO_SUPPORT): Add configure.texi.
16343 (bfd-ilrt.tar.Z): Remove ancient rule.
16344
16345 Thu Sep 10 10:43:19 1992 Ian Lance Taylor (ian@cygnus.com)
16346
16347 * Makefile.in: added -I for newlib/targ-include to XTRAFLAGS, to
16348 pick up the machine and system specific header files.
16349
16350 * configure.in, config.sub: added new target m68010-adobe-scout,
16351 with alias of adobe68k. Changed configure.in to check for
16352 -scout before -sco* to avoid a false match.
16353
16354 * Makefile.in: added AS_FOR_TARGET, passed down in
16355 TARGET_FLAGS_TO_PASS. Added CC_FOR_BUILD, which is intended to be
16356 the C compiler to use to create programs which are run in the
16357 build environment, set it to default to $(CC), and passed it down
16358 in FLAGS_TO_PASS and TARGET_FLAGS_TO_PASS.
16359
16360 Wed Sep 9 12:21:42 1992 Ian Lance Taylor (ian@cygnus.com)
16361
16362 * Makefile.in: added TARGET_FLAGS_TO_PASS, CC_FOR_TARGET,
16363 AR_FOR_TARGET, RANLIB_FOR_TARGET, NM_FOR_TARGET. Pass
16364 TARGET_FLAGS_TO_PASS, which defines CC, AR, RANLIB and NM as the
16365 FOR_TARGET variants, to newlib and libg++.
16366
16367 Tue Sep 8 17:28:30 1992 Ken Raeburn (raeburn@cambridge.cygnus.com)
16368
16369 * Makefile.in (all-gas, all-gdb): Require all-opcodes to be built
16370 first.
16371
16372 Wed Sep 2 02:50:05 1992 John Gilmore (gnu@cygnus.com)
16373
16374 * config.sub: Accept `elf' as an environment.
16375
16376 Tue Sep 1 15:48:30 1992 Steve Chamberlain (sac@thepub.cygnus.com)
16377
16378 * Makefile.in (all-opcodes): cd into the right directory
16379
16380 Sun Aug 30 21:12:11 1992 Ian Lance Taylor (ian@cygnus.com)
16381
16382 * configure: added -program_transform_name option, used as
16383 argument to sed when installing programs.
16384 configure.texi: added documentation for -program_prefix,
16385 -program_suffix and -program_transform_name.
16386
16387 Thu Aug 27 21:59:44 1992 John Gilmore (gnu@cygnus.com)
16388
16389 * config.sub: Accept i486 where i386 ok.
16390
16391 Thu Aug 27 13:04:42 1992 Brendan Kehoe (brendan@rtl.cygnus.com)
16392
16393 * config.sub: accept we32k
16394
16395 Mon Aug 24 14:05:14 1992 Ian Lance Taylor (ian@cygnus.com)
16396
16397 * config.sub, configure.in: accept OSE68000 and OSE68k.
16398
16399 * Makefile.in: don't create all directories for ``make install'';
16400 let the subdirectories create the ones they need.
16401
16402 Tue Aug 11 23:13:17 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16403
16404 * COPYING: new file, GPL v2
16405
16406 Tue Aug 4 01:12:43 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16407
16408 * Makefile.in: use the new gen-info-dir, which needs a template
16409 argument (which also lives in texinfo)
16410
16411 * configure.texi, standards.texi: fix INFO-DIR-ENTRY
16412
16413 Mon Aug 3 00:34:17 1992 Fred Fish (fnf@cygnus.com)
16414
16415 * config.sub (ncr3000): Change i386 to i486.
16416
16417 Thu Jul 23 00:12:17 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16418
16419 * Makefile.in: add install-rcs, install-grep to
16420 install-no-fixedincludes, removed install-bison and install-libgcc
16421
16422 Tue Jul 21 01:01:50 1992 david d `zoo' zuhn (zoo@cygnus.com)
16423
16424 * configure.in: grab the HPUX makefile fragment if on HPUX
16425
16426 Mon Jul 20 11:02:09 1992 D. V. Henkel-Wallace (gumby@cygnus.com)
16427
16428 * Makefile.in: eradicate bison spoor (ditto libgcc).
16429 configure.in: recognise m68{k,000}-ericsson-OSE.
16430 es1800 is alias for m68k-ericsson-OSE
16431
16432 Sun Jul 19 17:49:02 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16433
16434 * configure.in: rearrange the parts that remove programs from
16435 configdirs, based now on HOST==TARGET or by canonical triple.
16436
16437 Fri Jul 17 22:52:49 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16438
16439 * test-build.mk: recurse explicitly with -f test-build.mk when
16440 appropriate. predicate stage3 and comparison on the existence
16441 of gcc. That is, if gcc isn't around, we aren't three-staging.
16442 On very clean, also remove ...stamp-co. Build in-place before
16443 doing other builds.
16444
16445 Thu Jul 16 18:33:09 1992 Steve Chamberlain (sac@thepub.cygnus.com)
16446
16447 * Makefile.in, configure.in: add tgas
16448
16449 Thu Jul 16 16:05:28 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16450
16451 * Makefile.in: a number of changes merged in from progressive.
16452
16453 * configure.in: add libm.
16454
16455 * .cvsignore: ignore some stuff that comes from test-build.mk.
16456
16457 Tue Jul 7 00:24:52 1992 Fred Fish (fnf@cygnus.com)
16458
16459 * config.sub: Add es1800 (m68k-ericsson-es1800).
16460
16461 Tue Jun 30 20:24:41 1992 D. V. Henkel-Wallace (gumby@cygnus.com)
16462
16463 * configure: Add program_suffix (parallel to program_prefix)
16464 * Makefile.in: adjust directory-creating script for losing decstation
16465
16466 Mon Jun 22 23:43:48 1992 Per Bothner (bothner@cygnus.com)
16467
16468 * configure: Minor $subdir-related fixes.
16469
16470 Mon Jun 22 18:30:26 1992 Steve Chamberlain (sac@thepub.cygnus.com)
16471
16472 * configure: fix various problems with propogating
16473 makefile_target_frag in subdirs.
16474 * configure.in: config libgcc if its there
16475
16476 Fri Jun 19 15:19:40 1992 Stu Grossman (grossman at cygnus.com)
16477
16478 * config.sub: HPPA merge.
16479
16480 Sun Jun 14 10:29:19 1992 John Gilmore (gnu at cygnus.com)
16481
16482 * Makefile.in: Replace all-bison with all-byacc in all
16483 dependency lines for other tools (which now use byacc).
16484
16485 Fri Jun 12 22:21:57 1992 John Gilmore (gnu at cygnus.com)
16486
16487 * config.sub: Add sun4sol2 => sparc-sun-solaris2.
16488
16489 Thu Jun 4 12:07:32 1992 Mark Eichin (eichin@cygnus.com)
16490
16491 * Makefile.in: make gprof rules similar to byacc rules (instead of
16492 vestigal $(unsubdir) that didn't work...)
16493
16494 Thu Jun 4 00:37:05 1992 Per Bothner (bothner@rtl.cygnus.com)
16495
16496 * config.sub: Add support for Linux.
16497 * Makefile.in: Use $(FLAGS_TO_PASS) more consistently
16498 (at least for libg++).
16499
16500 Tue Jun 02 20:03:00 1992 david d `zoo' zuhn (zoo@cygnus.com)
16501
16502 * configure.texi: fix doc for the -nfp option to configure
16503
16504 Tue Jun 2 17:20:52 1992 Michael Tiemann (tiemann@cygnus.com)
16505
16506 * Makefile.in (all-binutils): ar needs flex, so depend on all-flex.
16507
16508 Sun May 31 15:04:08 1992 Mark Eichin (eichin at cygnus.com)
16509
16510 * config.sub: changed [^-]+ to [^-][^-]* so that it works under
16511 Sun sed. (BSD 4.3 sed doesn't handle [^-]+ either.)
16512 * configure.in: added solaris* host_makefile_frag hook.
16513
16514 Sun May 31 01:10:34 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16515
16516 * config.sub: changed recognition of m68000 so that various
16517 m68k types can be specified via m680[01234]0
16518
16519 Sat May 30 21:01:06 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16520
16521 * config.sub (basic_machine): fix sed so that '-foo' isn't
16522 completely substituted out while .+'-foo' loses the '-foo'
16523
16524 Wed May 27 23:18:52 1992 Michael Tiemann (tiemann@rtl.cygnus.com)
16525
16526 * config.sub ($os): Add -aout.
16527
16528 Fri May 22 14:00:02 1992 Per Bothner (bothner@cygnus.com)
16529
16530 * configure: If host_makefile_frag is absolute, don't
16531 prefix ${invsubdir} (relevant to libg++ auto-configure).
16532
16533 Thu May 21 18:00:09 1992 Michael Tiemann (tiemann@rtl.cygnus.com)
16534
16535 * Makefile.in (tooldir): Define it.
16536 (all-ld): Depend on all-flex.
16537
16538 Sun May 10 21:45:59 1992 Per Bothner (bothner@rtl.cygnus.com)
16539
16540 * Makefile.in (check): Fix libg++ special case.
16541
16542 Fri May 8 08:31:41 1992 K. Richard Pixley (rich@cygnus.com)
16543
16544 * configure: do not bury `pwd` into config.status, thus do fewer
16545 pwd's.
16546
16547 * configure: print the "Building in" message only when building in
16548 other than "." AND verbose.
16549
16550 * configure: remove -s, rework -v to better accomodate guested
16551 configures.
16552
16553 * standards.texi: updated to 3 may, fixed librid <-> libdir typo.
16554
16555 Fri May 1 18:00:50 1992 K. Richard Pixley (rich@cygnus.com)
16556
16557 * Makefile.in: macroize flags passed on recursion. remove
16558 fileutils.
16559
16560 Thu Apr 30 08:56:20 1992 K. Richard Pixley (rich@cygnus.com)
16561
16562 * configure: get makesrcdir right for subdirs deeper than 1.
16563
16564 * Makefile.in: pass INSTALL, INSTALL_DATA, INSTALL_PROGRAM on
16565 install.
16566
16567 Fri Apr 24 15:51:51 1992 K. Richard Pixley (rich@cygnus.com)
16568
16569 * Makefile.in: don't print subdir_do or recursion lines.
16570
16571 Fri Apr 24 15:22:04 1992 K. Richard Pixley (rich@cygnus.com)
16572
16573 * standards.texi: added menu item.
16574
16575 * Makefile.in: build and install standards.info.
16576
16577 * standards.texi: new file.
16578
16579 Wed Apr 22 18:06:55 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16580
16581 * configure: test for and move config.status pieces from
16582 ${subdir}/.
16583
16584 Wed Apr 22 14:38:34 1992 Fred Fish (fnf@cygnus.com)
16585
16586 * configure: Test for existance of files before trying to mv
16587 them, to avoid numerous non-existance messages.
16588
16589 Tue Apr 21 12:31:33 1992 K. Richard Pixley (rich@cygnus.com)
16590
16591 * configure: correct final line of config.status.
16592
16593 * configure: patch from eggert. Avoids a protection problem if
16594 the original Makefile.in is read only.
16595
16596 * configure: use move-if-change from gcc to create config.status.
16597 Some makefiles depend on config.status to tell if a directory
16598 has been reconfigured for a different host. This change
16599 prevents those directories from remaking everything in the case
16600 where the reconfig was only intended to rebuild a Makefile.
16601
16602 * configure: test for config.sub with "config.sub sun4" rather
16603 than "config.sub ${host_alias}". Otherwise we can't tell a bad
16604 host alias from a missing config.sub.
16605
16606 Mon Apr 20 18:16:36 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16607
16608 * Makefile.in: explicitly pass CFLAGS on recursion. no longer pass
16609 MINUS_G (this can be done with CFLAGS). Default CFLAGS to -g.
16610
16611 Fri Apr 17 18:27:51 1992 Per Bothner (bothner@cygnus.com)
16612
16613 * configure: mkdir ${subdir} as needed.
16614
16615 Wed Apr 15 17:37:22 1992 K. Richard Pixley (rich@cygnus.com)
16616
16617 * Makefile.in,configure.in: added autoconf.
16618
16619 Wed Apr 15 17:27:34 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16620
16621 * Makefile.in: no longer pass against on recursion.
16622
16623 * Makefile.in: added .NOEXPORT: so that stray makefile_frag
16624 definitions are not inherited.
16625
16626 * configure: correct makesrcdir when subdir is .
16627
16628 Tue Apr 14 11:56:09 1992 Per Bothner (bothner@cygnus.com)
16629
16630 * configure: Add support for 'subdirs' variable, which is
16631 like 'configdirs', except that configure doesn't re-invoke
16632 itself for subdirs, it just creates a Makefile for each subdir.
16633 * configure.texi: Document subdirs.
16634
16635 Mon Apr 13 18:50:16 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
16636
16637 * configure.in: added flex to configdirs
16638
16639 Mon Apr 13 18:43:55 1992 K. Richard Pixley (rich@cygnus.com)
16640
16641 * Makefile.in: remove clean-stamps from clean.
16642
16643 Sat Apr 11 03:52:03 1992 John Gilmore (gnu at cygnus.com)
16644
16645 * configure.in: Add gdbtest to configdirs.
16646
16647 Fri Apr 10 23:11:49 1992 Fred Fish (fnf@cygnus.com)
16648
16649 * Makefile.in (MINUS_G): Add macro, default to -g, pass on
16650 to recursive makes.
16651 * configure.in: Recognize new ncr3000 config.
16652
16653 Wed Apr 8 23:08:12 1992 K. Richard Pixley (rich@cygnus.com)
16654
16655 * Makefile.in, configure.in: removed references to gdbm.
16656
16657 Tue Apr 7 16:48:20 1992 Per Bothner (bothner@cygnus.com)
16658
16659 * config.sub: Don't canonicalize os value
16660 newsos* to bsd (readline needs to check for newsos).
16661 (This fix was earlier made Jan 31, but got re-broken.)
16662
16663 Mon Apr 6 14:34:08 1992 Stu Grossman (grossman at cygnus.com)
16664
16665 * configure.in: sco is an os, not a vendor!
16666
16667 * configure: Quote $( better. Keep various shells happy.
16668
16669 Tue Mar 31 16:32:57 1992 K. Richard Pixley (rich@cygnus.com)
16670
16671 * Makefile.in: eliminate stamp-files.
16672
16673 Mon Mar 30 22:20:23 1992 K. Richard Pixley (rich@cygnus.com)
16674
16675 * Makefile.in: add send_pr. remove "force" from .stmp-gprof rule.
16676 Supress echoing of all the "if [ -d ... $(MAKE)" lines.
16677
16678 Wed Mar 25 15:20:04 1992 Stu Grossman (grossman@cygnus.com)
16679
16680 * config.sub: fix iris/iris3.
16681
16682 Wed Mar 25 10:34:19 1992 K. Richard Pixley (rich@cygnus.com)
16683
16684 * configure: re-add -rm.
16685
16686 Tue Mar 24 23:50:16 1992 K. Richard Pixley (rich@cygnus.com)
16687
16688 * Maskefile.in: add .stmp-rcs to all.
16689
16690 * configure.in: remove gas from rs6000 build, use aix host fragment.
16691
16692 Mon Mar 23 19:43:35 1992 K. Richard Pixley (rich@cygnus.com)
16693
16694 * configure: pass down site_option during recursion.
16695
16696 Thu Mar 19 16:49:36 1992 Stu Grossman (grossman at cygnus.com)
16697
16698 * Makefile.in (all.cross): Add .stmp-bfd .stmp-readline.
16699
16700 Wed Mar 18 15:29:33 1992 Mike Stump (mrs@cygnus.com)
16701
16702 * configure: Change exec_prefix so that it really defaults to prefix.
16703
16704 Sat Mar 14 17:20:38 1992 Fred Fish (fnf@cygnus.com)
16705
16706 * Makefile.in, configure.in: Add support for mmalloc library.
16707
16708 Fri Mar 13 18:44:18 1992 K. Richard Pixley (rich@cygnus.com)
16709
16710 * Makefile.in: add stmp dependencies for a few more things.
16711
16712 Thu Mar 12 04:56:24 1992 K. Richard Pixley (rich@cygnus.com)
16713
16714 * configure: adjusted error message on objdir/srcdir configure
16715 collision, per john's suggestion.
16716
16717 * Makefile.in: add libiberty stmp to all and all.cross.
16718
16719 Wed Mar 11 02:07:52 1992 K. Richard Pixley (rich@cygnus.com)
16720
16721 * Makefile.in: remove force dependencies, add grep to all.
16722
16723 Tue Mar 10 21:49:18 1992 K. Richard Pixley (rich@mars.cygnus.com)
16724
16725 * Makefile.in: drop flex. make stamp files work.
16726
16727 * configure: added test for conflicting configuration in srcdir,
16728 remove trailing slashes from srcdir. Otherwise emacs gdb mode
16729 gets cranky. use relative paths for configure and srcdir
16730 whenever possible. Send some error messages to stderr that were
16731 going to stdout.
16732
16733 Tue Mar 10 18:01:55 1992 Per Bothner (bothner@cygnus.com)
16734
16735 * Makefile.in: Fix libg++ rule to check for gcc directory
16736 before using gcc/gcc. Also pass XTRAFLAGS.
16737
16738 Thu Mar 5 21:45:07 1992 K. Richard Pixley (rich@sendai)
16739
16740 * Makefile.in: added stmp-files so that directories aren't polled
16741 when they are already built.
16742
16743 * configure.texi: fixed a node pointer problem.
16744
16745 Thu Mar 5 12:05:58 1992 Stu Grossman (grossman at cygnus.com)
16746
16747 * config.sub configure.in gdb/configure.in
16748 gdb/mips-tdep.c gdb/mipsread.c gdb/procfs.c gdb/signame.h
16749 gdb/tm-irix3.h gdb/tm-mips.h gdb/xm-irix4.h gdb/config/mt-irix3
16750 gdb/config/mh-irix4 texinfo/configure.in: Port to SGI Irix-4.x.
16751
16752 Wed Mar 4 02:57:46 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16753
16754 * configure: -recurring becomes -silent. corrected help message
16755 for -site= option.
16756
16757 * Makefile.in: mkdir $(exec_prefix) and $(tooldir).
16758
16759 Tue Mar 3 14:51:21 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16760
16761 * configure: when building Makefile for crosses, replace
16762 tooldir and program_prefix. default srcdir from location of
16763 config.sub. remove "for host in hosts" and "for target in
16764 targets" loops.
16765
16766 Wed Feb 26 19:48:25 1992 K. Richard Pixley (rich@rtl.cygnus.com)
16767
16768 * Makefile.in: Do not pass bindir or mandir to cvs.
16769
16770 Wed Feb 26 18:04:40 1992 K. Richard Pixley (rich@cygnus.com)
16771
16772 * Makefile.in, configure.in: removed traces of namesubdir,
16773 -subdirs, $(subdir), $(unsubdir), some rcs triggers. Forced
16774 copyrights to '92, changed some from Cygnus to FSF.
16775
16776 * configure.texi: remove most references to multiple hosts,
16777 multiple targets, subdirs, etc.
16778
16779 * configure.man: removed rcsid. reference config.sub not
16780 config.subr.
16781
16782 * Makefile.in: mkdir $(infodir) on install-info.
16783
16784 Wed Feb 19 15:41:13 1992 John Gilmore (gnu at cygnus.com)
16785
16786 * configure.texi: Explain better about .gdbinit and about
16787 the environment that configure.in sections run in.
16788
16789 Fri Feb 7 07:55:00 1992 John Gilmore (gnu at cygnus.com)
16790
16791 * configure.in: Ultrix is only a decstation if it's a MIPS.
16792
16793 Fri Jan 31 21:54:51 1992 John Gilmore (gnu at cygnus.com)
16794
16795 * README: DOC.configure => cfg-paper.texi.
16796
16797 Fri Jan 31 21:48:18 1992 Stu Grossman (grossman at cygnus.com)
16798
16799 * config.sub (near case $os): Don't convert newsos* to bsd!
16800
16801 Fri Jan 31 02:27:32 1992 John Gilmore (gnu at cygnus.com)
16802
16803 * Makefile.in: Reinstall change from gdb-4.3 that reduces
16804 the number of copies of COPYING that go into the GDB tar file.
16805
16806 Thu Jan 30 16:17:30 1992 Stu Grossman (grossman at cygnus.com)
16807
16808 * bfd/configure.in, gdb/config/mh-i386sco,
16809 gdb/config/mt-i386v32, gdb/configure.in, readline/configure.in:
16810 Fix SCO configuration stuff.
16811
16812 Tue Jan 28 23:51:07 1992 Per Bothner (bothner at cygnus.com)
16813
16814 * Makefile.in: For libg++, make sure the -I pointing
16815 to the gcc directory goes *after* all the libg++-local -I flags.
16816 Also, move just-gcc dependency from just-libg++ to all-libg++.
16817
16818 Tue Jan 28 12:56:24 1992 Stu Grossman (grossman at cygnus.com)
16819
16820 * configure: Change -x to -f to keep Ultrix /bin/test happy.
16821
16822 Sat Jan 18 17:45:11 1992 Stu Grossman (grossman at cygnus.com)
16823
16824 * Makefile.in (make-gdb.tar.Z): Remove texinfo targets.
16825
16826 Sat Jan 18 17:03:21 1992 Fred Fish (fnf at cygnus.com)
16827
16828 * config.sub: Add stratus configuration frags. Also
16829 submitted to FSF.
16830
16831 Sat Jan 18 15:35:29 1992 Stu Grossman (grossman at cygnus.com)
16832
16833 * Makefile.in (DEV_SUPPORT): add configure.man.
16834
16835 * config.sub(Decode manufacturer-specific): add -none*.
16836
16837 Fri Jan 17 17:58:05 1992 Stu Grossman (grossman at cygnus.com)
16838
16839 * Makefile.in: remove form feeds to make Sun's make happy.
16840 (DEVO_SUPPORT): DOC.configure => cfg-paper.texi.
16841
16842 Sat Jan 4 16:11:44 1992 John Gilmore (gnu at cygnus.com)
16843
16844 * Makefile.in (AR_FLAGS): Make quieter.
16845
16846 Thu Jan 2 22:57:12 1992 John Gilmore (gnu at cygnus.com)
16847
16848 * configure.in: Add libg++.
16849 * configure: When verbose, don't output the command line at each
16850 level; it will be unremarkably the same as the previous version,
16851 which will be the same as what the user typed.
16852
16853 Fri Dec 27 16:26:47 1991 K. Richard Pixley (rich at cygnus.com)
16854
16855 * configure.in, Makefile.in: fix clean-info, add flex. add
16856 fileutils.
16857
16858 * configure: be less sensitive to spaces in Makefile.in. Do not
16859 look for sources in "..". Doing so breaks subdirectories that
16860 might have their own configure. If a subdir has it's own
16861 configure script, use it.
16862
16863 Thu Dec 26 16:30:26 1991 K. Richard Pixley (rich at cygnus.com)
16864
16865 * cfg-paper.texi: some changes suggested by rms.
16866
16867 Thu Dec 26 10:13:36 1991 Fred Fish (fnf at cygnus.com)
16868
16869 * config.sub: Merge in some small additions from the FSF version,
16870 taken from the gcc distribution, to bring the Cygnus and FSF
16871 versions into closer sync.
16872
16873 Fri Dec 20 11:34:18 1991 Fred Fish (fnf at cygnus.com)
16874
16875 * configure.in: Changed svr4 references to sysv4.
16876
16877 Thu Dec 19 15:54:29 1991 K. Richard Pixley (rich at cygnus.com)
16878
16879 * configure: added -V for version number option.
16880
16881 Wed Dec 18 15:39:34 1991 K. Richard Pixley (rich at cygnus.com)
16882
16883 * DOC.configure, cfg-paper.texi: revised, updated, and texinfo'd.
16884 renamed from DOC.configure to cfg-paper.texi.
16885
16886 Mon Dec 16 23:05:19 1991 K. Richard Pixley (rich at rtl.cygnus.com)
16887
16888 * configure, config.subr, config.sub: config.subr is now
16889 config.sub again.
16890
16891 Fri Dec 13 01:17:06 1991 K. Richard Pixley (rich at cygnus.com)
16892
16893 * configure.texi: new file, in progress.
16894
16895 * Makefile.in: build info file and install the man page for
16896 configure.
16897
16898 * configure.man: new file, first cut.
16899
16900 * configure: find config.subr again now that configuration "none"
16901 has gone. removed all traces of the -ansi option. removed all
16902 traces of the -languages option.
16903
16904 * config.subr: resync from rms.
16905
16906 1991-12-11 K. Richard Pixley (rich at rtl.cygnus.com)
16907
16908 * configure, config.sub, config.subr: merge config.sub into
16909 config.subr, call the result config.subr, remove config.sub, use
16910 config.subr.
16911
16912 * Makefile.in: revised install for dir.info.
16913
16914 1991-12-10 K. Richard Pixley (rich at rtl.cygnus.com)
16915
16916 * configure.in: add decstation host makefile frag.
16917
16918 * Makefile.in: BISON now bison -y again. also install-gcc on
16919 install. clean-gdbm on clean. infodir belongs in datadir.
16920 Make directories for info install. Build dir.info here then
16921 install it.
16922
16923 1991-12-09 K. Richard Pixley (rich at rtl.cygnus.com)
16924
16925 * Makefile.in: fix for bad directory tests.
16926
16927 1991-12-07 K. Richard Pixley (rich at rtl.cygnus.com)
16928
16929 * configure: \{1,2\} appears to be a sysv'ism. Use a different
16930 regexp. -srcdir relative was being handled incorrectly.
16931
16932 * Makefile.in: unwrapped some for loops so that parallel makes
16933 work again and so one can focus one's attention on a particular
16934 package.
16935
16936 1991-12-06 K. Richard Pixley (rich at rtl.cygnus.com)
16937
16938 * configure: added PWD as a stand in for `pwd` (for speed). use
16939 elif wherever possible. make -srcdir work without -objdir.
16940 -objdir= commented out.
16941
16942 1991-12-05 K. Richard Pixley (rich at rtl.cygnus.com)
16943
16944 * configure: +options become --options. -subdirs commented out.
16945 added -host, -datadir. Renamed -destdir to -prefix. Comment in
16946 Makefile now at top of generated Makefile. Removed cvs log
16947 entries. added -srcdir. create .gdbinit only if there is one
16948 in ${srcdir}.
16949
16950 * Makefile.in: idestdir and ddestdir go away. Added copyrights
16951 and shift gpl to v2. Added ChangeLog if it didn't exist. docdir
16952 and mandir now keyed off datadir by default.
16953
16954 1991-11-22 K. Richard Pixley (rich at rtl.cygnus.com)
16955
16956 * Freshly created ChangeLog.
16957
16958 \f
16959 Local Variables:
16960 mode: change-log
16961 left-margin: 8
16962 fill-column: 76
16963 version-control: never
16964 End: