cl-plus-ssl/cl+ssl.asd

30 lines
746 B
Plaintext
Raw Normal View History

2005-11-09 22:10:44 +00:00
;;; -*- mode: lisp -*-
;;;
;;; Copyright (C) 2001, 2003 Eric Marsden
;;; Copyright (C) 2005 David Lichteblau
2007-07-07 15:25:09 +00:00
;;; Copyright (C) 2007 Pixel // pinterface
2005-11-09 22:10:44 +00:00
;;; "the conditions and ENSURE-SSL-FUNCALL are by Jochen Schmidt."
;;;
;;; See LICENSE for details.
(defpackage :cl+ssl-system
(:use :cl :asdf))
2005-11-09 22:10:44 +00:00
(in-package :cl+ssl-system)
(defsystem :cl+ssl
:depends-on (:cffi :trivial-gray-streams :flexi-streams #+sbcl :sb-posix
:bordeaux-threads :trivial-garbage)
2005-11-09 22:10:44 +00:00
:serial t
:components
((:file "package")
(:file "reload")
2005-11-09 22:10:44 +00:00
(:file "conditions")
(:file "ffi")
2007-07-07 15:25:09 +00:00
(:file "ffi-buffer-all")
#-clisp (:file "ffi-buffer")
#+clisp (:file "ffi-buffer-clisp")
2005-11-09 22:10:44 +00:00
(:file "streams")
(:file "bio")
(:file "random")))