From e2f01e4e76d96ae784a13518cb28f86b4813eec6 Mon Sep 17 00:00:00 2001 From: Sebastian Kemper Date: Sun, 26 Nov 2017 23:04:17 +0100 Subject: [PATCH] baresip: build fix The package currently fails to build because librem headers cannot be found. For reasons unknown baresip searches in SYSROOT instead of SYSROOT_ALT for them. Fix this by patching the Makefile. Signed-off-by: Sebastian Kemper --- net/baresip/patches/002-fix-rem-include.patch | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 net/baresip/patches/002-fix-rem-include.patch diff --git a/net/baresip/patches/002-fix-rem-include.patch b/net/baresip/patches/002-fix-rem-include.patch new file mode 100644 index 0000000..d2b85c1 --- /dev/null +++ b/net/baresip/patches/002-fix-rem-include.patch @@ -0,0 +1,16 @@ +--- a/Makefile ++++ b/Makefile +@@ -48,11 +48,11 @@ endif + + CFLAGS += -I. -Iinclude -I$(LIBRE_INC) -I$(SYSROOT)/include + CFLAGS += -I$(LIBREM_PATH)/include +-CFLAGS += -I$(SYSROOT)/local/include/rem -I$(SYSROOT)/include/rem ++CFLAGS += -I$(SYSROOT)/local/include/rem -I$(SYSROOT_ALT)/include/rem + + CXXFLAGS += -I. -Iinclude -I$(LIBRE_INC) + CXXFLAGS += -I$(LIBREM_PATH)/include +-CXXFLAGS += -I$(SYSROOT)/local/include/rem -I$(SYSROOT)/include/rem ++CXXFLAGS += -I$(SYSROOT)/local/include/rem -I$(SYSROOT_ALT)/include/rem + CXXFLAGS += $(EXTRA_CXXFLAGS) + + # XXX: common for C/C++ -- 2.30.2