aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorHolger Weiss <holger@zedat.fu-berlin.de>2015-01-20 11:50:11 +0100
committerHolger Weiss <holger@zedat.fu-berlin.de>2015-01-20 11:50:11 +0100
commitcc7b68b7c5652ca5dab4508d46897bbf1af4436b (patch)
tree78091a23c05edea3a5a79e488c324b011223c8e2 /configure.ac
parentMerge pull request #409 from hamano/scram-stringprep-checking (diff)
Enable transient supervisors by default
Some features (e.g., "ejabberdctl incoming_s2s_number") don't work with transient supervisors disabled.
Diffstat (limited to '')
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 874597d84..f8a83926b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -82,12 +82,12 @@ AC_ARG_ENABLE(roster_gateway_workaround,
esac],[roster_gateway_workaround=false])
AC_ARG_ENABLE(transient_supervisors,
-[AC_HELP_STRING([--enable-transient_supervisors], [use Erlang supervision for transient process (default: no)])],
+[AC_HELP_STRING([--disable-transient_supervisors], [disable Erlang supervision for transient process (default: no)])],
[case "${enableval}" in
yes) transient_supervisors=true ;;
no) transient_supervisors=false ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-transient_supervisors) ;;
-esac],[transient_supervisors=false])
+esac],[transient_supervisors=true])
AC_ARG_ENABLE(full_xml,
[AC_HELP_STRING([--enable-full-xml], [use XML features in XMPP stream (ex: CDATA) (default: no, requires XML compliant clients)])],