Bug 181298

Summary: Upstream version of sqlite3 fixes critical threading bugs
Product: [Fedora] Fedora Reporter: Bojan Smojver <bojan>
Component: sqliteAssignee: Paul Nasrat <nobody+pnasrat>
Status: CLOSED RAWHIDE QA Contact:
Severity: medium Docs Contact:
Priority: medium    
Version: rawhide   
Target Milestone: ---   
Target Release: ---   
Hardware: All   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2006-06-26 18:45:16 UTC Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:

Description Bojan Smojver 2006-02-13 07:06:59 UTC
Description of problem:

Upstream version of sqlite3, 3.3.4, fixes a possible threading deadlock. It also
features the new --enable-threads-override-locks ./configure option, which will
eliminate two thread spinup in each new process that uses sqlite3 on platforms
that support such behaviour (FC5 does). Please rebuild.


Version-Release number of selected component (if applicable):
3.3.3-1.1

Comment 1 Bojan Smojver 2006-04-19 21:40:58 UTC
Just noticed that the spec file claims:

* Tue Jan 24 2006 Paul Nasrat <pnasrat> - 3.2.8-1
- Add --enable-threadsafe (Nicholas Miell)
- Update to 3.2.8

However, the configure command is not run with --enable-threadsafe. It looks
like this:

%configure %{!?with_tcl:--disable-tcl}

Where is should probably be:

%configure %{!?with_tcl:--disable-tcl} \
           --enable-threadsafe \
           --enable-threads-override-locks

If sqlite package is to have proper thread support.

Comment 2 Bojan Smojver 2006-06-07 00:08:03 UTC
3.3.6 now available.