Skip to content

Commit cc0cccd

Browse files
committed
Build: better info message; disabled debug traces
1 parent 4b8e3b6 commit cc0cccd

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

Rebol-SQLite.nest

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
;~ Siskin project nest file ~;
22
compiler: clang
3-
version: 3.5.6
3+
version: 3.36.0.1
44

5-
define: USE_TRACES
5+
;define: USE_TRACES
66

77
#if Windows? [ define: _CRT_SECURE_NO_WARNINGS upx: on]
88
#if macOS? [ define: TO_OSX define: HAS_BOOL]

src/sqlite-command-info.c

+3-2
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,9 @@ int cmd_sqlite_info(RXIFRM* frm, void* reb_ctx) {
6363
tail = snprintf(
6464
SERIES_TEXT(str),
6565
SERIES_REST(str),
66-
"ExtVersion: %u.%u.%u\n"
67-
"RebVersion: %u.%u.%u\n"
66+
"\n"
67+
"Rebol-needed: %u.%u.%u\n"
68+
"Rebol-current: %u.%u.%u\n"
6869
"SQLite-version: %s\n"
6970
"SQLite-memory: %llu\n" // the number of bytes of memory currently outstanding (malloced but not freed)
7071
"SQLite-mem-top: %llu\n",

src/sqlite-rebol-extension.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ int cmd_sqlite_initialize(RXIFRM* frm, void* reb_ctx);
4444
int cmd_sqlite_shutdown(RXIFRM* frm, void* reb_ctx);
4545

4646
#define EXT_SQLITE_INIT_CODE \
47-
"REBOL [Title: \"Rebol SQLite Extension\" Name: sqlite Type: module Exports: [] Date: 8-Nov-2021/12:13:50+1:00 Version: 3.36.0 ]\n"\
47+
"REBOL [Title: \"Rebol SQLite Extension\" Name: sqlite Type: module Exports: [] Version: 3.36.0.1 Author: Oldes Date: 8-Nov-2021/14:51:17+1:00 License: Apache-2.0 Url: https://github.com/Siskin-framework/Rebol-SQLite]\n"\
4848
"init-words: command [cmd-words [block!] arg-words [block!]]\n"\
4949
"info: command [\"Returns info about SQLite extension library\" /of handle [handle!] \"SQLite Extension handle\"]\n"\
5050
"open: command [\"Opens a new database connection\" file [file!]]\n"\

0 commit comments

Comments
 (0)