From 55a388a9070ff69ae1ed1b0eff3712bdcc0a4529 Mon Sep 17 00:00:00 2001 From: Brenden Matthews Date: Tue, 28 Apr 2009 15:20:58 -0600 Subject: [PATCH] Disable config-output on FreeBSD. --- configure.ac.in | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/configure.ac.in b/configure.ac.in index b55dd022..c2c911b6 100644 --- a/configure.ac.in +++ b/configure.ac.in @@ -55,7 +55,8 @@ case $uname in FreeBSD*|GNU/kFreeBSD*) WANT_KVM=yes WANT_DEVSTAT=yes - ;; + want_config_output=no + ;; # NetBSD*) # WANT_KVM=yes # WANT_OSSLIB=yes @@ -95,7 +96,7 @@ dnl BUILD_CONFIG_OUTPUT option dnl 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]) AM_CONDITIONAL(BUILD_CONFIG_OUTPUT, test x$want_config_output = xyes)