From: Christoph Reiter Date: Sun, 5 May 2019 10:34:23 +0000 (+0200) Subject: autotools: gstsctp: set LDFLAGS X-Git-Tag: accepted/tizen/unified/20220217.153506~2^2~10^2~9^2~12^2~2^2~90^2~1^2~101 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3432778c0454c71a6e33a340c72f3c99920c74dd;p=platform%2Fupstream%2Fgstreamer.git autotools: gstsctp: set LDFLAGS This fixes the mingw build which failed because of "-no-undefined" missing. --- diff --git a/gst-libs/gst/sctp/Makefile.am b/gst-libs/gst/sctp/Makefile.am index 4648e9c..afc2c34 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 \