22e0527251
This patch updates GCC to use autoconf 2.69 and automake 1.15.1. (That's not the latest automake version, but it's the one used by binutils-gdb, with which consistency is desirable, and in any case seems a useful incremental update that should make a future update to 1.16.1 easier.) The changes are generally similar to the binutils-gdb ones, and are copied from there where shared files and directories are involved (there are some further changes to such shared directories, however, which I'd expect to apply to binutils-gdb once this patch is in GCC). Largely, obsolete AC_PREREQ calls are removed, while many AC_LANG_SOURCE calls are added to avoid warnings from aclocal and autoconf. Multilib support is no longer included in core automake, meaning that multilib.am needs copying from automake's contrib directory into the GCC source tree. Autoconf 2.69 has Go support, so local copies of that support are removed. I hope the D support will soon be submitted to upstream autoconf so the local copy of that can be removed in a future update. Changes to how automake generates runtest calls mean quotes are removed from RUNTEST definitions in five lib*/testsuite/Makefile.am files (libatomic, libgomp, libitm, libphobos, libvtv; some others have RUNTEST definitions without quotes, which are still OK); libgo and libphobos also get -Wno-override added to AM_INIT_AUTOMAKE so those overrides of RUNTEST do not generate automake warnings. Note that the regeneration did not include regeneration of fixincludes/config.h.in (attempting such regeneration resulted in all the USED_FOR_TARGET conditionals disappearing; and I don't see anything in the fixincludes/ directory that would result in such conditionals being generated, unlike in the gcc/ directory). Also note that libvtv/testsuite/other-tests/Makefile.in was not regenerated; that directory is not listed as a subdirectory for which Makefile.in gets regenerated by calling "automake" in libvtv/, so I'm not sure how it's meant to be regenerated. While I mostly fixed warnings should running aclocal / automake / autoconf, there were various such warnings from automake in the libgfortran, libgo, libgomp, liboffloadmic, libsanitizer, libphobos directories that I did not fix, preferring to leave those to the relevant subsystem maintainers. Specifically, most of those warnings were of the following form (example from libgfortran): Makefile.am:48: warning: source file 'caf/single.c' is in a subdirectory, Makefile.am:48: but option 'subdir-objects' is disabled automake: warning: possible forward-incompatibility. automake: At least a source file is in a subdirectory, but the 'subdir-objects' automake: automake option hasn't been enabled. For now, the corresponding output automake: object file(s) will be placed in the top-level directory. However, automake: this behaviour will change in future Automake versions: they will automake: unconditionally cause object files to be placed in the same subdirectory automake: of the corresponding sources. automake: You are advised to start using 'subdir-objects' option throughout your automake: project, to avoid future incompatibilities. I think it's best for the relevant maintainers to add subdir-objects and do any other associated Makefile.am changes needed. In some cases the paths in the warnings involved ../; I don't know if that adds any extra complications to the use of subdir-objects. I've tested this with native, cross and Canadian cross builds. The risk of any OS-specific issues should I hope be rather lower than if a libtool upgrade were included (we *should* do such an upgrade at some point, but it's more complicated - it involves identifying all our local libtool changes to see if any aren't included in the upstream version we update to, and reverting an upstream libtool patch that's inappropriate for use in GCC); I think it would be better to get this update into GCC so that people can test in different configurations and we can fix any issues found, rather than to try to get more and more testing done before it goes in. top level: 2018-10-31 Joseph Myers <joseph@codesourcery.com> PR bootstrap/82856 * multilib.am: New file. From automake. Merge from binutils-gdb: 2018-06-19 Simon Marchi <simon.marchi@ericsson.com> * libtool.m4: Use AC_LANG_SOURCE. * configure.ac: Remove AC_PREREQ, use AC_LANG_SOURCE. * ar-lib: New file. * test-driver: New file. * configure: Re-generate. config: 2018-10-31 Joseph Myers <joseph@codesourcery.com> PR bootstrap/82856 * math.m4, tls.m4: Use AC_LANG_SOURCE. Merge from binutils-gdb: 2018-06-19 Simon Marchi <simon.marchi@ericsson.com> * override.m4 (_GCC_AUTOCONF_VERSION): Bump from 2.64 to 2.69. fixincludes: 2018-10-31 Joseph Myers <joseph@codesourcery.com> PR bootstrap/82856 * configure.ac: Remove AC_PREREQ. * aclocal.m4, configure: Regenerate. gcc: 2018-10-31 Joseph Myers <joseph@codesourcery.com> PR bootstrap/82856 * configure.ac: Remove AC_PREREQ. Use AC_LANG_SOURCE. Use single line for second argument of AC_DEFINE_UNQUOTED. * doc/install.texi (Tools/packages necessary for modifying GCC): Update to autoconf 2.69 and automake 1.15.1. * aclocal.m4, config.in, configure: Regenerate. gnattools: 2018-10-31 Joseph Myers <joseph@codesourcery.com> PR bootstrap/82856 * configure.ac: Remove AC_PREREQ. * configure: Regenerate. gotools: 2018-10-31 Joseph Myers <joseph@codesourcery.com> PR bootstrap/82856 * config/go.m4: Remove file. * Makefile.am (ACLOCAL_AMFLAGS): Do not use -I ./config. * configure.ac: Remove AC_PREREQ. Do not include config/go.m4. * Makefile.in, aclocal.m4, configure: Regenerate. intl: 2018-10-31 Joseph Myers <joseph@codesourcery.com> PR bootstrap/82856 Merge from binutils-gdb: 2018-06-19 Simon Marchi <simon.marchi@ericsson.com> * configure.ac: Add AC_USE_SYSTEM_EXTENSIONS, remove AC_PREREQ. * configure: Re-generate. * config.h.in: Re-generate. * aclocal.m4: Re-generate. libada: 2018-10-31 Joseph Myers <joseph@codesourcery.com> PR bootstrap/82856 * configure.ac: Remove AC_PREREQ. * configure: Regenerate. libatomic: 2018-10-31 Joseph Myers <joseph@codesourcery.com> PR bootstrap/82856 * Makefile.am: Include multilib.am. * acinclude.m4: Use AC_LANG_SOURCE. * configure.ac: Remove AC_PREREQ. * testsuite/Makefile.am (RUNTEST): Remove quotes. * Makefile.in, aclocal.m4, configure, testsuite/Makefile.in: Regenerate. libbacktrace: 2018-10-31 Joseph Myers <joseph@codesourcery.com> PR bootstrap/82856 * Makefile.am: Include multilib.am. * configure.ac: Remove AC_PREREQ. Use AC_LANG_SOURCE. * Makefile.in, aclocal.m4, config.h.in, configure: Regenerate. libcc1: 2018-10-31 Joseph Myers <joseph@codesourcery.com> PR bootstrap/82856 * configure.ac: Remove AC_PREREQ. * Makefile.in, aclocal.m4, configure: Regenerate. libcpp: 2018-10-31 Joseph Myers <joseph@codesourcery.com> PR bootstrap/82856 * configure.ac: Remove AC_PREREQ. Use AC_LANG_SOURCE. * aclocal.m4, config.in, configure: Regenerate. libdecnumber: 2018-10-31 Joseph Myers <joseph@codesourcery.com> PR bootstrap/82856 Merge from binutils-gdb: 2018-06-19 Simon Marchi <simon.marchi@ericsson.com> * configure.ac: Remove AC_PREREQ. * configure: Re-generate. * aclocal.m4. libffi: 2018-10-31 Joseph Myers <joseph@codesourcery.com> PR bootstrap/82856 * Makefile.am: Include multilib.am. (AUTOMAKE_OPTIONS): Add info-in-builddir. (CLEANFILES): Remove doc/libffi.info. * configure.ac: Remove AC_PREREQ. * Makefile.in, aclocal.m4, configure, fficonfig.h.in, include/Makefile.in, man/Makefile.in, testsuite/Makefile.in: Regenerate. libgcc: 2018-10-31 Joseph Myers <joseph@codesourcery.com> PR bootstrap/82856 * configure.ac: Remove AC_PREREQ. Use AC_LANG_SOURCE. * configure: Regenerate. libgfortran: 2018-10-31 Joseph Myers <joseph@codesourcery.com> PR bootstrap/82856 * Makefile.am: Include multilib.am. * configure.ac: Remove AC_PREREQ. * Makefile.in, aclocal.m4, config.h.in, configure: Regenerate. libgo [logically part of this change but omitted from the commit]: 2018-10-31 Joseph Myers <joseph@codesourcery.com> PR bootstrap/82856 * Makefile.am: Include multilib.am. * config/go.m4: Remove file. * config/libtool.m4: Use AC_LANG_SOURCE. * configure.ac: Remove AC_PREREQ. Use AC_LANG_SOURCE. Use -Wno-override in AM_INIT_AUTOMAKE call. * Makefile.in, aclocal.m4, configure, testsuite/Makefile.in: Regenerate. libgomp: 2018-10-31 Joseph Myers <joseph@codesourcery.com> PR bootstrap/82856 * Makefile.am: Include multilib.am (AUTOMAKE_OPTIONS): Add info-in-builddir. (CLEANFILES): Remove libgomp.info. * configure.ac: Remove AC_PREREQ. * testsuite/Makefile.am (RUNTEST): Remove quotes. * Makefile.in, aclocal.m4, configure, testsuite/Makefile.in: Regenerate. libhsail-rt: 2018-10-31 Joseph Myers <joseph@codesourcery.com> PR bootstrap/82856 * configure.ac: Remove AC_PREREQ. * Makefile.in, aclocal.m4, configure: Regenerate. libiberty: 2018-10-31 Joseph Myers <joseph@codesourcery.com> PR bootstrap/82856 Merge from binutils-gdb: 2018-06-19 Simon Marchi <simon.marchi@ericsson.com> * configure.ac: Remove AC_PREREQ. * configure: Re-generate. * config.in: Re-generate. libitm: 2018-10-31 Joseph Myers <joseph@codesourcery.com> PR bootstrap/82856 * Makefile.am: Include multilib.am. (AUTOMAKE_OPTIONS): Add info-in-builddir. (CLEANFILES): Remove libitm.info. * configure.ac: Remove AC_PREREQ. * testsuite/Makefile.am (RUNTEST): Remove quotes. * Makefile.in, aclocal.m4, configure, testsuite/Makefile.in: Regenerate. libobjc: 2018-10-31 Joseph Myers <joseph@codesourcery.com> PR bootstrap/82856 * configure.ac: Remove AC_PREREQ. * aclocal.m4, config.h.in, configure: Regenerate. liboffloadmic: 2018-10-31 Joseph Myers <joseph@codesourcery.com> PR bootstrap/82856 * Makefile.am: Include multilib.am. * configure.ac: Remove AC_PREREQ. * plugin/Makefile.am: Include multilib.am. * plugin/configure.ac: Remove AC_PREREQ. * Makefile.in, aclocal.m4, configure, plugin/Makefile.in, plugin/aclocal.m4, plugin/configure: Regenerate. libphobos: 2018-10-31 Joseph Myers <joseph@codesourcery.com> PR bootstrap/82856 * Makefile.am: Include multilib.am. * configure.ac: Remove AC_PREREQ. Use -Wno-override in AM_INIT_AUTOMAKE call. * m4/autoconf.m4: Add extra argument to AC_LANG_DEFINE call. * m4/druntime/os.m4: Use AC_LANG_SOURCE. * testsuite/Makefile.am (RUNTEST): Remove quotes. * Makefile.in, aclocal.m4, configure, libdruntime/Makefile.in, src/Makefile.in, testsuite/Makefile.in: Regenerate. libquadmath: 2018-10-31 Joseph Myers <joseph@codesourcery.com> PR bootstrap/82856 * Makefile.am: Include multilib.am. (AUTOMAKE_OPTIONS): Remove 1.8. Add info-in-builddir. (all-local): Define outside conditional code. (CLEANFILES): Remove libquadmath.info. * configure.ac: Remove AC_PREREQ. * Makefile.in, aclocal.m4, config.h.in, configure: Regenerate. libsanitizer: 2018-10-31 Joseph Myers <joseph@codesourcery.com> PR bootstrap/82856 * Makefile.am: Include multilib.am. * configure.ac: Remove AC_PREREQ. Use AC_LANG_SOURCE. * Makefile.in, aclocal.m4, asan/Makefile.in, configure, interception/Makefile.in, libbacktrace/Makefile.in, lsan/Makefile.in, sanitizer_common/Makefile.in, tsan/Makefile.in, ubsan/Makefile.in: Regenerate. libssp: 2018-10-31 Joseph Myers <joseph@codesourcery.com> PR bootstrap/82856 * Makefile.am: Include multilib.am. (AUTOMAKE_OPTIONS): Remove 1.9.5. * configure.ac: Remove AC_PREREQ. Quote argument to AC_RUN_IFELSE. * Makefile.in, aclocal.m4, configure: Regenerate. libstdc++-v3: 2018-10-31 Joseph Myers <joseph@codesourcery.com> PR bootstrap/82856 * Makefile.am: Include multilib.am. * configure.ac: Remove AC_PREREQ. * Makefile.in, aclocal.m4, configure, doc/Makefile.in, include/Makefile.in, libsupc++/Makefile.in, po/Makefile.in, python/Makefile.in, src/Makefile.in, src/c++11/Makefile.in, src/c++17/Makefile.in, src/c++98/Makefile.in, src/filesystem/Makefile.in, testsuite/Makefile.in: Regenerate. libvtv: 2018-10-31 Joseph Myers <joseph@codesourcery.com> PR bootstrap/82856 * Makefile.am: Include multilib.am. * configure.ac: Remove AC_PREREQ. * testsuite/Makefile.am (RUNTEST): Remove quotes. * Makefile.in, aclocal.m4, configure, testsuite/Makefile.in: Regenerate. lto-plugin: 2018-10-31 Joseph Myers <joseph@codesourcery.com> PR bootstrap/82856 * configure.ac: Remove AC_PREREQ. Use AC_LANG_SOURCE. * Makefile.in, aclocal.m4, config.h.in, configure: Regenerate. zlib: 2018-10-31 Joseph Myers <joseph@codesourcery.com> PR bootstrap/82856 * Makefile.am: Include multilib.am. Merge from binutils-gdb: 2018-06-19 Simon Marchi <simon.marchi@ericsson.com> * configure.ac: Modernize AC_INIT call, remove AC_PREREQ. * Makefile.am (AUTOMAKE_OPTIONS): Remove 1.8, cygnus, add foreign. * Makefile.in: Re-generate. * aclocal.m4: Re-generate. * configure: Re-generate. From-SVN: r265695
358 lines
8.8 KiB
Plaintext
358 lines
8.8 KiB
Plaintext
2018-10-31 Joseph Myers <joseph@codesourcery.com>
|
|
|
|
PR bootstrap/82856
|
|
* Makefile.am: Include multilib.am.
|
|
(AUTOMAKE_OPTIONS): Remove 1.9.5.
|
|
* configure.ac: Remove AC_PREREQ. Quote argument to
|
|
AC_RUN_IFELSE.
|
|
* Makefile.in, aclocal.m4, configure: Regenerate.
|
|
|
|
2018-04-24 H.J. Lu <hongjiu.lu@intel.com>
|
|
|
|
* configure: Regenerated.
|
|
|
|
2018-04-19 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
* configure: Regenerated.
|
|
|
|
2018-04-18 David Malcolm <dmalcolm@redhat.com>
|
|
|
|
PR jit/85384
|
|
* configure: Regenerate.
|
|
|
|
2018-02-14 Igor Tsimbalist <igor.v.tsimbalist@intel.com>
|
|
|
|
PR target/84148
|
|
* configure: Regenerate.
|
|
|
|
2018-01-03 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
Update copyright years.
|
|
|
|
2017-11-17 Igor Tsimbalist <igor.v.tsimbalist@intel.com>
|
|
|
|
* Makefile.am: Update AM_CFLAGS, update
|
|
libssp_nonshared_la_CFLAGS.
|
|
* Makefile.in: Regenerate.
|
|
* configure: Likewise.
|
|
* aclocal.m4: Likewise.
|
|
* configure.ac: Set CET_FLAGS. Update XCFLAGS.
|
|
|
|
2017-04-01 Jonathan Yong <10walls@gmail.com>
|
|
|
|
* ssp.c (__guard_setup): Suppress unused variable warning.
|
|
|
|
2017-01-17 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
PR other/79046
|
|
* configure.ac: Add GCC_BASE_VER.
|
|
* Makefile.am (gcc_version): Use @get_gcc_base_ver@ instead of cat to
|
|
get version from BASE-VER file.
|
|
* configure: Regenerated.
|
|
* Makefile.in: Regenerated.
|
|
|
|
2017-01-04 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
Update copyright years.
|
|
|
|
2016-11-15 Matthias Klose <doko@ubuntu.com>
|
|
|
|
* configure: Regenerate.
|
|
|
|
2015-04-25 Daniel Starke <daniel.f.starke@freenet.de>
|
|
|
|
PR target/65867
|
|
* ssp.c: Added wincrypt.h include for Windows targets.
|
|
|
|
2015-05-13 Michael Haubenwallner <michael.haubenwallner@ssi-schaefer.com>
|
|
|
|
* Makefile.in: Regenerated with automake-1.11.6.
|
|
* aclocal.m4: Likewise.
|
|
* configure: Likewise.
|
|
|
|
2015-02-09 Georg Koppen <gk@torproject.org>
|
|
|
|
* ssp.c: Conditionally include <windows.h>
|
|
(__guard_setup): For Windows, use approved methods to get
|
|
a suitable random number for the stack check guard rather
|
|
than reading /dev/random.
|
|
|
|
2015-01-22 Matthias Klose <doko@ubuntu.com>
|
|
|
|
* gets-chk.c: Declare prototype for gets in C11 mode.
|
|
|
|
2014-11-21 H.J. Lu <hongjiu.lu@intel.com>
|
|
|
|
PR bootstrap/63784
|
|
* configure: Regenerated.
|
|
|
|
2014-11-11 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
|
|
|
|
PR target/63610
|
|
* configure: Regenerate.
|
|
|
|
2013-12-07 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
* ssp.c (fail): Avoid -Wformat-security warning.
|
|
|
|
2013-09-20 Alan Modra <amodra@gmail.com>
|
|
|
|
* configure: Regenerate.
|
|
|
|
2013-02-06 Richard Sandiford <rdsandiford@googlemail.com>
|
|
|
|
Revert previous patch.
|
|
|
|
2013-02-03 Richard Sandiford <rdsandiford@googlemail.com>
|
|
|
|
Update copyright years.
|
|
|
|
2013-01-15 Paul Pluzhnikov <ppluzhnikov@google.com>
|
|
|
|
PR 55982
|
|
* strncat-chk.c (__strncat_chk): Fix loop unroll.
|
|
|
|
2012-09-14 David Edelsohn <dje.gcc@gmail.com>
|
|
|
|
* configure: Regenerated.
|
|
|
|
2012-05-29 Benjamin Kosnik <bkoz@redhat.com>
|
|
|
|
PR libstdc++/51007
|
|
* configure.ac: Allow gnu, gnu* variants for --enable-symvers argument.
|
|
* configure: Regenerated.
|
|
|
|
2012-05-16 H.J. Lu <hongjiu.lu@intel.com>
|
|
|
|
* configure: Regenerated.
|
|
|
|
2011-11-21 Andreas Tobler <andreast@fgznet.ch>
|
|
|
|
* configure: Regenerate.
|
|
|
|
2011-03-21 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
|
|
|
|
PR bootstrap/48135
|
|
* configure.ac (ssp_use_symver): Handle --disable-symvers.
|
|
* configure: Regenerate.
|
|
|
|
2011-02-13 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
|
|
|
|
* Makefile.in: Regenerate.
|
|
* aclocal.m4: Likewise.
|
|
* configure: Likewise.
|
|
|
|
2010-12-06 Dave Korn <dave.korn.cygwin@gmail.com>
|
|
|
|
PR target/40125
|
|
PR lto/46695
|
|
* configure.ac: Invoke ACX_LT_HOST_FLAGS.
|
|
* Makefile.am (libssp_la_LDFLAGS): Use lt_host_flags.
|
|
* aclocal.m4: Regenerate.
|
|
* configure: Regenerate.
|
|
* Makefile.in: Regenerate.
|
|
|
|
2010-07-02 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
|
|
|
|
* configure.ac (ssp_use_symver): Only check for Sun-style symbol
|
|
versioning on Solaris 2.
|
|
* configure: Regenerate.
|
|
|
|
2010-07-02 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
|
|
|
|
* configure.ac: Check for Sun symbol versioning.
|
|
Check for memmove.
|
|
* configure: Regenerate.
|
|
* config.h.in: Regenerate.
|
|
|
|
* Makefile.am [LIBSSP_USE_SYMVER]: Protect version_arg,
|
|
version_dep with LIBSSP_USE_SYMVER_GNU.
|
|
[LIBSSP_USE_SYMVER_SUN]: Handle Sun symbol versioning.
|
|
* Makefile.in: Regenerate.
|
|
|
|
* ssp.map: Reformat.
|
|
|
|
* memmove-chk.c: Change guard to HAVE_MEMMOVE.
|
|
|
|
2010-05-04 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
|
|
|
|
PR other/43620
|
|
* configure.ac (AM_INIT_AUTOMAKE): Add no-dist.
|
|
* Makefile.in: Regenerate.
|
|
|
|
2010-04-02 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
|
|
|
|
* Makefile.in: Regenerate.
|
|
* aclocal.m4: Regenerate.
|
|
|
|
2009-12-05 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
|
|
|
|
* Makefile.in: Regenerate.
|
|
* configure: Regenerate.
|
|
|
|
2009-08-24 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
|
|
|
|
* configure.ac (AC_PREREQ): Bump to 2.64.
|
|
|
|
2009-08-22 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
|
|
|
|
* Makefile.am (install-html, install-pdf): Remove.
|
|
* Makefile.in: Regenerate.
|
|
|
|
* Makefile.in: Regenerate.
|
|
* aclocal.m4: Regenerate.
|
|
* config.h.in: Regenerate.
|
|
* configure: Regenerate.
|
|
|
|
2009-08-20 Dave Korn <dave.korn.cygwin@gmail.com>
|
|
|
|
* Makefile.am (libssp_la_LDFLAGS): Add -bindir flag.
|
|
* Makefile.in: Regenerate.
|
|
|
|
2009-07-30 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
|
|
|
|
* configure.ac (_AC_ARG_VAR_PRECIOUS): Use m4_rename_force.
|
|
|
|
2009-04-13 Ozkan Sezer <sezeroz@gmail.com>
|
|
|
|
PR target/39062
|
|
* ssp.c: Also include malloc.h for alloca(). MinGW needs it.
|
|
* configure.ac: Also check for malloc.h.
|
|
* configure: Regenerated.
|
|
* config.h.in: Regenerated.
|
|
|
|
2009-04-09 Nick Clifton <nickc@redhat.com>
|
|
|
|
* strcat-chk.c: Change copyright header to refer to version 3
|
|
of the GNU General Public License with version 3.1 of the GCC
|
|
Runtime Library Exception and to point readers at the COPYING3
|
|
and COPYING3.RUNTIME files and the FSF's license web page.
|
|
* gets-chk.c: Likewise.
|
|
* memcpy-chk.c: Likewise.
|
|
* memmove-chk.c: Likewise.
|
|
* mempcpy-chk.c: Likewise.
|
|
* memset-chk.c: Likewise.
|
|
* snprintf-chk.c: Likewise.
|
|
* sprintf-chk.c: Likewise.
|
|
* ssp-local.c: Likewise.
|
|
* ssp.c: Likewise.
|
|
* ssp/ssp.h.in: Likewise.
|
|
* ssp/stdio.h: Likewise.
|
|
* ssp/string.h: Likewise.
|
|
* ssp/unistd.h: Likewise.
|
|
* stpcpy-chk.c: Likewise.
|
|
* strcpy-chk.c: Likewise.
|
|
* strncat-chk.c: Likewise.
|
|
* strncpy-chk.c: Likewise.
|
|
* vsnprintf-chk.c: Likewise.
|
|
* vsprintf-chk.c: Likewise.
|
|
|
|
2009-03-01 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
|
|
|
|
* configure: Regenerate.
|
|
|
|
2009-02-02 Danny Smith <dannysmith@users.sourcforge.net>
|
|
|
|
* ssp.c (_PATH_TTY): Define as "CONOUT$" for _WIN32.
|
|
|
|
2008-12-18 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
|
|
|
|
* configure: Regenerate.
|
|
|
|
2008-09-26 Peter O'Gorman <pogma@thewrittenword.com>
|
|
Steve Ellcey <sje@cup.hp.com>
|
|
|
|
* configure: Regenerate for new libtool.
|
|
* Makefile.in: Ditto.
|
|
* aclocal.m4: Ditto.
|
|
|
|
2008-08-21 Aaron W. LaFramboise <aaronavay62@aaronwl.com>
|
|
|
|
* Makefile.am: Add -no-undefined
|
|
* Makefile.in: Regenerate.
|
|
|
|
2008-06-17 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
|
|
|
|
* Makefile.in: Regenerate.
|
|
* config.h.in: Regenerate.
|
|
* configure: Regenerate.
|
|
|
|
2008-04-18 Paolo Bonzini <bonzini@gnu.org>
|
|
|
|
PR bootstrap/35457
|
|
* aclocal.m4: Regenerate.
|
|
* configure: Regenerate.
|
|
|
|
2008-03-16 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
|
|
|
|
* aclocal.m4: Regenerate.
|
|
* configure: Likewise.
|
|
* Makefile.in: Likewise.
|
|
|
|
2008-01-24 David Edelsohn <edelsohn@gnu.org>
|
|
|
|
* configure: Regenerate.
|
|
|
|
2007-07-05 H.J. Lu <hongjiu.lu@intel.com>
|
|
|
|
* aclocal.m4: Regenerated.
|
|
|
|
2007-06-02 Paolo Bonzini <bonzini@gnu.org>
|
|
|
|
* configure: Regenerate.
|
|
|
|
2007-05-23 Steve Ellcey <sje@cup.hp.com>
|
|
|
|
* Makefile.in: Regenerate.
|
|
* configure: Regenerate.
|
|
* aclocal.m4: Regenerate.
|
|
|
|
2007-03-01 Brooks Moses <brooks.moses@codesourcery.com>
|
|
|
|
* Makefile.am: Add dummy install-pdf target.
|
|
* Makefile.in: Regenerate
|
|
|
|
2006-10-14 Geoffrey Keating <geoffk@apple.com>
|
|
|
|
* aclocal.m4: Regenerate.
|
|
* configure: Regenerate.
|
|
|
|
2006-09-29 Joseph S. Myers <joseph@codesourcery.com>
|
|
|
|
PR other/25035
|
|
* configure.ac (AC_EXEEXT): Remove.
|
|
(GCC_NO_EXECUTABLES): Call.
|
|
(ssp_use_symver): Default to no if unable to link.
|
|
(AC_CHECK_FUNCS): Hardwire results if unable to link.
|
|
* aclocal.m4, configure, Makefile.in: Regenerate.
|
|
|
|
2006-05-23 Carlos O'Donell <carlos@codesourcery.com>
|
|
|
|
* Makefile.am: Add install-html target. Add install-html to .PHONY
|
|
* Makefile.in: Regenerate.
|
|
|
|
2006-02-27 Mark Mitchell <mark@codesourcery.com>
|
|
|
|
PR 26473
|
|
* configure.ac (ACX_NONCANONICAL_TARGET): Use it.
|
|
* Makefile.am (target_noncanonical): Define.
|
|
(libsubincludedir): New variable.
|
|
(nobase_libsubinclude_HEADERS): Likewise.
|
|
(nobase_include_HEADERS): Remove.
|
|
* configure: Regenerated.
|
|
* Makefile.in: Likewise.
|
|
* aclocal.m4: Regenerated.
|
|
|
|
2006-01-20 Richard Guenther <rguenther@suse.de>
|
|
|
|
* configure.ac: Use -fPIC for symbol versioning test.
|
|
* configure: Regenerate.
|
|
|
|
2005-08-17 Kelley Cook <kcook@gcc.gnu.org>
|
|
|
|
* ALL: Update FSF address.
|
|
|
|
2005-07-02 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
* ALL: First release as more than just a single file.
|