]> git.proxmox.com Git - grub2.git/blob - config.h.in
New upstream snapshot.
[grub2.git] / config.h.in
1 #undef _LARGEFILE_SOURCE
2 #undef _FILE_OFFSET_BITS
3 #define _LARGEFILE_SOURCE
4 #define _FILE_OFFSET_BITS 64
5 #if defined(__PPC__) && !defined(__powerpc__)
6 #define __powerpc__ 1
7 #endif
8
9 #define GCRYPT_NO_DEPRECATED 1
10
11 /* Define to 1 to enable disk cache statistics. */
12 #define DISK_CACHE_STATS @DISK_CACHE_STATS@
13 #define BOOT_TIME_STATS @BOOT_TIME_STATS@
14 /* Define to 1 to make GRUB quieter at boot time. */
15 #define QUIET_BOOT @QUIET_BOOT@
16
17 #if defined (GRUB_BUILD)
18 #undef ENABLE_NLS
19 #define BUILD_SIZEOF_LONG @BUILD_SIZEOF_LONG@
20 #define BUILD_SIZEOF_VOID_P @BUILD_SIZEOF_VOID_P@
21 #if defined __APPLE__
22 # if defined __BIG_ENDIAN__
23 # define BUILD_WORDS_BIGENDIAN 1
24 # else
25 # define BUILD_WORDS_BIGENDIAN 0
26 # endif
27 #else
28 #define BUILD_WORDS_BIGENDIAN @BUILD_WORDS_BIGENDIAN@
29 #endif
30 #elif defined (GRUB_UTIL) || !defined (GRUB_MACHINE)
31 #include <config-util.h>
32 #else
33 /* Define if C symbols get an underscore after compilation. */
34 #define HAVE_ASM_USCORE @HAVE_ASM_USCORE@
35 /* Define it to \"addr32\" or \"addr32;\" to make GAS happy. */
36 #define ADDR32 @ADDR32@
37 /* Define it to \"data32\" or \"data32;\" to make GAS happy. */
38 #define DATA32 @DATA32@
39 /* Define it to one of __bss_start, edata and _edata. */
40 #define BSS_START_SYMBOL @BSS_START_SYMBOL@
41 /* Define it to either end or _end. */
42 #define END_SYMBOL @END_SYMBOL@
43 /* Name of package. */
44 #define PACKAGE "@PACKAGE@"
45 /* Version number of package. */
46 #define VERSION "@VERSION@"
47 /* Define to the full name and version of this package. */
48 #define PACKAGE_STRING "@PACKAGE_STRING@"
49 /* Define to the version of this package. */
50 #define PACKAGE_VERSION "@PACKAGE_VERSION@"
51 /* Define to the full name of this package. */
52 #define PACKAGE_NAME "@PACKAGE_NAME@"
53 /* Define to the address where bug reports for this package should be sent. */
54 #define PACKAGE_BUGREPORT "@PACKAGE_BUGREPORT@"
55 /* Default boot directory name" */
56 #define GRUB_BOOT_DIR_NAME "@bootdirname@"
57 /* Default grub directory name */
58 #define GRUB_DIR_NAME "@grubdirname@"
59 /* Define to 1 if GCC generates calls to __register_frame_info(). */
60 #define NEED_REGISTER_FRAME_INFO @NEED_REGISTER_FRAME_INFO@
61
62 #define GRUB_TARGET_CPU "@GRUB_TARGET_CPU@"
63 #define GRUB_PLATFORM "@GRUB_PLATFORM@"
64
65 #define RE_ENABLE_I18N 1
66
67 #define _GNU_SOURCE 1
68
69 #endif