12 echo_n "Configuring libpci for your system..."
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/'`
25 echo " $sys/$cpu $rel"
28 echo >$c "#define ARCH_`echo $cpu | tr 'a-z' 'A-Z'`"
29 echo >>$c "#define OS_`echo $sys | tr 'a-z' 'A-Z'`"
31 echo_n "Looking for access methods..."
36 2.[1-9]*|[3-9]*) echo_n " proc"
37 echo >>$c '#define HAVE_PM_LINUX_PROC'
38 echo >>$c '#define HAVE_LINUX_BYTEORDER_H'
39 echo >>$c '#define PATH_PROC_BUS_PCI "/proc/bus/pci"'
44 i386) echo_n " i386-ports"
45 echo >>$c '#define HAVE_PM_INTEL_CONF'
48 alpha|ia64) echo >>$c '#define HAVE_64BIT_ADDRESS'
50 # echo >>$c '#define HAVE_PM_SYSCALLS'
53 sparc|sparc64) echo >>$c '#define HAVE_64BIT_ADDRESS'
54 echo >>$c '#define HAVE_LONG_ADDRESS'
56 # echo >>$c '#define HAVE_PM_SYSCALLS'
63 echo >>$c '#define HAVE_PM_FBSD_DEVICE'
64 echo >>$c '#define PATH_FBSD_DEVICE "/dev/pci"'
69 echo >>$c '#define HAVE_PM_AIX_DEVICE'
74 echo >>$c '#define HAVE_PM_NBSD_LIBPCI'
75 echo >>$c '#define PATH_NBSD_DEVICE "/dev/pci0"'
79 echo " The PCI library currently supports only Linux, AIX, FreeBSD and NetBSD"
84 echo >>$c '#define HAVE_PM_DUMP'
86 if [ -z "$ok" ] ; then
87 echo "WARNING: No real configuration access method is available."
89 echo >>$c "#define PATH_PCI_IDS \"$prefix/share/pci.ids\""
90 echo >>$c "#define PCILIB_VERSION \"$version\""
91 sed '/^#define [^ ]*$/!d;s/^#define \(.*\)/\1=1/' <$c >config.mk