]> git.proxmox.com Git - grub2.git/blame - config.h.in
Split config.h for util and core.
[grub2.git] / config.h.in
CommitLineData
742f9232
VS
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/* Define to 1 if GCC generates calls to __enable_execute_stack(). */
28#define NEED_ENABLE_EXECUTE_STACK @NEED_ENABLE_EXECUTE_STACK@
29/* Define to 1 if GCC generates calls to __register_frame_info(). */
30#define NEED_REGISTER_FRAME_INFO @NEED_REGISTER_FRAME_INFO@
31
32#if defined(__i386__)
33#define NESTED_FUNC_ATTR __attribute__ ((__regparm__ (1)))
34#else
35#define NESTED_FUNC_ATTR
36#endif
37
38#endif