Re: [sqlite] Shared binary plus static lib

2009-06-08 Thread Gerry Snyder
Mark Constable wrote: > > > Yikes, that will hurt when I go to build on a TCL-less system. > There are stand-alone Tcl binaries for many platforms, should that ever be a problem for you and you don't want to install a full package. Both etcl and freewrap are good products. They come with

Re: [sqlite] Shared binary plus static lib

2009-06-07 Thread Mark Constable
On Sunday 07 June 2009 14:26:07 Mark Constable wrote: > Would anyone have a clue as to how I could end up with > /usr/lib/libsqlite3.so.0 > as well as /usr/bin/sqlite3 and /usr/lib/libsqlite3.a ? Another one for the list archives. I'm not sure if this is 100% correct but the result works for me o

Re: [sqlite] Shared binary plus static lib

2009-06-06 Thread Mark Constable
Would anyone have a clue as to how I could end up with /usr/lib/libsqlite3.so.0 as well as /usr/bin/sqlite3 and /usr/lib/libsqlite3.a ? cc -DTHREADSAFE=0 -c sqlite3.c cc -DHAVE_READLINE=1 -o sqlite3 sqlite3.o shell.c -ldl -lreadline -ltermcap -I/usr/include/readline ar cru libsqlite3.a sqlite3.o

Re: [sqlite] Shared binary plus static lib

2009-06-06 Thread Mark Constable
On Sunday 07 June 2009 10:51:05 Jay A. Kreibich wrote: > > > > Howdy, I'd like to end up with a shared NON-threaded NON-TCL binary > > > > but also with a libsqlite3.a static lib. Could anyone suggest how I > > > > could alter this Makefile to support these requirements please? > > > > Is there a p

Re: [sqlite] Shared binary plus static lib

2009-06-06 Thread Jay A. Kreibich
On Sun, Jun 07, 2009 at 09:26:03AM +1000, Mark Constable scratched on the wall: > On Sunday 07 June 2009 00:15:21 Jay A. Kreibich wrote: > > > Howdy, I'd like to end up with a shared NON-threaded NON-TCL binary > > > but also with a libsqlite3.a static lib. Could anyone suggest how I > > > could al

Re: [sqlite] Shared binary plus static lib

2009-06-06 Thread Mark Constable
On Sunday 07 June 2009 00:15:21 Jay A. Kreibich wrote: > > Howdy, I'd like to end up with a shared NON-threaded NON-TCL binary > > but also with a libsqlite3.a static lib. Could anyone suggest how I > > could alter this Makefile to support these requirements please? > > Assuming you're using the

Re: [sqlite] Shared binary plus static lib

2009-06-06 Thread Jay A. Kreibich
On Sat, Jun 06, 2009 at 04:31:30PM +1000, Mark Constable scratched on the wall: > Howdy, I'd like to end up with a shared NON-threaded NON-TCL binary > but also with a libsqlite3.a static lib. Could anyone suggest how I > could alter this Makefile to support these requirements please? Assuming y

[sqlite] Shared binary plus static lib

2009-06-05 Thread Mark Constable
Howdy, I'd like to end up with a shared NON-threaded NON-TCL binary but also with a libsqlite3.a static lib. Could anyone suggest how I could alter this Makefile to support these requirements please? For x86_64 and i686, kernel 2.6.29.4, glibc 2.10.1. TOP = ../sqlite3 BCC = gcc -O2 USLEEP = -DHAV