r3196: Use apsymbols.h (from autopackage.org) if possible for binary compatibility
[rox-filer.git] / ROX-Filer / src / config.h.in
blob720c85ad23542288bdfb440d452a6190f7fe61dc
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 WITH_GNOMEVFS
16 #undef USE_PANGO_WRAP_WORD_CHAR
17 #undef HAVE_APSYMBOLS_H
19 #undef LARGE_FILE_SUPPORT
21 #undef HAVE_REGEX_H
23 /* Enable extensions - used for dnotify support */
24 #ifndef _GNU_SOURCE
25 # define _GNU_SOURCE
26 #endif
28 #ifdef HAVE_APSYMBOLS_H
29 # include <apsymbols.h>
30 #endif
32 #include "my_vfs.h"
34 #include "rox_gettext.h"
35 #define _(String) rox_gettext(String)
36 /* Short for gettext_noop() - marks a string as translatable without
37 * actually translating it at that point. Used by xgettext.
39 #define N_(String) (String)
41 /* printf format string to print file sizes */
42 #ifdef LARGE_FILE_SUPPORT
43 # define SIZE_FMT "lld"
44 #else
45 # define SIZE_FMT "ld"
46 #endif
48 /* Only for developer releases... */
49 /* #define GTK_DISABLE_DEPRECATED */
50 /* #define GDK_DISABLE_DEPRECATED */
51 /* #define G_DISABLE_DEPRECATED */
53 #ifndef S_ISDOOR
54 # define S_ISDOOR(mode) (FALSE)
55 #endif