1 #ifndef CONFIG_H
2 #define CONFIG_H
3 @TOP@
4 
5 /* the name of package */
6 #undef PACKAGE
7 
8 /* the version of package */
9 #undef VERSION
10 
11 /* Define to 1 if NLS is requested.  */
12 #undef ENABLE_NLS
13 
14 /* Define as 1 if you have catgets and don't want to use GNU gettext.  */
15 #undef HAVE_CATGETS
16 
17 /* Define as 1 if you have gettext and don't want to use GNU gettext.  */
18 #undef HAVE_GETTEXT
19 
20 /* Define if your locale.h file contains LC_MESSAGES.  */
21 #undef HAVE_LC_MESSAGES
22 
23 /* Define as 1 if you have the stpcpy function.  */
24 #undef HAVE_STPCPY
25 
26 @BOTTOM@
27 
28 #ifndef HAVE_SETLOCALE
29 # define setlocale(Category, Locale)
30 #endif
31 
32 #if ENABLE_NLS
33 # ifndef HAVE_LIBINTL_H
34 #  define HAVE_LIBINTL_H 1
35 # endif
36 # include <libintl.h>
37 # define _(Text) gettext (Text)
38 #else
39 # define bindtextdomain(Domain, Directory)
40 # define textdomain(Domain)
41 # define _(Text) Text
42 # define gettext(z) z
43 #endif
44 #define N_(Text) Text
45 
46 #endif /* CONFIG_H */
47