2 # Configuration script for the PCI library
3 # (c) 1998--2013 Martin Mares <mj@ucw.cz>
12 if [ -z "$VERSION" ] ; then
13 echo >&2 "Please run the configure script from the top-level Makefile"
17 echo_n "Configuring libpci for your system..."
18 if [ -z "$HOST" ] ; then
22 if [ "$sys" = "AIX" -a -x /usr/bin/oslevel -a -x /usr/sbin/lsattr ]
24 rel=`/usr/bin/oslevel`
25 proc=`/usr/sbin/lsdev -C -c processor -S available -F name | head -1`
26 cpu=`/usr/sbin/lsattr -F value -l $proc -a type | sed 's/_.*//'`
28 cpu=`uname -m | sed 's/^i.86-AT386/i386/;s/^i.86$/i386/;s/^sun4u$/sparc64/;s/^i86pc$/i386/;s/^BePC$/i386/;s/^BeMac$/powerpc/;s/^BeBox$/powerpc/'`
30 if [ "$sys" = "DragonFly" ]
34 if [ "$sys" = "GNU/kFreeBSD" ]
42 if [ "$sys" = "CYGWIN_NT-5.1" -o "$sys" = "CYGWIN_NT-6.0" ]
48 [ -n "$RELEASE" ] && rel="${RELEASE}"
49 # CAVEAT: tr on Solaris is a bit weird and the extra [] is otherwise harmless.
50 host=`echo $HOST | sed -e 's/^\([^-]*\)-\([^-]*\)-\([^-]*\)-\([^-]*\)$/\1-\3/' -e 's/^\([^-]*\)-\([^-]*\)-\([^-]*\)$/\1-\2/' -e 's/^\([^-]*\)-\([^-]*\)$/\1--\2/' | tr '[A-Z]' '[a-z]'`
51 cpu=`echo $host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
52 sys=`echo $host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
53 echo " $host $rel $cpu $sys"
57 echo >$c '#define PCI_CONFIG_H'
58 echo >>$c "#define PCI_ARCH_`echo $cpu | tr '[a-z]' '[A-Z]'`"
59 echo >>$c "#define PCI_OS_`echo $sys | tr '[a-z]' '[A-Z]'`"
62 echo_n "Looking for access methods..."
66 SYSINCLUDE=/usr/include
71 echo_n " sysfs proc mem-ports ecam"
72 echo >>$c '#define PCI_HAVE_PM_LINUX_SYSFS'
73 echo >>$c '#define PCI_HAVE_PM_LINUX_PROC'
74 echo >>$c '#define PCI_HAVE_PM_MMIO_CONF'
75 echo >>$c '#define PCI_HAVE_PM_ECAM'
76 echo >>$c '#define PCI_HAVE_LINUX_BYTEORDER_H'
77 echo >>$c '#define PCI_PATH_PROC_BUS_PCI "/proc/bus/pci"'
78 echo >>$c '#define PCI_PATH_SYS_BUS_PCI "/sys/bus/pci"'
79 echo >>$c '#define PCI_PATH_DEVMEM_DEVICE "/dev/mem"'
80 echo >>$c '#define PCI_PATH_ACPI_MCFG "/sys/firmware/acpi/tables/MCFG"'
81 echo >>$c '#define PCI_PATH_EFI_SYSTAB "/sys/firmware/efi/systab"'
83 i?86|x86_64) echo_n " i386-ports"
84 echo >>$c '#define PCI_HAVE_PM_INTEL_CONF'
87 echo >>$c '#define PCI_HAVE_64BIT_ADDRESS'
92 i?86) echo_n " i386-ports"
93 echo >>$c "#define PCI_HAVE_PM_INTEL_CONF"
96 echo " The PCI library does not support Solaris for this architecture: $cpu"
100 echo >>$c '#define PCI_HAVE_STDINT_H'
103 echo_n " fbsd-device mem-ports ecam"
104 echo >>$c '#define PCI_HAVE_PM_FBSD_DEVICE'
105 echo >>$c '#define PCI_HAVE_PM_MMIO_CONF'
106 echo >>$c '#define PCI_HAVE_PM_ECAM'
107 echo >>$c '#define PCI_PATH_FBSD_DEVICE "/dev/pci"'
108 echo >>$c '#define PCI_PATH_DEVMEM_DEVICE "/dev/mem"'
109 echo >>$c '#define PCI_PATH_ACPI_MCFG ""'
110 echo >>$c '#define PCI_PATH_EFI_SYSTAB ""'
111 if [ "$sys" != "kfreebsd" ] ; then
116 echo_n " obsd-device mem-ports ecam"
117 echo >>$c '#define PCI_HAVE_PM_OBSD_DEVICE'
118 echo >>$c '#define PCI_HAVE_PM_MMIO_CONF'
119 echo >>$c '#define PCI_HAVE_PM_ECAM'
120 echo >>$c '#define PCI_PATH_OBSD_DEVICE "/dev/pci"'
121 echo >>$c '#define PCI_PATH_DEVMEM_DEVICE "/dev/mem"'
122 echo >>$c '#define PCI_PATH_ACPI_MCFG "/var/db/acpi/MCFG.*"'
123 echo >>$c '#define PCI_PATH_EFI_SYSTAB ""'
125 i386|amd64) echo_n " i386-ports"
126 echo >>$c '#define PCI_HAVE_PM_INTEL_CONF'
127 echo >>$m 'WITH_LIBS+=-l'$cpu
135 echo >>$c '#define PCI_HAVE_PM_DARWIN_DEVICE'
136 echo >>$m 'WITH_LIBS+=-lresolv -framework CoreFoundation -framework IOKit'
137 echo >>$c '#define PCI_HAVE_64BIT_ADDRESS'
140 SYSINCLUDE=$(xcrun --sdk macosx --show-sdk-path)/usr/include
144 echo >>$c '#define PCI_HAVE_PM_AIX_DEVICE'
145 echo >>$m 'CFLAGS=-g'
146 echo >>$m 'INSTALL=installbsd'
147 echo >>$m 'DIRINSTALL=mkdir -p'
150 echo_n " nbsd-libpci mem-ports ecam"
151 echo >>$c '#define PCI_HAVE_PM_NBSD_LIBPCI'
152 echo >>$c '#define PCI_HAVE_PM_MMIO_CONF'
153 echo >>$c '#define PCI_HAVE_PM_ECAM'
154 echo >>$c '#define PCI_PATH_NBSD_DEVICE "/dev/pci0"'
155 echo >>$c '#define PCI_PATH_DEVMEM_DEVICE "/dev/mem"'
156 echo >>$c '#define PCI_PATH_ACPI_MCFG ""'
157 echo >>$c '#define PCI_PATH_EFI_SYSTAB ""'
158 echo >>$c '#define PCI_HAVE_64BIT_ADDRESS'
159 echo >>$m 'LIBNAME=libpciutils'
160 echo >>$m 'WITH_LIBS+=-lpci'
164 echo_n " hurd i386-ports"
165 echo >>$c '#define PCI_HAVE_PM_HURD_CONF'
166 echo >>$c '#define PCI_HAVE_PM_INTEL_CONF'
170 echo >>$c '#define PCI_HAVE_PM_INTEL_CONF'
174 echo_n " win32-cfgmgr32 win32-kldbg win32-sysdbg"
175 echo >>$c '#define PCI_HAVE_64BIT_ADDRESS'
176 echo >>$c '#define PCI_HAVE_PM_WIN32_CFGMGR32'
177 echo >>$c '#define PCI_HAVE_PM_WIN32_KLDBG'
178 echo >>$c '#define PCI_HAVE_PM_WIN32_SYSDBG'
179 # Warning: MinGW-w64 (incorrectly) provides cfgmgr32 functions
180 # also in other import libraries, not only in libcfgmgr32.a.
181 # So always set -lcfgmgr32 as a first library parameter which
182 # instruct linker to prefer symbols from cfgmgr32.dll.
183 echo >>$m 'WITH_LIBS+=-lcfgmgr32'
184 case $cpu in i?86|x86_64)
186 echo >>$c '#define PCI_HAVE_PM_INTEL_CONF'
187 if [ "$sys" = "cygwin" ] ; then
188 # ioperm is cygwin specific library and used only by lib/i386-io-cygwin.h
189 echo >>$m 'WITH_LIBS+=-lioperm'
190 elif [ "$sys" = "windows" ] ; then
191 # advapi32 is windows system library and used only by lib/i386-io-windows.h
192 echo >>$m 'WITH_LIBS+=-ladvapi32'
200 i?86|x86_64) echo_n " i386-ports"
201 echo >>$c '#define PCI_HAVE_PM_INTEL_CONF'
204 echo >>$c '#define PCI_HAVE_STDINT_H'
207 echo >>$c '#define PCI_PATH_SYLIXOS_DEVICE "/proc/pci"'
208 echo >>$c '#define PCI_HAVE_64BIT_ADDRESS'
209 echo >>$c '#define PCI_HAVE_PM_SYLIXOS_DEVICE'
214 echo " Unfortunately, your OS is not supported by the PCI Library"
219 echo >>$m "LIBEXT="$LIBEXT
220 echo >>$m "EXEEXT="$EXEEXT
221 echo >>$m "LSPCIDIR=\$($LSPCIDIR)"
222 echo >>$c '#define PCI_HAVE_PM_DUMP'
225 echo_n "Checking for zlib support... "
226 if [ "$ZLIB" = yes -o "$ZLIB" = no ] ; then
227 echo "$ZLIB (set manually)"
229 if [ -f "$SYSINCLUDE/zlib.h" -o -f /usr/local/include/zlib.h ] ; then
234 echo "$ZLIB (auto-detected)"
236 if [ "$ZLIB" = yes ] ; then
237 echo >>$c '#define PCI_COMPRESSED_IDS'
238 echo >>$c '#define PCI_IDS "pci.ids.gz"'
240 echo >>$m 'WITH_LIBS+=$(LIBZ)'
242 echo >>$c '#define PCI_IDS "pci.ids"'
244 echo >>$c "#define PCI_PATH_IDS_DIR \"$IDSDIR\""
246 echo_n "Checking for DNS support... "
247 if [ "$DNS" = yes -o "$DNS" = no ] ; then
248 echo "$DNS (set manually)"
250 if [ "$sys" != "windows" -a -f "$SYSINCLUDE/resolv.h" ] ; then
255 echo "$DNS (auto-detected)"
257 if [ "$DNS" = yes ] ; then
258 echo >>$c "#define PCI_USE_DNS"
259 echo >>$c "#define PCI_ID_DOMAIN \"pci.id.ucw.cz\""
260 echo >>$m "WITH_LIBS+=$LIBRESOLV"
263 if [ "$sys" = linux ] ; then
264 echo_n "Checking for libkmod... "
266 if [ -z "$PKG_CONFIG" ] ; then
267 PKG_CONFIG=pkg-config
269 if [ "$LIBKMOD" != no ] ; then
270 if ! command -v $PKG_CONFIG >/dev/null ; then
271 echo_n "($PKG_CONFIG not found) "
272 elif $PKG_CONFIG libkmod ; then
276 if [ "$LIBKMOD" = yes -o "$LIBKMOD" = no ] ; then
277 echo "$LIBKMOD (set manually)"
278 if [ "$LIBKMOD" = yes -a -z "$LIBKMOD_DETECTED" ] ; then
279 echo "Requested use of libkmod, but it is not available. Giving up."
283 if [ -n "$LIBKMOD_DETECTED" ] ; then
288 echo "$LIBKMOD (auto-detected)"
290 if [ "$LIBKMOD" = yes ] ; then
291 echo >>$c "#define PCI_USE_LIBKMOD"
292 echo >>$m "LIBKMOD_CFLAGS=$($PKG_CONFIG --cflags libkmod)"
293 echo >>$m "LIBKMOD_LIBS=$($PKG_CONFIG --libs libkmod)"
296 echo_n "Checking for udev hwdb support... "
297 if [ "$HWDB" = yes -o "$HWDB" = no ] ; then
298 echo "$HWDB (set manually)"
300 if `command -v $PKG_CONFIG >/dev/null && $PKG_CONFIG --atleast-version=196 libudev` ; then
305 echo "$HWDB (auto-detected)"
307 if [ "$HWDB" = yes ] ; then
308 echo >>$c '#define PCI_HAVE_HWDB'
309 echo >>$m 'LIBUDEV=-ludev'
310 echo >>$m 'WITH_LIBS+=$(LIBUDEV)'
314 echo "Checking whether to build a shared library... $SHARED (set manually)"
315 if [ "$SHARED" = no ] ; then
316 echo >>$m 'PCILIB=$(LIBNAME).a'
317 echo >>$m 'LDLIBS=$(WITH_LIBS)'
318 echo >>$m 'LIB_LDLIBS='
320 if [ "$LIBEXT" = so ]; then
321 echo >>$m 'PCILIB=$(LIBNAME).$(LIBEXT).$(VERSION)'
322 elif [ "$LIBEXT" = dll ]; then
323 echo >>$m 'PCILIB=$(LIBNAME)$(ABI_VERSION).$(LIBEXT)'
325 echo >>$m 'PCILIB=$(LIBNAME).$(VERSION).$(LIBEXT)'
327 # We link the dependencies _to_ the library, so we do not need explicit deps in .pc
329 echo >>$m 'LIB_LDLIBS=$(WITH_LIBS)'
330 echo >>$c '#define PCI_SHARED_LIB'
331 if [ "$LIBEXT" = so ]; then
332 echo >>$m 'PCILIB_LDFLAGS+=-Wl,-soname,$(LIBNAME).$(LIBEXT).$(ABI_VERSION)'
333 echo >>$m 'PCILIB_LDFLAGS+=-Wl,--version-script=libpci.ver'
334 elif [ "$LIBEXT" = dylib ]; then
335 echo >>$m 'PCILIB_LDFLAGS+=-Wl,-install_name,$(LIBDIR)/$(PCILIB)'
336 elif [ "$LIBEXT" = dll ]; then
337 echo >>$m 'PCIIMPDEF=$(LIBNAME)$(ABI_VERSION).def'
338 # GCC's -fvisibility=hidden is broken for Windows targets, use -Wl,--exclude-all-symbols instead (supported since GNU LD 2.21)
339 echo >>$m 'PCILIB_LDFLAGS+=-Wl,--exclude-all-symbols'
342 echo >>$m 'PCILIBPC=$(LIBNAME).pc'
344 if [ "$SHARED" != no ] && [ "$LIBEXT" = dll ]; then
345 echo >>$m 'PCIIMPLIB=$(PCILIB).a'
347 echo >>$m 'PCIIMPLIB=$(PCILIB)'
350 echo >>$c "#define PCILIB_VERSION \"$VERSION\""
351 sed '/"/{s/^#define \([^ ]*\) "\(.*\)"$/\1=\2/;p;d;};s/^#define \(.*\)/\1=1/' <$c >>$m