~ubuntu-branches/ubuntu/intrepid/slime/intrepid

« back to all changes in this revision

Viewing changes to debian/swank.asd

  • Committer: Bazaar Package Importer
  • Author(s): Peter Van Eynde
  • Date: 2007-10-04 09:09:47 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20071004090947-8oy7djtx8no3erxy
Tags: 1:20070927-2
Readded tree-widget to the sources. emacs21 on
debian does _not_ have that file. emacs22 and xemacs do.
(Closes: #445174)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
;;; -*- lisp -*-
2
 
 
3
 
;; ASDF system definition for loading the Swank server independently
4
 
;; of Emacs.
5
 
;;
6
 
;; This is only useful if you want to start a Swank server in a Lisp
7
 
;; processes that doesn't run under Emacs. Lisp processes created by
8
 
;; `M-x slime' automatically start the server.
9
 
 
10
 
;; Usage:
11
 
;;
12
 
;;   (require :swank)
13
 
;;   (swank:create-swank-server PORT) => ACTUAL-PORT
14
 
;;
15
 
;; (PORT can be zero to mean "any available port".)
16
 
;; Then the Swank server is running on localhost:ACTUAL-PORT. You can
17
 
;; use `M-x slime-connect' to connect Emacs to it.
18
 
;;
19
 
;; This code has been placed in the Public Domain.  All warranties
20
 
;; are disclaimed.
21
 
 
22
 
;; Debian change: swank-loader.lisp doesn't cope with
23
 
;; common-lisp-controller, because it expects to find the
24
 
;; swank-backend.lisp file in the same directory in which it is being
25
 
;; compiled.  So we let ASDF load the right backend and files.
26
 
;;
27
 
;; This list is extracted from swank-loader.lisp (see the definition
28
 
;; of *sysdep-pathnames*).  It must be kept in sync through the
29
 
;; releases.
30
 
;(asdf:defsystem :swank
31
 
;    :components ((:file "swank-loader")))
32
 
(asdf:defsystem :swank
33
 
    :name "swank"
34
 
    :serial t
35
 
    :components ((:file "swank-backend")
36
 
                 (:file "nregex")
37
 
 
38
 
                 #+cmu (:file "swank-source-path-parser")
39
 
                 #+cmu (:file "swank-source-file-cache")
40
 
                 #+cmu (:file "swank-cmucl")
41
 
 
42
 
                 #+sbcl (:file "swank-sbcl")
43
 
                 #+sbcl (:file "swank-source-path-parser")
44
 
                 #+sbcl (:file "swank-source-file-cache")
45
 
                 #+sbcl (:file "swank-gray")
46
 
 
47
 
                 #+openmcl (:file "metering")
48
 
                 #+openmcl (:file "swank-openmcl")
49
 
                 #+openmcl (:file "swank-gray")
50
 
                 
51
 
                 #+lispworks (:file "swank-lispworks")
52
 
                 #+lispworks (:file "swank-gray")
53
 
 
54
 
                 #+allegro (:file "swank-allegro")
55
 
                 #+allegro (:file "swank-gray")
56
 
 
57
 
                 #+clisp (:file "metering")
58
 
                 #+clisp (:file "swank-clisp")
59
 
                 #+clisp (:file "swank-gray")
60
 
 
61
 
                 #+armedbear (:file "swank-abcl")
62
 
 
63
 
                 #+cormanlisp (:file "swank-corman")
64
 
                 #+cormanlisp (:file "swank-gray")
65
 
                 
66
 
                 #+ecl (:file "swank-ecl")
67
 
                 #+ecl (:file "swank-gray")
68
 
                 (:file "swank")))