mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-05 17:09:48 +00:00
Adding version overrides for new core/base releases.
Original commit message from CVS: * configure.ac: * gst/Makefile.am: * gst/gst-0.10.14.ignore: * gst/gst-pb-0.10.14.ignore: * gst/gstversion.override.in: Adding version overrides for new core/base releases.
This commit is contained in:
parent
14fbeaf8f9
commit
a73bf408b1
6 changed files with 59 additions and 0 deletions
|
@ -1,3 +1,12 @@
|
|||
2007-07-28 Edward Hervey <bilboed@bilboed.com>
|
||||
|
||||
* configure.ac:
|
||||
* gst/Makefile.am:
|
||||
* gst/gst-0.10.14.ignore:
|
||||
* gst/gst-pb-0.10.14.ignore:
|
||||
* gst/gstversion.override.in:
|
||||
Adding version overrides for new core/base releases.
|
||||
|
||||
2007-07-28 Edward Hervey <bilboed@bilboed.com>
|
||||
|
||||
* gst/interfaces.override:
|
||||
|
|
18
configure.ac
18
configure.ac
|
@ -158,6 +158,13 @@ then
|
|||
IGNORE_GST_0_10_13=""
|
||||
fi
|
||||
|
||||
if test $GST_MINOR_VERSION -lt "14"
|
||||
then
|
||||
IGNORE_GST_0_10_14="gst-0.10.14.ignore"
|
||||
else
|
||||
IGNORE_GST_0_10_14=""
|
||||
fi
|
||||
|
||||
dnl plugins base
|
||||
if test $GST_PB_MINOR_VERSION -lt "11"
|
||||
then
|
||||
|
@ -167,6 +174,13 @@ then
|
|||
AC_DEFINE_UNQUOTED(HAVE_VIDEO_ORIENTATION_INTERFACE, 1, [We can use the videoorientation interface])
|
||||
fi
|
||||
|
||||
if test $GST_PB_MINOR_VERSION -lt "14"
|
||||
then
|
||||
IGNORE_GST_PB_0_10_14="gst-pb-0.10.14.ignore"
|
||||
else
|
||||
IGNORE_GST_PB_0_10_14=""
|
||||
fi
|
||||
|
||||
|
||||
else
|
||||
IGNORE_GST_0_10_3=""
|
||||
|
@ -178,7 +192,9 @@ else
|
|||
IGNORE_GST_0_10_11=""
|
||||
IGNORE_GST_0_10_12=""
|
||||
IGNORE_GST_0_10_13=""
|
||||
IGNORE_GST_0_10_14=""
|
||||
IGNORE_GST_PB_0_10_11=""
|
||||
IGNORE_GST_PB_0_10_14=""
|
||||
AC_DEFINE_UNQUOTED(HAVE_VIDEO_ORIENTATION_INTERFACE, 1, [We can use the videoorientation interface])
|
||||
fi
|
||||
AC_SUBST(IGNORE_GST_0_10_3)
|
||||
|
@ -190,7 +206,9 @@ AC_SUBST(IGNORE_GST_0_10_10)
|
|||
AC_SUBST(IGNORE_GST_0_10_11)
|
||||
AC_SUBST(IGNORE_GST_0_10_12)
|
||||
AC_SUBST(IGNORE_GST_0_10_13)
|
||||
AC_SUBST(IGNORE_GST_0_10_14)
|
||||
AC_SUBST(IGNORE_GST_PB_0_10_11)
|
||||
AC_SUBST(IGNORE_GST_PB_0_10_14)
|
||||
AC_SUBST(HAVE_VIDEO_ORIENTATION)
|
||||
|
||||
dnl check for gstreamer-base; uninstalled is selected preferentially
|
||||
|
|
|
@ -32,7 +32,9 @@ versioned_overrides = \
|
|||
gst-0.10.11.ignore \
|
||||
gst-0.10.12.ignore \
|
||||
gst-0.10.13.ignore \
|
||||
gst-0.10.14.ignore \
|
||||
gst-pb-0.10.11.ignore \
|
||||
gst-pb-0.10.14.ignore \
|
||||
gst-disable-loadsave.ignore
|
||||
|
||||
INCLUDES = $(PYTHON_INCLUDES)
|
||||
|
|
15
gst/gst-0.10.14.ignore
Normal file
15
gst/gst-0.10.14.ignore
Normal file
|
@ -0,0 +1,15 @@
|
|||
%%
|
||||
ignore
|
||||
gst_element_class_set_details_simple
|
||||
gst_element_factory_has_interface
|
||||
gst_controller_set_disabled
|
||||
gst_controller_set_property_disabled
|
||||
gst_controller_set_control_source
|
||||
gst_controller_get_control_source
|
||||
gst_object_set_control_source
|
||||
gst_object_get_control_source
|
||||
%%
|
||||
ignore-type
|
||||
GstControlSource
|
||||
GstInterpolationControlSource
|
||||
%%
|
13
gst/gst-pb-0.10.14.ignore
Normal file
13
gst/gst-pb-0.10.14.ignore
Normal file
|
@ -0,0 +1,13 @@
|
|||
%%
|
||||
ignore
|
||||
gst_mixer_get_mixer_flags
|
||||
gst_mixer_message_get_type
|
||||
gst_mixer_message_parse_mute_toggled
|
||||
gst_mixer_message_parse_record_toggled
|
||||
gst_mixer_message_parse_volume_changed
|
||||
gst_mixer_message_parse_option_changed
|
||||
%%
|
||||
ignore-type
|
||||
GstMixerFlags
|
||||
GstMixerMessageType
|
||||
%%
|
|
@ -10,5 +10,7 @@ include
|
|||
@IGNORE_GST_PB_0_10_11@
|
||||
@IGNORE_GST_0_10_12@
|
||||
@IGNORE_GST_0_10_13@
|
||||
@IGNORE_GST_0_10_14@
|
||||
@IGNORE_GST_PB_0_10_14@
|
||||
@IGNORE_GST_LOADSAVE@
|
||||
%%
|
||||
|
|
Loading…
Reference in a new issue