You are not logged in.
Pages: 1
Hi AB there is the following compiler error generated from bcc of Tokyo (and other i suppose)
./amalgamation/sqlite3.c:50463:21: error: Wert in Ausdruck erwartet
#if SQLITE_HAS_CODEC <----
in sqlite.c you define SQLITE_HAS_CODEC
with
#define SQLITE_HAS_CODEC
to make the code compile you have to provide a value to SQLITE_HAS_CODEC
correct code:
#define SQLITE_HAS_CODEC 0
or
#define SQLITE_HAS_CODEC 1
I non't know if it should be a 1 or 0
can you pls fix this
Rad Studio 12.1 Santorini
Offline
This is more a problem of the amalgamation file itself...
To compile, we patched our local sqlite3.c file with #ifdef instead of #if.
Perhaps defining SQLITE_HAS_CODEC to 1 may help.
Please check https://synopse.info/fossil/info/27c53af859
Offline
Pages: 1