Re: [sqlite] Re: building a custom DBD::SQLite

2007-11-25 Thread P Kishor
and therein lies the tale of computer programmers and users... Scott, and others... I *am* good at a few things, but compiling programs is not one of them. I am basically a copy artist -- I can follow instructions, but the instructions have to be good and explicit. And then, I can create new good

Re: [sqlite] Re: building a custom DBD::SQLite

2007-11-24 Thread Scott Hess
On Nov 18, 2007 3:28 PM, P Kishor <[EMAIL PROTECTED]> wrote: > Following those pretty much to the t, I almost got everything working. > Except, I got the following during make > > ../sqlite-3.5.2/ext/fts1/fts1.c:7:2: error: #error fts1 has a design > flaw and has been deprecated. > make: ***

Re: [sqlite] Re: building a custom DBD::SQLite

2007-11-19 Thread Joe Wilson
Grep for the unresolved external in all the *.[ch] files. sqlite3Fts3InitHashTable lives in ext/fts3/fts3_tokenizer.c. Make sure it is in your makefile. Ditto for fts2, with a slightly different name. If you're building fts2 make sure you compile with -DSQLITE_ENABLE_BROKEN_FTS2

[sqlite] Re: building a custom DBD::SQLite

2007-11-19 Thread P Kishor
Here are my travails thus far. I have been singularly unable to build SQLite 3.5.2 with fts3 on Intel Mac OS X 10.4.11 I added the following to my Makefile.in #TCC += -DSQLITE_OMIT_LOAD_EXTENSION=1 TCC += -DSQLITE_CORE=1 TCC += -DSQLITE_ENABLE_FTS3=1 and then added all the fts3 .c and .h files

[sqlite] Re: building a custom DBD::SQLite

2007-11-18 Thread P Kishor
On Nov 18, 2007 2:59 PM, P Kishor <[EMAIL PROTECTED]> wrote: > On Nov 17, 2007 2:22 PM, P Kishor <[EMAIL PROTECTED]> wrote: > > I need to build a DBD::SQLite package using SQLite with fts > > capabilities. Can someone on this list kindly give me painless, easy > > to understand instructions to do

[sqlite] Re: building a custom DBD::SQLite

2007-11-18 Thread P Kishor
On Nov 17, 2007 2:22 PM, P Kishor <[EMAIL PROTECTED]> wrote: > I need to build a DBD::SQLite package using SQLite with fts > capabilities. Can someone on this list kindly give me painless, easy > to understand instructions to do so? I need to do this on a Mac OS X > 10.4 first, and then on my web