From: Sebastian Kemper Date: Sun, 26 Nov 2017 22:03:15 +0000 (+0100) Subject: baresip: add patch to fix ld call X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=09aef36d27982284b2196c685d561078e50b077b;p=feed%2Ftelephony.git baresip: add patch to fix ld call ld expects '-shared' when called with '--export-dynamic'. Patch the Makefile accordingly. Signed-off-by: Sebastian Kemper --- diff --git a/net/baresip/patches/001-fix-linker-call.patch b/net/baresip/patches/001-fix-linker-call.patch new file mode 100644 index 0000000..0df5ced --- /dev/null +++ b/net/baresip/patches/001-fix-linker-call.patch @@ -0,0 +1,14 @@ +--- a/Makefile ++++ b/Makefile +@@ -199,9 +199,9 @@ libbaresip.pc: + $(BIN): $(APP_OBJS) + @echo " LD $@" + ifneq ($(GPROF),) +- $(HIDE)$(LD) $(LFLAGS) $(APP_LFLAGS) $^ ../re/libre.a $(LIBS) -o $@ ++ $(HIDE)$(LD) $(LFLAGS) $(SH_LFLAGS) $(APP_LFLAGS) $^ ../re/libre.a $(LIBS) -o $@ + else +- $(HIDE)$(LD) $(LFLAGS) $(APP_LFLAGS) $^ \ ++ $(HIDE)$(LD) $(LFLAGS) $(SH_LFLAGS) $(APP_LFLAGS) $^ \ + -L$(LIBRE_SO) -lre $(LIBS) -o $@ + endif +