Skip to content

Commit

Permalink
Revert "build: by default disable also the verbose mode for autoconf"
Browse files Browse the repository at this point in the history
Verbose logging shouldn't require a rebuild, as it can help debugging
user problems.

This reverts commit 397e318.
  • Loading branch information
cwendling authored and raveit65 committed Apr 20, 2023
1 parent fb7950e commit a7a1ca6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,9 @@ MARCO_PC_MODULES="gtk+-3.0 >= $GTK_MIN_VERSION gio-2.0 >= $GIO_MIN_VERSION pango
GLIB_GSETTINGS

AC_ARG_ENABLE(verbose-mode,
AS_HELP_STRING([--enable-verbose-mode],
[enable marco's ability to do verbose logging, for embedded/size-sensitive custom builds]),,
enable_verbose_mode=no)
AS_HELP_STRING([--disable-verbose-mode],
[disable marco's ability to do verbose logging, for embedded/size-sensitive custom builds]),,
enable_verbose_mode=yes)

if test x$enable_verbose_mode = xyes; then
AC_DEFINE(WITH_VERBOSE_MODE,1,[Build with verbose mode support])
Expand Down

0 comments on commit a7a1ca6

Please sign in to comment.