summaryrefslogtreecommitdiffstats
path: root/Mac
Commit message (Collapse)AuthorAgeFilesLines
* Another fix for 4-way universal builds, use the right #ifndef guardRonald Oussoren2008-08-122-2/+2
| | | | to detect the OSX 10.5 SDK.
* Fix build issue on OSX 10.4, somehow this wasn't committed before.Ronald Oussoren2008-07-221-2/+2
|
* Last bit of a fix for issue3381 (addon for my patch in r65061)Ronald Oussoren2008-07-181-1/+1
|
* issue #3199: Fix typo in Mac/Makefile.inMark Dickinson2008-06-251-1/+1
|
* This reverts r63675 based on the discussion in this thread:Gregory P. Smith2008-06-0912-49/+49
| | | | | | | http://mail.python.org/pipermail/python-dev/2008-June/079988.html Python 2.6 should stick with PyString_* in its codebase. The PyBytes_* names in the spirit of 3.0 are available via a #define only. See the email thread.
* Fix build issue on OSX 10.4Ronald Oussoren2008-06-063-4/+11
|
* MacOS X: Enable 4-way universal buildsRonald Oussoren2008-06-0535-141/+683
| | | | | | | | | | | | | | | | | | This patch adds a new configure argument on OSX: --with-universal-archs=[32-bit|64-bit|all] When used with the --enable-universalsdk option this controls which CPU architectures are includes in the framework. The default is 32-bit, meaning i386 and ppc. The most useful alternative is 'all', which includes all 4 CPU architectures supported by MacOS X (i386, ppc, x86_64 and ppc64). This includes limited support for the Carbon bindings in 64-bit mode as well, limited because (a) I haven't done extensive testing and (b) a large portion of the Carbon API's aren't available in 64-bit mode anyway. I've also duplicated a feature of Apple's build of python: setting the environment variable 'ARCHFLAGS' controls the '-arch' flags used for building extensions using distutils.
* Renamed PyString to PyBytesChristian Heimes2008-05-2612-54/+54
|
* Make gestaltmodule.c 64-bit safe.Ronald Oussoren2008-05-181-1/+1
|
* Add warnings to and deprecated all those Mac modulesBenjamin Peterson2008-05-126-0/+17
|
* Fix for #1905: PythonLauncher not working correctly on OSX 10.5/LeopardRonald Oussoren2008-05-022-102/+43
| | | | This fixes both Python Launchar and the terminalcommand module.
* Finish fix for issue2573, previous patch was incomplete.Ronald Oussoren2008-05-021-1/+2
|
* Fix for issue #2573: Can't change the framework name on OS X buildsRonald Oussoren2008-05-029-33/+20
| | | | | | | This introduces a new configure option: --with-framework-name=NAME (defaulting to 'Python'). This allows you to install several copies of the Python framework with different names (such as a normal build and a debug build).
* #2503 make singletons compared with "is" not == or !=Benjamin Peterson2008-03-295-12/+12
| | | | Thanks to Wummel for the patch
* Patch #2167 from calvin: Remove unused importsChristian Heimes2008-02-2340-47/+1
|
* Modified PyImport_Import and PyImport_ImportModule to always use absolute ↵Christian Heimes2008-01-031-1/+1
| | | | | | imports by calling __import__ with an explicit level of 0 Added a new API function PyImport_ImportModuleNoBlock. It solves the problem with dead locks when mixing threads and imports
* This "fixes" compilation issues for the Carbon._OSA module on OSX LeopardRonald Oussoren2007-12-051-336/+0
| | | | | | | | by purging bindings to OSA's debug API's. Those APIs we're completely unsupported on OSX 10.4 and are no longer available on OSX 10.5. Note that this patches a generated file. This is somewhat acceptable because regenerating the file is non-trivial and wouldn't use system headers anyway.
* bug #1154: release memory allocated by "es" PyArg_ParseTuple format specifier.Georg Brandl2007-09-123-0/+3
|
* Whitespace changes to make the source more compliant with PEP8 (SF#1589070)Ronald Oussoren2006-11-071-13/+13
|
* Fix a number of typos in strings and comments (sf#1589070)Ronald Oussoren2006-11-071-13/+12
|
* Whitespace normalization.Tim Peters2006-10-181-1/+1
|
* MacOSX: fix permission problem in the generated installerRonald Oussoren2006-10-101-1/+10
|
* MacOSX: add more logic to recognize the correct startup file to patch to theRonald Oussoren2006-10-081-7/+14
| | | | shell profile patching post-install script.
* Fix for bug #1570284Ronald Oussoren2006-10-081-3/+3
|
* Add version number to the link to the python documentation inRonald Oussoren2006-10-081-2/+1
| | | | | /Developer/Documentation/Python, better for users that install multiple versions of python.
* Tweak Mac/Makefile in to ensure that pythonw gets rebuild when the major versionRonald Oussoren2006-09-171-1/+4
| | | | of python changes (2.5 -> 2.6). Bug #1552935.
* Port of revision 51902 in release25-maint to the trunkRonald Oussoren2006-09-172-1/+3
|
* Fix a glaring error and update some version numbers.Ronald Oussoren2006-09-071-12/+8
|
* Updated documentation for the script that builds the OSX installer.Ronald Oussoren2006-08-021-6/+38
|
* This fixes bug #1527397: PythonLauncher runs scripts with the wrong workingRonald Oussoren2006-08-011-3/+18
| | | | | directory. It also fixes a bug where PythonLauncher failed to launch scripts when the scriptname (or the path to the script) contains quotes.
* Make sure the postinstall action that optionally updates the user's profileRonald Oussoren2006-08-011-5/+23
| | | | on MacOS X actually works correctly in all cases.
* Fix bug #1517990: IDLE keybindings on OSXRonald Oussoren2006-07-251-1/+1
| | | | | | | This adds a new key definition for OSX, which is slightly different from the classic mac definition. Also add NEWS item for a couple of bugfixes I added recently.
* Fix for bug #1525447 (renaming to MacOSmodule.c would also work, but notRonald Oussoren2006-07-251-0/+0
| | | | | | | | without causing problems for anyone that is on a case-insensitive filesystem). Setup.py tries to compile the MacOS extension from MacOSmodule.c, while the actual file is named macosmodule.c. This is no problem on the (default) case-insensitive filesystem, but doesn't work on case-sensitive filesystems.
* Add missing Py_DECREF.Thomas Heller2006-07-111-0/+1
|
* Use staticly build copies of zlib and bzip2 to build the OSX installer, thatRonald Oussoren2006-06-271-40/+63
| | | | | | | | | way the resulting binaries have a better change of running on 10.3. This patch also updates the search logic for sleepycat db3/4, without this patch you cannot use a sleepycat build with a non-standard prefix; with this you can (at least on OSX) if you add the prefix to CPPFLAGS/LDFLAGS at configure-time. This change is needed to build the binary installer for OSX.
* Use a path without a double slash to compile the .py files after installationRonald Oussoren2006-06-251-1/+1
| | | | (macosx, binary installer). This fixes bug #1508369 for python 2.5.
* Drop the calldll demo's for macos, calldll isn't present anymore, no needRonald Oussoren2006-06-255-214/+14
| | | | to keep the demo's around.
* MacOSX: Add a message to the first screen of the installer that tellsRonald Oussoren2006-06-221-2/+5
| | | | users how to avoid updates to their shell profile.
* Fix whitespace, there are memory leaks in this module.Neal Norwitz2006-06-161-22/+17
|
* - Change fixapplepython23.py to ensure that it will run with /usr/bin/pythonRonald Oussoren2006-06-112-5/+22
| | | | | on intel macs. - Fix some minor problems in the installer for OSX
* Use configure to substitute the correct prefix instead of hardcodingRonald Oussoren2006-06-111-1/+1
|
* Whitespace normalization.Tim Peters2006-06-072-2/+2
|
* * If BuildApplet.py is used as an applet it starts with a version ofRonald Oussoren2006-06-071-0/+12
| | | | | | | | sys.exutable that isn't usuable on an #!-line. That results in generated applets that don't actually work. Work around this problem by resetting sys.executable. * argvemulator.py didn't work on intel macs. This patch fixes this (bug #1491468)
* - Patch the correct version of python in the Info.plists at build time, insteadRonald Oussoren2006-06-074-10/+18
| | | | | of relying on a maintainer to update them before releases. - Remove the now empty Mac/OSX directory
* And the last bit: move IDLE one level up and adjust makefilesRonald Oussoren2006-06-075-0/+303
|
* Move Mac/OSX/* one level upRonald Oussoren2006-06-07101-4042/+25
|
* mv Mac/OSX/BuildScript one level upRonald Oussoren2006-06-079-0/+1261
|
* Move Mac/OSX/PythonLauncher one level upRonald Oussoren2006-06-0724-0/+1372
|
* Move Mac/OSX/Tools one level upRonald Oussoren2006-06-0710-0/+1046
|
* A quick hack to ensure the right key-bindings for IDLE on osx: install patchedRonald Oussoren2006-06-063-1/+170
| | | | configuration files during a framework install.