summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 5b9d0a2)
raw | patch | inline | side by side (parent: 5b9d0a2)
author | Florian Forster <octo@leeloo.lan.home.verplant.org> | |
Sat, 10 Feb 2007 09:39:50 +0000 (10:39 +0100) | ||
committer | Florian Forster <octo@leeloo.lan.home.verplant.org> | |
Sat, 10 Feb 2007 09:39:50 +0000 (10:39 +0100) |
configure.in | patch | blob | history |
diff --git a/configure.in b/configure.in
index 1b0a91faf38e1c9192a092d0a828686366b9a2ce..e30aaa977eed093a0bc08937cb70ff234a2ba5df 100644 (file)
--- a/configure.in
+++ b/configure.in
if test "x$with_kstat" = "xyes"
then
- AC_CHECK_LIB(kstat, kstat_open,, [with_kstat="no (libkstat not found)"])
+ AC_CHECK_LIB(kstat, kstat_open, [with_kstat="yes"], [with_kstat="no (libkstat not found)"], [])
fi
if test "x$with_kstat" = "xyes"
then
- AC_CHECK_LIB(devinfo, di_init,, [with_devinfo="no (not found)"])
+ AC_CHECK_LIB(devinfo, di_init, [with_devinfo="yes"], [with_devinfo="no (not found)"], [])
AC_CHECK_HEADERS(kstat.h,, [with_kstat="no (kstat.h not found)"])
fi
if test "x$with_kstat" = "xyes"