changeset 1833:760affbebb96

Enable modules by default
author Mikael Berthe <mikael@lilotux.net>
date Sat, 27 Mar 2010 15:33:39 +0100
parents 48b265f8c5cb
children d3d4d1c1cb00
files mcabber/configure.ac
diffstat 1 files changed, 3 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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