summaryrefslogtreecommitdiffstats
path: root/Mac/Python/macapplication.c
Commit message (Collapse)AuthorAgeFilesLines
* Getting rid of support for MacOS9 and earlier. This is the first step,Jack Jansen2003-11-191-83/+0
| | | | | and the biggest in size, but probably the easiest. Hunting through the source code comes next.
* Got rid of 68k-Mac and other outdated ifdefs.Jack Jansen2001-08-071-4/+0
|
* ANSIfication step 2: make sure all needed prototypes are available, and all ↵Jack Jansen2000-07-111-2/+4
| | | | | | needed header files included.
* Added initializer routine optionally to be used as PEF fragment ↵Jack Jansen2000-01-071-0/+34
| | | | initialization routine, which allows us to get at our own resource fork even if some shared library init routine opens other resource files.
* Put the applet code inside USE_MAC_APPLET_SUPPORT ifdefs, to make 68k ↵Jack Jansen1999-02-151-0/+6
| | | | standalone Python compile.
* (finally) unified the interpreter and the applet as Just suggested ages ago. TheJack Jansen1999-02-151-3/+12
| | | | resulting program is called PythonInterpreter.
* Added/updated copyright noticesJack Jansen1997-01-311-1/+1
| | | | (and the &*^$%@ resource files got binhexed again, sigh)
* Removed debug printfJack Jansen1996-08-191-3/+1
|
* - Reorganized init codeJack Jansen1996-02-281-3/+0
| | | | - Fixed serious bug in code to get options from a resource
* Modified for GUSIJack Jansen1996-02-141-2/+2
|
* Initialize GUSI for MacTkPythonJack Jansen1995-11-141-0/+3
|
* Initial port to CodeWarrior CFM68K support (mainly by disablingJack Jansen1995-06-271-1/+4
| | | | unsupported features).
* MAde a few things more orthogonal and did some cleanups:Jack Jansen1995-02-241-0/+35
- Applications now have their (minimal) main prrogram in macapplication.c and the rest of the init code in macglue.c. - A new define, USE_MAC_APPLET_SUPPORT, independent of USE_MAC_SHARED_LIB - chdir to script directory now done in PyMac_InitApplication.