blob: 0bf9e3066984a7cabc10dc3cf927c762bad0135f (
plain)
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
|
#ifndef NEWSBOAT_CONFIG_H_
#define NEWSBOAT_CONFIG_H_
#define PACKAGE "newsboat"
#define PROGRAM_NAME PACKAGE
#define STRINGIFY_HELPER(str) #str
#define STRINGIFY(str) STRINGIFY_HELPER(str)
#define NEWSBOAT_VERSION_MAJOR 2
#define NEWSBOAT_VERSION_MINOR 14
#define NEWSBOAT_VERSION_PATCH 1
#define REAL_VERSION \
STRINGIFY(NEWSBOAT_VERSION_MAJOR) \
"." \
STRINGIFY(NEWSBOAT_VERSION_MINOR) \
"." \
STRINGIFY(NEWSBOAT_VERSION_PATCH)
#ifdef GIT_HASH
#define PROGRAM_VERSION GIT_HASH
#else
#define PROGRAM_VERSION REAL_VERSION
#endif
#define PROGRAM_URL "https://newsboat.org/"
#define NEWSBEUTER_PATH_SEP "/"
#define NEWSBEUTER_CONFIG_SUBDIR ".newsbeuter"
#define NEWSBEUTER_SUBDIR_XDG "newsbeuter"
#define NEWSBOAT_CONFIG_SUBDIR ".newsboat"
#define NEWSBOAT_SUBDIR_XDG "newsboat"
#include <libintl.h>
#include <locale.h>
#ifdef _
#undef _
#endif
#define _(string) gettext(string)
#ifdef _s
#undef _s
#endif
#define _s(msg) std::string(gettext(msg))
/* #define NDEBUG */ // only enable this #define if you want to disable all debug logging.
#endif /* NEWSBOAT_CONFIG_H_ */
|