amiga-tz/library/time_version.h

28 lines
943 B
C

#ifndef _TIME_VERSION_H
#define _TIME_VERSION_H
#define XSTR(s) STR(s)
#define STR(s) #s
#define VERSION_NO 5
#define VERSION XSTR(VERSION_NO)
#define REVISION_NO 00
#define REVISION XSTR(REVISION_NO)
#define DATE "15.10.2016"
#define PACKAGE_TZ "tzcode"
#define VERSION_TZ "2016g"
#define BUGEMAIL_TZ "cs@innolan.dk"
#define AMIGA_VERSION " " VERSION "." REVISION " (" DATE ") " \
PACKAGE_TZ " " VERSION_TZ
static char const PKGVERSION[] = "(" PACKAGE_TZ ")";
static char const TZVERSION[] = VERSION_TZ;
static char const REPORT_BUGS_TO[] = BUGEMAIL_TZ;
#define VERS "timezone.library " VERSION "." REVISION
#define VSTRING "timezone.library " VERSION "." REVISION \
"(" DATE ")\r\n"
#define VERSTAG "\0$VER: timezone.library " VERSION "." REVISION \
"(" DATE ")"
#endif