r1996: Cope slightly better with invalid filenames in various places (reported by
[rox-filer.git] / ROX-Filer / src / config.h.in
blob58809d6ee8284fec8827d84fb991750ae8de45dc
1 /* The configure script will auto-generate config.h from config.h.in */
3 #define PROJECT "ROX-Filer"
4 #define VERSION "Unknown"
6 #undef STDC_HEADERS
7 #undef HAVE_SYS_UCRED_H
8 #undef HAVE_MNTENT_H
9 #undef HAVE_SYS_MNTENT_H
10 #undef HAVE_FCNTL_H
11 #undef HAVE_GETOPT_LONG
12 #undef HAVE_UNSETENV
13 #undef FILE_B_FLAG
14 #undef WITH_GNOMEVFS
16 #undef LARGE_FILE_SUPPORT
18 #undef HAVE_REGEX_H
20 #include "my_vfs.h"
22 #include "rox_gettext.h"
23 #define _(String) rox_gettext(String)
24 /* Short for gettext_noop() - marks a string as translatable without
25 * actually translating it at that point. Used by xgettext.
27 #define N_(String) (String)
29 /* printf format string to print file sizes */
30 #ifdef LARGE_FILE_SUPPORT
31 # define SIZE_FMT "lld"
32 #else
33 # define SIZE_FMT "ld"
34 #endif
36 #define GTK_DISABLE_DEPRECATED
37 #define GDK_DISABLE_DEPRECATED
39 #ifndef S_ISDOOR
40 # define S_ISDOOR(mode) (FALSE)
41 #endif