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"
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_LINUX_BYTEORDER_H'
76 echo >>$c '#define PCI_PATH_PROC_BUS_PCI "/proc/bus/pci"'
77 echo >>$c '#define PCI_PATH_SYS_BUS_PCI "/sys/bus/pci"'
78 echo >>$c '#define PCI_PATH_DEVMEM_DEVICE "/dev/mem"'
80 i?86|x86_64) echo_n " i386-ports"
81 echo >>$c '#define PCI_HAVE_PM_INTEL_CONF'
84 echo >>$c '#define PCI_HAVE_64BIT_ADDRESS'
89 i?86) echo_n " i386-ports"
90 echo >>$c "#define PCI_HAVE_PM_INTEL_CONF"
93 echo " The PCI library does not support Solaris for this architecture: $cpu"
97 echo >>$c '#define PCI_HAVE_STDINT_H'
100 echo_n " fbsd-device mem-ports"
101 echo >>$c '#define PCI_HAVE_PM_FBSD_DEVICE'
102 echo >>$c '#define PCI_HAVE_PM_MMIO_CONF'
103 echo >>$c '#define PCI_PATH_FBSD_DEVICE "/dev/pci"'
104 echo >>$c '#define PCI_PATH_DEVMEM_DEVICE "/dev/mem"'
105 if [ "$sys" != "kfreebsd" ] ; then
110 echo_n " obsd-device mem-ports"
111 echo >>$c '#define PCI_HAVE_PM_OBSD_DEVICE'
112 echo >>$c '#define PCI_HAVE_PM_MMIO_CONF'
113 echo >>$c '#define PCI_PATH_OBSD_DEVICE "/dev/pci"'
114 echo >>$c '#define PCI_PATH_DEVMEM_DEVICE "/dev/mem"'
120 echo >>$c '#define PCI_HAVE_PM_DARWIN_DEVICE'
121 echo >>$c '#define PCI_HAVE_PM_MMIO_CONF'
122 echo >>$c '#define PCI_PATH_DEVMEM_DEVICE "/dev/mem"'
123 echo >>$m 'WITH_LIBS+=-lresolv -framework CoreFoundation -framework IOKit'
124 echo >>$c '#define PCI_HAVE_64BIT_ADDRESS'
127 SYSINCLUDE=$(xcrun --sdk macosx --show-sdk-path)/usr/include
131 echo >>$c '#define PCI_HAVE_PM_AIX_DEVICE'
132 echo >>$c '#define PCI_HAVE_PM_MMIO_CONF'
133 echo >>$c '#define PCI_PATH_DEVMEM_DEVICE "/dev/mem"'
134 echo >>$m 'CFLAGS=-g'
135 echo >>$m 'INSTALL=installbsd'
136 echo >>$m 'DIRINSTALL=mkdir -p'
139 echo_n " nbsd-libpci mem-ports"
140 echo >>$c '#define PCI_HAVE_PM_NBSD_LIBPCI'
141 echo >>$c '#define PCI_HAVE_PM_MMIO_CONF'
142 echo >>$c '#define PCI_PATH_NBSD_DEVICE "/dev/pci0"'
143 echo >>$c '#define PCI_PATH_DEVMEM_DEVICE "/dev/mem"'
144 echo >>$c '#define PCI_HAVE_64BIT_ADDRESS'
145 echo >>$m 'LIBNAME=libpciutils'
146 echo >>$m 'WITH_LIBS+=-lpci'
150 echo_n " hurd i386-ports"
151 echo >>$c '#define PCI_HAVE_PM_HURD_CONF'
152 echo >>$c '#define PCI_HAVE_PM_INTEL_CONF'
153 echo >>$c '#define PCI_HAVE_PM_MMIO_CONF'
154 echo >>$c '#define PCI_PATH_DEVMEM_DEVICE "/dev/mem"'
158 echo >>$c '#define PCI_HAVE_PM_INTEL_CONF'
162 echo_n " win32-cfgmgr32 win32-sysdbg"
163 echo >>$c '#define PCI_HAVE_64BIT_ADDRESS'
164 echo >>$c '#define PCI_HAVE_PM_WIN32_CFGMGR32'
165 echo >>$c '#define PCI_HAVE_PM_WIN32_SYSDBG'
166 # Warning: MinGW-w64 (incorrectly) provides cfgmgr32 functions
167 # also in other import libraries, not only in libcfgmgr32.a.
168 # So always set -lcfgmgr32 as a first library parameter which
169 # instruct linker to prefer symbols from cfgmgr32.dll.
170 echo >>$m 'WITH_LIBS+=-lcfgmgr32'
171 case $cpu in i?86|x86_64)
173 echo >>$c '#define PCI_HAVE_PM_INTEL_CONF'
174 if [ "$sys" = "cygwin" ] ; then
175 # ioperm is cygwin specific library and used only by lib/i386-io-cygwin.h
176 echo >>$m 'WITH_LIBS+=-lioperm'
177 elif [ "$sys" = "windows" ] ; then
178 # advapi32 is windows system library and used only by lib/i386-io-windows.h
179 echo >>$m 'WITH_LIBS+=-ladvapi32'
187 i?86|x86_64) echo_n " i386-ports"
188 echo >>$c '#define PCI_HAVE_PM_INTEL_CONF'
191 echo >>$c '#define PCI_HAVE_PM_MMIO_CONF'
192 echo >>$c '#define PCI_PATH_DEVMEM_DEVICE "/dev/misc/mem"'
193 echo >>$c '#define PCI_HAVE_STDINT_H'
196 echo >>$c '#define PCI_PATH_SYLIXOS_DEVICE "/proc/pci"'
197 echo >>$c '#define PCI_HAVE_64BIT_ADDRESS'
198 echo >>$c '#define PCI_HAVE_PM_SYLIXOS_DEVICE'
203 echo " Unfortunately, your OS is not supported by the PCI Library"
208 echo >>$m "LIBEXT="$LIBEXT
209 echo >>$m "EXEEXT="$EXEEXT
210 echo >>$m "LSPCIDIR=\$($LSPCIDIR)"
211 echo >>$c '#define PCI_HAVE_PM_DUMP'
214 echo_n "Checking for zlib support... "
215 if [ "$ZLIB" = yes -o "$ZLIB" = no ] ; then
216 echo "$ZLIB (set manually)"
218 if [ -f "$SYSINCLUDE/zlib.h" -o -f /usr/local/include/zlib.h ] ; then
223 echo "$ZLIB (auto-detected)"
225 if [ "$ZLIB" = yes ] ; then
226 echo >>$c '#define PCI_COMPRESSED_IDS'
227 echo >>$c '#define PCI_IDS "pci.ids.gz"'
229 echo >>$m 'WITH_LIBS+=$(LIBZ)'
231 echo >>$c '#define PCI_IDS "pci.ids"'
233 echo >>$c "#define PCI_PATH_IDS_DIR \"$IDSDIR\""
235 echo_n "Checking for DNS support... "
236 if [ "$DNS" = yes -o "$DNS" = no ] ; then
237 echo "$DNS (set manually)"
239 if [ "$sys" != "windows" -a -f "$SYSINCLUDE/resolv.h" ] ; then
244 echo "$DNS (auto-detected)"
246 if [ "$DNS" = yes ] ; then
247 echo >>$c "#define PCI_USE_DNS"
248 echo >>$c "#define PCI_ID_DOMAIN \"pci.id.ucw.cz\""
249 echo >>$m "WITH_LIBS+=$LIBRESOLV"
252 if [ "$sys" = linux ] ; then
253 echo_n "Checking for libkmod... "
255 if [ -z "$PKG_CONFIG" ] ; then
256 PKG_CONFIG=pkg-config
258 if [ "$LIBKMOD" != no ] ; then
259 if ! command -v $PKG_CONFIG >/dev/null ; then
260 echo_n "($PKG_CONFIG not found) "
261 elif $PKG_CONFIG libkmod ; then
265 if [ "$LIBKMOD" = yes -o "$LIBKMOD" = no ] ; then
266 echo "$LIBKMOD (set manually)"
267 if [ "$LIBKMOD" = yes -a -z "$LIBKMOD_DETECTED" ] ; then
268 echo "Requested use of libkmod, but it is not available. Giving up."
272 if [ -n "$LIBKMOD_DETECTED" ] ; then
277 echo "$LIBKMOD (auto-detected)"
279 if [ "$LIBKMOD" = yes ] ; then
280 echo >>$c "#define PCI_USE_LIBKMOD"
281 echo >>$m "LIBKMOD_CFLAGS=$($PKG_CONFIG --cflags libkmod)"
282 echo >>$m "LIBKMOD_LIBS=$($PKG_CONFIG --libs libkmod)"
285 echo_n "Checking for udev hwdb support... "
286 if [ "$HWDB" = yes -o "$HWDB" = no ] ; then
287 echo "$HWDB (set manually)"
289 if `command -v $PKG_CONFIG >/dev/null && $PKG_CONFIG --atleast-version=196 libudev` ; then
294 echo "$HWDB (auto-detected)"
296 if [ "$HWDB" = yes ] ; then
297 echo >>$c '#define PCI_HAVE_HWDB'
298 echo >>$m 'LIBUDEV=-ludev'
299 echo >>$m 'WITH_LIBS+=$(LIBUDEV)'
303 echo "Checking whether to build a shared library... $SHARED (set manually)"
304 if [ "$SHARED" = no ] ; then
305 echo >>$m 'PCILIB=$(LIBNAME).a'
306 echo >>$m 'LDLIBS=$(WITH_LIBS)'
307 echo >>$m 'LIB_LDLIBS='
309 if [ "$LIBEXT" = so ]; then
310 echo >>$m 'PCILIB=$(LIBNAME).$(LIBEXT).$(VERSION)'
311 elif [ "$LIBEXT" = dll ]; then
312 echo >>$m 'PCILIB=$(LIBNAME)$(ABI_VERSION).$(LIBEXT)'
314 echo >>$m 'PCILIB=$(LIBNAME).$(VERSION).$(LIBEXT)'
316 # We link the dependencies _to_ the library, so we do not need explicit deps in .pc
318 echo >>$m 'LIB_LDLIBS=$(WITH_LIBS)'
319 echo >>$c '#define PCI_SHARED_LIB'
320 if [ "$LIBEXT" = so ]; then
321 echo >>$m 'PCILIB_LDFLAGS+=-Wl,-soname,$(LIBNAME).$(LIBEXT).$(ABI_VERSION)'
322 echo >>$m 'PCILIB_LDFLAGS+=-Wl,--version-script=libpci.ver'
323 elif [ "$LIBEXT" = dylib ]; then
324 echo >>$m 'PCILIB_LDFLAGS+=-Wl,-install_name,$(LIBDIR)/$(PCILIB)'
325 elif [ "$LIBEXT" = dll ]; then
326 echo >>$m 'PCIIMPDEF=$(LIBNAME)$(ABI_VERSION).def'
327 # GCC's -fvisibility=hidden is broken for Windows targets, use -Wl,--exclude-all-symbols instead (supported since GNU LD 2.21)
328 echo >>$m 'PCILIB_LDFLAGS+=-Wl,--exclude-all-symbols'
331 echo >>$m 'PCILIBPC=$(LIBNAME).pc'
333 if [ "$SHARED" != no ] && [ "$LIBEXT" = dll ]; then
334 echo >>$m 'PCIIMPLIB=$(PCILIB).a'
336 echo >>$m 'PCIIMPLIB=$(PCILIB)'
339 echo >>$c "#define PCILIB_VERSION \"$VERSION\""
340 sed '/"/{s/^#define \([^ ]*\) "\(.*\)"$/\1=\2/;p;d;};s/^#define \(.*\)/\1=1/' <$c >>$m