mirror of https://github.com/upx/upx.git
*** empty log message ***
committer: mfx <mfx> 1049237553 +0000
This commit is contained in:
parent
8b74704bbf
commit
b9b75c536c
8
NEWS
8
NEWS
|
@ -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:
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue