12 echo_n "Configuring libpci for your system..."
13 idsdir=${1:-/usr/share}
17 if [ "$sys" = "AIX" -a -x /usr/bin/oslevel -a -x /usr/sbin/lsattr ]
19 rel=`/usr/bin/oslevel`
20 proc=`/usr/sbin/lsdev -C -c processor -S available -F name | head -1`
21 cpu=`/usr/sbin/lsattr -F value -l $proc -a type | sed 's/_.*//'`
23 cpu=`uname -m | sed 's/^i.86$/i386/;s/^sun4u$/sparc64/;s/^i86pc$/i386/'`
25 if [ "$sys" = "GNU/kFreeBSD" ]
30 host=`echo $host | sed 's/^\([^-]*\)-\([^-]*\)$/\1--\2/' | tr 'A-Z' 'a-z'`
31 cpu=`echo $host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
32 sys=`echo $host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
39 echo >$c "#define PCI_ARCH_`echo $cpu | tr 'a-z' 'A-Z'`"
40 echo >>$c "#define PCI_OS_`echo $sys | tr 'a-z' 'A-Z'`"
43 echo_n "Looking for access methods..."
48 echo >>$c '#define PCI_HAVE_PM_LINUX_SYSFS'
49 echo >>$c '#define PCI_HAVE_PM_LINUX_PROC'
50 echo >>$c '#define PCI_HAVE_LINUX_BYTEORDER_H'
51 echo >>$c '#define PCI_PATH_PROC_BUS_PCI "/proc/bus/pci"'
52 echo >>$c '#define PCI_PATH_SYS_BUS_PCI "/sys/bus/pci"'
54 i386) echo_n " i386-ports"
55 echo >>$c '#define PCI_HAVE_PM_INTEL_CONF'
58 echo >>$c '#define PCI_HAVE_64BIT_ADDRESS'
62 i386) echo_n " i386-ports"
63 echo >>$c "#define PCI_HAVE_PM_INTEL_CONF"
66 echo " The PCI library is does not support Solaris for this architecture: $cpu"
73 echo >>$c '#define PCI_HAVE_PM_FBSD_DEVICE'
74 echo >>$c '#define PCI_PATH_FBSD_DEVICE "/dev/pci"'
78 echo >>$c '#define PCI_HAVE_PM_OBSD_DEVICE'
79 echo >>$c '#define PCI_PATH_OBSD_DEVICE "/dev/pci"'
83 echo >>$c '#define PCI_HAVE_PM_AIX_DEVICE'
85 echo >>$m 'INSTALL=installbsd'
86 echo >>$m 'DIRINSTALL=mkdir -p'
90 echo >>$c '#define PCI_HAVE_PM_NBSD_LIBPCI'
91 echo >>$c '#define PCI_PATH_NBSD_DEVICE "/dev/pci0"'
92 echo >>$m 'PCILIB=lib/libpciutils.a'
93 echo >>$m 'LDFLAGS+=-lpci'
97 echo >>$c '#define PCI_HAVE_PM_INTEL_CONF'
100 echo " Unfortunately, your OS is not supported by the PCI Library"
105 echo >>$c '#define PCI_HAVE_PM_DUMP'
108 echo_n "Checking for zlib support... "
109 if [ "$zlib" = yes -o "$zlib" = no ] ; then
110 echo "$zlib (set manually)"
112 if [ -f /usr/include/zlib.h ] ; then
117 echo "$zlib (auto-detected)"
119 if [ "$zlib" = yes ] ; then
120 echo >>$c '#define PCI_COMPRESSED_IDS'
121 echo >>$c '#define PCI_IDS "pci.ids.gz"'
122 echo >>$m 'LDFLAGS+=-lz'
124 echo >>$c '#define PCI_IDS "pci.ids"'
126 echo >>$c "#define PCI_PATH_IDS_DIR \"$idsdir\""
128 echo >>$c "#define PCILIB_VERSION \"$version\""
129 sed '/"/{s/^#define \([^ ]*\) "\(.*\)"$/\1=\2/;p;d;};s/^#define \(.*\)/\1=1/' <$c >>$m