cl-plus-ssl/cl+ssl.asd

29 lines
681 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
;;; "the conditions and ENSURE-SSL-FUNCALL are by Jochen Schmidt."
;;;
;;; See LICENSE for details.
(defpackage :cl+ssl-system
(:use :cl :asdf)
(:export #:*libssl-pathname*))
(in-package :cl+ssl-system)
(defparameter *libssl-pathname*
#+(or :win32 :mswindows) "libssl32.dll"
#-(or :win32 :mswindows) "/usr/lib/libssl.so")
2005-11-09 22:10:44 +00:00
(defsystem :cl+ssl
2005-11-25 20:14:04 +00:00
:depends-on (:cffi :trivial-gray-streams :flexi-streams)
2005-11-09 22:10:44 +00:00
:serial t
:components
((:file "reload")
(:file "package")
(:file "conditions")
(:file "ffi")
(:file "streams")
(:file "bio")))