summaryrefslogtreecommitdiffstats
path: root/Mac/Include
Commit message (Collapse)AuthorAgeFilesLines
* Got rid of macglue.h, moved the little bit that remains relevantJack Jansen2003-11-201-39/+0
| | | | to pymactoolbox.h (where it should have been in the first place).
* No longer used.Jack Jansen2003-11-201-183/+0
|
* Getting rid of all the code inside #ifdef macintosh too.Jack Jansen2003-11-201-48/+0
|
* Getting rid of code conditional on TARGET_API_MAC_*.Jack Jansen2003-11-191-48/+0
|
* Getting rid of support for MacOS9 and earlier. This is the first step,Jack Jansen2003-11-194-870/+0
| | | | | and the biggest in size, but probably the easiest. Hunting through the source code comes next.
* Checking mac-specific stuff from the 2.3a2 branch in on the trunk.Jack Jansen2003-02-211-1/+1
|
* Merging the various tweaks for MacPython-OS9 2.3a1 back into the trunk.Jack Jansen2003-01-081-1/+1
|
* Got rid of outdated defines.Jack Jansen2002-12-141-12/+0
|
* Getting rid of pre-Carbon (MacOS8) support. All code depending onJack Jansen2002-12-121-6/+0
| | | | | | TARGET_API_MAC_OS8 (or !TARGET_API_MAC_CARBON) is gone. Also some TARGET_API_MAC_OSX conditional code is gone, because it is no longer used on OSX-only Python (only in MacPython-OS9).
* Fixed typo spotted by Whomas Touters.Jack Jansen2002-09-101-1/+1
|
* Added include guards and C++ extern "C" {} constructs. Partial fix for #607253.Jack Jansen2002-09-104-1/+37
| | | | Bugfix candidate.
* Define WITH_PYMALLOC as 1Jack Jansen2002-07-081-1/+1
|
* - Got rid if WITH_CYCLE_GCJack Jansen2002-07-071-3/+0
| | | | | - Cleaned up Python banner string, so the normal build for MacPython 2.3 will have a short banner.
* - Got rid of newmodule.cJack Jansen2002-06-201-1/+1
| | | | - These are the final projects that support classic.
* Patch #568235: Add posix.setpgid.Martin v. Löwis2002-06-131-0/+3
|
* Patch #505375: Make doc strings optional.Martin v. Löwis2002-06-091-0/+3
|
* Enable WITH_PYMALLOC.Jack Jansen2002-05-221-1/+1
|
* Enable universal newline support for MacPython.Jack Jansen2002-04-141-0/+3
|
* Got rid of ifdefs for long-obsolete GUSI versions and other lurkers.Jack Jansen2002-04-111-6/+0
|
* Got rid of ifdefs for long-obsolete GUSI versions.Jack Jansen2002-04-111-1/+1
|
* Merging changes from release22-branch.Jack Jansen2001-12-271-1/+1
|
* Applying r22c1 branch mods back to the trunk.Jack Jansen2001-12-201-1/+1
|
* We have strdup(), but not its prototype:-(Jack Jansen2001-12-142-3/+1
|
* Merged changes made on r22b2-branch between r22b2 and r22b2-mac (theJack Jansen2001-11-301-1/+1
| | | | changes from start of branch upto r22b2 were already merged, of course).
* Enabled WITH_LONG_LONG. No reason it was disabled, it has been supported by ↵Jack Jansen2001-11-061-2/+2
| | | | the Metrowerks compiler for quite some time.
* Tweaks for MacPython 2.2b1Jack Jansen2001-10-231-1/+1
|
* Added declarations for PyMac_SetConsoleHandler, PyMan_DUmmyReadHandlerJack Jansen2001-10-081-0/+19
| | | | and PyMac_DummyWriteHandler.
* Replaced PyMac_FullPath by PyMac_FullPathname, which has an extra 'length'Jack Jansen2001-09-101-1/+0
| | | | | | parameter for the return string (as unix pathnames are not limited by the 255 char pstring limit). Implemented the function for MachO-Python, where it returns unix pathnames.
* Final tweaks for 2.2a3 distribution.Jack Jansen2001-09-081-1/+1
|
* Added glue routine for PyMac_BuildFSSpec, PyMac_GetFSRef and PyMac_BuildFSRef.Jack Jansen2001-09-011-7/+0
| | | | Moved the declarations to pymactoolbox.h.
* Added preferences/startup options for division warningJack Jansen2001-09-011-1/+6
| | | | and accepting unix-style newlines on input.
* The MacOS toolbox modules have acquired an _ in front of their name. Normal ↵Jack Jansen2001-08-231-1/+1
| | | | usage is through a wrapper module (without underscore) which lives in the Carbon package.
* Split macglue.c into two: a new mactoolboxglue.c (in ./Python)Jack Jansen2001-08-082-149/+2
| | | | | | | | | | | | with functionality needed for both unix-Python and MacPython and a new smaller ./Mac/Python/macglue.c which contains MacPython stuff only. pymactoolbox.h has moved to ./Include from ./Mac/Include and now also contains the relevant stuff from macglue.h. The net effect of this is that the ./Mac subdirectory is not needed anymore for building the unix-Python core on MacOSX (it is needed for building the extension modules).
* Got rid of 68k-Mac and other outdated ifdefs.Jack Jansen2001-08-071-5/+0
|
* Bit another bullet: all toolbox modules are now in dynamically loaded ↵Jack Jansen2001-08-071-1/+1
| | | | modules. Everything still seems to work, but the ConfigurePythonXXX on initial install may still need work.
* Bit the bullet and enabled garbage collection (finally).Jack Jansen2001-08-071-4/+43
| | | | Also updated pyconfig.h to the current state of pyconfig.h.in.
* PyMac_GetFSSpec must be called via the dylib glue code on OSX.Jack Jansen2001-08-031-0/+3
|
* Merging appropriate 2.1.1 fixes back into the main trunk.Jack Jansen2001-08-032-1/+4
|
* config.h renamed to pyconfig.hJack Jansen2001-07-271-0/+0
|
* Implemented minimal FSRef support, plus conversion between FSRefs, FSSpecs ↵Jack Jansen2001-07-081-3/+8
| | | | | | | | and pathnames where applicable. PyMac_GetFSSpec and PyMac_BuildFSSpec have moved to macfsmodule from macglue. These mods are untested on OSX.
* Added the new unicode defines. Not really tested yet, but Python compiles ↵Jack Jansen2001-07-021-0/+9
| | | | again at least.
* Updated to reflect the current state of config.h.in.Jack Jansen2001-05-231-7/+10
|
* Include Carbon/Carbon.h if appropriate.Jack Jansen2001-05-221-5/+5
| | | | Fixed glue initialization code so prototype is correct.
* include Carbon/Carbon.h in stead of universal headers, if appropriate.Jack Jansen2001-05-192-0/+9
|
* Glue code to connect obj_New and obj_Convert routines (the PyArg_Parse and ↵Jack Jansen2001-05-171-6/+23
| | | | Py_BuildTuple helpers) from one dynamically imported module to another.
* Got the first MacPython module working under MacOSX/MachO (gestalt). Main ↵Jack Jansen2001-05-121-3/+10
| | | | | | | | changes are including Carbon/Carbon.h in stead of the old headers (unless WITHOUT_FRAMEWORKS is defined, as it will be for classic MacPython) and selectively disabling all the stuff that is unneeded in a unix-Python (event handling, etc).
* Be more sensible about when to use TARGET_API_MAC_OS8 in stead of ↵Jack Jansen2001-05-121-2/+2
| | | | !TARGET_API_MAC_CARBON. This should greatly facilitate porting stuff to OSX in its MachO/BSD incarnation.
* - Raise console window on input. Fixes Carbon hang.Jack Jansen2001-04-252-1/+2
|
* Updated for 2.1b2 distribution.Jack Jansen2001-03-271-1/+1
|
* Files for second 2.1b1 distribution.Jack Jansen2001-03-151-1/+1
|