Skip to content

Commit

Permalink
pythongh-115119: Update macOS installer to fetch and build libmpdecim…
Browse files Browse the repository at this point in the history
…al 2.5.1
  • Loading branch information
erlend-aasland committed Apr 29, 2024
1 parent c7e7bfc commit bc04b90
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Mac/BuildScript/build-installer.py
Original file line number Diff line number Diff line change
Expand Up @@ -378,6 +378,17 @@ def library_recipes():
'--disable-dependency-tracking',
]
),
dict(
name="libmpdec 2.5.1",
url="https://www.bytereef.org/software/mpdecimal/releases/mpdecimal-2.5.1.tar.gz",
checksum="9f9cd4c041f99b5c49ffb7b59d9f12d95b683d88585608aa56a6307667b2b21f",
extra_cflags=(
"MACHINE=universal",
),
configure_pre=[
"--disable-cxx",
]
),
])

if not PYTHON_3:
Expand Down
1 change: 1 addition & 0 deletions Modules/_sqlite/cursor.c
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,7 @@ stmt_reset(pysqlite_Statement *self)
Py_BEGIN_ALLOW_THREADS
rc = sqlite3_reset(self->st);
Py_END_ALLOW_THREADS
assert(rc == SQLITE_OK);
}

return rc;
Expand Down

0 comments on commit bc04b90

Please sign in to comment.