Use IOLIB/ in package names
[iolib.git] / src / conf / requires.lisp
bloba6d511a5057e3b3247a88ab4cb8109a88b5f4f17
1 ;;;; -*- Mode: Lisp; indent-tabs-mode: nil -*-
2 ;;;
3 ;;; --- Load all non-ASDF deps - usually implementation-specific REQUIREs
4 ;;;
6 (in-package :iolib/conf)
8 (defun load-gray-streams ()
9 #+(and allegro (not (version>= 9 0)))
10 (unless (fboundp 'stream:stream-write-string)
11 (require "streamc"))
12 #+(or cmu abcl)
13 (require :gray-streams)
14 #+ecl
15 (when (fboundp 'gray::redefine-cl-functions)
16 (gray::redefine-cl-functions)))