From 3a5bcfc59310b7093f828e902883314623d60662 Mon Sep 17 00:00:00 2001 From: Christoph Reiter Date: Sun, 5 May 2019 12:34:23 +0200 Subject: [PATCH] autotools: gstsctp: set LDFLAGS This fixes the mingw build which failed because of "-no-undefined" missing. --- gst-libs/gst/sctp/Makefile.am | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/gst-libs/gst/sctp/Makefile.am b/gst-libs/gst/sctp/Makefile.am index 4648e9c876..afc2c34fba 100644 --- a/gst-libs/gst/sctp/Makefile.am +++ b/gst-libs/gst/sctp/Makefile.am @@ -14,6 +14,11 @@ libgstsctp_1_0_la_CFLAGS = \ libgstsctp_1_0_la_LIBADD = $(GST_LIBS) $(GST_BASE_LIBS) +libgstsctp_1_0_la_LDFLAGS = \ + $(GST_LIB_LDFLAGS) \ + $(GST_ALL_LDFLAGS) \ + $(GST_LT_LDFLAGS) + libgstsctp_1_0_includedir = $(includedir)/gstreamer-1.0/gst/sctp libgstsctp_1_0_include_HEADERS = \ sctpsendmeta.h \