ADDRESS-FAMILY, TYPE and CONNECT keyword parameters of MAKE-SOCKET now take defaults.
[iolib.git] / net.smtp-client.asd
blobcc8d76f39b0420b4e7b13e9c1045932b74d4ace1
1 ;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp -*-
3 (in-package :common-lisp-user)
5 (eval-when (:compile-toplevel :load-toplevel :execute)
6   (asdf:operate 'asdf:load-op :asdf-additions))
8 (defpackage #:net.smtp-client.system
9   (:use #:common-lisp #:asdf-additions))
11 (in-package #:net.smtp-client.system)
13 (asdf:defsystem :net.smtp-client
14   :description "SMTP client library."
15   :author "Jan Idzikowski"
16   :maintainer "Stelian Ionescu <sionescu@common-lisp.net>"
17   :licence "LLGPL-2.1"
18   :depends-on (:iolib-posix
19                :iolib-utils-symbols
20                :net.sockets
21                :cl-base64)
22   :default-component-class muffled-source-file
23   :pathname (merge-pathnames (make-pathname :directory '(:relative "protocols" "smtp"))
24                              *load-truename*)
25   :serial t
26   :components
27   ((:file "pkgdcl")
28    (:file "client-net")
29    (:file "client-commands")
30    (:file "client-authentication")
31    (:file "attachments")
32    (:file "smtp")))