]> mj.ucw.cz Git - pciutils.git/blob - lib/configure
Bump the API version (the new API is not cast in stone yet, however).
[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" -o "$sys" = "DragonFly" ]
26 then
27         sys=freebsd
28 fi
29 host=${3:-$cpu-$sys}
30 # CAVEAT: tr on Solaris is a bit weird and the extra [] is otherwise harmless.
31 host=`echo $host | sed 's/^\([^-]*\)-\([^-]*\)$/\1--\2/' | tr '[A-Z]' '[a-z]'`
32 cpu=`echo $host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
33 sys=`echo $host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
34 rel=${4:-$rel}
35 echo " $host $rel"
36 zlib=$5
37
38 c=config.h
39 m=config.mk
40 echo >$c "#define PCI_ARCH_`echo $cpu | tr '[a-z]' '[A-Z]'`"
41 echo >>$c "#define PCI_OS_`echo $sys | tr '[a-z]' '[A-Z]'`"
42 rm -f $m
43
44 echo_n "Looking for access methods..."
45
46 case $sys in
47         linux*)
48                 echo_n " sysfs proc"
49                 echo >>$c '#define PCI_HAVE_PM_LINUX_SYSFS'
50                 echo >>$c '#define PCI_HAVE_PM_LINUX_PROC'
51                 echo >>$c '#define PCI_HAVE_LINUX_BYTEORDER_H'
52                 echo >>$c '#define PCI_PATH_PROC_BUS_PCI "/proc/bus/pci"'
53                 echo >>$c '#define PCI_PATH_SYS_BUS_PCI "/sys/bus/pci"'
54                 case $cpu in
55                                 i386)           echo_n " i386-ports"
56                                                 echo >>$c '#define PCI_HAVE_PM_INTEL_CONF'
57                                                 ;;
58                 esac
59                 echo >>$c '#define PCI_HAVE_64BIT_ADDRESS'
60                 echo >>$c '#define PCI_USE_DNS'
61                 ;;
62         sunos)
63                 case $cpu in
64                                 i386)           echo_n " i386-ports"
65                                                 echo >>$c "#define PCI_HAVE_PM_INTEL_CONF"
66                                                 ;;
67                                 *)
68                                                 echo " The PCI library does not support Solaris for this architecture: $cpu"
69                                                 exit 1
70                                                 ;;
71                 esac
72                 echo >>$c '#define PCI_HAVE_STDINT_H'
73                 echo >>$c '#define PCI_USE_DNS'
74                 ;;
75         freebsd)
76                 echo_n " fbsd-device"
77                 echo >>$c '#define PCI_HAVE_PM_FBSD_DEVICE'
78                 echo >>$c '#define PCI_PATH_FBSD_DEVICE "/dev/pci"'
79                 echo >>$c '#define PCI_USE_DNS'
80                 ;;
81         openbsd)
82                 echo_n " obsd-device"
83                 echo >>$c '#define PCI_HAVE_PM_OBSD_DEVICE'
84                 echo >>$c '#define PCI_PATH_OBSD_DEVICE "/dev/pci"'
85                 echo >>$c '#define PCI_USE_DNS'
86                 ;;
87         aix)
88                 echo_n " aix-device"
89                 echo >>$c '#define PCI_HAVE_PM_AIX_DEVICE'
90                 echo >>$m 'CFLAGS=-g'
91                 echo >>$m 'INSTALL=installbsd'
92                 echo >>$m 'DIRINSTALL=mkdir -p'
93                 ;;
94         netbsd)
95                 echo_n " nbsd-libpci"
96                 echo >>$c '#define PCI_USE_DNS'
97                 echo >>$c '#define PCI_HAVE_PM_NBSD_LIBPCI'
98                 echo >>$c '#define PCI_PATH_NBSD_DEVICE "/dev/pci0"'
99                 echo >>$m 'PCILIB=lib/libpciutils.a'
100                 echo >>$m 'LDLIBS+=-lpci'
101                 ;;
102         gnu)
103                 echo_n " i386-ports"
104                 echo >>$c '#define PCI_HAVE_PM_INTEL_CONF'
105                 echo >>$c '#define PCI_USE_DNS'
106                 ;;
107         *)
108                 echo " Unfortunately, your OS is not supported by the PCI Library"
109                 exit 1
110                 ;;
111 esac
112
113 echo >>$c '#define PCI_HAVE_PM_DUMP'
114 echo " dump"
115
116 echo_n "Checking for zlib support... "
117 if [ "$zlib" = yes -o "$zlib" = no ] ; then
118         echo "$zlib (set manually)"
119 else
120         if [ -f /usr/include/zlib.h ] ; then
121                 zlib=yes
122         else
123                 zlib=no
124         fi
125         echo "$zlib (auto-detected)"
126 fi
127 if [ "$zlib" = yes ] ; then
128         echo >>$c '#define PCI_COMPRESSED_IDS'
129         echo >>$c '#define PCI_IDS "pci.ids.gz"'
130         echo >>$m 'LIBZ=-lz'
131         echo >>$m 'LDLIBS+=$(LIBZ)'
132 else
133         echo >>$c '#define PCI_IDS "pci.ids"'
134 fi
135 echo >>$c "#define PCI_PATH_IDS_DIR \"$idsdir\""
136 echo >>$c "#define PCI_ID_DOMAIN \"pci-id.ucw.cz\""
137
138 echo >>$c "#define PCILIB_VERSION \"$version\""
139 sed '/"/{s/^#define \([^ ]*\) "\(.*\)"$/\1=\2/;p;d;};s/^#define \(.*\)/\1=1/' <$c >>$m