mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-15 13:52:16 -08:00
Make sb-bsd-sockets an alias for sockets listing the latter as an ASDF dependency
This commit is contained in:
parent
b970c5b206
commit
0dd6e5e5cb
2 changed files with 3 additions and 2 deletions
|
|
@ -145,7 +145,7 @@
|
|||
:pathname ,compiled)))))
|
||||
path))
|
||||
|
||||
(defun build-module (name sources &key additional-files
|
||||
(defun build-module (name sources &key additional-files depends-on
|
||||
(builtin nil) (dir "build:")
|
||||
((:prefix si::*init-function-prefix*) "EXT"))
|
||||
(mapc #'proclaim +ecl-optimization-settings+)
|
||||
|
|
@ -166,7 +166,7 @@
|
|||
*module-files*)
|
||||
(push (if (equalp name "asdf")
|
||||
(build-fake-asdf "prebuilt-asdf" static-library compiled-file-name :depends-on '("cmp"))
|
||||
(build-fake-asdf name static-library compiled-file-name))
|
||||
(build-fake-asdf name static-library compiled-file-name :depends-on depends-on))
|
||||
*module-files*)
|
||||
)))
|
||||
|
||||
|
|
|
|||
|
|
@ -242,6 +242,7 @@
|
|||
#+WANTS-SOCKETS
|
||||
(build-module "sb-bsd-sockets"
|
||||
'("ext:sockets;sb-bsd-sockets.lisp")
|
||||
:depends-on '("sockets")
|
||||
:dir "build:ext;"
|
||||
:prefix "EXT"
|
||||
:builtin nil)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue