blob: e7e8bc833ebc93afbe199ee5bb7732cf3b3f4f56 (
plain) (
blame)
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
|
#ifndef NEWSBEUTER_CONFIG__H
#define NEWSBEUTER_CONFIG__H
#define PROGRAM_NAME PACKAGE
#define PROGRAM_VERSION "0.8.1"
#define PROGRAM_URL "http://synflood.at/newsbeuter.html"
#define USER_AGENT PROGRAM_NAME " rss feedreader " PROGRAM_VERSION " (" PROGRAM_URL ")"
#define NEWSBEUTER_PATH_SEP "/"
#define NEWSBEUTER_CONFIG_SUBDIR ".newsbeuter"
#ifdef _ENABLE_NLS
# include <libintl.h>
# include <locale.h>
# ifdef _
# undef _
# endif
# define _(string) gettext(string)
#else
# define _(string) (string)
#endif
#endif
|