COMMON-NET: Fixed a couple of DNS decoding bugs.
[lisp-utils.git] / common-net.asd
1 (defsystem :common-net
2   :serial t
3   :depends-on (:charcode)
4   :components ((:file "common-net")
5                #+sbcl (:file "net-sbcl")
6                #+ecl (:file "net-ecl")
7                #+(or sbcl ecl) (:file "net-sb-bsd")               ; ECL uses SB-BSD-SOCKETS
8                #+abcl (:file "net-abcl")
9                #+clisp (:file "net-clisp")))