summaryrefslogtreecommitdiffstats
path: root/Mac
Commit message (Collapse)AuthorAgeFilesLines
* Add references for Xcode and the Python Developer's GuideNed Deily2014-02-121-0/+7
| | | | to the internal Mac/README file.
* Issue #19936: Remove executable bits from C source files and several forgottenSerhiy Storchaka2014-01-165-0/+0
| | | | test files.
* Issue #19936: Added executable bits or shebang lines to Python scripts whichSerhiy Storchaka2014-01-161-0/+0
| | | | | | | requires them. Disable executable bits and shebang lines in test and benchmark files in order to prevent using a random system python, and in source files of modules which don't provide command line interface. Fixed shebang line to use python3 executable in the unittestgui script.
* Update copyright dates in Mac plists.Ned Deily2014-01-014-7/+7
|
* Issue #15663: Revert OS X installer built-in Tcl/Tk support for 3.3.3.Ned Deily2013-11-054-52/+20
| | | | | | | Some third-party projects, such as matplotlib and PIL/Pillow, depended on being able to build with Tcl and Tk frameworks in /Library/Frameworks. They were unable to build with the built-in Tcl/Tk and/or execute correctly.
* Issue #19373: Apply upstream change to Tk 8.5.15 fixing OS X 10.9Ned Deily2013-10-282-2/+19
| | | | screen refresh problem.
* Issue #15663: Force IDLE.app to run the GUI process in 32-bit mode.Ned Deily2013-10-272-1/+7
| | | | | This mitigates the current Aqua Tk refresh problem on OS X 10.9 by backporting 2.7.x behavior and is transparent to the user.
* Issue #15663: OS X installer builtin Tcl/Tk supportNed Deily2013-10-262-19/+51
| | | | | | | | | | Make it easier for users to make use of the backup _tkinter linked with the third-party Tcl and Tk frameworks in /Library/Frameworks. The two tkinter variants are now installed in separate directories under a new lib-tkinter. This allows per-user selection by manipulating sys.path, directly or with PYTHONPATH. If this proves useful, we can supply a more convenient user interface to supply the paths. For now, this remains somewhat experimental.
* Sync 2.7.x, 3.3.x, and 3.4.x versions of OS X build-installer.py.Ned Deily2013-10-251-8/+48
|
* Issue #19019: Change the OS X installer build script to use CFLAGS insteadNed Deily2013-10-251-1/+1
| | | | | | of OPT for special build options. By setting OPT, some compiler-specific options like -fwrapv were overridden and thus not used, which could result in broken interpreters when building with clang.
* Issue #15663: Tcl/Tk 8.5.15 is now included with the OS X 10.6+Ned Deily2013-10-254-27/+144
| | | | | | | 64-bit/32-bit installer for 10.6+. It is no longer necessary to install a third-party version of Tcl/Tk 8.5 to work around the problems in the Apple-supplied Tcl/Tk 8.5 shipped in OS X 10.6 and later releases.
* Update OS X installer for building on 10.9.Ned Deily2013-10-191-0/+1
|
* #18803: fix more typos. Patch by Févry Thibault.Ezio Melotti2013-08-251-2/+2
|
* Issue #18377: Code cleanup in Python LauncherRonald Oussoren2013-07-078-95/+77
| | | | | This changeset fixes a number of compiler warnings in the Python Launcher binary for OSX. It also cleans up whitespace usage in those sources.
* Issue #12990: The "Python Launcher" on OSX could not launch python scripts ↵Ronald Oussoren2013-07-061-1/+1
| | | | that have paths that include wide characters.
* Merge with 3.2: Issue #17047: removed doubled words in Doc/*,Terry Jan Reedy2013-03-111-1/+1
|\ | | | | | | Mac/*, and Tool/* found by Serhiy Storchaka and Matthew Barnett
| * Issue #17047: removed doubled words in Doc/*, Mac/*, and Tool/*Terry Jan Reedy2013-03-111-1/+1
| | | | | | | | found by Serhiy Storchaka and Matthew Barnett
* | Issue #15587: merge from 3.2Ned Deily2013-02-022-0/+4
|\ \ | |/
| * Issue #15587: Enable Tk high-resolution text rendering on Macs withNed Deily2013-02-022-0/+4
| | | | | | | | | | | | Retina displays. Applies to Tkinter apps, such as IDLE, on OS X framework builds linked with Cocoa Tk 8.5+. Suggested by Kevin Walzer
* | Issue #16256: merge from 3.2Ned Deily2013-02-011-1/+1
|\ \ | |/
| * Issue #16256: OS X installer now sets correct permissions for doc directory.Ned Deily2013-02-011-1/+1
| |
* | Issue #14018: merge to 3.3Ned Deily2013-01-291-1/+5
|\ \ | |/
| * Issue #14018: Backport OS X installer updates from 3.3.Ned Deily2013-01-299-422/+412
| |
* | Update copyright dates in Mac plists.Ned Deily2013-01-014-7/+7
|\ \ | |/
| * Update copyright dates in Mac plists.Ned Deily2013-01-014-7/+7
| |
* | Update various OS X README files for 3.3.0.Ned Deily2012-08-254-59/+163
| |
* | Issue #15037: Use correct path to system terminfo database.Ned Deily2012-08-241-2/+0
| |
* | Issue #14292: Ensure that the OS X installer build configures the CXXNed Deily2012-08-231-13/+15
| | | | | | | | | | | | environment variable to a value comparable to what it sets for CC for the benefit of C++ extension modules. (Patch by Ronald Oussoren)
* | Issue #15560: Ensure consistent sqlite3 behavior and feature availabilityNed Deily2012-08-071-24/+27
| | | | | | | | | | by building a local copy of libsqlite3 with OS X installers rather than depending on the wide range of versions supplied with various OS X releases.
* | Issue #15037: Build OS X installers with local copy of ncurses 5.9 librariesNed Deily2012-08-062-105/+89
| | | | | | | | | | to avoid curses.unget_wch bug present in older versions of ncurses such as those shipped with OS X.
* | OS X installer cleanups:Ned Deily2012-08-062-7/+27
| | | | | | | | | | | | | | | | - Remove OS X installer and Mac/Makefile dependencies on /Developer which no longer exists with Xcode 4; the referenced tools have been installed into the usr/bin tool root since Xcode 3. - Support adding the SDK usr/bin tool root to the installer's PATH via the SDK_TOOLS_BIN environment variable.
* | Issue #14018: Fix OS X Tcl/Tk framework checking when using OS X SDKs.Ned Deily2012-07-301-12/+45
| | | | | | | | | | | | Also add tests in the OS X installer build to ensure that the desired dynamic linking with an optional newer Tcl/Tk in /Library actually happens.
* | Issue #15188: Prevent test_ldshared_value failure due to slightlyNed Deily2012-07-221-2/+2
| | | | | | | | | | | | | | | | | | different parsing of the Makefile by distutils.sysconfig and sysconfig in the case when an intermediate config vars, used to construct PY_CFLAGS or PY_LDFLAGS, has a trailing space character. In this case, the OS X installer build script was leaving a trailing space in the OPT and LDFLAGS config vars. The space is not significant and it's not worth toying with the Makefile parsing.
* | Issue #15188: Modify the OS X build_installer script to remove temporaryNed Deily2012-07-211-12/+19
| | | | | | | | | | | | build paths from configuration variables cached in _sysconfigdata.py, as is already done for the installed Makefile. This avoids a distuils test case failure in test_ldshared_value.
* | Closes #15307: symlinks now work on OS X with framework Python builds. ↵Vinay Sajip2012-07-171-2/+38
| | | | | | | | Patch by Ronald Oussoren.
* | Closes #15173: Tidied up copyright statements and removed pythonv references.Vinay Sajip2012-06-241-1/+1
| |
* | Update OS X installer build target compilers.Ned Deily2012-06-241-1/+3
| |
* | Update compileall calls in OS X installer postflight script toNed Deily2012-06-242-11/+12
| | | | | | | | | | | | | | properly skip uncompilable files and to compile existing files in site-packages if reinstalling. Also, no longer attempt to install a documentation link in /Developer as that no longer necessarily exists with Xcode 4.3+.
* | Remove obsolete fixapplepython23 script and PythonSystemFixesNed Deily2012-06-243-143/+3
| | | | | | | | | | | | installer package from the OS X Makefile for Python 3. It has never worked on Python 3 and is not needed there as pre-10.3.9 installs are no longer supported.
* | Update OS X installer build script to be Python 3 compatible.Ned Deily2010-11-281-64/+88
| | | | | | | | | | | | Builds are not yet fully supported on Python 3 as some parts of the build process (like the documentation build chain) are still dependent on Python 2.
* | Issue #13590: Improve support for OS X Xcode 4:Ned Deily2012-06-241-67/+106
| | | | | | | | * update README
* | Implemented PEP 405 (Python virtual environments).Vinay Sajip2012-05-262-2/+14
| |
* | Issue #13507: OS X installer builds now build liblzma for the newNed Deily2012-04-011-0/+11
|/ | | | lzma module. (Patch by Nicholas Riley)
* Issue #14346: Fix some typos in the Mac/README file.Ned Deily2012-03-171-5/+5
| | | | (Patch by Dionysios Kalofonos)
* Update copyright dates in Mac plists.Ned Deily2012-01-014-7/+7
|
* Issue #11217: For 64-bit/32-bit Mac OS X universal framework builds,Ned Deily2011-05-281-0/+13
| | | | | ensure "make install" creates symlinks in --prefix bin for the "-32" files in the framework bin directory like the installer does.
* #11565: Merge with 3.1.Ezio Melotti2011-03-161-1/+1
|\
| * #11565: Fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-161-1/+1
| |
* | #11515: Merge with 3.1.Ezio Melotti2011-03-152-3/+3
|\ \ | |/
| * #11515: fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-151-1/+1
| |