1
0
mirror of https://github.com/upx/upx synced 2025-09-28 19:06:07 +08:00
committer: mfx <mfx> 1098709263 +0000
This commit is contained in:
Markus F.X.J. Oberhumer 2004-10-25 13:01:03 +00:00
parent a4e01e28db
commit 079b808a56
3 changed files with 5 additions and 4 deletions

View File

@ -3,7 +3,7 @@ SHELL = /bin/sh
top_srcdir = .. top_srcdir = ..
PACKAGE = upx PACKAGE = upx
VERSION_DATE = 01 Oct 2004 VERSION_DATE = 25 Oct 2004
VERSION := $(shell sed -n 's/^.*UPX_VERSION_STRING .*"\(.*\)".*/\1/p' $(top_srcdir)/src/version.h) VERSION := $(shell sed -n 's/^.*UPX_VERSION_STRING .*"\(.*\)".*/\1/p' $(top_srcdir)/src/version.h)
TRIMSPACE = cat TRIMSPACE = cat

View File

@ -824,8 +824,9 @@ The PE support in B<UPX> is quite stable now, but probably there are
still some incompabilities with some files. still some incompabilities with some files.
Because of the way B<UPX> (and other packers for this format) works, you Because of the way B<UPX> (and other packers for this format) works, you
can see increased memory usage of your compressed files. If you start can see increased memory usage of your compressed files because the whole
several instances of huge compressed programs you're wasting memory program is loaded into memory at startup.
If you start several instances of huge compressed programs you're wasting memory
because the common segements of the program won't get shared because the common segements of the program won't get shared
across the instances. across the instances.
On the other hand if you're compressing only smaller programs, or On the other hand if you're compressing only smaller programs, or

View File

@ -1,4 +1,4 @@
#define UPX_VERSION_HEX 0x019300 /* 01.93.00 */ #define UPX_VERSION_HEX 0x019300 /* 01.93.00 */
#define UPX_VERSION_STRING "1.93 beta" #define UPX_VERSION_STRING "1.93 beta"
#define UPX_VERSION_STRING4 "1.93" #define UPX_VERSION_STRING4 "1.93"
#define UPX_VERSION_DATE "Oct 1st 2004" #define UPX_VERSION_DATE "Oct 25th 2004"