This is the mail archive of the binutils@sourceware.org mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: gold comments


Jim Wilson <wilson@tuliptree.org> writes:

> On Mon, 2008-03-24 at 13:47 -0700, Ian Lance Taylor wrote:
>> I followed what I thought was the current binutils practice for header
>> files.  E.g., include/elf/common.h is GPLv2.
>
> That is a good point.  I didn't try looking at other binutils header
> files.  In include/elf, 56 header files are GPLv2 and 2 are GPLv3.  We
> can worry about this some other time I suppose.
>
> So only the x86_64.cc file apparently needs fixed.

Whoops.  Thanks for noticing that.  Fixed like so.

Ian


2008-03-24  Ian Lance Taylor  <iant@google.com>

	* x86_64.cc: Correct license to GPLv3.


Index: x86_64.cc
===================================================================
RCS file: /cvs/src/src/gold/x86_64.cc,v
retrieving revision 1.54
diff -u -r1.54 x86_64.cc
--- x86_64.cc	13 Mar 2008 21:04:21 -0000	1.54
+++ x86_64.cc	24 Mar 2008 21:41:57 -0000
@@ -5,29 +5,20 @@
 
 // This file is part of gold.
 
-// This program is free software; you can redistribute it and/or
-// modify it under the terms of the GNU Library General Public License
-// as published by the Free Software Foundation; either version 2, or
+// 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 of the License, or
 // (at your option) any later version.
 
-// In addition to the permissions in the GNU Library General Public
-// License, the Free Software Foundation gives you unlimited
-// permission to link the compiled version of this file into
-// combinations with other programs, and to distribute those
-// combinations without any restriction coming from the use of this
-// file.  (The Library Public License restrictions do apply in other
-// respects; for example, they cover modification of the file, and
-/// distribution when not linked into a combined executable.)
-
-// 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
-// Library General Public License for more details.
-
-// You should have received a copy of the GNU Library 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.
+// 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.
 
 #include "gold.h"
 

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]