1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
|
/****************************************************************************
**
** This file is part of GAP, a system for computational discrete algebra.
**
** Copyright of GAP belongs to its developers, whose names are too numerous
** to list here. Please refer to the COPYRIGHT file for details.
**
** SPDX-License-Identifier: GPL-2.0-or-later
**
** This file contains the GAP build version
*/
#include "version.h"
/****************************************************************************
**
*V SyKernelVersion . . . . . . . . . . . . . . . . . . kernel version number
**
** 'SyKernelVersion' is something like "4.37.2" or "4.37dev".
*/
const char * SyKernelVersion = "@GAP_VERSION@";
/****************************************************************************
**
*V SyReleaseDay . . . . . . . . . . . . . . release date of this GAP version
**
** 'SyReleaseDay' is the date of the release, e.g. "2019-Jun-19"; for
** development versions, this is set to "today".
*/
const char * SyReleaseDay = "@GAP_RELEASEDAY@";
/****************************************************************************
**
*V SyBuildVersion . . . . . . . . . . . . . . . . . source version for build
**
** 'SyBuildVersion' is identical to 'SyKernelVersion' for release versions.
** For development versions, it is something like "4.37dev-302-g09161ee".
*/
const char * SyBuildVersion = "@GAP_BUILD_VERSION@";
/****************************************************************************
**
*V SyBuildDateTime . . . . . . . . . . date and time the build was compiled
**
** 'SyBuildDateTime' is set to something like "2020-01-30 09:48:08", with
** the value given in local time, or 'reproducible' if GAP was built without
** a build time, to create a reproducible executable.
*/
const char * SyBuildDateTime = "@GAP_BUILD_DATETIME@";
|