1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-11-15 09:44:04 +00:00

Enable apcupsd and iostats on Debian GNU/kFreeBSD (sf.net #3525358)

reported by Vincent C.
This commit is contained in:
Pavel Labath 2012-06-03 15:31:11 +02:00
parent e1390cb3e6
commit 68240f4a9e

View File

@ -240,7 +240,7 @@ AC_ARG_ENABLE([apcupsd],
[want_apcupsd="$enableval"], [want_apcupsd=yes])
if test "x$want_apcupsd" = xyes; then
if test x"$uname" != xLinux -a x"$uname" != xFreeBSD; then
if test x"$uname" != xLinux -a x"$uname" != xFreeBSD -a x"$uname" != xGNU/kFreeBSD; then
AC_MSG_NOTICE([apcupsd not supported on $uname... disabling])
want_apcupsd="not supported on $uname"
else
@ -260,7 +260,7 @@ AC_ARG_ENABLE([iostats],
[want_iostats="$enableval"], [want_iostats=yes])
if test "x$want_iostats" = xyes; then
if test x"$uname" != xLinux -a x"$uname" != xFreeBSD; then
if test x"$uname" != xLinux -a x"$uname" != xFreeBSD -a x"$uname" != xGNU/kFreeBSD; then
AC_MSG_NOTICE([iostats not supported on $uname... disabling])
want_iostats="not supported on $uname"
else