On 2025/02/22 14:01, Volker Schlecht wrote:
> On 2025-02-21 22:55, Theo Buehler wrote:
> > On Wed, Feb 19, 2025 at 07:15:51PM +0100, Volker Schlecht wrote:
> > > deno 2.2.0 wants the session extension 
> > > (https://sqlite.org/sessionintro.html)
> > > enabled in sqlite3. Probably there's a way to disable that in deno if 
> > > need be,
> > > but the extension seems innocent enough to enable it in the sqlite3 port.
> > > 
> > > Opinions? Builds and works on arm64 and amd64...
> > 
> > Something's very wrong here. After 90 minutes of build I got this list
> > of failures and stopped the build:
> 
> Funky. I don't think it's the extension itself, though. When I changed this:
> 
> > >  # XXX needs bumps every time :-
> > > -SHARED_LIBS +=  sqlite3                   37.30 # 8.6
> > > +SHARED_LIBS +=  sqlite3                   38.00 # 8.6

Should be 38.0 not 38.00.

> To 37.31, at least the handful of builds in your list that I tested, works 
> again.
> I noticed that when updateing, libsqlite3.so.38.00 did not replace
> libsqlite3.so.37.30, but libsqlite3.so.37.31 did.

Updates keep a version around that's compatible with existing programs
built against the old library version.

37.31 is supposed to be compatible with programs built against 37.30
so no need to keep 37.30.

38.anything is not so the old version is kept in that case.

Reply via email to