From 93824788030b71b634f10b5ececbb2e8cf1a815a Mon Sep 17 00:00:00 2001 From: Sebastian Kemper Date: Tue, 2 Oct 2018 20:25:51 +0200 Subject: [PATCH] yate: revert to internal regex implementation MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Robert Högberg found that the regex implementation in musl isn't fully compatible with yate, leading to unexpected regexp results. Fix this by using the internal regex. Signed-off-by: Sebastian Kemper --- net/yate/Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/net/yate/Makefile b/net/yate/Makefile index 86c2e91..17ec20f 100644 --- a/net/yate/Makefile +++ b/net/yate/Makefile @@ -10,7 +10,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=yate PKG_VERSION:=6.0.0-1 -PKG_RELEASE:=9 +PKG_RELEASE:=10 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=http://yate.null.ro/tarballs/yate6/ @@ -123,6 +123,10 @@ CONFIGURE_ARGS+= \ --without-doxygen \ --without-kdoc +# The regexp implementation of musl 1.1.19 is not fully compatible with yate +CONFIGURE_ARGS+= \ + --enable-internalregex + ifneq ($(CONFIG_PACKAGE_$(PKG_NAME)-mod-isaccodec),) CONFIGURE_ARGS+=$(if $(CONFIG_SOFT_FLOAT),--disable-isac-float --enable-isac-fixed,--disable-isac-fixed --enable-isac-float) else -- 2.30.2