mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-26 10:10:32 +00:00
tests: uri: fix build without -DGST_DISABLE_DEPRECATED
Must undefine it before including gst headers, since the test tests deprecated API.
This commit is contained in:
parent
ea402c7034
commit
dd78aa27a4
1 changed files with 4 additions and 0 deletions
|
@ -21,6 +21,10 @@
|
|||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#ifndef GST_REMOVE_DEPRECATED
|
||||
#undef GST_DISABLE_DEPRECATED
|
||||
#endif
|
||||
|
||||
#include <gst/check/gstcheck.h>
|
||||
|
||||
GST_START_TEST (test_protocol_case)
|
||||
|
|
Loading…
Reference in a new issue