Better error management.
[iolib.git] / net.tls.asd
blobcf0e56a1ab9ada9ed754a88bb010796c4ee8d9f3
1 ;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Indent-tabs-mode: NIL -*-
2 ;;;
3 ;;; net.tls.asd --- ASDF system definition.
4 ;;;
5 ;;; Copyright (C) 2008, Stelian Ionescu  <sionescu@common-lisp.net>
6 ;;;
7 ;;; This code is free software; you can redistribute it and/or
8 ;;; modify it under the terms of the version 2.1 of
9 ;;; the GNU Lesser General Public License as published by
10 ;;; the Free Software Foundation, as clarified by the
11 ;;; preamble found here:
12 ;;;     http://opensource.franz.com/preamble.html
13 ;;;
14 ;;; This program is distributed in the hope that it will be useful,
15 ;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
16 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 ;;; GNU General Public License for more details.
18 ;;;
19 ;;; You should have received a copy of the GNU Lesser General
20 ;;; Public License along with this library; if not, write to the
21 ;;; Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
22 ;;; Boston, MA 02110-1301, USA
24 (in-package :common-lisp-user)
26 (eval-when (:load-toplevel)
27   (asdf:oos 'asdf:load-op :cffi-grovel))
29 (asdf:defsystem :net.tls
30   :description "TLS 1.0/SSL 3.0 library."
31   :author "Stelian Ionescu <sionescu@common-lisp.net>"
32   :licence "LLGPL-2.1"
33   :depends-on (:cffi :osicat :gpg-error :alexandria)
34   :pathname (merge-pathnames #p"net.tls/" *load-truename*)
35   :components
36   ((:file "pkgdcl")
37    (cffi-grovel:grovel-file "grovel" :depends-on ("pkgdcl"))
38    (:file "library" :depends-on ("pkgdcl"))
39    (cffi-grovel:wrapper-file "wrappers" :depends-on ("pkgdcl" "library"))
40    (:file "gnutls" :depends-on ("pkgdcl" "grovel" "library"))
41    (:file "conditions" :depends-on ("pkgdcl" "grovel" "gnutls"))))