diff options
author | Ludovic Courtès <ludo@gnu.org> | 2009-07-15 22:46:54 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2009-07-15 22:46:54 +0200 |
commit | e1203ea00f033954e385a0f2f6aa8b886778dab1 (patch) | |
tree | 72eb4b46e73987d3b2c38bf341f8b39a51d7dd10 /module/system/vm/objcode.scm | |
parent | a823e7272e7e2800491704a342c6853bc5d95d4e (diff) | |
download | guile-e1203ea00f033954e385a0f2f6aa8b886778dab1.tar.gz |
Switch remaining GPLv2+ Guile-VM headers to LGPLv3+.
* module/system/base/compile.scm, module/system/base/syntax.scm,
module/system/repl/common.scm, module/system/repl/describe.scm,
module/system/vm/instruction.scm, module/system/vm/objcode.scm,
module/system/vm/profile.scm, module/system/vm/program.scm,
module/system/vm/trace.scm: Switch header from GPLv2+ to LGPLv3+.
Diffstat (limited to 'module/system/vm/objcode.scm')
-rw-r--r-- | module/system/vm/objcode.scm | 27 |
1 files changed, 13 insertions, 14 deletions
diff --git a/module/system/vm/objcode.scm b/module/system/vm/objcode.scm index ab6bb4bae..7c0490da6 100644 --- a/module/system/vm/objcode.scm +++ b/module/system/vm/objcode.scm @@ -2,20 +2,19 @@ ;; Copyright (C) 2001 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 2, 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 COPYING. If not, write to -;; the Free Software Foundation, Inc., 59 Temple Place - Suite 330, -;; Boston, MA 02111-1307, USA. +;;; This library is free software; you can redistribute it and/or +;;; modify it under the terms of the GNU Lesser General Public +;;; License as published by the Free Software Foundation; either +;;; version 3 of the License, or (at your option) any later version. +;;; +;;; This library 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 +;;; Lesser General Public License for more details. +;;; +;;; You should have received a copy of the GNU Lesser General Public +;;; License along with this library; if not, write to the Free Software +;;; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA ;;; Code: |