]> mj.ucw.cz Git - pciutils.git/blobdiff - lib/configure
CXL3.0: Add DVSEC CXLCtrl3 and missing CXLCtl2
[pciutils.git] / lib / configure
index 2c74d9df64e8ab17e94fadd8ba9040aa8e8202cb..158cc0a71bd9bc5552c244c35ca1633e0198a51c 100755 (executable)
@@ -68,12 +68,17 @@ LSPCIDIR=SBINDIR
 
 case $sys in
        linux*)
-               echo_n " sysfs proc"
+               echo_n " sysfs proc mem-ports ecam"
                echo >>$c '#define PCI_HAVE_PM_LINUX_SYSFS'
                echo >>$c '#define PCI_HAVE_PM_LINUX_PROC'
+               echo >>$c '#define PCI_HAVE_PM_MMIO_CONF'
+               echo >>$c '#define PCI_HAVE_PM_ECAM'
                echo >>$c '#define PCI_HAVE_LINUX_BYTEORDER_H'
                echo >>$c '#define PCI_PATH_PROC_BUS_PCI "/proc/bus/pci"'
                echo >>$c '#define PCI_PATH_SYS_BUS_PCI "/sys/bus/pci"'
+               echo >>$c '#define PCI_PATH_DEVMEM_DEVICE "/dev/mem"'
+               echo >>$c '#define PCI_PATH_ACPI_MCFG "/sys/firmware/acpi/tables/MCFG"'
+               echo >>$c '#define PCI_PATH_EFI_SYSTAB "/sys/firmware/efi/systab"'
                case $cpu in
                                i?86|x86_64)    echo_n " i386-ports"
                                                echo >>$c '#define PCI_HAVE_PM_INTEL_CONF'
@@ -95,17 +100,27 @@ case $sys in
                echo >>$c '#define PCI_HAVE_STDINT_H'
                ;;
        freebsd*|kfreebsd*)
-               echo_n " fbsd-device"
+               echo_n " fbsd-device mem-ports ecam"
                echo >>$c '#define PCI_HAVE_PM_FBSD_DEVICE'
+               echo >>$c '#define PCI_HAVE_PM_MMIO_CONF'
+               echo >>$c '#define PCI_HAVE_PM_ECAM'
                echo >>$c '#define PCI_PATH_FBSD_DEVICE "/dev/pci"'
+               echo >>$c '#define PCI_PATH_DEVMEM_DEVICE "/dev/mem"'
+               echo >>$c '#define PCI_PATH_ACPI_MCFG ""'
+               echo >>$c '#define PCI_PATH_EFI_SYSTAB ""'
                if [ "$sys" != "kfreebsd" ] ; then
                        LIBRESOLV=
                fi
                ;;
         openbsd)
-               echo_n " obsd-device"
+               echo_n " obsd-device mem-ports ecam"
                echo >>$c '#define PCI_HAVE_PM_OBSD_DEVICE'
+               echo >>$c '#define PCI_HAVE_PM_MMIO_CONF'
+               echo >>$c '#define PCI_HAVE_PM_ECAM'
                echo >>$c '#define PCI_PATH_OBSD_DEVICE "/dev/pci"'
+               echo >>$c '#define PCI_PATH_DEVMEM_DEVICE "/dev/mem"'
+               echo >>$c '#define PCI_PATH_ACPI_MCFG "/var/db/acpi/MCFG.*"'
+               echo >>$c '#define PCI_PATH_EFI_SYSTAB ""'
                LIBRESOLV=
                ;;
 
@@ -126,9 +141,14 @@ case $sys in
                echo >>$m 'DIRINSTALL=mkdir -p'
                ;;
        netbsd)
-               echo_n " nbsd-libpci"
+               echo_n " nbsd-libpci mem-ports ecam"
                echo >>$c '#define PCI_HAVE_PM_NBSD_LIBPCI'
+               echo >>$c '#define PCI_HAVE_PM_MMIO_CONF'
+               echo >>$c '#define PCI_HAVE_PM_ECAM'
                echo >>$c '#define PCI_PATH_NBSD_DEVICE "/dev/pci0"'
+               echo >>$c '#define PCI_PATH_DEVMEM_DEVICE "/dev/mem"'
+               echo >>$c '#define PCI_PATH_ACPI_MCFG ""'
+               echo >>$c '#define PCI_PATH_EFI_SYSTAB ""'
                echo >>$c '#define PCI_HAVE_64BIT_ADDRESS'
                echo >>$m 'LIBNAME=libpciutils'
                echo >>$m 'WITH_LIBS+=-lpci'
@@ -145,9 +165,10 @@ case $sys in
                EXEEXT=.exe
                ;;
        cygwin|windows)
-               echo_n " win32-cfgmgr32 win32-sysdbg"
+               echo_n " win32-cfgmgr32 win32-kldbg win32-sysdbg"
                echo >>$c '#define PCI_HAVE_64BIT_ADDRESS'
                echo >>$c '#define PCI_HAVE_PM_WIN32_CFGMGR32'
+               echo >>$c '#define PCI_HAVE_PM_WIN32_KLDBG'
                echo >>$c '#define PCI_HAVE_PM_WIN32_SYSDBG'
                # Warning: MinGW-w64 (incorrectly) provides cfgmgr32 functions
                # also in other import libraries, not only in libcfgmgr32.a.
@@ -166,6 +187,7 @@ case $sys in
                fi
                ;; esac
                EXEEXT=.exe
+               LIBEXT=dll
                ;;
        beos|haiku)
                case $cpu in
@@ -239,7 +261,7 @@ if [ "$sys" = linux ] ; then
                PKG_CONFIG=pkg-config
        fi
        if [ "$LIBKMOD" != no ] ; then
-               if ! which $PKG_CONFIG >/dev/null ; then
+               if ! command -v $PKG_CONFIG >/dev/null ; then
                        echo_n "($PKG_CONFIG not found) "
                elif $PKG_CONFIG libkmod ; then
                        LIBKMOD_DETECTED=1
@@ -269,7 +291,7 @@ if [ "$sys" = linux ] ; then
        if [ "$HWDB" = yes -o "$HWDB" = no ] ; then
                echo "$HWDB (set manually)"
        else
-               if `which pkg-config >/dev/null && pkg-config --atleast-version=196 libudev` ; then
+               if `command -v $PKG_CONFIG >/dev/null && $PKG_CONFIG --atleast-version=196 libudev` ; then
                        HWDB=yes
                else
                        HWDB=no
@@ -291,6 +313,8 @@ if [ "$SHARED" = no ] ; then
 else
        if [ "$LIBEXT" = so ]; then
                echo >>$m 'PCILIB=$(LIBNAME).$(LIBEXT).$(VERSION)'
+       elif [ "$LIBEXT" = dll ]; then
+               echo >>$m 'PCILIB=$(LIBNAME)$(ABI_VERSION).$(LIBEXT)'
        else
                echo >>$m 'PCILIB=$(LIBNAME).$(VERSION).$(LIBEXT)'
        fi
@@ -298,11 +322,24 @@ else
        echo >>$m 'LDLIBS='
        echo >>$m 'LIB_LDLIBS=$(WITH_LIBS)'
        echo >>$c '#define PCI_SHARED_LIB'
-       if [ "$SHARED" = yes -a "$LIBEXT" = so ]; then
-               echo >>$m 'SONAME=-Wl,-soname,$(LIBNAME).$(LIBEXT)$(ABI_VERSION)'
+       if [ "$LIBEXT" = so ]; then
+               echo >>$m 'PCILIB_LDFLAGS+=-Wl,-soname,$(LIBNAME).$(LIBEXT).$(ABI_VERSION)'
+               echo >>$m 'PCILIB_LDFLAGS+=-Wl,--version-script=libpci.ver'
+       elif [ "$LIBEXT" = dylib ]; then
+               echo >>$m 'PCILIB_LDFLAGS+=-Wl,-install_name,$(LIBDIR)/$(PCILIB)'
+       elif [ "$LIBEXT" = dll ]; then
+               echo >>$m 'PCIIMPDEF=$(LIBNAME)$(ABI_VERSION).def'
+               # GCC's -fvisibility=hidden is broken for Windows targets, use -Wl,--exclude-all-symbols instead (supported since GNU LD 2.21)
+               echo >>$m 'PCILIB_LDFLAGS+=-Wl,--exclude-all-symbols'
        fi
 fi
 echo >>$m 'PCILIBPC=$(LIBNAME).pc'
 
+if [ "$SHARED" != no ] && [ "$LIBEXT" = dll ]; then
+       echo >>$m 'PCIIMPLIB=$(PCILIB).a'
+else
+       echo >>$m 'PCIIMPLIB=$(PCILIB)'
+fi
+
 echo >>$c "#define PCILIB_VERSION \"$VERSION\""
 sed '/"/{s/^#define \([^ ]*\) "\(.*\)"$/\1=\2/;p;d;};s/^#define \(.*\)/\1=1/' <$c >>$m