;;; -*- Mode: LISP; Package: COMMON-LISP-USER; BASE: 10; Syntax: ANSI-Common-Lisp; -*- ;; Portable SQL module ;; Version 0.9 ;; Copyright (C) Paul Meurer 1999, 2000. All rights reserved. ;; paul.meurer@hit.uib.no ;; ;; ODBC module system definition for MCL using the Yads defsystem. ;; Put this file into the folder where your system definitions reside. ;; ;; Documentation and the license agreement can be found in file ;; "sql-odbc-documentation.lisp" (in-package :common-lisp-user) (defsystem :odbc :package :cl-user :binary-directory "home:binaries;sql;odbc;" :source-directory "sql:odbc;" :depends-on (:sql) :components ((:subsystem :mcl :source-directory "sql:mcl;" :binary-directory "home:binaries;sql;mcl;" :components ("ff-compatibility-mcl")) "odbc-package" "odbc-constants" "odbc-ff-interface" "odbc-functions" "odbc-sql-interface" "odbc-streams") :finally-do (pushnew :odbc *features*))