[Python-checkins] cpython: Issue #13507: OS X installer builds now build liblzma for the new

ned.deily python-checkins at python.org
Sun Apr 1 09:20:09 CEST 2012


http://hg.python.org/cpython/rev/0e1177499762
changeset:   76039:0e1177499762
user:        Ned Deily <nad at acm.org>
date:        Sun Apr 01 00:17:33 2012 -0700
summary:
  Issue #13507: OS X installer builds now build liblzma for the new
lzma module.  (Patch by Nicholas Riley)

files:
  Mac/BuildScript/build-installer.py |  11 +++++++++++
  1 files changed, 11 insertions(+), 0 deletions(-)


diff --git a/Mac/BuildScript/build-installer.py b/Mac/BuildScript/build-installer.py
--- a/Mac/BuildScript/build-installer.py
+++ b/Mac/BuildScript/build-installer.py
@@ -143,6 +143,17 @@
 def library_recipes():
     result = []
 
+    result.extend([
+          dict(
+              name="XZ 5.0.3",
+              url="http://tukaani.org/xz/xz-5.0.3.tar.gz",
+              checksum='fefe52f9ecd521de2a8ce38c21a27574',
+              configure_pre=[
+                    '--disable-dependency-tracking',
+              ]
+              )
+          ])
+
     if DEPTARGET < '10.5':
         result.extend([
           dict(

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list