]> git.proxmox.com Git - grub2.git/blob - config.h.in
* grub-core/loader/i386/bsdXX.c (grub_openbsd_find_ramdisk): Use
[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 to 1 to enable disk cache statistics. */
10 #define DISK_CACHE_STATS @DISK_CACHE_STATS@
11
12 #if defined (GRUB_UTIL) || !defined (GRUB_MACHINE)
13 #include <config-util.h>
14 #else
15 /* Define if C symbols get an underscore after compilation. */
16 #define HAVE_ASM_USCORE @HAVE_ASM_USCORE@
17 /* Define it to \"addr32\" or \"addr32;\" to make GAS happy. */
18 #define ADDR32 @ADDR32@
19 /* Define it to \"data32\" or \"data32;\" to make GAS happy. */
20 #define DATA32 @DATA32@
21 /* Define it to one of __bss_start, edata and _edata. */
22 #define BSS_START_SYMBOL @BSS_START_SYMBOL@
23 /* Define it to either end or _end. */
24 #define END_SYMBOL @END_SYMBOL@
25 /* Name of package. */
26 #define PACKAGE "@PACKAGE@"
27 /* Version number of package. */
28 #define VERSION "@VERSION@"
29 /* Define to the full name and version of this package. */
30 #define PACKAGE_STRING "@PACKAGE_STRING@"
31 /* Define to the version of this package. */
32 #define PACKAGE_VERSION "@PACKAGE_VERSION@"
33 /* Define to the full name of this package. */
34 #define PACKAGE_NAME "@PACKAGE_NAME@"
35 /* Define to the address where bug reports for this package should be sent. */
36 #define PACKAGE_BUGREPORT "@PACKAGE_BUGREPORT@"
37 /* Default boot directory name" */
38 #define GRUB_BOOT_DIR_NAME "@bootdirname@"
39 /* Default grub directory name */
40 #define GRUB_DIR_NAME "@grubdirname@"
41 /* Define to 1 if GCC generates calls to __enable_execute_stack(). */
42 #define NEED_ENABLE_EXECUTE_STACK @NEED_ENABLE_EXECUTE_STACK@
43 /* Define to 1 if GCC generates calls to __register_frame_info(). */
44 #define NEED_REGISTER_FRAME_INFO @NEED_REGISTER_FRAME_INFO@
45
46 #define GRUB_TARGET_CPU "@GRUB_TARGET_CPU@"
47 #define GRUB_PLATFORM "@GRUB_PLATFORM@"
48
49 #define RE_ENABLE_I18N 1
50
51 #endif