Ticket #774: 0001-Update-copyright-year-to-2012.patch

File 0001-Update-copyright-year-to-2012.patch, 36.9 KB (added by sjamaan, 12 years ago)
  • GNUmakefile

    From 8e337737bad78f52e7ba9f83bbf92c6d40e62ee3 Mon Sep 17 00:00:00 2001
    From: Peter Bex <peter.bex@xs4all.nl>
    Date: Sun, 4 Mar 2012 16:31:17 +0100
    Subject: [PATCH] Update copyright year to 2012
    
    Also normalize copyright string so that next time, the following command can be used to update all files in one go (if you use GNU sed, you can use the -i switch instead of a tempfile):
    
    for i in `git grep -Il 'Copyright (c) [0-9-]*, The Chicken Team'`; do sed -r 's/Copyright \(c\) (([0-9]+)-|(2011))(2011)?,/Copyright (c) \2\3-2012,/' "$i" > tmp && mv tmp "$i"; done
    ---
     GNUmakefile                |    2 +-
     LICENSE                    |    2 +-
     Makefile.bsd               |    2 +-
     Makefile.cross-linux-mingw |    2 +-
     Makefile.cygwin            |    2 +-
     Makefile.haiku             |    2 +-
     Makefile.linux             |    2 +-
     Makefile.macosx            |    2 +-
     Makefile.mingw             |    2 +-
     Makefile.mingw-msys        |    2 +-
     Makefile.solaris           |    2 +-
     apply-hack.ppc.darwin.S    |    2 +-
     apply-hack.ppc.sysv.S      |    2 +-
     apply-hack.x86-64.S        |    2 +-
     apply-hack.x86.S           |    2 +-
     batch-driver.scm           |    2 +-
     build-version.scm          |    2 +-
     c-backend.scm              |    2 +-
     c-platform.scm             |    2 +-
     chicken-bug.scm            |    2 +-
     chicken-ffi-syntax.scm     |    2 +-
     chicken-install.scm        |    2 +-
     chicken-profile.scm        |    2 +-
     chicken-status.scm         |    2 +-
     chicken-syntax.scm         |    2 +-
     chicken-uninstall.scm      |    2 +-
     chicken.h                  |    2 +-
     chicken.import.scm         |    2 +-
     chicken.scm                |    2 +-
     common-declarations.scm    |    2 +-
     compiler-namespace.scm     |    2 +-
     compiler-syntax.scm        |    2 +-
     compiler.scm               |    2 +-
     config-arch.sh             |    2 +-
     csc.scm                    |    2 +-
     csi.import.scm             |    2 +-
     csi.scm                    |    2 +-
     data-structures.import.scm |    2 +-
     data-structures.scm        |    2 +-
     defaults.make              |    2 +-
     eval.scm                   |    2 +-
     expand.scm                 |    2 +-
     extras.import.scm          |    2 +-
     extras.scm                 |    2 +-
     files.import.scm           |    2 +-
     files.scm                  |    2 +-
     foreign.import.scm         |    2 +-
     irregex.import.scm         |    2 +-
     irregex.scm                |    2 +-
     library.scm                |    2 +-
     lolevel.import.scm         |    2 +-
     lolevel.scm                |    2 +-
     modules.scm                |    2 +-
     optimizer.scm              |    2 +-
     ports.import.scm           |    2 +-
     ports.scm                  |    2 +-
     posix-common.scm           |    2 +-
     posix.import.scm           |    2 +-
     posixunix.scm              |    2 +-
     posixwin.scm               |    2 +-
     private-namespace.scm      |    2 +-
     profiler.scm               |    2 +-
     rules.make                 |    2 +-
     runtime.c                  |    2 +-
     scheduler.scm              |    2 +-
     scrutinizer.scm            |    2 +-
     setup-api.scm              |    2 +-
     setup-download.scm         |    2 +-
     srfi-1.import.scm          |    2 +-
     srfi-13.import.scm         |    2 +-
     srfi-14.import.scm         |    2 +-
     srfi-18.import.scm         |    2 +-
     srfi-18.scm                |    2 +-
     srfi-4.import.scm          |    2 +-
     srfi-4.scm                 |    2 +-
     srfi-69.import.scm         |    2 +-
     srfi-69.scm                |    2 +-
     stub.scm                   |    2 +-
     support.scm                |    2 +-
     tcp.import.scm             |    2 +-
     tcp.scm                    |    2 +-
     tests/null.scm             |    2 +-
     tweaks.scm                 |    2 +-
     types.db                   |    2 +-
     utils.import.scm           |    2 +-
     utils.scm                  |    2 +-
     86 files changed, 86 insertions(+), 86 deletions(-)
     mode change 100755 => 100644 scrutinizer.scm
    
    diff --git a/GNUmakefile b/GNUmakefile
    index 9bc40ca..7fbd95b 100644
    a b  
    11# GNUmakefile - toplevel makefile
    22#
    3 # Copyright (c) 2008-2011, The Chicken Team
     3# Copyright (c) 2008-2012, The Chicken Team
    44# Copyright (c) 2007, Felix L. Winkelmann
    55# All rights reserved.
    66#
  • LICENSE

    diff --git a/LICENSE b/LICENSE
    index d48b429..45aa09f 100644
    a b  
    22
    33Chicken falls under the following main license:
    44
    5   Copyright (c) 2007-2011, The Chicken team
     5  Copyright (c) 2007-2012, The Chicken Team
    66  Copyright (c) 2000-2007, Felix L. Winkelmann
    77  All rights reserved.
    88 
  • Makefile.bsd

    diff --git a/Makefile.bsd b/Makefile.bsd
    index 98e44fd..7c545af 100644
    a b  
    11# Makefile.bsd - configuration for BSD UNIX -*- Makefile -*-
    22#
    3 # Copyright (c) 2008-2011, The Chicken Team
     3# Copyright (c) 2008-2012, The Chicken Team
    44# Copyright (c) 2007, Felix L. Winkelmann
    55# All rights reserved.
    66#
  • Makefile.cross-linux-mingw

    diff --git a/Makefile.cross-linux-mingw b/Makefile.cross-linux-mingw
    index bfc81ef..5c4a8d2 100644
    a b  
    11# Makefile.cross-linux-mingw - configuration for MinGW (crosscompiled from Linux) -*- Makefile -*-
    22#
    3 # Copyright (c) 2008-2011, The Chicken Team
     3# Copyright (c) 2008-2012, The Chicken Team
    44# Copyright (c) 2007, Felix L. Winkelmann
    55# All rights reserved.
    66#
  • Makefile.cygwin

    diff --git a/Makefile.cygwin b/Makefile.cygwin
    index cee6e74..ddae01b 100644
    a b  
    11# Makefile.cygwin - configuration for Linux -*- Makefile -*-
    22#
    3 # Copyright (c) 2008-2011, The Chicken Team
     3# Copyright (c) 2008-2012, The Chicken Team
    44# Copyright (c) 2007, Felix L. Winkelmann
    55# All rights reserved.
    66#
  • Makefile.haiku

    diff --git a/Makefile.haiku b/Makefile.haiku
    index 54634a2..06d85a3 100644
    a b  
    11# Makefile.haiku - configuration for Haiku -*- Makefile -*-
    22#
    3 # Copyright (c) 2011, The Chicken Team
     3# Copyright (c) 2011-2012, The Chicken Team
    44# All rights reserved.
    55#
    66# Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following
  • Makefile.linux

    diff --git a/Makefile.linux b/Makefile.linux
    index 6e5116a..37f848c 100644
    a b  
    11# Makefile.linux - configuration for Linux -*- Makefile -*-
    22#
    3 # Copyright (c) 2008-2011, The Chicken Team
     3# Copyright (c) 2008-2012, The Chicken Team
    44# Copyright (c) 2007, Felix L. Winkelmann
    55# All rights reserved.
    66#
  • Makefile.macosx

    diff --git a/Makefile.macosx b/Makefile.macosx
    index da612a4..fdb2483 100644
    a b  
    11# Makefile.macosx - configuration for Apple Macintosh OS X -*- Makefile -*-
    22#
    3 # Copyright (c) 2008-2011, The Chicken Team
     3# Copyright (c) 2008-2012, The Chicken Team
    44# Copyright (c) 2007, Felix L. Winkelmann
    55# All rights reserved.
    66#
  • Makefile.mingw

    diff --git a/Makefile.mingw b/Makefile.mingw
    index 45feda2..cf76ff4 100644
    a b  
    11# Makefile.mingw - configuration for MinGW (no MSYS) -*- Makefile -*-
    22#
    3 # Copyright (c) 2008-2011, The Chicken Team
     3# Copyright (c) 2008-2012, The Chicken Team
    44# Copyright (c) 2007, Felix L. Winkelmann
    55# All rights reserved.
    66#
  • Makefile.mingw-msys

    diff --git a/Makefile.mingw-msys b/Makefile.mingw-msys
    index c84c154..b98943f 100644
    a b  
    11# Makefile.mingw - configuration for MinGW (MSYS) -*- Makefile -*-
    22#
    3 # Copyright (c) 2008-2011, The Chicken Team
     3# Copyright (c) 2008-2012, The Chicken Team
    44# Copyright (c) 2007, Felix L. Winkelmann
    55# All rights reserved.
    66#
  • Makefile.solaris

    diff --git a/Makefile.solaris b/Makefile.solaris
    index 84dc433..6a92bf0 100644
    a b  
    11# Makefile.solaris - configuration for Solaris -*- Makefile -*-
    22#
    3 # Copyright (c) 2008-2011, The Chicken Team
     3# Copyright (c) 2008-2012, The Chicken Team
    44# Copyright (c) 2007, Felix L. Winkelmann
    55# All rights reserved.
    66#
  • apply-hack.ppc.darwin.S

    diff --git a/apply-hack.ppc.darwin.S b/apply-hack.ppc.darwin.S
    index 1449161..633dacc 100644
    a b  
    11/* apply-hack.ppc.s
    22;
    3 ; Copyright (c) 2008-2011 The Chicken Team
     3; Copyright (c) 2008-2012, The Chicken Team
    44; Copyright (c) 2007, Felix L. Winkelmann
    55; All rights reserved.
    66;
  • apply-hack.ppc.sysv.S

    diff --git a/apply-hack.ppc.sysv.S b/apply-hack.ppc.sysv.S
    index fafd314..1484ff5 100644
    a b  
    11/* apply-hack.ppc.s
    22;
    3 ; Copyright (c) 2008-2011, The Chicken Team
     3; Copyright (c) 2008-2012, The Chicken Team
    44; Copyright (c) 2007, Felix L. Winkelmann
    55; All rights reserved.         
    66;
  • apply-hack.x86-64.S

    diff --git a/apply-hack.x86-64.S b/apply-hack.x86-64.S
    index f71e99f..5539a4a 100644
    a b  
    11/* Apply-hack.x86-64.S
    22;
    3 ; Copyright (c) 2008-2011, The Chicken Team
     3; Copyright (c) 2008-2012, The Chicken Team
    44; Copyright (c) 2007, Felix L. Winkelmann
    55; All rights reserved.
    66;
  • apply-hack.x86.S

    diff --git a/apply-hack.x86.S b/apply-hack.x86.S
    index 3904f04..c3407df 100644
    a b  
    11/* apply-hack.x86.S
    22;
    3 ; Copyright (c) 2008-2011, The Chicken Team
     3; Copyright (c) 2008-2012, The Chicken Team
    44; Copyright (c) 2007, Felix L. Winkelmann
    55; All rights reserved.
    66;
  • batch-driver.scm

    diff --git a/batch-driver.scm b/batch-driver.scm
    index e8ad83a..bad5052 100644
    a b  
    11;;;; batch-driver.scm - Driver procedure for the compiler
    22;
    3 ; Copyright (c) 2008-2011, The Chicken Team
     3; Copyright (c) 2008-2012, The Chicken Team
    44; Copyright (c) 2000-2007, Felix L. Winkelmann
    55; All rights reserved.
    66;
  • build-version.scm

    diff --git a/build-version.scm b/build-version.scm
    index 1e89589..06dc92a 100644
    a b  
    11;;;; build-version.scm
    22;
    3 ; Copyright (c) 2011, The Chicken Team
     3; Copyright (c) 2011-2012, The Chicken Team
    44; All rights reserved.
    55;
    66; Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following
  • c-backend.scm

    diff --git a/c-backend.scm b/c-backend.scm
    index f859cc3..e8e171d 100644
    a b  
    11;;; c-backend.scm - C-generating backend for the CHICKEN compiler
    22;
    3 ; Copyright (c) 2008-2011, The Chicken Team
     3; Copyright (c) 2008-2012, The Chicken Team
    44; Copyright (c) 2000-2007, Felix L. Winkelmann
    55; All rights reserved.
    66;
  • c-platform.scm

    diff --git a/c-platform.scm b/c-platform.scm
    index a633530..856af14 100644
    a b  
    11;;;; c-platform.scm - Platform specific parameters and definitions
    22;
    3 ; Copyright (c) 2008-2011, The Chicken Team
     3; Copyright (c) 2008-2012, The Chicken Team
    44; Copyright (c) 2000-2007, Felix L. Winkelmann
    55; All rights reserved.
    66;
  • chicken-bug.scm

    diff --git a/chicken-bug.scm b/chicken-bug.scm
    index 3d8f0af..202392a 100644
    a b  
    11;;;; chicken-bug.scm - Bug report-generator
    22;
    3 ; Copyright (c) 2008-2011, The Chicken Team
     3; Copyright (c) 2008-2012, The Chicken Team
    44; All rights reserved.
    55;
    66; Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following
  • chicken-ffi-syntax.scm

    diff --git a/chicken-ffi-syntax.scm b/chicken-ffi-syntax.scm
    index 687c958..89d9f33 100644
    a b  
    11;;;; chicken-ffi-syntax.scm
    22;
    3 ; Copyright (c) 2008-2011, The Chicken Team
     3; Copyright (c) 2008-2012, The Chicken Team
    44; Copyright (c) 2000-2007, Felix L. Winkelmann
    55; All rights reserved.
    66;
  • chicken-install.scm

    diff --git a/chicken-install.scm b/chicken-install.scm
    index f1eceb9..2674797 100644
    a b  
    11;;;; chicken-install.scm
    22;
    3 ; Copyright (c) 2008-2011, The Chicken Team
     3; Copyright (c) 2008-2012, The Chicken Team
    44; All rights reserved.
    55;
    66; Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following
  • chicken-profile.scm

    diff --git a/chicken-profile.scm b/chicken-profile.scm
    index 1b001ac..8785b7b 100644
    a b  
    11;;;; chicken-profile.scm - Formatted display of profile outputs - felix -*- Scheme -*-
    22;
    3 ; Copyright (c) 2008-2011, The Chicken Team
     3; Copyright (c) 2008-2012, The Chicken Team
    44; Copyright (c) 2000-2007, Felix L. Winkelmann
    55; All rights reserved.
    66;
  • chicken-status.scm

    diff --git a/chicken-status.scm b/chicken-status.scm
    index 6afe72f..72c1342 100644
    a b  
    11;;;; chicken-status.scm
    22;
    3 ; Copyright (c) 2008-2011, The Chicken Team
     3; Copyright (c) 2008-2012, The Chicken Team
    44; All rights reserved.
    55;
    66; Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following
  • chicken-syntax.scm

    diff --git a/chicken-syntax.scm b/chicken-syntax.scm
    index bed542e..9386004 100644
    a b  
    11;;;; chicken-syntax.scm - non-standard syntax extensions
    22;
    3 ; Copyright (c) 2008-2011, The Chicken Team
     3; Copyright (c) 2008-2012, The Chicken Team
    44; Copyright (c) 2000-2007, Felix L. Winkelmann
    55; All rights reserved.
    66;
  • chicken-uninstall.scm

    diff --git a/chicken-uninstall.scm b/chicken-uninstall.scm
    index 3c86026..335dc56 100644
    a b  
    11;;;; chicken-uninstall.scm
    22;
    3 ; Copyright (c) 2008-2011, The Chicken Team
     3; Copyright (c) 2008-2012, The Chicken Team
    44; All rights reserved.
    55;
    66; Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following
  • chicken.h

    diff --git a/chicken.h b/chicken.h
    index ffac46c..66e83cc 100644
    a b  
    11/* chicken.h - General headerfile for compiler generated executables
    22;
    3 ; Copyright (c) 2008-2011, The Chicken Team
     3; Copyright (c) 2008-2012, The Chicken Team
    44; Copyright (c) 2000-2007, Felix L. Winkelmann
    55; All rights reserved.
    66;
  • chicken.import.scm

    diff --git a/chicken.import.scm b/chicken.import.scm
    index 56a0dbb..2df7896 100644
    a b  
    11;;;; chicken.import.scm - import library for "chicken" module
    22;
    3 ; Copyright (c) 2008-2011, The Chicken Team
     3; Copyright (c) 2008-2012, The Chicken Team
    44; All rights reserved.
    55;
    66; Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following
  • chicken.scm

    diff --git a/chicken.scm b/chicken.scm
    index 1bf2591..cc5e83d 100644
    a b  
    11;;;; chicken.scm - The CHICKEN Scheme compiler (loader/main-module)
    22;
    3 ; Copyright (c) 2008-2011, The Chicken Team
     3; Copyright (c) 2008-2012, The Chicken Team
    44; Copyright (c) 2000-2007, Felix L. Winkelmann
    55; All rights reserved.
    66;
  • common-declarations.scm

    diff --git a/common-declarations.scm b/common-declarations.scm
    index 9201ca4..d02500d 100644
    a b  
    11;;;; common-declarations.scm - settings for core libraries
    22;
    3 ; Copyright (c) 2011, The CHICKEN Team
     3; Copyright (c) 2011-2012, The Chicken Team
    44; All rights reserved.
    55;
    66; Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following
  • compiler-namespace.scm

    diff --git a/compiler-namespace.scm b/compiler-namespace.scm
    index 7351f81..edc9bb4 100644
    a b  
    11;;;; compiler-namespace.scm - private namespace declarations for compiler units
    22;
    3 ; Copyright (c) 2009-2011, The Chicken Team
     3; Copyright (c) 2009-2012, The Chicken Team
    44; All rights reserved.
    55;
    66; Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following
  • compiler-syntax.scm

    diff --git a/compiler-syntax.scm b/compiler-syntax.scm
    index 337d35e..85aae77 100644
    a b  
    11;;;; compiler-syntax.scm - compiler syntax used internally
    22;
    3 ; Copyright (c) 2009-2011, The Chicken Team
     3; Copyright (c) 2009-2012, The Chicken Team
    44; All rights reserved.
    55;
    66; Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following
  • compiler.scm

    diff --git a/compiler.scm b/compiler.scm
    index 0917cec..6f8267d 100644
    a b  
    55;
    66;
    77;--------------------------------------------------------------------------------------------
    8 ; Copyright (c) 2008-2011, The Chicken Team
     8; Copyright (c) 2008-2012, The Chicken Team
    99; Copyright (c) 2000-2007, Felix L. Winkelmann
    1010; All rights reserved.
    1111;
  • config-arch.sh

    diff --git a/config-arch.sh b/config-arch.sh
    index 7651837..20a457a 100644
    a b  
    11#!/bin/sh
    22# config-arch.sh - return host architecture id, if supported by apply-hack
    33#
    4 # Copyright (c) 2008-2011, The Chicken Team
     4# Copyright (c) 2008-2012, The Chicken Team
    55# Copyright (c) 2000-2007, Felix L. Winkelmann
    66# All rights reserved.
    77#
  • csc.scm

    diff --git a/csc.scm b/csc.scm
    index 0b2dabb..3ba5007 100644
    a b  
    11;;;; csc.scm - Driver program for the CHICKEN compiler - felix -*- Scheme -*-
    22;
    3 ; Copyright (c) 2008-2011, The Chicken Team
     3; Copyright (c) 2008-2012, The Chicken Team
    44; Copyright (c) 2000-2007, Felix L. Winkelmann
    55; All rights reserved.
    66;
  • csi.import.scm

    diff --git a/csi.import.scm b/csi.import.scm
    index 9c6f589..34ad371 100644
    a b  
    11;;;; csi.import.scm - import library for "csi" module
    22;
    3 ; Copyright (c) 2008-2011, The Chicken Team
     3; Copyright (c) 2008-2012, The Chicken Team
    44; All rights reserved.
    55;
    66; Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following
  • csi.scm

    diff --git a/csi.scm b/csi.scm
    index c06aeb2..de17b74 100644
    a b  
    11;;;; csi.scm - Interpreter stub for CHICKEN
    22;
    3 ; Copyright (c) 2008-2011, The Chicken Team
     3; Copyright (c) 2008-2012, The Chicken Team
    44; Copyright (c) 2000-2007, Felix L. Winkelmann
    55; All rights reserved.
    66;
  • data-structures.import.scm

    diff --git a/data-structures.import.scm b/data-structures.import.scm
    index 2fd71bf..7332141 100644
    a b  
    11;;;; data-structures.import.scm - import library for "data-structures" module
    22;
    3 ; Copyright (c) 2008-2011, The Chicken Team
     3; Copyright (c) 2008-2012, The Chicken Team
    44; All rights reserved.
    55;
    66; Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following
  • data-structures.scm

    diff --git a/data-structures.scm b/data-structures.scm
    index 8d47f7f..058bc51 100644
    a b  
    11;;; data-structures.scm - Optional data structures extensions
    22;
    3 ; Copyright (c) 2008-2011, The Chicken Team
     3; Copyright (c) 2008-2012, The Chicken Team
    44; All rights reserved.
    55;
    66; Redistribution and use in source and binary forms, with or without
  • defaults.make

    diff --git a/defaults.make b/defaults.make
    index 474f9cd..a16e5a5 100644
    a b  
    11# defaults.make - default settings -*- Makefile -*-
    22#
    3 # Copyright (c) 2008-2011, The Chicken Team
     3# Copyright (c) 2008-2012, The Chicken Team
    44# Copyright (c) 2007, Felix L. Winkelmann
    55# All rights reserved.
    66#
  • eval.scm

    diff --git a/eval.scm b/eval.scm
    index 779c230..cea7e13 100644
    a b  
    11;;;; eval.scm - Interpreter for CHICKEN
    22;
    3 ; Copyright (c) 2008-2011, The Chicken Team
     3; Copyright (c) 2008-2012, The Chicken Team
    44; Copyright (c) 2000-2007, Felix L. Winkelmann
    55; All rights reserved.
    66;
  • expand.scm

    diff --git a/expand.scm b/expand.scm
    index df37971..feca02a 100644
    a b  
    11;;;; expand.scm - The HI/LO expander
    22;
    3 ; Copyright (c) 2008-2011, The Chicken Team
     3; Copyright (c) 2008-2012, The Chicken Team
    44; All rights reserved.
    55;
    66; Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following
  • extras.import.scm

    diff --git a/extras.import.scm b/extras.import.scm
    index 1c56903..f5bc744 100644
    a b  
    11;;;; extras.import.scm - import library for "extras" module
    22;
    3 ; Copyright (c) 2008-2011, The Chicken Team
     3; Copyright (c) 2008-2012, The Chicken Team
    44; All rights reserved.
    55;
    66; Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following
  • extras.scm

    diff --git a/extras.scm b/extras.scm
    index c01c0f3..2cc4d0e 100644
    a b  
    11;;; extras.scm - Optional non-standard extensions
    22;
    3 ; Copyright (c) 2008-2011, The Chicken Team
     3; Copyright (c) 2008-2012, The Chicken Team
    44; Copyright (c) 2000-2007, Felix L. Winkelmann
    55; All rights reserved.
    66;
  • files.import.scm

    diff --git a/files.import.scm b/files.import.scm
    index 31c5419..ca65019 100644
    a b  
    11;;;; files.import.scm - import library for "files" module
    22;
    3 ; Copyright (c) 2008-2011, The Chicken Team
     3; Copyright (c) 2008-2012, The Chicken Team
    44; All rights reserved.
    55;
    66; Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following
  • files.scm

    diff --git a/files.scm b/files.scm
    index f7e3d22..3fae8f5 100644
    a b  
    11;;;; files.scm - File and pathname operations
    22;
    3 ; Copyright (c) 2008-2011, The Chicken Team
     3; Copyright (c) 2008-2012, The Chicken Team
    44; Copyright (c) 2000-2007, Felix L. Winkelmann
    55; All rights reserved.
    66;
  • foreign.import.scm

    diff --git a/foreign.import.scm b/foreign.import.scm
    index ce0d9a6..ad44d7f 100644
    a b  
    11;;;; foreign.import.scm - import library for "foreign" pseudo module
    22;
    3 ; Copyright (c) 2008-2011, The Chicken Team
     3; Copyright (c) 2008-2012, The Chicken Team
    44; All rights reserved.
    55;
    66; Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following
  • irregex.import.scm

    diff --git a/irregex.import.scm b/irregex.import.scm
    index d2d55a8..7c2d3c2 100644
    a b  
    11;;;; irregex.import.scm - import library for "regex" module (irregex API)
    22;
    3 ; Copyright (c) 2008-2011, The Chicken Team
     3; Copyright (c) 2008-2012, The Chicken Team
    44; All rights reserved.
    55;
    66; Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following
  • irregex.scm

    diff --git a/irregex.scm b/irregex.scm
    index bdcbc5c..9349bcf 100644
    a b  
    11;;;; irregex.scm - container for irregex-core.scm
    22;
    3 ; Copyright (c) 2010-2011, The Chicken Team
     3; Copyright (c) 2010-2012, The Chicken Team
    44; All rights reserved.
    55;
    66; Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following
  • library.scm

    diff --git a/library.scm b/library.scm
    index 6211584..cc84da1 100644
    a b  
    11;;;; library.scm - R5RS library for the CHICKEN compiler
    22;
    3 ; Copyright (c) 2008-2011, The Chicken Team
     3; Copyright (c) 2008-2012, The Chicken Team
    44; Copyright (c) 2000-2007, Felix L. Winkelmann
    55; All rights reserved.
    66;
  • lolevel.import.scm

    diff --git a/lolevel.import.scm b/lolevel.import.scm
    index 7dcac97..bd0236c 100644
    a b  
    11;;;; lolevel.import.scm - import library for "lolevel" module
    22;
    3 ; Copyright (c) 2008-2011, The Chicken Team
     3; Copyright (c) 2008-2012, The Chicken Team
    44; All rights reserved.
    55;
    66; Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following
  • lolevel.scm

    diff --git a/lolevel.scm b/lolevel.scm
    index 8e4af8c..57d7529 100644
    a b  
    11;;;; lolevel.scm - Low-level routines for CHICKEN
    22;
    3 ; Copyright (c) 2008-2011, The Chicken Team
     3; Copyright (c) 2008-2012, The Chicken Team
    44; Copyright (c) 2000-2007, Felix L. Winkelmann
    55; All rights reserved.
    66;
  • modules.scm

    diff --git a/modules.scm b/modules.scm
    index 8b048a3..fd17c62 100644
    a b  
    11;;;; modules.scm - module-system support
    22;
    3 ; Copyright (c) 2011, The Chicken Team
     3; Copyright (c) 2011-2012, The Chicken Team
    44; All rights reserved.
    55;
    66; Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following
  • optimizer.scm

    diff --git a/optimizer.scm b/optimizer.scm
    index b4c39f7..1ba1ee7 100644
    a b  
    11;;;; optimizer.scm - The CHICKEN Scheme compiler (optimizations)
    22;
    3 ; Copyright (c) 2008-2011, The Chicken Team
     3; Copyright (c) 2008-2012, The Chicken Team
    44; Copyright (c) 2000-2007, Felix L. Winkelmann
    55; All rights reserved.
    66;
  • ports.import.scm

    diff --git a/ports.import.scm b/ports.import.scm
    index 24bd8cb..476dcfb 100644
    a b  
    11;;;; ports.import.scm - import library for "ports" module
    22;
    3 ; Copyright (c) 2008-2011, The Chicken Team
     3; Copyright (c) 2008-2012, The Chicken Team
    44; All rights reserved.
    55;
    66; Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following
  • ports.scm

    diff --git a/ports.scm b/ports.scm
    index 651c048..1b7f2aa 100644
    a b  
    11;;; ports.scm - Optional non-standard ports
    22;
    3 ; Copyright (c) 2008-2011, The Chicken Team
     3; Copyright (c) 2008-2012, The Chicken Team
    44; Copyright (c) 2000-2007, Felix L. Winkelmann
    55; All rights reserved.
    66;
  • posix-common.scm

    diff --git a/posix-common.scm b/posix-common.scm
    index 20b5a7a..c39ea3e 100644
    a b  
    11;;;; posix-common.scm - common code for UNIX and Windows versions of the posix unit
    22;
    3 ; Copyright (c) 2010-2011, The Chicken Team
     3; Copyright (c) 2010-2012, The Chicken Team
    44; All rights reserved.
    55;
    66; Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following
  • posix.import.scm

    diff --git a/posix.import.scm b/posix.import.scm
    index 764c4dc..0881204 100644
    a b  
    11;;;; posix.import.scm - import library for "posix" module
    22;
    3 ; Copyright (c) 2008-2011, The Chicken Team
     3; Copyright (c) 2008-2012, The Chicken Team
    44; All rights reserved.
    55;
    66; Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following
  • posixunix.scm

    diff --git a/posixunix.scm b/posixunix.scm
    index 9b23846..95039ca 100644
    a b  
    11;;;; posixunix.scm - Miscellaneous file- and process-handling routines
    22;
    3 ; Copyright (c) 2008-2011, The Chicken Team
     3; Copyright (c) 2008-2012, The Chicken Team
    44; Copyright (c) 2000-2007, Felix L. Winkelmann
    55; All rights reserved.
    66;
  • posixwin.scm

    diff --git a/posixwin.scm b/posixwin.scm
    index c12c2c5..88a4a4f 100644
    a b  
    11;;;; posixwin.scm - Miscellaneous file- and process-handling routines, available on Windows
    22;
    3 ; Copyright (c) 2008-2011, The Chicken Team
     3; Copyright (c) 2008-2012, The Chicken Team
    44; Copyright (c) 2000-2007, Felix L. Winkelmann
    55; All rights reserved.
    66;
  • private-namespace.scm

    diff --git a/private-namespace.scm b/private-namespace.scm
    index 17ce768..2f20b20 100644
    a b  
    11;;;; compiler-namespace.scm - A simple namespace system to keep compiler variables hidden
    22;
    3 ; Copyright (c) 2008-2011, The Chicken Team
     3; Copyright (c) 2008-2012, The Chicken Team
    44; Copyright (c) 2007, Felix L. Winkelmann
    55; All rights reserved.
    66;
  • profiler.scm

    diff --git a/profiler.scm b/profiler.scm
    index 3ddb525..32cf981 100644
    a b  
    11;;;; profiler.scm - Support code for profiling applications
    22;
    3 ; Copyright (c) 2008-2011, The Chicken Team
     3; Copyright (c) 2008-2012, The Chicken Team
    44; Copyright (c) 2000-2007, Felix L. Winkelmann
    55; All rights reserved.
    66;
  • rules.make

    diff --git a/rules.make b/rules.make
    index 7fc04e8..25743bc 100644
    a b  
    11# rules.make - basic build rules -*- Makefile -*-
    22#
    3 # Copyright (c) 2008-2011, The Chicken Team
     3# Copyright (c) 2008-2012, The Chicken Team
    44# Copyright (c) 2000-2007, Felix L. Winkelmann
    55# All rights reserved.
    66#
  • runtime.c

    diff --git a/runtime.c b/runtime.c
    index 41a2f9d..8c60abc 100644
    a b  
    11/* runtime.c - Runtime code for compiler generated executables
    22;
    3 ; Copyright (c) 2008-2011, The Chicken Team
     3; Copyright (c) 2008-2012, The Chicken Team
    44; Copyright (c) 2000-2007, Felix L. Winkelmann
    55; All rights reserved.
    66;
  • scheduler.scm

    diff --git a/scheduler.scm b/scheduler.scm
    index 02a8fad..e3a96bc 100644
    a b  
    11; scheduler.scm - Basic scheduler for multithreading
    22;
    3 ; Copyright (c) 2008-2011, The Chicken Team
     3; Copyright (c) 2008-2012, The Chicken Team
    44; Copyright (c) 2000-2007, Felix L. Winkelmann
    55; All rights reserved.
    66;
  • scrutinizer.scm

    diff --git a/scrutinizer.scm b/scrutinizer.scm
    old mode 100755
    new mode 100644
    index 332ed2e..94f4ec3
    a b  
    11;;;; scrutinizer.scm - The CHICKEN Scheme compiler (local flow analysis)
    22;
    3 ; Copyright (c) 2009-2011, The Chicken Team
     3; Copyright (c) 2009-2012, The Chicken Team
    44; All rights reserved.
    55;
    66; Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following
  • setup-api.scm

    diff --git a/setup-api.scm b/setup-api.scm
    index a61a4bb..8e1d582 100644
    a b  
    11;;;; setup-api.scm - build + installation API for eggs
    22;
    3 ; Copyright (c) 2008-2011, The Chicken Team
     3; Copyright (c) 2008-2012, The Chicken Team
    44; All rights reserved.
    55;
    66; Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following
  • setup-download.scm

    diff --git a/setup-download.scm b/setup-download.scm
    index 1314759..873f729 100644
    a b  
    11;;;; setup-download.scm
    22;
    3 ; Copyright (c) 2008-2011, The Chicken Team
     3; Copyright (c) 2008-2012, The Chicken Team
    44; All rights reserved.
    55;
    66; Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following
  • srfi-1.import.scm

    diff --git a/srfi-1.import.scm b/srfi-1.import.scm
    index 8c76ea4..c01a807 100644
    a b  
    11;;;; srfi-1.import.scm - import library for "srfi-1" module
    22;
    3 ; Copyright (c) 2008-2011, The Chicken Team
     3; Copyright (c) 2008-2012, The Chicken Team
    44; All rights reserved.
    55;
    66; Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following
  • srfi-13.import.scm

    diff --git a/srfi-13.import.scm b/srfi-13.import.scm
    index 562df13..b941dce 100644
    a b  
    11;;;; srfi-13.import.scm - import library for "srfi-13" module
    22;
    3 ; Copyright (c) 2008-2011, The Chicken Team
     3; Copyright (c) 2008-2012, The Chicken Team
    44; All rights reserved.
    55;
    66; Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following
  • srfi-14.import.scm

    diff --git a/srfi-14.import.scm b/srfi-14.import.scm
    index e896e3a..3d55380 100644
    a b  
    11;;;; srfi-14.import.scm - import library for "srfi-14" module
    22;
    3 ; Copyright (c) 2008-2011, The Chicken Team
     3; Copyright (c) 2008-2012, The Chicken Team
    44; All rights reserved.
    55;
    66; Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following
  • srfi-18.import.scm

    diff --git a/srfi-18.import.scm b/srfi-18.import.scm
    index e091886..cb10eac 100644
    a b  
    11;;;; srfi-18.import.scm - import library for "srfi-18" module
    22;
    3 ; Copyright (c) 2008-2011, The Chicken Team
     3; Copyright (c) 2008-2012, The Chicken Team
    44; All rights reserved.
    55;
    66; Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following
  • srfi-18.scm

    diff --git a/srfi-18.scm b/srfi-18.scm
    index a22d8db..93de135 100644
    a b  
    11;;;; srfi-18.scm - Simple thread unit - felix
    22;
    3 ; Copyright (c) 2008-2011, The Chicken Team
     3; Copyright (c) 2008-2012, The Chicken Team
    44; Copyright (c) 2000-2007, Felix L. Winkelmann
    55; All rights reserved.
    66;
  • srfi-4.import.scm

    diff --git a/srfi-4.import.scm b/srfi-4.import.scm
    index 308f0da..b1e15c8 100644
    a b  
    11;;;; srfi-4.import.scm - import library for "srfi-4" module
    22;
    3 ; Copyright (c) 2008-2011, The Chicken Team
     3; Copyright (c) 2008-2012, The Chicken Team
    44; All rights reserved.
    55;
    66; Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following
  • srfi-4.scm

    diff --git a/srfi-4.scm b/srfi-4.scm
    index 8b3def2..412b7c7 100644
    a b  
    11;;;; srfi-4.scm - Homogeneous numeric vectors
    22;
    3 ; Copyright (c) 2008-2011, The Chicken Team
     3; Copyright (c) 2008-2012, The Chicken Team
    44; Copyright (c) 2000-2007, Felix L. Winkelmann
    55; All rights reserved.
    66;
  • srfi-69.import.scm

    diff --git a/srfi-69.import.scm b/srfi-69.import.scm
    index ef239a6..1d15bbb 100644
    a b  
    11;;;; srfi-69.import.scm - import library for "srfi-69" module
    22;
    3 ; Copyright (c) 2008-2011, The Chicken Team
     3; Copyright (c) 2008-2012, The Chicken Team
    44; All rights reserved.
    55;
    66; Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following
  • srfi-69.scm

    diff --git a/srfi-69.scm b/srfi-69.scm
    index 4b22a3c..03e1620 100644
    a b  
    11;;; srfi-69.scm - Optional non-standard extensions
    22;
    3 ; Copyright (c) 2008-2011, The Chicken Team
     3; Copyright (c) 2008-2012, The Chicken Team
    44; Copyright (c) 2000-2007, Felix L. Winkelmann
    55; All rights reserved.
    66;
  • stub.scm

    diff --git a/stub.scm b/stub.scm
    index 18881f9..f68c871 100644
    a b  
    11;;;; stub.scm
    22;
    3 ; Copyright (c) 2008-2011, The Chicken Team
     3; Copyright (c) 2008-2012, The Chicken Team
    44; Copyright (c) 2000-2007, Felix L. Winkelmann
    55; All rights reserved.
    66;
  • support.scm

    diff --git a/support.scm b/support.scm
    index c8cda93..3ee317a 100644
    a b  
    11;;;; support.scm - Miscellaneous support code for the CHICKEN compiler
    22;
    3 ; Copyright (c) 2008-2011, The Chicken Team
     3; Copyright (c) 2008-2012, The Chicken Team
    44; Copyright (c) 2000-2007, Felix L. Winkelmann
    55; All rights reserved.
    66;
  • tcp.import.scm

    diff --git a/tcp.import.scm b/tcp.import.scm
    index ef84e58..ede74e8 100644
    a b  
    11;;;; tcp.import.scm - import library for "tcp" module
    22;
    3 ; Copyright (c) 2008-2011, The Chicken Team
     3; Copyright (c) 2008-2012, The Chicken Team
    44; All rights reserved.
    55;
    66; Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following
  • tcp.scm

    diff --git a/tcp.scm b/tcp.scm
    index 4731c01..960df46 100644
    a b  
    11;;;; tcp.scm - Networking stuff
    22;
    3 ; Copyright (c) 2008-2011, The Chicken Team
     3; Copyright (c) 2008-2012, The Chicken Team
    44; Copyright (c) 2000-2007, Felix L. Winkelmann
    55; All rights reserved.
    66;
  • tests/null.scm

    diff --git a/tests/null.scm b/tests/null.scm
    index bc3bccb..a18c640 100644
    a b  
    11;;;; null.scm - the empty program
    22;
    3 ; Copyright (c) 2010-2011, The Chicken Team
     3; Copyright (c) 2010-2012, The Chicken Team
    44; All rights reserved.
    55;
    66; Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following
  • tweaks.scm

    diff --git a/tweaks.scm b/tweaks.scm
    index f4302d0..b92427e 100644
    a b  
    11;;;; tweaks.scm - Some inline-routines and declarations for the compiler
    22;
    3 ; Copyright (c) 2008-2011, The Chicken Team
     3; Copyright (c) 2008-2012, The Chicken Team
    44; Copyright (c) 2000-2007, Felix L. Winkelmann
    55; All rights reserved.
    66;
  • types.db

    diff --git a/types.db b/types.db
    index e114ece..b90d86e 100644
    a b  
    11;;;; types.db - Type-information for core library functions -*- Scheme -*-
    22;
    3 ; Copyright (c)2009-2011, The Chicken Team
     3; Copyright (c) 2009-2012, The Chicken Team
    44; All rights reserved.
    55;
    66; Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following
  • utils.import.scm

    diff --git a/utils.import.scm b/utils.import.scm
    index 75cb318..00f3e37 100644
    a b  
    11;;;; utils.import.scm - import library for "utils" module
    22;
    3 ; Copyright (c) 2008-2011, The Chicken Team
     3; Copyright (c) 2008-2012, The Chicken Team
    44; All rights reserved.
    55;
    66; Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following
  • utils.scm

    diff --git a/utils.scm b/utils.scm
    index de55a4f..0db5c96 100644
    a b  
    11;;;; utils.scm - Utilities for scripting and file stuff
    22;
    3 ; Copyright (c) 2008-2011, The Chicken Team
     3; Copyright (c) 2008-2012, The Chicken Team
    44; Copyright (c) 2000-2007, Felix L. Winkelmann
    55; All rights reserved.
    66;