aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVadim Yanitskiy <axilirator@gmail.com>2018-06-30 21:31:01 +0700
committerHarald Welte <laforge@gnumonks.org>2018-07-03 17:03:28 +0000
commit27bc25cd9fce2eb455782059ddd2517d0507a400 (patch)
tree5eebb43c4f769b0b97a9213495f6eed1460a84d3
parent664a866d596142f51b08c3b3a59d107eb4bc8883 (diff)
configure.ac: disable building libgsmhr by default
At the moment, Half Rate codec support is limited. There are still some issues with encoding of the reference files (see OS#2514), and moreover AddressSanitizer is not happy about libgsmhr... Change-Id: Ib86f3f972fc31c7eedf7ed75a7c356ac62e47dc6 Related: OS#2514
-rw-r--r--configure.ac6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index 8b6a489..6551ae6 100644
--- a/configure.ac
+++ b/configure.ac
@@ -27,10 +27,10 @@ AC_CONFIG_FILES([
# Options
AC_ARG_ENABLE(gsmhr,
[AS_HELP_STRING(
- [--disable-gsmhr],
- [Disable support for GSM HR codec using reference code]
+ [--enable-gsmhr],
+ [Enable support for GSM HR codec using GSM 06.06 reference code]
)],
- [enable_gsmhr=$enableval], [enable_gsmhr="yes"])
+ [enable_gsmhr="yes"], [enable_gsmhr=$enableval])
AM_CONDITIONAL(ENABLE_GSMHR, test "x$enable_gsmhr" = "xyes")
if test "x$enable_gsmhr" = "xyes"; then
AM_PATH_PYTHON([2.4])