Author: jakllsch Date: Sun Oct 24 16:18:55 2010 New Revision: 5983 URL: https://tracker.coreboot.org/trac/coreboot/changeset/5983
Log: Fix superiotool build on non-NetBSD x86_64. Signed-off-by: Jonathan Kollasch <[email protected]> Acked-by: Jonathan Kollasch <[email protected]> Modified: trunk/util/superiotool/superiotool.h Modified: trunk/util/superiotool/superiotool.h ============================================================================== --- trunk/util/superiotool/superiotool.h Sun Oct 24 16:10:35 2010 (r5982) +++ trunk/util/superiotool/superiotool.h Sun Oct 24 16:18:55 2010 (r5983) @@ -59,7 +59,7 @@ #define INL inl #endif -#if defined(__NetBSD__) && defined(__i386__) || defined(__x86_64__) +#if defined(__NetBSD__) && (defined(__i386__) || defined(__x86_64__)) #include <sys/types.h> #include <machine/sysarch.h> #if defined(__i386__) -- coreboot mailing list: [email protected] http://www.coreboot.org/mailman/listinfo/coreboot

