summaryrefslogtreecommitdiffstats
path: root/Mac/Include
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* Files for 2.1b1 distribution.Jack Jansen2001-03-061-1/+1
|
* 2.1a2 distribution files.Jack Jansen2001-02-171-1/+1
|
* Brought in line with current config.h.in.Jack Jansen2001-02-121-54/+151
|
* Bit the bullet and added a private GUSISIOUX for Python. This makes the ↵Jack Jansen2001-02-112-1/+4
| | | | delayconsole and keepopen code neater. Also tells Sioux to behave better with events, and handles cmd-. during print better. The pythonpreferences have also changed due to this.
* Added prototype for DlgObj_WhichDialog()Jack Jansen2001-02-091-0/+1
|
* Qdoffs now exports the GWorldObj_{New,Convert} functions.Jack Jansen2000-12-121-0/+4
|
* Final version used for 2.0 distribution.Jack Jansen2000-10-221-1/+1
|
* Added PyMac_OutputSeen(), which acknowledges all current output in the stdio ↵Jack Jansen2000-10-191-0/+1
| | | | window, i.e. it acts like input has been read insofar as the keep-console-open option is interested.
* Made options global (as PyMac_options) so macosmodule can access it.Jack Jansen2000-10-131-0/+2
|
* Keepconsole is now a 4-way option: never/errorexit/unseen output/always. ↵Jack Jansen2000-09-222-16/+13
| | | | Default is "unseen output". Upped the Popt version number.
* Added prototype for DlgObj_ConvertToWindow().Jack Jansen2000-08-251-0/+1
|
* Moved PyOS_StackCheck prototype to pythonrun.hJack Jansen2000-08-071-1/+0
|
* Added more prototypes.Jack Jansen2000-07-241-1/+1
|
* Got rid of obsolete HAVE_UNIVERSAL_HEADERS test and SystemSevenOrLater define.Jack Jansen2000-07-141-8/+0
|
* Test for TARGET_API_MAC_CARBON with #if in stead of #ifdef.Jack Jansen2000-07-141-1/+1
|
* pymactoolbox.h contains protoypes for all externally visible toolbox moduleJack Jansen2000-07-141-0/+92
| | | | | functions. Include it in stead of duplicating the declarations everywhere. Also cleaned up toolbox module exports, and got rid of resNotFound error.
* PyMac_PromptGetFile and PyMac_GetDirectory don't exist in carbonpython.Jack Jansen2000-07-141-0/+2
|