summaryrefslogtreecommitdiffstats
path: root/Include/pymacconfig.h
Commit message (Collapse)AuthorAgeFilesLines
* Fix some spelling errorsMartin Panter2016-08-201-2/+2
|
* Issue #27171: Fix typos in documentation, code comments, and testsMartin Panter2016-06-021-1/+1
|
* #11565: Fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-161-1/+1
|
* Untabify C files. Will watch buildbots.Antoine Pitrou2010-05-091-38/+38
|
* Fix for issue 7452: HAVE_GCC_ASM_FOR_X87 gets set when doing a universal ↵Ronald Oussoren2009-12-081-0/+5
| | | | | | | build on an i386 based machine, but should only be active when compiling the x86 part of the universal binary.
* Fix for issue #7416: SIZEOF_UINTPTR_T can be invalid when configuring aRonald Oussoren2009-12-011-0/+6
| | | | | | | | | | multi-architecture build (in particular when the architectures don't share a common pointer size). Fixed the same issue for SIZEOF_PTHREAD_T. (No update to the NEWS file because this is a bugfix for an as yet unreleased feature)
* Issue #7117 (backport py3k float repr) continued:Mark Dickinson2009-10-241-0/+6
| | | | | | | | | - add double endianness detection to configure script - add configure-time check to see whether we can use inline assembly to get and set x87 control word in configure script - add functions to get and set x87 control word in Python/pymath.c - add pyport.h logic to determine whether it's safe to use the short float repr or not
* Fix for issue5657.Ronald Oussoren2009-04-191-0/+12
|
* fix WORD_BIGEDIAN declaration in Universal builds; fixes #4060 and #4728Benjamin Peterson2008-12-281-0/+14
|
* MacOS X: Enable 4-way universal buildsRonald Oussoren2008-06-051-0/+59
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.