Your message dated Thu, 22 Nov 2001 15:52:52 -0500 with message-id <[EMAIL PROTECTED]> and subject line Bug#109378: fixed in vic 1:2.8ucl1.1.3-7 has caused the attached Bug report 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 I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database) -------------------------------------- Received: (at submit) by bugs.debian.org; 20 Aug 2001 16:57:21 +0000 >From [EMAIL PROTECTED] Mon Aug 20 11:57:21 2001 Return-path: <[EMAIL PROTECTED]> Received: from co63281-a.almel1.ov.nl.home.com (gw.wurtel.net) [213.51.148.164] by master.debian.org with esmtp (Exim 3.12 1 (Debian)) id 15YsMa-00010q-00; Mon, 20 Aug 2001 11:57:20 -0500 Received: from alf.local ([192.168.1.2] helo=wurtel.net) by gw.wurtel.net with esmtp (Exim 3.22 #1 (Debian)) id 15YsMX-0002Cd-00 for <[EMAIL PROTECTED]>; Mon, 20 Aug 2001 18:57:17 +0200 Received: from paul by wurtel.net with local (Exim 3.32 #1 (Debian)) id 15YsMV-0006q0-00 for <[EMAIL PROTECTED]>; Mon, 20 Aug 2001 18:57:15 +0200 To: [EMAIL PROTECTED] Subject: vic: build failure on alpha (and other 64 bit platforms) Message-Id: <[EMAIL PROTECTED]> From: Paul Slootman <[EMAIL PROTECTED]> Date: Mon, 20 Aug 2001 18:57:15 +0200 Delivered-To: [EMAIL PROTECTED] Package: vic Version: 1:2.8ucl1.1.3-5 Severity: serious The build on alpha fails with the following error: rm -f net/net-ipv6.o; c++ -o net/net-ipv6.o -c -O2 -g -W -Wall -Wno-implicit-int -Wno-return-type -DLinux -DHAVE_IPV6 -DLINUX_IPV6 -DUSE_SHM -DINT_64=u_long -fsigned-char -DED_YBITS=4 -DSIGRET=void -DNLAYER=8 -I. -Icodec/tmndec -Icodec/tmn-x -Icodec/h263 -Irtp -Irender -Inet -Ivideo -Icodec -I../common -I../tk-8.0/generic -I../tcl-8.0/generic -Icodec/jpeg -Icodec/p64 -I. net/net-ipv6.cpp In file included from net/net-ipv6.cpp:64: net/net-addr.h: In method `class Address * AddressType::resolve(const char *)': net/net-addr.h:51: warning: unused parameter `const char * name' net/net-ipv6.cpp: In method `int IP6Network::localname(sockaddr_in6 *)': net/net-ipv6.cpp:281: passing `size_t *' as argument 3 of `getsockname(int, sockaddr *, socklen_t *)' net/net-ipv6.cpp: In method `int IP6Network::dorecv(u_char *, int, Address &, int)': net/net-ipv6.cpp:526: passing `size_t *' as argument 6 of `recvfrom(int, void *, long unsigned int, int, sockaddr *, socklen_t *)' make[1]: *** [net/net-ipv6.o] Error 1 make[1]: Leaving directory `/usr/local/src/build/v/vic-2.8ucl1.1.3/vic' make: *** [build-stamp] Error 2 After fixing this (by using the correct type for the variables: socklen_t instead of size_t) it fails further on: rm -f codec/decoder-pvh.o; c++ -o codec/decoder-pvh.o -c -O2 -g -W -Wall -Wno-implicit-int -Wno-return-type -DLinux -DHAVE_IPV6 -DLINUX_IPV6 -DUSE_SHM -DINT_64=u_long -fsigned-char -DED_YBITS=4 -DSIGRET=void -DNLAYER=8 -I. -Icodec/tmndec -Icodec/tmn-x -Icodec/h263 -Irtp -Irender -Inet -Ivideo -Icodec -I../common -I../tk-8.0/generic -I../tcl-8.0/generic -Icodec/jpeg -Icodec/p64 -I. codec/decoder-pvh.cpp codec/decoder-pvh.cpp: In method `void PvhDecoder::refine_old(rbent *, short int *, const u_int *, int)': codec/decoder-pvh.cpp:322: warning: unused variable `u_int m1' codec/decoder-pvh.cpp: In method `void PvhDecoder::bias_to_midstep(short int *, int, u_int *)': codec/decoder-pvh.cpp:519: warning: unused variable `u_int m1' codec/decoder-pvh.cpp: In method `void PvhDecoder::decode_dct_base(rbent *, int)': codec/decoder-pvh.cpp:561: no matching function for call to `PvhDecoder::parse_block (rbent *&, short int[64], unsigned int[2])' codec/decoder-pvh.cpp:451: candidates are: void PvhDecoder::parse_block(rbent *, short int *, u_long *) codec/decoder-pvh.cpp: In method `void PvhDecoder::decode_dct(spatial_hierarchy *, u_int8_t *, int)': codec/decoder-pvh.cpp:873: no matching function for call to `rdct (short int[64], unsigned int &, unsigned int &, u_char *&, int &, u_char *)' codec/dct.h:63: candidates are: void rdct(short int *, long unsigned int, u_char *, int, const int *) codec/dct.h:64: void rdct(short int *, long unsigned int, u_char *, int, const u_char *) codec/decoder-pvh.cpp: In method `struct rbent * PvhDecoder::find_first_packet(frment *, rbent *, int) const': codec/decoder-pvh.cpp:1188: warning: unused variable `int eblk' codec/decoder-pvh.cpp: In method `void PvhDecoder::recv(pktbuf *)': codec/decoder-pvh.cpp:1582: warning: comparison between signed and unsigned codec/decoder-pvh.cpp: At top level: codec/decoder-pvh.cpp:36: warning: `char rcsid[130]' defined but not used make[1]: *** [codec/decoder-pvh.o] Error 1 make[1]: Leaving directory `/usr/local/src/build/v/vic-2.8ucl1.1.3/vic' make: *** [build-stamp] Error 2 This is a commonly seen error: assuming that an int is just as big as an unsigned. E.g. above, the first case: the parameter is u_long *, but it's used as unsigned int *. These errors mean it won't build as-is on a 64 bit platform (alpha, sparc64, ia64). This bug is marked serious as it prevents building the package on some architectures. Paul Slootman --------------------------------------- Received: (at 109378-close) by bugs.debian.org; 22 Nov 2001 20:52:53 +0000 >From [EMAIL PROTECTED] Thu Nov 22 14:52:53 2001 Return-path: <[EMAIL PROTECTED]> Received: from auric.debian.org [206.246.226.45] (mail) by master.debian.org with esmtp (Exim 3.12 1 (Debian)) id 1670q5-0004q1-00; Thu, 22 Nov 2001 14:52:53 -0600 Received: from troup by auric.debian.org with local (Exim 3.12 1 (Debian)) id 1670q4-0003BL-00; Thu, 22 Nov 2001 15:52:52 -0500 From: Guus Sliepen <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] X-Katie: $Revision: 1.65 $ Subject: Bug#109378: fixed in vic 1:2.8ucl1.1.3-7 Message-Id: <[EMAIL PROTECTED]> Sender: James Troup <[EMAIL PROTECTED]> Date: Thu, 22 Nov 2001 15:52:52 -0500 Delivered-To: [EMAIL PROTECTED] We believe that the bug you reported is fixed in the latest version of vic, which has been installed in the Debian FTP archive: vic_2.8ucl1.1.3-7.diff.gz to pool/main/v/vic/vic_2.8ucl1.1.3-7.diff.gz vic_2.8ucl1.1.3-7.dsc to pool/main/v/vic/vic_2.8ucl1.1.3-7.dsc vic_2.8ucl1.1.3-7_i386.deb to pool/main/v/vic/vic_2.8ucl1.1.3-7_i386.deb 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. Guus Sliepen <[EMAIL PROTECTED]> (supplier of updated vic 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: SHA1 Format: 1.7 Date: Thu, 22 Nov 2001 02:35:14 +0100 Source: vic Binary: vic Architecture: source i386 Version: 1:2.8ucl1.1.3-7 Distribution: unstable Urgency: low Maintainer: Guus Sliepen <[EMAIL PROTECTED]> Changed-By: Guus Sliepen <[EMAIL PROTECTED]> Description: vic - Video Conferencing Tool Closes: 104950 109378 109472 Changes: vic (1:2.8ucl1.1.3-7) unstable; urgency=low . * Package adopted. Closes: #109472 * Fix all gcc-3.0 warnings and errors. Closes: #104950 * Compile against Debian's own shared tcl and tk libraries. * Install override for lintian warning about CHANGES.html. * 64 bit fixes (well, ugly hacks). Closes: #109378 * Undo patches agains tcl-8.0/ directory as it is not used anymore. Files: 35eae1102c29aebb5cb0aa827e95de5c 649 net optional vic_2.8ucl1.1.3-7.dsc f784d4c01319ff6286d961f2fd69f3d3 7191 net optional vic_2.8ucl1.1.3-7.diff.gz cbcfc31c743c61dacf755fde795d02a7 462568 net optional vic_2.8ucl1.1.3-7_i386.deb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (GNU/Linux) Comment: For info see http://www.gnupg.org iD8DBQE7/FfGAxLow12M2nsRAkGMAJoCGGZWu5mW8VntWwNWMw6V9e/JxACeNFsz ydGzf+7CTgwqSIgwOTKDZ40= =u8B9 -----END PGP SIGNATURE-----