summaryrefslogtreecommitdiff
path: root/cbtable.c
diff options
context:
space:
mode:
authorhailfinger <hailfinger@2b7e53f0-3cfb-0310-b3e9-8179ed1497e1>2012-08-09 23:34:41 +0000
committerhailfinger <hailfinger@2b7e53f0-3cfb-0310-b3e9-8179ed1497e1>2012-08-09 23:34:41 +0000
commit045a3187ce1cac93646da2f34a637367a170c9dd (patch)
treeadbb52deb6d42ab9f32ed347d18ff42384190c47 /cbtable.c
parentc57d9f12bc5b90a173caae733f195dfae6004d4c (diff)
downloadflashrom-045a3187ce1cac93646da2f34a637367a170c9dd.tar.gz
Portability fixes and cleanups
Move Mac OS X IOKit/DirectHW availability checks in the Makefile from compiler check to pciutils check. Print the compiler error messages for feature detection. Add DOS libpci in the Makefile includes only if a PCI-based programmer was requested. Restrict mmap usage in ich_descriptors_tool to Unix style systems. Build ich_descriptors_tool with the correct .exe extension on DOS/Windows. Build ich_descriptors_tool by default on x86. (Patch by Stefan Tauner) Print the Windows version instead of "unknown machine" on Windows. Don't #define our own __DARWIN__, use the standard OS X detection method. Update the README. Add more generated files to svn:ignore Signed-off-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net> Acked-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net> git-svn-id: https://code.coreboot.org/svn/flashrom/trunk@1567 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'cbtable.c')
-rw-r--r--cbtable.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cbtable.c b/cbtable.c
index 4495d9d..b4fb809 100644
--- a/cbtable.c
+++ b/cbtable.c
@@ -211,7 +211,7 @@ int coreboot_init(void)
struct lb_header *lb_table;
struct lb_record *rec, *last;
-#ifdef __DARWIN__
+#if defined(__MACH__) && defined(__APPLE__)
/* This is a hack. DirectHW fails to map physical address 0x00000000.
* Why?
*/