1.0.36.12: Make sb-posix build on win32 again.
authorAlastair Bridgewater <lisphacker@users.sourceforge.net>
Mon, 1 Mar 2010 16:54:00 +0000 (16:54 +0000)
committerAlastair Bridgewater <lisphacker@users.sourceforge.net>
Mon, 1 Mar 2010 16:54:00 +0000 (16:54 +0000)
  * Don't support accessing d_ino on win32.

contrib/sb-posix/constants.lisp
contrib/sb-posix/defpackage.lisp
version.lisp-expr

index 138625e..bffd3f8 100644 (file)
  (:structure dirent
              (#+(and linux largefile) "struct dirent64"
               #-(and linux largefile) "struct dirent"
-              (:ino-t ino "ino_t" "d_ino")
+              #-win32 (:ino-t ino "ino_t" "d_ino")
               (:c-string name "char *" "d_name"
                          :distrust-length #+sunos t #-sunos nil)) t)
 
index fa4926b..477a6bd 100644 (file)
@@ -9,7 +9,7 @@
            #:filename
 
            ;; grovel structure accessors
-           #:dirent-name #:dirent-ino
+           #:dirent-name #-win32 #:dirent-ino
 
            ;; wrapper class accessors
            #:passwd-name #:passwd-passwd #:passwd-uid #:passwd-gid
index 1046f14..23a3bec 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.36.11"
+"1.0.36.12"