[Python-checkins] r67854 - in python/branches/release25-maint: Mac/BuildScript/build-installer.py Misc/NEWS

martin.v.loewis python-checkins at python.org
Fri Dec 19 16:05:39 CET 2008


Author: martin.v.loewis
Date: Fri Dec 19 16:05:38 2008
New Revision: 67854

Log:
Build against system Tcl framework.


Modified:
   python/branches/release25-maint/Mac/BuildScript/build-installer.py
   python/branches/release25-maint/Misc/NEWS

Modified: python/branches/release25-maint/Mac/BuildScript/build-installer.py
==============================================================================
--- python/branches/release25-maint/Mac/BuildScript/build-installer.py	(original)
+++ python/branches/release25-maint/Mac/BuildScript/build-installer.py	Fri Dec 19 16:05:38 2008
@@ -334,13 +334,6 @@
     if os.path.exists('/opt/local'):
         fatal("Detected MacPorts, please remove before building Python")
 
-    if not os.path.exists('/Library/Frameworks/Tcl.framework') or \
-            not os.path.exists('/Library/Frameworks/Tk.framework'):
-
-        fatal("Please install a Universal Tcl/Tk framework in /Library from\n\thttp://tcltkaqua.sourceforge.net/")
-
-
-
 def parseOptions(args = None):
     """
     Parse arguments and update global settings.

Modified: python/branches/release25-maint/Misc/NEWS
==============================================================================
--- python/branches/release25-maint/Misc/NEWS	(original)
+++ python/branches/release25-maint/Misc/NEWS	Fri Dec 19 16:05:38 2008
@@ -14,6 +14,7 @@
 -----
 
 - In the OSX installer, update SQLite to 3.6.7, and change bsddb URL.
+  Build against system Tcl framework.
 
 What's New in Python 2.5.3c1?
 =============================


More information about the Python-checkins mailing list