X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=make%2Ftemplate%2Fconfig.h;h=a28f5e87894bd8ad609bc5cd0365fea598227103;hb=cad88bcffb845801476bfae0ed6751513fa76c78;hp=c1e8bd0fcb72c8bf051743b9a73e5f2b0b031faa;hpb=565544fac966b14e046bb3042ab485f79bcf7c9e;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/make/template/config.h b/make/template/config.h index c1e8bd0fc..a28f5e878 100644 --- a/make/template/config.h +++ b/make/template/config.h @@ -19,16 +19,40 @@ #pragma once -#define INSPIRCD_BRANCH "InspIRCd-@VERSION_MAJOR@.@VERSION_MINOR@" -#define INSPIRCD_VERSION "InspIRCd-@VERSION_FULL@" +/*** The branch version that is shown to unprivileged users. */ +#define INSPIRCD_BRANCH "InspIRCd-@VERSION_MAJOR@" +/*** The full version that is shown to privileged users. */ +#define INSPIRCD_VERSION "InspIRCd-@VERSION_FULL@" + +/*** Determines whether this version of InspIRCd is older than the requested version. */ +#define INSPIRCD_VERSION_BEFORE(MAJOR, MINOR) (((@VERSION_MAJOR@ << 8) | @VERSION_MINOR@) < ((MAJOR << 8) | (MINOR))) + +/*** Determines whether this version of InspIRCd is equal to or newer than the requested version. */ +#define INSPIRCD_VERSION_SINCE(MAJOR, MINOR) (((@VERSION_MAJOR@ << 16) | @VERSION_MINOR@) >= ((MAJOR << 8) | (MINOR))) + +/*** The default location that config files are stored in. */ #define INSPIRCD_CONFIG_PATH "@CONFIG_DIR@" -#define INSPIRCD_DATA_PATH "@DATA_DIR@" -#define INSPIRCD_LOG_PATH "@LOG_DIR@" + +/*** The default location that data files are stored in. */ +#define INSPIRCD_DATA_PATH "@DATA_DIR@" + +/*** The default location that log files are stored in. */ +#define INSPIRCD_LOG_PATH "@LOG_DIR@" + +/*** The default location that module files are stored in. */ #define INSPIRCD_MODULE_PATH "@MODULE_DIR@" #ifndef _WIN32 %target include/config.h + +/*** Whether the arc4random_buf() function was available at compile time. */ + %define HAS_ARC4RANDOM_BUF + +/*** Whether the clock_gettime() function was available at compile time. */ %define HAS_CLOCK_GETTIME + +/*** Whether the eventfd() function was available at compile time. */ %define HAS_EVENTFD + #endif