Update copyright years.
authorMatt Birkholz <puck@birchwood-abbey.net>
Wed, 28 May 2014 23:34:04 +0000 (16:34 -0700)
committerMatt Birkholz <puck@birchwood-abbey.net>
Wed, 28 May 2014 23:34:04 +0000 (16:34 -0700)
Remove test-copy-1.txt (an accident).

23 files changed:
src/gl/Makefile.in
src/gl/gl-glx.scm
src/gl/gl.pkg
src/glib/gio.scm
src/glib/glib.texinfo
src/glib/test-copy-1.txt [deleted file]
src/gtk/Makefile.in
src/gtk/compile.scm
src/gtk/fix-layout.scm
src/gtk/gtk-check.scm
src/gtk/gtk-ev.scm
src/gtk/gtk-tests.scm
src/gtk/gtk-widget.scm
src/gtk/gtk.cdecl
src/gtk/gtk.pkg
src/gtk/gtkio.c
src/pango/pango.cdecl
src/pango/pango.scm
src/planetarium/geometry.scm
src/planetarium/google-earth.scm
src/planetarium/mit-3d.pkg
src/planetarium/mit.pkg
src/planetarium/tellurion.scm

index 70430441ebbe803a2bed70a2e26f58dee9352045..9948cbaacd1d320e74e3c1f92ac0c4965d9f8ab8 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2011, 2012, 2013 Matthew Birkholz
+# Copyright (C) 2011, 2012, 2013, 2014 Matthew Birkholz
 #
 # This file is part of an extension to MIT/GNU Scheme.
 #
index 53f9461e9e8251ec635749c9772cdf5d2ebb438f..26d3cd2ca7f64b01a7a4d59fad57835e46f1ac2a 100644 (file)
@@ -1,6 +1,6 @@
 #| -*-Scheme-*-
 
-Copyright (C) 2013  Matthew Birkholz
+Copyright (C) 2013, 2014  Matthew Birkholz
 
 This file is part of an extension to MIT/GNU Scheme.
 
index 2715bc72ddce257a1f63b34a22c98fa65e777a1b..1e793719f2d37d84ac207877b7bee5f98c83c140 100644 (file)
@@ -1,6 +1,6 @@
 #| -*-Scheme-*-
 
-Copyright (C) 2013  Matthew Birkholz
+Copyright (C) 2013, 2014  Matthew Birkholz
 
 This file is part of an extension to MIT/GNU Scheme.
 
index 0dc93162af4b26a2f24145ebeed253fca8cef5d4..4392cbc19d4e98be3991642b1b14393e4adb9e71 100644 (file)
@@ -1,6 +1,6 @@
 #| -*-Scheme-*-
 
-Copyright (C) 2011  Matthew Birkholz
+Copyright (C) 2011, 2014  Matthew Birkholz
 
 This file is part of MIT/GNU Scheme.
 
index a3732d6617d668001d135a319a49ba9132ab87b2..e29f36dae86a3bbe626afe631d947c844b716b57 100644 (file)
@@ -26,7 +26,8 @@
 @copying
 This manual documents @acronym{Glib} @value{VERSION}.
 
-Copyright @copyright{} 2008, 2009, 2010, 2011, 2012, 2013  Matthew Birkholz
+Copyright @copyright{} 2008, 2009, 2010, 2011, 2012, 2013, 2014
+Matthew Birkholz
 
 @quotation
 Permission is granted to copy, distribute and/or modify this document
diff --git a/src/glib/test-copy-1.txt b/src/glib/test-copy-1.txt
deleted file mode 100644 (file)
index 1ec888f..0000000
+++ /dev/null
@@ -1,235 +0,0 @@
-Structure and construction of the MIT/GNU Scheme source tree
-
-This README delves into the details of building MIT/GNU Scheme from
-source on GNU/Linux.  If you found this README in a binary
-distribution, you probably want the installation instructions in
-../doc/user-manual/mit-scheme-user.info node "Installation", also
-available online at http://www.gnu.org/software/mit-scheme/.
-
-The rest of this file assumes you were able to successfully complete
-an installation.  Mit-scheme is used to build mit-scheme, so a binary
-distribution must be installed first.  The only alternative is to
-cross-compile on a host that has a binary distribution installed.
-
-If you have the "Portable C" distribution, you have the result of LIAR
-cross-compiling itself to C.  The resulting .c files can be compiled
-almost anywhere, e.g. on a 64bit target withOUT an mit-scheme already
-installed.  To build mit-scheme from this distribution, see node
-"Portable C Installation" in ../doc/user-manual/mit-scheme-user.info,
-also available online at http://www.gnu.org/software/mit-scheme/.  To
-build this distribution from sources, use src/etc/make-liarc-dist.sh.
-\f
-Directories
-===========
-
-MIT/GNU Scheme is a large program consisting of many subdirectories.
-These subdirectories can be further grouped together into rough
-functional subsystems.
-
-The core subsystem consists of these directories:
-
-* "microcode" contains the C code that is used to build the executable
-  program "scheme".
-
-* "runtime" contains the bulk of the run-time library, including
-  almost everything documented in the reference manual.
-
-* "runtime-check" is a build directory used to make alternate run-time
-  library binaries that are safer than the standard binaries.  The
-  standard binaries are compiled with type-checking disabled for many
-  common operations; the alternate binaries have type-checking
-  enabled.
-
-* "sos" contains the SOS object-oriented programming extension.
-
-* "star-parser" contains the pattern-matching parser language
-  extension.
-
-* "win32" contains extra parts of the run-time library that are
-  specific to the Microsoft Windows platform.
-
-* "xml" contains support for XML and XHTML I/O.
-
-* "ffi" provides syntax for calling foreign (C) functions and
-  manipulating alien (C) data.
-
-The compiler subsystem consists of these three directories:
-
-* "sf" contains a program that translates Scheme source code to an
-  internal binary format called SCode.  SCode is the internal
-  representation used by the MIT/GNU Scheme interpreter.  The "sf"
-  program also performs a handful of optimizations, such as
-  user-directed beta substitution and early binding of known variables
-  such as CAR.
-
-* "compiler" contains the native-code compiler.  This program
-  translates SCode to machine-language instructions.
-
-* "cref" is a cross-reference program that also implements a
-  rudimentary module system.
-
-The editor subsystem consists of two directories:
-
-* "edwin" contains our Emacs-like editor written in Scheme.
-
-* "imail" contains an email-reading program for Edwin.
-
-There is one C/Unix FFI wrapper thus far:
-
-* "gdbm" wraps libgdbm, the GNU dbm database routines, and provides a
-  drop-in replacement for the microcode module based package (runtime
-  gdbm).
-\f
-These are miscellaneous extras:
-
-* "6001" is extra code used here at MIT for teaching 6.001, our
-  introductory computer-science course based on "Structure and
-  Interpretation of Computer Programs".  "sicp" contains an older
-  version of this code that is no longer in use (and probably no
-  longer works).
-
-* "etc" contains miscellaneous files for building the program.
-
-* "rcs" is a parser for RCS files.  It also contains a program for
-  generating merged log files, in RCS or ChangeLog format, for
-  directory trees under RCS or CVS control.
-
-* "ssp" is an implementation of "Scheme Server Pages" that supports
-  server-side web programming.  It works in conjunction with Apache
-  and mod-lisp.
-
-* "xdoc" is a web-programming document language, used at MIT for an
-  experimental electronics circuit course during spring term 2004.
-  This language is no longer in active use and will not be supported.
-  But it is a good example of "ssp" usage.
-
-These directories are no longer actively in use and the code they
-contain may not work:
-
-* "pcsample" contains a profiling extension.
-
-* "swat" contains an extension that interfaces MIT/GNU Scheme to the
-  Tk graphical toolkit.
-
-* "wabbit" contains program for finding all of the objects that
-  contain pointers to a given object.
-\f
-Building from source on unix systems
-====================================
-
-Building MIT/GNU Scheme from the sources in the git repository is a
-multi-stage process designed around a number of "build states" and
-specific commands that move the build tree from one state to another.
-These are the build states, ordered from least to most "built".
-
-* The `fresh' state is the initial state of the tree when it is
-  freshly checked out of the git repository.
-
-* The `distribution' state is what we distribute to the world.  In
-  this state, all of the target-system independent configuration has
-  been done.
-
-* In the `configured' state, the tree is customized for a particular
-  target system, but it is not yet compiled.
-
-* In the `compiled' state, the tree is fully compiled.
-
-The following table shows the commands used to transition the build
-tree from one build state to another.  All of the commands must be run
-in the "src" directory.
-
-       From            To              Command
-       ------------    ------------    ---------------------
-       fresh           distribution    ./Setup.sh
-       distribution    configured      ./configure
-       configured      compiled        make
-       compiled        configured      make clean
-       compiled        distribution    make distclean
-       compiled        fresh           make maintainer-clean
-       configured      distribution    make distclean
-       configured      fresh           make maintainer-clean
-
-Thus the following sequence of commands can be used to build and
-install MIT/GNU Scheme, assuming you have already installed a
-compatible binary release.
-
-       ./Setup.sh
-       ./configure
-       make
-       make install
-
-Note that the "./Setup.sh" command requires a compiler that supports
-the "-M" option for generating dependencies.  Normally this step is
-executed on a GNU/Linux system.
-
-All of these commands require a working mit-scheme command from a
-compatible binary release.  This "host scheme" is usually any recent
-release, but the most recent is most likely to have all of the runtime
-primitives and macros and whatnot required by the latest sources.  If
-you have the latest release installed and working, yet cannot compile
-the latest sources, please feel free to report this as a bug, via the
-bug tracking system mentioned on the project homepage:
-
-       http://www.gnu.org/software/mit-scheme/
-
-If you have installed your host scheme somewhere other than the usual
-system-wide location(s), you may want to set the MIT_SCHEME_EXE
-environment variable.  The Makefiles expect it to be the host scheme's
-command name.  For information about installing MIT/GNU Scheme in
-unusual locations, please see the Unix Installation instructions.
-\f
-Building an incompatible compiler
-=================================
-
-If the basic compiler data structures have changed, it may not be
-possible to directly build the compiler by invoking make.  (This is a
-known bug.)
-
-However, it is possible to build the compiler from the Scheme sources
-if you have a working installation with a runtime band.  Here is how:
-
-    1.  Put the source tree into the `configured' state as per the
-        above instructions.
-
-    2.  Make the "src/compiler/" directory be your working directory.
-
-    3.  `Syntax' the compiler with these steps:
-
-        a.  Start scheme with the runtime band:
-            scheme --band runtime.com
-
-        b.  ]=> (load-option 'sf)
-
-        c.  ]=> (load "compiler.sf")
-
-        d.  ]=> (exit)
-
-    4.  Compile the compiler with these steps:
-
-        a.  Start scheme with the runtime band:
-            scheme --band runtime.com
-
-        b.  ]=> (load-option 'sf)
-
-        c.  ]=> (load "make")
-
-        d.  ]=> (load "compiler.cbf")
-
-        e.  ]=> (exit)
-
-    5.  Build a new compiler band with these steps:
-
-        a.  Start scheme with the runtime band:
-            scheme --band runtime.com
-
-        b.  ]=> (load-option 'cref)
-
-        c.  ]=> (load-option 'sf)
-
-        d.  ]=> (load "make")
-
-        e.  ]=> (disk-save "compiler-band.com")
-
-The resulting band, compiler-band.com, should be suitable for
-compiling the compiler.
-\f
index 4930d886c2183e60ce8b3b276fb9c2c55e812011..d73b529f1b73af0a5327ebe1b696a53302df2938 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2011, 2012, 2013 Matthew Birkholz
+# Copyright (C) 2011, 2012, 2013, 2014 Matthew Birkholz
 #
 # This file is part of an extension to MIT/GNU Scheme.
 #
index 627ae50a7b3a1e8ee8152c54167e4b5cdeee6b49..26b30c2df96637c3b6a63ae53853640fc7fb78a9 100644 (file)
@@ -1,6 +1,6 @@
 #| -*-Scheme-*-
 
-Copyright (C) 2009, 2010, 2011, 2012, 2013  Matthew Birkholz
+Copyright (C) 2009, 2010, 2011, 2012, 2013, 2014  Matthew Birkholz
 
 This file is part of an extension to MIT/GNU Scheme.
 
index 5071c6c4a9140c49824dab4cbfd7cece0f486f40..f2f97005288dc0fff3af25ee422e2e9cf33564ee 100644 (file)
@@ -1,6 +1,7 @@
 #| -*-Scheme-*-
 
-Copyright (C) 2007, 2008, 2009, 2010, 2011, 2012, 2013  Matthew Birkholz
+Copyright (C) 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014  Matthew
+Birkholz
 
 This file is part of an extension to MIT/GNU Scheme.
 
index c64e07c086343d6152f5f055ce348d6c9fd4b004..67099f2842f6d881af1b380b14c69a8f38980f6b 100644 (file)
@@ -1,6 +1,6 @@
 #| -*-Scheme-*-
 
-Copyright (C) 2012, 2013  Matthew Birkholz
+Copyright (C) 2012, 2013, 2014  Matthew Birkholz
 
 This file is part of MIT/GNU Scheme.
 
index 17e55358288d6187f7cb5def24119a3b358cca0f..a5bf112135cfcd5c6bd7de47f9e78cc92b7ba913 100644 (file)
@@ -1,6 +1,6 @@
 #| -*-Scheme-*-
 
-Copyright (C) 2007, 2008, 2009, 2011, 2012  Matthew Birkholz
+Copyright (C) 2007, 2008, 2009, 2011, 2012, 2014  Matthew Birkholz
 
 This file is part of an extension to MIT/GNU Scheme.
 
index ddeca48ac11c084196c1c282fe499b95afa91132..faa38356faa3f91b17cb9baf5d3506dcae475e3e 100644 (file)
@@ -1,6 +1,6 @@
 #| -*-Scheme-*-
 
-Copyright (C) 2010, 2011, 2012, 2013  Matthew Birkholz
+Copyright (C) 2010, 2011, 2012, 2013, 2014  Matthew Birkholz
 
 This file is part of an extension to MIT/GNU Scheme.
 
index 18cfd573b3ab7be1abe09627ccea89803df6486e..32535fdc125396178a1ec48576f78f652f8f1f43 100644 (file)
@@ -1,6 +1,7 @@
 #| -*-Scheme-*-
 
-Copyright (C) 2007, 2008, 2009, 2010, 2011, 2012, 2013  Matthew Birkholz
+Copyright (C) 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014  Matthew
+Birkholz
 
 This file is part of an extension to MIT/GNU Scheme.
 
index cc401edcf8f5b61e26522824b58e545cc54de4ca..950804b0592516d559eb06b64fe3b2b7b5fb688d 100644 (file)
@@ -1,6 +1,6 @@
 #| -*-Scheme-*-
 
-Copyright (C) 2007, 2008, 2009, 2010, 2011, 2012  Matthew Birkholz
+Copyright (C) 2007, 2008, 2009, 2010, 2011, 2012, 2014  Matthew Birkholz
 
 This file is part of an extension to MIT/GNU Scheme.
 
index d8b666a0a9b878db3803e352aaf3e70a0bcd1539..52775e08e5a5e0a9e5588291c174e8f98f5954ea 100644 (file)
@@ -1,6 +1,7 @@
 #| -*-Scheme-*-
 
-Copyright (C) 2007, 2008, 2009, 2010, 2011, 2012, 2013  Matthew Birkholz
+Copyright (C) 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014  Matthew
+Birkholz
 
 This file is part of an extension to MIT/GNU Scheme.
 
index db660cf35fd6f0494f8a9171157153b7e9c973ef..1f0669f30002d07cb08fe1e86e1edca7d2afa374 100644 (file)
@@ -1,6 +1,6 @@
 /* -*-C-*-
 
-Copyright (C) 2008, 2009, 2010, 2011, 2012, 2013  Matthew Birkholz
+Copyright (C) 2008, 2009, 2010, 2011, 2012, 2013, 2014  Matthew Birkholz
 
 This file is part of MIT/GNU Scheme.
 
index 59a9b71afc6d7ef1eb6c4e9c6014732a2df0aa43..170fef0f586533007d0b632d7dcdc38c948e6a31 100644 (file)
@@ -1,6 +1,6 @@
 #| -*-Scheme-*-
 
-Copyright (C) 2007, 2008, 2009, 2010, 2011, 2012  Matthew Birkholz
+Copyright (C) 2007, 2008, 2009, 2010, 2011, 2012, 2014  Matthew Birkholz
 
 This file is part of an extension to MIT/GNU Scheme.
 
index 41824bc04d88cdd922581bd8fec7078471293e08..9699172b4d989b56f16d5617bc5abec42f3fa26f 100644 (file)
@@ -1,6 +1,6 @@
 #| -*-Scheme-*-
 
-Copyright (C) 2009, 2010, 2011, 2012, 2013  Matthew Birkholz
+Copyright (C) 2009, 2010, 2011, 2012, 2013, 2014  Matthew Birkholz
 
 This file is part of an extension to MIT/GNU Scheme.
 
index 6dd46faf155c2c26d604336a818c3cc59063288a..d7cba250d62f4f71bf19a6406ddbd6474685eb1d 100644 (file)
@@ -1,6 +1,6 @@
 #| -*-Scheme-*-
 
-Copyright (C) 2013  Matthew Birkholz
+Copyright (C) 2013, 2014  Matthew Birkholz
 
 This file is part of an extension to MIT/GNU Scheme.
 
index 940ed1f4ec6c873b7506c11af60e3ceba1cb9eae..8c2f2ad17d1dc48016e30f7b4e3560f783f959cb 100644 (file)
@@ -1,6 +1,6 @@
 #| -*-Scheme-*-
 
-Copyright (C) 2013  Matthew Birkholz
+Copyright (C) 2013, 2014  Matthew Birkholz
 
 This file is part of an extension to MIT/GNU Scheme.
 
index 23cc946741225c5e8f5287505fd7646234b1ebb6..07213c5906174ad4eb70091681189375ee8aaa1d 100644 (file)
@@ -1,6 +1,6 @@
 #| -*-Scheme-*-
 
-Copyright (C) 2013  Matthew Birkholz
+Copyright (C) 2013, 2014  Matthew Birkholz
 
 This file is part of an extension to MIT/GNU Scheme.
 
index caef3d10eedb374e35214d14e38775aebb8740f5..5e42ac6a1eabe834fd9ee184c9f60652f17da16a 100644 (file)
@@ -1,6 +1,6 @@
 #| -*-Scheme-*-
 
-Copyright (C) 2013  Matthew Birkholz
+Copyright (C) 2013, 2014  Matthew Birkholz
 
 This file is part of an extension to MIT/GNU Scheme.
 
index 450aa4b7845eece10adb467aa46c2fa577226201..082f721d833a363af32759dc34fb82a5cb4b963b 100644 (file)
@@ -1,6 +1,6 @@
 #| -*-Scheme-*-
 
-Copyright (C) 2013  Matthew Birkholz
+Copyright (C) 2013, 2014  Matthew Birkholz
 
 This file is part of an extension to MIT/GNU Scheme.