Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions quicklisp/impl-util.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,8 @@
".clinit.cl")
(:implementation abcl
".abclrc")
(:implementation dotcl
(ql-dotcl:user-init-file))
(:implementation ccl
#+windows
"ccl-init.lisp"
Expand Down Expand Up @@ -219,6 +221,8 @@ quicklisp at CL startup."
(:implementation abcl
(directory (merge-pathnames *wild-entry* directory)
#+abcl :resolve-symlinks #+abcl nil))
(:implementation dotcl
(directory (merge-pathnames *wild-entry* directory)))
(:implementation ccl
(directory (merge-pathnames *wild-entry* directory)
#+ccl :directories #+ccl t
Expand Down
12 changes: 12 additions & 0 deletions quicklisp/impl.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,18 @@
#:make-socket
#:get-socket-stream))

;;; dotcl

(define-implementation-package :dotcl #:ql-dotcl
(:documentation
"dotcl - Common Lisp on .NET - https://github.com/dotcl/dotcl")
(:class dotcl)
(:prep (require "dotcl-socket"))
(:reexport-from #:dotcl-socket
#:socket-connect)
(:reexport-from #:dotcl
#:user-init-file))

;;; Clozure CL

(define-implementation-package :ccl #:ql-ccl
Expand Down
2 changes: 2 additions & 0 deletions quicklisp/network.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@
(:implementation abcl
(let ((socket (ql-abcl:make-socket host port)))
(ql-abcl:get-socket-stream socket :element-type '(unsigned-byte 8))))
(:implementation dotcl
(ql-dotcl:socket-connect host port :binary t))
(:implementation ccl
(ql-ccl:make-socket :remote-host host
:remote-port port))
Expand Down
1 change: 1 addition & 0 deletions quicklisp/package.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@
#:clisp
#:cmucl
#:cormanlisp
#:dotcl
#:ecl
#:gcl
#:genera
Expand Down