mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 19:31:12 +00:00
20acc0ae7e
Original commit message from CVS: * configure.ac: Add -no-undefined to GST_PLUGIN_LDFLAGS (bug #316076) * gst/base/Makefile.am: Add -no-undefined to LDFLAGS for libs * gst/check/Makefile.am: * libs/gst/controller/Makefile.am: * libs/gst/dataprotocol/Makefile.am:
16 lines
667 B
Makefile
16 lines
667 B
Makefile
lib_LTLIBRARIES = libgstdataprotocol-@GST_MAJORMINOR@.la
|
|
|
|
libgstdataprotocol_@GST_MAJORMINOR@_includedir = $(includedir)/gstreamer-@GST_MAJORMINOR@/gst/dataprotocol
|
|
libgstdataprotocol_@GST_MAJORMINOR@_include_HEADERS = \
|
|
dataprotocol.h
|
|
noinst_HEADERS = dp-private.h
|
|
|
|
libgstdataprotocol_@GST_MAJORMINOR@_la_SOURCES = \
|
|
dataprotocol.c
|
|
|
|
# remove GST_ENABLE_NEW when dataprotocol has been declared API-stable
|
|
libgstdataprotocol_@GST_MAJORMINOR@_la_CFLAGS = $(GST_OBJ_CFLAGS) -I$(top_srcdir)/libs -DGST_ENABLE_NEW
|
|
libgstdataprotocol_@GST_MAJORMINOR@_la_LDFLAGS = @GST_LIB_LDFLAGS@ \
|
|
-no-undefined
|
|
libgstdataprotocol_@GST_MAJORMINOR@_la_LIBADD = $(GST_OBJ_LIBS)
|
|
|