Your message dated Sun, 31 Jul 2005 00:02:05 -0700
with message-id <[EMAIL PROTECTED]>
and subject line Bug#285542: fixed in bopm 3.1.2-6
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; 13 Dec 2004 22:28:05 +0000
>From [EMAIL PROTECTED] Mon Dec 13 14:28:05 2004
Return-path: <[EMAIL PROTECTED]>
Received: from c203038.adsl.hansenet.de (localhost.localdomain) [213.39.203.38] 
        by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
        id 1Cdyfl-0005sA-00; Mon, 13 Dec 2004 14:28:05 -0800
Received: from aj by localhost.localdomain with local (Exim 4.34)
        id 1Cdyk4-0001Yw-E6; Mon, 13 Dec 2004 23:32:32 +0100
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
From: Andreas Jochens <[EMAIL PROTECTED]>
Subject: bopm: FTBFS (amd64/gcc-4.0): invalid lvalue in assignment
Message-Id: <[EMAIL PROTECTED]>
Date: Mon, 13 Dec 2004 23:32:32 +0100
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 
        (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_2004_03_25
X-Spam-Level: 

Package: bopm
Severity: normal
Tags: patch

When building 'bopm' on amd64 with gcc-4.0,
I get the following error:

 x86_64-linux-gcc -DHAVE_CONFIG_H -I. -I. -I. -g -O2 -Wp,-MD,.deps/config.pp -c 
config.c  -fPIC -DPIC -o .libs/config.o
config.c: In function 'libopm_config_create':
config.c:93: error: invalid lvalue in assignment
config.c:97: error: invalid lvalue in assignment
config.c:102: error: invalid lvalue in assignment
config.c: In function 'libopm_config_set':
config.c:191: error: invalid lvalue in assignment
make[5]: *** [config.lo] Error 1
make[5]: Leaving directory `/bopm-3.1.2/src/libopm/src'

With the attached patch 'bopm' can be compiled
on amd64 using gcc-4.0.

Regards
Andreas Jochens

diff -urN ../tmp-orig/bopm-3.1.2/src/libopm/src/config.c 
./src/libopm/src/config.c
--- ../tmp-orig/bopm-3.1.2/src/libopm/src/config.c      2003-06-20 
06:18:44.000000000 +0200
+++ ./src/libopm/src/config.c   2004-12-13 23:26:04.320112528 +0100
@@ -90,16 +90,16 @@
             break;
 
          case OPM_TYPE_STRING:
-            (char *) ret->vars[i] = strdup("");
+            ret->vars[i] = strdup("");
             break;
 
          case OPM_TYPE_ADDRESS:
-            (opm_sockaddr *) ret->vars[i] = MyMalloc(sizeof(opm_sockaddr));
+            ret->vars[i] = MyMalloc(sizeof(opm_sockaddr));
             memset((opm_sockaddr *) ret->vars[i], 0, sizeof(opm_sockaddr));
             break; 
 
          case OPM_TYPE_STRINGLIST:
-            (OPM_LIST_T *) ret->vars[i] = libopm_list_create();
+            ret->vars[i] = libopm_list_create();
             break;
          default:
             ret->vars[i] = NULL;
@@ -188,7 +188,7 @@
       case OPM_TYPE_STRING:
          if((char *) config->vars[key] != NULL)
             MyFree(config->vars[key]);
-         (char *) config->vars[key] = strdup((char *) value);
+         config->vars[key] = strdup((char *) value);
          break;
 
       case OPM_TYPE_INT:

---------------------------------------
Received: (at 285542-close) by bugs.debian.org; 31 Jul 2005 07:11:16 +0000
>From [EMAIL PROTECTED] Sun Jul 31 00:11:16 2005
Return-path: <[EMAIL PROTECTED]>
Received: from katie by spohr.debian.org with local (Exim 3.36 1 (Debian))
        id 1Dz7pl-0002Ev-00; Sun, 31 Jul 2005 00:02:05 -0700
From: Martin Wuertele <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.56 $
Subject: Bug#285542: fixed in bopm 3.1.2-6
Message-Id: <[EMAIL PROTECTED]>
Sender: Archive Administrator <[EMAIL PROTECTED]>
Date: Sun, 31 Jul 2005 00:02:05 -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: bopm
Source-Version: 3.1.2-6

We believe that the bug you reported is fixed in the latest version of
bopm, which is due to be installed in the Debian FTP archive:

bopm_3.1.2-6.diff.gz
  to pool/main/b/bopm/bopm_3.1.2-6.diff.gz
bopm_3.1.2-6.dsc
  to pool/main/b/bopm/bopm_3.1.2-6.dsc
bopm_3.1.2-6_i386.deb
  to pool/main/b/bopm/bopm_3.1.2-6_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.
Martin Wuertele <[EMAIL PROTECTED]> (supplier of updated bopm 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, 28 Apr 2005 21:26:35 +0200
Source: bopm
Binary: bopm
Architecture: source i386
Version: 3.1.2-6
Distribution: unstable
Urgency: low
Maintainer: Martin Wuertele <[EMAIL PROTECTED]>
Changed-By: Martin Wuertele <[EMAIL PROTECTED]>
Description: 
 bopm       - Blitzed Open Proxy Monitor
Closes: 285542
Changes: 
 bopm (3.1.2-6) unstable; urgency=low
 .
   * added patch fixing gcc-4.0 problems on amd64 (thanks to Andreas
     Jochens <[EMAIL PROTECTED]>)
     (Closes: #285542)
Files: 
 954506939ea1ac1336bb87b72654ae9c 558 net optional bopm_3.1.2-6.dsc
 df1e9ec68fcb77b6bbf8009b554b652b 732041 net optional bopm_3.1.2-6.diff.gz
 c446336e722839adb98f22f6c06ea264 121842 net optional bopm_3.1.2-6_i386.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.1 (GNU/Linux)

iD8DBQFC7HTIKO6zWj6NzMARAjqfAKCD2vsU+TuVtzUJpHHNySysnyzn+wCfVeZP
/zIguZXqVI8LpLrOgq2r8Nc=
=P+1z
-----END PGP SIGNATURE-----


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to