r1190: Moved CPPFLAGS to pixmaps rule to avoid getting it twice.
[rox-filer.git] / ROX-Filer / src / config.h.in
blobdf4505fa5081e497a985cb2fa50a45f42aac8811
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 HAVE_LIBVFS
15 #undef HAVE_VFS_H
16 #undef HAVE_ICONV_H
17 #undef HAVE_LIBPNG
19 #undef GTK2
20 #undef LARGE_FILE_SUPPORT
22 #undef HAVE_REGEX_H
24 #include "my_vfs.h"
25 #include "rox_gettext.h"
27 #define _(String) rox_gettext(String)
29 /* Short for gettext_noop() - marks a string as translatable without
30 * actually translating it at that point. Used by xgettext.
32 #define N_(String) (String)
34 #ifdef GTK2
35 # define GTK_WINDOW_DIALOG GTK_WINDOW_TOPLEVEL
36 # define G_DISABLE_CONST_RETURNS
37 #else
38 # define gdk_x11_xatom_to_atom(x) (x)
39 # define gdk_x11_atom_to_xatom(x) (x)
40 #endif
42 /* printf format string to print file sizes */
43 #ifdef LARGE_FILE_SUPPORT
44 # define SIZE_FMT "lld"
45 #else
46 # define SIZE_FMT "ld"
47 #endif
49 /* Undefine THUMBS_USE_LIBPNG if you want thumbnail saving support
50 * under GTK+ 2.0 only.
52 #if !defined(GTK2) && defined(HAVE_LIBPNG)
53 # define THUMBS_USE_LIBPNG
54 #endif
56 /* #define GTK_DISABLE_DEPRECATED */