1.0.15.37: Windows fixes.
authorRichard M Kreuter <kreuter@users.sourceforge.net>
Tue, 25 Mar 2008 21:24:24 +0000 (21:24 +0000)
committerRichard M Kreuter <kreuter@users.sourceforge.net>
Tue, 25 Mar 2008 21:24:24 +0000 (21:24 +0000)
* tools-for-build/grovel-headers.c: add a grovel for EINTR

* contrib/sb-posix/constants.lisp: feature-out the ALIEN-FLOCK structure.

contrib/sb-posix/constants.lisp
tools-for-build/grovel-headers.c
version.lisp-expr

index 271baf6..7c52c67 100644 (file)
  (:integer f-wrlck "F_WRLCK" nil t)
  (:integer f-unlck "F_UNLCK" nil t)
 
+ #-win32
  (:structure alien-flock
              ("struct flock"
               (short type "short" "l_type")
index 43ce773..4fb9345 100644 (file)
@@ -208,6 +208,7 @@ main(int argc, char *argv[])
 
     defconstant("enoent", ENOENT);
     defconstant("eexist", EEXIST);
+    defconstant("eintr", EINTR);
 
     defconstant("s-ifmt",  S_IFMT);
     defconstant("s-ifdir", S_IFDIR);
index 954d985..4b1d4f7 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".)
-"1.0.15.36"
+"1.0.15.37"