summaryrefslogtreecommitdiffstats
path: root/Mac/Include
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* Don't declare sync if we use gusi.Jack Jansen2000-07-141-0/+2
|
* Got rid of __SC__ ifdefs.Jack Jansen2000-07-111-4/+0
|
* ANSIfication step 2: make sure all needed prototypes are available, and all ↵Jack Jansen2000-07-112-4/+21
| | | | | | needed header files included.
* ANSIfication step 1: get rid of Py_PROTO and Py_FPROTO.Jack Jansen2000-07-113-13/+13
|
* PyMac_FindModuleExtension now uses a size_t as its size parameter for ↵Jack Jansen2000-07-031-1/+1
| | | | compatibility.
* Removed THINK_C support.Jack Jansen2000-06-043-11/+2
|
* Removed hfsrunning() macro. This means MacPython won't run on MacOS 5 (oops, ↵Jack Jansen2000-06-021-3/+0
| | | | System 5) or earlier anymore:-)
* Fixed to work again without USE_GUSI and with USE_MSL_MALLOCJack Jansen2000-05-121-0/+12
|
* Changed for the new preference resource version.Jack Jansen2000-05-071-4/+6
|
* Made the GUSI options work again with GUSI 2.Jack Jansen2000-04-211-0/+4
|
* Started on GUSI2 and threading support.Jack Jansen2000-04-071-2/+3
|
* Ready for 1.6a1. Reordered the defines to be in line with config.h.in again, ↵Jack Jansen2000-04-071-187/+422
| | | | so tracking the new defines will be easier in future.
* Added PyMac_BuildOptStr255, which returns None on a null pointer.Jack Jansen1999-12-171-0/+1
|
* First bits and pieces of appearance support: an init routine, a global flag ↵Jack Jansen1999-12-072-13/+16
| | | | | | PyMac_AppearanceCompliant (exported thru MacOS). If USE_APPEARANCE is off the code is disabled (but the variables are still there, set to 0).
* Added HAVE_LIMITS_H, MAVE_MEMMOVE, HAVE_STRERROR, HAVE_LOCALE_HJack Jansen1999-11-051-1/+5
| | | | | since we have these in the current CW release (and probably already had them quite some time, but never added the defines).