# HG changeset patch # User Mikael Berthe # Date 1269700419 -3600 # Node ID 760affbebb9603f9ccc1101a9ed6d3cf4332b8c9 # Parent 48b265f8c5cbebafce71a326399f417ea32317e9 Enable modules by default diff -r 48b265f8c5cb -r 760affbebb96 mcabber/configure.ac --- a/mcabber/configure.ac Sat Mar 27 14:38:07 2010 +0100 +++ b/mcabber/configure.ac Sat Mar 27 15:33:39 2010 +0100 @@ -131,9 +131,10 @@ [Define if ncurses has ESCDELAY variable]) fi -AC_ARG_ENABLE(modules, [ --enable-modules enable dynamic modules loading], +AC_ARG_ENABLE(modules, AC_HELP_STRING([--disable-modules], + [disable dynamic modules loading]), enable_modules=$enableval) -if test "x$enable_modules" = "xyes"; then +if test "x$enable_modules" != "xno"; then AC_DEFINE(MODULES_ENABLE, 1, [Define if you want dynamic modules loading]) gmodule_module=gmodule else