common-lisp.net
/
projects/iolib/iolib.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
(parent:
d5ab974
)
Require "streamc" only if Allegro version is < 9.0
author
Stelian Ionescu
<sionescu@cddr.org>
Tue, 23 Oct 2012 02:11:04 +0000 (11:11 +0900)
committer
Stelian Ionescu
<sionescu@cddr.org>
Tue, 23 Oct 2012 02:11:04 +0000 (11:11 +0900)
src/conf/requires.lisp
patch
|
blob
|
blame
|
history
diff --git
a/src/conf/requires.lisp
b/src/conf/requires.lisp
index
bfd93a6
..
4977510
100644
(file)
--- a/
src/conf/requires.lisp
+++ b/
src/conf/requires.lisp
@@
-6,7
+6,7
@@
(in-package :iolib.conf)
(defun load-gray-streams ()
- #+allegro
+ #+(and allegro (not (version>= 9 0)))
(unless (fboundp 'stream:stream-write-string)
(require "streamc"))
#+cmu