forked from fukamachi/clack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclack-handler-fcgi.asd
36 lines (31 loc) · 920 Bytes
/
clack-handler-fcgi.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
35
36
#|
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.Fcgi - Clack handler for FastCGI.
Author: Eitaro Fukamachi ([email protected])
|#
(in-package :cl-user)
(defpackage :clack-handler-fcgi-asd
(:use :cl :asdf))
(in-package :clack-handler-fcgi-asd)
(defsystem clack-handler-fcgi
:version "0.3.1"
:author "Eitaro Fukamachi"
:license "LLGPL"
:depends-on (:clack
:cl-syntax
:cl-syntax-annot
:cl-fastcgi
:alexandria
:bordeaux-threads
:flexi-streams
:anaphora
:cl-ppcre
:split-sequence
:usocket)
:components ((:file "src/core/handler/fcgi"))
:description "Clack handler for FastCGI.")