diff --git a/osc.asd b/osc.asd index e1d122b..99af41b 100644 --- a/osc.asd +++ b/osc.asd @@ -1,12 +1,12 @@ ;; -*- mode: lisp -*- -(in-package #:common-lisp-user) +(in-package #:cl-user) (asdf:defsystem osc :name "osc" :author "nik gaffney " - :licence "LLGPL" - :description "The Open Sound Control protocol, aka OSC" + :licence "GPL v3" + :description "The Open Sound Control protocol aka OSC" :version "0.7" :components ((:file "osc" :depends-on ("osc-data" "osc-time")) @@ -16,7 +16,7 @@ (:file "package") (:module "devices" :depends-on ("package" "osc-data") - ::components + :components ((:file "socket-functions") (:file "device") (:file "transmitter" diff --git a/package.lisp b/package.lisp index 6bb6233..4b96122 100644 --- a/package.lisp +++ b/package.lisp @@ -1,6 +1,6 @@ (defpackage :osc - (:use :cl :sb-bsd-sockets) - (:documentation "OSC aka the 'open sound control' protocol") + (:use #:cl #:usocket) + (:documentation "OSC, the 'Open Sound Control' protocol.") (:export #:make-message #:message