]> git.proxmox.com Git - grub2.git/blame - config.h.in
Last-but-one commit closes: #744954.
[grub2.git] / config.h.in
CommitLineData
c88172fa
VS
1#undef _LARGEFILE_SOURCE
2#undef _FILE_OFFSET_BITS
3#define _LARGEFILE_SOURCE
4#define _FILE_OFFSET_BITS 64
d43a777e
VS
5#if defined(__PPC__) && !defined(__powerpc__)
6#define __powerpc__ 1
7#endif
4eb8b756 8
d1307d87
VS
9#define GCRYPT_NO_DEPRECATED 1
10
4eb8b756
CW
11/* Define to 1 to enable disk cache statistics. */
12#define DISK_CACHE_STATS @DISK_CACHE_STATS@
e744219b 13#define BOOT_TIME_STATS @BOOT_TIME_STATS@
6c6996fe
CW
14/* Define to 1 to make GRUB quieter at boot time. */
15#define QUIET_BOOT @QUIET_BOOT@
4eb8b756 16
7b780018 17#if defined (GRUB_BUILD)
48972495 18#undef ENABLE_NLS
7b780018
VS
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)
742f9232 31#include <config-util.h>
742f9232 32#else
6f07c4e4 33#define HAVE_FONT_SOURCE @HAVE_FONT_SOURCE@
742f9232
VS
34/* Define if C symbols get an underscore after compilation. */
35#define HAVE_ASM_USCORE @HAVE_ASM_USCORE@
36/* Define it to \"addr32\" or \"addr32;\" to make GAS happy. */
37#define ADDR32 @ADDR32@
38/* Define it to \"data32\" or \"data32;\" to make GAS happy. */
39#define DATA32 @DATA32@
40/* Define it to one of __bss_start, edata and _edata. */
41#define BSS_START_SYMBOL @BSS_START_SYMBOL@
42/* Define it to either end or _end. */
43#define END_SYMBOL @END_SYMBOL@
44/* Name of package. */
45#define PACKAGE "@PACKAGE@"
46/* Version number of package. */
47#define VERSION "@VERSION@"
48/* Define to the full name and version of this package. */
49#define PACKAGE_STRING "@PACKAGE_STRING@"
50/* Define to the version of this package. */
51#define PACKAGE_VERSION "@PACKAGE_VERSION@"
52/* Define to the full name of this package. */
53#define PACKAGE_NAME "@PACKAGE_NAME@"
54/* Define to the address where bug reports for this package should be sent. */
55#define PACKAGE_BUGREPORT "@PACKAGE_BUGREPORT@"
742f9232 56
92cd0f6e
VS
57#define GRUB_TARGET_CPU "@GRUB_TARGET_CPU@"
58#define GRUB_PLATFORM "@GRUB_PLATFORM@"
59
c5fc563a
VS
60#define RE_ENABLE_I18N 1
61
25ac643a 62#define _GNU_SOURCE 1
742f9232
VS
63
64#endif