diff options
author | Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net> | 2010-06-25 13:18:48 +0000 |
---|---|---|
committer | Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net> | 2010-06-25 13:18:48 +0000 |
commit | 7237683faff7d67a7caac9addb6ef5e6944db0b1 (patch) | |
tree | d67df6db6093d73939f07078ce1df6900456752c /hwaccess.h | |
parent | 2bd007a97e16487e2a2780eec63e148aaaad4c5c (diff) | |
download | flashrom-git-7237683faff7d67a7caac9addb6ef5e6944db0b1.tar.gz |
Work around shadowing warnings in libpci headers
This is needed for warning-free compilation on older gcc versions (3.x
and probably older). Such a gcc version is the default on i386 OpenBSD.
Corresponding to flashrom svn r1061.
Signed-off-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>
Acked-by: Stuart Henderson <sthen@openbsd.org>
Diffstat (limited to 'hwaccess.h')
-rw-r--r-- | hwaccess.h | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -31,7 +31,14 @@ #endif #if NEED_PCI == 1 +/* + * libpci headers use the variable name "index" which triggers shadowing + * warnings on systems which have the index() function in a default #include + * or as builtin. + */ +#define index shadow_workaround_index #include <pci/pci.h> +#undef index #endif #if defined (__i386__) || defined (__x86_64__) |