committer: mfx <mfx> 978563845 +0000
This commit is contained in:
Markus F.X.J. Oberhumer 2001-01-03 23:17:25 +00:00
parent ca7c07e817
commit da8fadb203
3 changed files with 13 additions and 4 deletions

View File

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

View File

@ -49,8 +49,17 @@ void show_head(void)
con_fprintf(f,
" Ultimate Packer for eXecutables\n"
" Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001\n"
"UPX v%-12sMarkus F.X.J. Oberhumer & Laszlo Molnar%21s\n\n",
UPX_VERSION_STRING, UPX_VERSION_DATE);
"UPX %-12s Markus F.X.J. Oberhumer & Laszlo Molnar %20s\n\n",
#if defined(__MFX_DOS)
UPX_VERSION_STRING "d",
#elif defined(__MFX_WIN32)
UPX_VERSION_STRING "w",
#elif 0 && defined(__linux__)
UPX_VERSION_STRING "l",
#else
UPX_VERSION_STRING,
#endif
UPX_VERSION_DATE);
fg = con_fg(f,fg);
}

View File

@ -1,3 +1,3 @@
#define UPX_VERSION 0x011102 /* 01.11.02 */
#define UPX_VERSION_STRING "1.11.2"
#define UPX_VERSION_DATE "Jan 2nd 2001"
#define UPX_VERSION_DATE "Jan 4th 2001"