1 ;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Indent-tabs-mode: NIL -*-
3 ;;; net.sockets.asd --- ASDF system definition.
5 ;;; Copyright (C) 2006-2008, Stelian Ionescu <sionescu@common-lisp.net>
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
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.
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>"
34 :depends-on (:osicat :babel :bordeaux-threads :series
35 :io.streams :alexandria :split-sequence)
36 :pathname (merge-pathnames #p"net.sockets/" *load-truename*)
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"
66 (:file "socket-methods"
67 :depends-on ("pkgdcl" "grovel" "conditions" "bsd" "common" "config" "address"
68 "address-predicates" "base-sockets" "protocols" "services"))
70 :depends-on ("pkgdcl" "common" "config" "address" "address-predicates"
71 "socket-options" "services" "socket-methods"))
73 (:file "dns-common" :pathname #p"dns/common"
74 :depends-on ("pkgdcl" "common"))
75 (:file "nameservers" :pathname #p"dns/nameservers"
76 :depends-on ("pkgdcl" "address" "etc-files" "file-monitor"))
77 (:file "dynamic-buffer" :pathname #p"dns/dynamic-buffer"
78 :depends-on ("pkgdcl"))
79 (:file "message" :pathname #p"dns/message"
80 :depends-on ("pkgdcl" "common" "dns-common" "dynamic-buffer"))
81 (:file "query" :pathname #p"dns/query"
82 :depends-on ("pkgdcl" "conditions" "address" "address-predicates"
83 "socket-options" "socket-methods" "make-socket" "dns-common"
84 "nameservers" "dynamic-buffer" "message"))
85 (:file "dns-conditions" :pathname #p"dns/conditions"
86 :depends-on ("pkgdcl"))
87 (:file "lookup" :pathname #p"dns/lookup"
88 :depends-on ("pkgdcl" "address" "address-predicates" "file-monitor" "hosts"
89 "nameservers" "message" "query" "dns-conditions"))))