Unidiff1 files changed, 3 insertions, 2 deletions
|
|
|
@@ -21,5 +21,4 @@ |
21 | #include <grecs.h> |
21 | #include <grecs.h> |
22 | |
22 | |
23 | #define LOGFACILITY LOG_LOCAL5 |
| |
24 | #define TAGR_CONFIGFILE SYSCONFDIR "/tagr.conf" |
23 | #define TAGR_CONFIGFILE SYSCONFDIR "/tagr.conf" |
25 | #define TAGR_TEMPLATE SYSCONFDIR "/tagr.tmpl" |
24 | #define TAGR_TEMPLATE SYSCONFDIR "/tagr.tmpl" |
@@ -28,6 +27,8 @@ |
28 | #define TAGR_DBMODE 0600 |
27 | #define TAGR_DBMODE 0600 |
29 | |
28 | |
30 | #define _(s) s |
29 | #define _(s) gettext (s) |
31 | #define N_(s) s |
30 | #define N_(s) s |
| |
31 | #define gettext(s) s |
| |
32 | #define ngettext(s,p,c) ((c) == 1 ? (s) : (p)) |
32 | |
33 | |
33 | struct monitor |
34 | struct monitor |
|