Fix spelling.
[iolib.git] / net.sockets.asd
blobab671c407a9cb17be50e85fadf54c6e17bd3b0b6
1 ;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Indent-tabs-mode: NIL -*-
2 ;;;
3 ;;; net.sockets.asd --- ASDF system definition.
4 ;;;
5 ;;; Copyright (C) 2006-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.sockets
30   :description "Socket library."
31   :author "Stelian Ionescu <sionescu@common-lisp.net>"
32   :maintainer "Stelian Ionescu <sionescu@common-lisp.net>"
33   :licence "LLGPL-2.1"
34   :depends-on (:osicat :babel :bordeaux-threads :series
35                :io.streams :alexandria :split-sequence)
36   :pathname (merge-pathnames #p"net.sockets/" *load-truename*)
37   :components
38   ((:file "pkgdcl")
39    (cffi-grovel:grovel-file "grovel" :depends-on ("pkgdcl"))
40    (:file "conditions" :depends-on ("pkgdcl" "grovel"))
41    (:file "bsd" :depends-on ("pkgdcl" "grovel" "conditions"))
42    (:file "common" :depends-on ("pkgdcl" "grovel" "bsd"))
43    (:file "config" :depends-on ("pkgdcl" "grovel"))
45    (:file "iface" :depends-on ("pkgdcl" "grovel" "bsd" "common"))
47    (:file "address" :depends-on ("pkgdcl" "common"))
48    (:file "address-predicates" :depends-on ("pkgdcl" "common" "address"))
50    (:file "base-sockets" :depends-on ("pkgdcl" "bsd" "config"))
51    (:file "socket-options"
52           :depends-on ("pkgdcl" "grovel" "conditions" "bsd" "common" "config" "base-sockets"))
54    (:file "etc-files" :pathname #p"namedb/etc-files"
55           :depends-on ("pkgdcl"))
56    (:file "file-monitor" :pathname #p"namedb/file-monitor"
57           :depends-on ("pkgdcl"))
58    (:file "protocols" :pathname #p"namedb/protocols"
59           :depends-on ("pkgdcl" "common" "etc-files" "file-monitor"))
60    (:file "services" :pathname #p"namedb/services"
61           :depends-on ("pkgdcl" "common" "etc-files" "file-monitor"))
62    (:file "hosts" :pathname #p"namedb/hosts"
63           :depends-on ("pkgdcl" "address" "address-predicates" "etc-files"
64                        "file-monitor"))
66    (:file "socket-methods"
67           :depends-on ("pkgdcl" "grovel" "conditions" "bsd" "common" "config"
68                        "address" "address-predicates" "base-sockets" "socket-options"
69                        "protocols" "services"))
70    (:file "make-socket"
71           :depends-on ("pkgdcl" "common" "config" "address" "address-predicates"
72                        "socket-options" "services" "socket-methods"))
74    (:file "dns-common" :pathname #p"dns/common"
75           :depends-on ("pkgdcl" "common"))
76    (:file "nameservers" :pathname #p"dns/nameservers"
77           :depends-on ("pkgdcl" "address" "etc-files" "file-monitor"))
78    (:file "dynamic-buffer" :pathname #p"dns/dynamic-buffer"
79           :depends-on ("pkgdcl"))
80    (:file "message" :pathname #p"dns/message"
81           :depends-on ("pkgdcl" "common" "dns-common" "dynamic-buffer"))
82    (:file "query" :pathname #p"dns/query"
83           :depends-on ("pkgdcl" "conditions" "address" "address-predicates"
84                        "socket-options" "socket-methods" "make-socket" "dns-common"
85                        "nameservers" "dynamic-buffer" "message"))
86    (:file "dns-conditions" :pathname #p"dns/conditions"
87           :depends-on ("pkgdcl"))
88    (:file "lookup" :pathname #p"dns/lookup"
89           :depends-on ("pkgdcl" "address" "address-predicates" "file-monitor" "hosts"
90                        "nameservers" "message" "query" "dns-conditions"))))