diff --git a/Makefile b/Makefile index 723a15b86..00ab0b283 100644 --- a/Makefile +++ b/Makefile @@ -310,7 +310,9 @@ compiler: featuresavailable ifeq ($(CHECK_LIBPCI), yes) pciutils: compiler @printf "Checking for libpci headers... " - @$(shell ( echo "#include "; \ + @# Avoid a failing test due to libpci header symbol shadowing breakage + @$(shell ( echo "#define index shadow_workaround_index"; \ + echo "#include "; \ echo "struct pci_access *pacc;"; \ echo "int main(int argc, char **argv)"; \ echo "{ pacc = pci_alloc(); return 0; }"; ) > .test.c ) diff --git a/hwaccess.h b/hwaccess.h index 91366a662..53e908a81 100644 --- a/hwaccess.h +++ b/hwaccess.h @@ -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 +#undef index #endif #if defined (__i386__) || defined (__x86_64__)