* grub-core/kern/emu/hostfs.c: Likewise.
* util/getroot_unix.c: Likewise.
+2013-09-24 Vladimir Serbinenko <phcoder@gmail.com>
+
+ * grub-core/kern/emu/hostdisk_unix.c: Declare AROS as non-unix.
+ * grub-core/kern/emu/hostfs.c: Likewise.
+ * util/getroot_unix.c: Likewise.
+
2013-09-24 Vladimir Serbinenko <phcoder@gmail.com>
* include/grub/emu/hostdisk.h (GRUB_FD_STAT_IS_FUNTIONAL): New define.
#include <errno.h>
#include <limits.h>
-#if !defined (__CYGWIN__) && !defined (__MINGW32__)
+#if !defined (__CYGWIN__) && !defined (__MINGW32__) && !defined (__AROS__)
#ifdef __linux__
# include <sys/ioctl.h> /* ioctl */
file->data = data;
-#if defined (__CYGWIN__) || defined (__MINGW32__)
+#if defined (__CYGWIN__) || defined (__MINGW32__) || defined (__AROS__)
fseek (f, 0, SEEK_END);
file->size = ftello (f);
fseek (f, 0, SEEK_SET);
#include <grub/cryptodisk.h>
#include <grub/i18n.h>
-#if !defined (__MINGW32__) && !defined (__CYGWIN__)
+#if !defined (__MINGW32__) && !defined (__CYGWIN__) && !defined (__AROS__)
#ifdef __linux__
#include <sys/ioctl.h> /* ioctl */