On 5/23/07, weiyang wang <[EMAIL PROTECTED]> wrote:
hi,

i can see the source file structure has been changed from 65 (sqliteint.h,
os_common.h,..... )files before to only 2 files (sqlite3.h&sqlite3.c)now.
and this change bring me a problem when i try to integrate sqlite with other
platforms.

in my sqlite integration, i have to put my porting layer os_xxx into a
seperate 'cpp' file and to include related defines (defined in
sqliteint.hand os_common.h in early file structure).

and due to compiler issues, i cant include sqlite3.c in my 'cpp' file. i am
trapped here.

does anyone know how can i get the source codes with the early file
structure? (65 seperate files)? thanks in advance.

You can extract individual files from the sqlite3.c using for example:
sed -n -e '/Begin file sqliteInt.h/,/End of sqliteInt.h/p' sqlite3.c >
sqliteInt.h

However I don't know if it is safe to use those files to do some
compilation then.

Regards,

Vivien

-----------------------------------------------------------------------------
To unsubscribe, send email to [EMAIL PROTECTED]
-----------------------------------------------------------------------------

Reply via email to