From a913c7fbaf5102f3f6156cc62071901b42920aed Mon Sep 17 00:00:00 2001 From: Nuno Trocado Date: Wed, 25 Jan 2023 12:10:46 +0000 Subject: [PATCH] Applies the fix mentioned in #15 - `devices` need sbcl --- README.md | 1 + osc.asd | 1 + 2 files changed, 2 insertions(+) diff --git a/README.md b/README.md index 34c4172..a605ac9 100644 --- a/README.md +++ b/README.md @@ -20,6 +20,7 @@ There are some basic examples in `osc-examples.lisp` and the `devices/examples/o - will raise an exception if input is malformed - no pattern matching on addresses - float en/decoding only tested on sbcl, cmucl, openmcl and allegro + - the `devices` module only works on sbcl - only supports the type(tag)s specified in the OSC spec ## things to do in :osc diff --git a/osc.asd b/osc.asd index af804fa..22d72fc 100644 --- a/osc.asd +++ b/osc.asd @@ -17,6 +17,7 @@ (:file "osc-tests" :depends-on ("osc")) (:file "package") (:module "devices" + :if-feature :sbcl :depends-on ("package" "osc-data") :components ((:file "socket-functions")