--- src/bsd/bsd_ioports.c.orig Mon Jun 27 10:55:22 2005 +++ src/bsd/bsd_ioports.c Mon Jun 27 10:57:24 2005 @@ -34,8 +34,10 @@ #include #include +#ifdef __I386__ #include #include +#endif #include "gettext.h" @@ -55,6 +57,7 @@ /* I/O thru assembly code */ +#ifdef __I386__ static int bsd_asm_read_io(unsigned int addr) { return inb(addr); @@ -64,6 +67,7 @@ { outb(addr, data); } +#endif /* I/O thru ioctl() calls */