summaryrefslogtreecommitdiffstats
path: root/Tools/freeze
Commit message (Collapse)AuthorAgeFilesLines
* Minor change for windows; set extensions_c later and setGuido van Rossum1998-07-071-1/+3
| | | | frozendllmain_c at the right place.
* Jonathan Giddy:Guido van Rossum1998-06-121-1/+2
| | | | | This second problem only shows up if LDLAST is not an empty string (such as with threads enabled on DEC Alphas).
* Jonathan Giddy:Guido van Rossum1998-06-121-1/+4
| | | | | The first one only shows up if $prefix != $exec_prefix, and the problem is caused by the recent change in location for config.h.
* Don't die if win32api doesn't exist.Guido van Rossum1998-05-261-1/+6
|
* Additions for Mark Hammond's Win32 specific hacks.Guido van Rossum1998-05-193-0/+398
|
* Add a feature to support specifying an additional search directory forGuido van Rossum1998-05-181-17/+30
| | | | | | packages. (Mark Hammond) Folded some long lines.
* Remove Emacs cruft.Guido van Rossum1998-05-183-12/+0
|
* Add a feature to support specifying an additional search directory forGuido van Rossum1998-05-181-4/+17
| | | | | | packages. (Mark Hammond) Remove Emacs cruft.
* After variable expansion, what was formerly a single word can nowGuido van Rossum1998-05-061-7/+8
| | | | | | contain multiple words, all of which may have to be joined with the path of the extension directory. (Sjoerd)
* Remove Emacs cruft at end.Guido van Rossum1998-05-061-4/+0
|
* Freeze assumes that all built-in modules are part of the Python core.Guido van Rossum1998-04-231-4/+6
| | | | | | | This is not necessarily the case. It is possible to create a Python binary which contains built-in extension modules. Therefore checkextensions should be used for all unknown and builtin modules. (Sjoerd Mullender)
* If freezing with the -O option, the optimized bytecode files areGuido van Rossum1998-04-231-0/+4
| | | | | | used. It is useful to implicitly set the -O flag in the frozen application. (Sjoerd Mullender)
* When using extention modules, relative path names that occur in theGuido van Rossum1998-04-231-0/+2
| | | | | | | Setup file are fixed so that they will work from the freeze build directory. However, relative path names in liner -L and -R options are not fixed in this way. (Sjoerd Mullender)
* Shouldn't import addpack!Guido van Rossum1998-04-201-1/+0
|
* Big changes by Mark Hammond to support freezing with DLLs on Windows.Guido van Rossum1998-03-204-47/+201
|
* Add quotes around some variable definitions; add a "clean" target.Guido van Rossum1998-03-071-5/+10
|
* Adapted to the new situation.Guido van Rossum1998-03-071-39/+71
|
* Rearrange some stuff so that the warning for unknown modules is alsoGuido van Rossum1998-03-071-17/+21
| | | | issued on Windows.
* When writing the Windows Makefile, don't forget to strip some filenamesGuido van Rossum1998-03-071-2/+3
| | | | of their output directory prefix.
* Got rid of the last tab character in this file.Guido van Rossum1998-03-061-1/+1
|
* Always set the __file__ attribute, so dynamic link modules are indicated.Guido van Rossum1998-03-061-1/+1
|
* Fix typo -- -e takes a flag, -h doesn't. Somehow the colon and the hGuido van Rossum1998-03-061-1/+1
| | | | got transposed.
* Unfold some lines that were previously folded but don't need to beGuido van Rossum1998-03-051-7/+12
| | | | | | | | now we're reindented. Remove files before renaming something to them -- for Windows. Change check for Python home directory so it works correct on Windows.
* Reindented, removed tabs.Guido van Rossum1998-03-051-18/+24
| | | | Also added simple "clean" target (removes *.o and executable).
* Oops, bug omission: also scan internal code objects for imports!Guido van Rossum1998-03-051-31/+37
|
* Reindented, removed tabs.Guido van Rossum1998-03-052-312/+320
|
* Some nits...Guido van Rossum1998-03-051-8/+9
| | | | | | | | Add the script directory to the path. Fix the sanity checks on the arguments so they don't mess up the -m option; remove the requirement that the script must have a .py extension.
* Added support for packages.Guido van Rossum1998-03-054-199/+438
| | | | | | | We have a whole new module finder that uses the actual Python parser and scans the bytecode for IMPORT_NAME and IMPORT_FROM. This requires some support in import.c (that hasn't been checked in). New command line options for this: -d, -q, -m.
* Untested changes to make the '-s windows' optionGuido van Rossum1998-03-042-0/+17
| | | | work on Windows.
* Add special handling for Python modules that are imported implicitlyGuido van Rossum1997-12-081-0/+6
| | | | by the Python runtime: 'site' and 'exceptions'.
* os2 patch by Jeff RushGuido van Rossum1997-11-221-1/+2
|
* Add XXX warning about fishy lineGuido van Rossum1997-08-141-0/+1
|
* Added Windows NT instructions.Guido van Rossum1997-08-141-3/+34
|
* Changes for building under windows.Guido van Rossum1997-08-142-9/+87
|
* Changed indents to 4 *spaces*; added Emacs variables to avoidGuido van Rossum1997-08-101-241/+245
| | | | | inserting tabs. All this (and the previous patch) in preparation for porting to NT.
* Support using -p/-P to point to the source/build directory instead ofGuido van Rossum1997-08-101-12/+32
| | | | | the install directory. Added -h option to print the full usage message; by default, only two lines are now printed for errors.
* Updated for new style build/install; much simpler!Guido van Rossum1997-07-192-11/+14
|
* /usr/local/bin/python -> /usr/bin/env pythonGuido van Rossum1996-11-271-1/+1
|
* OK, now it uses sys.[exec_]prefix and supportsGuido van Rossum1996-08-262-131/+68
| | | | | a -o option to specify an output directory. *Much* more convenient. Removed a whole lot of hullabaloo from the README file, too.
* Get rid of it totallyGuido van Rossum1996-08-261-314/+0
|
* Added warning that this is unsupportedGuido van Rossum1996-08-261-0/+2
|
* Changes for 1.4 install targetsGuido van Rossum1996-08-261-6/+5
|
* Add test that script name ends in .py.Guido van Rossum1996-06-171-9/+10
| | | | Cosmetic changes to usage message (refer to "make install" now).
* Get struct _frozen defn from Python.h; new variable names.Guido van Rossum1996-06-171-5/+5
|
* added getpath.c; added -P exec_prefix; added explanatory noteGuido van Rossum1995-08-081-8/+46
|
* removed some harsh words and added some clarificationsGuido van Rossum1995-04-051-21/+30
|
* Jaap V's versionGuido van Rossum1995-04-051-0/+312
|
* backup Makefile tooGuido van Rossum1995-04-051-1/+13
|
* moved Demo/freeze to Tools/freezeGuido van Rossum1995-03-022-4/+4
|
* initial checkinGuido van Rossum1994-10-081-0/+1
|