~ubuntu-branches/ubuntu/trusty/grub2/trusty-updates

« back to all changes in this revision

Viewing changes to config.h.in

Tags: upstream-1.99~20101122
ImportĀ upstreamĀ versionĀ 1.99~20101122

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
 
 
36
#if defined(__i386__)
 
37
#define NESTED_FUNC_ATTR __attribute__ ((__regparm__ (1)))
 
38
#else
 
39
#define NESTED_FUNC_ATTR
 
40
#endif
 
41
 
 
42
#endif