]> mj.ucw.cz Git - pciutils.git/blob - lib/configure
Don't check Linux kernel version.
[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 idsdir=${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 if [ "$sys" = "GNU/kFreeBSD" ]
26 then
27         sys=freebsd
28 fi
29 host=${3:-$cpu-$sys}
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/'`
33 rel=${4:-$rel}
34 echo " $host $rel"
35 zlib=$5
36
37 c=config.h
38 echo >$c "#define PCI_ARCH_`echo $cpu | tr 'a-z' 'A-Z'`"
39 echo >>$c "#define PCI_OS_`echo $sys | tr 'a-z' 'A-Z'`"
40
41 echo_n "Looking for access methods..."
42
43 case $sys in
44         linux*)
45                 echo_n " sysfs proc"
46                 echo >>$c '#define PCI_HAVE_PM_LINUX_SYSFS'
47                 echo >>$c '#define PCI_HAVE_PM_LINUX_PROC'
48                 echo >>$c '#define PCI_HAVE_LINUX_BYTEORDER_H'
49                 echo >>$c '#define PCI_PATH_PROC_BUS_PCI "/proc/bus/pci"'
50                 echo >>$c '#define PCI_PATH_SYS_BUS_PCI "/sys/bus/pci"'
51                 case $cpu in
52                                 i386)           echo_n " i386-ports"
53                                                 echo >>$c '#define PCI_HAVE_PM_INTEL_CONF'
54                                                 ;;
55                 esac
56                 echo >>$c '#define PCI_HAVE_64BIT_ADDRESS'
57                 ;;
58         sunos)
59                 case $cpu in
60                                 i386)           echo_n " i386-ports"
61                                                 echo >>$c "#define PCI_HAVE_PM_INTEL_CONF"
62                                                 ;;
63                                 *)
64                                                 echo " The PCI library is does not support Solaris for this architecture: $cpu"
65                                                 exit 1
66                                                 ;;
67                 esac
68                 ;;
69         freebsd)
70                 echo_n " fbsd-device"
71                 echo >>$c '#define PCI_HAVE_PM_FBSD_DEVICE'
72                 echo >>$c '#define PCI_PATH_FBSD_DEVICE "/dev/pci"'
73                 ;;
74         openbsd)
75                 echo_n " obsd-device"
76                 echo >>$c '#define PCI_HAVE_PM_OBSD_DEVICE'
77                 echo >>$c '#define PCI_PATH_OBSD_DEVICE "/dev/pci"'
78                 ;;
79         aix)
80                 echo_n " aix-device"
81                 echo >>$c '#define PCI_HAVE_PM_AIX_DEVICE'
82                 ;;
83         netbsd)
84                 echo_n " nbsd-libpci"
85                 echo >>$c '#define PCI_HAVE_PM_NBSD_LIBPCI'
86                 echo >>$c '#define PCI_PATH_NBSD_DEVICE "/dev/pci0"'
87                 ;;
88         gnu)
89                 echo_n " i386-ports"
90                 echo >>$c '#define PCI_HAVE_PM_INTEL_CONF'
91                 ;;
92         *)
93                 echo " Unfortunately, your OS is not supported by the PCI Library"
94                 exit 1
95                 ;;
96 esac
97
98 echo >>$c '#define PCI_HAVE_PM_DUMP'
99 echo " dump"
100
101 echo_n "Checking for zlib support... "
102 if [ "$zlib" = yes -o "$zlib" = no ] ; then
103         echo "$zlib (set manually)"
104 else
105         if [ -f /usr/include/zlib.h ] ; then
106                 zlib=yes
107         else
108                 zlib=no
109         fi
110         echo "$zlib (auto-detected)"
111 fi
112 if [ "$zlib" = yes ] ; then
113         echo >>$c '#define PCI_COMPRESSED_IDS'
114         echo >>$c "#define PCI_IDS \"pci.ids.gz\""
115 else
116         echo >>$c "#define PCI_IDS \"pci.ids\""
117 fi
118 echo >>$c "#define PCI_PATH_IDS_DIR \"$idsdir\""
119
120 echo >>$c "#define PCILIB_VERSION \"$version\""
121 sed '/"/{s/^#define \([^ ]*\) "\(.*\)"$/\1=\2/;p;d;};s/^#define \(.*\)/\1=1/' <$c >config.mk