From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 15845 invoked by alias); 16 Mar 2009 07:59:37 -0000 Received: (qmail 15825 invoked by uid 22791); 16 Mar 2009 07:59:34 -0000 X-SWARE-Spam-Status: No, hits=-0.3 required=5.0 tests=AWL,BAYES_50,HK_OBFDOM,J_CHICKENPOX_71,SPF_PASS X-Spam-Check-By: sourceware.org Received: from mail.codesourcery.com (HELO mail.codesourcery.com) (65.74.133.4) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Mon, 16 Mar 2009 07:59:26 +0000 Received: (qmail 28136 invoked from network); 16 Mar 2009 07:59:22 -0000 Received: from unknown (HELO ?192.168.44.101?) (nathan@127.0.0.2) by mail.codesourcery.com with ESMTPA; 16 Mar 2009 07:59:22 -0000 Message-ID: <49BE06F6.3090008@codesourcery.com> Date: Mon, 16 Mar 2009 09:49:00 -0000 From: Nathan Sidwell User-Agent: Thunderbird 2.0.0.19 (X11/20090105) MIME-Version: 1.0 To: gdb-patches@sourceware.org Subject: more missing gplv3 notices Content-Type: multipart/mixed; boundary="------------000000090504060906090609" Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2009-03/txt/msg00252.txt.bz2 This is a multi-part message in MIME format. --------------000000090504060906090609 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-length: 570 I grepped the gdb directory for gplv2 notices to produce the attached patch which moves them all to gplv3. Mostly these are .y files, which I guess were missed the first time round. We really should put a COPYING3 file in the gdb source directory, as the only COPYING file there is a v2 one, and one might presume that it is the one that applies to this part of the source tree. (alternatively remove the COPYING file, so the toplevel COPYING3 file is more obvious). ok? nathan -- Nathan Sidwell :: http://www.codesourcery.com :: CodeSourcery --------------000000090504060906090609 Content-Type: text/plain; name="all.diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="all.diff" Content-length: 34448 2009-03-16 Nathan Sidwell * Makefile.in, ada-exp.y, ada-lex.l, c-exp.y, cp-name-parser.y, darwin-nat-info.c, f-exp.y, gdb_thread_db.h, hppanbsd-nat.c, hppanbsd-tdep.c, hppaobsd-tdep.c, jv-exp.y, m2-exp.y, objc-exp.y, p-exp.y, reply_mig_hack.awk, reverse.c, xtensa-xtregs.c: Update license to GPLv3. Index: Makefile.in =================================================================== RCS file: /cvs/src/src/gdb/Makefile.in,v retrieving revision 1.1070 diff -c -3 -p -r1.1070 Makefile.in *** Makefile.in 2 Mar 2009 01:27:35 -0000 1.1070 --- Makefile.in 16 Mar 2009 07:55:11 -0000 *************** *** 6,12 **** # 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 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, --- 6,12 ---- # 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. # # This program is distributed in the hope that it will be useful, *************** *** 15,23 **** # 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. prefix = @prefix@ exec_prefix = @exec_prefix@ --- 15,21 ---- # 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, see . prefix = @prefix@ exec_prefix = @exec_prefix@ Index: ada-exp.y =================================================================== RCS file: /cvs/src/src/gdb/ada-exp.y,v retrieving revision 1.34 diff -c -3 -p -r1.34 ada-exp.y *** ada-exp.y 21 Feb 2009 16:14:47 -0000 1.34 --- ada-exp.y 16 Mar 2009 07:55:12 -0000 *************** *** 2,23 **** Copyright (C) 1986, 1989, 1990, 1991, 1993, 1994, 1997, 2000, 2003, 2004, 2007, 2008, 2009 Free Software Foundation, Inc. ! This file is part of GDB. ! 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 2 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; if not, write to the Free Software ! Foundation, Inc., 51 Franklin Street, Fifth Floor, ! Boston, MA 02110-1301, USA. */ /* Parse an Ada expression from text in a string, and return the result as a struct expression pointer. --- 2,21 ---- Copyright (C) 1986, 1989, 1990, 1991, 1993, 1994, 1997, 2000, 2003, 2004, 2007, 2008, 2009 Free Software Foundation, Inc. ! This file is part of GDB. ! 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. ! ! 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, see . */ /* Parse an Ada expression from text in a string, and return the result as a struct expression pointer. Index: ada-lex.l =================================================================== RCS file: /cvs/src/src/gdb/ada-lex.l,v retrieving revision 1.24 diff -c -3 -p -r1.24 ada-lex.l *** ada-lex.l 3 Jan 2009 05:57:50 -0000 1.24 --- ada-lex.l 16 Mar 2009 07:55:12 -0000 *************** *** 2,23 **** Copyright (C) 1994, 1997, 1998, 2000, 2001, 2002, 2003, 2007, 2008, 2009 Free Software Foundation, Inc. ! This file is part of GDB. ! 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 2 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; if not, write to the Free Software ! Foundation, Inc., 51 Franklin Street, Fifth Floor, ! Boston, MA 02110-1301, USA. */ /*----------------------------------------------------------------------*/ --- 2,21 ---- Copyright (C) 1994, 1997, 1998, 2000, 2001, 2002, 2003, 2007, 2008, 2009 Free Software Foundation, Inc. ! This file is part of GDB. ! 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. ! ! 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, see . */ /*----------------------------------------------------------------------*/ Index: c-exp.y =================================================================== RCS file: /cvs/src/src/gdb/c-exp.y,v retrieving revision 1.52 diff -c -3 -p -r1.52 c-exp.y *** c-exp.y 3 Jan 2009 05:57:51 -0000 1.52 --- c-exp.y 16 Mar 2009 07:55:15 -0000 *************** *** 3,24 **** 1998, 1999, 2000, 2003, 2004, 2006, 2007, 2008, 2009 Free Software Foundation, Inc. ! This file is part of GDB. ! 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 2 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; if not, write to the Free Software ! Foundation, Inc., 51 Franklin Street, Fifth Floor, ! Boston, MA 02110-1301, USA. */ /* Parse a C expression from text in a string, and return the result as a struct expression pointer. --- 3,22 ---- 1998, 1999, 2000, 2003, 2004, 2006, 2007, 2008, 2009 Free Software Foundation, Inc. ! This file is part of GDB. ! 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. ! ! 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, see . */ /* Parse a C expression from text in a string, and return the result as a struct expression pointer. Index: cp-name-parser.y =================================================================== RCS file: /cvs/src/src/gdb/cp-name-parser.y,v retrieving revision 1.13 diff -c -3 -p -r1.13 cp-name-parser.y *** cp-name-parser.y 21 Feb 2009 16:14:47 -0000 1.13 --- cp-name-parser.y 16 Mar 2009 07:55:15 -0000 *************** *** 5,26 **** Parts of the lexer are based on c-exp.y from GDB. ! This file is part of GDB. ! 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 2 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; if not, write to the Free Software ! Foundation, Inc., 51 Franklin Street, Fifth Floor, ! Boston, MA 02110-1301, USA. */ /* Note that malloc's and realloc's in this file are transformed to xmalloc and xrealloc respectively by the same sed command in the --- 5,24 ---- Parts of the lexer are based on c-exp.y from GDB. ! This file is part of GDB. ! 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. ! ! 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, see . */ /* Note that malloc's and realloc's in this file are transformed to xmalloc and xrealloc respectively by the same sed command in the Index: darwin-nat-info.c =================================================================== RCS file: /cvs/src/src/gdb/darwin-nat-info.c,v retrieving revision 1.2 diff -c -3 -p -r1.2 darwin-nat-info.c *** darwin-nat-info.c 3 Jan 2009 05:57:51 -0000 1.2 --- darwin-nat-info.c 16 Mar 2009 07:55:16 -0000 *************** *** 8,14 **** 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 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, --- 8,14 ---- 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. This program is distributed in the hope that it will be useful, *************** *** 17,25 **** 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., 59 Temple Place - Suite 330, ! Boston, MA 02111-1307, USA. */ /* The name of the ppc_thread_state structure, and the names of its members, have been changed for Unix conformance reasons. The easiest --- 17,23 ---- 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, see . */ /* The name of the ppc_thread_state structure, and the names of its members, have been changed for Unix conformance reasons. The easiest Index: f-exp.y =================================================================== RCS file: /cvs/src/src/gdb/f-exp.y,v retrieving revision 1.28 diff -c -3 -p -r1.28 f-exp.y *** f-exp.y 3 Jan 2009 05:57:51 -0000 1.28 --- f-exp.y 16 Mar 2009 07:55:17 -0000 *************** *** 6,27 **** Contributed by Motorola. Adapted from the C parser by Farooq Butt (fmbutt@engage.sps.mot.com). ! This file is part of GDB. ! 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 2 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; if not, write to the Free Software ! Foundation, Inc., 51 Franklin Street, Fifth Floor, ! Boston, MA 02110-1301, USA. */ /* This was blantantly ripped off the C expression parser, please be aware of that as you look at its basic structure -FMB */ --- 6,25 ---- Contributed by Motorola. Adapted from the C parser by Farooq Butt (fmbutt@engage.sps.mot.com). ! This file is part of GDB. ! 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. ! ! 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, see . */ /* This was blantantly ripped off the C expression parser, please be aware of that as you look at its basic structure -FMB */ Index: gdb_thread_db.h =================================================================== RCS file: /cvs/src/src/gdb/gdb_thread_db.h,v retrieving revision 1.11 diff -c -3 -p -r1.11 gdb_thread_db.h *** gdb_thread_db.h 3 Jan 2009 05:57:51 -0000 1.11 --- gdb_thread_db.h 16 Mar 2009 07:55:17 -0000 *************** *** 7,13 **** The GNU C Library 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 of the License, or (at your option) any later version. The GNU C Library is distributed in the hope that it will be useful, --- 7,13 ---- The GNU C Library 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 3 of the License, or (at your option) any later version. The GNU C Library is distributed in the hope that it will be useful, *************** *** 15,24 **** 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 the GNU C Library; see the file COPYING.LIB. If not, ! write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, ! Boston, MA 02110-1301, USA. */ #ifndef _THREAD_DB_H #define _THREAD_DB_H 1 --- 15,22 ---- 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 General Public License ! along with this program. If not, see . */ #ifndef _THREAD_DB_H #define _THREAD_DB_H 1 Index: hppanbsd-nat.c =================================================================== RCS file: /cvs/src/src/gdb/hppanbsd-nat.c,v retrieving revision 1.3 diff -c -3 -p -r1.3 hppanbsd-nat.c *** hppanbsd-nat.c 23 Feb 2009 00:03:49 -0000 1.3 --- hppanbsd-nat.c 16 Mar 2009 07:55:17 -0000 *************** *** 6,12 **** 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 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, --- 6,12 ---- 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. This program is distributed in the hope that it will be useful, *************** *** 15,23 **** 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 "defs.h" #include "inferior.h" --- 15,21 ---- 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, see . */ #include "defs.h" #include "inferior.h" Index: hppanbsd-tdep.c =================================================================== RCS file: /cvs/src/src/gdb/hppanbsd-tdep.c,v retrieving revision 1.4 diff -c -3 -p -r1.4 hppanbsd-tdep.c *** hppanbsd-tdep.c 22 Feb 2009 01:02:17 -0000 1.4 --- hppanbsd-tdep.c 16 Mar 2009 07:55:17 -0000 *************** *** 6,12 **** 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 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, --- 6,12 ---- 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. This program is distributed in the hope that it will be useful, *************** *** 15,23 **** 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 "defs.h" #include "osabi.h" --- 15,21 ---- 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, see . */ #include "defs.h" #include "osabi.h" Index: hppaobsd-tdep.c =================================================================== RCS file: /cvs/src/src/gdb/hppaobsd-tdep.c,v retrieving revision 1.3 diff -c -3 -p -r1.3 hppaobsd-tdep.c *** hppaobsd-tdep.c 22 Feb 2009 01:02:17 -0000 1.3 --- hppaobsd-tdep.c 16 Mar 2009 07:55:17 -0000 *************** *** 6,12 **** 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 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, --- 6,12 ---- 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. This program is distributed in the hope that it will be useful, *************** *** 15,23 **** 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 "defs.h" #include "osabi.h" --- 15,21 ---- 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, see . */ #include "defs.h" #include "osabi.h" Index: jv-exp.y =================================================================== RCS file: /cvs/src/src/gdb/jv-exp.y,v retrieving revision 1.33 diff -c -3 -p -r1.33 jv-exp.y *** jv-exp.y 3 Jan 2009 05:57:52 -0000 1.33 --- jv-exp.y 16 Mar 2009 07:55:18 -0000 *************** *** 2,23 **** Copyright (C) 1997, 1998, 1999, 2000, 2006, 2007, 2008, 2009 Free Software Foundation, Inc. ! This file is part of GDB. ! 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 2 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; if not, write to the Free Software ! Foundation, Inc., 51 Franklin Street, Fifth Floor, ! Boston, MA 02110-1301, USA. */ /* Parse a Java expression from text in a string, and return the result as a struct expression pointer. --- 2,21 ---- Copyright (C) 1997, 1998, 1999, 2000, 2006, 2007, 2008, 2009 Free Software Foundation, Inc. ! This file is part of GDB. ! 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. ! ! 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, see . */ /* Parse a Java expression from text in a string, and return the result as a struct expression pointer. Index: m2-exp.y =================================================================== RCS file: /cvs/src/src/gdb/m2-exp.y,v retrieving revision 1.25 diff -c -3 -p -r1.25 m2-exp.y *** m2-exp.y 3 Jan 2009 05:57:52 -0000 1.25 --- m2-exp.y 16 Mar 2009 07:55:19 -0000 *************** *** 4,25 **** Generated from expread.y (now c-exp.y) and contributed by the Department of Computer Science at the State University of New York at Buffalo, 1991. ! This file is part of GDB. ! 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 2 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; if not, write to the Free Software ! Foundation, Inc., 51 Franklin Street, Fifth Floor, ! Boston, MA 02110-1301, USA. */ /* Parse a Modula-2 expression from text in a string, and return the result as a struct expression pointer. --- 4,23 ---- Generated from expread.y (now c-exp.y) and contributed by the Department of Computer Science at the State University of New York at Buffalo, 1991. ! This file is part of GDB. ! 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. ! ! 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, see . */ /* Parse a Modula-2 expression from text in a string, and return the result as a struct expression pointer. Index: objc-exp.y =================================================================== RCS file: /cvs/src/src/gdb/objc-exp.y,v retrieving revision 1.33 diff -c -3 -p -r1.33 objc-exp.y *** objc-exp.y 3 Jan 2009 05:57:52 -0000 1.33 --- objc-exp.y 16 Mar 2009 07:55:20 -0000 *************** *** 5,11 **** 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 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, --- 5,11 ---- 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. This program is distributed in the hope that it will be useful, *************** *** 14,22 **** 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. */ /* Parse a C expression from text in a string, and return the result as a struct expression pointer. That structure contains arithmetic --- 14,20 ---- 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, see . */ /* Parse a C expression from text in a string, and return the result as a struct expression pointer. That structure contains arithmetic Index: p-exp.y =================================================================== RCS file: /cvs/src/src/gdb/p-exp.y,v retrieving revision 1.45 diff -c -3 -p -r1.45 p-exp.y *** p-exp.y 3 Jan 2009 05:57:52 -0000 1.45 --- p-exp.y 16 Mar 2009 07:55:21 -0000 *************** *** 1,22 **** /* YACC parser for Pascal expressions, for GDB. Copyright (C) 2000, 2006, 2007, 2008, 2009 Free Software Foundation, Inc. ! This file is part of GDB. ! 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 2 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; if not, write to the Free Software ! Foundation, Inc., 51 Franklin Street, Fifth Floor, ! Boston, MA 02110-1301, USA. */ /* This file is derived from c-exp.y */ --- 1,20 ---- /* YACC parser for Pascal expressions, for GDB. Copyright (C) 2000, 2006, 2007, 2008, 2009 Free Software Foundation, Inc. ! This file is part of GDB. ! 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. ! ! 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, see . */ /* This file is derived from c-exp.y */ Index: reply_mig_hack.awk =================================================================== RCS file: /cvs/src/src/gdb/reply_mig_hack.awk,v retrieving revision 1.8 diff -c -3 -p -r1.8 reply_mig_hack.awk *** reply_mig_hack.awk 3 Jan 2009 05:57:53 -0000 1.8 --- reply_mig_hack.awk 16 Mar 2009 07:55:21 -0000 *************** *** 7,13 **** # # 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 2, or (at # your option) any later version. # # This program is distributed in the hope that it will be useful, but --- 7,13 ---- # # 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 *************** *** 16,24 **** # 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. # # This awk script hacks the output of mig-generated reply server code # so that it allows replies with just the error-code in them (as this is --- 16,22 ---- # General Public License for more details. # # You should have received a copy of the GNU General Public License ! # along with this program. If not, see . # # This awk script hacks the output of mig-generated reply server code # so that it allows replies with just the error-code in them (as this is Index: reverse.c =================================================================== RCS file: /cvs/src/src/gdb/reverse.c,v retrieving revision 1.5 diff -c -3 -p -r1.5 reverse.c *** reverse.c 21 Feb 2009 16:14:49 -0000 1.5 --- reverse.c 16 Mar 2009 07:55:21 -0000 *************** *** 6,12 **** 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 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, --- 6,12 ---- 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. This program is distributed in the hope that it will be useful, *************** *** 15,23 **** 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 "defs.h" #include "gdb_string.h" --- 15,21 ---- 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, see . */ #include "defs.h" #include "gdb_string.h" Index: xtensa-xtregs.c =================================================================== RCS file: /cvs/src/src/gdb/xtensa-xtregs.c,v retrieving revision 1.3 diff -c -3 -p -r1.3 xtensa-xtregs.c *** xtensa-xtregs.c 3 Jan 2009 05:57:54 -0000 1.3 --- xtensa-xtregs.c 16 Mar 2009 07:55:22 -0000 *************** *** 5,11 **** 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 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, --- 5,11 ---- 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. This program is distributed in the hope that it will be useful, --------------000000090504060906090609--