]> mj.ucw.cz Git - pciutils.git/blobdiff - lib/configure
Added support for GNU Hurd
[pciutils.git] / lib / configure
index 74284bb78870bc89a70de8ca38ec3578f599b452..c169c8bc5fd16b43590fc68d1e72d62f2943a60c 100755 (executable)
@@ -10,7 +10,7 @@ echo_n() {
 }
 
 echo_n "Configuring libpci for your system..."
-prefix=${1:-/usr}
+sharedir=${1:-/usr/share}
 version=${2:-0.0}
 sys=`uname -s`
 rel=`uname -r`
@@ -69,8 +69,13 @@ case $sys in
                echo >>$c '#define PATH_NBSD_DEVICE "/dev/pci0"'
                ok=1
                ;;
+       GNU)
+               echo_n " intel-conf"
+               echo >>$c '#define HAVE_PM_INTEL_CONF'
+               ok=1
+               ;;
         *)
-               echo " The PCI library currently supports only Linux, AIX, FreeBSD and NetBSD"
+               echo " Unfortunately, your OS is not supported by the PCI Library"
                exit 1
                ;;
 esac
@@ -80,6 +85,6 @@ echo " dump"
 if [ -z "$ok" ] ; then
        echo "WARNING: No real configuration access method is available."
 fi
-echo >>$c "#define PATH_PCI_IDS \"$prefix/share/pci.ids\""
+echo >>$c "#define PATH_PCI_IDS \"$sharedir/pci.ids\""
 echo >>$c "#define PCILIB_VERSION \"$version\""
 sed '/^#define [^ ]*$/!d;s/^#define \(.*\)/\1=1/' <$c >config.mk