summaryrefslogtreecommitdiffstats
path: root/Mac/Modules/config.c
Commit message (Collapse)AuthorAgeFilesLines
* I give in (after all these years): renaming config.c to macconfig.c to forestallJack Jansen1998-08-181-280/+0
| | | | the continuous name conflicts which cause the wrong config.c to be found.
* The init routine for MacOS had a non-standard name. Changed toJack Jansen1998-07-011-2/+2
| | | | initMacOS().
* Added ColorPicker and Printing modules, donated by Just. In config.cJack Jansen1998-04-211-0/+4
| | | | they're dependent on the WITH_TOOLBOX define.
* Removed reopJack Jansen1998-04-171-2/+0
|
* Added SndihooksJack Jansen1998-04-151-0/+2
|
* Added cPickle and cStringIOJack Jansen1998-01-061-0/+7
|
* Added pcre moduleJack Jansen1997-10-081-0/+2
|
* Added interface to the Balloon Help ManagerJack Jansen1997-09-091-0/+2
|
* Added reopJack Jansen1997-08-191-0/+2
|
* Added zlib (optional on USE_ZLIB)Jack Jansen1997-06-031-0/+6
|
* RenamedJack Jansen1997-05-231-1/+1
|
* Added operator, errno and soundex modules.Jack Jansen1997-02-201-1/+7
|
* Added/updated copyright noticesJack Jansen1997-01-311-2/+2
| | | | (and the &*^$%@ resource files got binhexed again, sigh)
* Added imgpngJack Jansen1997-01-301-0/+2
|
* Added gdbm (if USE_GDBM defined)Jack Jansen1996-12-231-0/+6
|
* - Renamed USE_BGEN to USE_TOOLBOXJack Jansen1996-08-201-6/+10
| | | | | - Moved Qt and Cm out of toolbox into private library (so people without QuickTime can install PPC Python)
* inittab is a "struct _inittab".Jack Jansen1996-07-101-4/+1
|
* Added wasteJack Jansen1996-05-201-0/+6
|
* Added scrap managerJack Jansen1996-04-121-0/+4
|
* Modified for GUSIJack Jansen1996-02-141-0/+8
|
* Added cmath moduleJack Jansen1996-01-291-0/+6
|
* Added Fm moduleJack Jansen1996-01-151-0/+2
|
* Added component mgr and quicktime modulesJack Jansen1995-12-091-0/+5
|
* Added _tkinter, if USE_TK definedJack Jansen1995-11-101-1/+6
|
* Added missing imgpbm and imgsgi modulesJack Jansen1995-10-121-0/+4
|
* Added List moduleJack Jansen1995-08-311-0/+2
|
* Lots of stuff removed: gone to various other files.Jack Jansen1995-08-141-233/+3
|
* re-enabled newmoduleJack Jansen1995-08-091-4/+0
|
* Added binasciiJack Jansen1995-08-071-0/+2
|
* - Added getplatform()Jack Jansen1995-07-281-0/+9
| | | | - (temporarily?) removed newmodule reference
* Initial port to CodeWarrior CFM68K support (mainly by disablingJack Jansen1995-06-271-1/+5
| | | | unsupported features).
* Obtain path from a resource (unless USE_BUILTIN_PATH is #defined)Jack Jansen1995-06-181-2/+9
|
* Added USE_* ifdefs for a couple of optional modules.Jack Jansen1995-06-141-9/+22
|
* Added img stuff (within #ifdef, so they're easy to remove)Jack Jansen1995-06-031-0/+23
|
* all bgen modules now work with MWerksGuido van Rossum1995-02-271-4/+0
|
* MAde a few things more orthogonal and did some cleanups:Jack Jansen1995-02-241-12/+7
| | | | | | | | - 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.
* changed ifdefs and comments -- more modules are goodGuido van Rossum1995-02-211-11/+5
|
* Some more modules temp excluded in mwerks, and a comment fix.Jack Jansen1995-02-201-1/+8
|
* added imp; forget ctb and math for __SC__ (for now)Guido van Rossum1995-02-181-5/+11
|
* ported to Think CGuido van Rossum1995-02-141-0/+15
|
* Some of Guido's bgen modules aren't think-only anymoreJack Jansen1995-02-131-0/+3
|
* added QuickDrawGuido van Rossum1995-02-131-2/+2
|
* Use PyMac_GetPythonDir() to obtain python homedirJack Jansen1995-02-131-5/+4
| | | | fileargument moved here from macmain.c
* split PATH over multiple lines for clarity;Guido van Rossum1995-01-251-1/+20
| | | | added some generated modules
* added Res moduleGuido van Rossum1995-01-221-0/+2
|
* Removed imgformat referenceJack Jansen1995-01-221-1/+0
|
* renamed Get routines to PyMac_Get; added macfs to config.cGuido van Rossum1995-01-211-2/+2
|
* ported Jacks changes back to think CGuido van Rossum1995-01-181-2/+10
|
* 1995 copyrightGuido van Rossum1995-01-081-2/+2
|
* - PYTHONPATH is now \n-separated, so you can have directories withJack Jansen1994-12-141-2/+75
| | | | | | | | | | | | spaces in the name. - If you run python with a script the working directory is now the directory where the script lives (was: directory where python application lives). sys.path will include current dir, application dir and Lib, etc. relative to application dir. This is more like unix python does things and more useful besides (since you can easily import files living in the same directory as the importer). - Added the macconsole, ctb, macspeech, macdnr and mactcp modules. - For MW compiler, put 68K/PPC indication in version string.