]> git.proxmox.com Git - grub2.git/blame - config.h.in
* include/grub/datetime.h (grub_get_datetime_cmos): Don't define in
[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
742f9232
VS
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@"
a4c1d277
YB
31/* Default boot directory name" */
32#define GRUB_BOOT_DIR_NAME "@bootdirname@"
33/* Default grub directory name */
34#define GRUB_DIR_NAME "@grubdirname@"
742f9232
VS
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@
c5dc1690
SJ
39/* Define to 1 to enable disk cache statistics. */
40#define DISK_CACHE_STATS @DISK_CACHE_STATS@
742f9232 41
c5fc563a
VS
42#define RE_ENABLE_I18N 1
43
742f9232
VS
44#if defined(__i386__)
45#define NESTED_FUNC_ATTR __attribute__ ((__regparm__ (1)))
46#else
47#define NESTED_FUNC_ATTR
48#endif
49
50#endif