* grub-core/efiemu/runtime/efiemu.c: Replace APPLE_CC with __APPLE__.

* grub-core/kern/misc.c: Likewise.
	* grub-core/loader/i386/xnu.c: Likewise.
	* include/grub/i386/tsc.h: Likewise.
	* include/grub/symbol.h: Likewise.
This commit is contained in:
Vladimir 'phcoder' Serbinenko 2012-05-28 17:49:18 +02:00
parent 4a5a3c4abc
commit e6ad0555e4
6 changed files with 17 additions and 9 deletions

View file

@ -137,7 +137,7 @@ grub_puts_ (const char *s)
return grub_puts (_(s));
}
#if defined (APPLE_CC) && ! defined (GRUB_UTIL)
#if defined (__APPLE__) && ! defined (GRUB_UTIL)
int
grub_err_printf (const char *fmt, ...)
{
@ -152,7 +152,7 @@ grub_err_printf (const char *fmt, ...)
}
#endif
#if ! defined (APPLE_CC) && ! defined (GRUB_UTIL)
#if ! defined (__APPLE__) && ! defined (GRUB_UTIL)
int grub_err_printf (const char *fmt, ...)
__attribute__ ((alias("grub_printf")));
#endif
@ -1112,7 +1112,7 @@ grub_abort (void)
grub_exit ();
}
#if ! defined (APPLE_CC) && !defined (GRUB_UTIL)
#if ! defined (__APPLE__) && !defined (GRUB_UTIL)
/* GCC emits references to abort(). */
void abort (void) __attribute__ ((alias ("grub_abort")));
#endif