Your message dated Wed, 14 May 2014 21:50:52 +0000
with message-id <e1wkh4e-0001kr...@franck.debian.org>
and subject line Bug#739314: fixed in linphone 3.6.1-2.3
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 ow...@bugs.debian.org
immediately.)
--
739314: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=739314
Debian Bug Tracking System
Contact ow...@bugs.debian.org 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.3
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 739...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Moritz Muehlenhoff <j...@debian.org> (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 ftpmas...@ftp-master.debian.org)
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Format: 1.8
Date: Wed, 14 May 2014 00:25:23 +0200
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.3
Distribution: unstable
Urgency: medium
Maintainer: Debian VoIP Team <pkg-voip-maintain...@lists.alioth.debian.org>
Changed-By: Moritz Muehlenhoff <j...@debian.org>
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.3) unstable; urgency=medium
.
* Non-maintainer upload.
* Upload to unstable now that libav10 is in the archive (Closes: #739314)
Checksums-Sha1:
85cfaf67c631696921c16c70b767bf3fb3d04cd4 3350 linphone_3.6.1-2.3.dsc
cfe8189f7ab913b618957912d98ec09592c0fdbc 35884 linphone_3.6.1-2.3.debian.tar.xz
35ecbe6cfb18315df9797f5b3842e9eeccfe7b7f 99080 linphone_3.6.1-2.3_amd64.deb
1cda345ac41e8d205a154f6eecd5a3a590a6af10 1575876
linphone-dbg_3.6.1-2.3_amd64.deb
45c7dc66f587826c44b90222050adf92426a7c3b 49900
linphone-nogtk_3.6.1-2.3_amd64.deb
c488dfb82f15f037313125628b67b6dba7244f11 5692816
linphone-common_3.6.1-2.3_all.deb
46fc0ebc4090ea632f4fff0b76268acab4c24008 147926
liblinphone5_3.6.1-2.3_amd64.deb
7333b7f0fa991c0a252fa69622097ff8d1e03327 32484
liblinphone-dev_3.6.1-2.3_amd64.deb
f36cf8cd870272eb2a20bf98feefc947adbc46b5 188122
libmediastreamer-base3_3.6.1-2.3_amd64.deb
0f2d2b716e31aeb2d6701f3e22dba5d1d883a722 50540
libmediastreamer-dev_3.6.1-2.3_amd64.deb
052d7aea299b08baa9b75a43e2f478d2de39b8a3 65190 libortp9_3.6.1-2.3_amd64.deb
4b247ad27fde0d779f87878679bf02cfc321eeb2 38576 libortp-dev_3.6.1-2.3_amd64.deb
Checksums-Sha256:
2bef77bb63c505f0d7eafa1db9c2072455ff559701d434ef6e6e232afb6817d5 3350
linphone_3.6.1-2.3.dsc
81b62222d7b38237518e1a65d5d9e51b93d35b8ab20c3b1724a681706a80e7a4 35884
linphone_3.6.1-2.3.debian.tar.xz
5f96b89f32c4e95fe037ff32e23c437cbce458f1b68adc5d17e883e2da908edb 99080
linphone_3.6.1-2.3_amd64.deb
ee1b2103f019a08ba6da9fabe47c8b18d49b56cb1b095f39a78e713b8a1202ea 1575876
linphone-dbg_3.6.1-2.3_amd64.deb
4c7134f40b3aa36dd8d0f84f764be10c7de4f0a58fa787089d5d68ca489e0c02 49900
linphone-nogtk_3.6.1-2.3_amd64.deb
e353949145e56c2b184b98ed439d27135617c56564f788b254fbdbd077c416a8 5692816
linphone-common_3.6.1-2.3_all.deb
118420c237006fd8be1a57e1f0c0c31ac1269ee85bad2798515c81419ee69739 147926
liblinphone5_3.6.1-2.3_amd64.deb
956ffc1fcc69956a269dcf54682f019b372cc94addc366a5da2ce64b2d8f74ac 32484
liblinphone-dev_3.6.1-2.3_amd64.deb
0b8e3c232f31db9146ec2f223742fdea216040f12d926110b71248f0b26bcae3 188122
libmediastreamer-base3_3.6.1-2.3_amd64.deb
c1e5c5dde41c4f2f0d09f1315cd90a2f1c0bebc6f8c42a580e48158de359da72 50540
libmediastreamer-dev_3.6.1-2.3_amd64.deb
6ff9e8f1c9d723473d782a60b828ef9293b4882d502de5f780ee787ac577a18e 65190
libortp9_3.6.1-2.3_amd64.deb
54cf9fccab482c9af44ffdd33476822102f60ce2350619a3ba8cdb279b7bddfd 38576
libortp-dev_3.6.1-2.3_amd64.deb
Files:
4bf36bdc70e3964d0ed0451dbf4c1758 99080 sound optional
linphone_3.6.1-2.3_amd64.deb
a1e3a26b29d69ab215a937ce6414ce92 1575876 debug extra
linphone-dbg_3.6.1-2.3_amd64.deb
0f85077530d23cdf9a4c580dca767b9a 49900 sound optional
linphone-nogtk_3.6.1-2.3_amd64.deb
dfd2fc5e87bdee701f2d4069407c8da5 5692816 sound optional
linphone-common_3.6.1-2.3_all.deb
357e1cc9c023a882959e3a8c827d21ae 147926 libs optional
liblinphone5_3.6.1-2.3_amd64.deb
a5b9951f1672f3433bf8d18ad1a038f9 32484 libdevel optional
liblinphone-dev_3.6.1-2.3_amd64.deb
49bf9d791eb92bc004b236c3076dddd5 188122 libs optional
libmediastreamer-base3_3.6.1-2.3_amd64.deb
6327918ffa8fa25b321ee34410ca1902 50540 libdevel optional
libmediastreamer-dev_3.6.1-2.3_amd64.deb
e88ed6720d09ae734f55a4f4a23f9d30 65190 libs optional
libortp9_3.6.1-2.3_amd64.deb
7fde2a83e014f3a565d0ed5b2aedb06c 38576 libdevel optional
libortp-dev_3.6.1-2.3_amd64.deb
3b2025d3e91faaa1737c17864534fc78 3350 sound optional linphone_3.6.1-2.3.dsc
ba094f4be8a92c5638fe86da7be3f750 35884 sound optional
linphone_3.6.1-2.3.debian.tar.xz
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1
iQIcBAEBAgAGBQJTc934AAoJEBDCk7bDfE42IvUP/1/CN6qaQRitiH1sEgufEfqY
d8Btwut1f9L3D1wDiB2Tpl7m7r/XDkrY6fQOnQ/uLV8ZnNctkirnXtbJe1+saiAp
7DBEPUpoyt59c+BQZPkpjtLUlW3Cm5u8RTZ5z+3JZX2hRSuNpscC7gwWSSbzFDtV
ScN6CsGBzTsO+FHfJMUp5kdjyhA12FjACkxSxD11vFmvDzS8QghYdduKeIcHDonX
Mben+TwltxlDPdNaNZihYcegbx1WBiFwN4j0sFZLj/6XFsnA/BqxtsvpaaZPeaBd
lJlrjVWnmezgK3jO9c3l5aEpA0FS5hVwffJpnHyb0axszeDdx4uOVMuzBOBUrg4V
An7SBZMCFrFkrD13eITH32b2LSspmElqNtnauSH0e7Eyw17o9nqUGZMw+3CIOJLv
w3mtdBwpkWFf0nwLlkh7JMHPRtaLVtkxDURkLkRu841yTkuBd6xwa4detKfnePS8
iczkdx+KyeDqbyd0Kwc4B8+UdnmcTrW3H8H7LSVdsvu0CXI2li35KInhIR32odD/
650D1nIScKf/d+YBLtzzXXqVF9lFvboNz34uQM+/uyjRm9Zn6arzNYWjIsNx9W5n
C+2ojKByvMbPe09UZ+dw8H39bN7vp+tnzosfOk4pVgCC3EreuE+WVF353Wi1dOGv
gQ/DDox0tXGaw5S/hw11
=sblo
-----END PGP SIGNATURE-----
--- End Message ---