Fixed socket tests
[iolib.git] / net.sockets.asd
blob572df4c0de7473c4b9211fd9712ec475813ba2f6
1 ;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Indent-tabs-mode: NIL -*-
2 ;;;
3 ;;; bsd-sockets.asd --- ASDF system definition.
4 ;;;
5 ;;; Copyright (C) 2006-2007, 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 (defpackage #:net.sockets-system
27   (:use #:common-lisp))
29 (in-package #:net.sockets-system)
31 (asdf:defsystem :net.sockets
32   :description "Socket library."
33   :author "Stelian Ionescu <sionescu@common-lisp.net>"
34   :maintainer "Stelian Ionescu <sionescu@common-lisp.net>"
35   :licence "LLGPL-2.1"
36   :depends-on (:cl-posix
37                :babel
38                :io.streams
39                :alexandria
40                :split-sequence)
41   :pathname (merge-pathnames (make-pathname :directory '(:relative "sockets"))
42                              *load-truename*)
43   :serial t
44   :components
45   ((:file "pkgdcl")
46    (:file "common")
47    (:file "conditions")
48    (:file "config")
49    (:file "iface")
50    (:file "address")
51    (:file "address-predicates")
52    (:file "resolv")
53    (:file "base-sockets")
54    (:file "socket-options")
55    (:file "socket-methods")
56    (:file "make-socket")))