diff options
Diffstat (limited to 'util/inteltool/Makefile')
-rw-r--r-- | util/inteltool/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/util/inteltool/Makefile b/util/inteltool/Makefile index 6e202cf81f..eec1ad766f 100644 --- a/util/inteltool/Makefile +++ b/util/inteltool/Makefile @@ -34,6 +34,10 @@ CFLAGS += -I/usr/local/include LDFLAGS += -L/usr/local/lib LIBS = -lz endif +ifeq ($(OS_ARCH), NetBSD) +CFLAGS += -I/usr/pkg/include +LDFLAGS += -L/usr/pkg/lib -Wl,-rpath-link,/usr/pkg/lib -lz -lpciutils -lpci -l$(shell uname -p) +endif all: pciutils dep $(PROGRAM) @@ -52,7 +56,11 @@ dep: define LIBPCI_TEST /* Avoid a failing test due to libpci header symbol shadowing breakage */ #define index shadow_workaround_index +#ifdef __NetBSD__ +#include <pciutils/pci.h> +#else #include <pci/pci.h> +#endif struct pci_access *pacc; int main(int argc, char **argv) { |