Update of /cvsroot/sbcl/sbcl/contrib/sb-simple-streams
In directory sc8-pr-cvs1:/tmp/cvs-serv28280/contrib/sb-simple-streams
Modified Files:
constants.lisp
Log Message:
0.8.0.7:
Various contrib/ fixes
... isolate the sb-bsd-sockets tests from the rest of the
system, so that they're not included in the
sb-simple-streams tests. (thanks to Rudi Schlatte)
... replace asm/errno.h with errno.h include in
sb-simple-streams. (thanks to Rudi Schlatte)
... make sb-grovel more likely to emit C9x compliant code, by
minimizing rightward drift.
Index: constants.lisp
===================================================================
RCS file: /cvsroot/sbcl/sbcl/contrib/sb-simple-streams/constants.lisp,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- constants.lisp 13 May 2003 12:21:16 -0000 1.1
+++ constants.lisp 27 May 2003 09:20:02 -0000 1.2
@@ -13,7 +13,7 @@
;;; unix.lisp, should presumably end up somewhere else, either in sbcl
;;; itself or in sb-posix.
-("stdio.h" "sys/types.h" "sys/stat.h" "fcntl.h" "asm/errno.h" "sys/mman.h")
+("stdio.h" "sys/types.h" "sys/stat.h" "fcntl.h" "errno.h" "sys/mman.h")
((:integer eacces "EACCES" "Error code for access error")
(:integer prot-none "PROT_NONE" "mmap: no protection")
|