]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-115119: Update macOS installer to build with libmpdec 4.0.0 (GH-118382)
authorErlend E. Aasland <erlend@python.org>
Fri, 3 May 2024 16:49:40 +0000 (18:49 +0200)
committerGitHub <noreply@github.com>
Fri, 3 May 2024 16:49:40 +0000 (16:49 +0000)
Co-authored-by: Ned Deily <nad@python.org>
Mac/BuildScript/README.rst
Mac/BuildScript/build-installer.py
Misc/NEWS.d/next/macOS/2024-05-03-12-13-27.gh-issue-115119.ltDtoR.rst [new file with mode: 0644]

index 4f74e7dc00520ad55a5e817007e525cfadab29d8..a9fae36ba28ae99d1460b7ed492c70edca31e86f 100644 (file)
@@ -82,6 +82,7 @@ download them.
         * SQLite
         * XZ
         * libffi
+        * mpdecimal
 
     - uses system-supplied versions of third-party libraries
 
@@ -111,6 +112,7 @@ download them.
         * SQLite
         * XZ
         * libffi
+        * mpdecimal
 
     - uses system-supplied versions of third-party libraries
 
index 286df4862793fba6467cce0ce977a0e0731de1a7..8386e407f49aa3c559b2c71eab13cd81eaade1a5 100755 (executable)
@@ -378,6 +378,15 @@ def library_recipes():
                   '--disable-dependency-tracking',
               ]
           ),
+          dict(
+              name="libmpdec 4.0.0",
+              url="https://www.bytereef.org/software/mpdecimal/releases/mpdecimal-4.0.0.tar.gz",
+              checksum="942445c3245b22730fd41a67a7c5c231d11cb1b9936b9c0f76334fb7d0b4468c",
+              configure_pre=[
+                  "--disable-cxx",
+                  "MACHINE=universal",
+              ]
+          ),
         ])
 
     if not PYTHON_3:
@@ -1150,6 +1159,7 @@ def buildPython():
     print(" NOTE: --with-mimalloc=no pending resolution of weak linking issues")
     runCommand("%s -C --enable-framework --enable-universalsdk=/ "
                "--with-mimalloc=no "
+               "--with-system-libmpdec "
                "--with-universal-archs=%s "
                "%s "
                "%s "
diff --git a/Misc/NEWS.d/next/macOS/2024-05-03-12-13-27.gh-issue-115119.ltDtoR.rst b/Misc/NEWS.d/next/macOS/2024-05-03-12-13-27.gh-issue-115119.ltDtoR.rst
new file mode 100644 (file)
index 0000000..693dcc7
--- /dev/null
@@ -0,0 +1 @@
+Update macOS installer to use libmpdecimal 4.0.0.