Hi,

When I download sqlite, and compile on mingw, like this,
  $ cd sqlite-3.5.3
  $ ./configure --disable-shared --enable-static --disable-tcl 
--prefix=$PWD/../install
  $ make
ok, up until this point, everything works.

However, when I type
  $ make install
it fails because tclsh isn't installed when running this command,
  tclsh ./tool/mksqlite3c.tcl
  make: tclsh: Command not found

Now, if I install tclsh, it then attempts to compile sqlite3.c, and
fails with the compiler error,
  tclsh ./tool/mksqlite3c.tcl
  gcc-sjlj -g -Wall -Werror -DVS_DEBUG    sqlite3.c   -o sqlite3
  sqlite3.c:91:25: error: sqliteLimit.h: No such file or directory^M
The file sqliteLimit.h is in the src/ directory.

So, my question is, what do you think is going on with make install?
Should it require tclsh even when I have --disable-tcl?
Should it give me a compiler error?

What can I do to fix this issue?

Thanks,
Bob Rossi

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

Reply via email to