[Bug 752604] New: gst-plugins-ugly compile error use Dockerfile: variable 'vsize' set but not used [-Werror=unused-but-set-variable]
GStreamer (GNOME Bugzilla)
bugzilla at gnome.org
Sun Jul 19 17:53:42 PDT 2015
https://bugzilla.gnome.org/show_bug.cgi?id=752604
Bug ID: 752604
Summary: gst-plugins-ugly compile error use Dockerfile:
variable 'vsize' set but not used
[-Werror=unused-but-set-variable]
Classification: Platform
Product: GStreamer
Version: 1.5.2
OS: Linux
Status: NEW
Severity: normal
Priority: Normal
Component: gst-plugins-bad
Assignee: gstreamer-bugs at lists.freedesktop.org
Reporter: dqzhangp at 163.com
QA Contact: gstreamer-bugs at lists.freedesktop.org
GNOME version: ---
Dockerfile as following:
FROM ubuntu:14.04.2
MAINTAINER Zhang Ping, dqzhangp at 163.com
# install required packages
RUN apt-get update
RUN apt-get install -y git autoconf automake libtool pkg-config autopoint
gettext liborc-0.4-dev make libglib2.0-dev flex bison
RUN git clone git://anongit.freedesktop.org/gstreamer/gstreamer && \
cd gstreamer && \
git checkout 1.5.2 && \
./autogen.sh --prefix=/usr --disable-gtk-doc-pdf --disable-gtk-doc
--disable-gst-debug && \
make && \
make install
RUN apt-get install -y libpango1.0-dev
RUN git clone git://anongit.freedesktop.org/gstreamer/gst-plugins-base && \
cd gst-plugins-base && \
git checkout 1.5.2 && \
./autogen.sh --prefix=/usr --disable-gtk-doc-pdf --disable-gtk-doc
--disable-gst-debug && \
make && \
make install
RUN git clone git://anongit.freedesktop.org/gstreamer/gst-plugins-good && \
cd gst-plugins-good && \
git checkout 1.5.2 && \
./autogen.sh --prefix=/usr --disable-gtk-doc-pdf --disable-gtk-doc
--disable-gst-debug && \
make && \
make install
RUN apt-get install -y libmpeg2-4-dev libmad-ocaml-dev libmp3lame-dev
liba52-0.7.4-dev libx264-dev
RUN git clone git://anongit.freedesktop.org/gstreamer/gst-plugins-ugly && \
cd gst-plugins-ugly && \
git checkout 1.5.2 && \
./autogen.sh --prefix=/usr --disable-gtk-doc-pdf --disable-gtk-doc && \
make && \
make install
docker build output:
make[3]: Entering directory `/gst-plugins-ugly/gst/asfdemux'
CC libgstasf_la-gstasfdemux.lo
gstasfdemux.c: In function 'gst_asf_demux_parse_stream_object':
gstasfdemux.c:2798:59: error: variable 'silence_data' set but not used
[-Werror=unused-but-set-variable]
guint span, packet_size, chunk_size, data_size, silence_data;
^
gstasfdemux.c:2863:15: error: variable 'vsize' set but not used
[-Werror=unused-but-set-variable]
guint16 vsize;
^
gstasfdemux.c:2730:16: error: variable 'time_offset' set but not used
[-Werror=unused-but-set-variable]
GstClockTime time_offset;
^
gstasfdemux.c: In function 'gst_asf_demux_process_file':
gstasfdemux.c:3418:11: error: variable 'packets_count' set but not used
[-Werror=unused-but-set-variable]
guint64 packets_count, play_time, preroll;
^
gstasfdemux.c: In function 'gst_asf_demux_process_ext_stream_props':
gstasfdemux.c:3828:9: error: variable 'obj_size' set but not used
[-Werror=unused-but-set-variable]
guint obj_size;
^
gstasfdemux.c:3827:11: error: variable 'data_start' set but not used
[-Werror=unused-but-set-variable]
guint8 *data_start;
^
cc1: all warnings being treated as errors
make[3]: *** [libgstasf_la-gstasfdemux.lo] Error 1
make[3]: Leaving directory `/gst-plugins-ugly/gst/asfdemux'
make[2]: *** [asfdemux] Error 2
make[2]: Leaving directory `/gst-plugins-ugly/gst'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/gst-plugins-ugly'
make: *** [all] Error 2
2015/07/19 18:40:53 The command [/bin/sh -c git clone
git://anongit.freedesktop.org/gstreamer/gst-plugins-ugly && cd
gst-plugins-ugly && git checkout 1.5.2 && ./autogen.sh
--prefix=/usr --disable-gtk-doc-pdf --disable-gtk-doc && make &&
make install] returned a non-zero code: 2
--
You are receiving this mail because:
You are the QA Contact for the bug.
You are the assignee for the bug.
More information about the gstreamer-bugs
mailing list