0.9.5.48:
authorThiemo Seufer <ths@networkno.de>
Wed, 12 Oct 2005 15:08:18 +0000 (15:08 +0000)
committerThiemo Seufer <ths@networkno.de>
Wed, 12 Oct 2005 15:08:18 +0000 (15:08 +0000)
Linux/MIPS uses "unsigned long" instead of dev_t in struct stat.

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

index b2081d8..84b1f91 100644 (file)
              ("struct stat"
               (mode-t mode "mode_t" "st_mode")
               (ino-t ino "ino_t" "st_ino")
+              #-mips
               (dev-t dev "dev_t" "st_dev")
+              #+mips
+              ((unsigned 32) dev "dev_t" "st_dev")
               (nlink-t nlink "nlink_t" "st_nlink")
               (uid-t uid "uid_t" "st_uid")
               (gid-t gid "gid_t" "st_gid")
index 2d286fc..c61f131 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".)
-"0.9.5.47"
+"0.9.5.48"