*** empty log message ***

committer: mfx <mfx> 1049237553 +0000
This commit is contained in:
Markus F.X.J. Oberhumer 2003-04-01 22:52:33 +00:00
parent 8b74704bbf
commit b9b75c536c
3 changed files with 10 additions and 2 deletions

8
NEWS
View File

@ -4,6 +4,14 @@ User visible changes for UPX
[ UNSTABLE BETA VERSION - please see README.1ST for some more info ]
[ WARNING: there are known bugs in the win32/pe format which cause
crashes on a number of exes ]
Changes in 1.91 beta (XX Mar 2003):
* UNSTABLE BETA VERSION - DO NOT USE EXCEPT FOR TESTING
* djgpp2/coff: added support for recent binutils versions
* watcom/le: don't crash on files without relocations
Changes in 1.90 beta (11 Nov 2002):
* UNSTABLE BETA VERSION - DO NOT USE EXCEPT FOR TESTING
* implemented several new options for finer compression control:

View File

@ -526,7 +526,7 @@ inline void operator delete[](void *p)
#define UPX_F_DOS_SYS 2
#define UPX_F_DOS_EXE 3
#define UPX_F_DJGPP2_COFF 4
#define UPX_F_WC_LE 5
#define UPX_F_WATCOM_LE 5
#define UPX_F_VXD_LE 6
#define UPX_F_DOS_EXEH 7 /* OBSOLETE */
#define UPX_F_TMT_ADAM 8

View File

@ -40,7 +40,7 @@ class PackWcle : public Packer, public LeFile
public:
PackWcle(InputFile *f) : super(f), LeFile(f){};
virtual int getVersion() const { return 13; }
virtual int getFormat() const { return UPX_F_WC_LE; }
virtual int getFormat() const { return UPX_F_WATCOM_LE; }
virtual const char *getName() const { return "watcom/le"; }
virtual const int *getCompressionMethods(int method, int level) const;
virtual const int *getFilters() const;