1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-11-17 18:45:10 +00:00

Disable config-output on FreeBSD.

This commit is contained in:
Brenden Matthews 2009-04-28 15:20:58 -06:00
parent ff9154216b
commit 55a388a907

View File

@ -55,6 +55,7 @@ case $uname in
FreeBSD*|GNU/kFreeBSD*) FreeBSD*|GNU/kFreeBSD*)
WANT_KVM=yes WANT_KVM=yes
WANT_DEVSTAT=yes WANT_DEVSTAT=yes
want_config_output=no
;; ;;
# NetBSD*) # NetBSD*)
# WANT_KVM=yes # WANT_KVM=yes
@ -95,7 +96,7 @@ dnl BUILD_CONFIG_OUTPUT option
dnl dnl
AC_ARG_ENABLE([config_output], AC_ARG_ENABLE([config_output],
AC_HELP_STRING([--disable-config-output], [disable if you do not want conky to output a default config (with -C) @<:@default=yes@:>@]), AC_HELP_STRING([--disable-config-output], [disable if you do not want conky to output a default config (with -C) Note: not available on FreeBSD @<:@default=yes@:>@]),
[want_config_output="$enableval"], [want_config_output=yes]) [want_config_output="$enableval"], [want_config_output=yes])
AM_CONDITIONAL(BUILD_CONFIG_OUTPUT, test x$want_config_output = xyes) AM_CONDITIONAL(BUILD_CONFIG_OUTPUT, test x$want_config_output = xyes)