Replace IOLIB-SOURCE-FILE class with :AROUND-COMPILE wrapper
[iolib.git] / src / iolib.syscalls.asd
blobb10b64b8079fdce44428969149b68b8b200d188e
1 ;;;; -*- Mode: Lisp; indent-tabs-mode: nil -*-
3 (asdf:defsystem :iolib.syscalls
4   :description "Syscalls and foreign types."
5   :maintainer "Stelian Ionescu <sionescu@cddr.org>"
6   :version (:read-file-form "../version.lisp-expr")
7   :licence "MIT"
8   :defsystem-depends-on (:iolib.asdf :iolib.conf :iolib-grovel)
9   :depends-on (:trivial-features :cffi :iolib.base :iolib-grovel)
10   :around-compile "iolib.asdf:compile-wrapper"
11   :pathname "syscalls/"
12   :components
13   ((:file "pkgdcl")
14    #+unix
15    (:file "syscall-path-strings" :pathname "unix-syscall-path-strings")
16    ;; Platform-specific files
17    (:iolib-grovel-file "ffi-types" :pathname #+unix "ffi-types-unix")
18    (:file "conditions")
19    (:file "os-conditions" :pathname #+unix "os-conditions-unix")
20    (:file "designators")
21    (:file "early")
22    (:file "ffi-functions" :pathname #+unix "ffi-functions-unix"))
23   :serial t)