mirror of
https://github.com/roswell/roswell.git
synced 2026-09-10 07:16:17 -04:00
prepare showing hint for middleare.
This commit is contained in:
parent
10652f83e5
commit
9a1d398e41
|
|
@ -71,7 +71,10 @@
|
|||
(when default
|
||||
(set-opt name (eql default t)))
|
||||
(with name)))
|
||||
(cons t argv))
|
||||
(cons (if (opt "core-compression")
|
||||
(require-system-package "zlib")
|
||||
t)
|
||||
argv))
|
||||
|
||||
(defun sbcl-start (argv)
|
||||
(when (and (find (getf argv :target) '("sbcl-bin" "sbcl") :test 'equal)
|
||||
|
|
|
|||
|
|
@ -124,4 +124,9 @@
|
|||
(uiop:run-program `(,(sh) "-lc" ,(format nil "cd ~S;pwd" (uiop:native-namestring path)))
|
||||
:output :string)))
|
||||
|
||||
(defun require-system-package (&rest packages)
|
||||
"check installation of system library like 'zlib' and show how to install."
|
||||
(declare (ignorable packages))
|
||||
t)
|
||||
|
||||
(pushnew :ros.install.util *features*)
|
||||
|
|
|
|||
Loading…
Reference in a new issue