diff options
author | Teddy Wing | 2022-08-25 21:38:58 +0200 |
---|---|---|
committer | Teddy Wing | 2022-08-25 21:38:58 +0200 |
commit | 7af71cad28c16c83e8cd902337c90b4dbdf0e205 (patch) | |
tree | d7cf49ce79edd97790ae12498df44af516614f30 /extreload.asd | |
parent | 81790e32039344943b5a46273b16a1778393f896 (diff) | |
parent | 186ebc945392931844270b71ce73e3c5b1d0189a (diff) | |
download | extreload-7af71cad28c16c83e8cd902337c90b4dbdf0e205.tar.bz2 |
Merge branch 'bundle-lisp-dependencies'
Diffstat (limited to 'extreload.asd')
-rw-r--r-- | extreload.asd | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/extreload.asd b/extreload.asd index 19e736d..d0c943f 100644 --- a/extreload.asd +++ b/extreload.asd @@ -1,4 +1,4 @@ -;;; Copyright (c) 2021 Teddy Wing +;;; Copyright (c) 2021–2022 Teddy Wing ;;; ;;; This file is part of Extreload. ;;; @@ -16,6 +16,11 @@ ;;; along with Extreload. If not, see <https://www.gnu.org/licenses/>. +;; SSL is not required for Extreload. Including it can cause a dynamic library +;; load path error if the runtime paths are different from those on the build +;; machine. +(push :websocket-driver-no-ssl *features*) + (asdf:defsystem extreload :version "0.0.2" :depends-on (:jsown |