RLR> (:depeonds-on ) expressions without dependence on SBCL?  Can we just
RLR> use a compiler pragma like:

RLR>   :depends-on (:uffi
RLR> #+sbcl  :sb-posix
RLR> :cl-base64))

sure

RLR> in our asdf files?  If so we will have to do something similar for
RLR> each supported system (see os.lisp):

RLR> (defmacro in-directory ((dir) &body body)
RLR>   `(progn
RLR>      (#+sbcl sb-posix:chdir
RLR>       #+cmu unix:unix-chdir
RLR>       #+allegro excl:chdir
RLR>       #+lispworks hcl:change-directory
RLR>       #+openmcl ccl:cwd
RLR>       ,dir)
RLR>      ,@body))

i think this stuff is built-in (loaded automatically) on everything but SBCL,
so no intervention is required.

(i've just checked this on everything but OpenMCL)
_______________________________________________
elephant-devel site list
elephant-devel@common-lisp.net
http://common-lisp.net/mailman/listinfo/elephant-devel

Reply via email to