gst/gst.c (G_OPTION_FLAG_NO_ARG): Apparently GLib 2.8 requires this flag, but it's not even in GLib 2.6. Odd. Hack ar...

Original commit message from CVS:
2005-10-10  Andy Wingo  <wingo@pobox.com>

* gst/gst.c (G_OPTION_FLAG_NO_ARG): Apparently GLib 2.8 requires
this flag, but it's not even in GLib 2.6. Odd. Hack around the
issue.
This commit is contained in:
Andy Wingo 2005-10-10 16:04:28 +00:00
parent 29e78cb4b0
commit e415bd9957
2 changed files with 10 additions and 0 deletions

View file

@ -12,6 +12,12 @@
Use src/sink pads lists for the respective iterators instead
of filtering.
2005-10-10 Andy Wingo <wingo@pobox.com>
* gst/gst.c (G_OPTION_FLAG_NO_ARG): Apparently GLib 2.8 requires
this flag, but it's not even in GLib 2.6. Odd. Hack around the
issue.
2005-10-10 Andy Wingo <wingo@pobox.com>
Merged in popt removal + GOption addition patch from Ronald, bug

View file

@ -237,6 +237,10 @@ parse_debug_list (const gchar * list)
g_strfreev (split);
}
#ifndef GST_HAVE_GLIB_2_8
#define G_OPTION_FLAG_NO_ARG 0
#endif
/**
* gst_init_get_option_group:
*