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:
31 lines
800 B
Makefile
31 lines
800 B
Makefile
lib_LTLIBRARIES = libgstbase-@GST_MAJORMINOR@.la
|
|
|
|
libgstbase_@GST_MAJORMINOR@_la_DEPENDENCIES = \
|
|
../libgstreamer-@GST_MAJORMINOR@.la
|
|
libgstbase_@GST_MAJORMINOR@_la_SOURCES = \
|
|
gstadapter.c \
|
|
gstbasesink.c \
|
|
gstbasesrc.c \
|
|
gstbasetransform.c \
|
|
gstcollectpads.c \
|
|
gstpushsrc.c \
|
|
gsttypefindhelper.c
|
|
|
|
libgstbase_@GST_MAJORMINOR@_la_CFLAGS = $(GST_OBJ_CFLAGS)
|
|
libgstbase_@GST_MAJORMINOR@_la_LIBADD = $(GST_OBJ_LIBS) \
|
|
../libgstreamer-@GST_MAJORMINOR@.la
|
|
libgstbase_@GST_MAJORMINOR@_la_LDFLAGS = \
|
|
-no-undefined
|
|
|
|
libgstbase_@GST_MAJORMINOR@includedir = \
|
|
$(includedir)/gstreamer-@GST_MAJORMINOR@/gst/base
|
|
|
|
libgstbase_@GST_MAJORMINOR@include_HEADERS = \
|
|
gstadapter.h \
|
|
gstbasesink.h \
|
|
gstbasesrc.h \
|
|
gstbasetransform.h \
|
|
gstcollectpads.h \
|
|
gstpushsrc.h \
|
|
gsttypefindhelper.h
|
|
|