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