From 20e99e4f20a982de43f6aec8b5f962369d5e8d22 Mon Sep 17 00:00:00 2001 From: Chris Young Date: Sun, 1 Jul 2012 16:40:24 +0100 Subject: Remove visible and invalid uses of git revision hashes. Anybody who needs to know hich revision it is can check about:testament, to everybody else the string is meaningless. --- amiga/version.c | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'amiga/version.c') diff --git a/amiga/version.c b/amiga/version.c index 362155c49..85546619b 100644 --- a/amiga/version.c +++ b/amiga/version.c @@ -18,10 +18,15 @@ #include "utils/testament.h" +/* NB: AmigaOS revision numbers start at 1 (not 0) and are monotonically + * incremental (v1.20 is higher than v1.3 and not the same as v1.2). + * Consequently, this version pair may not match the user-facing one in + * desktop/version.c. + */ #define NETSURF_VERSION_MAJOR "3" +#define NETSURF_VERSION_MINOR "1" -static const __attribute__((used)) char *verstag = "\0$VER: NetSurf " NETSURF_VERSION_MAJOR "." WT_REVID " (" WT_COMPILEDATE ")\0"; -const char * const versvn = "r" WT_REVID; +static const __attribute__((used)) char *verstag = "\0$VER: NetSurf " NETSURF_VERSION_MAJOR "." NETSURF_VERSION_MINOR " (" WT_COMPILEDATE ")\0"; const char * const verdate = WT_COMPILEDATE; -const char * const verarexx = NETSURF_VERSION_MAJOR "." WT_REVID; +const char * const verarexx = NETSURF_VERSION_MAJOR "." NETSURF_VERSION_MINOR; const char * const wt_revid = WT_REVID; -- cgit v1.2.3