On Mon, 2005-02-21 at 10:18 +0300, Igor Gorbounov wrote: > Hi, All! > sqlite-3.1.3.tar.gz doesn't compile on Fedora Core 3 Linux. Compiler > complains > on some Tcl stuff: > .... > gcc -g -O2 -DOS_UNIX=1 -DHAVE_USLEEP=1 -I. -I./src -DNDEBUG > -I/usr/include -DSQLITE_OMIT_CURSOR -c ./src/tclsqlite.c -fPIC -DPIC -o > .libs/tclsqlite.o > ./src/tclsqlite.c:20:17: tcl.h: No such file or directory
The file tclsqlite.c is the TCL interface to SQLite. You do not need to compile that file in order to build just the SQLite library. You do need the TCL interface in order to do "make test" because most of the test code is written in TCL. But "make test" is not necessary to build the library. -- D. Richard Hipp <[EMAIL PROTECTED]>