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