1.0.5.40: probably fix win32 build
authorJuho Snellman <jsnell@iki.fi>
Sun, 6 May 2007 22:19:14 +0000 (22:19 +0000)
committerJuho Snellman <jsnell@iki.fi>
Sun, 6 May 2007 22:19:14 +0000 (22:19 +0000)
         * sb!unix::micro-seconds-per-internal-time-unit was defined in a
           #-win32 block
         * Reported by Yaroslav Kavenchuk

src/code/unix.lisp
version.lisp-expr

index d6ac73a..4c2bc79 100644 (file)
@@ -987,13 +987,14 @@ SYSCALL-FORM. Repeat evaluation of SYSCALL-FORM if it is interrupted."
             (return pathname)
             (push pathname previous-pathnames))))
 \f
+
+(defconstant micro-seconds-per-internal-time-unit
+  (/ 1000000 sb!xc:internal-time-units-per-second))
+
 ;;; UNIX specific code, that has been cleanly separated from the
 ;;; Windows build.
 #!-win32
 (progn
-  (defconstant micro-seconds-per-internal-time-unit
-    (/ 1000000 sb!xc:internal-time-units-per-second))
-
   (declaim (inline system-internal-run-time
                    system-real-time-values))
 
index 825944a..fca68a6 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.5.39"
+"1.0.5.40"