diff options
author | Nick Clifton <nickc@redhat.com> | 2012-12-17 16:56:12 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2012-12-17 16:56:12 +0000 |
commit | 5bf135a788d468003cb2502d0a2239fd92d1ac25 (patch) | |
tree | 132a84edfc61cff6b50ea91ff766c08af3244abf /binutils | |
parent | 387894ff90a1048844cd81b9c190787d27d4faf9 (diff) | |
download | gdb-5bf135a788d468003cb2502d0a2239fd92d1ac25.zip gdb-5bf135a788d468003cb2502d0a2239fd92d1ac25.tar.gz gdb-5bf135a788d468003cb2502d0a2239fd92d1ac25.tar.bz2 |
Add copyright notices
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/BRANCHES | 6 | ||||
-rw-r--r-- | binutils/ChangeLog | 17 | ||||
-rw-r--r-- | binutils/MAINTAINERS | 6 | ||||
-rw-r--r-- | binutils/Makefile.am | 17 | ||||
-rw-r--r-- | binutils/Makefile.in | 18 | ||||
-rw-r--r-- | binutils/NEWS | 6 | ||||
-rw-r--r-- | binutils/README | 6 | ||||
-rw-r--r-- | binutils/configure.com | 16 | ||||
-rw-r--r-- | binutils/configure.in | 17 | ||||
-rw-r--r-- | binutils/configure.tgt | 16 | ||||
-rw-r--r-- | binutils/doc/Makefile.am | 17 | ||||
-rw-r--r-- | binutils/doc/Makefile.in | 18 | ||||
-rw-r--r-- | binutils/dwarf-mode.el | 2 | ||||
-rw-r--r-- | binutils/makefile.vms | 15 | ||||
-rw-r--r-- | binutils/syslex_wrap.c | 17 | ||||
-rw-r--r-- | binutils/testsuite/ChangeLog | 4 | ||||
-rw-r--r-- | binutils/testsuite/binutils-all/windres/README | 6 |
17 files changed, 204 insertions, 0 deletions
diff --git a/binutils/BRANCHES b/binutils/BRANCHES index e5546d3..97ea7ea 100644 --- a/binutils/BRANCHES +++ b/binutils/BRANCHES @@ -39,3 +39,9 @@ binutils-2_20-branch binutils-2_21-branch binutils-2_22-branch binutils-2_23-branch + +Copyright (C) 2012 Free Software Foundation, Inc. + +Copying and distribution of this file, with or without modification, +are permitted in any medium without royalty provided the copyright +notice and this notice are preserved. diff --git a/binutils/ChangeLog b/binutils/ChangeLog index df95933..da7d9e4 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,20 @@ +2012-12-17 Nick Clifton <nickc@redhat.com> + + * BRANCHES: Add copyright notice. + * MAINTAINERS: Likewise. + * Makefile.am: Likewise. + * NEWS: Likewise. + * README: Likewise. + * configure.com: Likewise. + * configure.in: Likewise. + * configure.tgt: Likewise. + * dwarf-mode.el: Likewise. + * makefile.vms: Likewise. + * syslex_wrap.c: Likewise. + * doc/Makefile.am: Likewise. + * Makefile.in: Regenerate. + * doc/Makefile.in: Regenerate. + 2012-11-27 Kai Tietz <ktietz@redhat.com> * resbin.c (bin_to_res_version): Correct offset diff --git a/binutils/MAINTAINERS b/binutils/MAINTAINERS index 6d399ec..37a3e76 100644 --- a/binutils/MAINTAINERS +++ b/binutils/MAINTAINERS @@ -270,3 +270,9 @@ Having selected the branch name, create the branch as follows: Please do not commit any patches to a branch you did not create without the explicit permission of the person who created the branch. + +Copyright (C) 2012 Free Software Foundation, Inc. + +Copying and distribution of this file, with or without modification, +are permitted in any medium without royalty provided the copyright +notice and this notice are preserved. diff --git a/binutils/Makefile.am b/binutils/Makefile.am index be6e832..459a214 100644 --- a/binutils/Makefile.am +++ b/binutils/Makefile.am @@ -1,4 +1,21 @@ ## Process this file with automake to generate Makefile.in +# +# Copyright 2012 Free Software Foundation +# +# This file is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; see the file COPYING3. If not see +# <http://www.gnu.org/licenses/>. +# AUTOMAKE_OPTIONS = dejagnu no-dist foreign ACLOCAL_AMFLAGS = -I .. -I ../config -I ../bfd diff --git a/binutils/Makefile.in b/binutils/Makefile.in index 95e0b5b..fb0a7f7 100644 --- a/binutils/Makefile.in +++ b/binutils/Makefile.in @@ -15,6 +15,24 @@ @SET_MAKE@ +# +# Copyright 2012 Free Software Foundation +# +# This file is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; see the file COPYING3. If not see +# <http://www.gnu.org/licenses/>. +# + VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ diff --git a/binutils/NEWS b/binutils/NEWS index b40194a..2d36dbc 100644 --- a/binutils/NEWS +++ b/binutils/NEWS @@ -474,6 +474,12 @@ Changes in binutils 2.1: and/or local symbols only. They now also support long options. +Copyright (C) 2012 Free Software Foundation, Inc. + +Copying and distribution of this file, with or without modification, +are permitted in any medium without royalty provided the copyright +notice and this notice are preserved. + Local variables: fill-column: 79 End: diff --git a/binutils/README b/binutils/README index fc474a5..6d8a134 100644 --- a/binutils/README +++ b/binutils/README @@ -282,3 +282,9 @@ unneeded objects and libraries: If you have any problems or questions about the binutils on VMS, feel free to mail me at kkaempf@rmi.de. + +Copyright (C) 2012 Free Software Foundation, Inc. + +Copying and distribution of this file, with or without modification, +are permitted in any medium without royalty provided the copyright +notice and this notice are preserved. diff --git a/binutils/configure.com b/binutils/configure.com index f199163..8b53f9f 100644 --- a/binutils/configure.com +++ b/binutils/configure.com @@ -2,6 +2,22 @@ $! $! This file configures binutils for use with openVMS/Alpha $! We do not use the configure script, since we do not have /bin/sh $! to execute it. +$! +$! Copyright 2012 Free Software Foundation +$! +$! This file is free software; you can redistribute it and/or modify +$! it under the terms of the GNU General Public License as published by +$! the Free Software Foundation; either version 3 of the License, or +$! (at your option) any later version. +$! +$! This program is distributed in the hope that it will be useful, +$! but WITHOUT ANY WARRANTY; without even the implied warranty of +$! MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +$! GNU General Public License for more details. +$! +$! You should have received a copy of the GNU General Public License +$! along with this program; see the file COPYING3. If not see +$! <http://www.gnu.org/licenses/>. $! $! Written by Klaus K"ampf (kkaempf@rmi.de) $! diff --git a/binutils/configure.in b/binutils/configure.in index b4e493e..4864380 100644 --- a/binutils/configure.in +++ b/binutils/configure.in @@ -1,5 +1,22 @@ dnl Process this file with autoconf to produce a configure script. dnl +dnl Copyright 2012 Free Software Foundation +dnl +dnl This file is free software; you can redistribute it and/or modify +dnl it under the terms of the GNU General Public License as published by +dnl the Free Software Foundation; either version 3 of the License, or +dnl (at your option) any later version. +dnl +dnl This program is distributed in the hope that it will be useful, +dnl but WITHOUT ANY WARRANTY; without even the implied warranty of +dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +dnl GNU General Public License for more details. +dnl +dnl You should have received a copy of the GNU General Public License +dnl along with this program; see the file COPYING3. If not see +dnl <http://www.gnu.org/licenses/>. +dnl + AC_PREREQ(2.59) AC_INIT AC_CONFIG_SRCDIR(ar.c) diff --git a/binutils/configure.tgt b/binutils/configure.tgt index 4753d48..90f735b 100644 --- a/binutils/configure.tgt +++ b/binutils/configure.tgt @@ -3,6 +3,22 @@ # file lets us skip running autoconf when modifying target specific # information. +# Copyright 2012 Free Software Foundation +# +# This file is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; see the file COPYING3. If not see +# <http://www.gnu.org/licenses/>. + # This file switches on the shell variable ${targ}, and sets the # following shell variables: # targ_emul name of emulation to use diff --git a/binutils/doc/Makefile.am b/binutils/doc/Makefile.am index a2295ca..51fa0a0 100644 --- a/binutils/doc/Makefile.am +++ b/binutils/doc/Makefile.am @@ -1,4 +1,21 @@ ## Process this file with automake to generate Makefile.in +# +# Copyright 2012 Free Software Foundation +# +# This file is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; see the file COPYING3. If not see +# <http://www.gnu.org/licenses/>. +# AUTOMAKE_OPTIONS = cygnus diff --git a/binutils/doc/Makefile.in b/binutils/doc/Makefile.in index 801af7d..596dbda 100644 --- a/binutils/doc/Makefile.in +++ b/binutils/doc/Makefile.in @@ -14,6 +14,24 @@ # PARTICULAR PURPOSE. @SET_MAKE@ + +# +# Copyright 2012 Free Software Foundation +# +# This file is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; see the file COPYING3. If not see +# <http://www.gnu.org/licenses/>. +# VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ diff --git a/binutils/dwarf-mode.el b/binutils/dwarf-mode.el index 4c995ef..49acaa1 100644 --- a/binutils/dwarf-mode.el +++ b/binutils/dwarf-mode.el @@ -2,6 +2,8 @@ ;; Version: 1.1 +;; Copyright (C) 2012 Free Software Foundation, Inc. + ;; This file is not part of GNU Emacs, but is distributed under the ;; same terms: diff --git a/binutils/makefile.vms b/binutils/makefile.vms index 4dfac68..7fe2e0c 100644 --- a/binutils/makefile.vms +++ b/binutils/makefile.vms @@ -5,6 +5,21 @@ # # Created by Klaus Kaempf, kkaempf@rmi.de # +# Copyright 2012 Free Software Foundation +# +# This file is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; see the file COPYING3. If not see +# <http://www.gnu.org/licenses/>. # DEFS=/define=("OBJDUMP_PRIVATE_VECTORS=") diff --git a/binutils/syslex_wrap.c b/binutils/syslex_wrap.c index e10b5fd..49c65f6 100644 --- a/binutils/syslex_wrap.c +++ b/binutils/syslex_wrap.c @@ -1,3 +1,20 @@ +/* Copyright 2012 Free Software Foundation, Inc. + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3, or (at your option) + any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street - Fifth Floor, + Boston, MA 02110-1301, USA. */ + /* Wrapper source to ensure that config.h is the first header file seen by the compiler. */ diff --git a/binutils/testsuite/ChangeLog b/binutils/testsuite/ChangeLog index c00ba95..b3d9c42 100644 --- a/binutils/testsuite/ChangeLog +++ b/binutils/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2012-12-17 Nick Clifton <nickc@redhat.com> + + * binutils-all/windres/README: Add copyright notice. + 2012-11-27 Roland McGrath <mcgrathr@google.com> * lib/binutils-common.exp (is_zlib_supported): New function. diff --git a/binutils/testsuite/binutils-all/windres/README b/binutils/testsuite/binutils-all/windres/README index 6686488..6711446 100644 --- a/binutils/testsuite/binutils-all/windres/README +++ b/binutils/testsuite/binutils-all/windres/README @@ -25,3 +25,9 @@ parsing or comparing should be xfailed. The windres tests only run for ix86 targets, because the MSVC-generated *.rsd files are generated for that. + +Copyright (C) 2012 Free Software Foundation, Inc. + +Copying and distribution of this file, with or without modification, +are permitted in any medium without royalty provided the copyright +notice and this notice are preserved. |