Skip to content

Commit e604060

Browse files
authored
bpo-46907: Update Windows installer to SQLite 3.38.3. (GH-91995)
1 parent bb857a9 commit e604060

File tree

5 files changed

+5
-4
lines changed

5 files changed

+5
-4
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Update Windows installer to use SQLite 3.38.3.

PCbuild/get_externals.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ set libraries=
5454
set libraries=%libraries% bzip2-1.0.8
5555
if NOT "%IncludeLibffiSrc%"=="false" set libraries=%libraries% libffi-3.4.2
5656
if NOT "%IncludeSSLSrc%"=="false" set libraries=%libraries% openssl-1.1.1n
57-
set libraries=%libraries% sqlite-3.38.2.0
57+
set libraries=%libraries% sqlite-3.38.3.0
5858
if NOT "%IncludeTkinterSrc%"=="false" set libraries=%libraries% tcl-core-8.6.12.1
5959
if NOT "%IncludeTkinterSrc%"=="false" set libraries=%libraries% tk-8.6.12.1
6060
if NOT "%IncludeTkinterSrc%"=="false" set libraries=%libraries% tix-8.4.3.6

PCbuild/python.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
<ExternalsDir>$(EXTERNALS_DIR)</ExternalsDir>
6262
<ExternalsDir Condition="$(ExternalsDir) == ''">$([System.IO.Path]::GetFullPath(`$(PySourcePath)externals`))</ExternalsDir>
6363
<ExternalsDir Condition="!HasTrailingSlash($(ExternalsDir))">$(ExternalsDir)\</ExternalsDir>
64-
<sqlite3Dir>$(ExternalsDir)sqlite-3.38.2.0\</sqlite3Dir>
64+
<sqlite3Dir>$(ExternalsDir)sqlite-3.38.3.0\</sqlite3Dir>
6565
<bz2Dir>$(ExternalsDir)bzip2-1.0.8\</bz2Dir>
6666
<lzmaDir>$(ExternalsDir)xz-5.2.5\</lzmaDir>
6767
<libffiDir>$(ExternalsDir)libffi-3.4.2\</libffiDir>

PCbuild/readme.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ _ssl
189189
again when building.
190190

191191
_sqlite3
192-
Wraps SQLite 3.38.2, which is itself built by sqlite3.vcxproj
192+
Wraps SQLite 3.38.3, which is itself built by sqlite3.vcxproj
193193
Homepage:
194194
http://www.sqlite.org/
195195
_tkinter

PCbuild/sqlite3.vcxproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@
9898
<ItemDefinitionGroup>
9999
<ClCompile>
100100
<AdditionalIncludeDirectories>$(sqlite3Dir);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
101-
<PreprocessorDefinitions>SQLITE_ENABLE_MATH_FUNCTIONS;SQLITE_ENABLE_JSON1;SQLITE_ENABLE_FTS4;SQLITE_ENABLE_FTS5;SQLITE_ENABLE_RTREE;SQLITE_OMIT_AUTOINIT;SQLITE_API=__declspec(dllexport);%(PreprocessorDefinitions)</PreprocessorDefinitions>
101+
<PreprocessorDefinitions>SQLITE_ENABLE_MATH_FUNCTIONS;SQLITE_ENABLE_FTS4;SQLITE_ENABLE_FTS5;SQLITE_ENABLE_RTREE;SQLITE_OMIT_AUTOINIT;SQLITE_API=__declspec(dllexport);%(PreprocessorDefinitions)</PreprocessorDefinitions>
102102
<WarningLevel>Level1</WarningLevel>
103103
</ClCompile>
104104
<ResourceCompile>

0 commit comments

Comments
 (0)