1.0.48.17: hopefully fix build on win32
authorNikodemus Siivola <nikodemus@random-state.net>
Sat, 14 May 2011 09:43:28 +0000 (09:43 +0000)
committerNikodemus Siivola <nikodemus@random-state.net>
Sat, 14 May 2011 09:43:28 +0000 (09:43 +0000)
  Regression from 1.0.48.7. Add missing S_IFMT macro wrappers to win32
  build.

  (Untested on win32 as of yet.)

tools-for-build/grovel-headers.c
version.lisp-expr

index 1b61f98..e7a1b70 100644 (file)
@@ -223,7 +223,10 @@ main(int argc, char *argv[])
     defconstant("eagain", EAGAIN);
 
     defconstant("s-ifmt",  S_IFMT);
+    defconstant("s-ififo", S_IFIFO);
+    defconstant("s-ifchr", S_IFCHR);
     defconstant("s-ifdir", S_IFDIR);
+    defconstant("s-ifblk", S_IFBLK);
     defconstant("s-ifreg", S_IFREG);
 
     DEFTYPE("ino-t",  ino_t);
index ff8ac68..f3e31f0 100644 (file)
@@ -20,4 +20,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.48.16"
+"1.0.48.17"