2017-11-26 18:43:51 -05:00
|
|
|
/***********************************************************************************************************************************
|
|
|
|
Version Numbers and Names
|
|
|
|
***********************************************************************************************************************************/
|
|
|
|
#ifndef VERSION_H
|
|
|
|
#define VERSION_H
|
|
|
|
|
|
|
|
/***********************************************************************************************************************************
|
2018-11-24 19:05:03 -05:00
|
|
|
Official name of the project
|
2017-11-26 18:43:51 -05:00
|
|
|
***********************************************************************************************************************************/
|
2018-11-24 19:05:03 -05:00
|
|
|
#define PROJECT_NAME "pgBackRest"
|
2017-11-26 18:43:51 -05:00
|
|
|
|
2018-01-23 13:34:24 -05:00
|
|
|
/***********************************************************************************************************************************
|
|
|
|
Standard binary name
|
|
|
|
***********************************************************************************************************************************/
|
2018-11-24 19:05:03 -05:00
|
|
|
#define PROJECT_BIN "pgbackrest"
|
2018-01-23 13:34:24 -05:00
|
|
|
|
2021-02-10 14:46:26 -05:00
|
|
|
/***********************************************************************************************************************************
|
|
|
|
Config file name. The path will vary based on configuration.
|
|
|
|
***********************************************************************************************************************************/
|
|
|
|
#define PROJECT_CONFIG_FILE PROJECT_BIN ".conf"
|
|
|
|
|
|
|
|
/***********************************************************************************************************************************
|
|
|
|
Config include path name. The parent path will vary based on configuration.
|
|
|
|
***********************************************************************************************************************************/
|
|
|
|
#define PROJECT_CONFIG_INCLUDE_PATH "conf.d"
|
|
|
|
|
2017-11-28 21:44:05 -05:00
|
|
|
/***********************************************************************************************************************************
|
2018-08-09 08:57:21 -04:00
|
|
|
Format Number -- defines format for info and manifest files as well as on-disk structure. If this number changes then the
|
|
|
|
repository will be invalid unless migration functions are written.
|
|
|
|
***********************************************************************************************************************************/
|
2018-11-24 19:05:03 -05:00
|
|
|
#define REPOSITORY_FORMAT 5
|
2018-08-09 08:57:21 -04:00
|
|
|
|
|
|
|
/***********************************************************************************************************************************
|
2021-01-26 12:47:52 -05:00
|
|
|
Software version
|
2017-11-28 21:44:05 -05:00
|
|
|
***********************************************************************************************************************************/
|
2022-11-28 17:56:59 +08:00
|
|
|
#define PROJECT_VERSION "2.44dev"
|
2017-11-28 21:44:05 -05:00
|
|
|
|
2017-11-26 18:43:51 -05:00
|
|
|
#endif
|