Author: yamakenz
Date: Wed Jul 18 10:12:36 2007
New Revision: 4744

Modified:
   sigscheme-trunk/COPYING
   sigscheme-trunk/lib/srfi-55.scm

Log:
* lib/srfi-55.scm
  - Add lacking license terms
* COPYING
  - Add license terms for srfi-1.scm, srfi-95.scm and oleg-srfi2.scm


Modified: sigscheme-trunk/COPYING
==============================================================================
--- sigscheme-trunk/COPYING     (original)
+++ sigscheme-trunk/COPYING     Wed Jul 18 10:12:36 2007
@@ -59,6 +59,24 @@
 modified is included with the above copyright notice.
 -----------------------------------------------------------------------------
 
+lib/srfi-1.scm is covered by:
+-----------------------------------------------------------------------------
+;;; Copyright (c) 1998, 1999 by Olin Shivers. You may do as you please with
+;;; this code as long as you do not remove this copyright notice or
+;;; hold me liable for its use. Please send bug reports to [EMAIL PROTECTED]
+;;;     -Olin
+
+;;; Copyright (c) 2007 SigScheme Project <uim-en AT googlegroups.com>
+-----------------------------------------------------------------------------
+
+
+lib/srfi-95.scm is covered by:
+-----------------------------------------------------------------------------
+;;; Author : Richard A. O'Keefe (based on Prolog code by D.H.D.Warren)
+;;;
+;;; This code is in the public domain.
+-----------------------------------------------------------------------------
+
 
 test/gauche-*.scm and some part of src/read.c and src/list.c are covered by:
 -----------------------------------------------------------------------------
@@ -165,4 +183,15 @@
 ;;; William Clinger and Jonathan Rees, editors.
 ;;; Revised^4 Report on the Algorithmic Language Scheme
 ;;; and the IEEE specification.
+-----------------------------------------------------------------------------
+
+
+test/oleg-srfi2.scm is covered by:
+-----------------------------------------------------------------------------
+;; License terms:
+;;
+;; http://pobox.com/~oleg/ftp/
+;;
+;; "Unless specified otherwise, all the code and the documentation on this site
+;; is in public domain."
 -----------------------------------------------------------------------------

Modified: sigscheme-trunk/lib/srfi-55.scm
==============================================================================
--- sigscheme-trunk/lib/srfi-55.scm     (original)
+++ sigscheme-trunk/lib/srfi-55.scm     Wed Jul 18 10:12:36 2007
@@ -1,3 +1,36 @@
+;;  Filename : srfi-55.scm
+;;  About    : SRFI-55 require-extension
+;;
+;;  Copyright (c) 2007 SigScheme Project <uim-en AT googlegroups.com>
+;;
+;;  All rights reserved.
+;;
+;;  Redistribution and use in source and binary forms, with or without
+;;  modification, are permitted provided that the following conditions
+;;  are met:
+;;
+;;  1. Redistributions of source code must retain the above copyright
+;;     notice, this list of conditions and the following disclaimer.
+;;  2. Redistributions in binary form must reproduce the above copyright
+;;     notice, this list of conditions and the following disclaimer in the
+;;     documentation and/or other materials provided with the distribution.
+;;  3. Neither the name of authors nor the names of its contributors
+;;     may be used to endorse or promote products derived from this software
+;;     without specific prior written permission.
+;;
+;;  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS
+;;  IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
+;;  THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+;;  PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR
+;;  CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+;;  EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+;;  PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
+;;  PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+;;  LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+;;  NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+;;  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+
 (define %require-extension-handler-srfi
   (lambda numbers
     (for-each (lambda (n)

Reply via email to