Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | warning in sqlite3.sls, updated README |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
4aff54750fce6172bce7a16c53cca9d3 |
User & Date: | ovenpasta@pizzahack.eu 2016-07-07 20:53:20 |
Context
2016-07-08
| ||
17:14 | added more funcs to usb.sls check-in: 35917dddc4 user: ovenpasta@pizzahack.eu tags: trunk | |
2016-07-07
| ||
20:53 | warning in sqlite3.sls, updated README check-in: 4aff54750f user: ovenpasta@pizzahack.eu tags: trunk | |
20:51 | merge check-in: 68e5a476f2 user: ovenpasta@pizzahack.eu tags: trunk | |
Changes
Changes to README.md.
4 5 6 7 8 9 10 11 12 13 |
(import (fmt fmt)) (import (matchable)) ; based on chicken sqlite3 egg (import (sqlite3)) (load-shared-object "libsqlite3.so.0") |
| | < |
4 5 6 7 8 9 10 11 12 |
(import (fmt fmt))
(import (matchable))
; based on chicken sqlite3 egg
(import (sqlite3))
(import (usb))
|
Changes to sqlite3.sls.
57 58 59 60 61 62 63 |
(sql-null)) (include "sqlite3.scm") ; (load-shared-object "libsqlite3.so.0") ) ; library sqlite3 |
> > > |
57 58 59 60 61 62 63 64 65 66 |
(sql-null)) (include "sqlite3.scm") ; (load-shared-object "libsqlite3.so.0") ) ; library sqlite3 (warning 'sqlite3 "remember to load the dynamic library: Example: (load-shared-object \"libsqlite3.so.0\")") |