mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 04:56:14 +00:00
compatibility fix for new GST_DEBUG stuff.
Original commit message from CVS: compatibility fix for new GST_DEBUG stuff. Includes fixes for missing includes for config.h and unistd.h I only ensured for plugins I can build that they work, so if some of them are still broken, you gotta fix them yourselves unfortunately.
This commit is contained in:
parent
c48b1d6653
commit
c28be5c967
2 changed files with 4 additions and 1 deletions
|
@ -17,6 +17,9 @@
|
||||||
Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#ifdef HAVE_CONFIG_H
|
||||||
|
#include "config.h"
|
||||||
|
#endif
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include "gstjack.h"
|
#include "gstjack.h"
|
||||||
|
|
|
@ -80,7 +80,7 @@ gst_jack_bin_class_init(GstJackBinClass *klass)
|
||||||
static void
|
static void
|
||||||
gst_jack_bin_init(GstJackBin *this)
|
gst_jack_bin_init(GstJackBin *this)
|
||||||
{
|
{
|
||||||
GST_DEBUG (GST_CAT_THREAD, "initializing jack bin");
|
GST_DEBUG ("initializing jack bin");
|
||||||
|
|
||||||
/* jack bins are managing bins and iterate themselves */
|
/* jack bins are managing bins and iterate themselves */
|
||||||
GST_FLAG_SET (this, GST_BIN_FLAG_MANAGER);
|
GST_FLAG_SET (this, GST_BIN_FLAG_MANAGER);
|
||||||
|
|
Loading…
Reference in a new issue