diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2019-11-03 21:45:44 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2019-11-03 21:45:44 +0100 |
commit | 9cf19f93324f1a7adfc5c386050d21ce6d661203 (patch) | |
tree | 23843074b216ac0406284afa33074c3a9c04ed73 /pci-arbiter | |
parent | 513e5f1def6e019613430d2ffed952da470fb801 (diff) | |
download | hurd-9cf19f93324f1a7adfc5c386050d21ce6d661203.tar.gz hurd-9cf19f93324f1a7adfc5c386050d21ce6d661203.tar.bz2 hurd-9cf19f93324f1a7adfc5c386050d21ce6d661203.zip |
pciaccess: properly detect and use
* configure.ac: Detect pciaccess pkg module. Define HAVE_LIBPCIACCESS,
libpciaccess_CFLAGS, libpciaccess_LIBS variables.
* config.make.in (HAVE_LIBPCIACCESS, libpciaccess_CFLAGS,
libpciaccess_LIBS): Add variables.
* Makefile (prog-subdirs) [!HAVE_LIBPCIACCESS]: Do not add pci-arbiter.
* pci-arbiter/Makefile (LDLIBS): Use $(libpciaccess_LIBS) instead of
-lpciaccess.
(CFLAGS): Use $(libpciaccess_CFLAGS).
Diffstat (limited to 'pci-arbiter')
-rw-r--r-- | pci-arbiter/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pci-arbiter/Makefile b/pci-arbiter/Makefile index b13aefa8..1d0309dc 100644 --- a/pci-arbiter/Makefile +++ b/pci-arbiter/Makefile @@ -27,13 +27,13 @@ MIGSRCS = pciServer.c startup_notifyServer.c OBJS = $(patsubst %.S,%.o,$(patsubst %.c,%.o, $(SRCS) $(MIGSRCS))) HURDLIBS= fshelp ports shouldbeinlibc netfs iohelp ihash -LDLIBS = -lpthread -lpciaccess +LDLIBS = -lpthread $(libpciaccess_LIBS) target = pci-arbiter include ../Makeconf -CFLAGS += -I$(PORTDIR)/include +CFLAGS += -I$(PORTDIR)/include $(libpciaccess_CFLAGS) pci-MIGSFLAGS = -imacros $(srcdir)/mig-mutate.h |