mirror of
https://frontier.innolan.net/rainlance/amiga-tz.git
synced 2026-05-03 07:37:33 +00:00
32 lines
1.6 KiB
C
32 lines
1.6 KiB
C
//--------------------------------------------------------------------------//
|
|
// This file is in the public domain, so clarified as of //
|
|
// 2009-05-17 by Arthur David Olson. //
|
|
//--------------------------------------------------------------------------//
|
|
#ifndef _TIME_VERSION_H
|
|
#define _TIME_VERSION_H
|
|
//--------------------------------------------------------------------------//
|
|
#define VERSION_NO 1
|
|
#define VERSION "VERSION_NO"
|
|
#define REVISION_NO 03
|
|
#define REVISION "REVISION_NO"
|
|
#define DATE "25.07.2015"
|
|
#define PACKAGE_TZ "tzcode"
|
|
#define VERSION_TZ "2015e"
|
|
#define BUGEMAIL_TZ "carsten.larsen@mail.com"
|
|
#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;
|
|
//--------------------------------------------------------------------------//
|
|
// Library version definitions //
|
|
//--------------------------------------------------------------------------//
|
|
#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
|