]> mj.ucw.cz Git - pciutils.git/blob - lib/configure
Added support for SunOS/i386
[pciutils.git] / lib / configure
1 #!/bin/sh
2
3 echo_n() {
4         if [ -n "$BASH" ]
5         then
6                 echo -n "$*"
7         else
8                 echo "$*\c"
9         fi
10 }
11
12 echo_n "Configuring libpci for your system..."
13 sharedir=${1:-/usr/share}
14 version=${2:-0.0}
15 sys=`uname -s`
16 rel=`uname -r`
17 if [ "$sys" = "AIX" -a -x /usr/bin/oslevel -a -x /usr/sbin/lsattr ]
18 then
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/_.*//'`
22 else
23         cpu=`uname -m | sed 's/^i.86$/i386/;s/^sun4u$/sparc64/;s/^i86pc$/i386/'`
24 fi
25 echo " $sys/$cpu $rel"
26
27 c=config.h
28 echo >$c "#define ARCH_`echo $cpu | tr 'a-z' 'A-Z'`"
29 echo >>$c "#define OS_`echo $sys | tr 'a-z' 'A-Z'`"
30
31 echo_n "Looking for access methods..."
32
33 case $sys in
34         Linux)
35                 case $rel in
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"'
40                                                 ok=1
41                                                 ;;
42                 esac
43                 case $cpu in
44                                 i386)           echo_n " i386-ports"
45                                                 echo >>$c '#define HAVE_PM_INTEL_CONF'
46                                                 ok=1
47                                                 ;;
48                                 alpha|ia64|sparc|sparc64)
49                                                 echo >>$c '#define HAVE_64BIT_ADDRESS'
50                                                 ;;
51                 esac
52                 ;;
53         SunOS)
54                 case $cpu in
55                                 i386)           echo_n " i386-ports"
56                                                 echo >>$c "#define HAVE_PM_INTEL_CONF"
57                                                 ok=1
58                                                 ;;
59                                 *)
60                                                 echo " The PCI library is does not support Solaris for this architecture: $cpu"
61                                                 exit 1
62                                                 ;;
63                 esac
64                 ;;
65                 
66         FreeBSD)
67                 echo_n " fbsd-device"
68                 echo >>$c '#define HAVE_PM_FBSD_DEVICE'
69                 echo >>$c '#define PATH_FBSD_DEVICE "/dev/pci"'
70                 ok=1
71                 ;;
72         AIX)
73                 echo_n " aix-device"
74                 echo >>$c '#define HAVE_PM_AIX_DEVICE'
75                 ok=1
76                 ;;
77         NetBSD)
78                 echo_n " nbsd-libpci"
79                 echo >>$c '#define HAVE_PM_NBSD_LIBPCI'
80                 echo >>$c '#define PATH_NBSD_DEVICE "/dev/pci0"'
81                 ok=1
82                 ;;
83         GNU)
84                 echo_n " i386-ports"
85                 echo >>$c '#define HAVE_PM_INTEL_CONF'
86                 ok=1
87                 ;;
88         *)
89                 echo " Unfortunately, your OS is not supported by the PCI Library"
90                 exit 1
91                 ;;
92 esac
93
94 echo >>$c '#define HAVE_PM_DUMP'
95 echo " dump"
96 if [ -z "$ok" ] ; then
97         echo "WARNING: No real configuration access method is available."
98 fi
99 echo >>$c "#define PATH_PCI_IDS \"$sharedir/pci.ids\""
100 echo >>$c "#define PCILIB_VERSION \"$version\""
101 sed '/^#define [^ ]*$/!d;s/^#define \(.*\)/\1=1/' <$c >config.mk