mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 03:19:40 +00:00
4ce91b98f0
+ And implement a corrupt-socket-recv action + Only compile this on Linux, LD_PRELOAD won't work on Windows. For now the registering of the action is done through a call to socket_interposer_init, this will get better when we refactor the action logic. https://bugzilla.gnome.org/show_bug.cgi?id=743871
18 lines
775 B
Makefile
18 lines
775 B
Makefile
bin_PROGRAMS = \
|
|
gst-validate-@GST_API_VERSION@ \
|
|
gst-validate-transcoding-@GST_API_VERSION@ \
|
|
gst-validate-media-check-@GST_API_VERSION@
|
|
|
|
bin_SCRIPTS = \
|
|
gst-validate-launcher
|
|
|
|
AM_CFLAGS = $(GST_ALL_CFLAGS) $(GST_PBUTILS_CFLAGS) $(GST_VIDEO_CFLAGS)
|
|
LDADD = $(top_builddir)/gst/validate/libgstvalidate-@GST_API_VERSION@.la $(GST_PBUTILS_LIBS) $(GST_LIBS) $(GST_VIDEO_LIBS) $(FAULTINJECTION_LIBS)
|
|
|
|
gst_validate_@GST_API_VERSION@_SOURCES = gst-validate.c
|
|
gst_validate_@GST_API_VERSION@_CFLAGS = $(GIO_CFLAGS) $(AM_CFLAGS)
|
|
gst_validate_@GST_API_VERSION@_LDADD = $(GIO_LIBS) $(LDADD)
|
|
gst_validate_transcoding_@GST_API_VERSION@_SOURCES = gst-validate-transcoding.c
|
|
gst_validate_media_check_@GST_API_VERSION@_SOURCES = gst-validate-media-check.c
|
|
|
|
CLEANFILES = $(bin_SCRIPTS)
|