1 ;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; indent-tabs-mode: nil -*-
3 (in-package :common-lisp-user)
5 (asdf:defsystem :net.trivial-sockets
6 :description "Trivial-Sockets compatibility layer."
7 :author "Dan Barlow <dan@telent.net>"
8 :maintainer "Stelian Ionescu <sionescu@common-lisp.net>"
10 :depends-on (:iolib.base :net.sockets)
11 :pathname (merge-pathnames #p"net.sockets/" *load-truename*)
13 ((:file "trivial-sockets")))