|
Revision 2698, 0.7 kB
(checked in by hans, 10 months ago)
|
updated cl+ssl from CVS trunk - now with deadlines
|
| Line | |
|---|
| 1 |
;;; -*- mode: lisp -*- |
|---|
| 2 |
;;; |
|---|
| 3 |
;;; Copyright (C) 2001, 2003 Eric Marsden |
|---|
| 4 |
;;; Copyright (C) 2005 David Lichteblau |
|---|
| 5 |
;;; Copyright (C) 2007 Pixel // pinterface |
|---|
| 6 |
;;; "the conditions and ENSURE-SSL-FUNCALL are by Jochen Schmidt." |
|---|
| 7 |
;;; |
|---|
| 8 |
;;; See LICENSE for details. |
|---|
| 9 |
|
|---|
| 10 |
(defpackage :cl+ssl-system |
|---|
| 11 |
(:use :cl :asdf)) |
|---|
| 12 |
|
|---|
| 13 |
(in-package :cl+ssl-system) |
|---|
| 14 |
|
|---|
| 15 |
(defsystem :cl+ssl |
|---|
| 16 |
:depends-on (:cffi :trivial-gray-streams :flexi-streams #+sbcl :sb-posix) |
|---|
| 17 |
:serial t |
|---|
| 18 |
:components |
|---|
| 19 |
((:file "package") |
|---|
| 20 |
(:file "reload") |
|---|
| 21 |
(:file "conditions") |
|---|
| 22 |
(:file "ffi") |
|---|
| 23 |
(:file "ffi-buffer-all") |
|---|
| 24 |
#-clisp (:file "ffi-buffer") |
|---|
| 25 |
#+clisp (:file "ffi-buffer-clisp") |
|---|
| 26 |
(:file "streams") |
|---|
| 27 |
(:file "bio"))) |
|---|