Your message dated Tue, 01 Apr 2014 00:48:53 +0000
with message-id <[email protected]>
and subject line Bug#739314: fixed in linphone 3.6.1-2.2
has caused the Debian Bug report #739314,
regarding FTBFS with libav10
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
739314: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=739314
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Source: linphone
Severity: important
Hi,
your package fails to build from source against libav 10 (currently
packaged in experimental). This bug will become release-critical
at some point when the libav10 transition starts.
Migration documentation can be found at
https://wiki.libav.org/Migration/10
Cheers,
Moritz
videofilters/videoenc.c: In function 'enc_h263_init':
videofilters/videoenc.c:226:13: error: 'CODEC_ID_H263P' undeclared (first use
in this function)
enc_init(f,CODEC_ID_H263P);
^
videofilters/videoenc.c:226:13: note: each undeclared identifier is reported
only once for each function it appears in
videofilters/videoenc.c: In function 'enc_mpeg4_init':
videofilters/videoenc.c:230:13: error: 'CODEC_ID_MPEG4' undeclared (first use
in this function)
enc_init(f,CODEC_ID_MPEG4);
^
videofilters/videoenc.c: In function 'enc_snow_init':
videofilters/videoenc.c:234:13: error: 'CODEC_ID_SNOW' undeclared (first use in
this function)
enc_init(f,CODEC_ID_SNOW);
^
videofilters/videoenc.c: In function 'enc_mjpeg_init':
videofilters/videoenc.c:238:13: error: 'CODEC_ID_MJPEG' undeclared (first use
in this function)
enc_init(f,CODEC_ID_MJPEG);
^
videofilters/videoenc.c: In function 'prepare':
videofilters/videoenc.c:246:16: error: 'CODEC_ID_MJPEG' undeclared (first use
in this function)
if (s->codec==CODEC_ID_MJPEG)
^
videofilters/videoenc.c:272:16: error: 'CODEC_ID_SNOW' undeclared (first use in
this function)
if (s->codec!=CODEC_ID_SNOW && s->maxbr<max_br_vbv){
^
videofilters/videoenc.c: In function 'prepare_h263':
videofilters/videoenc.c:307:12: error: 'CODEC_ID_H263' undeclared (first use in
this function)
s->codec=CODEC_ID_H263;
videofilters/videoenc.c:316:12: error: 'CODEC_ID_H263P' undeclared (first use
in this function)
s->codec=CODEC_ID_H263P;
^
videofilters/videoenc.c: In function 'enc_preprocess':
videofilters/videoenc.c:334:16: error: 'CODEC_ID_H263P' undeclared (first use
in this function)
if (s->codec==CODEC_ID_H263P || s->codec==CODEC_ID_H263)
^
videofilters/videoenc.c:334:44: error: 'CODEC_ID_H263' undeclared (first use in
this function)
if (s->codec==CODEC_ID_H263P || s->codec==CODEC_ID_H263)
^
videofilters/videoenc.c:336:21: error: 'CODEC_ID_MPEG4' undeclared (first use
in this function)
else if (s->codec==CODEC_ID_MPEG4)
^
videofilters/videoenc.c:338:21: error: 'CODEC_ID_SNOW' undeclared (first use in
this function)
else if (s->codec==CODEC_ID_SNOW){
^
videofilters/videoenc.c:340:22: error: 'CODEC_ID_MJPEG' undeclared (first use
in this function)
}else if (s->codec==CODEC_ID_MJPEG){
^
videofilters/videoenc.c: In function 'split_and_send':
videofilters/videoenc.c:727:16: error: 'CODEC_ID_MPEG4' undeclared (first use
in this function)
if (s->codec==CODEC_ID_MPEG4 || s->codec==CODEC_ID_SNOW)
^
videofilters/videoenc.c:727:44: error: 'CODEC_ID_SNOW' undeclared (first use in
this function)
if (s->codec==CODEC_ID_MPEG4 || s->codec==CODEC_ID_SNOW)
^
videofilters/videoenc.c:732:21: error: 'CODEC_ID_MJPEG' undeclared (first use
in this function)
else if (s->codec==CODEC_ID_MJPEG)
^
videofilters/videoenc.c: In function 'process_frame':
videofilters/videoenc.c:777:2: warning: 'avcodec_get_frame_defaults' is
deprecated (declared at
+/usr/include/libavcodec/avcodec.h:3120) [-Wdeprecated-declarations]
avcodec_get_frame_defaults(&pict);
^
videofilters/videoenc.c:792:16: error: 'CODEC_ID_SNOW' undeclared (first use in
this function)
if (s->codec==CODEC_ID_SNOW){
^
videofilters/videoenc.c:800:2: warning: implicit declaration of function
'avcodec_encode_video'
+[-Wimplicit-function-declaration]
error=avcodec_encode_video(c, (uint8_t*)comp_buf->b_wptr,comp_buf_sz, &pict);
^
videofilters/videoenc.c: In function 'enc_set_br':
videofilters/videoenc.c:840:24: error: 'CODEC_ID_SNOW' undeclared (first use in
this function)
bool_t snow=s->codec==CODEC_ID_SNOW;
^
videofilters/videoenc.c:850:37: error: 'CODEC_ID_H263P' undeclared (first use
in this function)
if (s->maxbr>=1024000 && s->codec!=CODEC_ID_H263P){
^
videofilters/videoenc.c:877:70: error: 'CODEC_ID_H263' undeclared (first use in
this function)
}else if (s->maxbr>=170000 && s->codec!=CODEC_ID_H263P &&
s->codec!=CODEC_ID_H263){
^
videofilters/videoenc.c: In function '__register_ffmpeg_encoders_if_possible':
videofilters/videoenc.c:1088:27: error: 'CODEC_ID_MPEG4' undeclared (first use
in this function)
if (avcodec_find_encoder(CODEC_ID_MPEG4))
^
videofilters/videoenc.c:1090:27: error: 'CODEC_ID_H263' undeclared (first use
in this function)
if (avcodec_find_encoder(CODEC_ID_H263)){
^
videofilters/videoenc.c:1094:27: error: 'CODEC_ID_SNOW' undeclared (first use
in this function)
if (avcodec_find_encoder(CODEC_ID_SNOW))
^
videofilters/videoenc.c:1096:27: error: 'CODEC_ID_MJPEG' undeclared (first use
in this function)
if (avcodec_find_encoder(CODEC_ID_MJPEG))
^
make[6]: *** [videofilters/videoenc.lo] Error 1
make[6]: Leaving directory `/home/jmm/av10/linphone-3.6.1/mediastreamer2/src'
make[5]: *** [all] Error 2
make[5]: Leaving directory `/home/jmm/av10/linphone-3.6.1/mediastreamer2/src'
make[4]: *** [all-recursive] Error 1
make[4]: Leaving directory `/home/jmm/av10/linphone-3.6.1/mediastreamer2'
make[3]: *** [all] Error 2
make[3]: Leaving directory `/home/jmm/av10/linphone-3.6.1/mediastreamer2'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/home/jmm/av10/linphone-3.6.1'
make[1]: *** [all] Error 2
make[1]: Leaving directory `/home/jmm/av10/linphone-3.6.1'
dh_auto_build: make -j1 returned exit code 2
make: *** [binary] Error 2
--- End Message ---
--- Begin Message ---
Source: linphone
Source-Version: 3.6.1-2.2
We believe that the bug you reported is fixed in the latest version of
linphone, which is due to be installed in the Debian FTP archive.
A summary of the changes between this version and the previous one is
attached.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Reinhard Tartler <[email protected]> (supplier of updated linphone package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256
Format: 1.8
Date: Wed, 26 Mar 2014 19:51:02 -0400
Source: linphone
Binary: linphone linphone-dbg linphone-nogtk linphone-common liblinphone5
liblinphone-dev libmediastreamer-base3 libmediastreamer-dev libortp9 libortp-dev
Architecture: source amd64 all
Version: 3.6.1-2.2
Distribution: experimental
Urgency: low
Maintainer: Reinhard Tartler <[email protected]>
Changed-By: Reinhard Tartler <[email protected]>
Description:
liblinphone-dev - Linphone web phone's library - development files
liblinphone5 - Linphone's shared library part (supporting the SIP protocol)
libmediastreamer-base3 - Linphone web phone's media library
libmediastreamer-dev - Linphone web phone's media library - development files
libortp-dev - Real-time Transport Protocol stack - development files
libortp9 - Real-time Transport Protocol stack
linphone - SIP softphone - graphical client
linphone-common - Shared components of the linphone SIP softphone
linphone-dbg - Debugging symbols for linphone
linphone-nogtk - SIP softphone - console-only client
Closes: 739314
Changes:
linphone (3.6.1-2.2) experimental; urgency=low
.
* Non-maintainer upload.
* Add libav10.patch and compile against libav10 (Closes: #739314)
Checksums-Sha1:
600dc579a4b819200e352319b81bc2dc8fe356cd 3108 linphone_3.6.1-2.2.dsc
bfc3dbff6d6e02a7f4c08d122ca9796f428e53da 35844 linphone_3.6.1-2.2.debian.tar.xz
766d9f94e6345aac05f3b2fd64ae05f23a969685 98580 linphone_3.6.1-2.2_amd64.deb
5fb22f6f7bc39743cef6d81ec8e71942fbe86264 1576104
linphone-dbg_3.6.1-2.2_amd64.deb
1ae50ea0dc4cef763c7fc7c07cd1062ff27d0506 50004
linphone-nogtk_3.6.1-2.2_amd64.deb
4317b999e039e8b33df5cdf5ea9b05f24299256a 5692844
linphone-common_3.6.1-2.2_all.deb
835784d57cc8ce6f2409fc41b6cdf20a9f9b6861 148646
liblinphone5_3.6.1-2.2_amd64.deb
43b30fb9318d2571aae540140ab3803b7c69389a 32498
liblinphone-dev_3.6.1-2.2_amd64.deb
55543e09aac539e0d783c459df20ed2d3aea7009 188400
libmediastreamer-base3_3.6.1-2.2_amd64.deb
f07cd68fe294c27919117964b21d6b167381610c 50558
libmediastreamer-dev_3.6.1-2.2_amd64.deb
05e883f4a68cc78f733c90eef553013b3cdc4181 65168 libortp9_3.6.1-2.2_amd64.deb
cec06a9b81c62875a50417cd18e0985f70e004cd 38668 libortp-dev_3.6.1-2.2_amd64.deb
Checksums-Sha256:
10662d55dd9c7b3f9d2eb5f810faca927e2282f082e946ff9a5a3f017024bb39 3108
linphone_3.6.1-2.2.dsc
4d110a6fbba8afcfe48ab4511a30ebddd80cb751143869fbe48848ee87b49bc8 35844
linphone_3.6.1-2.2.debian.tar.xz
b629adb100e03c3521fefb00cb4fd971f2cdbd7780d8477a833f918089365309 98580
linphone_3.6.1-2.2_amd64.deb
e47350644cf998050ffec89051476b565a5ddf1418f01baa1388e245cba66c23 1576104
linphone-dbg_3.6.1-2.2_amd64.deb
df713b7d919f316e363b500b74759783df7dde5437056581a73c1e3701f1c034 50004
linphone-nogtk_3.6.1-2.2_amd64.deb
3b2f45f4b6f171f253594b3fbf74159d1fd2723297880ff6b900ec2cfef1bafb 5692844
linphone-common_3.6.1-2.2_all.deb
d9a410ed721188fddd7176cae0e791420b683e9c9f5af4793edc2af8746866df 148646
liblinphone5_3.6.1-2.2_amd64.deb
46d8cd750393f2b2820289e497f2776ce524b31199bdc7a2ce941417453a4e35 32498
liblinphone-dev_3.6.1-2.2_amd64.deb
76fa422feace1387e82b7a1420d62c1867341bb282e2fb0e72f41bafd6c78906 188400
libmediastreamer-base3_3.6.1-2.2_amd64.deb
a0432dd46c017240b76952b9a79c1ab49b292e4f5218b83ab6e911f9c587b7cb 50558
libmediastreamer-dev_3.6.1-2.2_amd64.deb
89135e2f698058e683a69a003c71967aa978f087bcc90a0712e4be103b2c3690 65168
libortp9_3.6.1-2.2_amd64.deb
5e14fe15332e99a2e0f666e937d2d73562f5e58af0a02340de2dee33da787b67 38668
libortp-dev_3.6.1-2.2_amd64.deb
Files:
704e1e695e31baef4ce88e3b93a86a6b 3108 sound optional linphone_3.6.1-2.2.dsc
526eb4fe0135161ce482036f6ad432b8 35844 sound optional
linphone_3.6.1-2.2.debian.tar.xz
ef300bb4a63fa4a3d5b2dc2d9d4be229 98580 sound optional
linphone_3.6.1-2.2_amd64.deb
1b9d88373161987360754096672bf5b1 1576104 debug extra
linphone-dbg_3.6.1-2.2_amd64.deb
92c45afe9bc1ad422b3f47c1db30ac26 50004 sound optional
linphone-nogtk_3.6.1-2.2_amd64.deb
9f19d70d3e8a5b8c11373f2ae5fe122a 5692844 sound optional
linphone-common_3.6.1-2.2_all.deb
50b6801abba384f66347bc546353c725 148646 libs optional
liblinphone5_3.6.1-2.2_amd64.deb
6a26d93dac34f8b81db13b2a952d8c94 32498 libdevel optional
liblinphone-dev_3.6.1-2.2_amd64.deb
5a81974236d378c74d68ba5c1b178f4e 188400 libs optional
libmediastreamer-base3_3.6.1-2.2_amd64.deb
8146125ff3f2c1011fa6f8280df7fa79 50558 libdevel optional
libmediastreamer-dev_3.6.1-2.2_amd64.deb
aae3a0bf8ffd84be2dd737fad3cc15dc 65168 libs optional
libortp9_3.6.1-2.2_amd64.deb
66c1f963973ff26d01d9ca55b4068be0 38668 libdevel optional
libortp-dev_3.6.1-2.2_amd64.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.14 (GNU/Linux)
iQGcBAEBCAAGBQJTM2u9AAoJEIuAbIZKeKRFCoAMAKa2tA21v5gmT/IpPdAGpbLR
s4yyeAfHT6rvtSgBl3olj7NmjVtAtLAx0KZNelYblXVPlMTBLWPzasPrtszL5HUO
B8gwEM2VF8DLz7nfEy9vV0YI5kODzGbwgivQuvZqnv7RylvWnOol7QQeCenunt78
8Iiyb8v8yY6UDSbMqm4QDGKUYYBzlTF/CdirhxNYYvt1TKrdqgSu6FeOGX6FGo36
Fasxjop8gnR86OTiDEwo+EF0slMJ1bFNSFkaZr/BxAeHD4JsqX/BRm1ii7XnOvJZ
s0keeqrHRrJV1Tn3s2uQ53EU7WE1IDV9iOfutNXp1PXPF8qtxgGYaxj1J3Cj4Jf2
p/2doWp4xwyAWDyhz8HSM8insQzBKrliBDtMSKNLgliSxydFrNQNmzfzm9MT6eeL
3C0xFV5QsnO0iKQ3baAf7Wngt+aSI7acd0gCqOntvh/fH+hj3n7MjH4GLjAkmOSZ
sS1Kxdzxz3oaqkBzW3WDSuO0w5aqD0ML9oZhK/kSGQ==
=Qvkg
-----END PGP SIGNATURE-----
--- End Message ---