diff options
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 6757a6f..13a7d94 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -28,32 +28,32 @@ lib_LTLIBRARIES = libpciaccess.la if LINUX OS_SUPPORT = linux_sysfs.c linux_devmem.c linux_devmem.h +VGA_ARBITER = common_vgaarb.c endif if FREEBSD OS_SUPPORT = freebsd_pci.c +VGA_ARBITER = common_vgaarb_stub.c endif if NETBSD OS_SUPPORT = netbsd_pci.c +VGA_ARBITER = common_vgaarb_stub.c endif if OPENBSD OS_SUPPORT = openbsd_pci.c +# VGA Arbiter code is included in openbsd_pci.c endif if SOLARIS OS_SUPPORT = solx_devfs.c pci_tools.h -endif - -if LINUX -VGA_ARBITER = common_vgaarb.c -else VGA_ARBITER = common_vgaarb_stub.c endif if GNU OS_SUPPORT = x86_pci.c +VGA_ARBITER = common_vgaarb_stub.c endif libpciaccess_la_SOURCES = common_bridge.c \ |