mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-03 14:08:56 +00:00
Makefile.am: don't run checks if we don't have check
Original commit message from CVS: * Makefile.am: don't run checks if we don't have check * common/check.mak: remove the registry when running make torture * docs/gst/gstreamer-sections.txt: remove second multiply * gst/gstqueue.c: (gst_queue_loop): fix a compile warning when disabling debug
This commit is contained in:
parent
9f5ea35423
commit
eaf17081ca
6 changed files with 28 additions and 9 deletions
11
ChangeLog
11
ChangeLog
|
@ -1,3 +1,14 @@
|
||||||
|
2005-11-28 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||||
|
|
||||||
|
* Makefile.am:
|
||||||
|
don't run checks if we don't have check
|
||||||
|
* common/check.mak:
|
||||||
|
remove the registry when running make torture
|
||||||
|
* docs/gst/gstreamer-sections.txt:
|
||||||
|
remove second multiply
|
||||||
|
* gst/gstqueue.c: (gst_queue_loop):
|
||||||
|
fix a compile warning when disabling debug
|
||||||
|
|
||||||
2005-11-28 Jan Schmidt <thaytan@mad.scientist.com>
|
2005-11-28 Jan Schmidt <thaytan@mad.scientist.com>
|
||||||
|
|
||||||
* gst/gstinfo.h:
|
* gst/gstinfo.h:
|
||||||
|
|
10
Makefile.am
10
Makefile.am
|
@ -117,11 +117,21 @@ check-coverage:
|
||||||
echo "Need to reconfigure with --enable-gcov"
|
echo "Need to reconfigure with --enable-gcov"
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
if HAVE_CHECK
|
||||||
check-valgrind:
|
check-valgrind:
|
||||||
cd check && make check-valgrind
|
cd check && make check-valgrind
|
||||||
|
|
||||||
check-torture:
|
check-torture:
|
||||||
cd check && make torture
|
cd check && make torture
|
||||||
|
else
|
||||||
|
check-valgrind:
|
||||||
|
echo "You need to install the 'check' library"
|
||||||
|
exit 1
|
||||||
|
|
||||||
|
check-torture:
|
||||||
|
echo "You need to install the 'check' library"
|
||||||
|
exit 1
|
||||||
|
endif
|
||||||
|
|
||||||
win32-update:
|
win32-update:
|
||||||
for f in gstversion.h gstenumtypes.c gstenumtypes.h; do \
|
for f in gstversion.h gstenumtypes.c gstenumtypes.h; do \
|
||||||
|
|
2
common
2
common
|
@ -1 +1 @@
|
||||||
Subproject commit b0b08bcd66ca385364b6f90663585b09693aec67
|
Subproject commit f31468e933b5b980398cf636a37abf16ca46c4a0
|
|
@ -2137,8 +2137,6 @@ gst_value_set_fraction_range
|
||||||
gst_value_get_fraction_range_min
|
gst_value_get_fraction_range_min
|
||||||
gst_value_get_fraction_range_max
|
gst_value_get_fraction_range_max
|
||||||
gst_value_set_fraction_range_full
|
gst_value_set_fraction_range_full
|
||||||
gst_value_fraction_multiply
|
|
||||||
|
|
||||||
|
|
||||||
<SUBSECTION date>
|
<SUBSECTION date>
|
||||||
GST_VALUE_HOLDS_DATE
|
GST_VALUE_HOLDS_DATE
|
||||||
|
|
|
@ -854,11 +854,11 @@ restart:
|
||||||
|
|
||||||
out_flushing:
|
out_flushing:
|
||||||
{
|
{
|
||||||
const gchar *flowname = gst_flow_get_name (queue->srcresult);
|
|
||||||
|
|
||||||
gst_pad_pause_task (queue->srcpad);
|
gst_pad_pause_task (queue->srcpad);
|
||||||
GST_CAT_LOG_OBJECT (queue_dataflow, queue,
|
GST_CAT_LOG_OBJECT (queue_dataflow, queue,
|
||||||
"exit because task paused, reason: %s", flowname);
|
"exit because task paused, reason: %s",
|
||||||
|
gst_flow_get_name (queue->srcresult));
|
||||||
|
|
||||||
GST_QUEUE_MUTEX_UNLOCK (queue);
|
GST_QUEUE_MUTEX_UNLOCK (queue);
|
||||||
|
|
||||||
return;
|
return;
|
||||||
|
|
|
@ -854,11 +854,11 @@ restart:
|
||||||
|
|
||||||
out_flushing:
|
out_flushing:
|
||||||
{
|
{
|
||||||
const gchar *flowname = gst_flow_get_name (queue->srcresult);
|
|
||||||
|
|
||||||
gst_pad_pause_task (queue->srcpad);
|
gst_pad_pause_task (queue->srcpad);
|
||||||
GST_CAT_LOG_OBJECT (queue_dataflow, queue,
|
GST_CAT_LOG_OBJECT (queue_dataflow, queue,
|
||||||
"exit because task paused, reason: %s", flowname);
|
"exit because task paused, reason: %s",
|
||||||
|
gst_flow_get_name (queue->srcresult));
|
||||||
|
|
||||||
GST_QUEUE_MUTEX_UNLOCK (queue);
|
GST_QUEUE_MUTEX_UNLOCK (queue);
|
||||||
|
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in a new issue