projects
/
sbcl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8f8966e
)
1.0.4.75: Win32 build fix.
author
lisphacker
<lisphacker>
Thu, 12 Apr 2007 16:44:22 +0000
(16:44 +0000)
committer
lisphacker
<lisphacker>
Thu, 12 Apr 2007 16:44:22 +0000
(16:44 +0000)
* There is no sb!unix:eintr on win32, so serve-event shouldn't use it.
src/code/serve-event.lisp
patch
|
blob
|
history
version.lisp-expr
patch
|
blob
|
history
diff --git
a/src/code/serve-event.lisp
b/src/code/serve-event.lisp
index
44352ea
..
02358fb
100644
(file)
--- a/
src/code/serve-event.lisp
+++ b/
src/code/serve-event.lisp
@@
-295,6
+295,7
@@
(funcall (handler-function handler)
(handler-descriptor handler)))
t)
+ #!-win32
((eql err sb!unix:eintr)
;; We did an interrupt.
;;
diff --git
a/version.lisp-expr
b/version.lisp-expr
index
78ce9d8
..
7159134
100644
(file)
--- a/
version.lisp-expr
+++ b/
version.lisp-expr
@@
-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.4.74"
+"1.0.4.75"