mirror of https://github.com/citusdata/citus.git
27 lines
784 B
C
27 lines
784 B
C
/* Citus full name as a string */
|
|
#define CITUS_NAME "Citus"
|
|
|
|
/* Citus edition as a string */
|
|
#define CITUS_EDITION "community"
|
|
|
|
/* Extension version expected by this Citus build */
|
|
#define CITUS_EXTENSIONVERSION "8.0-1"
|
|
|
|
/* Citus major version as a string */
|
|
#define CITUS_MAJORVERSION "8.0"
|
|
|
|
/* Citus version as a string */
|
|
#define CITUS_VERSION "8.0devel"
|
|
|
|
/* Citus version as a number */
|
|
#define CITUS_VERSION_NUM 80000
|
|
|
|
/* A string containing the version number, platform, and C compiler */
|
|
#define CITUS_VERSION_STR "Citus 8.0devel on x86_64-windows, compiled by Visual Studio"
|
|
|
|
/* Define to 1 if you have the `curl' library (-lcurl). */
|
|
#define HAVE_LIBCURL 0
|
|
|
|
/* Base URL for statistics collection and update checks */
|
|
#define REPORTS_BASE_URL "https://reports.citusdata.com"
|