From edd47e20a8044428d8ebaae56d3750a677fad9d6 Mon Sep 17 00:00:00 2001 From: Josef Schlehofer Date: Wed, 15 Dec 2021 13:32:04 +0100 Subject: [PATCH] baresip: fix compilation with NLS Fixes issue: /master/build/staging_dir/toolchain-arm_cortex-a9+vfpv3-d16_gcc-11.2.0_musl_eabi/lib/gcc/arm-openwrt-linux-muslgnueabi/11.2.0/../../../../arm-openwrt-linux-muslgnueabi/bin/ld: cannot find -lintl LD [M] speex_pp.so LD [M] stdio.so collect2: error: ld returned 1 exit status LD [M] syslog.so make[3]: *** [mk/mod.mk:41: gst.so] Error 1 make[3]: *** Waiting for unfinished jobs.... make[3]: Leaving directory '/master/build/build_dir/target-arm_cortex-a9+vfpv3-d16_musl_eabi/baresip-1.1.0' Signed-off-by: Josef Schlehofer --- net/baresip/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/net/baresip/Makefile b/net/baresip/Makefile index f687913..31fc32f 100644 --- a/net/baresip/Makefile +++ b/net/baresip/Makefile @@ -61,6 +61,7 @@ PKG_CONFIG_DEPENDS:= \ $(patsubst %,CONFIG_PACKAGE_baresip-mod-%,$(subst _,-,$(baresip-mods))) include $(INCLUDE_DIR)/package.mk +include $(INCLUDE_DIR)/nls.mk define Package/baresip/Default SECTION:=net -- 2.30.2