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

« back to all changes in this revision

Viewing changes to .pc/maybe_quiet.patch/config.h.in

  • Committer: Package Import Robot
  • Author(s): Colin Watson
  • Date: 2014-01-16 15:18:04 UTC
  • mfrom: (17.6.38 experimental)
  • Revision ID: package-import@ubuntu.com-20140116151804-3foouk7fpqcq3sxx
Tags: 2.02~beta2-2
* Convert patch handling to git-dpm.
* Add bi-endian support to ELF parser (Tomohiro B Berry).
* Adjust restore_mkdevicemap.patch to mark get_kfreebsd_version as static,
  to appease "gcc -Werror=missing-prototypes".
* Cherry-pick from upstream:
  - Change grub-macbless' manual page section to 8.
* Install grub-glue-efi, grub-macbless, grub-render-label, and
  grub-syslinux2cfg.
* grub-shell: Pass -no-pad to xorriso when building floppy images.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
#if defined(__PPC__) && !defined(__powerpc__)
6
6
#define __powerpc__ 1
7
7
#endif
8
 
#if defined (GRUB_UTIL) || !defined (GRUB_MACHINE)
 
8
 
 
9
#define GCRYPT_NO_DEPRECATED 1
 
10
 
 
11
/* Define to 1 to enable disk cache statistics.  */
 
12
#define DISK_CACHE_STATS @DISK_CACHE_STATS@
 
13
#define BOOT_TIME_STATS @BOOT_TIME_STATS@
 
14
 
 
15
#if defined (GRUB_BUILD)
 
16
#undef ENABLE_NLS
 
17
#define BUILD_SIZEOF_LONG @BUILD_SIZEOF_LONG@
 
18
#define BUILD_SIZEOF_VOID_P @BUILD_SIZEOF_VOID_P@
 
19
#if defined __APPLE__
 
20
# if defined __BIG_ENDIAN__
 
21
#  define BUILD_WORDS_BIGENDIAN 1
 
22
# else
 
23
#  define BUILD_WORDS_BIGENDIAN 0
 
24
# endif
 
25
#else
 
26
#define BUILD_WORDS_BIGENDIAN @BUILD_WORDS_BIGENDIAN@
 
27
#endif
 
28
#elif defined (GRUB_UTIL) || !defined (GRUB_MACHINE)
9
29
#include <config-util.h>
10
 
#define NESTED_FUNC_ATTR
11
30
#else
 
31
#define HAVE_FONT_SOURCE @HAVE_FONT_SOURCE@
12
32
/* Define if C symbols get an underscore after compilation. */
13
33
#define HAVE_ASM_USCORE @HAVE_ASM_USCORE@
14
34
/* Define it to \"addr32\" or \"addr32;\" to make GAS happy.  */
31
51
#define PACKAGE_NAME "@PACKAGE_NAME@"
32
52
/* Define to the address where bug reports for this package should be sent. */
33
53
#define PACKAGE_BUGREPORT "@PACKAGE_BUGREPORT@"
34
 
/* Default boot directory name" */
35
 
#define GRUB_BOOT_DIR_NAME "@bootdirname@"
36
 
/* Default grub directory name */
37
 
#define GRUB_DIR_NAME "@grubdirname@"
38
 
/* Define to 1 if GCC generates calls to __enable_execute_stack().  */
39
 
#define NEED_ENABLE_EXECUTE_STACK @NEED_ENABLE_EXECUTE_STACK@
40
 
/* Define to 1 if GCC generates calls to __register_frame_info().  */
41
 
#define NEED_REGISTER_FRAME_INFO @NEED_REGISTER_FRAME_INFO@
42
 
/* Define to 1 to enable disk cache statistics.  */
43
 
#define DISK_CACHE_STATS @DISK_CACHE_STATS@
44
54
 
45
55
#define GRUB_TARGET_CPU "@GRUB_TARGET_CPU@"
46
56
#define GRUB_PLATFORM "@GRUB_PLATFORM@"
47
57
 
48
58
#define RE_ENABLE_I18N 1
49
59
 
50
 
#if defined(__i386__)
51
 
#define NESTED_FUNC_ATTR __attribute__ ((__regparm__ (1)))
52
 
#else
53
 
#define NESTED_FUNC_ATTR
54
 
#endif
 
60
#define _GNU_SOURCE 1
55
61
 
56
62
#endif