Skip to content

Commit

Permalink
1.0.48.17: hopefully fix build on win32
Browse files Browse the repository at this point in the history
  Regression from 1.0.48.7. Add missing S_IFMT macro wrappers to win32
  build.

  (Untested on win32 as of yet.)
  • Loading branch information
nikodemus committed May 14, 2011
1 parent 94b4d57 commit 12a0ad4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions tools-for-build/grovel-headers.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
2 changes: 1 addition & 1 deletion version.lisp-expr
Original file line number Diff line number Diff line change
Expand Up @@ -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"

0 comments on commit 12a0ad4

Please sign in to comment.