X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=clsql-mysql.system;h=5d80be164879d85a7be0a56c196d953ddde13e2f;hb=865598033baf78cf3ba9da36a031a85eb18849e0;hp=795d8d914efa341e77a525abeeb3f7b0308a7672;hpb=b06cb6d32e2a334f7dc72e8fb583a5b9609136b7;p=clsql.git diff --git a/clsql-mysql.system b/clsql-mysql.system index 795d8d9..5d80be1 100644 --- a/clsql-mysql.system +++ b/clsql-mysql.system @@ -1,41 +1,42 @@ -;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*- -;;;; ************************************************************************* -;;;; FILE IDENTIFICATION -;;;; -;;;; Name: clsql-mysql.system -;;;; Purpose: Defsystem-3/4 definition file for CLSQL MySQL backend -;;;; Programmer: Kevin M. Rosenberg -;;;; Date Started: Feb 2002 -;;;; -;;;; $Id: clsql-mysql.system,v 1.2 2002/03/23 17:10:47 kevin Exp $ -;;;; -;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg -;;;; -;;;; CLSQL users are granted the rights to distribute and use this software -;;;; as governed by the terms of the Lisp Lesser GNU Public License -;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL. -;;;; ************************************************************************* - -(declaim (optimize (debug 3) (speed 3) (safety 1) (compilation-speed 0))) - -(in-package :make) - -;;; System definition - -(defsystem :clsql-mysql - :source-pathname "CLSQL:interfaces;mysql;" - :source-extension "cl" - :binary-pathname "CLSQL:interfaces;mysql;bin;" - :components ((:file "mysql-package") - (:file "mysql-loader" :depends-on ("mysql-package")) - (:file "mysql-api" :depends-on ("mysql-loader")) - (:file "mysql-sql" :depends-on ("mysql-api"))) - :depends-on (:uffi :clsql) - :finally-do - (progn - (clsql-sys:initialize-database-type :database-type :mysql) - (setq clsql:*default-database-type* :mysql) - (pushnew :mysql cl:*features*))) - - - +;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*- +;;;; ************************************************************************* +;;;; FILE IDENTIFICATION +;;;; +;;;; Name: clsql-mysql.system +;;;; Purpose: Defsystem-3/4 definition file for CLSQL MySQL backend +;;;; Programmer: Kevin M. Rosenberg +;;;; Date Started: Feb 2002 +;;;; +;;;; $Id: clsql-mysql.system,v 1.6 2002/05/13 00:45:10 kevin Exp $ +;;;; +;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg +;;;; +;;;; CLSQL users are granted the rights to distribute and use this software +;;;; as governed by the terms of the Lisp Lesser GNU Public License +;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL. +;;;; ************************************************************************* + +(declaim (optimize (debug 3) (speed 3) (safety 1) (compilation-speed 0))) + +(in-package :make) + +;;; System definition + +(defsystem :clsql-mysql + :source-pathname "CL-LIBRARY:clsql;interfaces;mysql;" + :source-extension "cl" + :binary-pathname "CL-LIBRARY:clsql;interfaces;mysql;bin;" + :components ((:file "mysql-package") + (:file "mysql-loader" :depends-on ("mysql-package")) + (:file "mysql-api" :depends-on ("mysql-loader")) + (:file "mysql-sql" :depends-on ("mysql-api")) + (:file "mysql-usql" :depends-on ("mysql-sql"))) + :depends-on (:uffi :clsql-base :clsql-uffi) + :finally-do + (when (clsql-sys:database-type-library-loaded :mysql) + (clsql-sys:initialize-database-type :database-type :mysql) + (setq clsql:*default-database-type* :mysql) + (pushnew :mysql cl:*features*))) + + +