aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorJérôme Sautret <jerome.sautret@process-one.net>2020-04-29 10:29:05 +0200
committerGitHub <noreply@github.com>2020-04-29 10:29:05 +0200
commit0539637d30b8468313cfeb9c8293c88d8aaee882 (patch)
tree7e059e76b29b31049249f643522dd33dedefbb13 /configure.ac
parentRewrite sentences in modules options examples, to not break Docs indentation (diff)
parentEnable STUN/TURN by default (diff)
Merge pull request #3232 from weiss/enable-stun
Enable STUN/TURN support by default
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index c46c6bf35..d87fcd46a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -213,12 +213,12 @@ AC_ARG_ENABLE(system_deps,
esac],[if test "x$system_deps" = "x"; then system_deps=false; fi])
AC_ARG_ENABLE(stun,
-[AC_HELP_STRING([--enable-stun], [enable STUN/TURN support (default: no)])],
+[AC_HELP_STRING([--enable-stun], [enable STUN/TURN support (default: yes)])],
[case "${enableval}" in
yes) stun=true ;;
no) stun=false ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-stun) ;;
-esac],[if test "x$stun" = "x"; then stun=false; fi])
+esac],[if test "x$stun" = "x"; then stun=true; fi])
AC_ARG_ENABLE(sip,
[AC_HELP_STRING([--enable-sip], [enable SIP support (default: no)])],