i386 and x86-64 definedness tests.
+2010-09-28 Colin Watson <cjwatson@ubuntu.com>
+
+ * grub-core/loader/multiboot_mbi2.c (grub_multiboot_make_mbi): Fix
+ i386 and x86-64 definedness tests.
+
2010-09-27 Yves Blusseau <blusseau@zetam.org>
Fix generation of kernel_syms.lst
}
}
-#if defined (GRUB_MACHINE_EFI) && __x86_64__
+#if defined (GRUB_MACHINE_EFI) && defined (__x86_64__)
{
struct multiboot_tag_efi64 *tag = (struct multiboot_tag_efi64 *) ptrorig;
tag->type = MULTIBOOT_TAG_TYPE_EFI64;
}
#endif
-#if defined (GRUB_MACHINE_EFI) && __i386__
+#if defined (GRUB_MACHINE_EFI) && defined (__i386__)
{
struct multiboot_tag_efi64 *tag = (struct multiboot_tag_efi32 *) ptrorig;
tag->type = MULTIBOOT_TAG_TYPE_EFI32;