mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 15:51:11 +00:00
938884918c
Original commit message from CVS: * configure.ac: * gst/gstvalue.c: (gst_value_compare_enum), (gst_value_serialize_enum), (gst_value_deserialize_enum), (gst_value_can_compare), (gst_value_compare): * testsuite/Makefile.am: Fix enum serialization, deserialization, comparison in caps, add a test to ensure that this continues working in the future.
38 lines
696 B
Makefile
38 lines
696 B
Makefile
include Rules
|
|
|
|
|
|
if GST_DISABLE_PARSE
|
|
GST_PARSE_DIRS =
|
|
else
|
|
GST_PARSE_DIRS = parse
|
|
endif
|
|
|
|
if GST_DISABLE_GST_DEBUG
|
|
GST_DEBUG_DIRS =
|
|
else
|
|
GST_DEBUG_DIRS = debug
|
|
endif
|
|
|
|
SUBDIRS = \
|
|
bins bytestream caps cleanup clock \
|
|
$(GST_DEBUG_DIRS) \
|
|
dlopen dynparams \
|
|
elements enumcaps ghostpads indexers negotiation \
|
|
$(GST_PARSE_DIRS) \
|
|
plugin refcounting schedulers tags threads
|
|
|
|
DIST_SUBDIRS = \
|
|
bins bytestream caps cleanup clock \
|
|
debug \
|
|
dlopen dynparams \
|
|
elements enumcaps ghostpads indexers negotiation \
|
|
parse \
|
|
plugin refcounting schedulers tags threads
|
|
|
|
tests_pass = test_gst_init
|
|
tests_fail =
|
|
tests_ignore =
|
|
|
|
# we makes them, we gots to clean them
|
|
CLEANFILES += test-registry.xml
|
|
|