xmpp-send/make-image.lisp

15 lines
334 B
Common Lisp
Raw Normal View History

2013-05-09 13:57:52 +02:00
#-sbcl
(error "This lisp implementation is not supported.")
(require 'asdf)
(asdf:oos 'asdf:load-op 'xmpp-send)
(save-lisp-and-die
"xmpp-send" :toplevel
(lambda ()
(sb-posix:putenv (format nil "SBCL_HOME=~A" #.(sb-ext:posix-getenv "SBCL_HOME")))
(org.ryuslash.xmpp-send:xmpp-send sb-ext:*posix-argv*)
0)
:executable t)