Your message dated Mon, 12 Dec 2005 06:32:07 -0800
with message-id <[EMAIL PROTECTED]>
and subject line Bug#343061: fixed in dmalloc 5.4.2-3
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; 12 Dec 2005 09:42:29 +0000
>From [EMAIL PROTECTED] Mon Dec 12 01:42:28 2005
Return-path: <[EMAIL PROTECTED]>
Received: from mail.nexus.co.uk ([82.70.217.43] helo=crown.nexus.co.uk)
by spohr.debian.org with esmtp (Exim 4.50)
id 1ElkCS-0007DY-Mf
for [EMAIL PROTECTED]; Mon, 12 Dec 2005 01:42:28 -0800
Received: from 82-70-217-41.dsl.in-addr.zen.co.uk ([82.70.217.41]
helo=lurch.internal.reciva.com)
by crown.nexus.co.uk with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA:32)
(Exim 4.50)
id 1ElkCQ-000880-NZ
for [EMAIL PROTECTED]; Mon, 12 Dec 2005 09:42:26 +0000
Received: from [192.168.106.22] (helo=[192.168.106.22])
by lurch.internal.reciva.com with esmtp (Exim 4.50)
id 1ElkCP-0006ca-6X
for [EMAIL PROTECTED]; Mon, 12 Dec 2005 09:42:25 +0000
Subject: patch needed for build on arm
From: Phil Blundell <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Content-Type: text/plain
Date: Mon, 12 Dec 2005 09:43:47 +0000
Message-Id: <[EMAIL PROTECTED]>
Mime-Version: 1.0
X-Mailer: Evolution 2.2.3
Content-Transfer-Encoding: 7bit
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=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE
autolearn=no version=2.60-bugs.debian.org_2005_01_02
Package: dmalloc
Version: 5.4.2-2
This package fails to build with recent compilers due to some bad inline
assembly:
http://buildd.debian.org/~jeroen/status/package.php?p=dmalloc&a=arm#fail-arm
The patch below seems to fix this problem.
--- clean/dmalloc-5.4.2/return.h 2004-10-19 14:51:21.000000000 +0000
+++ dmalloc-5.4.2/return.h 2005-12-12 08:48:53.000000000 +0000
@@ -301,7 +301,7 @@
* For ARM based machines with gcc/gas 3.3.3 -- Silvester Erdeg.
*/
#ifdef __arm__
-#define GET_RET_ADDR(file) asm("str lr, %0" : "=g" (file) : /* no
inputs */ )
+#define GET_RET_ADDR(file) do { register int lr asm("lr"); file =
(char *)lr; } while (0)
#endif
/*************************************/
---------------------------------------
Received: (at 343061-close) by bugs.debian.org; 12 Dec 2005 14:41:14 +0000
>From [EMAIL PROTECTED] Mon Dec 12 06:41:14 2005
Return-path: <[EMAIL PROTECTED]>
Received: from katie by spohr.debian.org with local (Exim 4.50)
id 1Eloil-00066N-Jd; Mon, 12 Dec 2005 06:32:07 -0800
From: Daniel Baumann <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.60 $
Subject: Bug#343061: fixed in dmalloc 5.4.2-3
Message-Id: <[EMAIL PROTECTED]>
Sender: Archive Administrator <[EMAIL PROTECTED]>
Date: Mon, 12 Dec 2005 06:32:07 -0800
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: dmalloc
Source-Version: 5.4.2-3
We believe that the bug you reported is fixed in the latest version of
dmalloc, which is due to be installed in the Debian FTP archive:
dmalloc_5.4.2-3.diff.gz
to pool/main/d/dmalloc/dmalloc_5.4.2-3.diff.gz
dmalloc_5.4.2-3.dsc
to pool/main/d/dmalloc/dmalloc_5.4.2-3.dsc
libdmalloc-dev_5.4.2-3_i386.deb
to pool/main/d/dmalloc/libdmalloc-dev_5.4.2-3_i386.deb
libdmalloc4_5.4.2-3_i386.deb
to pool/main/d/dmalloc/libdmalloc4_5.4.2-3_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.
Daniel Baumann <[EMAIL PROTECTED]> (supplier of updated dmalloc 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: Mon, 12 Dec 2005 13:20:00 +0100
Source: dmalloc
Binary: libdmalloc4 libdmalloc-dev
Architecture: source i386
Version: 5.4.2-3
Distribution: unstable
Urgency: low
Maintainer: Daniel Baumann <[EMAIL PROTECTED]>
Changed-By: Daniel Baumann <[EMAIL PROTECTED]>
Description:
libdmalloc-dev - debug memory allocation library (development files and doc)
libdmalloc4 - debug memory allocation library
Closes: 343061
Changes:
dmalloc (5.4.2-3) unstable; urgency=low
.
* Added patch to fix bad inline asm (Closes: #343061).
Files:
0a214db966c16df1f8955da6b6c46934 609 devel optional dmalloc_5.4.2-3.dsc
17f04254b03fc5179b82c691258ed5ca 31749 devel optional dmalloc_5.4.2-3.diff.gz
c95370b295148fa1359bab311301aa20 123088 libs optional
libdmalloc4_5.4.2-3_i386.deb
0f68310ad412bb65bd1aaa9410e4fdb7 300926 libdevel optional
libdmalloc-dev_5.4.2-3_i386.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.1 (GNU/Linux)
iD8DBQFDnYl0xa93SlhRC1oRAtoLAKD16pDtGaDsmywf+/Zv7Pyc7ANHbgCgh2Ku
lZx7l3E5tpsGmPUE2h9Um8s=
=RU/0
-----END PGP SIGNATURE-----
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]