"Klemens Friedl" <[EMAIL PROTECTED]> wrote: > I would like to use the "ICU" extention (cvs: "sqlite\ext\icu.c") in > combination with a preprocessed source code of SQLite3 for Win32. > > Is it possible to build sqlite.dll with the big sqlite3.c plus > extentions (e.g. icu.c) ?
Sure. It's all C code. Just because we combined all the C code into one great big file rather than keeping it spread out across 60-odd smaller files does not change the way it is compiled and linked (other than the fact that you have fewer filenames to pass to the compiler and linker). Compile sqlite3.c and icu.c (and fts1*.c and fts2*.c too) together into a single DLL if you want. How hard can that be? -- D. Richard Hipp <[EMAIL PROTECTED]> ----------------------------------------------------------------------------- To unsubscribe, send email to [EMAIL PROTECTED] -----------------------------------------------------------------------------

