Re: [sqlite] Versions 2.8.16 and 3.1.2

2005-02-17 Thread Jolan Luff
On Tue, Feb 15, 2005 at 08:23:59AM -0500, D. Richard Hipp wrote:
> Version 3.1.2 is also (by coincidence) the first stable release
> of the 3.1 line.  SQLite 3.1 adds support for correlated subqueries,
> autovacuum, autoincrement, ALTER TABLE, and other features.
> 
> Please let me know if you find any problems with either release.

with 2.8.16 and 3.0.8, i had to set the following in the environment in
order for the tcl headers and library to be properly found:

config_TARGET_TCL_LIBS="-L${LOCALBASE}/lib -ltcl84 -lm"
config_TARGET_TCL_INC="-I${LOCALBASE}/include/tcl8.4"

(where ${LOCALBASE} is set to /usr/local)

now with 3.1.2 i use --with-tcl=${LOCALBASE}/lib/tcl8.4 as an
argument to configure and sqlite links to tcl properly, but it cant find
the headers.  somehow this gets set:

TCL_INCLUDE_SPEC='-I/usr/local/include'

but i couldn't figure out where or how to override it.  since configure
doesn't respect CPPFLAGS i've had to resort to appending
-I${LOCALBASE}/include/tcl8.4 to CFLAGS.  the above no longer works and
appending this to CFLAGS is rather hacky.  i'd be more than happy to
provide you with any information you need in order to get this working
in a sane way.

- jolan


Re: [sqlite] Versions 2.8.16 and 3.1.2

2005-02-15 Thread Darren Duncan
At 10:07 PM -0500 2/15/05, D. Richard Hipp wrote:
 > one of the regression tests fail on 3.1.2:
 alter-1.8.2...
 Error: near ".": syntax error
That is because I mistakenly included an older version of that
test in the tarball.  Ignore this error.
Do you plan to release a corrected 3.1.2 tarball soon?
Or is this a "so minor it will wait until 3.1.3" thing?
-- Darren Duncan


Re: [sqlite] Versions 2.8.16 and 3.1.2

2005-02-15 Thread Jolan Luff
On Tue, Feb 15, 2005 at 08:23:59AM -0500, D. Richard Hipp wrote:
> Version 3.1.2 is also (by coincidence) the first stable release
> of the 3.1 line.  SQLite 3.1 adds support for correlated subqueries,
> autovacuum, autoincrement, ALTER TABLE, and other features.
> 
> Please let me know if you find any problems with either release.

one of the regression tests fail on 3.1.2:

alter-1.8.2...
Error: near ".": syntax error


Re: [sqlite] Versions 2.8.16 and 3.1.2

2005-02-15 Thread D. Richard Hipp
On Tue, 2005-02-15 at 18:40 +0300, Grigory Entin wrote:
> Hi,
> 
> Sorry, I'm not subscribed to the list..
> 
> Just in case, it looks like .tar.gz for 2.8.16 sources, that is
> 
> http://www.sqlite.org/sqlite-2.8.16.tar.gz
> 
> actually contains 3.1.2 - e.g. VERSION there states 3.1.2 and etc.
> 

Should be fixed now.
-- 
D. Richard Hipp <[EMAIL PROTECTED]>



Re: [sqlite] Versions 2.8.16 and 3.1.2

2005-02-15 Thread D. Richard Hipp
On Tue, 2005-02-15 at 14:30 +0100, Tito Ciuro wrote:
> Hello,
> 
> http://www.sqlite.org/www.sqlite.org/releasenotes310.html is missing.
> 

Typo fixed.
-- 
D. Richard Hipp <[EMAIL PROTECTED]>



RE: [sqlite] Versions 2.8.16 and 3.1.2

2005-02-15 Thread Robert Foster
Nope, the link is wrong...
http://www.sqlite.org/releasenotes310.html
Should do it.
Rob.
-Original Message-
From: Tito Ciuro [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, 16 February 2005 12:30 AM
To: sqlite-users@sqlite.org
Subject: Re: [sqlite] Versions 2.8.16 and 3.1.2


Hello,

http://www.sqlite.org/www.sqlite.org/releasenotes310.html is missing.

-- Tito

On Feb 15, 2005, at 14:23, D. Richard Hipp wrote:

> Version 3.1.2 is also (by coincidence) the first stable release of the 
> 3.1 line.  SQLite 3.1 adds support for correlated subqueries, 
> autovacuum, autoincrement, ALTER TABLE, and other features.