Improved calculation of flags in SOCKET-SEND and SOCKET-RECEIVE.
[iolib.git] / io.multiplex.asd
blob8530835a16a90bebc46b3b72cae6de35a787aa98
1 ;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Indent-tabs-mode: NIL -*-
2 ;;;
3 ;;; io-multiplex.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 ;;; Need trivial-features to correctly handle the reader conditionals
27 ;;; in the system definition form.
28 (eval-when (:load-toplevel :execute)
29   (asdf:oos 'asdf:load-op :trivial-features))
31 (defpackage #:io.multiplex-system
32   (:use #:common-lisp))
34 (in-package #:io.multiplex-system)
36 (asdf:defsystem :io.multiplex
37   :description "I/O multiplexing library for SBCL."
38   :author "Stelian Ionescu <sionescu@common-lisp.net>"
39   :maintainer "Stelian Ionescu <sionescu@common-lisp.net>"
40   :licence "LLGPL-2.1"
41   :depends-on (:osicat :alexandria)
42   :pathname (merge-pathnames
43              (make-pathname :directory '(:relative "io-multiplex"))
44              *load-truename*)
45   :serial t
46   :components
47   ((:file "pkgdcl")
48    (:file "time")
49    (:file "queue")
50    (:file "utils")
51    (:file "common")
52    #-windows (:file "select")
53    #+windows (:file "wait")
54    #+linux (:file "epoll")
55    #+bsd (:file "kqueue")
56    (:file "detect")))