git.fiddlerwoaroof.com
Browse code

Modify post-office.asd for other Lisps

Orivej Desh authored on 10/02/2012 11:05:51
Showing 1 changed files
... ...
@@ -1,13 +1,8 @@
1
-;;; ASD file contributed by james anderson <james.anderson@setf.de>
2
-
3
-(in-package :cl-user)
4
-
5
-(unless (find-class 'asdf::cl-file nil)
6
-  (defclass asdf::cl-file (asdf:cl-source-file) ())
7
-  (defmethod asdf:source-file-type ((c asdf::cl-file) (s asdf:module)) "cl"))
8
-
9
-(asdf:defsystem :imap
1
+(asdf:defsystem :post-office
10 2
   :serial t
3
+  :depends-on (#:acl-compat #:cl+ssl)
11 4
   :components
12
-  ((:file "imap")
13
-   (:file "smtp")))
5
+  ((:file "compat")
6
+   (:file "imap")
7
+   ;; (:file "smtp")
8
+   ))