From 28a686ef16077f75afbfa3d315cd268680e11b75 Mon Sep 17 00:00:00 2001 From: Matthias Benkard Date: Sat, 26 Jan 2008 11:50:25 +0100 Subject: Apply the LGPLv3 to all the code previously released under the GPLv3. darcs-hash:d09e69f4f9d07e98b5bc8d68d120d50d1ee01848 --- Lisp/compiler-macros.lisp | 12 ++++++------ Lisp/conditions.lisp | 12 ++++++------ Lisp/constant-data.lisp | 12 ++++++------ Lisp/data-types.lisp | 12 ++++++------ Lisp/defpackage.lisp | 12 ++++++------ Lisp/init.lisp | 12 ++++++------ Lisp/internal-utilities.lisp | 12 ++++++------ Lisp/libobjcl.lisp | 12 ++++++------ Lisp/memory-management.lisp | 12 ++++++------ Lisp/method-invocation.lisp | 12 ++++++------ Lisp/name-conversion.lisp | 12 ++++++------ Lisp/parameters.lisp | 12 ++++++------ Lisp/performance-hacks.lisp | 12 ++++++------ Lisp/reader-syntax.lisp | 12 ++++++------ Lisp/tests.lisp | 12 ++++++------ Lisp/type-handling.lisp | 12 ++++++------ Lisp/utilities.lisp | 12 ++++++------ Lisp/weak-hash-tables.lisp | 12 ++++++------ 18 files changed, 108 insertions(+), 108 deletions(-) (limited to 'Lisp') diff --git a/Lisp/compiler-macros.lisp b/Lisp/compiler-macros.lisp index c68828c..72471d5 100644 --- a/Lisp/compiler-macros.lisp +++ b/Lisp/compiler-macros.lisp @@ -2,17 +2,17 @@ ;;;; Copyright (C) 2007 Matthias Andreas Benkard. ;;;; ;;;; 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. +;;;; 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 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. +;;;; Lesser 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 +;;;; You should have received a copy of the GNU Lesser General Public +;;;; License along with this program. If not, see ;;;; . (in-package #:mulk.objective-cl) diff --git a/Lisp/conditions.lisp b/Lisp/conditions.lisp index 5080ea3..baa2875 100644 --- a/Lisp/conditions.lisp +++ b/Lisp/conditions.lisp @@ -2,17 +2,17 @@ ;;;; Copyright (C) 2007 Matthias Andreas Benkard. ;;;; ;;;; 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. +;;;; 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 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. +;;;; Lesser 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 +;;;; You should have received a copy of the GNU Lesser General Public +;;;; License along with this program. If not, see ;;;; . (in-package #:mulk.objective-cl) diff --git a/Lisp/constant-data.lisp b/Lisp/constant-data.lisp index f637ed5..c4e8393 100644 --- a/Lisp/constant-data.lisp +++ b/Lisp/constant-data.lisp @@ -2,17 +2,17 @@ ;;;; Copyright (C) 2007 Matthias Andreas Benkard. ;;;; ;;;; 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. +;;;; 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 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. +;;;; Lesser 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 +;;;; You should have received a copy of the GNU Lesser General Public +;;;; License along with this program. If not, see ;;;; . (in-package #:mulk.objective-cl) diff --git a/Lisp/data-types.lisp b/Lisp/data-types.lisp index 75b1e71..bc66bf3 100644 --- a/Lisp/data-types.lisp +++ b/Lisp/data-types.lisp @@ -2,17 +2,17 @@ ;;;; Copyright (C) 2007 Matthias Andreas Benkard. ;;;; ;;;; 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. +;;;; 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 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. +;;;; Lesser 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 +;;;; You should have received a copy of the GNU Lesser General Public +;;;; License along with this program. If not, see ;;;; . (in-package #:mulk.objective-cl) diff --git a/Lisp/defpackage.lisp b/Lisp/defpackage.lisp index bb345b9..d7156d0 100644 --- a/Lisp/defpackage.lisp +++ b/Lisp/defpackage.lisp @@ -2,17 +2,17 @@ ;;;; Copyright (C) 2007 Matthias Andreas Benkard. ;;;; ;;;; 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. +;;;; 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 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. +;;;; Lesser 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 +;;;; You should have received a copy of the GNU Lesser General Public +;;;; License along with this program. If not, see ;;;; . (defpackage #:mulk.objective-cl diff --git a/Lisp/init.lisp b/Lisp/init.lisp index a290a8d..ff9b1c6 100644 --- a/Lisp/init.lisp +++ b/Lisp/init.lisp @@ -2,17 +2,17 @@ ;;;; Copyright (C) 2007 Matthias Andreas Benkard. ;;;; ;;;; 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. +;;;; 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 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. +;;;; Lesser 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 +;;;; You should have received a copy of the GNU Lesser General Public +;;;; License along with this program. If not, see ;;;; . (in-package #:mulk.objective-cl) diff --git a/Lisp/internal-utilities.lisp b/Lisp/internal-utilities.lisp index 6578971..bf255ad 100644 --- a/Lisp/internal-utilities.lisp +++ b/Lisp/internal-utilities.lisp @@ -2,17 +2,17 @@ ;;;; Copyright (C) 2007 Matthias Andreas Benkard. ;;;; ;;;; 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. +;;;; 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 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. +;;;; Lesser 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 +;;;; You should have received a copy of the GNU Lesser General Public +;;;; License along with this program. If not, see ;;;; . (in-package #:mulk.objective-cl) diff --git a/Lisp/libobjcl.lisp b/Lisp/libobjcl.lisp index 3634cbf..a726db8 100644 --- a/Lisp/libobjcl.lisp +++ b/Lisp/libobjcl.lisp @@ -2,17 +2,17 @@ ;;;; Copyright (C) 2007 Matthias Andreas Benkard. ;;;; ;;;; 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. +;;;; 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 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. +;;;; Lesser 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 +;;;; You should have received a copy of the GNU Lesser General Public +;;;; License along with this program. If not, see ;;;; . (in-package #:mulk.objective-cl) diff --git a/Lisp/memory-management.lisp b/Lisp/memory-management.lisp index c977a49..caadf60 100644 --- a/Lisp/memory-management.lisp +++ b/Lisp/memory-management.lisp @@ -2,17 +2,17 @@ ;;;; Copyright (C) 2007 Matthias Andreas Benkard. ;;;; ;;;; 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. +;;;; 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 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. +;;;; Lesser 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 +;;;; You should have received a copy of the GNU Lesser General Public +;;;; License along with this program. If not, see ;;;; . (in-package #:mulk.objective-cl) diff --git a/Lisp/method-invocation.lisp b/Lisp/method-invocation.lisp index 02f3002..ef5058a 100644 --- a/Lisp/method-invocation.lisp +++ b/Lisp/method-invocation.lisp @@ -2,17 +2,17 @@ ;;;; Copyright (C) 2007 Matthias Andreas Benkard. ;;;; ;;;; 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. +;;;; 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 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. +;;;; Lesser 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 +;;;; You should have received a copy of the GNU Lesser General Public +;;;; License along with this program. If not, see ;;;; . (in-package #:mulk.objective-cl) diff --git a/Lisp/name-conversion.lisp b/Lisp/name-conversion.lisp index 7a7f476..d8f9a5d 100644 --- a/Lisp/name-conversion.lisp +++ b/Lisp/name-conversion.lisp @@ -2,17 +2,17 @@ ;;;; Copyright (C) 2007 Matthias Andreas Benkard. ;;;; ;;;; 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. +;;;; 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 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. +;;;; Lesser 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 +;;;; You should have received a copy of the GNU Lesser General Public +;;;; License along with this program. If not, see ;;;; . (in-package #:mulk.objective-cl) diff --git a/Lisp/parameters.lisp b/Lisp/parameters.lisp index 482d6c6..35fae3c 100644 --- a/Lisp/parameters.lisp +++ b/Lisp/parameters.lisp @@ -2,17 +2,17 @@ ;;;; Copyright (C) 2007 Matthias Andreas Benkard. ;;;; ;;;; 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. +;;;; 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 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. +;;;; Lesser 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 +;;;; You should have received a copy of the GNU Lesser General Public +;;;; License along with this program. If not, see ;;;; . (in-package #:mulk.objective-cl) diff --git a/Lisp/performance-hacks.lisp b/Lisp/performance-hacks.lisp index 200c07b..ba69153 100644 --- a/Lisp/performance-hacks.lisp +++ b/Lisp/performance-hacks.lisp @@ -2,17 +2,17 @@ ;;;; Copyright (C) 2007 Matthias Andreas Benkard. ;;;; ;;;; 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. +;;;; 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 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. +;;;; Lesser 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 +;;;; You should have received a copy of the GNU Lesser General Public +;;;; License along with this program. If not, see ;;;; . (in-package #:mulk.objective-cl) diff --git a/Lisp/reader-syntax.lisp b/Lisp/reader-syntax.lisp index 722f79b..b8f505c 100644 --- a/Lisp/reader-syntax.lisp +++ b/Lisp/reader-syntax.lisp @@ -2,17 +2,17 @@ ;;;; Copyright (C) 2007 Matthias Andreas Benkard. ;;;; ;;;; 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. +;;;; 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 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. +;;;; Lesser 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 +;;;; You should have received a copy of the GNU Lesser General Public +;;;; License along with this program. If not, see ;;;; . (in-package #:mulk.objective-cl) diff --git a/Lisp/tests.lisp b/Lisp/tests.lisp index f7a6dbb..1df4895 100644 --- a/Lisp/tests.lisp +++ b/Lisp/tests.lisp @@ -2,17 +2,17 @@ ;;;; Copyright (C) 2007 Matthias Andreas Benkard. ;;;; ;;;; 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. +;;;; 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 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. +;;;; Lesser 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 +;;;; You should have received a copy of the GNU Lesser General Public +;;;; License along with this program. If not, see ;;;; . (defpackage #:mulk.objective-cl.tests diff --git a/Lisp/type-handling.lisp b/Lisp/type-handling.lisp index 44370d8..bc46e6b 100644 --- a/Lisp/type-handling.lisp +++ b/Lisp/type-handling.lisp @@ -2,17 +2,17 @@ ;;;; Copyright (C) 2007 Matthias Andreas Benkard. ;;;; ;;;; 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. +;;;; 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 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. +;;;; Lesser 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 +;;;; You should have received a copy of the GNU Lesser General Public +;;;; License along with this program. If not, see ;;;; . (in-package #:mulk.objective-cl) diff --git a/Lisp/utilities.lisp b/Lisp/utilities.lisp index a1b3c4e..6619490 100644 --- a/Lisp/utilities.lisp +++ b/Lisp/utilities.lisp @@ -2,17 +2,17 @@ ;;;; Copyright (C) 2007 Matthias Andreas Benkard. ;;;; ;;;; 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. +;;;; 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 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. +;;;; Lesser 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 +;;;; You should have received a copy of the GNU Lesser General Public +;;;; License along with this program. If not, see ;;;; . (in-package #:mulk.objective-cl) diff --git a/Lisp/weak-hash-tables.lisp b/Lisp/weak-hash-tables.lisp index 33228b6..b016aa5 100644 --- a/Lisp/weak-hash-tables.lisp +++ b/Lisp/weak-hash-tables.lisp @@ -2,17 +2,17 @@ ;;;; Copyright (C) 2007 Matthias Andreas Benkard. ;;;; ;;;; 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. +;;;; 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 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. +;;;; Lesser 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 +;;;; You should have received a copy of the GNU Lesser General Public +;;;; License along with this program. If not, see ;;;; . (in-package #:mulk.objective-cl) -- cgit v1.2.3