Your message dated Wed, 26 Mar 2014 23:19:37 +0000 with message-id <[email protected]> and subject line Bug#721927: fixed in vice 2.4.dfsg+2.4.6-1 has caused the Debian Bug report #721927, regarding vice: missing ffmpeg output driver if built against libav 9 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.) -- 721927: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=721927 Debian Bug Tracking System Contact [email protected] with problems
--- Begin Message ---Source: vice Version: 2.4.dfsg-1 Severity: normal If vice is built against libav 9, the ffmpeg output driver is no longer built: | checking for FFMPEG support... via pkg-config | checking for FFMPEG_AV... yes | checking libavformat/avformat.h usability... yes | checking libavformat/avformat.h presence... yes | checking for libavformat/avformat.h... yes | checking for FFMPEG_SWSCALE... no. trying img_convert | checking for img_convert in -lavcodec... no Adding libswscale-dev to Build-Depends makes the configure script detect swscale, however the build later fails with: | gcc -DHAVE_CONFIG_H -I. -I../../src -I../../src -I../../src -I../../src/arch/unix -pthread -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 -I/usr/include/libdrm -I/usr/include/harfbuzz -pthread -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 -I/usr/include/libdrm -I/usr/include/atk-1.0 -I/usr/include/harfbuzz -I/usr/include/gtkglext-1.0 -I/usr/lib/gtkglext-1.0/include -pthread -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/pango-1.0 -I/usr/include/gtk-2.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/cairo -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 -I/usr/include/libdrm -I/usr/include/harfbuzz -I/usr/include/vte-0.0 -g -O3 -Wall -Wno-inline -MT ffmpeglib.o -MD -MP -MF .deps/ffmpeglib.Tpo -c -o ffmpeglib.o ffmpeglib.c | In file included from ffmpegdrv.c:35:0: | ffmpeglib.h:83:55: error: unknown type name 'AVFormatParameters' | typedef int (*av_set_parameters_t) (AVFormatContext*, AVFormatParameters*); | ^ | ffmpeglib.h:87:29: error: unknown type name 'ByteIOContext' | typedef int (*url_fopen_t) (ByteIOContext**, const char*, int); | ^ | ffmpeglib.h:88:30: error: unknown type name 'ByteIOContext' | typedef int (*url_fclose_t) (ByteIOContext*); | ^ | ffmpeglib.h:121:5: error: unknown type name 'av_set_parameters_t' | av_set_parameters_t p_av_set_parameters; | ^ | ffmpeglib.h:125:5: error: unknown type name 'url_fopen_t' | url_fopen_t p_url_fopen; | ^ | ffmpeglib.h:126:5: error: unknown type name 'url_fclose_t' | url_fclose_t p_url_fclose; | ^ | ffmpegdrv.c: In function 'ffmpegmovie_init_audio': | ffmpegdrv.c:346:21: error: 'SAMPLE_FMT_S16' undeclared (first use in this function) | c->sample_fmt = SAMPLE_FMT_S16; | ^ | ffmpegdrv.c:346:21: note: each undeclared identifier is reported only once for each function it appears in | ffmpegdrv.c: In function 'ffmpegdrv_init_file': | ffmpegdrv.c:616:10: error: invalid type argument of unary '*' (have 'int') | if ((*ffmpeglib.p_av_set_parameters)(ffmpegdrv_oc, NULL) < 0) { | ^ | ffmpegdrv.c:635:14: error: invalid type argument of unary '*' (have 'int') | if ((*ffmpeglib.p_url_fopen)(&ffmpegdrv_oc->pb, ffmpegdrv_oc->filename, | ^ | ffmpegdrv.c:636:29: error: 'URL_WRONLY' undeclared (first use in this function) | URL_WRONLY) < 0) | ^ | ffmpegdrv.c: In function 'ffmpegdrv_close': | ffmpegdrv.c:727:14: error: invalid type argument of unary '*' (have 'int') | (*ffmpeglib.p_url_fclose)(ffmpegdrv_oc->pb); | ^ | make[4]: *** [ffmpegdrv.o] Error 1 | make[4]: *** Waiting for unfinished jobs.... | In file included from ffmpeglib.c:32:0: | ../../src/gfxoutputdrv/ffmpeglib.h:83:55: error: unknown type name 'AVFormatParameters' | typedef int (*av_set_parameters_t) (AVFormatContext*, AVFormatParameters*); | ^ | ../../src/gfxoutputdrv/ffmpeglib.h:87:29: error: unknown type name 'ByteIOContext' | typedef int (*url_fopen_t) (ByteIOContext**, const char*, int); | ^ | ../../src/gfxoutputdrv/ffmpeglib.h:88:30: error: unknown type name 'ByteIOContext' | typedef int (*url_fclose_t) (ByteIOContext*); | ^ | ../../src/gfxoutputdrv/ffmpeglib.h:121:5: error: unknown type name 'av_set_parameters_t' | av_set_parameters_t p_av_set_parameters; | ^ | ../../src/gfxoutputdrv/ffmpeglib.h:125:5: error: unknown type name 'url_fopen_t' | url_fopen_t p_url_fopen; | ^ | ../../src/gfxoutputdrv/ffmpeglib.h:126:5: error: unknown type name 'url_fclose_t' | url_fclose_t p_url_fclose; | ^ | ffmpeglib.c: In function 'load_avformat': | ffmpeglib.c:211:37: error: 'av_set_parameters_t' undeclared (first use in this function) | GET_SYMBOL_AND_TEST_AVFORMAT(av_set_parameters); | ^ | ffmpeglib.c:211:37: note: each undeclared identifier is reported only once for each function it appears in | ffmpeglib.c:211:58: error: expected ';' before 'vice_dynlib_symbol' | GET_SYMBOL_AND_TEST_AVFORMAT(av_set_parameters); | ^ | ffmpeglib.c:215:29: error: 'url_fopen_t' undeclared (first use in this function) | GET_SYMBOL_AND_TEST_AVFORMAT(url_fopen); | ^ | ffmpeglib.c:215:42: error: expected ';' before 'vice_dynlib_symbol' | GET_SYMBOL_AND_TEST_AVFORMAT(url_fopen); | ^ | ffmpeglib.c:216:30: error: 'url_fclose_t' undeclared (first use in this function) | GET_SYMBOL_AND_TEST_AVFORMAT(url_fclose); | ^ | ffmpeglib.c:216:44: error: expected ';' before 'vice_dynlib_symbol' | GET_SYMBOL_AND_TEST_AVFORMAT(url_fclose); | ^ | ffmpeglib.c: In function 'free_avformat': | ffmpeglib.c:243:30: warning: assignment makes integer from pointer without a cast [enabled by default] | lib->p_av_set_parameters = NULL; | ^ | ffmpeglib.c:247:22: warning: assignment makes integer from pointer without a cast [enabled by default] | lib->p_url_fopen = NULL; | ^ | ffmpeglib.c:248:23: warning: assignment makes integer from pointer without a cast [enabled by default] | lib->p_url_fclose = NULL; | ^ This looks like #693641. Regards -- Sebastian Ramacher
signature.asc
Description: Digital signature
--- End Message ---
--- Begin Message ---Source: vice Source-Version: 2.4.dfsg+2.4.6-1 We believe that the bug you reported is fixed in the latest version of vice, 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. Laszlo Boszormenyi (GCS) <[email protected]> (supplier of updated vice 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 21:45:03 +0100 Source: vice Binary: vice Architecture: source amd64 Version: 2.4.dfsg+2.4.6-1 Distribution: unstable Urgency: low Maintainer: Laszlo Boszormenyi (GCS) <[email protected]> Changed-By: Laszlo Boszormenyi (GCS) <[email protected]> Description: vice - Versatile Commodore Emulator Closes: 721927 725629 Changes: vice (2.4.dfsg+2.4.6-1) unstable; urgency=low . * New upstream release, update patches. * Add libswscale-dev to build-depends for building ffmpeg output driver (closes: #721927). * Try to fix build race condition (closes: #725629). * Update Standards-Version to 3.9.5 . Checksums-Sha1: 8a53753a10ffa1cb0ddcb38e2709dfa41644bbd5 2037 vice_2.4.dfsg+2.4.6-1.dsc 8d1e4377d2111756ba1dba075c92ab22cd2700f0 13536223 vice_2.4.dfsg+2.4.6.orig.tar.gz 6ddafb4c86b4d22d875a1722f50e3ce6188f7114 23728 vice_2.4.dfsg+2.4.6-1.debian.tar.xz bf6812a659686662b8e3437f64707edd5b3b5c23 4367448 vice_2.4.dfsg+2.4.6-1_amd64.deb Checksums-Sha256: eab4804176fc7116ee4d5d9c33a23048a28e8bf0906ad3bdee70b7804a25e832 2037 vice_2.4.dfsg+2.4.6-1.dsc 9f3f0d791519f72840e3c2d184b41338a86e0459b5dbcd605ece7320dc26abca 13536223 vice_2.4.dfsg+2.4.6.orig.tar.gz b645b5bbe70c794936c4b0281d5c6dfe367636cc14a0e25921b3df6192fe6eae 23728 vice_2.4.dfsg+2.4.6-1.debian.tar.xz 5f35dcc1add0b50dd489d7f64bf4e0e72d977ffa4d30c943d5223042d41b88c1 4367448 vice_2.4.dfsg+2.4.6-1_amd64.deb Files: 34b2b9e0fc9bfa1c3b72e91ea268539d 2037 contrib/otherosfs optional vice_2.4.dfsg+2.4.6-1.dsc b66bc4f6d6ee1527eaa2b458ba7f0761 13536223 contrib/otherosfs optional vice_2.4.dfsg+2.4.6.orig.tar.gz 5bdd0f606df29eb8f022f55f5d24ee2b 23728 contrib/otherosfs optional vice_2.4.dfsg+2.4.6-1.debian.tar.xz f11f685b72163ab2883768e605a134c2 4367448 contrib/otherosfs optional vice_2.4.dfsg+2.4.6-1_amd64.deb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQIcBAEBCAAGBQJTM1sYAAoJENzjEOeGTMi/N8gQAKLpPpXSMUutkKmHAxgnMtGq VvxV35lG3lbJdkpzSfuvKO/ykOAyCzulIGpeKCe3rUa5QJLz2b06dnEWgAV7gMDF 6F7IFafacrs9FexJOq4d3yWkhl7wXkSVCeUkiKV95Zu6SNo1DOXCa2mhp9fVhKn0 sJqaZTLq9Orjn9GNS6lOr0/g3lQYT+DSDu5RRRnGXAUNtRPdxu5c2N8EJdCxIHPR h7bB+l1pXIaMfWUOcsjxuqTmt5h6AVuPQLNig8F38K8AVtYyu0LbUjF3K9trKiEP rbQOnV7J2NjPZbLgv/RScvITJzD8JNQR34sgBA0u7yrYkamrtdKlgrz5Xgq3w6pk jWwbXN181kB5iLVq3AEi00ISkH/1I03nrbYlM5mjiQWNK+x2Ei1ngemKzgHcPCB5 m4SxweB6OHCaDD20DMNmnkzJ7zyUVbvzaKqMlBCn4VIN8OSsHL22esfnyZEWVe+f UW58RB9b4DZip5MkQb+KmPb9ORt1/hEkPnpPKIZdBXfVXpuOHT4wBhgghyNUAWso BNRHe5FSxcMIhiZ33zucKDyIlwS881PS7V77/TtOnyMLadn6hIiKV4A9KQT9RZDX px6fKD9QIhDel07G4qcL8M/Usn7T7xXu/b+2twZ+gzOiQmh3jIOK/VgwQGv+Wn1B wtBp1OutOiNu1u6uMaon =f9tm -----END PGP SIGNATURE-----
--- End Message ---

