product-version-number-update-20031205

Modify the variables used to construct the product version numbers
to allow these same values to be used with the NSIS installer
This commit is contained in:
Jeffrey Altman 2003-12-06 06:15:46 +00:00 committed by Jeffrey Altman
parent 090f882fd9
commit ad9367a9ad

View File

@ -77,8 +77,12 @@ INCLUDE = $(AFSDEV_INCLUDE)
LIB = $(AFSDEV_LIB) LIB = $(AFSDEV_LIB)
#define used in WinNT/2000 installation and program version display #define used in WinNT/2000 installation and program version display
AFSPRODUCT_VERSION=1.3.51 AFSPRODUCT_VER_MAJOR=1
AFSPRODUCT_FILE_VERSION=1,3,5100,0 AFSPRODUCT_VER_MINOR=3
AFSPRODUCT_VER_PATCH=5100
AFSPRODUCT_VER_BUILD=0
AFSPRODUCT_VERSION=$(AFSPRODUCT_VER_MAJOR).$(AFSPRODUCT_VER_MINOR).$(AFSPRODUCT_VER_PATCH)
AFSPRODUCT_FILE_VERSION=$(AFSPRODUCT_VER_MAJOR),$(AFSPRODUCT_VER_MINOR),$(AFSPRODUCT_VER_PATCH),$(AFSPRODUCT_VER_BUILD)
CELLNAME_DEFAULT=Your Cell Name CELLNAME_DEFAULT=Your Cell Name
CELLSERVDB_INSTALL=CellServDB.GrandCentral CELLSERVDB_INSTALL=CellServDB.GrandCentral
CELLSERVDB_WEB=http://grand.central.org/dl/cellservdb/CellServDB CELLSERVDB_WEB=http://grand.central.org/dl/cellservdb/CellServDB