0.9.8.43:
authorChristophe Rhodes <csr21@cam.ac.uk>
Wed, 18 Jan 2006 11:28:28 +0000 (11:28 +0000)
committerChristophe Rhodes <csr21@cam.ac.uk>
Wed, 18 Jan 2006 11:28:28 +0000 (11:28 +0000)
Commit patch from Luis Oliveira for alignment on #!+win32

CREDITS
src/code/host-alieneval.lisp
version.lisp-expr

diff --git a/CREDITS b/CREDITS
index a648289..4a730a0 100644 (file)
--- a/CREDITS
+++ b/CREDITS
@@ -1,3 +1,4 @@
+-*- coding: utf-8; mode: text; -*-
 
       The programmers of old were mysterious and profound.  We
    cannot fathom their thoughts, so all we do is describe their
@@ -518,6 +519,9 @@ Daniel Barlow:
   asdf-install, sb-bsd-sockets, sb-executable, sb-grovel and sb-posix
   contrib packages.
 
+James Bielman:
+  He assisted in work on the port to the Windows operating system.
+
 Alastair Bridgewater:
   He contributed a port of the system to the Windows operating system.
 
@@ -671,6 +675,10 @@ Patrik Nordebo:
   He contributed to the port of SBCL to MacOS X, finding solutions for
   ABI and assembly syntax differences between Darwin and Linux.
 
+Luís Oliveira:
+  He contributed to the port of SBCL to the Windows operating system,
+  particuarly in the area of FFI.
+
 Scott Parish:
   He ported SBCL to OpenBSD-with-ELF.
 
@@ -690,7 +698,7 @@ Christophe Rhodes:
   optimizations to compiler output, and contributed in other ways as
   well.
 
-Stig Erik Sandoe:
+Stig Erik Sandø:
   He showed how to convince the GNU toolchain to build SBCL in a way
   which supports callbacks from C code into SBCL.
 
index 4f018d6..dea6d47 100644 (file)
@@ -22,7 +22,7 @@
 
 (defun guess-alignment (bits)
   (cond ((null bits) nil)
-        #!-(or x86 (and ppc darwin)) ((> bits 32) 64)
+        #!-(or (and x86 (not win32)) (and ppc darwin)) ((> bits 32) 64)
         ((> bits 16) 32)
         ((> bits 8) 16)
         ((> bits 1) 8)
index 7c7a8b8..4a76338 100644 (file)
@@ -17,4 +17,4 @@
 ;;; checkins which aren't released. (And occasionally for internal
 ;;; versions, especially for internal versions off the main CVS
 ;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".)
-"0.9.8.42"
+"0.9.8.43"