diff options
| author | Steve Langasek <vorlon@debian.org> | 2004-12-07 23:23:48 -0800 | 
|---|---|---|
| committer | Bryan Newbold <bnewbold@robocracy.org> | 2017-02-20 00:05:28 -0800 | 
| commit | 37f2f5e0bb11a18deecf48c7ad6bcbf7bd932db2 (patch) | |
| tree | 692caebb60ec5f80ce528a403b69351ca756d530 /README | |
| parent | e21d47d7813159bb71e0671df9b52ec0470c358d (diff) | |
| parent | c7d035ae1a729232579a0fe41ed5affa131d3623 (diff) | |
| download | scm-37f2f5e0bb11a18deecf48c7ad6bcbf7bd932db2.tar.gz scm-37f2f5e0bb11a18deecf48c7ad6bcbf7bd932db2.zip | |
Import Debian changes 5d9-4.1debian/5d9-4.1
scm (5d9-4.1) unstable; urgency=high
  * Non-maintainer upload.
  * High-urgency upload for sarge-targetted RC bugfix.
  * Revert upstream "CAUTIOUS" define, which causes the scm build to
    fail its test suite on alpha (and, it appears, powerpc as well).
    Closes: #245810.
scm (5d9-4) unstable; urgency=low
  * Apply patch from 144062 to fix hppa build (Closes: #144062)
  * Change scm.1 section from Jan 4 200 to 1. (lintian)
scm (5d9-3) unstable; urgency=low
  * Properly clean up info files.
  * Make and install Xlibscm.info.
scm (5d9-2) unstable; urgency=low
  * Fix path problem in slibcat.  Hack at mklibcat.scm.  (Closes: #241510)
scm (5d9-1) unstable; urgency=low
  * New upstream release
  * Merge NMU sparc changes (Closes: #191171, #191356)
  * SHORT_INT is defined for ia64 upstream (Closes: #141928)
  * Scheme imps now grouped in info file (has been for a while)
  (Closes: #115452)
Diffstat (limited to 'README')
| -rw-r--r-- | README | 28 | 
1 files changed, 12 insertions, 16 deletions
| @@ -1,9 +1,9 @@ -This directory contains the distribution of scm5d6.  Scm conforms to +This directory contains the distribution of scm5d9.  Scm conforms to  Revised^5 Report on the Algorithmic Language Scheme and the IEEE P1178  specification. SCM runs under Amiga, Atari-ST, MacOS, MS-DOS, OS/2,  NOS/VE, Unicos, VMS, Unix and similar systems. -             <http://swissnet.ai.mit.edu/~jaffer/SCM.html> +               <http://swissnet.ai.mit.edu/~jaffer/SCM>  Manifest  ======== @@ -24,6 +24,7 @@ Manifest  `bench.scm'      computes and records performance statistics of pi.scm.  `build.bat'      invokes build.scm for MS-DOS  `build.scm'      database for compiling and linking new SCM programs. +`byte.c'         strings as bytes.  `compile.scm'    Hobbit compilation to C.  `continue.c'     continuations.  `continue.h'     continuations. @@ -101,22 +102,21 @@ SLIB is not _neccessary_ to run SCM, I strongly suggest you obtain and  install it.  Bug reports about running SCM without SLIB have very low  priority.  SLIB is available from the same sites as SCM: -   * swissnet.ai.mit.edu:/pub/scm/slib2d4.tar.gz +   * swissnet.ai.mit.edu:/pub/scm/slib3a1.tar.gz -   * ftp.gnu.org:/pub/gnu/jacal/slib2d4.tar.gz +   * ftp.gnu.org:/pub/gnu/jacal/slib3a1.tar.gz -   * ftp.cs.indiana.edu:/pub/scheme-repository/imp/slib2d4.tar.gz +   * ftp.cs.indiana.edu:/pub/scheme-repository/imp/slib3a1.tar.gz -Unpack SLIB (`tar xzf slib2d4.tar.gz' or `unzip -ao slib2d4.zip') in an +Unpack SLIB (`tar xzf slib3a1.tar.gz' or `unzip -ao slib3a1.zip') in an  appropriate directory for your system; both `tar' and `unzip' will  create the directory `slib'.  Then create a file `require.scm' in the SCM "implementation-vicinity" -(this is the same directory as where the file `Init5d6.scm' is +(this is the same directory as where the file `Init5d9.scm' is  installed).  `require.scm' should have the contents:       (define (library-vicinity) "/usr/local/lib/slib/") -     (load (in-vicinity (library-vicinity) "require"))  where the pathname string `/usr/local/lib/slib/' is to be replaced by  the pathname into which you installed SLIB.  Absolute pathnames are @@ -128,7 +128,6 @@ implementation-vicinity, which is absolute:       (define library-vicinity         (let ((lv (string-append (implementation-vicinity) "../slib/")))           (lambda () lv))) -     (load (in-vicinity (library-vicinity) "require"))  Alternatively, you can set the (shell) environment variable  `SCHEME_LIBRARY_PATH' to the pathname of the SLIB directory (*note @@ -180,9 +179,6 @@ Editing Scheme Code  Gnu Emacs:       Editing of Scheme code is supported by emacs.  Buffers holding       files ending in .scm are automatically put into scheme-mode. -     EMACS for MS-DOS and MS-Windows systems is available (free) from: - -              <http://simtel.coast.net/SimTel/gnu/demacs.html>       If your Emacs can run a process in a buffer you can use the Emacs       command `M-x run-scheme' with SCM.  Otherwise, use the emacs @@ -282,17 +278,17 @@ remove <FLAG> in scmfig.h and        Do so and recompile files.  recompile scm.                         add <FLAG> in scmfig.h and             recompile scm.                        -ERROR: Init5d6.scm not found.        Assign correct IMPLINIT in makefile +ERROR: Init5d9.scm not found.        Assign correct IMPLINIT in makefile                                       or scmfig.h.                                       Define environment variable                                       SCM_INIT_PATH to be the full -                                     pathname of Init5d6.scm. +                                     pathname of Init5d9.scm.  WARNING: require.scm not found.      Define environment variable                                       SCHEME_LIBRARY_PATH to be the full                                       pathname of the scheme library                                       [SLIB].                                       Change library-vicinity in -                                     Init5d6.scm to point to library or +                                     Init5d9.scm to point to library or                                       remove.                                       Make sure the value of                                       (library-vicinity) has a trailing @@ -353,7 +349,7 @@ Some symbol names print incorrectly. Change memory model option to C                                       than HEAP_SEG_SIZE).  ERROR: Rogue pointer in Heap.        See above under machine crashes.  Newlines don't appear correctly in   Check file mode (define OPEN_... in -output files.                        `Init5d6.scm'). +output files.                        `Init5d9.scm').  Spaces or control characters appear  Check character defines in  in symbol names.                     `scmfig.h'.  Negative numbers turn positive.      Check SRS in `scmfig.h'. | 
