Build fix for config output.
authorBrenden Matthews <brenden@rty.ca>
Sun, 14 Dec 2008 03:16:34 +0000 (20:16 -0700)
committerBrenden Matthews <brenden@rty.ca>
Sun, 14 Dec 2008 03:16:34 +0000 (20:16 -0700)
configure.ac.in

index ee750ed..0d43984 100644 (file)
@@ -91,17 +91,16 @@ AC_SUBST(BUILD_ARCH)
 
 
 dnl
-dnl CONFIG_OUTPUT option
+dnl BUILD_CONFIG_OUTPUT option
 dnl
 
 AC_ARG_ENABLE([config_output],
-             AC_HELP_STRING([--enable-config-output],
-                            [enable printing a default config if requested @<:@default=no@:>@]),
-             [want_config_output="$enableval"], [want_config_output=no])
+              AC_HELP_STRING([--disable-config-output], [disable if you do not want conky to output a default config (with -C) @<:@default=yes@:>@]),
+              [want_config_output="$enableval"], [want_config_output=yes])
 
 AM_CONDITIONAL(BUILD_CONFIG_OUTPUT, test x$want_config_output = xyes)
 if test x$want_config_output = xyes; then
-       AC_DEFINE(CONFIG_OUTPUT, 1, [Define if you want default config printing support])
+  AC_DEFINE(CONFIG_OUTPUT, 1, [Define if you want conky to output a default config (with -C)])
 fi
 
 dnl