Your message dated Thu, 28 Jul 2005 01:18:53 -0700 with message-id <[EMAIL PROTECTED]> and subject line Bug#297249: fixed in mplayerplug-in 3.01-1 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; 28 Feb 2005 08:07:41 +0000 >From [EMAIL PROTECTED] Mon Feb 28 00:07:41 2005 Return-path: <[EMAIL PROTECTED]> Received: from c204041.adsl.hansenet.de (localhost.localdomain) [213.39.204.41] by spohr.debian.org with esmtp (Exim 3.35 1 (Debian)) id 1D5fwL-0002C8-00; Mon, 28 Feb 2005 00:07:41 -0800 Received: from aj by localhost.localdomain with local (Exim 4.44) id 1D5gsf-0004GI-Iy; Mon, 28 Feb 2005 10:07:57 +0100 To: Debian Bug Tracking System <[EMAIL PROTECTED]> From: Andreas Jochens <[EMAIL PROTECTED]> Subject: mplayerplug-in: FTBFS (amd64/gcc-4.0): cast from 'void*' to 'unsigned int' loses precision Message-Id: <[EMAIL PROTECTED]> Date: Mon, 28 Feb 2005 10:07:57 +0100 Delivered-To: [EMAIL PROTECTED] X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02 (1.212-2003-09-23-exp) on spohr.debian.org X-Spam-Status: No, hits=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE autolearn=no version=2.60-bugs.debian.org_2005_01_02 X-Spam-Level: Package: mplayerplug-in Severity: normal Tags: patch When building 'mplayerplug-in' on amd64 with gcc-4.0, I get the following error: Source/plugin.cpp: In member function 'virtual NPError nsPluginInstance::SetWindow(NPWindow*)': Source/plugin.cpp:560: error: cast from 'void*' to 'unsigned int' loses precision Source/plugin.cpp:585: error: cast from 'void*' to 'unsigned int' loses precision make[1]: *** [plugin.o] Error 1 make[1]: Leaving directory `/mplayerplug-in-2.70' make: *** [debian/stamp-makefile-build] Error 2 With the attached patch 'mplayerplug-in' can be compiled on amd64 using gcc-4.0. Regards Andreas Jochens diff -urN ../tmp-orig/mplayerplug-in-2.70/Source/plugin-ui.cpp ./Source/plugin-ui.cpp --- ../tmp-orig/mplayerplug-in-2.70/Source/plugin-ui.cpp 2004-09-20 22:21:37.000000000 +0000 +++ ./Source/plugin-ui.cpp 2005-02-28 09:03:21.635784071 +0000 @@ -241,7 +241,7 @@ int PercentRedraw; if (0) { - printf("Widget: %i\n", (int) w); + printf("Widget: %li\n", (long) w); printf("Message: %s\n", message); } diff -urN ../tmp-orig/mplayerplug-in-2.70/Source/plugin.cpp ./Source/plugin.cpp --- ../tmp-orig/mplayerplug-in-2.70/Source/plugin.cpp 2004-09-22 21:41:46.000000000 +0000 +++ ./Source/plugin.cpp 2005-02-28 09:03:03.078365995 +0000 @@ -556,8 +556,8 @@ if ((Window) window != (Window) aWindow->window) { if (DEBUG) - printf("New window! old: 0x%x new 0x%x\n", - (unsigned int) window, (unsigned int) aWindow->window); + printf("New window! old: 0x%lx new 0x%lx\n", + (unsigned long) window, (unsigned long) aWindow->window); } if (controlwindow == 1) @@ -581,8 +581,8 @@ if (state < STATE_WINDOWSET) { if (DEBUG) { - printf("Size: %d %d %x\n", aWindow->x, aWindow->y, - (unsigned int) aWindow->window); + printf("Size: %d %d %lx\n", aWindow->x, aWindow->y, + (unsigned long) aWindow->window); printf("Size: %dx%d \n", aWindow->width, aWindow->height); } --------------------------------------- Received: (at 297249-close) by bugs.debian.org; 28 Jul 2005 08:23:08 +0000 >From [EMAIL PROTECTED] Thu Jul 28 01:23:08 2005 Return-path: <[EMAIL PROTECTED]> Received: from katie by spohr.debian.org with local (Exim 3.36 1 (Debian)) id 1Dy3bR-0006NF-00; Thu, 28 Jul 2005 01:18:53 -0700 From: Rene Engelhard <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] X-Katie: $Revision: 1.56 $ Subject: Bug#297249: fixed in mplayerplug-in 3.01-1 Message-Id: <[EMAIL PROTECTED]> Sender: Archive Administrator <[EMAIL PROTECTED]> Date: Thu, 28 Jul 2005 01:18:53 -0700 Delivered-To: [EMAIL PROTECTED] X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02 (1.212-2003-09-23-exp) on spohr.debian.org X-Spam-Level: X-Spam-Status: No, hits=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER autolearn=no version=2.60-bugs.debian.org_2005_01_02 Source: mplayerplug-in Source-Version: 3.01-1 We believe that the bug you reported is fixed in the latest version of mplayerplug-in, which is due to be installed in the Debian FTP archive: mozilla-mplayer_3.01-1_powerpc.deb to pool/contrib/m/mplayerplug-in/mozilla-mplayer_3.01-1_powerpc.deb mplayerplug-in_3.01-1.diff.gz to pool/contrib/m/mplayerplug-in/mplayerplug-in_3.01-1.diff.gz mplayerplug-in_3.01-1.dsc to pool/contrib/m/mplayerplug-in/mplayerplug-in_3.01-1.dsc mplayerplug-in_3.01.orig.tar.gz to pool/contrib/m/mplayerplug-in/mplayerplug-in_3.01.orig.tar.gz 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. Rene Engelhard <[EMAIL PROTECTED]> (supplier of updated mplayerplug-in 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: Wed, 27 Jul 2005 21:09:15 +0200 Source: mplayerplug-in Binary: mozilla-mplayer Architecture: source powerpc Version: 3.01-1 Distribution: unstable Urgency: low Maintainer: Rene Engelhard <[EMAIL PROTECTED]> Changed-By: Rene Engelhard <[EMAIL PROTECTED]> Description: mozilla-mplayer - MPlayer-Plugin for Mozilla Closes: 280060 297249 313968 Changes: mplayerplug-in (3.01-1) unstable; urgency=low . * New upstream release - builds with g++-4.0 (closes: #297249) * build with gtk2 UI (closes: #280060) * fix de.po encoding (closes: #313968), thanks Jens Seidel * description update Files: 6d12093ec7d037f28c073c47c07dd8f2 727 contrib/misc optional mplayerplug-in_3.01-1.dsc 339cc410297850dfe18e217f46545402 185692 contrib/misc optional mplayerplug-in_3.01.orig.tar.gz 0447be9152960848562822e5f555e0e3 3683 contrib/misc optional mplayerplug-in_3.01-1.diff.gz 2d5ae15483864b46865582523ab26de8 356952 contrib/misc optional mozilla-mplayer_3.01-1_powerpc.deb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (GNU/Linux) iD8DBQFC5+sc+FmQsCSK63MRApyEAJ99o68EC2J2gA6bo4MIULBCd7TwowCdElPh kblULqa5TMN24mPv8C9/yYo= =9dfG -----END PGP SIGNATURE----- -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]