Bug#757044: gstreamer-vaapi: FTBFS: unsupported GStreamer API version 1.4

Emilio Pozuelo Monfort pochu at debian.org
Mon Aug 4 22:22:52 UTC 2014


On 04/08/14 23:24, Aaron M. Ucko wrote:
> Source: gstreamer-vaapi
> Version: 0.5.8-1
> Severity: serious
> Justification: fails to build from source
> 
> Automatic builds of gstreamer-vaapi have been failing:
> 
>   checking for GStreamer API version... 1.4
>   configure: error: unsupported GStreamer API version 1.4 
> 
> It's not immediately clear what the actual problem is, since I see no
> newer gstreamer in NEW, and the uploaded amd64 binaries just require
> libgstreamer1.0-0 (>= 1.0.0).  Could you please take a look?

I think it's pretty clear by looking at configure.ac:

dnl Versions for GStreamer and plugins-base
case $GST_API_VERSION in
0.10)
    GST_VERSION_REQUIRED=gst0_version
    GST_PLUGINS_BASE_VERSION_REQUIRED=gst0_plugins_base_version
    GST_PLUGINS_BAD_VERSION_REQUIRED=gst0_plugins_bad_version
    ;;
1.0)
    GST_VERSION_REQUIRED=gst1_version
    GST_PLUGINS_BASE_VERSION_REQUIRED=gst1_plugins_base_version
    GST_PLUGINS_BAD_VERSION_REQUIRED=gst1_plugins_bad_version
    ;;
1.2)
    GST_VERSION_REQUIRED=gst12_version
    GST_PLUGINS_BASE_VERSION_REQUIRED=gst12_plugins_base_version
    GST_PLUGINS_BAD_VERSION_REQUIRED=gst12_plugins_bad_version
    ;;
1.3)
    GST_VERSION_REQUIRED=gst14_version
    GST_PLUGINS_BASE_VERSION_REQUIRED=gst14_plugins_base_version
    GST_PLUGINS_BAD_VERSION_REQUIRED=gst14_plugins_bad_version
    ;;
*)
    AC_MSG_ERROR([unsupported GStreamer API version $GST_API_VERSION])
    ;;
esac

GStreamer is now at 1.4 so that fails. This probably just needs to change 1.3
with 1.4.

Emilio



More information about the pkg-gstreamer-maintainers mailing list