From 09aef36d27982284b2196c685d561078e50b077b Mon Sep 17 00:00:00 2001 From: Sebastian Kemper Date: Sun, 26 Nov 2017 23:03:15 +0100 Subject: [PATCH] baresip: add patch to fix ld call ld expects '-shared' when called with '--export-dynamic'. Patch the Makefile accordingly. Signed-off-by: Sebastian Kemper --- net/baresip/patches/001-fix-linker-call.patch | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 net/baresip/patches/001-fix-linker-call.patch 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 +