fixed bug converting to boolean in db-mysql/mysql-sql.lisp - from github user Sectoid
[clsql.git] / clsql-cffi.asd
1 ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:     clsql-cffi.asd
6 ;;;; Purpose:  ASDF System definition for CLSQL using CFFI-UFFI-COMPAT
7 ;;;; Author:   Kevin M. Rosenberg
8 ;;;; Created:  Jan 2010
9 ;;;;
10 ;;;; CLSQL users are granted the rights to distribute and use this software
11 ;;;; as governed by the terms of the Lisp Lesser GNU Public License
12 ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
13 ;;;; *************************************************************************
14
15 (push :clsql-cffi cl:*features*)
16
17 (defpackage #:clsql-cffi-system (:use #:asdf #:cl))
18 (in-package #:clsql-cffi-system)
19
20 (defsystem clsql-cffi
21     :name "CLSQL-CFFI"
22     :author "Kevin Rosenberg <kevin@rosenberg.net>"
23     :maintainer "Kevin M. Rosenberg <kmr@debian.org>"
24     :licence "Lessor Lisp General Public License"
25     :description "CLSQL using CFFI-UFFI-COMPAT interface"
26     :depends-on (clsql)
27     :components nil)