mirror of
https://github.com/openwrt/telephony.git
synced 2026-04-15 19:02:14 +00:00
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 <sebastian_ml@gmx.net>
This commit is contained in:
16
net/baresip/patches/002-fix-rem-include.patch
Normal file
16
net/baresip/patches/002-fix-rem-include.patch
Normal file
@@ -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++
|
||||
Reference in New Issue
Block a user