diff --git a/compiler/ARM/arm-arch.lisp b/compiler/ARM/arm-arch.lisp index 83942a02b..ef5da3513 100644 --- a/compiler/ARM/arm-arch.lisp +++ b/compiler/ARM/arm-arch.lisp @@ -1,18 +1,18 @@ ;;;-*- Mode: Lisp; Package: (ARM :use CL) -*- ;;; -;;; Copyright (C) 2010 Clozure Associates -;;; This file is part of Clozure CL. +;;; Copyright 2010 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (defpackage "ARM" (:use "CL") diff --git a/compiler/ARM/arm-asm.lisp b/compiler/ARM/arm-asm.lisp index 3886f0d9d..e69802df1 100644 --- a/compiler/ARM/arm-asm.lisp +++ b/compiler/ARM/arm-asm.lisp @@ -1,18 +1,18 @@ ;;-*- Mode: Lisp; Package: (ARM :use CL) -*- ;;; -;;; Copyright (C) 2005-2009 Clozure Associates and contributors. -;;; This file is part of Clozure CL. +;;; Copyright 2005-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (eval-when (:compile-toplevel :load-toplevel :execute) (require "ARM-ARCH") diff --git a/compiler/ARM/arm-backend.lisp b/compiler/ARM/arm-backend.lisp index 49d5e3ef8..a0a369bf0 100644 --- a/compiler/ARM/arm-backend.lisp +++ b/compiler/ARM/arm-backend.lisp @@ -1,19 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/compiler/ARM/arm-disassemble.lisp b/compiler/ARM/arm-disassemble.lisp index b261ec9fe..b36befaa3 100644 --- a/compiler/ARM/arm-disassemble.lisp +++ b/compiler/ARM/arm-disassemble.lisp @@ -1,18 +1,18 @@ ;;;-*- Mode: Lisp; Package: (ARM :use CL) -*- ;;; -;;; Copyright (C) 2005-2009 Clozure Associates and contributors. -;;; This file is part of Clozure CL. +;;; Copyright 2005-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (eval-when (:compile-toplevel :load-toplevel :execute) (require "ARM-ASM") diff --git a/compiler/ARM/arm-lap.lisp b/compiler/ARM/arm-lap.lisp index 09d516252..23c946470 100644 --- a/compiler/ARM/arm-lap.lisp +++ b/compiler/ARM/arm-lap.lisp @@ -1,18 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2010 Clozure Associates -;;; This file is part of Clozure CL. +;;; Copyright 2010 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/compiler/ARM/arm-lapmacros.lisp b/compiler/ARM/arm-lapmacros.lisp index d39288c8d..737d5de5e 100644 --- a/compiler/ARM/arm-lapmacros.lisp +++ b/compiler/ARM/arm-lapmacros.lisp @@ -1,18 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2010 Clozure Associates -;;; This file is part of Clozure CL. +;;; Copyright 2010 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (eval-when (:compile-toplevel :load-toplevel :execute) diff --git a/compiler/ARM/arm-vinsns.lisp b/compiler/ARM/arm-vinsns.lisp index 3dfeb87de..6a7e45107 100644 --- a/compiler/ARM/arm-vinsns.lisp +++ b/compiler/ARM/arm-vinsns.lisp @@ -1,19 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2010 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2010 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/compiler/ARM/arm2.lisp b/compiler/ARM/arm2.lisp index d235362d6..88bf65f13 100644 --- a/compiler/ARM/arm2.lisp +++ b/compiler/ARM/arm2.lisp @@ -1,18 +1,18 @@ ;;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 2010 Clozure Associates -;;; This file is part of Clozure CL. +;;; Copyright 2010 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") @@ -9969,4 +9969,4 @@ v idx-reg constidx val-reg (arm2-unboxed-reg-for-aset seg type-keyword val-reg s (defarm2 arm2-imagpart imagpart (seg vreg xfer n) (arm2-call-fn seg vreg xfer (make-acode (%nx1-operator immediate) 'imagpart) - (list nil (list n)) nil)) \ No newline at end of file + (list nil (list n)) nil)) diff --git a/compiler/ARM64/arm64-asm.lisp b/compiler/ARM64/arm64-asm.lisp index 65e7baa30..c417d7683 100644 --- a/compiler/ARM64/arm64-asm.lisp +++ b/compiler/ARM64/arm64-asm.lisp @@ -1,3 +1,17 @@ +;;; +;;; Copyright 2016 Clozure Associates +;;; +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at +;;; +;;; http://www.apache.org/licenses/LICENSE-2.0 +;;; +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (defparameter *arm64-operand-qualifiers* '( nil diff --git a/compiler/PPC/PPC32/ppc32-arch.lisp b/compiler/PPC/PPC32/ppc32-arch.lisp index 4b4233e27..b7e455ac7 100644 --- a/compiler/PPC/PPC32/ppc32-arch.lisp +++ b/compiler/PPC/PPC32/ppc32-arch.lisp @@ -1,19 +1,18 @@ ;;;-*- Mode: Lisp; Package: (PPC32 :use CL) -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. ;; This file matches "ccl:pmcl;constants.h" & "ccl:pmcl;constants.s" diff --git a/compiler/PPC/PPC32/ppc32-backend.lisp b/compiler/PPC/PPC32/ppc32-backend.lisp index 8e5bb38ee..0d042869e 100644 --- a/compiler/PPC/PPC32/ppc32-backend.lisp +++ b/compiler/PPC/PPC32/ppc32-backend.lisp @@ -1,19 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") (eval-when (:compile-toplevel :load-toplevel :execute) (require "BACKEND")) diff --git a/compiler/PPC/PPC32/ppc32-vinsns.lisp b/compiler/PPC/PPC32/ppc32-vinsns.lisp index ba1181835..9d0d8176a 100644 --- a/compiler/PPC/PPC32/ppc32-vinsns.lisp +++ b/compiler/PPC/PPC32/ppc32-vinsns.lisp @@ -1,19 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/compiler/PPC/PPC64/ppc64-arch.lisp b/compiler/PPC/PPC64/ppc64-arch.lisp index 66ef066bf..29a40bdb8 100644 --- a/compiler/PPC/PPC64/ppc64-arch.lisp +++ b/compiler/PPC/PPC64/ppc64-arch.lisp @@ -1,19 +1,18 @@ ;;;-*- Mode: Lisp; Package: (PPC64 :use CL) -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. ;;; This file matches "ccl:lisp-kernel;constants64.h" & ;;; "ccl:lisp-kernel;constants64.s" diff --git a/compiler/PPC/PPC64/ppc64-backend.lisp b/compiler/PPC/PPC64/ppc64-backend.lisp index bf07038bf..b7235d330 100644 --- a/compiler/PPC/PPC64/ppc64-backend.lisp +++ b/compiler/PPC/PPC64/ppc64-backend.lisp @@ -1,19 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 2004, 2005 Clozure Associates -;;; This file is part of Clozure CL. +;;; Copyright 2004-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") (eval-when (:compile-toplevel :load-toplevel :execute) diff --git a/compiler/PPC/PPC64/ppc64-vinsns.lisp b/compiler/PPC/PPC64/ppc64-vinsns.lisp index 7a01e32a0..4169b9252 100644 --- a/compiler/PPC/PPC64/ppc64-vinsns.lisp +++ b/compiler/PPC/PPC64/ppc64-vinsns.lisp @@ -1,19 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 2004-2005, Clozure Associates -;;; This file is part of Clozure CL. +;;; Copyright 2004-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/compiler/PPC/ppc-arch.lisp b/compiler/PPC/ppc-arch.lisp index e60268f31..050c01656 100644 --- a/compiler/PPC/ppc-arch.lisp +++ b/compiler/PPC/ppc-arch.lisp @@ -1,19 +1,18 @@ ;;;-*- Mode: Lisp; Package: (PPC :use CL) -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (defpackage "PPC" (:use "CL")) diff --git a/compiler/PPC/ppc-asm.lisp b/compiler/PPC/ppc-asm.lisp index e0386fe78..4169e89aa 100644 --- a/compiler/PPC/ppc-asm.lisp +++ b/compiler/PPC/ppc-asm.lisp @@ -1,19 +1,18 @@ ;;;-*- Mode: Lisp; Package: (PPC :use CL) -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (cl:eval-when (:compile-toplevel :execute) diff --git a/compiler/PPC/ppc-backend.lisp b/compiler/PPC/ppc-backend.lisp index fdabcc9db..20050ea60 100644 --- a/compiler/PPC/ppc-backend.lisp +++ b/compiler/PPC/ppc-backend.lisp @@ -1,19 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/compiler/PPC/ppc-disassemble.lisp b/compiler/PPC/ppc-disassemble.lisp index b60a7dce3..47e6cd7d6 100644 --- a/compiler/PPC/ppc-disassemble.lisp +++ b/compiler/PPC/ppc-disassemble.lisp @@ -1,19 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (eval-when (:compile-toplevel :load-toplevel :execute) (require "NXENV") diff --git a/compiler/PPC/ppc-lap.lisp b/compiler/PPC/ppc-lap.lisp index d652f257c..aff4938b5 100644 --- a/compiler/PPC/ppc-lap.lisp +++ b/compiler/PPC/ppc-lap.lisp @@ -1,19 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/compiler/PPC/ppc-lapmacros.lisp b/compiler/PPC/ppc-lapmacros.lisp index 54ac5d989..7b4c48463 100644 --- a/compiler/PPC/ppc-lapmacros.lisp +++ b/compiler/PPC/ppc-lapmacros.lisp @@ -1,19 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (eval-when (:compile-toplevel :load-toplevel :execute) diff --git a/compiler/PPC/ppc2.lisp b/compiler/PPC/ppc2.lisp index 02fa6486c..af85fd957 100644 --- a/compiler/PPC/ppc2.lisp +++ b/compiler/PPC/ppc2.lisp @@ -1,19 +1,18 @@ ;;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") @@ -9296,4 +9295,4 @@ (defppc2 ppc2-imagpart imagpart (seg vreg xfer n) (ppc2-call-fn seg vreg xfer (make-acode (%nx1-operator immediate) 'imagpart) - (list nil (list n)) nil)) \ No newline at end of file + (list nil (list n)) nil)) diff --git a/compiler/X86/X8632/x8632-arch.lisp b/compiler/X86/X8632/x8632-arch.lisp index 0ba411d2e..ca0ae46b7 100644 --- a/compiler/X86/X8632/x8632-arch.lisp +++ b/compiler/X86/X8632/x8632-arch.lisp @@ -1,18 +1,18 @@ ;;;-*- Mode: Lisp; Package: (X8632 :use CL) -*- - +;;; ;;; Copyright 2009 Clozure Associates -;;; This file is part of Clozure CL. ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU -;;; Public License , known as the LLGPL and distributed with Clozure -;;; CL as the file "LICENSE". The LLGPL consists of a preamble and -;;; the LGPL, which is distributed with Clozure CL as the file "LGPL". -;;; Where these conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. ;;; This stuff has to match lisp-kernel/x86-constants32.[hs] diff --git a/compiler/X86/X8632/x8632-backend.lisp b/compiler/X86/X8632/x8632-backend.lisp index 9cc6b0f88..0ed009c0f 100644 --- a/compiler/X86/X8632/x8632-backend.lisp +++ b/compiler/X86/X8632/x8632-backend.lisp @@ -1,18 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- - +;;; ;;; Copyright 2009 Clozure Associates -;;; This file is part of Clozure CL. ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU -;;; Public License , known as the LLGPL and distributed with Clozure -;;; CL as the file "LICENSE". The LLGPL consists of a preamble and -;;; the LGPL, which is distributed with Clozure CL as the file "LGPL". -;;; Where these conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") (eval-when (:compile-toplevel :load-toplevel :execute) diff --git a/compiler/X86/X8632/x8632-vinsns.lisp b/compiler/X86/X8632/x8632-vinsns.lisp index 18d058f62..98580aa80 100644 --- a/compiler/X86/X8632/x8632-vinsns.lisp +++ b/compiler/X86/X8632/x8632-vinsns.lisp @@ -1,18 +1,18 @@ ;;;-*- Mode: Lisp; Package: (CCL :use CL) -*- - +;;; ;;; Copyright 2009 Clozure Associates -;;; This file is part of Clozure CL. ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU -;;; Public License , known as the LLGPL and distributed with Clozure -;;; CL as the file "LICENSE". The LLGPL consists of a preamble and -;;; the LGPL, which is distributed with Clozure CL as the file "LGPL". -;;; Where these conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") @@ -4776,7 +4776,7 @@ ((r :double-float) (i :double-float))) ((:not (:pred = (:apply %hard-regspec-value r) (:apply %hard-regspec-value dest))) - (:movupd (:%xmm r) (:%xmm dest))) + (:movupd (:%xmm r)�(:%xmm dest))) (shufpd (:$ub 0) (:%xmm i) (:%xmm dest))) diff --git a/compiler/X86/X8664/x8664-arch.lisp b/compiler/X86/X8664/x8664-arch.lisp index 931abc395..f1595430f 100644 --- a/compiler/X86/X8664/x8664-arch.lisp +++ b/compiler/X86/X8664/x8664-arch.lisp @@ -1,18 +1,18 @@ ;;;-*- Mode: Lisp; Package: (X8664 :use CL) -*- ;;; -;;; Copyright (C) 2005-2009 Clozure Associates and contributors. -;;; This file is part of Clozure CL. +;;; Copyright 2005-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (defpackage "X8664" (:use "CL") diff --git a/compiler/X86/X8664/x8664-backend.lisp b/compiler/X86/X8664/x8664-backend.lisp index 1abd098db..790a000e0 100644 --- a/compiler/X86/X8664/x8664-backend.lisp +++ b/compiler/X86/X8664/x8664-backend.lisp @@ -1,18 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2005-2009 Clozure Associates -;;; This file is part of Clozure CL. +;;; Copyright 2005-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") (eval-when (:compile-toplevel :load-toplevel :execute) diff --git a/compiler/X86/X8664/x8664-vinsns.lisp b/compiler/X86/X8664/x8664-vinsns.lisp index 1d8833e96..463d24fc5 100644 --- a/compiler/X86/X8664/x8664-vinsns.lisp +++ b/compiler/X86/X8664/x8664-vinsns.lisp @@ -1,18 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2005-2009 Clozure Associates and contributors. -;;; This file is part of Clozure CL. +;;; Copyright 2005-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") @@ -5338,7 +5338,7 @@ ((r :double-float) (i :double-float))) ((:not (:pred = (:apply %hard-regspec-value r) (:apply %hard-regspec-value dest))) - (:movupd (:%xmm r) (:%xmm dest))) + (:movupd (:%xmm r)�(:%xmm dest))) (shufpd (:$ub 0) (:%xmm i) (:%xmm dest))) diff --git a/compiler/X86/x86-arch.lisp b/compiler/X86/x86-arch.lisp index 3baac08a3..41f427133 100644 --- a/compiler/X86/x86-arch.lisp +++ b/compiler/X86/x86-arch.lisp @@ -1,18 +1,18 @@ ;;;-*- Mode: Lisp; Package: (X86 :use CL) -*- ;;; -;;; Copyright (C) 2005-2009 Clozure Associates and contributors. -;;; This file is part of Clozure CL. +;;; Copyright 2005-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (defpackage "X86" (:use "CL")) diff --git a/compiler/X86/x86-asm.lisp b/compiler/X86/x86-asm.lisp index 3a72a76e8..f6a703893 100644 --- a/compiler/X86/x86-asm.lisp +++ b/compiler/X86/x86-asm.lisp @@ -1,18 +1,18 @@ ;;;-*- Mode: Lisp; Package: (X86 :use CL) -*- ;;; -;;; Copyright (C) 2005-2009 Clozure Associates and contributors. -;;; This file is part of Clozure CL. +;;; Copyright 2005-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (eval-when (:compile-toplevel :load-toplevel :execute) (require "X86-ARCH") diff --git a/compiler/X86/x86-backend.lisp b/compiler/X86/x86-backend.lisp index 82c1853c7..0547a144e 100644 --- a/compiler/X86/x86-backend.lisp +++ b/compiler/X86/x86-backend.lisp @@ -1,18 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2005-2009 Clozure Associates -;;; This file is part of Clozure CL. +;;; Copyright 2005-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/compiler/X86/x86-disassemble.lisp b/compiler/X86/x86-disassemble.lisp index a0fde0285..752c89f14 100644 --- a/compiler/X86/x86-disassemble.lisp +++ b/compiler/X86/x86-disassemble.lisp @@ -1,18 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2005-2009 Clozure Associates and contributors. -;;; This file is part of Clozure CL. +;;; Copyright 2005-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/compiler/X86/x86-lap.lisp b/compiler/X86/x86-lap.lisp index 0a8614330..e6ad3b0fc 100644 --- a/compiler/X86/x86-lap.lisp +++ b/compiler/X86/x86-lap.lisp @@ -1,18 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2005-2009 Clozure Associates and contributors. -;;; This file is part of Clozure CL. +;;; Copyright 2005-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/compiler/X86/x86-lapmacros.lisp b/compiler/X86/x86-lapmacros.lisp index ed4a9e8c1..5e89a2cee 100644 --- a/compiler/X86/x86-lapmacros.lisp +++ b/compiler/X86/x86-lapmacros.lisp @@ -1,18 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2005-2009 Clozure Associates and contributors. -;;; This file is part of Clozure CL. +;;; Copyright 2005-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/compiler/X86/x862.lisp b/compiler/X86/x862.lisp index 393104ced..140a4b8ff 100644 --- a/compiler/X86/x862.lisp +++ b/compiler/X86/x862.lisp @@ -1,18 +1,18 @@ ;;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 2005-2009 Clozure Associates -;;; This file is part of Clozure CL. +;;; Copyright 2005-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/compiler/acode-rewrite.lisp b/compiler/acode-rewrite.lisp index 6b4ca3e3b..001b36039 100644 --- a/compiler/acode-rewrite.lisp +++ b/compiler/acode-rewrite.lisp @@ -1,18 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2007-2010 Clozure Associates -;;; This file is part of Clozure CL. +;;; Copyright 2007-2010 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") @@ -910,4 +910,4 @@ (acode-strength-reduce-binop w num1 num2 'double-float op (%nx1-operator double-float-compare)) (acode-strength-reduce-binop w num1 num2 'single-float op (%nx1-operator short-float-compare)) ;; Could try contagion here - )))))))) \ No newline at end of file + )))))))) diff --git a/compiler/arch.lisp b/compiler/arch.lisp index 32fcf0e64..26e3e2a97 100644 --- a/compiler/arch.lisp +++ b/compiler/arch.lisp @@ -1,19 +1,18 @@ ;;;-*- Mode: Lisp; Package: (ARCH :use CL) -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (defpackage "ARCH" (:use "CL")) diff --git a/compiler/backend.lisp b/compiler/backend.lisp index 844710292..8ae2be217 100644 --- a/compiler/backend.lisp +++ b/compiler/backend.lisp @@ -1,19 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") (eval-when (:compile-toplevel :execute) diff --git a/compiler/dll-node.lisp b/compiler/dll-node.lisp index f7dfed009..e1f15f1ef 100644 --- a/compiler/dll-node.lisp +++ b/compiler/dll-node.lisp @@ -1,19 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/compiler/lambda-list.lisp b/compiler/lambda-list.lisp index 658473089..b6aa539d9 100644 --- a/compiler/lambda-list.lisp +++ b/compiler/lambda-list.lisp @@ -1,19 +1,18 @@ ;;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/compiler/nx-base-app.lisp b/compiler/nx-base-app.lisp index 78012e632..818ae26d2 100644 --- a/compiler/nx-base-app.lisp +++ b/compiler/nx-base-app.lisp @@ -1,19 +1,18 @@ ;;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. ; Loaded instead of compiler for standalone applications. diff --git a/compiler/nx-basic.lisp b/compiler/nx-basic.lisp index 2398a2c0b..36a14826f 100644 --- a/compiler/nx-basic.lisp +++ b/compiler/nx-basic.lisp @@ -1,19 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. ;; used by compiler and eval - stuff here is not excised with rest of compiler diff --git a/compiler/nx.lisp b/compiler/nx.lisp index 50fefd3eb..15592bb04 100644 --- a/compiler/nx.lisp +++ b/compiler/nx.lisp @@ -1,19 +1,18 @@ ;;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/compiler/nx0.lisp b/compiler/nx0.lisp index b621b8c89..2008c56fc 100644 --- a/compiler/nx0.lisp +++ b/compiler/nx0.lisp @@ -1,19 +1,18 @@ ;;; -*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. diff --git a/compiler/nx1.lisp b/compiler/nx1.lisp index f7b5c7002..76f26b096 100644 --- a/compiler/nx1.lisp +++ b/compiler/nx1.lisp @@ -1,19 +1,18 @@ ;;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/compiler/nx2.lisp b/compiler/nx2.lisp index 519046051..b473a9f35 100644 --- a/compiler/nx2.lisp +++ b/compiler/nx2.lisp @@ -1,18 +1,18 @@ ;;;-*-Mode: LISP; Package: ccl -*- ;;; -;;; Copyright (C) 2008-2009 Clozure Associates and contributors -;;; This file is part of Clozure CL. +;;; Copyright 2008-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. ;;; Shared compiler backend utilities and infrastructure. @@ -526,4 +526,4 @@ ((and trust-decls (var-declared-type var))) (t '*)))))))) - \ No newline at end of file + diff --git a/compiler/nxenv.lisp b/compiler/nxenv.lisp index 8b60d667b..4d327681c 100644 --- a/compiler/nxenv.lisp +++ b/compiler/nxenv.lisp @@ -1,19 +1,18 @@ ;;; -*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. ;;; Compile-time environment for the compiler. diff --git a/compiler/optimizers.lisp b/compiler/optimizers.lisp index f5580c0d5..2750ae7a3 100644 --- a/compiler/optimizers.lisp +++ b/compiler/optimizers.lisp @@ -1,19 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. ; Optimizers.lisp - compiler optimizers diff --git a/compiler/reg.lisp b/compiler/reg.lisp index caa6faa3f..c57f0466b 100644 --- a/compiler/reg.lisp +++ b/compiler/reg.lisp @@ -1,19 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL-*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") ;;; A "register spec" is a fixnum. Bit 28 is clear; bits 24-26 diff --git a/compiler/risc-lap.lisp b/compiler/risc-lap.lisp index 17a32239d..cadf945ca 100644 --- a/compiler/risc-lap.lisp +++ b/compiler/risc-lap.lisp @@ -1,19 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. ;; Lap data structures & some generic code (at least for RISC backends.) diff --git a/compiler/subprims.lisp b/compiler/subprims.lisp index f423423b1..daa3cb2cb 100644 --- a/compiler/subprims.lisp +++ b/compiler/subprims.lisp @@ -1,19 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/compiler/vinsn.lisp b/compiler/vinsn.lisp index 87821c02b..fa002eb6d 100644 --- a/compiler/vinsn.lisp +++ b/compiler/vinsn.lisp @@ -1,19 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (cl:in-package "CCL") diff --git a/compiler/vreg.lisp b/compiler/vreg.lisp index c8c89d01a..d38192d7e 100644 --- a/compiler/vreg.lisp +++ b/compiler/vreg.lisp @@ -1,19 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (cl:eval-when (:compile-toplevel :load-toplevel :execute) diff --git a/level-0/ARM/arm-array.lisp b/level-0/ARM/arm-array.lisp index ed4957f0b..af3bc8f50 100644 --- a/level-0/ARM/arm-array.lisp +++ b/level-0/ARM/arm-array.lisp @@ -1,18 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2010 Clozure Associates -;;; This file is part of Clozure CL. +;;; Copyright 2010 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/level-0/ARM/arm-bignum.lisp b/level-0/ARM/arm-bignum.lisp index 7fae1e95c..9045b7c92 100644 --- a/level-0/ARM/arm-bignum.lisp +++ b/level-0/ARM/arm-bignum.lisp @@ -1,19 +1,18 @@ ;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2010 Clozure Associates - -;;; This file is part of Clozure CL. +;;; Copyright 2010 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/level-0/ARM/arm-clos.lisp b/level-0/ARM/arm-clos.lisp index 49c905462..724aaab32 100644 --- a/level-0/ARM/arm-clos.lisp +++ b/level-0/ARM/arm-clos.lisp @@ -1,19 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/level-0/ARM/arm-def.lisp b/level-0/ARM/arm-def.lisp index 4155c6a58..f67b808b5 100644 --- a/level-0/ARM/arm-def.lisp +++ b/level-0/ARM/arm-def.lisp @@ -1,18 +1,18 @@ ;;; -*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; This file is part of Clozure CL. +;;; Copyright 2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/level-0/ARM/arm-float.lisp b/level-0/ARM/arm-float.lisp index 84f0039e5..33c3df849 100644 --- a/level-0/ARM/arm-float.lisp +++ b/level-0/ARM/arm-float.lisp @@ -1,18 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2010 Clozure Associates -;;; This file is part of Clozure CL. +;;; Copyright 2010 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/level-0/ARM/arm-hash.lisp b/level-0/ARM/arm-hash.lisp index c9c43e7b3..528a37b18 100644 --- a/level-0/ARM/arm-hash.lisp +++ b/level-0/ARM/arm-hash.lisp @@ -1,18 +1,18 @@ ;;; -*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2010 Clozure Associates -;;; This file is part of Clozure CL. +;;; Copyright 2010 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. ;;; level-0;ARM;arm-hash.lisp diff --git a/level-0/ARM/arm-io.lisp b/level-0/ARM/arm-io.lisp index 974661375..9c1258de9 100644 --- a/level-0/ARM/arm-io.lisp +++ b/level-0/ARM/arm-io.lisp @@ -1,18 +1,18 @@ ;;; -*- Mode: Lisp; Package: CCL; -*- ;;; -;;; Copyright (C) 2010 Clozure Associates -;;; This file is part of Clozure CL. +;;; Copyright 2010 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. diff --git a/level-0/ARM/arm-misc.lisp b/level-0/ARM/arm-misc.lisp index ba0b873e3..c22738f0d 100644 --- a/level-0/ARM/arm-misc.lisp +++ b/level-0/ARM/arm-misc.lisp @@ -1,18 +1,18 @@ ;;; -*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2010 Clozure Associates -;;; This file is part of Clozure CL. +;;; Copyright 2010 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. ;;; level-0;ARM;arm-misc.lisp diff --git a/level-0/ARM/arm-numbers.lisp b/level-0/ARM/arm-numbers.lisp index ddf3fa594..8618a4837 100644 --- a/level-0/ARM/arm-numbers.lisp +++ b/level-0/ARM/arm-numbers.lisp @@ -1,19 +1,18 @@ ;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. diff --git a/level-0/ARM/arm-pred.lisp b/level-0/ARM/arm-pred.lisp index f10ba0839..660694059 100644 --- a/level-0/ARM/arm-pred.lisp +++ b/level-0/ARM/arm-pred.lisp @@ -1,18 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2010 Clozure Associates -;;; This file is part of Clozure CL. +;;; Copyright 2010 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/level-0/ARM/arm-symbol.lisp b/level-0/ARM/arm-symbol.lisp index 7e395432d..d20d2b066 100644 --- a/level-0/ARM/arm-symbol.lisp +++ b/level-0/ARM/arm-symbol.lisp @@ -1,19 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/level-0/ARM/arm-utils.lisp b/level-0/ARM/arm-utils.lisp index bde8db3dd..b9edef772 100644 --- a/level-0/ARM/arm-utils.lisp +++ b/level-0/ARM/arm-utils.lisp @@ -1,18 +1,18 @@ ;;; -*- Mode: Lisp; Package: CCL; -*- ;;; -;;; Copyright (C) 2010 Clozure Associates -;;; This file is part of Clozure CL. +;;; Copyright 2010 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/level-0/PPC/PPC32/ppc32-bignum.lisp b/level-0/PPC/PPC32/ppc32-bignum.lisp index c6f734114..882aacabb 100644 --- a/level-0/PPC/PPC32/ppc32-bignum.lisp +++ b/level-0/PPC/PPC32/ppc32-bignum.lisp @@ -1,19 +1,18 @@ ;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/level-0/PPC/PPC64/ppc64-bignum.lisp b/level-0/PPC/PPC64/ppc64-bignum.lisp index 0bfe78fc7..c9693c610 100644 --- a/level-0/PPC/PPC64/ppc64-bignum.lisp +++ b/level-0/PPC/PPC64/ppc64-bignum.lisp @@ -1,19 +1,18 @@ ;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") @@ -391,4 +390,4 @@ (and imm1 imm1 imm2) (stdx imm1 c imm3) (bne @loop) - (blr)) \ No newline at end of file + (blr)) diff --git a/level-0/PPC/ppc-array.lisp b/level-0/PPC/ppc-array.lisp index f831533ec..44303c7a3 100644 --- a/level-0/PPC/ppc-array.lisp +++ b/level-0/PPC/ppc-array.lisp @@ -1,19 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/level-0/PPC/ppc-clos.lisp b/level-0/PPC/ppc-clos.lisp index caff290f3..d6f6fe152 100644 --- a/level-0/PPC/ppc-clos.lisp +++ b/level-0/PPC/ppc-clos.lisp @@ -1,19 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/level-0/PPC/ppc-def.lisp b/level-0/PPC/ppc-def.lisp index a1af4f1c8..ef7668c56 100644 --- a/level-0/PPC/ppc-def.lisp +++ b/level-0/PPC/ppc-def.lisp @@ -1,19 +1,18 @@ ;;; -*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/level-0/PPC/ppc-float.lisp b/level-0/PPC/ppc-float.lisp index 901c47dec..022127d00 100644 --- a/level-0/PPC/ppc-float.lisp +++ b/level-0/PPC/ppc-float.lisp @@ -1,19 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/level-0/PPC/ppc-hash.lisp b/level-0/PPC/ppc-hash.lisp index c6d42043d..d4dc5a619 100644 --- a/level-0/PPC/ppc-hash.lisp +++ b/level-0/PPC/ppc-hash.lisp @@ -1,19 +1,18 @@ ;;; -*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. ;;; level-0;ppc;ppc-hash.lisp diff --git a/level-0/PPC/ppc-io.lisp b/level-0/PPC/ppc-io.lisp index 85c459508..d5660a663 100644 --- a/level-0/PPC/ppc-io.lisp +++ b/level-0/PPC/ppc-io.lisp @@ -1,19 +1,18 @@ ;;; -*- Mode: Lisp; Package: CCL; -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. diff --git a/level-0/PPC/ppc-misc.lisp b/level-0/PPC/ppc-misc.lisp index 1e8798c14..1ea0c442c 100644 --- a/level-0/PPC/ppc-misc.lisp +++ b/level-0/PPC/ppc-misc.lisp @@ -1,19 +1,18 @@ ;;; -*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. ;;; level-0;x86;x86-misc.lisp diff --git a/level-0/PPC/ppc-numbers.lisp b/level-0/PPC/ppc-numbers.lisp index e396d90bc..143b2bc60 100644 --- a/level-0/PPC/ppc-numbers.lisp +++ b/level-0/PPC/ppc-numbers.lisp @@ -1,19 +1,18 @@ ;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. diff --git a/level-0/PPC/ppc-pred.lisp b/level-0/PPC/ppc-pred.lisp index fa2b8bd83..6de7f38c8 100644 --- a/level-0/PPC/ppc-pred.lisp +++ b/level-0/PPC/ppc-pred.lisp @@ -1,19 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/level-0/PPC/ppc-symbol.lisp b/level-0/PPC/ppc-symbol.lisp index 7373629d5..34c7816d3 100644 --- a/level-0/PPC/ppc-symbol.lisp +++ b/level-0/PPC/ppc-symbol.lisp @@ -1,19 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/level-0/PPC/ppc-utils.lisp b/level-0/PPC/ppc-utils.lisp index 74e510628..2f2989470 100644 --- a/level-0/PPC/ppc-utils.lisp +++ b/level-0/PPC/ppc-utils.lisp @@ -1,19 +1,18 @@ ;;; -*- Mode: Lisp; Package: CCL; -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/level-0/X86/X8632/x8632-array.lisp b/level-0/X86/X8632/x8632-array.lisp index a30be8722..cace8e958 100644 --- a/level-0/X86/X8632/x8632-array.lisp +++ b/level-0/X86/X8632/x8632-array.lisp @@ -1,16 +1,17 @@ +;;; ;;; Copyright 2009 Clozure Associates -;;; This file is part of Clozure CL. ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU -;;; Public License , known as the LLGPL and distributed with Clozure -;;; CL as the file "LICENSE". The LLGPL consists of a preamble and -;;; the LGPL, which is distributed with Clozure CL as the file "LGPL". -;;; Where these conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/level-0/X86/X8632/x8632-bignum.lisp b/level-0/X86/X8632/x8632-bignum.lisp index 22c11078a..0addacc90 100644 --- a/level-0/X86/X8632/x8632-bignum.lisp +++ b/level-0/X86/X8632/x8632-bignum.lisp @@ -1,16 +1,17 @@ +;;; ;;; Copyright 2009 Clozure Associates -;;; This file is part of Clozure CL. ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU -;;; Public License , known as the LLGPL and distributed with Clozure -;;; CL as the file "LICENSE". The LLGPL consists of a preamble and -;;; the LGPL, which is distributed with Clozure CL as the file "LGPL". -;;; Where these conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/level-0/X86/X8632/x8632-clos.lisp b/level-0/X86/X8632/x8632-clos.lisp index c1b5f0109..c10dd68c7 100644 --- a/level-0/X86/X8632/x8632-clos.lisp +++ b/level-0/X86/X8632/x8632-clos.lisp @@ -1,16 +1,17 @@ +;;; ;;; Copyright 2009 Clozure Associates -;;; This file is part of Clozure CL. ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU -;;; Public License , known as the LLGPL and distributed with Clozure -;;; CL as the file "LICENSE". The LLGPL consists of a preamble and -;;; the LGPL, which is distributed with Clozure CL as the file "LGPL". -;;; Where these conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/level-0/X86/X8632/x8632-def.lisp b/level-0/X86/X8632/x8632-def.lisp index 4f706c4c2..d4ed38e6a 100644 --- a/level-0/X86/X8632/x8632-def.lisp +++ b/level-0/X86/X8632/x8632-def.lisp @@ -1,18 +1,18 @@ ;;; -*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2006-2009 Clozure Associates and contributors -;;; This file is part of Clozure CL. +;;; Copyright 2006-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/level-0/X86/X8632/x8632-float.lisp b/level-0/X86/X8632/x8632-float.lisp index 702864c70..17d83c5be 100644 --- a/level-0/X86/X8632/x8632-float.lisp +++ b/level-0/X86/X8632/x8632-float.lisp @@ -1,16 +1,17 @@ +;;; ;;; Copyright 2009 Clozure Associates -;;; This file is part of Clozure CL. ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU -;;; Public License , known as the LLGPL and distributed with Clozure -;;; CL as the file "LICENSE". The LLGPL consists of a preamble and -;;; the LGPL, which is distributed with Clozure CL as the file "LGPL". -;;; Where these conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/level-0/X86/X8632/x8632-hash.lisp b/level-0/X86/X8632/x8632-hash.lisp index 0118e940f..0a7ca0e34 100644 --- a/level-0/X86/X8632/x8632-hash.lisp +++ b/level-0/X86/X8632/x8632-hash.lisp @@ -1,16 +1,17 @@ +;;; ;;; Copyright 2009 Clozure Associates -;;; This file is part of Clozure CL. ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU -;;; Public License , known as the LLGPL and distributed with Clozure -;;; CL as the file "LICENSE". The LLGPL consists of a preamble and -;;; the LGPL, which is distributed with Clozure CL as the file "LGPL". -;;; Where these conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/level-0/X86/X8632/x8632-misc.lisp b/level-0/X86/X8632/x8632-misc.lisp index c9a870d15..1afb3f139 100644 --- a/level-0/X86/X8632/x8632-misc.lisp +++ b/level-0/X86/X8632/x8632-misc.lisp @@ -1,16 +1,17 @@ +;;; ;;; Copyright 2009 Clozure Associates -;;; This file is part of Clozure CL. ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU -;;; Public License , known as the LLGPL and distributed with Clozure -;;; CL as the file "LICENSE". The LLGPL consists of a preamble and -;;; the LGPL, which is distributed with Clozure CL as the file "LGPL". -;;; Where these conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/level-0/X86/X8632/x8632-numbers.lisp b/level-0/X86/X8632/x8632-numbers.lisp index 1ae127337..1dfee4ffb 100644 --- a/level-0/X86/X8632/x8632-numbers.lisp +++ b/level-0/X86/X8632/x8632-numbers.lisp @@ -1,16 +1,17 @@ +;;; ;;; Copyright 2009 Clozure Associates -;;; This file is part of Clozure CL. ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU -;;; Public License , known as the LLGPL and distributed with Clozure -;;; CL as the file "LICENSE". The LLGPL consists of a preamble and -;;; the LGPL, which is distributed with Clozure CL as the file "LGPL". -;;; Where these conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") @@ -344,4 +345,4 @@ (andb ($ (lognot x8632::fulltagmask)) (:rcontext x8632::tcr.save-allocptr)) (movl (% allocptr) (% arg_z)) (movq (% xmm0) (@ x8632::complex-single-float.realpart (% arg_z))) - (single-value-return)) \ No newline at end of file + (single-value-return)) diff --git a/level-0/X86/X8632/x8632-pred.lisp b/level-0/X86/X8632/x8632-pred.lisp index 87d00eb2c..d79696d70 100644 --- a/level-0/X86/X8632/x8632-pred.lisp +++ b/level-0/X86/X8632/x8632-pred.lisp @@ -1,16 +1,17 @@ +;;; ;;; Copyright 2009 Clozure Associates -;;; This file is part of Clozure CL. ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU -;;; Public License , known as the LLGPL and distributed with Clozure -;;; CL as the file "LICENSE". The LLGPL consists of a preamble and -;;; the LGPL, which is distributed with Clozure CL as the file "LGPL". -;;; Where these conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/level-0/X86/X8632/x8632-symbol.lisp b/level-0/X86/X8632/x8632-symbol.lisp index 68f296e67..07d8eccce 100644 --- a/level-0/X86/X8632/x8632-symbol.lisp +++ b/level-0/X86/X8632/x8632-symbol.lisp @@ -1,16 +1,17 @@ +;;; ;;; Copyright 2009 Clozure Associates -;;; This file is part of Clozure CL. ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU -;;; Public License , known as the LLGPL and distributed with Clozure -;;; CL as the file "LICENSE". The LLGPL consists of a preamble and -;;; the LGPL, which is distributed with Clozure CL as the file "LGPL". -;;; Where these conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/level-0/X86/X8632/x8632-utils.lisp b/level-0/X86/X8632/x8632-utils.lisp index a68d3c8b3..66c540e21 100644 --- a/level-0/X86/X8632/x8632-utils.lisp +++ b/level-0/X86/X8632/x8632-utils.lisp @@ -1,16 +1,17 @@ +;;; ;;; Copyright 2009 Clozure Associates -;;; This file is part of Clozure CL. ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU -;;; Public License , known as the LLGPL and distributed with Clozure -;;; CL as the file "LICENSE". The LLGPL consists of a preamble and -;;; the LGPL, which is distributed with Clozure CL as the file "LGPL". -;;; Where these conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/level-0/X86/X8664/x8664-bignum.lisp b/level-0/X86/X8664/x8664-bignum.lisp index 3bc16fe00..5b81ac13d 100644 --- a/level-0/X86/X8664/x8664-bignum.lisp +++ b/level-0/X86/X8664/x8664-bignum.lisp @@ -1,18 +1,18 @@ ;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2006-2009 Clozure Associates -;;; This file is part of Clozure CL. +;;; Copyright 2006-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/level-0/X86/x86-array.lisp b/level-0/X86/x86-array.lisp index d1ba9aa64..c6540bbc6 100644 --- a/level-0/X86/x86-array.lisp +++ b/level-0/X86/x86-array.lisp @@ -1,19 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/level-0/X86/x86-clos.lisp b/level-0/X86/x86-clos.lisp index e208b6ca5..117f6c808 100644 --- a/level-0/X86/x86-clos.lisp +++ b/level-0/X86/x86-clos.lisp @@ -1,18 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2006-2009 Clozure Associates and contributors -;;; This file is part of Clozure CL. +;;; Copyright 2006-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/level-0/X86/x86-def.lisp b/level-0/X86/x86-def.lisp index 2ebf3aeb8..2d560bbd4 100644 --- a/level-0/X86/x86-def.lisp +++ b/level-0/X86/x86-def.lisp @@ -1,18 +1,18 @@ ;;; -*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2006-2009 Clozure Associates and contributors -;;; This file is part of Clozure CL. +;;; Copyright 2006-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") #+x8664-target diff --git a/level-0/X86/x86-float.lisp b/level-0/X86/x86-float.lisp index 4d2cd8c7b..20eb6a8a3 100644 --- a/level-0/X86/x86-float.lisp +++ b/level-0/X86/x86-float.lisp @@ -1,18 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2005-2009 Clozure Associates -;;; This file is part of Clozure CL. +;;; Copyright 2005-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") #+x8664-target diff --git a/level-0/X86/x86-hash.lisp b/level-0/X86/x86-hash.lisp index f91229772..0595b3ab9 100644 --- a/level-0/X86/x86-hash.lisp +++ b/level-0/X86/x86-hash.lisp @@ -1,18 +1,18 @@ ;;; -*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2006-2009 Clozure Associates and contributors -;;; This file is part of Clozure CL. +;;; Copyright 2006-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. ;;; level-0;ppc;ppc-hash.lisp diff --git a/level-0/X86/x86-io.lisp b/level-0/X86/x86-io.lisp index 272b52194..5578b714b 100644 --- a/level-0/X86/x86-io.lisp +++ b/level-0/X86/x86-io.lisp @@ -1,19 +1,18 @@ ;;; -*- Mode: Lisp; Package: CCL; -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. diff --git a/level-0/X86/x86-misc.lisp b/level-0/X86/x86-misc.lisp index 284c08fe0..091d141ae 100644 --- a/level-0/X86/x86-misc.lisp +++ b/level-0/X86/x86-misc.lisp @@ -1,19 +1,18 @@ ;;; -*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. ;;; level-0;x86;x86-misc.lisp diff --git a/level-0/X86/x86-numbers.lisp b/level-0/X86/x86-numbers.lisp index 51f6c22c9..52732b3c3 100644 --- a/level-0/X86/x86-numbers.lisp +++ b/level-0/X86/x86-numbers.lisp @@ -1,19 +1,18 @@ ;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. diff --git a/level-0/X86/x86-pred.lisp b/level-0/X86/x86-pred.lisp index 122f56c62..a17ea5b66 100644 --- a/level-0/X86/x86-pred.lisp +++ b/level-0/X86/x86-pred.lisp @@ -1,19 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") #+x8664-target diff --git a/level-0/X86/x86-symbol.lisp b/level-0/X86/x86-symbol.lisp index 70153d89a..73c6b31f8 100644 --- a/level-0/X86/x86-symbol.lisp +++ b/level-0/X86/x86-symbol.lisp @@ -1,19 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") #+x8664-target diff --git a/level-0/X86/x86-utils.lisp b/level-0/X86/x86-utils.lisp index 0e07f00ff..4cdf21b1b 100644 --- a/level-0/X86/x86-utils.lisp +++ b/level-0/X86/x86-utils.lisp @@ -1,19 +1,18 @@ ; -*- Mode: Lisp; Package: CCL; -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/level-0/l0-aprims.lisp b/level-0/l0-aprims.lisp index b4ec8e8e4..92c79132a 100644 --- a/level-0/l0-aprims.lisp +++ b/level-0/l0-aprims.lisp @@ -1,19 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/level-0/l0-array.lisp b/level-0/l0-array.lisp index 96cb66fb9..c9919600a 100644 --- a/level-0/l0-array.lisp +++ b/level-0/l0-array.lisp @@ -1,19 +1,18 @@ ;;; -*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/level-0/l0-bignum32.lisp b/level-0/l0-bignum32.lisp index d5cbfbc1b..e0c519384 100644 --- a/level-0/l0-bignum32.lisp +++ b/level-0/l0-bignum32.lisp @@ -1,19 +1,18 @@ ;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/level-0/l0-bignum64.lisp b/level-0/l0-bignum64.lisp index 23e430188..d6886398a 100644 --- a/level-0/l0-bignum64.lisp +++ b/level-0/l0-bignum64.lisp @@ -1,19 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/level-0/l0-cfm-support.lisp b/level-0/l0-cfm-support.lisp index 3e7893489..3d95041c1 100644 --- a/level-0/l0-cfm-support.lisp +++ b/level-0/l0-cfm-support.lisp @@ -1,19 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. ; l0-cfm-support.lisp diff --git a/level-0/l0-complex.lisp b/level-0/l0-complex.lisp index 6b6f7968c..620f7f5bd 100644 --- a/level-0/l0-complex.lisp +++ b/level-0/l0-complex.lisp @@ -1,19 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/level-0/l0-def.lisp b/level-0/l0-def.lisp index f52d6be19..e396ffe94 100644 --- a/level-0/l0-def.lisp +++ b/level-0/l0-def.lisp @@ -1,19 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/level-0/l0-error.lisp b/level-0/l0-error.lisp index 1b707a105..ec7b76250 100644 --- a/level-0/l0-error.lisp +++ b/level-0/l0-error.lisp @@ -1,18 +1,17 @@ ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/level-0/l0-float.lisp b/level-0/l0-float.lisp index 98219e886..4a6592042 100644 --- a/level-0/l0-float.lisp +++ b/level-0/l0-float.lisp @@ -1,19 +1,18 @@ ;;; -*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. ;;; ;;; level-0;l0-float.lisp diff --git a/level-0/l0-hash.lisp b/level-0/l0-hash.lisp index 59ac49040..9655f79db 100644 --- a/level-0/l0-hash.lisp +++ b/level-0/l0-hash.lisp @@ -1,19 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/level-0/l0-init.lisp b/level-0/l0-init.lisp index 7242c3ec8..1322c175d 100644 --- a/level-0/l0-init.lisp +++ b/level-0/l0-init.lisp @@ -1,19 +1,18 @@ ;;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/level-0/l0-int.lisp b/level-0/l0-int.lisp index 65a455124..e02597eae 100644 --- a/level-0/l0-int.lisp +++ b/level-0/l0-int.lisp @@ -1,19 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/level-0/l0-io.lisp b/level-0/l0-io.lisp index f743bb4c5..722848f9e 100644 --- a/level-0/l0-io.lisp +++ b/level-0/l0-io.lisp @@ -1,19 +1,18 @@ ; -*- Mode: Lisp; Package: CCL; -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/level-0/l0-misc.lisp b/level-0/l0-misc.lisp index be98b335e..3c30c96de 100644 --- a/level-0/l0-misc.lisp +++ b/level-0/l0-misc.lisp @@ -1,19 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/level-0/l0-numbers.lisp b/level-0/l0-numbers.lisp index d8a81be73..e44e7b370 100644 --- a/level-0/l0-numbers.lisp +++ b/level-0/l0-numbers.lisp @@ -1,19 +1,18 @@ ;;; -*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. ;;; ;;; level-0;l0-numbers.lisp diff --git a/level-0/l0-pred.lisp b/level-0/l0-pred.lisp index da849dace..6cf4bd868 100644 --- a/level-0/l0-pred.lisp +++ b/level-0/l0-pred.lisp @@ -1,19 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/level-0/l0-symbol.lisp b/level-0/l0-symbol.lisp index 8de98dcd4..4c382895e 100644 --- a/level-0/l0-symbol.lisp +++ b/level-0/l0-symbol.lisp @@ -1,19 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/level-0/l0-utils.lisp b/level-0/l0-utils.lisp index 68cd7347d..89ed62da7 100644 --- a/level-0/l0-utils.lisp +++ b/level-0/l0-utils.lisp @@ -1,19 +1,18 @@ ; -*- Mode: Lisp; Package: CCL; -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. diff --git a/level-0/nfasload.lisp b/level-0/nfasload.lisp index 45ceb07b4..6666b5cf6 100644 --- a/level-0/nfasload.lisp +++ b/level-0/nfasload.lisp @@ -1,19 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/level-1/arm-callback-support.lisp b/level-1/arm-callback-support.lisp index be6942767..740055757 100644 --- a/level-1/arm-callback-support.lisp +++ b/level-1/arm-callback-support.lisp @@ -1,18 +1,18 @@ ;;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 2010 Clozure Associates -;;; This file is part of Clozure CL. +;;; Copyright 2010 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/level-1/arm-error-signal.lisp b/level-1/arm-error-signal.lisp index 81804c8b2..c9aa01b0e 100644 --- a/level-1/arm-error-signal.lisp +++ b/level-1/arm-error-signal.lisp @@ -1,18 +1,18 @@ ;;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 2010 Clozure Associates -;;; This file is part of Clozure CL. +;;; Copyright 2010 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") (defparameter *arm-xtype-specifiers* (make-array 256 :initial-element nil)) diff --git a/level-1/arm-threads-utils.lisp b/level-1/arm-threads-utils.lisp index 5dea1cdd7..dc29551a2 100644 --- a/level-1/arm-threads-utils.lisp +++ b/level-1/arm-threads-utils.lisp @@ -1,18 +1,18 @@ ;;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 2010 Clozure Associates -;;; This file is part of Clozure CL. +;;; Copyright 2010 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/level-1/arm-trap-support.lisp b/level-1/arm-trap-support.lisp index 2d8f9b709..93ff7dfea 100644 --- a/level-1/arm-trap-support.lisp +++ b/level-1/arm-trap-support.lisp @@ -1,18 +1,18 @@ ;;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 2010 Clozure Associates -;;; This file is part of Clozure CL. +;;; Copyright 2010 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") @@ -200,4 +200,4 @@ (when hook (funcall hook)))) (t (error "cmain callback: signal = ~d, arg = #x~x, fnreg = ~d, offset = ~d" - signal arg fnreg offset))))) \ No newline at end of file + signal arg fnreg offset))))) diff --git a/level-1/l1-application.lisp b/level-1/l1-application.lisp index 7cb94ed74..f44be15de 100644 --- a/level-1/l1-application.lisp +++ b/level-1/l1-application.lisp @@ -1,19 +1,18 @@ ;;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; Portions Copyright (C) 2001-2009, Clozure Associates -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/level-1/l1-aprims.lisp b/level-1/l1-aprims.lisp index 0bd5f4535..e8b8dad30 100644 --- a/level-1/l1-aprims.lisp +++ b/level-1/l1-aprims.lisp @@ -1,19 +1,18 @@ ;;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. ;; L1-aprims.lisp diff --git a/level-1/l1-boot-1.lisp b/level-1/l1-boot-1.lisp index d3d4d934f..cfff9fa6f 100644 --- a/level-1/l1-boot-1.lisp +++ b/level-1/l1-boot-1.lisp @@ -1,19 +1,18 @@ ;;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. ;; L1-boot.lisp diff --git a/level-1/l1-boot-2.lisp b/level-1/l1-boot-2.lisp index 1541ca543..fe10dc3dd 100644 --- a/level-1/l1-boot-2.lisp +++ b/level-1/l1-boot-2.lisp @@ -1,19 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. ;; l1-boot-2.lisp ;; Second part of l1-boot diff --git a/level-1/l1-boot-3.lisp b/level-1/l1-boot-3.lisp index fd0555908..8da0f543d 100644 --- a/level-1/l1-boot-3.lisp +++ b/level-1/l1-boot-3.lisp @@ -1,19 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. ;;; l1-boot-3.lisp ;;; Third part of l1-boot diff --git a/level-1/l1-boot-lds.lisp b/level-1/l1-boot-lds.lisp index 8ce396cce..346c2377b 100644 --- a/level-1/l1-boot-lds.lisp +++ b/level-1/l1-boot-lds.lisp @@ -1,19 +1,18 @@ ;;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. ; l1-boot-lds.lisp diff --git a/level-1/l1-callbacks.lisp b/level-1/l1-callbacks.lisp index e4b11e661..3f88041d8 100644 --- a/level-1/l1-callbacks.lisp +++ b/level-1/l1-callbacks.lisp @@ -1,19 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. ;;; l1-callbacks.lisp diff --git a/level-1/l1-cl-package.lisp b/level-1/l1-cl-package.lisp index 2a58e5f6f..3ca68b4c3 100644 --- a/level-1/l1-cl-package.lisp +++ b/level-1/l1-cl-package.lisp @@ -1,19 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. ; l1-cl-package.lisp diff --git a/level-1/l1-clos-boot.lisp b/level-1/l1-clos-boot.lisp index 6e80aa66e..49b5a10c3 100644 --- a/level-1/l1-clos-boot.lisp +++ b/level-1/l1-clos-boot.lisp @@ -1,19 +1,18 @@ ;;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. diff --git a/level-1/l1-clos.lisp b/level-1/l1-clos.lisp index 46e1ecf12..05bc0ec79 100644 --- a/level-1/l1-clos.lisp +++ b/level-1/l1-clos.lisp @@ -1,19 +1,18 @@ ;;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; Copyright (C) 2002-2009 Clozure Associates -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. ;;; ;;; At this point in the load sequence, the handful of extant basic classes diff --git a/level-1/l1-dcode.lisp b/level-1/l1-dcode.lisp index ef76e41fa..8a6567b7b 100644 --- a/level-1/l1-dcode.lisp +++ b/level-1/l1-dcode.lisp @@ -1,19 +1,18 @@ ;;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/level-1/l1-error-signal.lisp b/level-1/l1-error-signal.lisp index d972ce16e..18b2cd78d 100644 --- a/level-1/l1-error-signal.lisp +++ b/level-1/l1-error-signal.lisp @@ -1,19 +1,18 @@ ;;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/level-1/l1-error-system.lisp b/level-1/l1-error-system.lisp index 3f15e3a6d..60874261a 100644 --- a/level-1/l1-error-system.lisp +++ b/level-1/l1-error-system.lisp @@ -1,19 +1,18 @@ ;;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. ;;; This file contains the error/condition system. Functions that diff --git a/level-1/l1-events.lisp b/level-1/l1-events.lisp index b7dacfceb..a1a2d0493 100644 --- a/level-1/l1-events.lisp +++ b/level-1/l1-events.lisp @@ -1,19 +1,18 @@ ;;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/level-1/l1-files.lisp b/level-1/l1-files.lisp index 74cf7978d..5fe938eb4 100644 --- a/level-1/l1-files.lisp +++ b/level-1/l1-files.lisp @@ -1,19 +1,18 @@ ;;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; Portions copyright (C) 2001-2009 Clozure Associates -;;; This file is part of Clozure CL. +;;; Copyright 1994-2001 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. ;; L1-files.lisp - Object oriented file stuff diff --git a/level-1/l1-format.lisp b/level-1/l1-format.lisp index 636ec8715..654474217 100644 --- a/level-1/l1-format.lisp +++ b/level-1/l1-format.lisp @@ -1,19 +1,18 @@ ;;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. ;; L1-format.lisp ; diff --git a/level-1/l1-init.lisp b/level-1/l1-init.lisp index dea1cb84a..fd83b5934 100644 --- a/level-1/l1-init.lisp +++ b/level-1/l1-init.lisp @@ -1,19 +1,18 @@ ;;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/level-1/l1-io.lisp b/level-1/l1-io.lisp index d20f7c9dd..2c24e05ef 100644 --- a/level-1/l1-io.lisp +++ b/level-1/l1-io.lisp @@ -1,19 +1,18 @@ ;;; -*- Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. ;; L1-io.lisp diff --git a/level-1/l1-lisp-threads.lisp b/level-1/l1-lisp-threads.lisp index 88be8498e..05ea333ca 100644 --- a/level-1/l1-lisp-threads.lisp +++ b/level-1/l1-lisp-threads.lisp @@ -1,19 +1,18 @@ ;;; -*- Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. ;; l1-lisp-threads.lisp diff --git a/level-1/l1-numbers.lisp b/level-1/l1-numbers.lisp index 5b2f3d4d4..4efd2b035 100644 --- a/level-1/l1-numbers.lisp +++ b/level-1/l1-numbers.lisp @@ -1,19 +1,18 @@ ;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/level-1/l1-pathnames.lisp b/level-1/l1-pathnames.lisp index b258732ed..7d4d3460c 100644 --- a/level-1/l1-pathnames.lisp +++ b/level-1/l1-pathnames.lisp @@ -1,19 +1,18 @@ ;;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; Portions copyright (c) 2001-2009 Clozure Associates. -;;; This file is part of Clozure CL. +;;; Copyright 1994-2001 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. diff --git a/level-1/l1-processes.lisp b/level-1/l1-processes.lisp index d2d7c8ec7..b5c15a912 100644 --- a/level-1/l1-processes.lisp +++ b/level-1/l1-processes.lisp @@ -1,19 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. ;; L1-processes.lisp diff --git a/level-1/l1-reader.lisp b/level-1/l1-reader.lisp index fe5d2b17d..f294a3ed4 100644 --- a/level-1/l1-reader.lisp +++ b/level-1/l1-reader.lisp @@ -1,19 +1,18 @@ ;;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. ;;; READ and related functions. diff --git a/level-1/l1-readloop-lds.lisp b/level-1/l1-readloop-lds.lisp index 06fbbf69a..bfa430a9b 100644 --- a/level-1/l1-readloop-lds.lisp +++ b/level-1/l1-readloop-lds.lisp @@ -1,19 +1,18 @@ ;;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. ; l1-readloop-lds.lisp diff --git a/level-1/l1-readloop.lisp b/level-1/l1-readloop.lisp index 9b8a4bc2f..3695054bd 100644 --- a/level-1/l1-readloop.lisp +++ b/level-1/l1-readloop.lisp @@ -1,19 +1,18 @@ ;;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/level-1/l1-sockets.lisp b/level-1/l1-sockets.lisp index 45798a7a1..a2320824c 100644 --- a/level-1/l1-sockets.lisp +++ b/level-1/l1-sockets.lisp @@ -1,18 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2001-2009 Clozure Associates -;;; This file is part of Clozure CL. +;;; Copyright 2001-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/level-1/l1-sort.lisp b/level-1/l1-sort.lisp index c107eec1e..afa97627e 100644 --- a/level-1/l1-sort.lisp +++ b/level-1/l1-sort.lisp @@ -1,19 +1,18 @@ ;;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. ;;; Low-level list sorting routines. Used by CLOS and SORT. diff --git a/level-1/l1-streams.lisp b/level-1/l1-streams.lisp index ffbf8ad12..ffbba2249 100644 --- a/level-1/l1-streams.lisp +++ b/level-1/l1-streams.lisp @@ -1,19 +1,18 @@ ;;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; Portions copyright (C) 2001-2009 Clozure Associates -;;; This file is part of Clozure CL. +;;; Copyright 1994-2001 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/level-1/l1-symhash.lisp b/level-1/l1-symhash.lisp index 48ff1ea2f..245616c47 100644 --- a/level-1/l1-symhash.lisp +++ b/level-1/l1-symhash.lisp @@ -1,19 +1,18 @@ ;;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/level-1/l1-sysio.lisp b/level-1/l1-sysio.lisp index f1c9b3d99..c84a3c6f8 100644 --- a/level-1/l1-sysio.lisp +++ b/level-1/l1-sysio.lisp @@ -1,19 +1,18 @@ ;;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/level-1/l1-typesys.lisp b/level-1/l1-typesys.lisp index 0c7d19a24..fdaca18c4 100644 --- a/level-1/l1-typesys.lisp +++ b/level-1/l1-typesys.lisp @@ -1,19 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. ;; This is a hacked-up version of the CMU CL type system. diff --git a/level-1/l1-unicode.lisp b/level-1/l1-unicode.lisp index 5a2e8dc28..a8365fc0c 100644 --- a/level-1/l1-unicode.lisp +++ b/level-1/l1-unicode.lisp @@ -1,18 +1,18 @@ ;;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 2006-2009 Clozure Associates and contributors. -;;; This file is part of Clozure CL. +;;; Copyright 2006-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. ;;; Unicode translation stuff, mostly in support of I/O. diff --git a/level-1/l1-utils.lisp b/level-1/l1-utils.lisp index 0cff90b03..f4133d78a 100644 --- a/level-1/l1-utils.lisp +++ b/level-1/l1-utils.lisp @@ -1,19 +1,18 @@ ;;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. ; L1-utils.lisp diff --git a/level-1/level-1.lisp b/level-1/level-1.lisp index beafc234a..763b3f6b2 100644 --- a/level-1/level-1.lisp +++ b/level-1/level-1.lisp @@ -1,19 +1,18 @@ ;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. ; Level-1.lisp diff --git a/level-1/linux-files.lisp b/level-1/linux-files.lisp index c3ff62a4c..41788dea8 100644 --- a/level-1/linux-files.lisp +++ b/level-1/linux-files.lisp @@ -1,19 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/level-1/ppc-callback-support.lisp b/level-1/ppc-callback-support.lisp index 296a2ab8d..385184c1a 100644 --- a/level-1/ppc-callback-support.lisp +++ b/level-1/ppc-callback-support.lisp @@ -1,19 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. ;;; ppc-callback-support.lisp ;;; diff --git a/level-1/ppc-error-signal.lisp b/level-1/ppc-error-signal.lisp index 032b25ef2..adcfd46ee 100644 --- a/level-1/ppc-error-signal.lisp +++ b/level-1/ppc-error-signal.lisp @@ -1,19 +1,17 @@ -;;; PPC-specific code to handle trap and uuo callbacks. ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/level-1/ppc-threads-utils.lisp b/level-1/ppc-threads-utils.lisp index 5ee3d1f9a..f0b9759ea 100644 --- a/level-1/ppc-threads-utils.lisp +++ b/level-1/ppc-threads-utils.lisp @@ -1,19 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. ; low-level support for PPC threads and stack-backtrace printing diff --git a/level-1/ppc-trap-support.lisp b/level-1/ppc-trap-support.lisp index dffb13075..63b8b79c7 100644 --- a/level-1/ppc-trap-support.lisp +++ b/level-1/ppc-trap-support.lisp @@ -1,19 +1,17 @@ -;;; ppc-trap-support ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. ;;; Support for PPC traps, this includes the event-poll trap ;;; and all the trxxx traps for type checks & arg count checks. diff --git a/level-1/runtime.lisp b/level-1/runtime.lisp index c60fea011..81d18846f 100644 --- a/level-1/runtime.lisp +++ b/level-1/runtime.lisp @@ -1,19 +1,18 @@ ;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. ;;; Load .pfsl files, create a "runtime" (compiler- & development-tools-less) ;;; image. diff --git a/level-1/sysutils.lisp b/level-1/sysutils.lisp index d3a9a123b..3fff24d42 100644 --- a/level-1/sysutils.lisp +++ b/level-1/sysutils.lisp @@ -1,19 +1,18 @@ ;;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. ;; sysutils.lisp - things which have outgrown l1-utils diff --git a/level-1/version.lisp b/level-1/version.lisp index 1cb9109b6..dfac2e8c7 100644 --- a/level-1/version.lisp +++ b/level-1/version.lisp @@ -1,19 +1,18 @@ ;;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/level-1/x86-callback-support.lisp b/level-1/x86-callback-support.lisp index 7354fea3d..ee91f3780 100644 --- a/level-1/x86-callback-support.lisp +++ b/level-1/x86-callback-support.lisp @@ -1,17 +1,17 @@ ;;; -;;; Copyright (C) 2005-2009 Clozure Associates and contributors -;;; This file is part of Clozure CL. +;;; Copyright 2005-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/level-1/x86-error-signal.lisp b/level-1/x86-error-signal.lisp index 78ee52989..296d41154 100644 --- a/level-1/x86-error-signal.lisp +++ b/level-1/x86-error-signal.lisp @@ -1,18 +1,17 @@ -;;; x86-trap-support ;;; -;;; Copyright (C) 2005-2009 Clozure Associates and contributors -;;; This file is part of Clozure CL. +;;; Copyright 2005-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/level-1/x86-threads-utils.lisp b/level-1/x86-threads-utils.lisp index a30d2e06f..cef7d3250 100644 --- a/level-1/x86-threads-utils.lisp +++ b/level-1/x86-threads-utils.lisp @@ -1,18 +1,17 @@ -;;; x86-trap-support ;;; -;;; Copyright (C) 2005-2009 Clozure Associates and contributors -;;; This file is part of Clozure CL. +;;; Copyright 2005-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/level-1/x86-trap-support.lisp b/level-1/x86-trap-support.lisp index 2c1d2bead..505811b4e 100644 --- a/level-1/x86-trap-support.lisp +++ b/level-1/x86-trap-support.lisp @@ -1,18 +1,17 @@ -;;; x86-trap-support ;;; -;;; Copyright (C) 2005-2009 Clozure Associates and contributors -;;; This file is part of Clozure CL. +;;; Copyright 2005-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/lib/apropos.lisp b/lib/apropos.lisp index 43187e558..4bcc60695 100644 --- a/lib/apropos.lisp +++ b/lib/apropos.lisp @@ -1,19 +1,18 @@ ;;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. ;; Apropos.lisp diff --git a/lib/arglist.lisp b/lib/arglist.lisp index 91646c20f..2b12436b8 100644 --- a/lib/arglist.lisp +++ b/lib/arglist.lisp @@ -1,19 +1,18 @@ ;;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/lib/arm-backtrace.lisp b/lib/arm-backtrace.lisp index 73b584086..3878dc0ec 100644 --- a/lib/arm-backtrace.lisp +++ b/lib/arm-backtrace.lisp @@ -1,18 +1,18 @@ ;;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 2010 Clozure Associates -;;; This file is part of Clozure CL. +;;; Copyright 2010 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/lib/armenv.lisp b/lib/armenv.lisp index ce16ccd7e..5fd359268 100644 --- a/lib/armenv.lisp +++ b/lib/armenv.lisp @@ -1,18 +1,18 @@ ;;; -*- Mode:Lisp; Package:CCL; -*- ;;; -;;; Copyright (C) 2010 Clozure Associates -;;; This file is part of Clozure CL. +;;; Copyright 2010 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/lib/arrays-fry.lisp b/lib/arrays-fry.lisp index ca5376f39..08b55fc35 100644 --- a/lib/arrays-fry.lisp +++ b/lib/arrays-fry.lisp @@ -1,19 +1,18 @@ ; -*- Mode:Lisp; Package:CCL; -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/lib/backquote.lisp b/lib/backquote.lisp index b7e722db6..6d446fd97 100644 --- a/lib/backquote.lisp +++ b/lib/backquote.lisp @@ -1,5 +1,20 @@ ; -*- Mode:Lisp; Package:CCL; -*- ;;; +;;; Copyright 1994-2009 Clozure Associates +;;; +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at +;;; +;;; http://www.apache.org/licenses/LICENSE-2.0 +;;; +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. +; -*- Mode:Lisp; Package:CCL; -*- +;;; ;;; Copyright (C) 2009 Clozure Associates ;;; Copyright (C) 1994-2001 Digitool, Inc ;;; This file is part of Clozure CL. diff --git a/lib/backtrace-lds.lisp b/lib/backtrace-lds.lisp index 9836f26b1..b9868e5d3 100644 --- a/lib/backtrace-lds.lisp +++ b/lib/backtrace-lds.lisp @@ -1,19 +1,18 @@ ;;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. ;;; backtrace-lds.lisp ;;; low-level support for stack-backtrace dialog (Lisp Development System) diff --git a/lib/backtrace.lisp b/lib/backtrace.lisp index 0bc44960c..4ac224b4b 100644 --- a/lib/backtrace.lisp +++ b/lib/backtrace.lisp @@ -1,19 +1,18 @@ ;;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. ;;; backtrace.lisp ;;; low-level support for stack-backtrace printing diff --git a/lib/case-error.lisp b/lib/case-error.lisp index a5ac44e59..319936499 100644 --- a/lib/case-error.lisp +++ b/lib/case-error.lisp @@ -1,19 +1,18 @@ ; -*- Mode:Lisp; Package:CCL; -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/lib/ccl-export-syms.lisp b/lib/ccl-export-syms.lisp index cb529d130..aef485c3b 100644 --- a/lib/ccl-export-syms.lisp +++ b/lib/ccl-export-syms.lisp @@ -1,19 +1,18 @@ ;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/lib/chars.lisp b/lib/chars.lisp index 5102b00d3..f11e96e54 100644 --- a/lib/chars.lisp +++ b/lib/chars.lisp @@ -1,19 +1,18 @@ ; -*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. ;; chars.lisp (in-package "CCL") diff --git a/lib/compile-ccl.lisp b/lib/compile-ccl.lisp index b2649547c..1f89d7ab0 100644 --- a/lib/compile-ccl.lisp +++ b/lib/compile-ccl.lisp @@ -1,19 +1,18 @@ ;;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/lib/db-io.lisp b/lib/db-io.lisp index 46b9c53e4..f18c2ee78 100644 --- a/lib/db-io.lisp +++ b/lib/db-io.lisp @@ -1,19 +1,18 @@ ;;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 2001 Clozure Associates -;;; This file is part of Clozure CL. +;;; Copyright 2001-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. ;;; The "CDB" files used here are similar (but not identical) to those ;;; used in the Unix CDB package . The primary diff --git a/lib/defstruct-lds.lisp b/lib/defstruct-lds.lisp index e62352ce1..41cca3c35 100644 --- a/lib/defstruct-lds.lisp +++ b/lib/defstruct-lds.lisp @@ -1,19 +1,18 @@ ;;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. ; defstruct-lds.lisp diff --git a/lib/defstruct-macros.lisp b/lib/defstruct-macros.lisp index 885933abc..358178e59 100644 --- a/lib/defstruct-macros.lisp +++ b/lib/defstruct-macros.lisp @@ -1,19 +1,18 @@ ;;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. ; This file is needed to compile DEFSTRUCT and anything accessing defstruct ; data structures. diff --git a/lib/defstruct.lisp b/lib/defstruct.lisp index 6f58c6358..3c48cfcff 100644 --- a/lib/defstruct.lisp +++ b/lib/defstruct.lisp @@ -1,19 +1,18 @@ ;;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/lib/describe.lisp b/lib/describe.lisp index cb274100b..8d8511bb9 100644 --- a/lib/describe.lisp +++ b/lib/describe.lisp @@ -1,19 +1,18 @@ ;;; -*- Mode:Lisp; Package:INSPECTOR -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (defpackage "INSPECTOR" (:use "CL" "CCL") diff --git a/lib/distrib-inits.lisp b/lib/distrib-inits.lisp index 99ae35eb9..9e81e6120 100644 --- a/lib/distrib-inits.lisp +++ b/lib/distrib-inits.lisp @@ -1,19 +1,18 @@ ; -*- Mode:Lisp; Package:CCL; -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. ;; distrib-inits.lisp diff --git a/lib/dumplisp.lisp b/lib/dumplisp.lisp index 21ea14476..bb425eda5 100644 --- a/lib/dumplisp.lisp +++ b/lib/dumplisp.lisp @@ -1,19 +1,18 @@ ;;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. ; Dumplisp.lisp diff --git a/lib/edit-callers.lisp b/lib/edit-callers.lisp index c16e4da7b..857179e0b 100644 --- a/lib/edit-callers.lisp +++ b/lib/edit-callers.lisp @@ -1,19 +1,18 @@ ; -*- Mode:Lisp; Package:CCL; -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. ; edit-callers.lisp diff --git a/lib/encapsulate.lisp b/lib/encapsulate.lisp index afd27797f..ddec913f2 100644 --- a/lib/encapsulate.lisp +++ b/lib/encapsulate.lisp @@ -1,19 +1,18 @@ ;;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/lib/ffi-androidarm.lisp b/lib/ffi-androidarm.lisp index e9aa28f8f..12d551cc3 100644 --- a/lib/ffi-androidarm.lisp +++ b/lib/ffi-androidarm.lisp @@ -1,18 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2010 Clozure Associates and contributors -;;; This file is part of Clozure CL. +;;; Copyright 2010 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/lib/ffi-darwinarm.lisp b/lib/ffi-darwinarm.lisp index a73a5bf47..a77fefe94 100644 --- a/lib/ffi-darwinarm.lisp +++ b/lib/ffi-darwinarm.lisp @@ -1,18 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2010 Clozure Associates and contributors -;;; This file is part of Clozure CL. +;;; Copyright 2010 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/lib/ffi-darwinppc32.lisp b/lib/ffi-darwinppc32.lisp index 7b39e3a1e..03cac14a2 100644 --- a/lib/ffi-darwinppc32.lisp +++ b/lib/ffi-darwinppc32.lisp @@ -1,18 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2007-2009 Clozure Associates and contributors -;;; This file is part of Clozure CL. +;;; Copyright 2007-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/lib/ffi-darwinppc64.lisp b/lib/ffi-darwinppc64.lisp index 38b3fc282..ca19d33e9 100644 --- a/lib/ffi-darwinppc64.lisp +++ b/lib/ffi-darwinppc64.lisp @@ -1,18 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2007-2009 Clozure Associates and contributors -;;; This file is part of Clozure CL. +;;; Copyright 2007-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/lib/ffi-darwinx8632.lisp b/lib/ffi-darwinx8632.lisp index 69b9580d6..02fc00975 100644 --- a/lib/ffi-darwinx8632.lisp +++ b/lib/ffi-darwinx8632.lisp @@ -1,16 +1,17 @@ +;;; ;;; Copyright 2009 Clozure Associates -;;; This file is part of Clozure CL. ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU -;;; Public License , known as the LLGPL and distributed with Clozure -;;; CL as the file "LICENSE". The LLGPL consists of a preamble and -;;; the LGPL, which is distributed with Clozure CL as the file "LGPL". -;;; Where these conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/lib/ffi-darwinx8664.lisp b/lib/ffi-darwinx8664.lisp index e4f585790..677173406 100644 --- a/lib/ffi-darwinx8664.lisp +++ b/lib/ffi-darwinx8664.lisp @@ -1,18 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2007-2009 Clozure Associates and contributors -;;; This file is part of Clozure CL. +;;; Copyright 2007-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/lib/ffi-freebsdx8632.lisp b/lib/ffi-freebsdx8632.lisp index f8d2ed9a0..8552436fe 100644 --- a/lib/ffi-freebsdx8632.lisp +++ b/lib/ffi-freebsdx8632.lisp @@ -1,16 +1,17 @@ +;;; ;;; Copyright 2009 Clozure Associates -;;; This file is part of Clozure CL. ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU -;;; Public License , known as the LLGPL and distributed with Clozure -;;; CL as the file "LICENSE". The LLGPL consists of a preamble and -;;; the LGPL, which is distributed with Clozure CL as the file "LGPL". -;;; Where these conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/lib/ffi-freebsdx8664.lisp b/lib/ffi-freebsdx8664.lisp index 212f74082..226700f1c 100644 --- a/lib/ffi-freebsdx8664.lisp +++ b/lib/ffi-freebsdx8664.lisp @@ -1,18 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2007-2009 Clozure Associates and contributors -;;; This file is part of Clozure CL. +;;; Copyright 2007-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/lib/ffi-linuxarm.lisp b/lib/ffi-linuxarm.lisp index 70976d36a..681368d08 100644 --- a/lib/ffi-linuxarm.lisp +++ b/lib/ffi-linuxarm.lisp @@ -1,18 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2010 Clozure Associates and contributors -;;; This file is part of Clozure CL. +;;; Copyright 2010 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/lib/ffi-linuxppc32.lisp b/lib/ffi-linuxppc32.lisp index 9e9a3e90e..795dd9aff 100644 --- a/lib/ffi-linuxppc32.lisp +++ b/lib/ffi-linuxppc32.lisp @@ -1,18 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2007-2009 Clozure Associates and contributors -;;; This file is part of Clozure CL. +;;; Copyright 2007-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/lib/ffi-linuxppc64.lisp b/lib/ffi-linuxppc64.lisp index 8cbfdbf13..2536fbdc1 100644 --- a/lib/ffi-linuxppc64.lisp +++ b/lib/ffi-linuxppc64.lisp @@ -1,18 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2007-2009 Clozure Associates and contributors -;;; This file is part of Clozure CL. +;;; Copyright 2007-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/lib/ffi-linuxx8632.lisp b/lib/ffi-linuxx8632.lisp index 5d7ce9eb3..aeea64720 100644 --- a/lib/ffi-linuxx8632.lisp +++ b/lib/ffi-linuxx8632.lisp @@ -1,16 +1,17 @@ +;;; ;;; Copyright 2009 Clozure Associates -;;; This file is part of Clozure CL. ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU -;;; Public License , known as the LLGPL and distributed with Clozure -;;; CL as the file "LICENSE". The LLGPL consists of a preamble and -;;; the LGPL, which is distributed with Clozure CL as the file "LGPL". -;;; Where these conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/lib/ffi-linuxx8664.lisp b/lib/ffi-linuxx8664.lisp index b5bad8822..a670bbd51 100644 --- a/lib/ffi-linuxx8664.lisp +++ b/lib/ffi-linuxx8664.lisp @@ -1,18 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2007-2009 Clozure Associates and contributors -;;; This file is part of Clozure CL. +;;; Copyright 2007-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/lib/ffi-solarisx8632.lisp b/lib/ffi-solarisx8632.lisp index c2e0ac0da..63f0b3a8a 100644 --- a/lib/ffi-solarisx8632.lisp +++ b/lib/ffi-solarisx8632.lisp @@ -1,16 +1,17 @@ +;;; ;;; Copyright 2009 Clozure Associates -;;; This file is part of Clozure CL. ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU -;;; Public License , known as the LLGPL and distributed with Clozure -;;; CL as the file "LICENSE". The LLGPL consists of a preamble and -;;; the LGPL, which is distributed with Clozure CL as the file "LGPL". -;;; Where these conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/lib/ffi-solarisx8664.lisp b/lib/ffi-solarisx8664.lisp index 7064b09a5..436a8877a 100644 --- a/lib/ffi-solarisx8664.lisp +++ b/lib/ffi-solarisx8664.lisp @@ -1,18 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2008-2009 Clozure Associates and contributors -;;; This file is part of Clozure CL. +;;; Copyright 2008-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/lib/ffi-win32.lisp b/lib/ffi-win32.lisp index 20c3f0131..78daff576 100644 --- a/lib/ffi-win32.lisp +++ b/lib/ffi-win32.lisp @@ -1,16 +1,17 @@ +;;; ;;; Copyright 2009 Clozure Associates -;;; This file is part of Clozure CL. ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU -;;; Public License , known as the LLGPL and distributed with Clozure -;;; CL as the file "LICENSE". The LLGPL consists of a preamble and -;;; the LGPL, which is distributed with Clozure CL as the file "LGPL". -;;; Where these conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/lib/ffi-win64.lisp b/lib/ffi-win64.lisp index 6159efbf8..578f16fce 100644 --- a/lib/ffi-win64.lisp +++ b/lib/ffi-win64.lisp @@ -1,18 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2007-2009 Clozure Associates and contributors -;;; This file is part of Clozure CL. +;;; Copyright 2007-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/lib/foreign-types.lisp b/lib/foreign-types.lisp index 0f160f1bc..fafd09a3d 100644 --- a/lib/foreign-types.lisp +++ b/lib/foreign-types.lisp @@ -1,18 +1,18 @@ ;;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 2001-2009 Clozure Associates -;;; This file is part of Clozure CL. +;;; Copyright 2001-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. ;;; This is a slightly-watered-down version of CMUCL's ALIEN-TYPE system. diff --git a/lib/format.lisp b/lib/format.lisp index b509d173d..b4f8c0995 100644 --- a/lib/format.lisp +++ b/lib/format.lisp @@ -1,19 +1,18 @@ ;;; -*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. ;;; Functions to implement FORMAT. ;;; diff --git a/lib/hash.lisp b/lib/hash.lisp index f87007875..b5a20c7b2 100644 --- a/lib/hash.lisp +++ b/lib/hash.lisp @@ -1,19 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. ;; This is just the stuff (make-load-form, print-object) that can't be fasloaded earlier. diff --git a/lib/late-clos.lisp b/lib/late-clos.lisp index 831d4484c..5d5660eee 100644 --- a/lib/late-clos.lisp +++ b/lib/late-clos.lisp @@ -1,18 +1,18 @@ ;;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 2007-2009 Clozure Associates and contributors. -;;; This file is part of Clozure CL. +;;; Copyright 2007-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. ;;; Maybe compile specialized discriminating code (dcode) for generic ;;; functions, if it seems likely that that might perform better than diff --git a/lib/level-2.lisp b/lib/level-2.lisp index d0b4a0454..7991d3ecd 100644 --- a/lib/level-2.lisp +++ b/lib/level-2.lisp @@ -1,19 +1,18 @@ ;;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. ;; Level-2.lisp diff --git a/lib/lists.lisp b/lib/lists.lisp index a405e9632..f108b1bd2 100644 --- a/lib/lists.lisp +++ b/lib/lists.lisp @@ -1,19 +1,18 @@ ;;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/lib/macros.lisp b/lib/macros.lisp index 2e9ed3139..8199fcdd9 100644 --- a/lib/macros.lisp +++ b/lib/macros.lisp @@ -1,19 +1,18 @@ ;;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. ;;; Macros (and functions/constants used at macroexpand-time) ONLY. diff --git a/lib/mcl-compat.lisp b/lib/mcl-compat.lisp index 54a8db79c..01b045747 100644 --- a/lib/mcl-compat.lisp +++ b/lib/mcl-compat.lisp @@ -1,19 +1,18 @@ ;;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/lib/method-combination.lisp b/lib/method-combination.lisp index b0b76786f..ed8a9df62 100644 --- a/lib/method-combination.lisp +++ b/lib/method-combination.lisp @@ -1,19 +1,18 @@ ; -*- Mode:Lisp; Package:CCL; -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1990-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. ;;;;;;;;;;;;;;; diff --git a/lib/misc.lisp b/lib/misc.lisp index 1f49111d1..64e3db63f 100644 --- a/lib/misc.lisp +++ b/lib/misc.lisp @@ -1,19 +1,18 @@ ;;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/lib/nfcomp.lisp b/lib/nfcomp.lisp index c5d45c22e..c02fac5a4 100644 --- a/lib/nfcomp.lisp +++ b/lib/nfcomp.lisp @@ -1,19 +1,18 @@ ;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/lib/number-case-macro.lisp b/lib/number-case-macro.lisp index 5eefdbe88..413a48249 100644 --- a/lib/number-case-macro.lisp +++ b/lib/number-case-macro.lisp @@ -1,19 +1,18 @@ ;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/lib/number-macros.lisp b/lib/number-macros.lisp index 72bf6d34d..d89644432 100644 --- a/lib/number-macros.lisp +++ b/lib/number-macros.lisp @@ -1,19 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/lib/numbers.lisp b/lib/numbers.lisp index 756dad4c8..c4357b7a7 100644 --- a/lib/numbers.lisp +++ b/lib/numbers.lisp @@ -1,19 +1,18 @@ ;;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. ;; Lib;numbers.lisp - Lisp arithmetic code. diff --git a/lib/pathnames.lisp b/lib/pathnames.lisp index 23cc162e8..33ba5c69f 100644 --- a/lib/pathnames.lisp +++ b/lib/pathnames.lisp @@ -1,19 +1,18 @@ ;;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; Portions copyright (C) 2001-2009 Clozure Associates -;;; This file is part of Clozure CL. +;;; Copyright 1994-2001 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. ;;pathnames.lisp Pathnames for Coral Common LISP (in-package "CCL") diff --git a/lib/ppc-backtrace.lisp b/lib/ppc-backtrace.lisp index b1b478eb1..ccefd3bcb 100644 --- a/lib/ppc-backtrace.lisp +++ b/lib/ppc-backtrace.lisp @@ -1,19 +1,18 @@ ;;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/lib/ppcenv.lisp b/lib/ppcenv.lisp index fc66534b9..a2caca0b7 100644 --- a/lib/ppcenv.lisp +++ b/lib/ppcenv.lisp @@ -1,19 +1,18 @@ ; -*- Mode:Lisp; Package:CCL; -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/lib/pprint.lisp b/lib/pprint.lisp index 62e32eb44..109babb32 100644 --- a/lib/pprint.lisp +++ b/lib/pprint.lisp @@ -1,4 +1,19 @@ ;-*-syntax:COMMON-LISP;Package:"CCL"-*- +;;; +;;; Copyright 1989-1990 Clozure Associates +;;; +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at +;;; +;;; http://www.apache.org/licenses/LICENSE-2.0 +;;; +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. +;-*-syntax:COMMON-LISP;Package:"CCL"-*- ;; Change History (most recent first): ;; 2 4/8/97 akh pretty-loop dont loop diff --git a/lib/prepare-mcl-environment.lisp b/lib/prepare-mcl-environment.lisp index 760d5b0fe..77798a081 100644 --- a/lib/prepare-mcl-environment.lisp +++ b/lib/prepare-mcl-environment.lisp @@ -1,19 +1,18 @@ ;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. ;; prepare-mcl-environment.lisp ;; Load this into a PPCCL to make it into an MCL-PPC for shipping diff --git a/lib/print-db.lisp b/lib/print-db.lisp index 5d7781b31..0c2300970 100644 --- a/lib/print-db.lisp +++ b/lib/print-db.lisp @@ -1,19 +1,18 @@ ; -*- Mode:Lisp; Package:CCL; -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/lib/read.lisp b/lib/read.lisp index 525b1f07c..fb22198b5 100644 --- a/lib/read.lisp +++ b/lib/read.lisp @@ -1,19 +1,18 @@ ;;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/lib/sequences.lisp b/lib/sequences.lisp index d5e9c5a8c..a22c8553d 100644 --- a/lib/sequences.lisp +++ b/lib/sequences.lisp @@ -1,19 +1,18 @@ ;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/lib/setf-runtime.lisp b/lib/setf-runtime.lisp index 65b38e861..2c53d359f 100644 --- a/lib/setf-runtime.lisp +++ b/lib/setf-runtime.lisp @@ -1,19 +1,18 @@ ; -*- Mode: Lisp; Package: CCL; -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. ; ; setf-runtime.lisp - runtime support for setf expressions diff --git a/lib/setf.lisp b/lib/setf.lisp index 92a1e03d7..9a8f0e3d6 100644 --- a/lib/setf.lisp +++ b/lib/setf.lisp @@ -1,19 +1,18 @@ ;;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/lib/sort.lisp b/lib/sort.lisp index be92a5a28..bd1600553 100644 --- a/lib/sort.lisp +++ b/lib/sort.lisp @@ -1,19 +1,18 @@ ;;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. ;;; Sort diff --git a/lib/source-files.lisp b/lib/source-files.lisp index 08fdddee3..b168f1a27 100644 --- a/lib/source-files.lisp +++ b/lib/source-files.lisp @@ -1,19 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/lib/streams.lisp b/lib/streams.lisp index 90de9adcb..ed567d674 100644 --- a/lib/streams.lisp +++ b/lib/streams.lisp @@ -1,19 +1,18 @@ ;;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. ; streams.lisp ;;;General io-functions diff --git a/lib/swink.lisp b/lib/swink.lisp index 94b72a245..308757488 100644 --- a/lib/swink.lisp +++ b/lib/swink.lisp @@ -1,16 +1,17 @@ -;;; Copyright (C) 2011 Clozure Associates -;;; This file is part of Clozure CL. ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Copyright 2011 Clozure Associates ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; http://www.apache.org/licenses/LICENSE-2.0 +;;; +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. ;;; ;;; Implement a protocol (originally based on swank) for communication between ;;; a lisp and an external debugger. This implements the server side, i.e. the lisp diff --git a/lib/systems.lisp b/lib/systems.lisp index 06ffe72ca..87bd12faa 100644 --- a/lib/systems.lisp +++ b/lib/systems.lisp @@ -1,19 +1,18 @@ ;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/lib/time.lisp b/lib/time.lisp index f68010019..4afd24975 100644 --- a/lib/time.lisp +++ b/lib/time.lisp @@ -1,19 +1,18 @@ ;;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/lib/x86-backtrace.lisp b/lib/x86-backtrace.lisp index d83638ba1..dc17214ee 100644 --- a/lib/x86-backtrace.lisp +++ b/lib/x86-backtrace.lisp @@ -1,18 +1,18 @@ ;;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 2006-2009 Clozure Associates and contributors -;;; This file is part of Clozure CL. +;;; Copyright 2006-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/lib/x86-watch.lisp b/lib/x86-watch.lisp index b7353316a..f8b90fc76 100644 --- a/lib/x86-watch.lisp +++ b/lib/x86-watch.lisp @@ -1,16 +1,17 @@ +;;; ;;; Copyright 2009 Clozure Associates -;;; This file is part of Clozure CL. ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU -;;; Public License , known as the LLGPL and distributed with Clozure -;;; CL as the file "LICENSE". The LLGPL consists of a preamble and -;;; the LGPL, which is distributed with Clozure CL as the file "LGPL". -;;; Where these conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/lib/x8632env.lisp b/lib/x8632env.lisp index fd9a71f8e..712e27b14 100644 --- a/lib/x8632env.lisp +++ b/lib/x8632env.lisp @@ -1,18 +1,18 @@ ; -*- Mode:Lisp; Package:CCL; -*- ;;; -;;; Copyright (C) 2005-2009 Clozure Associates -;;; This file is part of Clozure CL. +;;; Copyright 2005-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/lib/x8664env.lisp b/lib/x8664env.lisp index b3d34faca..a0bf4073c 100644 --- a/lib/x8664env.lisp +++ b/lib/x8664env.lisp @@ -1,18 +1,18 @@ ; -*- Mode:Lisp; Package:CCL; -*- ;;; -;;; Copyright (C) 2005-2009 Clozure Associates -;;; This file is part of Clozure CL. +;;; Copyright 2005-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/lib/xref.lisp b/lib/xref.lisp index d61e0eb35..3b79227a4 100644 --- a/lib/xref.lisp +++ b/lib/xref.lisp @@ -1,18 +1,18 @@ ;;; -*- Mode: Lisp; Package: CCL; indent-tabs-mode: nil -*- ;;; -;;; Copyright (C) 2003 Oliver Markovic -;;; This file is part of Clozure CL. +;;; Copyright 2003 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/library/chud-metering.lisp b/library/chud-metering.lisp index 94a3c6b7e..b39eb4baa 100644 --- a/library/chud-metering.lisp +++ b/library/chud-metering.lisp @@ -1,18 +1,18 @@ ;;;-*-Mode: LISP; Package: (CHUD (:USE CL CCL)) -*- ;;; -;;; Copyright (C) 2005,2008,2009 Clozure Associates and contributors -;;; This file is part of Clozure CL. +;;; Copyright 2005-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. ;;; Some of this is based on work done by Dan Knapp and Hamilton Link ;;; (and possibly others.) diff --git a/library/cn-encode.lisp b/library/cn-encode.lisp index 88fe36869..55daa859e 100644 --- a/library/cn-encode.lisp +++ b/library/cn-encode.lisp @@ -1,18 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2007-2009 Clozure Associates and contributors -;;; This file is part of Clozure CL. +;;; Copyright 2007-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/library/core-files.lisp b/library/core-files.lisp index ef70aa4d4..b0f8fd20c 100644 --- a/library/core-files.lisp +++ b/library/core-files.lisp @@ -1,17 +1,17 @@ ;;; -;;; Copyright (C) 2009-2010 Clozure Associates and contributors -;;; This file is part of Clozure CL. +;;; Copyright 2009-2010 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. ;; Functions to examine core files. diff --git a/library/cover.lisp b/library/cover.lisp index 37f097824..953a14c0d 100644 --- a/library/cover.lisp +++ b/library/cover.lisp @@ -1,18 +1,18 @@ ;;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 2008-2009 Clozure Associates -;;; This file is part of Clozure CL. +;;; Copyright 2008-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. ;;; Code coverage reporting facility, originally inspired by SBCL's sb-cover API. diff --git a/library/dominance.lisp b/library/dominance.lisp index 3ec709797..0a003e418 100644 --- a/library/dominance.lisp +++ b/library/dominance.lisp @@ -1,18 +1,18 @@ ;;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 2010 Clozure Associates -;;; This file is part of Clozure CL. +;;; Copyright 2010 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/library/elf.lisp b/library/elf.lisp index c630f347e..4d36e82b2 100644 --- a/library/elf.lisp +++ b/library/elf.lisp @@ -1,16 +1,17 @@ +;;; ;;; Copyright 2009 Clozure Associates -;;; This file is part of Clozure CL. ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU -;;; Public License , known as the LLGPL and distributed with Clozure -;;; CL as the file "LICENSE". The LLGPL consists of a preamble and -;;; the LGPL, which is distributed with Clozure CL as the file "LGPL". -;;; Where these conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/library/intel-io.lisp b/library/intel-io.lisp index 61b34750d..f67182e87 100644 --- a/library/intel-io.lisp +++ b/library/intel-io.lisp @@ -1,18 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2010 Clozure Associates and contributors. -;;; This file is part of Clozure CL. +;;; Copyright 2010 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/library/jp-encode.lisp b/library/jp-encode.lisp index 10cc00e78..4e4109e5d 100644 --- a/library/jp-encode.lisp +++ b/library/jp-encode.lisp @@ -1,18 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2007-2009 Clozure Associates and contributors -;;; This file is part of Clozure CL. +;;; Copyright 2007-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/library/leaks.lisp b/library/leaks.lisp index a4e025b37..800413437 100644 --- a/library/leaks.lisp +++ b/library/leaks.lisp @@ -1,18 +1,18 @@ ;;;-*-Mode: LISP; Package: ccl -*- ;;; -;;; Copyright (C) 2008-2009 Clozure Associates and contributors -;;; This file is part of Clozure CL. +;;; Copyright 2008-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. ; leaks.lisp ; A few functions to help in finding memory leaks diff --git a/library/lisp-package.lisp b/library/lisp-package.lisp index f5f292ca3..b15e01b3e 100644 --- a/library/lisp-package.lisp +++ b/library/lisp-package.lisp @@ -1,19 +1,18 @@ ;;;-*-Mode: LISP; Package: ccl -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. ; lisp-package.lisp ; Define a lisp package that attempts to behave like CLTL-1. diff --git a/library/lispequ.lisp b/library/lispequ.lisp index 57205bfa7..42cc593ac 100644 --- a/library/lispequ.lisp +++ b/library/lispequ.lisp @@ -1,19 +1,18 @@ ;;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. ;; LispEqu.lisp diff --git a/library/loop.lisp b/library/loop.lisp index acfb87e5c..f31821cac 100644 --- a/library/loop.lisp +++ b/library/loop.lisp @@ -1,4 +1,19 @@ ;;; -*- Mode: LISP; Syntax: Common-lisp; Package: (ANSI-LOOP "COMMON-LISP"); Base: 10; Lowercase:T -*- +;;; +;;; Copyright 1986-1992 Clozure Associates +;;; +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at +;;; +;;; http://www.apache.org/licenses/LICENSE-2.0 +;;; +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. +;;; -*- Mode: LISP; Syntax: Common-lisp; Package: (ANSI-LOOP "COMMON-LISP"); Base: 10; Lowercase:T -*- ;;;> ;;;> Portions of LOOP are Copyright (c) 1986 by the Massachusetts Institute of Technology. ;;;> All Rights Reserved. diff --git a/library/mac-file-io.lisp b/library/mac-file-io.lisp index 71f291834..e67c17c62 100644 --- a/library/mac-file-io.lisp +++ b/library/mac-file-io.lisp @@ -1,5 +1,20 @@ ;;-*- Mode: Lisp; Package: CCL -*- ;;; +;;; Copyright 1994-2001 Clozure Associates +;;; +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at +;;; +;;; http://www.apache.org/licenses/LICENSE-2.0 +;;; +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. +;;-*- Mode: Lisp; Package: CCL -*- +;;; ;;; Copyright (C) 1994-2001 Digitool, Inc ;;; This file is part of Opensourced MCL. ;;; diff --git a/library/mach-o-symbols.lisp b/library/mach-o-symbols.lisp index 08fbd0acf..167999677 100644 --- a/library/mach-o-symbols.lisp +++ b/library/mach-o-symbols.lisp @@ -1,16 +1,17 @@ +;;; ;;; Copyright 2009 Clozure Associates -;;; This file is part of Clozure CL. ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU -;;; Public License , known as the LLGPL and distributed with Clozure -;;; CL as the file "LICENSE". The LLGPL consists of a preamble and -;;; the LGPL, which is distributed with Clozure CL as the file "LGPL". -;;; Where these conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/library/mach-o.lisp b/library/mach-o.lisp index 74052f44b..8c7e0372f 100644 --- a/library/mach-o.lisp +++ b/library/mach-o.lisp @@ -1,16 +1,17 @@ +;;; ;;; Copyright 2009 Clozure Associates -;;; This file is part of Clozure CL. ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU -;;; Public License , known as the LLGPL and distributed with Clozure -;;; CL as the file "LICENSE". The LLGPL consists of a preamble and -;;; the LGPL, which is distributed with Clozure CL as the file "LGPL". -;;; Where these conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (defstruct mach-o-file header diff --git a/library/macptr-termination.lisp b/library/macptr-termination.lisp index fc2ea73ef..aa981d980 100644 --- a/library/macptr-termination.lisp +++ b/library/macptr-termination.lisp @@ -1,19 +1,18 @@ ; -*- Mode: Lisp; Package: CCL; -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. ;;; macptr-termination.lisp ;;; @@ -61,7 +60,7 @@ be called after each ephemeral GC as well, call this with a true value. POST-EGC-HOOK-ENABLED-P Returns true if the post gc hook will be called after EGC as well as -after full GC.¬ +after full GC.� ADD-PRE-GC-HOOK hook DELETE-PRE-GC-HOOK hook diff --git a/library/openmcl-gtk-support.lisp b/library/openmcl-gtk-support.lisp index 69fca8b24..19e13dc2d 100644 --- a/library/openmcl-gtk-support.lisp +++ b/library/openmcl-gtk-support.lisp @@ -1,24 +1,18 @@ ;;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 2001-2009 Clozure Associates -;;; This file is part of Clozure CL. +;;; Copyright 2001-2009 Clozure Associates ;;; -;;; Opensourced MCL 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 2.1 of the License, or (at your option) any later version. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Opensourced MCL 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. +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/library/parse-ffi.lisp b/library/parse-ffi.lisp index 4395f6bd3..34a791e4f 100644 --- a/library/parse-ffi.lisp +++ b/library/parse-ffi.lisp @@ -1,18 +1,18 @@ ;;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 2001-2009 Clozure Associates -;;; This file is part of Clozure CL. +;;; Copyright 2001-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/library/pascal-strings.lisp b/library/pascal-strings.lisp index 3da264093..66be00365 100644 --- a/library/pascal-strings.lisp +++ b/library/pascal-strings.lisp @@ -1,18 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2003-2009 Clozure Associates -;;; This file is part of Clozure CL. +;;; Copyright 2003-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. ;;; Utilities for dealing with Pascal strings diff --git a/library/pty.lisp b/library/pty.lisp index 946d2758c..b2f118386 100644 --- a/library/pty.lisp +++ b/library/pty.lisp @@ -1,18 +1,18 @@ ;;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 2002-2009 Clozure Associates. -;;; This file is part of Clozure CL. +;;; Copyright 2002-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. ;;; (very) preliminary support for dealing with TTYs (and PTYs). diff --git a/library/remote-lisp.lisp b/library/remote-lisp.lisp index 461bb2cb7..4dbd7a26e 100644 --- a/library/remote-lisp.lisp +++ b/library/remote-lisp.lisp @@ -1,18 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2011 Clozure Associates -;;; This file is part of Clozure CL. +;;; Copyright 2011 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. ;;; (in-package :ccl) diff --git a/library/sequence-utils.lisp b/library/sequence-utils.lisp index 89432c545..63fa5c05f 100644 --- a/library/sequence-utils.lisp +++ b/library/sequence-utils.lisp @@ -1,4 +1,19 @@ ;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10; Package: cl-user -*- +;;; +;;; Copyright 2016 Clozure Associates +;;; +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at +;;; +;;; http://www.apache.org/licenses/LICENSE-2.0 +;;; +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. +;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10; Package: cl-user -*- ;;;; *********************************************************************** ;;;; FILE IDENTIFICATION ;;;; @@ -89,4 +104,4 @@ (defun find-matching-subsequence (subseq seq &key (test #'eql) (start 0) end from-end) (if from-end (%find-matching-subsequence-backward subseq seq :test test :start start :end end) - (%find-matching-subsequence-forward subseq seq :test test :start start :end end))) \ No newline at end of file + (%find-matching-subsequence-forward subseq seq :test test :start start :end end))) diff --git a/library/serial-streams.lisp b/library/serial-streams.lisp index 7c1883aa5..c86b11ab9 100644 --- a/library/serial-streams.lisp +++ b/library/serial-streams.lisp @@ -1,19 +1,18 @@ ;;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 2010 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2010 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/library/sharp-comma.lisp b/library/sharp-comma.lisp index d170db740..27e4c70e3 100644 --- a/library/sharp-comma.lisp +++ b/library/sharp-comma.lisp @@ -1,18 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 1994-2001 Digitool, Inc. -;;; This file is part of Clozure CL. +;;; Copyright 1994-2001 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") @@ -29,4 +29,4 @@ (read-eval stream subchar numarg) (progn (require-no-numarg subchar numarg) - (list sharp-comma-token (read stream t nil t))))))) \ No newline at end of file + (list sharp-comma-token (read stream t nil t))))))) diff --git a/library/sockets.lisp b/library/sockets.lisp index 3ca0a9bb9..66eabb01f 100644 --- a/library/sockets.lisp +++ b/library/sockets.lisp @@ -1,18 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2001-2014 Clozure Associates -;;; This file is part of Clozure CL. +;;; Copyright 2001-2014 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/library/splay-tree.lisp b/library/splay-tree.lisp index 326858a60..94dbf5da9 100644 --- a/library/splay-tree.lisp +++ b/library/splay-tree.lisp @@ -1,18 +1,18 @@ ;;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 2003-2009 Clozure Associates -;;; This file is part of Clozure CL. +;;; Copyright 2003-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/library/swank-loader.lisp b/library/swank-loader.lisp index 83c6967ab..6569740f5 100644 --- a/library/swank-loader.lisp +++ b/library/swank-loader.lisp @@ -1,18 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2011 Clozure Associates -;;; This file is part of Clozure CL. +;;; Copyright 2011 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. ;;; (in-package :ccl) diff --git a/lisp-kernel/albt.c b/lisp-kernel/albt.c index 4252b1d04..75048b969 100644 --- a/lisp-kernel/albt.c +++ b/lisp-kernel/albt.c @@ -1,19 +1,18 @@ /* - Copyright (C) 2009 Clozure Associates - Copyright (C) 1994-2001 Digitool, Inc - This file is part of Clozure CL. - - Clozure CL is licensed under the terms of the Lisp Lesser GNU Public - License , known as the LLGPL and distributed with Clozure CL as the - file "LICENSE". The LLGPL consists of a preamble and the LGPL, - which is distributed with Clozure CL as the file "LGPL". Where these - conflict, the preamble takes precedence. - - Clozure CL is referenced in the preamble as the "LIBRARY." - - The LLGPL is also available online at - http://opensource.franz.com/preamble.html -*/ + * Copyright 1994-2009 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ #include "lispdcmd.h" #ifdef LINUX diff --git a/lisp-kernel/androidarm/Makefile b/lisp-kernel/androidarm/Makefile index cd9db8a4f..d2a650c03 100644 --- a/lisp-kernel/androidarm/Makefile +++ b/lisp-kernel/androidarm/Makefile @@ -1,17 +1,17 @@ # -# Copyright (C) 2010 Clozure Associates -# This file is part of Clozure CL. +# Copyright 2010 Clozure Associates # -# Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -# License , known as the LLGPL and distributed with Clozure CL as the -# file "LICENSE". The LLGPL consists of a preamble and the LGPL, -# which is distributed with Clozure CL as the file "LGPL". Where these -# conflict, the preamble takes precedence. +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at # -# Clozure CL is referenced in the preamble as the "LIBRARY." +# http://www.apache.org/licenses/LICENSE-2.0 # -# The LLGPL is also available online at -# http://opensource.franz.com/preamble.html +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. LIBBASE = 0x04001000 NDK = /usr/local/android-ndk-r10c diff --git a/lisp-kernel/area.h b/lisp-kernel/area.h index d84d417aa..1ae46aa45 100644 --- a/lisp-kernel/area.h +++ b/lisp-kernel/area.h @@ -1,19 +1,18 @@ /* - Copyright (C) 2009 Clozure Associates - Copyright (C) 1994-2001 Digitool, Inc - This file is part of Clozure CL. - - Clozure CL is licensed under the terms of the Lisp Lesser GNU Public - License , known as the LLGPL and distributed with Clozure CL as the - file "LICENSE". The LLGPL consists of a preamble and the LGPL, - which is distributed with Clozure CL as the file "LGPL". Where these - conflict, the preamble takes precedence. - - Clozure CL is referenced in the preamble as the "LIBRARY." - - The LLGPL is also available online at - http://opensource.franz.com/preamble.html -*/ + * Copyright 1994-2009 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ #ifndef __AREA_H__ #define __AREA_H__ 1 diff --git a/lisp-kernel/arm-asmutils.s b/lisp-kernel/arm-asmutils.s index b19d486a1..2d6bba95b 100644 --- a/lisp-kernel/arm-asmutils.s +++ b/lisp-kernel/arm-asmutils.s @@ -1,18 +1,18 @@ -/* Copyright (C) 2009 Clozure Associates */ -/* Copyright (C) 1994-2001 Digitool, Inc */ -/* This file is part of Clozure CL. */ - -/* Clozure CL is licensed under the terms of the Lisp Lesser GNU Public */ -/* License , known as the LLGPL and distributed with Clozure CL as the */ -/* file "LICENSE". The LLGPL consists of a preamble and the LGPL, */ -/* which is distributed with Clozure CL as the file "LGPL". Where these */ -/* conflict, the preamble takes precedence. */ - -/* Clozure CL is referenced in the preamble as the "LIBRARY." */ - -/* The LLGPL is also available online at */ -/* http://opensource.franz.com/preamble.html */ - +/* + * Copyright 1994-2009 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ .syntax unified .arm diff --git a/lisp-kernel/arm-constants.h b/lisp-kernel/arm-constants.h index 26dce2320..dde4d00a5 100644 --- a/lisp-kernel/arm-constants.h +++ b/lisp-kernel/arm-constants.h @@ -1,19 +1,18 @@ /* - Copyright (C) 2009 Clozure Associates - Copyright (C) 1994-2001 Digitool, Inc - This file is part of Clozure CL. - - Clozure CL is licensed under the terms of the Lisp Lesser GNU Public - License , known as the LLGPL and distributed with Clozure CL as the - file "LICENSE". The LLGPL consists of a preamble and the LGPL, - which is distributed with Clozure CL as the file "LGPL". Where these - conflict, the preamble takes precedence. - - Clozure CL is referenced in the preamble as the "LIBRARY." - - The LLGPL is also available online at - http://opensource.franz.com/preamble.html -*/ + * Copyright 1994-2009 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ #include "constants.h" diff --git a/lisp-kernel/arm-constants.s b/lisp-kernel/arm-constants.s index 9addc4e38..a7b16e58a 100644 --- a/lisp-kernel/arm-constants.s +++ b/lisp-kernel/arm-constants.s @@ -1,18 +1,18 @@ -/* Copyright (C) 2009 Clozure Associates */ -/* Copyright (C) 1994-2001 Digitool, Inc */ -/* This file is part of Clozure CL. */ - -/* Clozure CL is licensed under the terms of the Lisp Lesser GNU Public */ -/* License , known as the LLGPL and distributed with Clozure CL as the */ -/* file "LICENSE". The LLGPL consists of a preamble and the LGPL, */ -/* which is distributed with Clozure CL as the file "LGPL". Where these */ -/* conflict, the preamble takes precedence. */ - -/* Clozure CL is referenced in the preamble as the "LIBRARY." */ - -/* The LLGPL is also available online at */ -/* http://opensource.franz.com/preamble.html */ - +/* + * Copyright 1994-2009 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ nbits_in_word = 32 @@ -596,4 +596,4 @@ xtype_bit = 40 stack_alloc_limit = 0x8000 INTERRUPT_LEVEL_BINDING_INDEX = fixnumone -VOID_ALLOCPTR = 0xfffffff8 \ No newline at end of file +VOID_ALLOCPTR = 0xfffffff8 diff --git a/lisp-kernel/arm-exceptions.c b/lisp-kernel/arm-exceptions.c index 7243930de..77086f45a 100644 --- a/lisp-kernel/arm-exceptions.c +++ b/lisp-kernel/arm-exceptions.c @@ -1,18 +1,18 @@ /* - Copyright (C) 2010 Clozure Associates - This file is part of Clozure CL. - - Clozure CL is licensed under the terms of the Lisp Lesser GNU Public - License , known as the LLGPL and distributed with Clozure CL as the - file "LICENSE". The LLGPL consists of a preamble and the LGPL, - which is distributed with Clozure CL as the file "LGPL". Where these - conflict, the preamble takes precedence. - - Clozure CL is referenced in the preamble as the "LIBRARY." - - The LLGPL is also available online at - http://opensource.franz.com/preamble.html -*/ + * Copyright 2010 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ #include "lisp.h" #include "lisp-exceptions.h" diff --git a/lisp-kernel/arm-exceptions.h b/lisp-kernel/arm-exceptions.h index 34c71f844..8f73c302c 100644 --- a/lisp-kernel/arm-exceptions.h +++ b/lisp-kernel/arm-exceptions.h @@ -1,18 +1,18 @@ /* - Copyright (C) 2010 Clozure Associates - This file is part of Clozure CL. - - Clozure CL is licensed under the terms of the Lisp Lesser GNU Public - License , known as the LLGPL and distributed with Clozure CL as the - file "LICENSE". The LLGPL consists of a preamble and the LGPL, - which is distributed with Clozure CL as the file "LGPL". Where these - conflict, the preamble takes precedence. - - Clozure CL is referenced in the preamble as the "LIBRARY." - - The LLGPL is also available online at - http://opensource.franz.com/preamble.html -*/ + * Copyright 2010 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ #define UUO_MASK 0x0ff000f0 #define IS_UUO(i) (((i) & UUO_MASK) == 0x07f000f0) diff --git a/lisp-kernel/arm-gc.c b/lisp-kernel/arm-gc.c index eb8db9695..89ff8c719 100644 --- a/lisp-kernel/arm-gc.c +++ b/lisp-kernel/arm-gc.c @@ -1,19 +1,18 @@ /* - Copyright (C) 2009 Clozure Associates - Copyright (C) 1994-2001 Digitool, Inc - This file is part of Clozure CL. - - Clozure CL is licensed under the terms of the Lisp Lesser GNU Public - License , known as the LLGPL and distributed with Clozure CL as the - file "LICENSE". The LLGPL consists of a preamble and the LGPL, - which is distributed with Clozure CL as the file "LGPL". Where these - conflict, the preamble takes precedence. - - Clozure CL is referenced in the preamble as the "LIBRARY." - - The LLGPL is also available online at - http://opensource.franz.com/preamble.html -*/ + * Copyright 1994-2009 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ #include "lisp.h" #include "lisp_globals.h" diff --git a/lisp-kernel/arm-macros.s b/lisp-kernel/arm-macros.s index a005117d7..6f4135d7a 100644 --- a/lisp-kernel/arm-macros.s +++ b/lisp-kernel/arm-macros.s @@ -1,18 +1,18 @@ -/* Copyright (C) 2009 Clozure Associates */ -/* Copyright (C) 1994-2001 Digitool, Inc */ -/* This file is part of Clozure CL. */ - -/* Clozure CL is licensed under the terms of the Lisp Lesser GNU Public */ -/* License , known as the LLGPL and distributed with Clozure CL as the */ -/* file "LICENSE". The LLGPL consists of a preamble and the LGPL, */ -/* which is distributed with Clozure CL as the file "LGPL". Where these */ -/* conflict, the preamble takes precedence. */ - -/* Clozure CL is referenced in the preamble as the "LIBRARY." */ - -/* The LLGPL is also available online at */ -/* http://opensource.franz.com/preamble.html */ - +/* + * Copyright 1994-2009 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ @@ -612,4 +612,4 @@ define(`ivector_typecode_p',` - \ No newline at end of file + diff --git a/lisp-kernel/arm-spentry.s b/lisp-kernel/arm-spentry.s index e42dcad00..4f80fd7eb 100644 --- a/lisp-kernel/arm-spentry.s +++ b/lisp-kernel/arm-spentry.s @@ -1,17 +1,18 @@ -/* Copyright (C) 2010 Clozure Associates */ -/* This file is part of Clozure CL. */ - -/* Clozure CL is licensed under the terms of the Lisp Lesser GNU Public */ -/* License , known as the LLGPL and distributed with Clozure CL as the */ -/* file "LICENSE". The LLGPL consists of a preamble and the LGPL, */ -/* which is distributed with Clozure CL as the file "LGPL". Where these */ -/* conflict, the preamble takes precedence. */ - -/* Clozure CL is referenced in the preamble as the "LIBRARY." */ - -/* The LLGPL is also available online at */ -/* http://opensource.franz.com/preamble.html */ - +/* + * Copyright 2010 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ include(lisp.s) diff --git a/lisp-kernel/arm-uuo.s b/lisp-kernel/arm-uuo.s index 15a54dd2d..320f976b7 100644 --- a/lisp-kernel/arm-uuo.s +++ b/lisp-kernel/arm-uuo.s @@ -1,18 +1,18 @@ -/* Copyright (C) 2010 Clozure Associates */ -/* Copyright (C) 1994-2001 Digitool, Inc */ -/* This file is part of Clozure CL. */ - -/* Clozure CL is licensed under the terms of the Lisp Lesser GNU Public */ -/* License , known as the LLGPL and distributed with Clozure CL as the */ -/* file "LICENSE". The LLGPL consists of a preamble and the LGPL, */ -/* which is distributed with Clozure CL as the file "LGPL". Where these */ -/* conflict, the preamble takes precedence. */ - -/* Clozure CL is referenced in the preamble as the "LIBRARY." */ - -/* The LLGPL is also available online at */ -/* http://opensource.franz.com/preamble.html */ - +/* + * Copyright 1994-2010 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ /* As of the 2005 edition of the ARM Architecture Reference Manual */ /* ("ARM ARM"), instructions I for which: */ @@ -109,4 +109,4 @@ define(`uuo_error_array_axis_bounds',`UUO($1,uuo_format_ternary_error2,($2<<8)|( vector); it should only be used by purify/impurify. */ define(`forward_marker',`UUO(al,uuo_format_unary,0xfff)') /* Used by Mach exception return */ -define(`uuo_pseudo_sigreturn',`UUO(al,uuo_format_unary,0xffe)') \ No newline at end of file +define(`uuo_pseudo_sigreturn',`UUO(al,uuo_format_unary,0xffe)') diff --git a/lisp-kernel/arm64-constants.h b/lisp-kernel/arm64-constants.h index 197c3cadc..86f7d19ff 100644 --- a/lisp-kernel/arm64-constants.h +++ b/lisp-kernel/arm64-constants.h @@ -1,3 +1,18 @@ +/* + * Copyright 2016 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ #define uvector_ref 0x40 diff --git a/lisp-kernel/arm64-constants.s b/lisp-kernel/arm64-constants.s index 5cf4c544b..f46ccb0d4 100644 --- a/lisp-kernel/arm64-constants.s +++ b/lisp-kernel/arm64-constants.s @@ -1,18 +1,18 @@ -/* Copyright (C) 2003-2009, Clozure Associates. */ -/* Copyright (C) 1994-2001 Digitool, Inc */ -/* This file is part of Clozure CL. */ - -/* Clozure CL is licensed under the terms of the Lisp Lesser GNU Public */ -/* License , known as the LLGPL and distributed with Clozure CL as the */ -/* file "LICENSE". The LLGPL consists of a preamble and the LGPL, */ -/* which is distributed with Clozure CL as the file "LGPL". Where these */ -/* conflict, the preamble takes precedence. */ - -/* Clozure CL is referenced in the preamble as the "LIBRARY." */ - -/* The LLGPL is also available online at */ -/* http://opensource.franz.com/preamble.html */ - +/* + * Copyright 1994-2009 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ define(`imm0',`x0') define(`imm1',`x1') define(`imm2',`x2') diff --git a/lisp-kernel/arm64-exceptions.h b/lisp-kernel/arm64-exceptions.h index e69de29bb..7f98234cf 100644 --- a/lisp-kernel/arm64-exceptions.h +++ b/lisp-kernel/arm64-exceptions.h @@ -0,0 +1,15 @@ +/* + * Copyright 2016 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ diff --git a/lisp-kernel/arm64-macros.s b/lisp-kernel/arm64-macros.s index fe6d3e7db..de8081397 100644 --- a/lisp-kernel/arm64-macros.s +++ b/lisp-kernel/arm64-macros.s @@ -1,17 +1,18 @@ -/* Copyright (C) 2012 Clozure Associates */ -/* This file is part of Clozure CL. */ - -/* Clozure CL is licensed under the terms of the Lisp Lesser GNU Public */ -/* License , known as the LLGPL and distributed with Clozure CL as the */ -/* file "LICENSE". The LLGPL consists of a preamble and the LGPL, */ -/* which is distributed with Clozure CL as the file "LGPL". Where these */ -/* conflict, the preamble takes precedence. */ - -/* Clozure CL is referenced in the preamble as the "LIBRARY." */ - -/* The LLGPL is also available online at */ -/* http://opensource.franz.com/preamble.html */ - +/* + * Copyright 2012 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ define(`gprval',`substr($1,1)') define(`gpr32',``w'gprval($1)') define(`gpr64',``x'gprval($1)') diff --git a/lisp-kernel/arm64-spentry.s b/lisp-kernel/arm64-spentry.s index 7abe0e687..d7d88eba1 100644 --- a/lisp-kernel/arm64-spentry.s +++ b/lisp-kernel/arm64-spentry.s @@ -1,16 +1,18 @@ -/* Copyright (C) 2012 Clozure Associates */ -/* This file is part of Clozure CL. */ -/* Clozure CL is licensed under the terms of the Lisp Lesser GNU Public */ -/* License , known as the LLGPL and distributed with Clozure CL as the */ -/* file "LICENSE". The LLGPL consists of a preamble and the LGPL, */ -/* which is distributed with Clozure CL as the file "LGPL". Where these */ -/* conflict, the preamble takes precedence. */ - -/* Clozure CL is referenced in the preamble as the "LIBRARY." */ - -/* The LLGPL is also available online at */ -/* http://opensource.franz.com/preamble.html */ - +/* + * Copyright 2012 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ include(lisp.s) diff --git a/lisp-kernel/arm64-uuo.s b/lisp-kernel/arm64-uuo.s index 59749cdb5..3f77688d2 100644 --- a/lisp-kernel/arm64-uuo.s +++ b/lisp-kernel/arm64-uuo.s @@ -1,17 +1,18 @@ -/* Copyright (C) 2012 Clozure Associates */ -/* This file is part of Clozure CL. */ - -/* Clozure CL is licensed under the terms of the Lisp Lesser GNU Public */ -/* License , known as the LLGPL and distributed with Clozure CL as the */ -/* file "LICENSE". The LLGPL consists of a preamble and the LGPL, */ -/* which is distributed with Clozure CL as the file "LGPL". Where these */ -/* conflict, the preamble takes precedence. */ - -/* Clozure CL is referenced in the preamble as the "LIBRARY." */ - -/* The LLGPL is also available online at */ -/* http://opensource.franz.com/preamble.html */ - +/* + * Copyright 2012 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ /* Encode (some) exceptional conditions in aarch64 'hlt' instructions, which accept a 16-bit immediate operand. The low 3 bits of this operand define the format of the upper 13 bits ; in general, there are 3 formats: @@ -63,4 +64,4 @@ define(`uuo_error_reg_not_xtype',` define(`uuo_error_vector_bounds',` __(hlt #(hlt_code_binary|(gprval($1)<<3)|(gprval($2)<<8)|(0<<13))) ') - \ No newline at end of file + diff --git a/lisp-kernel/arm_print.c b/lisp-kernel/arm_print.c index d2e5461a5..5eaaee41c 100644 --- a/lisp-kernel/arm_print.c +++ b/lisp-kernel/arm_print.c @@ -1,19 +1,18 @@ /* - Copyright (C) 2009 Clozure Associates - Copyright (C) 1994-2001 Digitool, Inc - This file is part of Clozure CL. - - Clozure CL is licensed under the terms of the Lisp Lesser GNU Public - License , known as the LLGPL and distributed with Clozure CL as the - file "LICENSE". The LLGPL consists of a preamble and the LGPL, - which is distributed with Clozure CL as the file "LGPL". Where these - conflict, the preamble takes precedence. - - Clozure CL is referenced in the preamble as the "LIBRARY." - - The LLGPL is also available online at - http://opensource.franz.com/preamble.html -*/ + * Copyright 1994-2009 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ #include #include diff --git a/lisp-kernel/bits.c b/lisp-kernel/bits.c index d3485553c..7d96b5fef 100644 --- a/lisp-kernel/bits.c +++ b/lisp-kernel/bits.c @@ -1,19 +1,18 @@ /* - Copyright (C) 2009 Clozure Associates - Copyright (C) 1994-2001 Digitool, Inc - This file is part of Clozure CL. - - Clozure CL is licensed under the terms of the Lisp Lesser GNU Public - License , known as the LLGPL and distributed with Clozure CL as the - file "LICENSE". The LLGPL consists of a preamble and the LGPL, - which is distributed with Clozure CL as the file "LGPL". Where these - conflict, the preamble takes precedence. - - Clozure CL is referenced in the preamble as the "LIBRARY." - - The LLGPL is also available online at - http://opensource.franz.com/preamble.html -*/ + * Copyright 1994-2009 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ #include "lisp.h" diff --git a/lisp-kernel/bits.h b/lisp-kernel/bits.h index 4b7086dea..ffb3dbe20 100644 --- a/lisp-kernel/bits.h +++ b/lisp-kernel/bits.h @@ -1,19 +1,18 @@ /* - Copyright (C) 2009 Clozure Associates - Copyright (C) 1994-2001 Digitool, Inc - This file is part of Clozure CL. - - Clozure CL is licensed under the terms of the Lisp Lesser GNU Public - License , known as the LLGPL and distributed with Clozure CL as the - file "LICENSE". The LLGPL consists of a preamble and the LGPL, - which is distributed with Clozure CL as the file "LGPL". Where these - conflict, the preamble takes precedence. - - Clozure CL is referenced in the preamble as the "LIBRARY." - - The LLGPL is also available online at - http://opensource.franz.com/preamble.html -*/ + * Copyright 1994-2009 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ diff --git a/lisp-kernel/constants.h b/lisp-kernel/constants.h index e7667db83..e39379224 100644 --- a/lisp-kernel/constants.h +++ b/lisp-kernel/constants.h @@ -1,19 +1,18 @@ /* - Copyright (C) 2009 Clozure Associates - Copyright (C) 1994-2001 Digitool, Inc - This file is part of Clozure CL. - - Clozure CL is licensed under the terms of the Lisp Lesser GNU Public - License , known as the LLGPL and distributed with Clozure CL as the - file "LICENSE". The LLGPL consists of a preamble and the LGPL, - which is distributed with Clozure CL as the file "LGPL". Where these - conflict, the preamble takes precedence. - - Clozure CL is referenced in the preamble as the "LIBRARY." - - The LLGPL is also available online at - http://opensource.franz.com/preamble.html -*/ + * Copyright 1994-2009 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ #define TCR_FLAG_BIT_FOREIGN fixnumshift #define TCR_FLAG_BIT_AWAITING_PRESET (fixnumshift+1) diff --git a/lisp-kernel/darwinarm/Makefile b/lisp-kernel/darwinarm/Makefile index b81ae1fb2..51e761a7b 100644 --- a/lisp-kernel/darwinarm/Makefile +++ b/lisp-kernel/darwinarm/Makefile @@ -1,18 +1,17 @@ # -# Copyright (C) 2010 Clozure Associates -# This file is part of Clozure CL. +# Copyright 2010 Clozure Associates # -# Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -# License , known as the LLGPL and distributed with Clozure CL as the -# file "LICENSE". The LLGPL consists of a preamble and the LGPL, -# which is distributed with Clozure CL as the file "LGPL". Where these -# conflict, the preamble takes precedence. +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at # -# Clozure CL is referenced in the preamble as the "LIBRARY." +# http://www.apache.org/licenses/LICENSE-2.0 # -# The LLGPL is also available online at -# http://opensource.franz.com/preamble.html - +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. VPATH = ../ RM = /bin/rm diff --git a/lisp-kernel/darwinx8632/Makefile b/lisp-kernel/darwinx8632/Makefile index 6e96ad47f..d618054ba 100644 --- a/lisp-kernel/darwinx8632/Makefile +++ b/lisp-kernel/darwinx8632/Makefile @@ -1,18 +1,17 @@ # -# Copyright (C) 2005 Clozure Associates and contributors. -# This file is part of Clozure CL. +# Copyright 2005 Clozure Associates # -# Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -# License , known as the LLGPL and distributed with Clozure CL as the -# file "LICENSE". The LLGPL consists of a preamble and the LGPL, -# which is distributed with Clozure CL as the file "LGPL". Where these -# conflict, the preamble takes precedence. +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at # -# Clozure CL is referenced in the preamble as the "LIBRARY." +# http://www.apache.org/licenses/LICENSE-2.0 # -# The LLGPL is also available online at -# http://opensource.franz.com/preamble.html - +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. SVN_REVISION := "$(shell svnversion || echo unknown)" diff --git a/lisp-kernel/darwinx8664/Makefile b/lisp-kernel/darwinx8664/Makefile index 4a9038dd6..a7b8d2191 100644 --- a/lisp-kernel/darwinx8664/Makefile +++ b/lisp-kernel/darwinx8664/Makefile @@ -1,18 +1,17 @@ # -# Copyright (C) 2005 Clozure Associates and contributors. -# This file is part of Clozure CL. +# Copyright 2005 Clozure Associates # -# Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -# License , known as the LLGPL and distributed with Clozure CL as the -# file "LICENSE". The LLGPL consists of a preamble and the LGPL, -# which is distributed with Clozure CL as the file "LGPL". Where these -# conflict, the preamble takes precedence. +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at # -# Clozure CL is referenced in the preamble as the "LIBRARY." +# http://www.apache.org/licenses/LICENSE-2.0 # -# The LLGPL is also available online at -# http://opensource.franz.com/preamble.html - +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. SVN_REVISION := "$(shell svnversion || echo unknown)" diff --git a/lisp-kernel/errors.s b/lisp-kernel/errors.s index ef3fe4e87..4ae588aa7 100644 --- a/lisp-kernel/errors.s +++ b/lisp-kernel/errors.s @@ -1,18 +1,18 @@ -/* Copyright (C) 2009 Clozure Associates */ -/* Copyright (C) 1994-2001 Digitool, Inc */ -/* This file is part of Clozure CL. */ - -/* Clozure CL is licensed under the terms of the Lisp Lesser GNU Public */ -/* License , known as the LLGPL and distributed with Clozure CL as the */ -/* file "LICENSE". The LLGPL consists of a preamble and the LGPL, */ -/* which is distributed with Clozure CL as the file "LGPL". Where these */ -/* conflict, the preamble takes precedence. */ - -/* Clozure CL is referenced in the preamble as the "LIBRARY." */ - -/* The LLGPL is also available online at */ -/* http://opensource.franz.com/preamble.html */ - +/* + * Copyright 1994-2009 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ diff --git a/lisp-kernel/freebsdx8632/Makefile b/lisp-kernel/freebsdx8632/Makefile index b0688cae4..fe6883611 100644 --- a/lisp-kernel/freebsdx8632/Makefile +++ b/lisp-kernel/freebsdx8632/Makefile @@ -1,17 +1,17 @@ # -# Copyright (C) 2005-2006 Clozure Associates -# This file is part of Clozure CL. +# Copyright 2005-2006 Clozure Associates # -# Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -# License , known as the LLGPL and distributed with Clozure CL as the -# file "LICENSE". The LLGPL consists of a preamble and the LGPL, -# which is distributed with Clozure CL as the file "LGPL". Where these -# conflict, the preamble takes precedence. +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at # -# Clozure CL is referenced in the preamble as the "LIBRARY." +# http://www.apache.org/licenses/LICENSE-2.0 # -# The LLGPL is also available online at -# http://opensource.franz.com/preamble.html +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. SVN_REVISION != svnversion diff --git a/lisp-kernel/freebsdx8664/Makefile b/lisp-kernel/freebsdx8664/Makefile index f5458d813..9313b2e3a 100644 --- a/lisp-kernel/freebsdx8664/Makefile +++ b/lisp-kernel/freebsdx8664/Makefile @@ -1,17 +1,17 @@ # -# Copyright (C) 2005-2006 Clozure Associates -# This file is part of Clozure CL. +# Copyright 2005-2006 Clozure Associates # -# Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -# License , known as the LLGPL and distributed with Clozure CL as the -# file "LICENSE". The LLGPL consists of a preamble and the LGPL, -# which is distributed with Clozure CL as the file "LGPL". Where these -# conflict, the preamble takes precedence. +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at # -# Clozure CL is referenced in the preamble as the "LIBRARY." +# http://www.apache.org/licenses/LICENSE-2.0 # -# The LLGPL is also available online at -# http://opensource.franz.com/preamble.html +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. SVN_REVISION != svnversion diff --git a/lisp-kernel/gc-common.c b/lisp-kernel/gc-common.c index e720c8d33..5a00264bc 100644 --- a/lisp-kernel/gc-common.c +++ b/lisp-kernel/gc-common.c @@ -1,19 +1,18 @@ /* - Copyright (C) 2009 Clozure Associates - Copyright (C) 1994-2001 Digitool, Inc - This file is part of Clozure CL. - - Clozure CL is licensed under the terms of the Lisp Lesser GNU Public - License , known as the LLGPL and distributed with Clozure CL as the - file "LICENSE". The LLGPL consists of a preamble and the LGPL, - which is distributed with Clozure CL as the file "LGPL". Where these - conflict, the preamble takes precedence. - - Clozure CL is referenced in the preamble as the "LIBRARY." - - The LLGPL is also available online at - http://opensource.franz.com/preamble.html -*/ + * Copyright 1994-2009 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ #include "lisp.h" #include "lisp_globals.h" diff --git a/lisp-kernel/gc.h b/lisp-kernel/gc.h index 11a994d13..0aa31ba6c 100644 --- a/lisp-kernel/gc.h +++ b/lisp-kernel/gc.h @@ -1,19 +1,18 @@ /* - Copyright (C) 2009 Clozure Associates - Copyright (C) 1994-2001 Digitool, Inc - This file is part of Clozure CL. - - Clozure CL is licensed under the terms of the Lisp Lesser GNU Public - License , known as the LLGPL and distributed with Clozure CL as the - file "LICENSE". The LLGPL consists of a preamble and the LGPL, - which is distributed with Clozure CL as the file "LGPL". Where these - conflict, the preamble takes precedence. - - Clozure CL is referenced in the preamble as the "LIBRARY." - - The LLGPL is also available online at - http://opensource.franz.com/preamble.html -*/ + * Copyright 1994-2009 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ #ifndef __GC_H__ #define __GC_H__ 1 diff --git a/lisp-kernel/image.c b/lisp-kernel/image.c index eff5df6c7..e12676c42 100644 --- a/lisp-kernel/image.c +++ b/lisp-kernel/image.c @@ -1,18 +1,18 @@ /* - Copyright (C) 2002-2009 Clozure Associates - This file is part of Clozure CL. - - Clozure CL is licensed under the terms of the Lisp Lesser GNU Public - License , known as the LLGPL and distributed with Clozure CL as the - file "LICENSE". The LLGPL consists of a preamble and the LGPL, - which is distributed with Clozure CL as the file "LGPL". Where these - conflict, the preamble takes precedence. - - Clozure CL is referenced in the preamble as the "LIBRARY." - - The LLGPL is also available online at - http://opensource.franz.com/preamble.html -*/ + * Copyright 2002-2009 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ #include "lisp.h" #include "lisp_globals.h" diff --git a/lisp-kernel/image.h b/lisp-kernel/image.h index b5537740b..f016712e6 100644 --- a/lisp-kernel/image.h +++ b/lisp-kernel/image.h @@ -1,18 +1,18 @@ /* - Copyright (C) 2002-2009 Clozure Associates - This file is part of Clozure CL. - - Clozure CL is licensed under the terms of the Lisp Lesser GNU Public - License , known as the LLGPL and distributed with Clozure CL as the - file "LICENSE". The LLGPL consists of a preamble and the LGPL, - which is distributed with Clozure CL as the file "LGPL". Where these - conflict, the preamble takes precedence. - - Clozure CL is referenced in the preamble as the "LIBRARY." - - The LLGPL is also available online at - http://opensource.franz.com/preamble.html -*/ + * Copyright 2002-2009 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ #define IMAGE_SIG0 (('O'<<24) | ('p'<<16) | ('e'<<8) | 'n') diff --git a/lisp-kernel/imports.s b/lisp-kernel/imports.s index 74bb7b963..6edfefb68 100644 --- a/lisp-kernel/imports.s +++ b/lisp-kernel/imports.s @@ -1,18 +1,18 @@ -/* Copyright (C) 2009 Clozure Associates */ -/* Copyright (C) 1994-2001 Digitool, Inc */ -/* This file is part of Clozure CL. */ - -/* Clozure CL is licensed under the terms of the Lisp Lesser GNU Public */ -/* License , known as the LLGPL and distributed with Clozure CL as the */ -/* file "LICENSE". The LLGPL consists of a preamble and the LGPL, */ -/* which is distributed with Clozure CL as the file "LGPL". Where these */ -/* conflict, the preamble takes precedence. */ - -/* Clozure CL is referenced in the preamble as the "LIBRARY." */ - -/* The LLGPL is also available online at */ -/* http://opensource.franz.com/preamble.html */ - +/* + * Copyright 1994-2009 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ include(m4macros.m4) define(`PTR',` __ifdef(`PPC64') diff --git a/lisp-kernel/kernel-globals.h b/lisp-kernel/kernel-globals.h index f4d3828fd..e46bbc053 100644 --- a/lisp-kernel/kernel-globals.h +++ b/lisp-kernel/kernel-globals.h @@ -1,19 +1,18 @@ /* - Copyright (C) 2009 Clozure Associates - Copyright (C) 1994-2001 Digitool, Inc - This file is part of Clozure CL. - - Clozure CL is licensed under the terms of the Lisp Lesser GNU Public - License , known as the LLGPL and distributed with Clozure CL as the - file "LICENSE". The LLGPL consists of a preamble and the LGPL, - which is distributed with Clozure CL as the file "LGPL". Where these - conflict, the preamble takes precedence. - - Clozure CL is referenced in the preamble as the "LIBRARY." - - The LLGPL is also available online at - http://opensource.franz.com/preamble.html -*/ + * Copyright 1994-2009 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ #ifndef __kernel_globals__ #define __kernel_globals__ diff --git a/lisp-kernel/linuxarm/Makefile b/lisp-kernel/linuxarm/Makefile index 51b9c4fef..6c4a8a427 100644 --- a/lisp-kernel/linuxarm/Makefile +++ b/lisp-kernel/linuxarm/Makefile @@ -1,17 +1,17 @@ # -# Copyright (C) 2010 Clozure Associates -# This file is part of Clozure CL. +# Copyright 2010 Clozure Associates # -# Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -# License , known as the LLGPL and distributed with Clozure CL as the -# file "LICENSE". The LLGPL consists of a preamble and the LGPL, -# which is distributed with Clozure CL as the file "LGPL". Where these -# conflict, the preamble takes precedence. +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at # -# Clozure CL is referenced in the preamble as the "LIBRARY." +# http://www.apache.org/licenses/LICENSE-2.0 # -# The LLGPL is also available online at -# http://opensource.franz.com/preamble.html +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. SVN_REVISION := "$(shell svnversion || echo unknown)" diff --git a/lisp-kernel/linuxarm64/Makefile b/lisp-kernel/linuxarm64/Makefile index d5b162fdf..a0dddccb8 100644 --- a/lisp-kernel/linuxarm64/Makefile +++ b/lisp-kernel/linuxarm64/Makefile @@ -1,17 +1,17 @@ # -# Copyright (C) 2010 Clozure Associates -# This file is part of Clozure CL. +# Copyright 2010 Clozure Associates # -# Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -# License , known as the LLGPL and distributed with Clozure CL as the -# file "LICENSE". The LLGPL consists of a preamble and the LGPL, -# which is distributed with Clozure CL as the file "LGPL". Where these -# conflict, the preamble takes precedence. +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at # -# Clozure CL is referenced in the preamble as the "LIBRARY." +# http://www.apache.org/licenses/LICENSE-2.0 # -# The LLGPL is also available online at -# http://opensource.franz.com/preamble.html +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. SVN_REVISION := "$(shell svnversion || echo unknown)" diff --git a/lisp-kernel/linuxppc/Makefile b/lisp-kernel/linuxppc/Makefile index f05957888..66877f2ae 100644 --- a/lisp-kernel/linuxppc/Makefile +++ b/lisp-kernel/linuxppc/Makefile @@ -1,17 +1,17 @@ # -# Copyright (C) 1994-2001 Digitool, Inc -# This file is part of Clozure CL. +# Copyright 1994-2001 Clozure Associates # -# Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -# License , known as the LLGPL and distributed with Clozure CL as the -# file "LICENSE". The LLGPL consists of a preamble and the LGPL, -# which is distributed with Clozure CL as the file "LGPL". Where these -# conflict, the preamble takes precedence. +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at # -# Clozure CL is referenced in the preamble as the "LIBRARY." +# http://www.apache.org/licenses/LICENSE-2.0 # -# The LLGPL is also available online at -# http://opensource.franz.com/preamble.html +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. SVN_REVISION := "$(shell svnversion || echo unknown)" diff --git a/lisp-kernel/linuxppc64/Makefile b/lisp-kernel/linuxppc64/Makefile index f89679a21..55d9d75df 100644 --- a/lisp-kernel/linuxppc64/Makefile +++ b/lisp-kernel/linuxppc64/Makefile @@ -1,17 +1,17 @@ # -# Copyright (C) 1994-2001 Digitool, Inc -# This file is part of Clozure CL. +# Copyright 1994-2001 Clozure Associates # -# Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -# License , known as the LLGPL and distributed with Clozure CL as the -# file "LICENSE". The LLGPL consists of a preamble and the LGPL, -# which is distributed with Clozure CL as the file "LGPL". Where these -# conflict, the preamble takes precedence. +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at # -# Clozure CL is referenced in the preamble as the "LIBRARY." +# http://www.apache.org/licenses/LICENSE-2.0 # -# The LLGPL is also available online at -# http://opensource.franz.com/preamble.html +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. SVN_REVISION := "$(shell svnversion || echo unknown)" diff --git a/lisp-kernel/linuxx8632/Makefile b/lisp-kernel/linuxx8632/Makefile index 92b57244b..f99982827 100644 --- a/lisp-kernel/linuxx8632/Makefile +++ b/lisp-kernel/linuxx8632/Makefile @@ -1,17 +1,17 @@ # -# Copyright (C) 2008 Clozure Associates and contributors -# This file is part of Clozure CL. +# Copyright 2008 Clozure Associates # -# Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -# License , known as the LLGPL and distributed with Clozure CL as the -# file "LICENSE". The LLGPL consists of a preamble and the LGPL, -# which is distributed with Clozure CL as the file "LGPL". Where these -# conflict, the preamble takes precedence. +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at # -# Clozure CL is referenced in the preamble as the "LIBRARY." +# http://www.apache.org/licenses/LICENSE-2.0 # -# The LLGPL is also available online at -# http://opensource.franz.com/preamble.html +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. SVN_REVISION := "$(shell svnversion || echo unknown)" diff --git a/lisp-kernel/linuxx8664/Makefile b/lisp-kernel/linuxx8664/Makefile index 3b8935870..00a012588 100644 --- a/lisp-kernel/linuxx8664/Makefile +++ b/lisp-kernel/linuxx8664/Makefile @@ -1,17 +1,17 @@ # -# Copyright (C) 2005 Clozure Associates -# This file is part of Clozure CL. +# Copyright 2005 Clozure Associates # -# Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -# License , known as the LLGPL and distributed with Clozure CL as the -# file "LICENSE". The LLGPL consists of a preamble and the LGPL, -# which is distributed with Clozure CL as the file "LGPL". Where these -# conflict, the preamble takes precedence. +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at # -# Clozure CL is referenced in the preamble as the "LIBRARY." +# http://www.apache.org/licenses/LICENSE-2.0 # -# The LLGPL is also available online at -# http://opensource.franz.com/preamble.html +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. SVN_REVISION := "$(shell svnversion || echo unknown)" diff --git a/lisp-kernel/lisp-debug.c b/lisp-kernel/lisp-debug.c index 741b5ff82..2958d4b81 100644 --- a/lisp-kernel/lisp-debug.c +++ b/lisp-kernel/lisp-debug.c @@ -1,19 +1,18 @@ /* - Copyright (C) 2009 Clozure Associates - Copyright (C) 1994-2001 Digitool, Inc - This file is part of Clozure CL. - - Clozure CL is licensed under the terms of the Lisp Lesser GNU Public - License , known as the LLGPL and distributed with Clozure CL as the - file "LICENSE". The LLGPL consists of a preamble and the LGPL, - which is distributed with Clozure CL as the file "LGPL". Where these - conflict, the preamble takes precedence. - - Clozure CL is referenced in the preamble as the "LIBRARY." - - The LLGPL is also available online at - http://opensource.franz.com/preamble.html -*/ + * Copyright 1994-2009 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ #include "lisp.h" #include "lisp-exceptions.h" diff --git a/lisp-kernel/lisp-errors.h b/lisp-kernel/lisp-errors.h index 25662cccd..ff599dae2 100644 --- a/lisp-kernel/lisp-errors.h +++ b/lisp-kernel/lisp-errors.h @@ -1,19 +1,18 @@ /* - Copyright (C) 2009 Clozure Associates - Copyright (C) 1994-2001 Digitool, Inc - This file is part of Clozure CL. - - Clozure CL is licensed under the terms of the Lisp Lesser GNU Public - License , known as the LLGPL and distributed with Clozure CL as the - file "LICENSE". The LLGPL consists of a preamble and the LGPL, - which is distributed with Clozure CL as the file "LGPL". Where these - conflict, the preamble takes precedence. - - Clozure CL is referenced in the preamble as the "LIBRARY." - - The LLGPL is also available online at - http://opensource.franz.com/preamble.html -*/ + * Copyright 1994-2009 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ #ifndef __ERRORS_X #define __ERRORS_X 1 diff --git a/lisp-kernel/lisp-exceptions.h b/lisp-kernel/lisp-exceptions.h index 4ef3276d8..73071673d 100644 --- a/lisp-kernel/lisp-exceptions.h +++ b/lisp-kernel/lisp-exceptions.h @@ -1,19 +1,18 @@ /* - Copyright (C) 2009 Clozure Associates - Copyright (C) 1994-2001 Digitool, Inc - This file is part of Clozure CL. - - Clozure CL is licensed under the terms of the Lisp Lesser GNU Public - License , known as the LLGPL and distributed with Clozure CL as the - file "LICENSE". The LLGPL consists of a preamble and the LGPL, - which is distributed with Clozure CL as the file "LGPL". Where these - conflict, the preamble takes precedence. - - Clozure CL is referenced in the preamble as the "LIBRARY." - - The LLGPL is also available online at - http://opensource.franz.com/preamble.html -*/ + * Copyright 1994-2009 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ #ifndef __lisp_exceptions_h__ #define __lisp_exceptions_h__ 1 diff --git a/lisp-kernel/lisp.h b/lisp-kernel/lisp.h index 63501abc6..8caf91104 100644 --- a/lisp-kernel/lisp.h +++ b/lisp-kernel/lisp.h @@ -1,19 +1,18 @@ /* - Copyright (C) 2009 Clozure Associates - Copyright (C) 1994-2001 Digitool, Inc - This file is part of Clozure CL. - - Clozure CL is licensed under the terms of the Lisp Lesser GNU Public - License , known as the LLGPL and distributed with Clozure CL as the - file "LICENSE". The LLGPL consists of a preamble and the LGPL, - which is distributed with Clozure CL as the file "LGPL". Where these - conflict, the preamble takes precedence. - - Clozure CL is referenced in the preamble as the "LIBRARY." - - The LLGPL is also available online at - http://opensource.franz.com/preamble.html -*/ + * Copyright 1994-2009 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ #ifndef __lisp__ #define __lisp__ diff --git a/lisp-kernel/lisp.s b/lisp-kernel/lisp.s index ea6b8993b..c8fe32a77 100644 --- a/lisp-kernel/lisp.s +++ b/lisp-kernel/lisp.s @@ -1,18 +1,18 @@ -/* Copyright (C) 2009 Clozure Associates */ -/* Copyright (C) 1994-2001 Digitool, Inc */ -/* This file is part of Clozure CL. */ - -/* Clozure CL is licensed under the terms of the Lisp Lesser GNU Public */ -/* License , known as the LLGPL and distributed with Clozure CL as the */ -/* file "LICENSE". The LLGPL consists of a preamble and the LGPL, */ -/* which is distributed with Clozure CL as the file "LGPL". Where these */ -/* conflict, the preamble takes precedence. */ - -/* Clozure CL is referenced in the preamble as the "LIBRARY." */ - -/* The LLGPL is also available online at */ -/* http://opensource.franz.com/preamble.html */ - +/* + * Copyright 1994-2009 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ include(m4macros.m4) ifdef(`LOWMEM_BIAS',` `LOWMEM_BIAS' = LOWMEM_BIAS diff --git a/lisp-kernel/lisp_globals.h b/lisp-kernel/lisp_globals.h index 72dc46c75..4b86bd655 100644 --- a/lisp-kernel/lisp_globals.h +++ b/lisp-kernel/lisp_globals.h @@ -1,19 +1,18 @@ /* - Copyright (C) 2009 Clozure Associates - Copyright (C) 1994-2001 Digitool, Inc - This file is part of Clozure CL. - - Clozure CL is licensed under the terms of the Lisp Lesser GNU Public - License , known as the LLGPL and distributed with Clozure CL as the - file "LICENSE". The LLGPL consists of a preamble and the LGPL, - which is distributed with Clozure CL as the file "LGPL". Where these - conflict, the preamble takes precedence. - - Clozure CL is referenced in the preamble as the "LIBRARY." - - The LLGPL is also available online at - http://opensource.franz.com/preamble.html -*/ + * Copyright 1994-2009 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ #ifndef __lisp_globals__ #define __lisp_globals__ diff --git a/lisp-kernel/lisp_globals.s b/lisp-kernel/lisp_globals.s index 6c25db699..8b2e7d675 100644 --- a/lisp-kernel/lisp_globals.s +++ b/lisp-kernel/lisp_globals.s @@ -1,18 +1,18 @@ -/* Copyright (C) 2009 Clozure Associates */ -/* Copyright (C) 1994-2001 Digitool, Inc */ -/* This file is part of Clozure CL. */ - -/* Clozure CL is licensed under the terms of the Lisp Lesser GNU Public */ -/* License , known as the LLGPL and distributed with Clozure CL as the */ -/* file "LICENSE". The LLGPL consists of a preamble and the LGPL, */ -/* which is distributed with Clozure CL as the file "LGPL". Where these */ -/* conflict, the preamble takes precedence. */ - -/* Clozure CL is referenced in the preamble as the "LIBRARY." */ - -/* The LLGPL is also available online at */ -/* http://opensource.franz.com/preamble.html */ - +/* + * Copyright 1994-2009 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ /* This file should be included in a platform-specific *constants*.s file, which should define nrs_origin and nrs_symbol_fulltag before doing so. */ @@ -217,4 +217,4 @@ nrs_symbol_extra = symbol.size-nrs_symbol_fulltag /* Traditional name, differs from C */ .set lisp_globals.ret1val_addr,lisp_globals.ret1valn - \ No newline at end of file + diff --git a/lisp-kernel/lispdcmd.c b/lisp-kernel/lispdcmd.c index 20d112542..8044432df 100644 --- a/lisp-kernel/lispdcmd.c +++ b/lisp-kernel/lispdcmd.c @@ -1,19 +1,18 @@ /* - Copyright (C) 2009 Clozure Associates - Copyright (C) 1994-2001 Digitool, Inc - This file is part of Clozure CL. - - Clozure CL is licensed under the terms of the Lisp Lesser GNU Public - License , known as the LLGPL and distributed with Clozure CL as the - file "LICENSE". The LLGPL consists of a preamble and the LGPL, - which is distributed with Clozure CL as the file "LGPL". Where these - conflict, the preamble takes precedence. - - Clozure CL is referenced in the preamble as the "LIBRARY." - - The LLGPL is also available online at - http://opensource.franz.com/preamble.html -*/ + * Copyright 1994-2009 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ /* MCL-PPC dcmd utilities. diff --git a/lisp-kernel/lispdcmd.h b/lisp-kernel/lispdcmd.h index 3cfc6fc69..a718d3fb2 100644 --- a/lisp-kernel/lispdcmd.h +++ b/lisp-kernel/lispdcmd.h @@ -1,19 +1,18 @@ /* - Copyright (C) 2009 Clozure Associates - Copyright (C) 1994-2001 Digitool, Inc - This file is part of Clozure CL. - - Clozure CL is licensed under the terms of the Lisp Lesser GNU Public - License , known as the LLGPL and distributed with Clozure CL as the - file "LICENSE". The LLGPL consists of a preamble and the LGPL, - which is distributed with Clozure CL as the file "LGPL". Where these - conflict, the preamble takes precedence. - - Clozure CL is referenced in the preamble as the "LIBRARY." - - The LLGPL is also available online at - http://opensource.franz.com/preamble.html -*/ + * Copyright 1994-2009 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ #include #include diff --git a/lisp-kernel/lisptypes.h b/lisp-kernel/lisptypes.h index 0c60262a3..318f3c2e1 100644 --- a/lisp-kernel/lisptypes.h +++ b/lisp-kernel/lisptypes.h @@ -1,19 +1,18 @@ /* - Copyright (C) 2009 Clozure Associates - Copyright (C) 1994-2001 Digitool, Inc - This file is part of Clozure CL. - - Clozure CL is licensed under the terms of the Lisp Lesser GNU Public - License , known as the LLGPL and distributed with Clozure CL as the - file "LICENSE". The LLGPL consists of a preamble and the LGPL, - which is distributed with Clozure CL as the file "LGPL". Where these - conflict, the preamble takes precedence. - - Clozure CL is referenced in the preamble as the "LIBRARY." - - The LLGPL is also available online at - http://opensource.franz.com/preamble.html -*/ + * Copyright 1994-2009 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ #ifndef __lisptypes__ #define __lisptypes__ diff --git a/lisp-kernel/m4macros.m4 b/lisp-kernel/m4macros.m4 index 6296f637e..57a7b9c45 100644 --- a/lisp-kernel/m4macros.m4 +++ b/lisp-kernel/m4macros.m4 @@ -1,23 +1,20 @@ changecom(`/*',`*/') - - -/* Copyright (C) 1994-2001 Digitool, Inc */ -/* Copyright (c) 2009 Clozure Associates */ -/* This file is part of Clozure CL. */ - -/* Clozure CL is licensed under the terms of the Lisp Lesser GNU Public */ -/* License , known as the LLGPL and distributed with Clozure CL as the */ -/* file "LICENSE". The LLGPL consists of a preamble and the LGPL, */ -/* which is distributed with Clozure CL as the file "LGPL". Where these */ -/* conflict, the preamble takes precedence. */ - -/* Clozure CL is referenced in the preamble as the "LIBRARY." */ - -/* The LLGPL is also available online at */ -/* http://opensource.franz.com/preamble.html */ - - +/* + * Copyright 1994-2009 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ /* BSD debugging information (line numbers, etc) is a little different */ /* from ELF/SVr4 debugging information. There are probably lots more */ diff --git a/lisp-kernel/mach-o-image.c b/lisp-kernel/mach-o-image.c index 507ff2d86..29b9cc3b7 100644 --- a/lisp-kernel/mach-o-image.c +++ b/lisp-kernel/mach-o-image.c @@ -1,18 +1,18 @@ /* - Copyright (C) 2011 Clozure Associates - This file is part of Clozure CL. - - Clozure CL is licensed under the terms of the Lisp Lesser GNU Public - License , known as the LLGPL and distributed with Clozure CL as the - file "LICENSE". The LLGPL consists of a preamble and the LGPL, - which is distributed with Clozure CL as the file "LGPL". Where these - conflict, the preamble takes precedence. - - Clozure CL is referenced in the preamble as the "LIBRARY." - - The LLGPL is also available online at - http://opensource.franz.com/preamble.html -*/ + * Copyright 2011 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ #include #include diff --git a/lisp-kernel/macros.h b/lisp-kernel/macros.h index d3e3f5882..50f0bbf0c 100644 --- a/lisp-kernel/macros.h +++ b/lisp-kernel/macros.h @@ -1,19 +1,18 @@ /* - Copyright (C) 2009 Clozure Associates - Copyright (C) 1994-2001 Digitool, Inc - This file is part of Clozure CL. - - Clozure CL is licensed under the terms of the Lisp Lesser GNU Public - License , known as the LLGPL and distributed with Clozure CL as the - file "LICENSE". The LLGPL consists of a preamble and the LGPL, - which is distributed with Clozure CL as the file "LGPL". Where these - conflict, the preamble takes precedence. - - Clozure CL is referenced in the preamble as the "LIBRARY." - - The LLGPL is also available online at - http://opensource.franz.com/preamble.html -*/ + * Copyright 1994-2009 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ /* Totally different content than 'macros.s' */ diff --git a/lisp-kernel/memory.c b/lisp-kernel/memory.c index 9773d4508..307c6b2da 100644 --- a/lisp-kernel/memory.c +++ b/lisp-kernel/memory.c @@ -1,19 +1,18 @@ /* - Copyright (C) 2009 Clozure Associates - Copyright (C) 1994-2001 Digitool, Inc - This file is part of Clozure CL. - - Clozure CL is licensed under the terms of the Lisp Lesser GNU Public - License , known as the LLGPL and distributed with Clozure CL as the - file "LICENSE". The LLGPL consists of a preamble and the LGPL, - which is distributed with Clozure CL as the file "LGPL". Where these - conflict, the preamble takes precedence. - - Clozure CL is referenced in the preamble as the "LIBRARY." - - The LLGPL is also available online at - http://opensource.franz.com/preamble.html -*/ + * Copyright 1994-2009 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ #include "lisp.h" #include "lisp-exceptions.h" diff --git a/lisp-kernel/memprotect.h b/lisp-kernel/memprotect.h index b45590728..b8cbcbdcc 100644 --- a/lisp-kernel/memprotect.h +++ b/lisp-kernel/memprotect.h @@ -1,19 +1,18 @@ /* - Copyright (C) 2009 Clozure Associates - Copyright (C) 1994-2001 Digitool, Inc - This file is part of Clozure CL. - - Clozure CL is licensed under the terms of the Lisp Lesser GNU Public - License , known as the LLGPL and distributed with Clozure CL as the - file "LICENSE". The LLGPL consists of a preamble and the LGPL, - which is distributed with Clozure CL as the file "LGPL". Where these - conflict, the preamble takes precedence. - - Clozure CL is referenced in the preamble as the "LIBRARY." - - The LLGPL is also available online at - http://opensource.franz.com/preamble.html -*/ + * Copyright 1994-2009 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ #ifndef __memprotect_h__ #define __memprotect_h__ diff --git a/lisp-kernel/os-darwin.h b/lisp-kernel/os-darwin.h index 516cabc5f..b77ee0154 100644 --- a/lisp-kernel/os-darwin.h +++ b/lisp-kernel/os-darwin.h @@ -1,19 +1,18 @@ /* - Copyright (C) 2010 Clozure Associates - Copyright (C) 1994-2001 Digitool, Inc - This file is part of Clozure CL. - - Clozure CL is licensed under the terms of the Lisp Lesser GNU Public - License , known as the LLGPL and distributed with Clozure CL as the - file "LICENSE". The LLGPL consists of a preamble and the LGPL, - which is distributed with Clozure CL as the file "LGPL". Where these - conflict, the preamble takes precedence. - - Clozure CL is referenced in the preamble as the "LIBRARY." - - The LLGPL is also available online at - http://opensource.franz.com/preamble.html -*/ + * Copyright 1994-2010 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ #define SIGNAL_FOR_PROCESS_INTERRUPT SIGUSR1 diff --git a/lisp-kernel/os-freebsd.h b/lisp-kernel/os-freebsd.h index 792b90c7e..a6d9b974b 100644 --- a/lisp-kernel/os-freebsd.h +++ b/lisp-kernel/os-freebsd.h @@ -1,19 +1,18 @@ /* - Copyright (C) 2010 Clozure Associates - Copyright (C) 1994-2001 Digitool, Inc - This file is part of Clozure CL. - - Clozure CL is licensed under the terms of the Lisp Lesser GNU Public - License , known as the LLGPL and distributed with Clozure CL as the - file "LICENSE". The LLGPL consists of a preamble and the LGPL, - which is distributed with Clozure CL as the file "LGPL". Where these - conflict, the preamble takes precedence. - - Clozure CL is referenced in the preamble as the "LIBRARY." - - The LLGPL is also available online at - http://opensource.franz.com/preamble.html -*/ + * Copyright 1994-2010 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ #define SIGNAL_FOR_PROCESS_INTERRUPT SIGEMT #define SIG_SUSPEND_THREAD SIGUSR2 diff --git a/lisp-kernel/os-linux.h b/lisp-kernel/os-linux.h index cd0ee7788..8533847bf 100644 --- a/lisp-kernel/os-linux.h +++ b/lisp-kernel/os-linux.h @@ -1,19 +1,18 @@ /* - Copyright (C) 2010 Clozure Associates - Copyright (C) 1994-2001 Digitool, Inc - This file is part of Clozure CL. - - Clozure CL is licensed under the terms of the Lisp Lesser GNU Public - License , known as the LLGPL and distributed with Clozure CL as the - file "LICENSE". The LLGPL consists of a preamble and the LGPL, - which is distributed with Clozure CL as the file "LGPL". Where these - conflict, the preamble takes precedence. - - Clozure CL is referenced in the preamble as the "LIBRARY." - - The LLGPL is also available online at - http://opensource.franz.com/preamble.html -*/ + * Copyright 1994-2010 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ #define SIGNAL_FOR_PROCESS_INTERRUPT SIGPWR #ifdef ANDROID diff --git a/lisp-kernel/os-solaris.h b/lisp-kernel/os-solaris.h index bfb79833e..a4b737b53 100644 --- a/lisp-kernel/os-solaris.h +++ b/lisp-kernel/os-solaris.h @@ -1,19 +1,18 @@ /* - Copyright (C) 2010 Clozure Associates - Copyright (C) 1994-2001 Digitool, Inc - This file is part of Clozure CL. - - Clozure CL is licensed under the terms of the Lisp Lesser GNU Public - License , known as the LLGPL and distributed with Clozure CL as the - file "LICENSE". The LLGPL consists of a preamble and the LGPL, - which is distributed with Clozure CL as the file "LGPL". Where these - conflict, the preamble takes precedence. - - Clozure CL is referenced in the preamble as the "LIBRARY." - - The LLGPL is also available online at - http://opensource.franz.com/preamble.html -*/ + * Copyright 1994-2010 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ #define SIGNAL_FOR_PROCESS_INTERRUPT SIGUSR1 #define SIG_SUSPEND_THREAD SIGUSR2 diff --git a/lisp-kernel/os-windows.h b/lisp-kernel/os-windows.h index b347284ca..75f9658e5 100644 --- a/lisp-kernel/os-windows.h +++ b/lisp-kernel/os-windows.h @@ -1,19 +1,18 @@ /* - Copyright (C) 2010 Clozure Associates - Copyright (C) 1994-2001 Digitool, Inc - This file is part of Clozure CL. - - Clozure CL is licensed under the terms of the Lisp Lesser GNU Public - License , known as the LLGPL and distributed with Clozure CL as the - file "LICENSE". The LLGPL consists of a preamble and the LGPL, - which is distributed with Clozure CL as the file "LGPL". Where these - conflict, the preamble takes precedence. - - Clozure CL is referenced in the preamble as the "LIBRARY." - - The LLGPL is also available online at - http://opensource.franz.com/preamble.html -*/ + * Copyright 1994-2010 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ #define SIGNAL_FOR_PROCESS_INTERRUPT SIGINT #ifndef SIGBUS diff --git a/lisp-kernel/pad.s b/lisp-kernel/pad.s index f314a597a..85092c05e 100644 --- a/lisp-kernel/pad.s +++ b/lisp-kernel/pad.s @@ -1,3 +1,18 @@ +/* + * Copyright 2016 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ .globl openmcl_low_address openmcl_low_address: nop diff --git a/lisp-kernel/platform-androidarm.h b/lisp-kernel/platform-androidarm.h index 924d6ca59..0a6b057d0 100644 --- a/lisp-kernel/platform-androidarm.h +++ b/lisp-kernel/platform-androidarm.h @@ -1,19 +1,18 @@ /* - Copyright (C) 2010 Clozure Associates - Copyright (C) 1994-2001 Digitool, Inc - This file is part of Clozure CL. - - Clozure CL is licensed under the terms of the Lisp Lesser GNU Public - License , known as the LLGPL and distributed with Clozure CL as the - file "LICENSE". The LLGPL consists of a preamble and the LGPL, - which is distributed with Clozure CL as the file "LGPL". Where these - conflict, the preamble takes precedence. - - Clozure CL is referenced in the preamble as the "LIBRARY." - - The LLGPL is also available online at - http://opensource.franz.com/preamble.html -*/ + * Copyright 1994-2010 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ #define WORD_SIZE 32 #define PLATFORM_OS PLATFORM_OS_ANDROID diff --git a/lisp-kernel/platform-darwinarm.h b/lisp-kernel/platform-darwinarm.h index deeb58496..3f688affd 100644 --- a/lisp-kernel/platform-darwinarm.h +++ b/lisp-kernel/platform-darwinarm.h @@ -1,19 +1,18 @@ /* - Copyright (C) 2010 Clozure Associates - Copyright (C) 1994-2001 Digitool, Inc - This file is part of Clozure CL. - - Clozure CL is licensed under the terms of the Lisp Lesser GNU Public - License , known as the LLGPL and distributed with Clozure CL as the - file "LICENSE". The LLGPL consists of a preamble and the LGPL, - which is distributed with Clozure CL as the file "LGPL". Where these - conflict, the preamble takes precedence. - - Clozure CL is referenced in the preamble as the "LIBRARY." - - The LLGPL is also available online at - http://opensource.franz.com/preamble.html -*/ + * Copyright 1994-2010 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ #define WORD_SIZE 32 #define PLATFORM_OS PLATFORM_OS_DARWIN diff --git a/lisp-kernel/platform-darwinx8632.h b/lisp-kernel/platform-darwinx8632.h index 777b234a7..601523754 100644 --- a/lisp-kernel/platform-darwinx8632.h +++ b/lisp-kernel/platform-darwinx8632.h @@ -1,19 +1,18 @@ /* - Copyright (C) 2010 Clozure Associates - Copyright (C) 1994-2001 Digitool, Inc - This file is part of Clozure CL. - - Clozure CL is licensed under the terms of the Lisp Lesser GNU Public - License , known as the LLGPL and distributed with Clozure CL as the - file "LICENSE". The LLGPL consists of a preamble and the LGPL, - which is distributed with Clozure CL as the file "LGPL". Where these - conflict, the preamble takes precedence. - - Clozure CL is referenced in the preamble as the "LIBRARY." - - The LLGPL is also available online at - http://opensource.franz.com/preamble.html -*/ + * Copyright 1994-2010 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ #define WORD_SIZE 32 #define PLATFORM_OS PLATFORM_OS_DARWIN diff --git a/lisp-kernel/platform-darwinx8664.h b/lisp-kernel/platform-darwinx8664.h index d635e122c..d3be3ffd4 100644 --- a/lisp-kernel/platform-darwinx8664.h +++ b/lisp-kernel/platform-darwinx8664.h @@ -1,19 +1,18 @@ /* - Copyright (C) 2010 Clozure Associates - Copyright (C) 1994-2001 Digitool, Inc - This file is part of Clozure CL. - - Clozure CL is licensed under the terms of the Lisp Lesser GNU Public - License , known as the LLGPL and distributed with Clozure CL as the - file "LICENSE". The LLGPL consists of a preamble and the LGPL, - which is distributed with Clozure CL as the file "LGPL". Where these - conflict, the preamble takes precedence. - - Clozure CL is referenced in the preamble as the "LIBRARY." - - The LLGPL is also available online at - http://opensource.franz.com/preamble.html -*/ + * Copyright 1994-2010 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ #define WORD_SIZE 64 #define PLATFORM_OS PLATFORM_OS_DARWIN diff --git a/lisp-kernel/platform-freebsdx8632.h b/lisp-kernel/platform-freebsdx8632.h index 1e0fa3710..b43b77d94 100644 --- a/lisp-kernel/platform-freebsdx8632.h +++ b/lisp-kernel/platform-freebsdx8632.h @@ -1,19 +1,18 @@ /* - Copyright (C) 2010 Clozure Associates - Copyright (C) 1994-2001 Digitool, Inc - This file is part of Clozure CL. - - Clozure CL is licensed under the terms of the Lisp Lesser GNU Public - License , known as the LLGPL and distributed with Clozure CL as the - file "LICENSE". The LLGPL consists of a preamble and the LGPL, - which is distributed with Clozure CL as the file "LGPL". Where these - conflict, the preamble takes precedence. - - Clozure CL is referenced in the preamble as the "LIBRARY." - - The LLGPL is also available online at - http://opensource.franz.com/preamble.html -*/ + * Copyright 1994-2010 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ #define WORD_SIZE 32 #define PLATFORM_OS PLATFORM_OS_FREEBSD diff --git a/lisp-kernel/platform-freebsdx8664.h b/lisp-kernel/platform-freebsdx8664.h index ca36cc2fa..68f7d0c37 100644 --- a/lisp-kernel/platform-freebsdx8664.h +++ b/lisp-kernel/platform-freebsdx8664.h @@ -1,19 +1,18 @@ /* - Copyright (C) 2010 Clozure Associates - Copyright (C) 1994-2001 Digitool, Inc - This file is part of Clozure CL. - - Clozure CL is licensed under the terms of the Lisp Lesser GNU Public - License , known as the LLGPL and distributed with Clozure CL as the - file "LICENSE". The LLGPL consists of a preamble and the LGPL, - which is distributed with Clozure CL as the file "LGPL". Where these - conflict, the preamble takes precedence. - - Clozure CL is referenced in the preamble as the "LIBRARY." - - The LLGPL is also available online at - http://opensource.franz.com/preamble.html -*/ + * Copyright 1994-2010 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ #define WORD_SIZE 64 #define PLATFORM_OS PLATFORM_OS_FREEBSD diff --git a/lisp-kernel/platform-linuxarm.h b/lisp-kernel/platform-linuxarm.h index 59e84eebc..270ecc89d 100644 --- a/lisp-kernel/platform-linuxarm.h +++ b/lisp-kernel/platform-linuxarm.h @@ -1,19 +1,18 @@ /* - Copyright (C) 2010 Clozure Associates - Copyright (C) 1994-2001 Digitool, Inc - This file is part of Clozure CL. - - Clozure CL is licensed under the terms of the Lisp Lesser GNU Public - License , known as the LLGPL and distributed with Clozure CL as the - file "LICENSE". The LLGPL consists of a preamble and the LGPL, - which is distributed with Clozure CL as the file "LGPL". Where these - conflict, the preamble takes precedence. - - Clozure CL is referenced in the preamble as the "LIBRARY." - - The LLGPL is also available online at - http://opensource.franz.com/preamble.html -*/ + * Copyright 1994-2010 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ #define WORD_SIZE 32 #define PLATFORM_OS PLATFORM_OS_LINUX diff --git a/lisp-kernel/platform-linuxppc.h b/lisp-kernel/platform-linuxppc.h index 0204da370..e19d45f23 100644 --- a/lisp-kernel/platform-linuxppc.h +++ b/lisp-kernel/platform-linuxppc.h @@ -1,19 +1,18 @@ /* - Copyright (C) 2010 Clozure Associates - Copyright (C) 1994-2001 Digitool, Inc - This file is part of Clozure CL. - - Clozure CL is licensed under the terms of the Lisp Lesser GNU Public - License , known as the LLGPL and distributed with Clozure CL as the - file "LICENSE". The LLGPL consists of a preamble and the LGPL, - which is distributed with Clozure CL as the file "LGPL". Where these - conflict, the preamble takes precedence. - - Clozure CL is referenced in the preamble as the "LIBRARY." - - The LLGPL is also available online at - http://opensource.franz.com/preamble.html -*/ + * Copyright 1994-2010 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ #define WORD_SIZE 32 #define PLATFORM_OS PLATFORM_OS_LINUX diff --git a/lisp-kernel/platform-linuxppc64.h b/lisp-kernel/platform-linuxppc64.h index 617b3cf10..dcd042ea8 100644 --- a/lisp-kernel/platform-linuxppc64.h +++ b/lisp-kernel/platform-linuxppc64.h @@ -1,19 +1,18 @@ /* - Copyright (C) 2010 Clozure Associates - Copyright (C) 1994-2001 Digitool, Inc - This file is part of Clozure CL. - - Clozure CL is licensed under the terms of the Lisp Lesser GNU Public - License , known as the LLGPL and distributed with Clozure CL as the - file "LICENSE". The LLGPL consists of a preamble and the LGPL, - which is distributed with Clozure CL as the file "LGPL". Where these - conflict, the preamble takes precedence. - - Clozure CL is referenced in the preamble as the "LIBRARY." - - The LLGPL is also available online at - http://opensource.franz.com/preamble.html -*/ + * Copyright 1994-2010 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ #define WORD_SIZE 64 #define PLATFORM_OS PLATFORM_OS_LINUX diff --git a/lisp-kernel/platform-linuxx8632.h b/lisp-kernel/platform-linuxx8632.h index 78ff12f1f..4b8902fa9 100644 --- a/lisp-kernel/platform-linuxx8632.h +++ b/lisp-kernel/platform-linuxx8632.h @@ -1,19 +1,18 @@ /* - Copyright (C) 2010 Clozure Associates - Copyright (C) 1994-2001 Digitool, Inc - This file is part of Clozure CL. - - Clozure CL is licensed under the terms of the Lisp Lesser GNU Public - License , known as the LLGPL and distributed with Clozure CL as the - file "LICENSE". The LLGPL consists of a preamble and the LGPL, - which is distributed with Clozure CL as the file "LGPL". Where these - conflict, the preamble takes precedence. - - Clozure CL is referenced in the preamble as the "LIBRARY." - - The LLGPL is also available online at - http://opensource.franz.com/preamble.html -*/ + * Copyright 1994-2010 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ #define WORD_SIZE 32 #define PLATFORM_OS PLATFORM_OS_LINUX diff --git a/lisp-kernel/platform-linuxx8664.h b/lisp-kernel/platform-linuxx8664.h index f1170803b..5cca2c967 100644 --- a/lisp-kernel/platform-linuxx8664.h +++ b/lisp-kernel/platform-linuxx8664.h @@ -1,19 +1,18 @@ /* - Copyright (C) 2010 Clozure Associates - Copyright (C) 1994-2001 Digitool, Inc - This file is part of Clozure CL. - - Clozure CL is licensed under the terms of the Lisp Lesser GNU Public - License , known as the LLGPL and distributed with Clozure CL as the - file "LICENSE". The LLGPL consists of a preamble and the LGPL, - which is distributed with Clozure CL as the file "LGPL". Where these - conflict, the preamble takes precedence. - - Clozure CL is referenced in the preamble as the "LIBRARY." - - The LLGPL is also available online at - http://opensource.franz.com/preamble.html -*/ + * Copyright 1994-2010 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ #define WORD_SIZE 64 #define PLATFORM_OS PLATFORM_OS_LINUX diff --git a/lisp-kernel/platform-solarisx64.h b/lisp-kernel/platform-solarisx64.h index eeee2ca4e..022d4c98e 100644 --- a/lisp-kernel/platform-solarisx64.h +++ b/lisp-kernel/platform-solarisx64.h @@ -1,19 +1,18 @@ /* - Copyright (C) 2010 Clozure Associates - Copyright (C) 1994-2001 Digitool, Inc - This file is part of Clozure CL. - - Clozure CL is licensed under the terms of the Lisp Lesser GNU Public - License , known as the LLGPL and distributed with Clozure CL as the - file "LICENSE". The LLGPL consists of a preamble and the LGPL, - which is distributed with Clozure CL as the file "LGPL". Where these - conflict, the preamble takes precedence. - - Clozure CL is referenced in the preamble as the "LIBRARY." - - The LLGPL is also available online at - http://opensource.franz.com/preamble.html -*/ + * Copyright 1994-2010 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ #define WORD_SIZE 64 #define PLATFORM_OS PLATFORM_OS_SOLARIS diff --git a/lisp-kernel/platform-solarisx86.h b/lisp-kernel/platform-solarisx86.h index 3cc0107da..2d1dcb310 100644 --- a/lisp-kernel/platform-solarisx86.h +++ b/lisp-kernel/platform-solarisx86.h @@ -1,19 +1,18 @@ /* - Copyright (C) 2010 Clozure Associates - Copyright (C) 1994-2001 Digitool, Inc - This file is part of Clozure CL. - - Clozure CL is licensed under the terms of the Lisp Lesser GNU Public - License , known as the LLGPL and distributed with Clozure CL as the - file "LICENSE". The LLGPL consists of a preamble and the LGPL, - which is distributed with Clozure CL as the file "LGPL". Where these - conflict, the preamble takes precedence. - - Clozure CL is referenced in the preamble as the "LIBRARY." - - The LLGPL is also available online at - http://opensource.franz.com/preamble.html -*/ + * Copyright 1994-2010 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ #define WORD_SIZE 32 #define PLATFORM_OS PLATFORM_OS_SOLARIS diff --git a/lisp-kernel/platform-win32.h b/lisp-kernel/platform-win32.h index 389d04e10..8f8b894d9 100644 --- a/lisp-kernel/platform-win32.h +++ b/lisp-kernel/platform-win32.h @@ -1,19 +1,18 @@ /* - Copyright (C) 2010 Clozure Associates - Copyright (C) 1994-2001 Digitool, Inc - This file is part of Clozure CL. - - Clozure CL is licensed under the terms of the Lisp Lesser GNU Public - License , known as the LLGPL and distributed with Clozure CL as the - file "LICENSE". The LLGPL consists of a preamble and the LGPL, - which is distributed with Clozure CL as the file "LGPL". Where these - conflict, the preamble takes precedence. - - Clozure CL is referenced in the preamble as the "LIBRARY." - - The LLGPL is also available online at - http://opensource.franz.com/preamble.html -*/ + * Copyright 1994-2010 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ #define WORD_SIZE 32 #define PLATFORM_OS PLATFORM_OS_WINDOWS diff --git a/lisp-kernel/platform-win64.h b/lisp-kernel/platform-win64.h index 76b7b36d2..a73fe71e0 100644 --- a/lisp-kernel/platform-win64.h +++ b/lisp-kernel/platform-win64.h @@ -1,19 +1,18 @@ /* - Copyright (C) 2010 Clozure Associates - Copyright (C) 1994-2001 Digitool, Inc - This file is part of Clozure CL. - - Clozure CL is licensed under the terms of the Lisp Lesser GNU Public - License , known as the LLGPL and distributed with Clozure CL as the - file "LICENSE". The LLGPL consists of a preamble and the LGPL, - which is distributed with Clozure CL as the file "LGPL". Where these - conflict, the preamble takes precedence. - - Clozure CL is referenced in the preamble as the "LIBRARY." - - The LLGPL is also available online at - http://opensource.franz.com/preamble.html -*/ + * Copyright 1994-2010 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ #define WORD_SIZE 64 #define PLATFORM_OS PLATFORM_OS_WINDOWS diff --git a/lisp-kernel/plbt.c b/lisp-kernel/plbt.c index e6b89262d..51d1e929a 100644 --- a/lisp-kernel/plbt.c +++ b/lisp-kernel/plbt.c @@ -1,19 +1,18 @@ /* - Copyright (C) 2009 Clozure Associates - Copyright (C) 1994-2001 Digitool, Inc - This file is part of Clozure CL. - - Clozure CL is licensed under the terms of the Lisp Lesser GNU Public - License , known as the LLGPL and distributed with Clozure CL as the - file "LICENSE". The LLGPL consists of a preamble and the LGPL, - which is distributed with Clozure CL as the file "LGPL". Where these - conflict, the preamble takes precedence. - - Clozure CL is referenced in the preamble as the "LIBRARY." - - The LLGPL is also available online at - http://opensource.franz.com/preamble.html -*/ + * Copyright 1994-2009 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ #include "lispdcmd.h" #ifdef LINUX diff --git a/lisp-kernel/plprint.c b/lisp-kernel/plprint.c index 27b114169..a8df05f7e 100644 --- a/lisp-kernel/plprint.c +++ b/lisp-kernel/plprint.c @@ -1,19 +1,18 @@ /* - Copyright (C) 2009 Clozure Associates - Copyright (C) 1994-2001 Digitool, Inc - This file is part of Clozure CL. - - Clozure CL is licensed under the terms of the Lisp Lesser GNU Public - License , known as the LLGPL and distributed with Clozure CL as the - file "LICENSE". The LLGPL consists of a preamble and the LGPL, - which is distributed with Clozure CL as the file "LGPL". Where these - conflict, the preamble takes precedence. - - Clozure CL is referenced in the preamble as the "LIBRARY." - - The LLGPL is also available online at - http://opensource.franz.com/preamble.html -*/ + * Copyright 1994-2009 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ #include "lispdcmd.h" diff --git a/lisp-kernel/plsym.c b/lisp-kernel/plsym.c index 8763b1a59..96fb12d28 100644 --- a/lisp-kernel/plsym.c +++ b/lisp-kernel/plsym.c @@ -1,19 +1,18 @@ /* - Copyright (C) 2009 Clozure Associates - Copyright (C) 1994-2001 Digitool, Inc - This file is part of Clozure CL. - - Clozure CL is licensed under the terms of the Lisp Lesser GNU Public - License , known as the LLGPL and distributed with Clozure CL as the - file "LICENSE". The LLGPL consists of a preamble and the LGPL, - which is distributed with Clozure CL as the file "LGPL". Where these - conflict, the preamble takes precedence. - - Clozure CL is referenced in the preamble as the "LIBRARY." - - The LLGPL is also available online at - http://opensource.franz.com/preamble.html -*/ + * Copyright 1994-2009 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ #include "lispdcmd.h" diff --git a/lisp-kernel/pmcl-kernel.c b/lisp-kernel/pmcl-kernel.c index 4609214d8..9c8d07bcc 100644 --- a/lisp-kernel/pmcl-kernel.c +++ b/lisp-kernel/pmcl-kernel.c @@ -1,19 +1,18 @@ /* - Copyright (C) 2009 Clozure Associates - Copyright (C) 1994-2001 Digitool, Inc - This file is part of Clozure CL. - - Clozure CL is licensed under the terms of the Lisp Lesser GNU Public - License , known as the LLGPL and distributed+ with Clozure CL as the - file "LICENSE". The LLGPL consists of a preamble and the LGPL, - which is distributed with Clozure CL as the file "LGPL". Where these - conflict, the preamble takes precedence. - - Clozure CL is referenced in the preamble as the "LIBRARY." - - The LLGPL is also available online at - http://opensource.franz.com/preamble.html -*/ + * Copyright 1994-2009 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ #include "lisp.h" #include "lisp_globals.h" diff --git a/lisp-kernel/ppc-asmutils.s b/lisp-kernel/ppc-asmutils.s index 4702b1379..18c56865b 100644 --- a/lisp-kernel/ppc-asmutils.s +++ b/lisp-kernel/ppc-asmutils.s @@ -1,18 +1,18 @@ -/* Copyright (C) 2009 Clozure Associates */ -/* Copyright (C) 1994-2001 Digitool, Inc */ -/* This file is part of Clozure CL. */ - -/* Clozure CL is licensed under the terms of the Lisp Lesser GNU Public */ -/* License , known as the LLGPL and distributed with Clozure CL as the */ -/* file "LICENSE". The LLGPL consists of a preamble and the LGPL, */ -/* which is distributed with Clozure CL as the file "LGPL". Where these */ -/* conflict, the preamble takes precedence. */ - -/* Clozure CL is referenced in the preamble as the "LIBRARY." */ - -/* The LLGPL is also available online at */ -/* http://opensource.franz.com/preamble.html */ - +/* + * Copyright 1994-2009 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ diff --git a/lisp-kernel/ppc-constants.h b/lisp-kernel/ppc-constants.h index cce71c2d6..447400606 100644 --- a/lisp-kernel/ppc-constants.h +++ b/lisp-kernel/ppc-constants.h @@ -1,19 +1,18 @@ /* - Copyright (C) 2009 Clozure Associates - Copyright (C) 1994-2001 Digitool, Inc - This file is part of Clozure CL. - - Clozure CL is licensed under the terms of the Lisp Lesser GNU Public - License , known as the LLGPL and distributed with Clozure CL as the - file "LICENSE". The LLGPL consists of a preamble and the LGPL, - which is distributed with Clozure CL as the file "LGPL". Where these - conflict, the preamble takes precedence. - - Clozure CL is referenced in the preamble as the "LIBRARY." - - The LLGPL is also available online at - http://opensource.franz.com/preamble.html -*/ + * Copyright 1994-2009 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ #include "constants.h" diff --git a/lisp-kernel/ppc-constants.s b/lisp-kernel/ppc-constants.s index 397184c12..211910b60 100644 --- a/lisp-kernel/ppc-constants.s +++ b/lisp-kernel/ppc-constants.s @@ -1,17 +1,18 @@ -/* Copyright (C) 2004-2009 Clozure Associates */ -/* This file is part of Clozure CL. */ - -/* Clozure CL is licensed under the terms of the Lisp Lesser GNU Public */ -/* License , known as the LLGPL and distributed with Clozure CL as the */ -/* file "LICENSE". The LLGPL consists of a preamble and the LGPL, */ -/* which is distributed with Clozure CL as the file "LGPL". Where these */ -/* conflict, the preamble takes precedence. */ - -/* Clozure CL is referenced in the preamble as the "LIBRARY." */ - -/* The LLGPL is also available online at */ -/* http://opensource.franz.com/preamble.html */ - +/* + * Copyright 2004-2009 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ /* Register usage: */ diff --git a/lisp-kernel/ppc-constants32.h b/lisp-kernel/ppc-constants32.h index 0f31ac173..b53a7194a 100644 --- a/lisp-kernel/ppc-constants32.h +++ b/lisp-kernel/ppc-constants32.h @@ -1,19 +1,18 @@ /* - Copyright (C) 2009 Clozure Associates - Copyright (C) 1994-2001 Digitool, Inc - This file is part of Clozure CL. - - Clozure CL is licensed under the terms of the Lisp Lesser GNU Public - License , known as the LLGPL and distributed with Clozure CL as the - file "LICENSE". The LLGPL consists of a preamble and the LGPL, - which is distributed with Clozure CL as the file "LGPL". Where these - conflict, the preamble takes precedence. - - Clozure CL is referenced in the preamble as the "LIBRARY." - - The LLGPL is also available online at - http://opensource.franz.com/preamble.html -*/ + * Copyright 1994-2009 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ #ifndef __constants32__ #define __constants32__ 1 diff --git a/lisp-kernel/ppc-constants32.s b/lisp-kernel/ppc-constants32.s index d816e79fc..8d62fd7e9 100644 --- a/lisp-kernel/ppc-constants32.s +++ b/lisp-kernel/ppc-constants32.s @@ -1,18 +1,18 @@ -/* Copyright (C) 2009 Clozure Associates */ -/* Copyright (C) 1994-2001 Digitool, Inc */ -/* This file is part of Clozure CL. */ - -/* Clozure CL is licensed under the terms of the Lisp Lesser GNU Public */ -/* License , known as the LLGPL and distributed with Clozure CL as the */ -/* file "LICENSE". The LLGPL consists of a preamble and the LGPL, */ -/* which is distributed with Clozure CL as the file "LGPL". Where these */ -/* conflict, the preamble takes precedence. */ - -/* Clozure CL is referenced in the preamble as the "LIBRARY." */ - -/* The LLGPL is also available online at */ -/* http://opensource.franz.com/preamble.html */ - +/* + * Copyright 1994-2009 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ define(`rcontext',`r13') diff --git a/lisp-kernel/ppc-constants64.h b/lisp-kernel/ppc-constants64.h index a896acfd7..a778fe2b1 100644 --- a/lisp-kernel/ppc-constants64.h +++ b/lisp-kernel/ppc-constants64.h @@ -1,19 +1,18 @@ /* - Copyright (C) 2003-2009, Clozure Associates. - Copyright (C) 1994-2001 Digitool, Inc - This file is part of Clozure CL. - - Clozure CL is licensed under the terms of the Lisp Lesser GNU Public - License , known as the LLGPL and distributed with Clozure CL as the - file "LICENSE". The LLGPL consists of a preamble and the LGPL, - which is distributed with Clozure CL as the file "LGPL". Where these - conflict, the preamble takes precedence. - - Clozure CL is referenced in the preamble as the "LIBRARY." - - The LLGPL is also available online at - http://opensource.franz.com/preamble.html -*/ + * Copyright 1994-2009 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ #include "ppc-constants.h" diff --git a/lisp-kernel/ppc-constants64.s b/lisp-kernel/ppc-constants64.s index f6d133ac9..12e2c4a43 100644 --- a/lisp-kernel/ppc-constants64.s +++ b/lisp-kernel/ppc-constants64.s @@ -1,18 +1,18 @@ -/* Copyright (C) 2003-2009, Clozure Associates. */ -/* Copyright (C) 1994-2001 Digitool, Inc */ -/* This file is part of Clozure CL. */ - -/* Clozure CL is licensed under the terms of the Lisp Lesser GNU Public */ -/* License , known as the LLGPL and distributed with Clozure CL as the */ -/* file "LICENSE". The LLGPL consists of a preamble and the LGPL, */ -/* which is distributed with Clozure CL as the file "LGPL". Where these */ -/* conflict, the preamble takes precedence. */ - -/* Clozure CL is referenced in the preamble as the "LIBRARY." */ - -/* The LLGPL is also available online at */ -/* http://opensource.franz.com/preamble.html */ - +/* + * Copyright 1994-2009 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ define(`rcontext',`r2') diff --git a/lisp-kernel/ppc-exceptions.c b/lisp-kernel/ppc-exceptions.c index fb46ea435..6cb346ce5 100644 --- a/lisp-kernel/ppc-exceptions.c +++ b/lisp-kernel/ppc-exceptions.c @@ -1,19 +1,18 @@ /* - Copyright (C) 2009 Clozure Associates - Copyright (C) 1994-2001 Digitool, Inc - This file is part of Clozure CL. - - Clozure CL is licensed under the terms of the Lisp Lesser GNU Public - License , known as the LLGPL and distributed with Clozure CL as the - file "LICENSE". The LLGPL consists of a preamble and the LGPL, - which is distributed with Clozure CL as the file "LGPL". Where these - conflict, the preamble takes precedence. - - Clozure CL is referenced in the preamble as the "LIBRARY." - - The LLGPL is also available online at - http://opensource.franz.com/preamble.html -*/ + * Copyright 1994-2009 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ #include "lisp.h" #include "lisp-exceptions.h" diff --git a/lisp-kernel/ppc-exceptions.h b/lisp-kernel/ppc-exceptions.h index 6e9089cde..bcc6c80a3 100644 --- a/lisp-kernel/ppc-exceptions.h +++ b/lisp-kernel/ppc-exceptions.h @@ -1,19 +1,18 @@ /* - Copyright (C) 2009 Clozure Associates - Copyright (C) 1994-2001 Digitool, Inc - This file is part of Clozure CL. - - Clozure CL is licensed under the terms of the Lisp Lesser GNU Public - License , known as the LLGPL and distributed with Clozure CL as the - file "LICENSE". The LLGPL consists of a preamble and the LGPL, - which is distributed with Clozure CL as the file "LGPL". Where these - conflict, the preamble takes precedence. - - Clozure CL is referenced in the preamble as the "LIBRARY." - - The LLGPL is also available online at - http://opensource.franz.com/preamble.html -*/ + * Copyright 1994-2009 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ #define UUO_MASK 0xfc00000f #define IS_UUO(i) (((i) & UUO_MASK) == 0xb) diff --git a/lisp-kernel/ppc-gc.c b/lisp-kernel/ppc-gc.c index 1eca46936..52db2b391 100644 --- a/lisp-kernel/ppc-gc.c +++ b/lisp-kernel/ppc-gc.c @@ -1,19 +1,18 @@ /* - Copyright (C) 2009 Clozure Associates - Copyright (C) 1994-2001 Digitool, Inc - This file is part of Clozure CL. - - Clozure CL is licensed under the terms of the Lisp Lesser GNU Public - License , known as the LLGPL and distributed with Clozure CL as the - file "LICENSE". The LLGPL consists of a preamble and the LGPL, - which is distributed with Clozure CL as the file "LGPL". Where these - conflict, the preamble takes precedence. - - Clozure CL is referenced in the preamble as the "LIBRARY." - - The LLGPL is also available online at - http://opensource.franz.com/preamble.html -*/ + * Copyright 1994-2009 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ #include "lisp.h" #include "lisp_globals.h" diff --git a/lisp-kernel/ppc-macros.s b/lisp-kernel/ppc-macros.s index eac2dc48d..db80b52ee 100644 --- a/lisp-kernel/ppc-macros.s +++ b/lisp-kernel/ppc-macros.s @@ -1,18 +1,18 @@ -/* Copyright (C) 2009 Clozure Associates */ -/* Copyright (C) 1994-2001 Digitool, Inc */ -/* This file is part of Clozure CL. */ - -/* Clozure CL is licensed under the terms of the Lisp Lesser GNU Public */ -/* License , known as the LLGPL and distributed with Clozure CL as the */ -/* file "LICENSE". The LLGPL consists of a preamble and the LGPL, */ -/* which is distributed with Clozure CL as the file "LGPL". Where these */ -/* conflict, the preamble takes precedence. */ - -/* Clozure CL is referenced in the preamble as the "LIBRARY." */ - -/* The LLGPL is also available online at */ -/* http://opensource.franz.com/preamble.html */ - +/* + * Copyright 1994-2009 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ /* The assembler has to do the arithmetic here: the expression */ /* may not be evaluable by m4. */ define(`lwi',`ifdef(`DARWIN',` diff --git a/lisp-kernel/ppc-spentry.s b/lisp-kernel/ppc-spentry.s index 2e3251d31..51deeba89 100644 --- a/lisp-kernel/ppc-spentry.s +++ b/lisp-kernel/ppc-spentry.s @@ -1,18 +1,18 @@ -/* Copyright (C) 2009 Clozure Associates */ -/* Copyright (C) 1994-2001 Digitool, Inc */ -/* This file is part of Clozure CL. */ - -/* Clozure CL is licensed under the terms of the Lisp Lesser GNU Public */ -/* License , known as the LLGPL and distributed with Clozure CL as the */ -/* file "LICENSE". The LLGPL consists of a preamble and the LGPL, */ -/* which is distributed with Clozure CL as the file "LGPL". Where these */ -/* conflict, the preamble takes precedence. */ - -/* Clozure CL is referenced in the preamble as the "LIBRARY." */ - -/* The LLGPL is also available online at */ -/* http://opensource.franz.com/preamble.html */ - +/* + * Copyright 1994-2009 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ include(lisp.s) diff --git a/lisp-kernel/ppc-spjump.s b/lisp-kernel/ppc-spjump.s index 8aff032f9..df3ff34d4 100644 --- a/lisp-kernel/ppc-spjump.s +++ b/lisp-kernel/ppc-spjump.s @@ -1,18 +1,18 @@ -/* Copyright (C) 2009 Clozure Associates */ -/* Copyright (C) 1994-2001 Digitool, Inc */ -/* This file is part of Clozure CL. */ - -/* Clozure CL is licensed under the terms of the Lisp Lesser GNU Public */ -/* License , known as the LLGPL and distributed with Clozure CL as the */ -/* file "LICENSE". The LLGPL consists of a preamble and the LGPL, */ -/* which is distributed with Clozure CL as the file "LGPL". Where these */ -/* conflict, the preamble takes precedence. */ - -/* Clozure CL is referenced in the preamble as the "LIBRARY." */ - -/* The LLGPL is also available online at */ -/* http://opensource.franz.com/preamble.html */ - +/* + * Copyright 1994-2009 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ include(lisp.s) _beginfile diff --git a/lisp-kernel/ppc-subprims.s b/lisp-kernel/ppc-subprims.s index 8e8cb9bc9..87a5df8a9 100644 --- a/lisp-kernel/ppc-subprims.s +++ b/lisp-kernel/ppc-subprims.s @@ -1,18 +1,18 @@ -/* Copyright (C) 2009 Clozure Associates */ -/* Copyright (C) 1994-2001 Digitool, Inc */ -/* This file is part of Clozure CL. */ - -/* Clozure CL is licensed under the terms of the Lisp Lesser GNU Public */ -/* License , known as the LLGPL and distributed with Clozure CL as the */ -/* file "LICENSE". The LLGPL consists of a preamble and the LGPL, */ -/* which is distributed with Clozure CL as the file "LGPL". Where these */ -/* conflict, the preamble takes precedence. */ - -/* Clozure CL is referenced in the preamble as the "LIBRARY." */ - -/* The LLGPL is also available online at */ -/* http://opensource.franz.com/preamble.html */ - +/* + * Copyright 1994-2009 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ include(lisp.s) diff --git a/lisp-kernel/ppc-uuo.s b/lisp-kernel/ppc-uuo.s index 4315b8f03..0de7427ec 100644 --- a/lisp-kernel/ppc-uuo.s +++ b/lisp-kernel/ppc-uuo.s @@ -1,18 +1,18 @@ -/* Copyright (C) 2009 Clozure Associates */ -/* Copyright (C) 1994-2001 Digitool, Inc */ -/* This file is part of Clozure CL. */ - -/* Clozure CL is licensed under the terms of the Lisp Lesser GNU Public */ -/* License , known as the LLGPL and distributed with Clozure CL as the */ -/* file "LICENSE". The LLGPL consists of a preamble and the LGPL, */ -/* which is distributed with Clozure CL as the file "LGPL". Where these */ -/* conflict, the preamble takes precedence. */ - -/* Clozure CL is referenced in the preamble as the "LIBRARY." */ - -/* The LLGPL is also available online at */ -/* http://opensource.franz.com/preamble.html */ - +/* + * Copyright 1994-2009 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ diff --git a/lisp-kernel/ppc_print.c b/lisp-kernel/ppc_print.c index 1c67a9909..e1461b932 100644 --- a/lisp-kernel/ppc_print.c +++ b/lisp-kernel/ppc_print.c @@ -1,19 +1,18 @@ /* - Copyright (C) 2009 Clozure Associates - Copyright (C) 1994-2001 Digitool, Inc - This file is part of Clozure CL. - - Clozure CL is licensed under the terms of the Lisp Lesser GNU Public - License , known as the LLGPL and distributed with Clozure CL as the - file "LICENSE". The LLGPL consists of a preamble and the LGPL, - which is distributed with Clozure CL as the file "LGPL". Where these - conflict, the preamble takes precedence. - - Clozure CL is referenced in the preamble as the "LIBRARY." - - The LLGPL is also available online at - http://opensource.franz.com/preamble.html -*/ + * Copyright 1994-2009 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ #include #include diff --git a/lisp-kernel/solarisx64/Makefile b/lisp-kernel/solarisx64/Makefile index 59cdd7b6d..858ad7de5 100644 --- a/lisp-kernel/solarisx64/Makefile +++ b/lisp-kernel/solarisx64/Makefile @@ -1,17 +1,17 @@ # -# Copyright (C) 2006 Clozure Associates and contributors -# This file is part of Clozure CL. +# Copyright 2006 Clozure Associates # -# Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -# License , known as the LLGPL and distributed with Clozure CL as the -# file "LICENSE". The LLGPL consists of a preamble and the LGPL, -# which is distributed with Clozure CL as the file "LGPL". Where these -# conflict, the preamble takes precedence. +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at # -# Clozure CL is referenced in the preamble as the "LIBRARY." +# http://www.apache.org/licenses/LICENSE-2.0 # -# The LLGPL is also available online at -# http://opensource.franz.com/preamble.html +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. SVN_REVISION := "$(shell svnversion || echo unknown)" diff --git a/lisp-kernel/solarisx86/Makefile b/lisp-kernel/solarisx86/Makefile index 4029e9168..9153271ac 100644 --- a/lisp-kernel/solarisx86/Makefile +++ b/lisp-kernel/solarisx86/Makefile @@ -1,17 +1,17 @@ # -# Copyright (C) 2006 Clozure Associates and contributors -# This file is part of Clozure CL. +# Copyright 2006 Clozure Associates # -# Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -# License , known as the LLGPL and distributed with Clozure CL as the -# file "LICENSE". The LLGPL consists of a preamble and the LGPL, -# which is distributed with Clozure CL as the file "LGPL". Where these -# conflict, the preamble takes precedence. +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at # -# Clozure CL is referenced in the preamble as the "LIBRARY." +# http://www.apache.org/licenses/LICENSE-2.0 # -# The LLGPL is also available online at -# http://opensource.franz.com/preamble.html +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. SVN_REVISION := "$(shell svnversion || echo unknown)" diff --git a/lisp-kernel/static-linuxppc/Makefile b/lisp-kernel/static-linuxppc/Makefile index 72104c56f..00c0af113 100644 --- a/lisp-kernel/static-linuxppc/Makefile +++ b/lisp-kernel/static-linuxppc/Makefile @@ -1,17 +1,17 @@ # -# Copyright (C) 1994-2001 Digitool, Inc -# This file is part of OpenMCL. +# Copyright 1994-2001 Clozure Associates # -# OpenMCL is licensed under the terms of the Lisp Lesser GNU Public -# License , known as the LLGPL and distributed with OpenMCL as the -# file "LICENSE". The LLGPL consists of a preamble and the LGPL, -# which is distributed with OpenMCL as the file "LGPL". Where these -# conflict, the preamble takes precedence. +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at # -# OpenMCL is referenced in the preamble as the "LIBRARY." +# http://www.apache.org/licenses/LICENSE-2.0 # -# The LLGPL is also available online at -# http://opensource.franz.com/preamble.html +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. OPENMCL_MAJOR_VERSION=0 OPENMCL_MINOR_VERSION=14 diff --git a/lisp-kernel/thread_manager.c b/lisp-kernel/thread_manager.c index b9e95ff24..7806bbbb5 100644 --- a/lisp-kernel/thread_manager.c +++ b/lisp-kernel/thread_manager.c @@ -1,19 +1,18 @@ /* - Copyright (C) 2009 Clozure Associates - Copyright (C) 1994-2001 Digitool, Inc - This file is part of Clozure CL. - - Clozure CL is licensed under the terms of the Lisp Lesser GNU Public - License , known as the LLGPL and distributed with Clozure CL as the - file "LICENSE". The LLGPL consists of a preamble and the LGPL, - which is distributed with Clozure CL as the file "LGPL". Where these - conflict, the preamble takes precedence. - - Clozure CL is referenced in the preamble as the "LIBRARY." - - The LLGPL is also available online at - http://opensource.franz.com/preamble.html -*/ + * Copyright 1994-2009 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ #include "threads.h" diff --git a/lisp-kernel/threads.h b/lisp-kernel/threads.h index 7204bc84f..4a79fa21b 100644 --- a/lisp-kernel/threads.h +++ b/lisp-kernel/threads.h @@ -1,19 +1,18 @@ /* - Copyright (C) 2009 Clozure Associates - Copyright (C) 1994-2001 Digitool, Inc - This file is part of Clozure CL. - - Clozure CL is licensed under the terms of the Lisp Lesser GNU Public - License , known as the LLGPL and distributed with Clozure CL as the - file "LICENSE". The LLGPL consists of a preamble and the LGPL, - which is distributed with Clozure CL as the file "LGPL". Where these - conflict, the preamble takes precedence. - - Clozure CL is referenced in the preamble as the "LIBRARY." - - The LLGPL is also available online at - http://opensource.franz.com/preamble.html -*/ + * Copyright 1994-2009 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ #include #ifndef WINDOWS diff --git a/lisp-kernel/unix-calls.c b/lisp-kernel/unix-calls.c index ddf17cc14..8243c92af 100644 --- a/lisp-kernel/unix-calls.c +++ b/lisp-kernel/unix-calls.c @@ -1,18 +1,18 @@ /* - Copyright (C) 2008-2009, Clozure Associates and contributors - This file is part of Clozure CL. - - Clozure CL is licensed under the terms of the Lisp Lesser GNU Public - License , known as the LLGPL and distributed with Clozure CL as the - file "LICENSE". The LLGPL consists of a preamble and the LGPL, - which is distributed with Clozure CL as the file "LGPL". Where these - conflict, the preamble takes precedence. - - Clozure CL is referenced in the preamble as the "LIBRARY." - - The LLGPL is also available online at - http://opensource.franz.com/preamble.html -*/ + * Copyright 2008-2009 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ /* Provide wrappers around some standard C library functions that can't easily be called from CCL's FFI for some reason (or where diff --git a/lisp-kernel/win32/Makefile b/lisp-kernel/win32/Makefile index 7a2681b2d..823f936be 100644 --- a/lisp-kernel/win32/Makefile +++ b/lisp-kernel/win32/Makefile @@ -1,17 +1,17 @@ # -# Copyright (C) 2008-2011 Clozure Associates -# This file is part of Clozure CL. +# Copyright 2008-2011 Clozure Associates # -# Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -# License , known as the LLGPL and distributed with Clozure CL as the -# file "LICENSE". The LLGPL consists of a preamble and the LGPL, -# which is distributed with Clozure CL as the file "LGPL". Where these -# conflict, the preamble takes precedence. +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at # -# Clozure CL is referenced in the preamble as the "LIBRARY." +# http://www.apache.org/licenses/LICENSE-2.0 # -# The LLGPL is also available online at -# http://opensource.franz.com/preamble.html +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. # This makefile is written to be used with the mingw toolchain # running in the Cygwin environment. diff --git a/lisp-kernel/win64/Makefile b/lisp-kernel/win64/Makefile index 2dd1305ae..084525eab 100644 --- a/lisp-kernel/win64/Makefile +++ b/lisp-kernel/win64/Makefile @@ -1,17 +1,17 @@ # -# Copyright (C) 2007-2011 Clozure Associates -# This file is part of Clozure CL. +# Copyright 2007-2011 Clozure Associates # -# Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -# License , known as the LLGPL and distributed with Clozure CL as the -# file "LICENSE". The LLGPL consists of a preamble and the LGPL, -# which is distributed with Clozure CL as the file "LGPL". Where these -# conflict, the preamble takes precedence. +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at # -# Clozure CL is referenced in the preamble as the "LIBRARY." +# http://www.apache.org/licenses/LICENSE-2.0 # -# The LLGPL is also available online at -# http://opensource.franz.com/preamble.html +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. # This makefile is written to be used with the mingw toolchain # running in the Cygwin environment. diff --git a/lisp-kernel/windows-calls.c b/lisp-kernel/windows-calls.c index 1c6a8ff4d..b2a10d554 100644 --- a/lisp-kernel/windows-calls.c +++ b/lisp-kernel/windows-calls.c @@ -1,18 +1,18 @@ /* - Copyright (C) 2008-2009, Clozure Associates and contributors, - This file is part of Clozure CL. - - Clozure CL is licensed under the terms of the Lisp Lesser GNU Public - License , known as the LLGPL and distributed with Clozure CL as the - file "LICENSE". The LLGPL consists of a preamble and the LGPL, - which is distributed with Clozure CL as the file "LGPL". Where these - conflict, the preamble takes precedence. - - Clozure CL is referenced in the preamble as the "LIBRARY." - - The LLGPL is also available online at - http://opensource.franz.com/preamble.html -*/ + * Copyright 2008-2009 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ #include "lisp.h" #include "x86-exceptions.h" diff --git a/lisp-kernel/x86-asmutils32.s b/lisp-kernel/x86-asmutils32.s index ca8b876a1..5725fab57 100644 --- a/lisp-kernel/x86-asmutils32.s +++ b/lisp-kernel/x86-asmutils32.s @@ -1,17 +1,18 @@ -/* Copyright (C) 2005-2009 Clozure Associates */ -/* This file is part of Clozure CL. */ - -/* Clozure CL is licensed under the terms of the Lisp Lesser GNU Public */ -/* License , known as the LLGPL and distributed with Clozure CL as the */ -/* file "LICENSE". The LLGPL consists of a preamble and the LGPL, */ -/* which is distributed with Clozure CL as the file "LGPL". Where these */ -/* conflict, the preamble takes precedence. */ - -/* Clozure CL is referenced in the preamble as the "LIBRARY." */ - -/* The LLGPL is also available online at */ -/* http://opensource.franz.com/preamble.html */ - +/* + * Copyright 2005-2009 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ diff --git a/lisp-kernel/x86-asmutils64.s b/lisp-kernel/x86-asmutils64.s index 6faf4ef21..73004945c 100644 --- a/lisp-kernel/x86-asmutils64.s +++ b/lisp-kernel/x86-asmutils64.s @@ -1,17 +1,18 @@ -/* Copyright (C) 2005-2009 Clozure Associates */ -/* This file is part of Clozure CL. */ - -/* Clozure CL is licensed under the terms of the Lisp Lesser GNU Public */ -/* License , known as the LLGPL and distributed with Clozure CL as the */ -/* file "LICENSE". The LLGPL consists of a preamble and the LGPL, */ -/* which is distributed with Clozure CL as the file "LGPL". Where these */ -/* conflict, the preamble takes precedence. */ - -/* Clozure CL is referenced in the preamble as the "LIBRARY." */ - -/* The LLGPL is also available online at */ -/* http://opensource.franz.com/preamble.html */ - +/* + * Copyright 2005-2009 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ diff --git a/lisp-kernel/x86-constants.h b/lisp-kernel/x86-constants.h index 19ded4c45..ae56c349c 100644 --- a/lisp-kernel/x86-constants.h +++ b/lisp-kernel/x86-constants.h @@ -1,18 +1,18 @@ /* - Copyright (C) 2005-2009 Clozure Associates - This file is part of Clozure CL. - - Clozure CL is licensed under the terms of the Lisp Lesser GNU Public - License , known as the LLGPL and distributed with Clozure CL as the - file "LICENSE". The LLGPL consists of a preamble and the LGPL, - which is distributed with Clozure CL as the file "LGPL". Where these - conflict, the preamble takes precedence. - - Clozure CL is referenced in the preamble as the "LIBRARY." - - The LLGPL is also available online at - http://opensource.franz.com/preamble.html -*/ + * Copyright 2005-2009 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ #include "constants.h" diff --git a/lisp-kernel/x86-constants.s b/lisp-kernel/x86-constants.s index f16db65f3..964364130 100644 --- a/lisp-kernel/x86-constants.s +++ b/lisp-kernel/x86-constants.s @@ -1,17 +1,18 @@ -/* Copyright (C) 2005-2009 Clozure Associates */ -/* This file is part of Clozure CL. */ - -/* Clozure CL is licensed under the terms of the Lisp Lesser GNU Public */ -/* License , known as the LLGPL and distributed with Clozure CL as the */ -/* file "LICENSE". The LLGPL consists of a preamble and the LGPL, */ -/* which is distributed with Clozure CL as the file "LGPL". Where these */ -/* conflict, the preamble takes precedence. */ - -/* Clozure CL is referenced in the preamble as the "LIBRARY." */ - -/* The LLGPL is also available online at */ -/* http://opensource.franz.com/preamble.html */ - +/* + * Copyright 2005-2009 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ diff --git a/lisp-kernel/x86-constants32.h b/lisp-kernel/x86-constants32.h index 7b0a85e36..5cdc50e58 100644 --- a/lisp-kernel/x86-constants32.h +++ b/lisp-kernel/x86-constants32.h @@ -1,19 +1,18 @@ /* - Copyright (C) 2009 Clozure Associates - Copyright (C) 1994-2001 Digitool, Inc - This file is part of Clozure CL. - - Clozure CL is licensed under the terms of the Lisp Lesser GNU Public - License , known as the LLGPL and distributed with Clozure CL as the - file "LICENSE". The LLGPL consists of a preamble and the LGPL, - which is distributed with Clozure CL as the file "LGPL". Where these - conflict, the preamble takes precedence. - - Clozure CL is referenced in the preamble as the "LIBRARY." - - The LLGPL is also available online at - http://opensource.franz.com/preamble.html -*/ + * Copyright 1994-2009 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ #include "x86-constants.h" diff --git a/lisp-kernel/x86-constants32.s b/lisp-kernel/x86-constants32.s index 684d2552b..b248e20b3 100644 --- a/lisp-kernel/x86-constants32.s +++ b/lisp-kernel/x86-constants32.s @@ -1,19 +1,18 @@ /* - Copyright (C) 2006-2012 Clozure Associates - - This file is part of Clozure CL. - - Clozure CL is licensed under the terms of the Lisp Lesser GNU Public - License , known as the LLGPL and distributed with Clozure CL as the - file "LICENSE". The LLGPL consists of a preamble and the LGPL, - which is distributed with Clozure CL as the file "LGPL". Where these - conflict, the preamble takes precedence. - - Clozure CL is referenced in the preamble as the "LIBRARY." - - The LLGPL is also available online at - http://opensource.franz.com/preamble.html -*/ + * Copyright 2006-2012 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ define(`eax_l',`eax') define(`ecx_l',`ecx') diff --git a/lisp-kernel/x86-constants64.h b/lisp-kernel/x86-constants64.h index 7691605e3..df0705dd4 100644 --- a/lisp-kernel/x86-constants64.h +++ b/lisp-kernel/x86-constants64.h @@ -1,18 +1,18 @@ /* - Copyright (C) 2005-2009 Clozure Associates - This file is part of Clozure CL. - - Clozure CL is licensed under the terms of the Lisp Lesser GNU Public - License , known as the LLGPL and distributed with Clozure CL as the - file "LICENSE". The LLGPL consists of a preamble and the LGPL, - which is distributed with Clozure CL as the file "LGPL". Where these - conflict, the preamble takes precedence. - - Clozure CL is referenced in the preamble as the "LIBRARY." - - The LLGPL is also available online at - http://opensource.franz.com/preamble.html -*/ + * Copyright 2005-2009 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ #include "x86-constants.h" diff --git a/lisp-kernel/x86-constants64.s b/lisp-kernel/x86-constants64.s index ec676304c..bc0e9ca29 100644 --- a/lisp-kernel/x86-constants64.s +++ b/lisp-kernel/x86-constants64.s @@ -1,17 +1,18 @@ -/* Copyright (C) 2005-2009 Clozure Associates */ -/* This file is part of Clozure CL. */ - -/* Clozure CL is licensed under the terms of the Lisp Lesser GNU Public */ -/* License , known as the LLGPL and distributed with Clozure CL as the */ -/* file "LICENSE". The LLGPL consists of a preamble and the LGPL, */ -/* which is distributed with Clozure CL as the file "LGPL". Where these */ -/* conflict, the preamble takes precedence. */ - -/* Clozure CL is referenced in the preamble as the "LIBRARY." */ - -/* The LLGPL is also available online at */ -/* http://opensource.franz.com/preamble.html */ - +/* + * Copyright 2005-2009 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ /* Register usage. This is certainly a little short of */ /* immediate registers; we can maybe use the low bits */ diff --git a/lisp-kernel/x86-exceptions.c b/lisp-kernel/x86-exceptions.c index b0f073086..fa59af764 100644 --- a/lisp-kernel/x86-exceptions.c +++ b/lisp-kernel/x86-exceptions.c @@ -1,18 +1,18 @@ /* - Copyright (C) 2005-2009 Clozure Associates - This file is part of Clozure CL. - - Clozure CL is licensed under the terms of the Lisp Lesser GNU Public - License , known as the LLGPL and distributed with Clozure CL as the - file "LICENSE". The LLGPL consists of a preamble and the LGPL, - which is distributed with Clozure CL as the file "LGPL". Where these - conflict, the preamble takes precedence. - - Clozure CL is referenced in the preamble as the "LIBRARY." - - The LLGPL is also available online at - http://opensource.franz.com/preamble.html -*/ + * Copyright 2005-2009 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ #include "lisp.h" #include "lisp-exceptions.h" diff --git a/lisp-kernel/x86-exceptions.h b/lisp-kernel/x86-exceptions.h index dfde9294a..b08b83f36 100644 --- a/lisp-kernel/x86-exceptions.h +++ b/lisp-kernel/x86-exceptions.h @@ -1,18 +1,18 @@ /* - Copyright (C) 2005-2009 Clozure Associates - This file is part of Clozure CL. - - Clozure CL is licensed under the terms of the Lisp Lesser GNU Public - License , known as the LLGPL and distributed with Clozure CL as the - file "LICENSE". The LLGPL consists of a preamble and the LGPL, - which is distributed with Clozure CL as the file "LGPL". Where these - conflict, the preamble takes precedence. - - Clozure CL is referenced in the preamble as the "LIBRARY." - - The LLGPL is also available online at - http://opensource.franz.com/preamble.html -*/ + * Copyright 2005-2009 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ #ifndef X86_EXCEPTIONS_H #define X86_EXCEPTIONS_H 1 diff --git a/lisp-kernel/x86-gc.c b/lisp-kernel/x86-gc.c index 6c874d6c1..17877823b 100644 --- a/lisp-kernel/x86-gc.c +++ b/lisp-kernel/x86-gc.c @@ -1,19 +1,18 @@ /* - Copyright (C) 2009 Clozure Associates - Copyright (C) 1994-2001 Digitool, Inc - This file is part of Clozure CL. - - Clozure CL is licensed under the terms of the Lisp Lesser GNU Public - License , known as the LLGPL and distributed with Clozure CL as the - file "LICENSE". The LLGPL consists of a preamble and the LGPL, - which is distributed with Clozure CL as the file "LGPL". Where these - conflict, the preamble takes precedence. - - Clozure CL is referenced in the preamble as the "LIBRARY." - - The LLGPL is also available online at - http://opensource.franz.com/preamble.html -*/ + * Copyright 1994-2009 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ #include "lisp.h" #include "lisp_globals.h" diff --git a/lisp-kernel/x86-macros.s b/lisp-kernel/x86-macros.s index 3211be507..9d3a57973 100644 --- a/lisp-kernel/x86-macros.s +++ b/lisp-kernel/x86-macros.s @@ -1,17 +1,18 @@ -/* Copyright (C) 2005-2009 Clozure Associates */ -/* This file is part of Clozure CL. */ - -/* Clozure CL is licensed under the terms of the Lisp Lesser GNU Public */ -/* License , known as the LLGPL and distributed with Clozure CL as the */ -/* file "LICENSE". The LLGPL consists of a preamble and the LGPL, */ -/* which is distributed with Clozure CL as the file "LGPL". Where these */ -/* conflict, the preamble takes precedence. */ - -/* Clozure CL is referenced in the preamble as the "LIBRARY." */ - -/* The LLGPL is also available online at */ -/* http://opensource.franz.com/preamble.html */ - +/* + * Copyright 2005-2009 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ /* Try to make macros follow GAS/ATT conventions, where source precedes */ /* destination. */ diff --git a/lisp-kernel/x86-spentry32.s b/lisp-kernel/x86-spentry32.s index 02ba85729..63d807e94 100644 --- a/lisp-kernel/x86-spentry32.s +++ b/lisp-kernel/x86-spentry32.s @@ -1,18 +1,18 @@ /* - Copyright (C) 2006-2012 Clozure Associates - This file is part of Clozure CL. - - Clozure CL is licensed under the terms of the Lisp Lesser GNU Public - License , known as the LLGPL and distributed with Clozure CL as the - file "LICENSE". The LLGPL consists of a preamble and the LGPL, - which is distributed with Clozure CL as the file "LGPL". Where these - conflict, the preamble takes precedence. - - Clozure CL is referenced in the preamble as the "LIBRARY." - - The LLGPL is also available online at - http://opensource.franz.com/preamble.html -*/ + * Copyright 2006-2012 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ include(lisp.s) _beginfile diff --git a/lisp-kernel/x86-spentry64.s b/lisp-kernel/x86-spentry64.s index f4c237bb1..baa24788f 100644 --- a/lisp-kernel/x86-spentry64.s +++ b/lisp-kernel/x86-spentry64.s @@ -1,17 +1,18 @@ -/* Copyright (C) 2005-2009 Clozure Associates and contributors */ -/* This file is part of Clozure CL. */ - -/* Clozure CL is licensed under the terms of the Lisp Lesser GNU Public */ -/* License , known as the LLGPL and distributed with Clozure CL as the */ -/* file "LICENSE". The LLGPL consists of a preamble and the LGPL, */ -/* which is distributed with Clozure CL as the file "LGPL". Where these */ -/* conflict, the preamble takes precedence. */ - -/* Clozure CL is referenced in the preamble as the "LIBRARY." */ - -/* The LLGPL is also available online at */ -/* http://opensource.franz.com/preamble.html */ - +/* + * Copyright 2005-2009 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ include(lisp.s) diff --git a/lisp-kernel/x86-spjump32.s b/lisp-kernel/x86-spjump32.s index 7ca64b742..cc3587a51 100644 --- a/lisp-kernel/x86-spjump32.s +++ b/lisp-kernel/x86-spjump32.s @@ -1,17 +1,18 @@ -/* Copyright (C) 2005-2009 Clozure Associates */ -/* This file is part of Clozure CL. */ - -/* Clozure CL is licensed under the terms of the Lisp Lesser GNU Public */ -/* License , known as the LLGPL and distributed with Clozure CL as the */ -/* file "LICENSE". The LLGPL consists of a preamble and the LGPL, */ -/* which is distributed with Clozure CL as the file "LGPL". Where these */ -/* conflict, the preamble takes precedence. */ - -/* Clozure CL is referenced in the preamble as the "LIBRARY." */ - -/* The LLGPL is also available online at */ -/* http://opensource.franz.com/preamble.html */ - +/* + * Copyright 2005-2009 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ include(lisp.s) define(`_spjump',` diff --git a/lisp-kernel/x86-spjump64.s b/lisp-kernel/x86-spjump64.s index d453ba95d..badcc731e 100644 --- a/lisp-kernel/x86-spjump64.s +++ b/lisp-kernel/x86-spjump64.s @@ -1,17 +1,18 @@ -/* Copyright (C) 2005-2009 Clozure Associates */ -/* This file is part of Clozure CL. */ - -/* Clozure CL is licensed under the terms of the Lisp Lesser GNU Public */ -/* License , known as the LLGPL and distributed with Clozure CL as the */ -/* file "LICENSE". The LLGPL consists of a preamble and the LGPL, */ -/* which is distributed with Clozure CL as the file "LGPL". Where these */ -/* conflict, the preamble takes precedence. */ - -/* Clozure CL is referenced in the preamble as the "LIBRARY." */ - -/* The LLGPL is also available online at */ -/* http://opensource.franz.com/preamble.html */ - +/* + * Copyright 2005-2009 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ include(lisp.s) define(`_spjump',` diff --git a/lisp-kernel/x86-subprims32.s b/lisp-kernel/x86-subprims32.s index 8b8d37b20..d440e3985 100644 --- a/lisp-kernel/x86-subprims32.s +++ b/lisp-kernel/x86-subprims32.s @@ -1,18 +1,18 @@ /* - Copyright (C) 2006-2012 Clozure Associates - This file is part of Clozure CL. - - Clozure CL is licensed under the terms of the Lisp Lesser GNU Public - License , known as the LLGPL and distributed with Clozure CL as the - file "LICENSE". The LLGPL consists of a preamble and the LGPL, - which is distributed with Clozure CL as the file "LGPL". Where these - conflict, the preamble takes precedence. - - Clozure CL is referenced in the preamble as the "LIBRARY." - - The LLGPL is also available online at - http://opensource.franz.com/preamble.html -*/ + * Copyright 2006-2012 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ include(lisp.s) _beginfile diff --git a/lisp-kernel/x86-subprims64.s b/lisp-kernel/x86-subprims64.s index 65c6de81e..865b8d381 100644 --- a/lisp-kernel/x86-subprims64.s +++ b/lisp-kernel/x86-subprims64.s @@ -1,17 +1,18 @@ -/* Copyright (C) 2005-2009 Clozure Associates*/ -/* This file is part of Clozure CL. */ - -/* Clozure CL is licensed under the terms of the Lisp Lesser GNU Public*/ -/* License , known as the LLGPL and distributed with Clozure CL as the*/ -/* file "LICENSE". The LLGPL consists of a preamble and the LGPL,*/ -/* which is distributed with Clozure CL as the file "LGPL". Where these*/ -/* conflict, the preamble takes precedence. */ - -/* Clozure CL is referenced in the preamble as the "LIBRARY."*/ - -/* The LLGPL is also available online at*/ -/* http://opensource.franz.com/preamble.html*/ - +/* + * Copyright 2005-2009 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ include(lisp.s) _beginfile diff --git a/lisp-kernel/x86-utils.c b/lisp-kernel/x86-utils.c index d1d396def..fe97e2c5e 100644 --- a/lisp-kernel/x86-utils.c +++ b/lisp-kernel/x86-utils.c @@ -1,18 +1,18 @@ /* - Copyright (C) 2011 Clozure Associates - This file is part of Clozure CL. - - Clozure CL is licensed under the terms of the Lisp Lesser GNU Public - License , known as the LLGPL and distributed with Clozure CL as the - file "LICENSE". The LLGPL consists of a preamble and the LGPL, - which is distributed with Clozure CL as the file "LGPL". Where these - conflict, the preamble takes precedence. - - Clozure CL is referenced in the preamble as the "LIBRARY." - - The LLGPL is also available online at - http://opensource.franz.com/preamble.html -*/ + * Copyright 2011 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ #include "lisp.h" #include "x86-utils.h" diff --git a/lisp-kernel/x86-utils.h b/lisp-kernel/x86-utils.h index 671f830e4..18d6c4e9d 100644 --- a/lisp-kernel/x86-utils.h +++ b/lisp-kernel/x86-utils.h @@ -1,18 +1,18 @@ /* - Copyright (C) 2011 Clozure Associates - This file is part of Clozure CL. - - Clozure CL is licensed under the terms of the Lisp Lesser GNU Public - License , known as the LLGPL and distributed with Clozure CL as the - file "LICENSE". The LLGPL consists of a preamble and the LGPL, - which is distributed with Clozure CL as the file "LGPL". Where these - conflict, the preamble takes precedence. - - Clozure CL is referenced in the preamble as the "LIBRARY." - - The LLGPL is also available online at - http://opensource.franz.com/preamble.html -*/ + * Copyright 2011 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ #ifndef X86_UTILS_H #define X86_UTILS_H diff --git a/lisp-kernel/x86-uuo.s b/lisp-kernel/x86-uuo.s index 4455a3ecf..2f4df86e3 100644 --- a/lisp-kernel/x86-uuo.s +++ b/lisp-kernel/x86-uuo.s @@ -1,17 +1,18 @@ -/* Copyright (C) 2005-2009 Clozure Associates */ -/* This file is part of Clozure CL. */ - -/* Clozure CL is licensed under the terms of the Lisp Lesser GNU Public */ -/* License , known as the LLGPL and distributed with Clozure CL as the */ -/* file "LICENSE". The LLGPL consists of a preamble and the LGPL, */ -/* which is distributed with Clozure CL as the file "LGPL". Where these */ -/* conflict, the preamble takes precedence. */ - -/* Clozure CL is referenced in the preamble as the "LIBRARY." */ - -/* The LLGPL is also available online at */ -/* http://opensource.franz.com/preamble.html */ - +/* + * Copyright 2005-2009 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ define(`uuo_error_too_few_args',` int `$'0xc0 diff --git a/lisp-kernel/x86_print.c b/lisp-kernel/x86_print.c index d39d56016..9cba3eba4 100644 --- a/lisp-kernel/x86_print.c +++ b/lisp-kernel/x86_print.c @@ -1,18 +1,18 @@ /* - Copyright (C) 2005-2009, Clozure Associates - This file is part of Clozure CL. - - Clozure CL is licensed under the terms of the Lisp Lesser GNU Public - License , known as the LLGPL and distributed with Clozure CL as the - file "LICENSE". The LLGPL consists of a preamble and the LGPL, - which is distributed with Clozure CL as the file "LGPL". Where these - conflict, the preamble takes precedence. - - Clozure CL is referenced in the preamble as the "LIBRARY." - - The LLGPL is also available online at - http://opensource.franz.com/preamble.html -*/ + * Copyright 2005-2009 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ #include #include diff --git a/lisp-kernel/xlbt.c b/lisp-kernel/xlbt.c index e8f66d191..02f20e880 100644 --- a/lisp-kernel/xlbt.c +++ b/lisp-kernel/xlbt.c @@ -1,18 +1,18 @@ /* - Copyright (C) 2005-2009 Clozure Associates - This file is part of Clozure CL. - - Clozure CL is licensed under the terms of the Lisp Lesser GNU Public - License , known as the LLGPL and distributed with Clozure CL as the - file "LICENSE". The LLGPL consists of a preamble and the LGPL, - which is distributed with Clozure CL as the file "LGPL". Where these - conflict, the preamble takes precedence. - - Clozure CL is referenced in the preamble as the "LIBRARY." - - The LLGPL is also available online at - http://opensource.franz.com/preamble.html -*/ + * Copyright 2005-2009 Clozure Associates + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ #include "lispdcmd.h" #include "x86-utils.h" diff --git a/mac-ui/ccl-application.lisp b/mac-ui/ccl-application.lisp index 67ca08adf..3951581db 100644 --- a/mac-ui/ccl-application.lisp +++ b/mac-ui/ccl-application.lisp @@ -1,3 +1,17 @@ +;;; +;;; Copyright 2016 Clozure Associates +;;; +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at +;;; +;;; http://www.apache.org/licenses/LICENSE-2.0 +;;; +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") #| diff --git a/mac-ui/cf-utils.lisp b/mac-ui/cf-utils.lisp index dfc48d86e..3a6ee50fd 100644 --- a/mac-ui/cf-utils.lisp +++ b/mac-ui/cf-utils.lisp @@ -1,3 +1,17 @@ +;;; +;;; Copyright 2016 Clozure Associates +;;; +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at +;;; +;;; http://www.apache.org/licenses/LICENSE-2.0 +;;; +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") (export '(with-cfstring %get-cfstring with-cfurl with-general-cfurl)) diff --git a/mac-ui/cg.lisp b/mac-ui/cg.lisp index 56a8d4bbb..f6321a490 100644 --- a/mac-ui/cg.lisp +++ b/mac-ui/cg.lisp @@ -1,3 +1,17 @@ +;;; +;;; Copyright 2016 Clozure Associates +;;; +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at +;;; +;;; http://www.apache.org/licenses/LICENSE-2.0 +;;; +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (defpackage "CG" (:use "CL" "CCL") (:import-from "CCL" "WITH-SPECS-AUX" "PARSE-BODY" diff --git a/mac-ui/event-process.lisp b/mac-ui/event-process.lisp index f152f8b79..98072e46c 100644 --- a/mac-ui/event-process.lisp +++ b/mac-ui/event-process.lisp @@ -1,3 +1,17 @@ +;;; +;;; Copyright 2016 Clozure Associates +;;; +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at +;;; +;;; http://www.apache.org/licenses/LICENSE-2.0 +;;; +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") ;;; For historical reasons CCL calls thread "processes". So, instead diff --git a/mac-ui/libdispatch.lisp b/mac-ui/libdispatch.lisp index a5010b632..a0fa71d3a 100644 --- a/mac-ui/libdispatch.lisp +++ b/mac-ui/libdispatch.lisp @@ -1,3 +1,17 @@ +;;; +;;; Copyright 2016 Clozure Associates +;;; +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at +;;; +;;; http://www.apache.org/licenses/LICENSE-2.0 +;;; +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") (defstatic *dispatch-id-map* (make-id-map)) diff --git a/mac-ui/objc-wrapper.lisp b/mac-ui/objc-wrapper.lisp index bec617eb8..ba075d2c6 100644 --- a/mac-ui/objc-wrapper.lisp +++ b/mac-ui/objc-wrapper.lisp @@ -1,3 +1,17 @@ +;;; +;;; Copyright 2016 Clozure Associates +;;; +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at +;;; +;;; http://www.apache.org/licenses/LICENSE-2.0 +;;; +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package :mac-ui) (defparameter *objc-wrapper-map* (make-hash-table :weak :value) diff --git a/mac-ui/package.lisp b/mac-ui/package.lisp index e112aa971..7748ba8ee 100644 --- a/mac-ui/package.lisp +++ b/mac-ui/package.lisp @@ -1,3 +1,17 @@ +;;; +;;; Copyright 2016 Clozure Associates +;;; +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at +;;; +;;; http://www.apache.org/licenses/LICENSE-2.0 +;;; +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (cl:defpackage "MAC-UI" (:use "CL" "CCL") (:export diff --git a/objc-bridge/bridge.lisp b/objc-bridge/bridge.lisp index 8d8e181d8..946dd35be 100644 --- a/objc-bridge/bridge.lisp +++ b/objc-bridge/bridge.lisp @@ -1,4 +1,19 @@ -;;;; -*- Mode: Lisp; Package: CCL -*- +;;; -*- Mode: Lisp; Package: CCL -*- +;;; +;;; Copyright 2003 Randall D. Beer +;;; +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at +;;; +;;; http://www.apache.org/licenses/LICENSE-2.0 +;;; +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. + ;;;; bridge.lisp ;;;; ;;;; A Lisp bridge for Cocoa @@ -7,13 +22,6 @@ ;;;; (1) Convenient Lisp syntax for instantiating ObjC classes ;;;; (2) Convenient Lisp syntax for invoking ObjC methods ;;;; -;;;; Copyright (c) 2003 Randall D. Beer -;;;; -;;;; This software is licensed under the terms of the Lisp Lesser GNU Public -;;;; License, known as the LLGPL. The LLGPL consists of a preamble and -;;;; the LGPL. Where these conflict, the preamble takes precedence. The -;;;; LLGPL is available online at http://opensource.franz.com/preamble.html. -;;;; ;;;; Please send comments and bug reports to ;;; Temporary package and module stuff diff --git a/objc-bridge/name-translation.lisp b/objc-bridge/name-translation.lisp index 2ca221e23..0732444c8 100644 --- a/objc-bridge/name-translation.lisp +++ b/objc-bridge/name-translation.lisp @@ -1,15 +1,23 @@ -;;;; -*- Mode: Lisp; Package: CCL -*- +;;; -*- Mode: Lisp; Package: CCL -*- +;;; +;;; Copyright 2003 Randall D. Beer +;;; +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at +;;; +;;; http://www.apache.org/licenses/LICENSE-2.0 +;;; +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. + ;;;; name-translation.lisp ;;;; ;;;; Handles the translation between ObjC and Lisp names ;;;; -;;;; Copyright (c) 2003 Randall D. Beer -;;;; -;;;; This software is licensed under the terms of the Lisp Lesser GNU Public -;;;; License , known as the LLGPL. The LLGPL consists of a preamble and -;;;; the LGPL. Where these conflict, the preamble takes precedence. The -;;;; LLGPL is available online at http://opensource.franz.com/preamble.html. -;;;; ;;;; Please send comments and bug reports to ;;; Temporary package stuff diff --git a/objc-bridge/objc-clos.lisp b/objc-bridge/objc-clos.lisp index 05b515b54..5a2901802 100644 --- a/objc-bridge/objc-clos.lisp +++ b/objc-bridge/objc-clos.lisp @@ -1,18 +1,18 @@ ;;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 2003-2009 Clozure Associates and contributors. -;;; This file is part of Clozure CL. +;;; Copyright 2003-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. ;;; ;;; TO DO ;;; - Both method creation and invocation should be faster and cons less diff --git a/objc-bridge/objc-package.lisp b/objc-bridge/objc-package.lisp index 6c5ee9175..1a667ad1d 100644 --- a/objc-bridge/objc-package.lisp +++ b/objc-bridge/objc-package.lisp @@ -1,18 +1,18 @@ ;;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 2007-2009 Clozure Associates and contributors. -;;; This file is part of Clozure CL. +;;; Copyright 2007-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. ;;; (in-package "CCL") diff --git a/objc-bridge/objc-readtable.lisp b/objc-bridge/objc-readtable.lisp index 4cedb88af..7e03d6b39 100644 --- a/objc-bridge/objc-readtable.lisp +++ b/objc-bridge/objc-readtable.lisp @@ -1,18 +1,18 @@ ;;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 2002-2009 Clozure Associates -;;; This file is part of Clozure CL. +;;; Copyright 2002-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/objc-bridge/objc-runtime.lisp b/objc-bridge/objc-runtime.lisp index 5664fd785..8ad16a5a6 100644 --- a/objc-bridge/objc-runtime.lisp +++ b/objc-bridge/objc-runtime.lisp @@ -1,18 +1,18 @@ ;;;-*-Mode: LISP; Package: CCL -*- ;;; -;;; Copyright (C) 2002-2009 Clozure Associates -;;; This file is part of Clozure CL. +;;; Copyright 2002-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/objc-bridge/objc-support.lisp b/objc-bridge/objc-support.lisp index e9d9c7b13..e1e2881ff 100644 --- a/objc-bridge/objc-support.lisp +++ b/objc-bridge/objc-support.lisp @@ -1,4 +1,19 @@ ;;;-*-Mode: LISP; Package: CCL -*- +;;; +;;; Copyright 2016 Clozure Associates +;;; +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at +;;; +;;; http://www.apache.org/licenses/LICENSE-2.0 +;;; +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. +;;;-*-Mode: LISP; Package: CCL -*- (in-package "CCL") diff --git a/xdump/faslenv.lisp b/xdump/faslenv.lisp index b858ad820..1262f50bd 100644 --- a/xdump/faslenv.lisp +++ b/xdump/faslenv.lisp @@ -1,19 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/xdump/hashenv.lisp b/xdump/hashenv.lisp index 814fc6b28..2a9426130 100644 --- a/xdump/hashenv.lisp +++ b/xdump/hashenv.lisp @@ -1,19 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/xdump/heap-image.lisp b/xdump/heap-image.lisp index e29e53a3e..6d65a03eb 100644 --- a/xdump/heap-image.lisp +++ b/xdump/heap-image.lisp @@ -1,18 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2002-2009 Clozure Associates -;;; This file is part of Clozure CL. +;;; Copyright 2002-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") (defconstant image-sig0 (dpb (char-code #\O) diff --git a/xdump/xarmfasload.lisp b/xdump/xarmfasload.lisp index 1851de7d2..e8376132b 100644 --- a/xdump/xarmfasload.lisp +++ b/xdump/xarmfasload.lisp @@ -1,18 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Portions copyright (C) 2010 Clozure Associates -;;; This file is part of Clozure CL. +;;; Copyright 2016 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/xdump/xfasload.lisp b/xdump/xfasload.lisp index 927ec189c..6adef7098 100644 --- a/xdump/xfasload.lisp +++ b/xdump/xfasload.lisp @@ -1,19 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 2009 Clozure Associates -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; This file is part of Clozure CL. +;;; Copyright 1994-2009 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/xdump/xppcfasload.lisp b/xdump/xppcfasload.lisp index 1b4292fdc..9f01b32e7 100644 --- a/xdump/xppcfasload.lisp +++ b/xdump/xppcfasload.lisp @@ -1,19 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; Portions copyright (C) 2001-2009 Clozure Associates -;;; This file is part of Clozure CL. +;;; Copyright 1994-2001 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/xdump/xx8632-fasload.lisp b/xdump/xx8632-fasload.lisp index 7c1e63aef..e3bba3bbc 100644 --- a/xdump/xx8632-fasload.lisp +++ b/xdump/xx8632-fasload.lisp @@ -1,18 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- - +;;; ;;; Copyright 2009 Clozure Associates -;;; This file is part of Clozure CL. ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU -;;; Public License , known as the LLGPL and distributed with Clozure -;;; CL as the file "LICENSE". The LLGPL consists of a preamble and -;;; the LGPL, which is distributed with Clozure CL as the file "LGPL". -;;; Where these conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL") diff --git a/xdump/xx8664-fasload.lisp b/xdump/xx8664-fasload.lisp index 0f565f415..456944933 100644 --- a/xdump/xx8664-fasload.lisp +++ b/xdump/xx8664-fasload.lisp @@ -1,19 +1,18 @@ ;;;-*- Mode: Lisp; Package: CCL -*- ;;; -;;; Copyright (C) 1994-2001 Digitool, Inc -;;; Portions copyright (C) 2001-2009 Clozure Associates -;;; This file is part of Clozure CL. +;;; Copyright 1994-2001 Clozure Associates ;;; -;;; Clozure CL is licensed under the terms of the Lisp Lesser GNU Public -;;; License , known as the LLGPL and distributed with Clozure CL as the -;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, -;;; which is distributed with Clozure CL as the file "LGPL". Where these -;;; conflict, the preamble takes precedence. +;;; Licensed under the Apache License, Version 2.0 (the "License"); +;;; you may not use this file except in compliance with the License. +;;; You may obtain a copy of the License at ;;; -;;; Clozure CL is referenced in the preamble as the "LIBRARY." +;;; http://www.apache.org/licenses/LICENSE-2.0 ;;; -;;; The LLGPL is also available online at -;;; http://opensource.franz.com/preamble.html +;;; Unless required by applicable law or agreed to in writing, software +;;; distributed under the License is distributed on an "AS IS" BASIS, +;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +;;; See the License for the specific language governing permissions and +;;; limitations under the License. (in-package "CCL")