bfd93a66e395d09dc109c7e4e9dd21023c495946
[iolib.git] / src / conf / requires.lisp
blobbfd93a66e395d09dc109c7e4e9dd21023c495946
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 #+allegro
10 (unless (fboundp 'stream:stream-write-string)
11 (require "streamc"))
12 #+cmu
13 (require :gray-streams)
14 #+ecl
15 (when (fboundp 'gray::redefine-cl-functions)
16 (gray::redefine-cl-functions)))