Re: [sqlite] Port SQLite to VxWorks 6.8

2013-04-27 Thread nikvoron
Just put: pNew->ctrlFlags |= UNIXFILE_DELETE; instead of isDelete = 0; And remove : if( isDelete ) pNew->ctrlFlags |= UNIXFILE_DELETE; Worked for me, but I built SQLite for RTP. Does not metter here. Regards -- View this message in context:

Re: [sqlite] Port SQLite to VxWorks 6.8

2013-04-26 Thread pmb
We (Peter and me) have been having problems with the following lines of code from the sqlite3.c of the SQLite 3.7.16.1. *Problem 1: * Undefined symbol "isDelete". Any idea what this variable does? Or where it is defined? static int fillInUnixFile( . . . ) { . . . #if OS_VXWORKS if(

[sqlite] Port SQLite to VxWorks 6.8

2013-04-25 Thread Peter Meszaros
Hi All, First a very general question: Does anyone have experiences with porting SQLite to VxWorks? Preferably to Version 6.8 but not much too older versions could be also interesting for me. The documentation and the directives like #if OS_VXWORKS in the source suggest it would be possible