From 86aa545775d7822420302b0720ebb7be38de89b9 Mon Sep 17 00:00:00 2001 From: Tom Willemsen Date: Sun, 7 Apr 2013 03:23:19 +0200 Subject: Remove McCLIM as dependency and properly require The McCLIM dependency will come back, but for v0.1.* it is not a requirement. Also properly require `cl-sqlite' by adding it in the `asdf:defsystem' call. --- lisp/clark.asd | 2 +- lisp/make-image.lisp | 2 -- lisp/package.lisp | 2 +- 3 files changed, 2 insertions(+), 4 deletions(-) diff --git a/lisp/clark.asd b/lisp/clark.asd index da19601..03d11e3 100644 --- a/lisp/clark.asd +++ b/lisp/clark.asd @@ -28,6 +28,6 @@ :maintainer "Tom Willemsen " :description "Keep bookmarks, in lisp." :serial t - :depends-on (:mcclim) + :depends-on (:sqlite) :components ((:file "package") (:file "clark"))) diff --git a/lisp/make-image.lisp b/lisp/make-image.lisp index 4ebc1fd..dab37a4 100644 --- a/lisp/make-image.lisp +++ b/lisp/make-image.lisp @@ -21,8 +21,6 @@ (error "This lisp implementation iss not supported.") (require 'asdf) -(require 'sqlite) -(require 'mcclim) (asdf:oos 'asdf:load-op 'clark) diff --git a/lisp/package.lisp b/lisp/package.lisp index 42acf7f..0da0070 100644 --- a/lisp/package.lisp +++ b/lisp/package.lisp @@ -18,5 +18,5 @@ ;;; Code: (defpackage :org.ryuslash.clark - (:use :clim :clim-lisp :sqlite) + (:use :cl :sqlite) (:export :clark)) -- cgit v1.2.3-54-g00ecf