forked from fukamachi/clack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
clack-handler-apache.asd
34 lines (29 loc) · 949 Bytes
/
clack-handler-apache.asd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#|
This file is a part of Clack package.
URL: http://github.com/fukamachi/clack
Copyright (c) 2011 Eitaro Fukamachi <[email protected]>
Clack is freely distributable under the LLGPL License.
|#
#|
Clack.Handler.Apache - Clack handler for Apache2 + mod_lisp.
Author: Eitaro Fukamachi ([email protected])
|#
(in-package :cl-user)
(defpackage :clack-handler-apache-asd
(:use :cl :asdf))
(in-package :clack-handler-apache-asd)
#+(or allegro cmu lispworks sbcl)
(defsystem clack-handler-apache
:version "0.2.1"
:author "Eitaro Fukamachi"
:license "LLGPL"
:depends-on (:clack
:cl-syntax
:cl-syntax-annot
:modlisp
:split-sequence
:anaphora)
:components ((:file "src/core/handler/apache"))
:description "Clack handler for Apache2 + mod_lisp.")
#-(or allegro cmu lispworks sbcl)
(error "Clack.Handler.Apache isn't supported your CL implementation.")