Re: a Scheme48 wrapper for Sqlite3
Ivan Shmakov <[email protected]>
| Newsgroups | gmane.lisp.scheme.scheme48 |
|---|---|
| Message-ID | <[email protected]> |
>>>>> Ivan Shmakov <[email protected]> writes: [...] > Welcome to Scheme 48 1.9T (made by ivan on Mon Sep 8 11:38:33 NOVST 2008) > Copyright (c) 1993-2008 by Richard Kelsey and Jonathan Rees. > Please report bugs to [email protected]. > Get more information at http://www.s48.org/. > Type ,? (comma question-mark) for help. > > ,config ,load sqlite3-packages.scm FWIW, the following change will allow one to relocate `sqlite3-int.so' using the usual Scheme48 `,translate' facility, like: > ,translate =scheme48-sqlite3/ /where/sqlite3-int/is/installed/ --- sqlite3.scm 2008/09/07 18:19:46 1.19 +++ sqlite3.scm 2008/10/25 16:32:33 1.20 @@ -5,7 +5,7 @@ ;;; Code: -(import-dynamic-externals "./sqlite3-int") +(import-dynamic-externals "=scheme48-sqlite3/sqlite3-int") (import-lambda-definition-2 sqlite3-s48-box ()) [...]