summaryrefslogtreecommitdiffstats
path: root/Mac
Commit message (Collapse)AuthorAgeFilesLines
* Oops, WaitNextEvent was hand-coded, and it also needed the h->H conversion ↵Jack Jansen2000-07-242-2/+2
| | | | for PyArg_ParseTuple format strings.
* Added more prototypes.Jack Jansen2000-07-243-6/+10
|
* Added PyMac_getscript() which returns the pythonic name of the current ↵Jack Jansen2000-07-241-0/+34
| | | | script. Not ideal and not complete, but good enough for the time being. Idea and most of the code by Fredrik Lund.
* Declare fileno() with prototype if USE_GUSI2 defined. This isn't really the ↵Jack Jansen2000-07-242-0/+10
| | | | right place, but it will have to do for now.
* If any of the builds in a group fails offer to stop the fullbuild process ↵Jack Jansen2000-07-241-0/+9
| | | | and open the failing projects in codewarrior.
* Added a "compile-time" flag PPC_ONLY, if set we make ppc-only applications ↵Jack Jansen2000-07-241-0/+5
| | | | without posting the dialog. This is the normal situation since 1.6alfa (no more 68k support).
* Put in an earlier include of sys/signal.h (within ifdef USE_GUSI) to ↵Jack Jansen2000-07-242-0/+8
| | | | forestal a multiple define.
* Don't call BringToFront() on the dialog object, but call GetDialogWindow() ↵Jack Jansen2000-07-241-3/+3
| | | | to get a window object.
* 'carb' resource for carbon application.Jack Jansen2000-07-181-0/+15
|
* Some thanks weren't checked in yet.Jack Jansen2000-07-181-2/+2
|
* MacPython on MacOSX DP4 gets started in the wrong directory. The workaround ↵Jack Jansen2000-07-182-1/+17
| | | | (ifdeffed by USE_ARGV0_CHDIR) is to do a chdir() to the folder part of our executable name.
* Define USE_GUSI if USE_GUSI1 or USE_GUSI2 is defined.Jack Jansen2000-07-181-0/+3
|
* Got rid of obsolete HAVE_UNIVERSAL_HEADERS test and SystemSevenOrLater define.Jack Jansen2000-07-149-83/+0
|
* Test for TARGET_API_MAC_CARBON with #if in stead of #ifdef.Jack Jansen2000-07-1444-223/+223
|
* include stdio.h for sprintf prototype.Jack Jansen2000-07-141-0/+1
|
* pymactoolbox.h contains protoypes for all externally visible toolbox moduleJack Jansen2000-07-1445-916/+244
| | | | | functions. Include it in stead of duplicating the declarations everywhere. Also cleaned up toolbox module exports, and got rid of resNotFound error.
* include macdefs.h for declaration of getwd, if non-gusi python.Jack Jansen2000-07-141-0/+1
|
* PyMac_PromptGetFile and PyMac_GetDirectory don't exist in carbonpython.Jack Jansen2000-07-142-5/+4
|
* Don't declare sync if we use gusi.Jack Jansen2000-07-141-0/+2
|
* Got rid of __SC__ ifdefs.Jack Jansen2000-07-113-12/+0
|
* Removed guesstabsize.c, which is obsolete.Jack Jansen2000-07-112-63/+0
|
* - Removed guesstabsize.c, which is obsolete.Jack Jansen2000-07-111-0/+0
| | | | - ANSIfication step 3: enable "require prototypes" flags. Still lots of warnings, mainly on init routines and bgen stuff.
* ANSIfication step 2: make sure all needed prototypes are available, and all ↵Jack Jansen2000-07-1119-41/+83
| | | | | | needed header files included.
* Added a declaration of fileno() if we use GUSI. Not sure whether it should ↵Jack Jansen2000-07-111-0/+5
| | | | go here or in pyport.h really...
* Fiddled declaration/implementation of setcallback() so that it is ansifyable.Jack Jansen2000-07-112-8/+16
|
* ANSIfication step 1: get rid of Py_PROTO and Py_FPROTO.Jack Jansen2000-07-116-33/+33
|
* So many things have changed over the last few weeks that it's probably a ↵Jack Jansen2000-07-0730-10/+24
| | | | good idea to check the project files in again.
* Changed all (hopefully) uses of unsigned 16 bit value to use H format ↵Jack Jansen2000-07-0723-86/+86
| | | | specifier, now that h is signed-only.
* Added the unchash module.Jack Jansen2000-07-073-2/+3
|
* Evt moved to the core toolbox modules.Jack Jansen2000-07-042-1/+0
|
* PyMac_FindModuleExtension now uses a size_t as its size parameter for ↵Jack Jansen2000-07-032-2/+2
| | | | compatibility.
* a minimal test app to show how to build a standalone app with WJust van Rossum2000-07-011-0/+20
|
* added clearkey = '\033'Just van Rossum2000-07-011-1/+1
|
* fixed bug in comment matchingJust van Rossum2000-07-011-3/+3
|
* added ucnhash (optional on USE_UCNHASH) and the mysteriously disappeared math.Jack Jansen2000-06-281-1/+7
|
* ucnhash and various other modules added.Jack Jansen2000-06-282-0/+0
|
* Added USE_UCNHASH (experimental, I hope it can go), USE_TOOLBOX and USE_QT.Jack Jansen2000-06-281-3/+4
|
* Added USE_UCNHASH (experimental, I hope it can go)Jack Jansen2000-06-281-0/+1
|
* All relevant toolbox modules have now been carbonized.Jack Jansen2000-06-2125-15/+170
|
* Added an optional debug handler that traps and prints all unknown appleevents.Jack Jansen2000-06-2013-13/+24
|
* Replaced OpenResFile calls with FSpOpenResFile calls (which are ↵Jack Jansen2000-06-2014-21/+21
| | | | carbon-compatible).
* Made to work under carbon.Jack Jansen2000-06-203-2/+44
|
* Under carbon use the GetQDGlobalxxx methods to implement Qd.qd.member access.Jack Jansen2000-06-202-0/+84
|
* Made argc/argv processing work again under carbon.Jack Jansen2000-06-201-2/+2
|
* Oops, default type and creator were reversed.Jack Jansen2000-06-141-1/+1
|
* Also add a one-line description of the "optional" directive.Jack Jansen2000-06-131-0/+1
|
* Added _localemodule and exceptions.cJack Jansen2000-06-071-0/+0
|
* Added _localemodule.Jack Jansen2000-06-071-0/+0
|
* Nav removed (it has moved to the core toolbox modules).Jack Jansen2000-06-071-4/+0
|
* Nav and AE have been moved to core toolbox modules: fixup dependent modules, ↵Jack Jansen2000-06-077-30/+46
| | | | export symbol list, etc.