Fix: Set the output codeset to UTF-8.
[rox-filer/ma.git] / ROX-Filer / src / config.h.in
blobd5bbc01e636a5a3bff1788efd48a8a74befddb50
1 /* The configure script will auto-generate config.h from config.h.in */
3 #define PROJECT "ROX-Filer"
4 #define VERSION "Unknown"
5 #define GTK_VERSION "Unknown"
7 #undef STDC_HEADERS
8 #undef HAVE_SYS_UCRED_H
9 #undef HAVE_MNTENT_H
10 #undef HAVE_SYS_MNTENT_H
11 #undef HAVE_FCNTL_H
12 #undef HAVE_GETOPT_LONG
13 #undef HAVE_UNSETENV
14 #undef FILE_B_FLAG
15 #undef USE_PANGO_WRAP_WORD_CHAR
16 #undef HAVE_APSYMBOLS_H
17 #undef HAVE_APBUILD_APSYMBOLS_H
18 #undef HAVE_STATFS
19 #undef HAVE_STATVFS
20 #undef HAVE_SYS_VFS_H
21 #undef HAVE_SYS_STATVFS_H
22 #undef HAVE_LIBINTL_H
24 #undef HAVE_MBRTOWC
25 #undef HAVE_WCTYPE_H
27 #undef LARGE_FILE_SUPPORT
29 #undef HAVE_REGEX_H
31 #undef HAVE_GETXATTR
32 #undef HAVE_ATTROPEN
33 #undef HAVE_SYS_XATTR_H
34 #undef HAVE_ATTR_XATTR_H
36 /* Enable extensions - used for dnotify support */
37 #ifndef _GNU_SOURCE
38 # define _GNU_SOURCE
39 #endif
41 #if defined(HAVE_APSYMBOLS_H)
42 # include <apsymbols.h>
43 #elif defined(HAVE_APBUILD_APSYMBOLS_H)
44 # include <apbuild/apsymbols.h>
45 #endif
47 #include "my_vfs.h"
49 #ifdef HAVE_LIBINTL_H
50 # include <libintl.h>
51 # define _(String) dgettext("ROX-Filer", String)
52 #else
53 # define _(String) (String)
54 #endif
55 /* Short for gettext_noop() - marks a string as translatable without
56 * actually translating it at that point. Used by xgettext.
58 #define N_(String) (String)
60 /* printf format string to print file sizes */
61 #ifdef LARGE_FILE_SUPPORT
62 # define SIZE_FMT G_GINT64_MODIFIER "d"
63 #else
64 # define SIZE_FMT G_GINT32_MODIFIER "d"
65 #endif
67 #if 1
68 /* For releases... */
69 # define GTK_ENABLE_DEPRECATED
70 # define GDK_ENABLE_DEPRECATED
71 # define G_ENABLE_DEPRECATED
72 #else
73 /* Only for testing... */
74 # define GTK_DISABLE_DEPRECATED
75 # define GDK_DISABLE_DEPRECATED
76 # define G_DISABLE_DEPRECATED
77 #endif
79 #ifndef S_ISDOOR
80 # define S_ISDOOR(mode) (FALSE)
81 #endif