From eb9df0feda0c163ee44b7930c748452a2be6edc4 Mon Sep 17 00:00:00 2001 From: Stelian Ionescu Date: Tue, 23 Oct 2012 11:11:04 +0900 Subject: [PATCH] Require "streamc" only if Allegro version is < 9.0 --- src/conf/requires.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/conf/requires.lisp b/src/conf/requires.lisp index bfd93a6..4977510 100644 --- 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 -- 2.11.4.GIT