summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-01-29 08:40:16 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2013-01-29 08:40:16 (GMT)
commit4c32c23f658bff716c2d677bc13d60c4bc7fba4b (patch)
tree145822c5d98e485167e31e691e91122b9c068559
parent24193debd4a380604afacdfa8fb4405b00c34bcd (diff)
parentcec5f36e57c4813361045342e231196066db29f3 (diff)
downloadcpython-4c32c23f658bff716c2d677bc13d60c4bc7fba4b.zip
cpython-4c32c23f658bff716c2d677bc13d60c4bc7fba4b.tar.gz
cpython-4c32c23f658bff716c2d677bc13d60c4bc7fba4b.tar.bz2
Merge heads
-rwxr-xr-xMac/BuildScript/build-installer.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/Mac/BuildScript/build-installer.py b/Mac/BuildScript/build-installer.py
index bd0c476..004765a 100755
--- a/Mac/BuildScript/build-installer.py
+++ b/Mac/BuildScript/build-installer.py
@@ -192,7 +192,8 @@ def library_recipes():
LT_10_5 = bool(DEPTARGET < '10.5')
- result.extend([
+ if getVersionTuple() >= (3, 3):
+ result.extend([
dict(
name="XZ 5.0.3",
url="http://tukaani.org/xz/xz-5.0.3.tar.gz",
@@ -201,6 +202,9 @@ def library_recipes():
'--disable-dependency-tracking',
]
),
+ ])
+
+ result.extend([
dict(
name="NCurses 5.9",
url="http://ftp.gnu.org/pub/gnu/ncurses/ncurses-5.9.tar.gz",