RE: [sqlite] How to compile without TCL on Vs.Net

2004-09-16 Thread Ned Batchelder
You can quiet those warnings in the project properties.

In the project's property pages, under C/C++ - Advanced, there's a Disable
Specific Warnings field.  I put in 4018;4090;4101;4133;4244;4267;4311;4312
and all those warnings are silenced.

--Ned.
http://nedbatchelder.com

-Original Message-
From: Peter Loveday [mailto:[EMAIL PROTECTED] 
Sent: Thursday, September 16, 2004 7:02 PM
To: [EMAIL PROTECTED]; Sören Krings
Subject: Re: [sqlite] How to compile without TCL on Vs.Net

> how can i compile the sqlite3 source without any TCL bindings with
> Visual Studio 7.1?

I simply left out 'tclsqlite.c' and 'shell.c', and the rest compiled fine. 
You could probably define NO_TCL if you really want the source file in 
there, but I just removed it.

> And is ist normal that i get so much conversion warnings?

I get conversion warnings also, most of them are harmless, but annoying.

Love, Light and Peace,
- Peter Loveday
Director of Development, eyeon Software





Re: [sqlite] How to compile without TCL on Vs.Net

2004-09-16 Thread Darren Duncan
At 8:32 AM +0930 9/17/04, Peter Loveday wrote:
how can i compile the sqlite3 source without any TCL bindings with
Visual Studio 7.1?
I simply left out 'tclsqlite.c' and 'shell.c', and the rest compiled 
fine. You could probably define NO_TCL if you really want the source 
file in there, but I just removed it.

And is ist normal that i get so much conversion warnings?
I get conversion warnings also, most of them are harmless, but annoying.
I considered doing that myself.  But then I looked and it seems that 
all the tests are written in TCL, so 'make test' would fail just as 
it does now if your TCL is too old. -- Darren Duncan


Re: [sqlite] How to compile without TCL on Vs.Net

2004-09-16 Thread Peter Loveday
how can i compile the sqlite3 source without any TCL bindings with
Visual Studio 7.1?
I simply left out 'tclsqlite.c' and 'shell.c', and the rest compiled fine. 
You could probably define NO_TCL if you really want the source file in 
there, but I just removed it.

And is ist normal that i get so much conversion warnings?
I get conversion warnings also, most of them are harmless, but annoying.
Love, Light and Peace,
- Peter Loveday
Director of Development, eyeon Software


[sqlite] How to compile without TCL on Vs.Net

2004-09-16 Thread Sören Krings
Hello,

how can i compile the sqlite3 source without any TCL bindings with
Visual Studio 7.1?
And is ist normal that i get so much conversion warnings?

Best Regards
Sören