Re: [sqlite] SQLite 3.2 install on Mac OS X

2005-07-27 Thread Kurt Welgehausen
It looks like libtclsqlite3.dylib either didn't get made
or is in the wrong place. You can search your disk to see
whether it got made. There's a switch in the Makefile
that determines whether it gets made or not.

OS X has been discussed several times on this list. You
might try searching the archives; you might find a
solution spelled out:

   http://www.mail-archive.com/sqlite-users@sqlite.org/


Regards


Re: [sqlite] SQLite 3.2 install on Mac OS X

2005-07-26 Thread Andrew Vogel
The linking did work, but I think I'm still missing something:

sudo make install

Results in:

tclsh ../tclinstaller.tcl 3.2
couldn't open ".libs/libtclsqlite3.dylib": no such file or directory
while executing
"open $LIBFILE"
invoked from within
"set in [open $LIBFILE]"
(file "../tclinstaller.tcl" line 23)
make: *** [tcl_install] Error 1

Looks as though it's trying to find .dylibs which don't exist.  Is
there some tcl/tk dependency I'm missing?  Or perhaps I can just move
sqlite3 and libsqlite3.a and/or libtclsqlite3.a to some where in my
PATH.

Thx,
Andrew


Re: [sqlite] SQLite 3.2 install on Mac OS X

2005-07-26 Thread Kurt Welgehausen
cd /usr/bin
ln -s tclsh8.4.4 tclsh

will probably do it for you, or to cover all the bases,

cd /usr/bin
ln -s tclsh8.4.4 tclsh8.4
ln -s tclsh8.4 tclsh


Regards


[sqlite] SQLite 3.2 install on Mac OS X

2005-07-26 Thread Andrew Vogel
I've been trying to get SQLite3 installed on Mac OS X.  It compiles
fine, but I get errors during the 'make install' concerning tclsh. 
tclsh is there in /usr/bin/tclsh8.4.4

How should I modify the install script, or should I create a ln of
some sort for tclsh?

Oh, and /usr/bin is in my PATH.

Thanks,
Andrew