From 04527e08b80400fc87e5c3a27ac3945759dd7875 Mon Sep 17 00:00:00 2001 From: Daniel Golle Date: Sun, 28 Jun 2015 20:46:11 +0200 Subject: [PATCH] baresip: fix build with musl alsa-lib needs _GNU_SOURCE to be set for integer types to be defined. Signed-off-by: Daniel Golle --- net/baresip/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/baresip/Makefile b/net/baresip/Makefile index a78089d..3c086a5 100644 --- a/net/baresip/Makefile +++ b/net/baresip/Makefile @@ -72,7 +72,7 @@ BARESIP_MOD_OPTIONS:= \ MOD_AUTODETECT= \ $(foreach m,$(baresip-mods),$(baresip-mod-$(m))=$(if $(CONFIG_PACKAGE_baresip-mod-$(m)),1)) -TARGET_CFLAGS += $(FPIC) +TARGET_CFLAGS += $(FPIC) -D_GNU_SOURCE define Build/Compile $(MAKE) -C $(PKG_BUILD_DIR) \