Your message dated Sun, 30 Oct 2005 19:33:10 +0100
with message-id <[EMAIL PROTECTED]>
and subject line Closing irmp3 bugs
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 Dec 2004 13:03:54 +0000
>From [EMAIL PROTECTED] Mon Dec 20 05:03:54 2004
Return-path: <[EMAIL PROTECTED]>
Received: from c219139.adsl.hansenet.de (localhost.localdomain) 
[213.39.219.139] 
        by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
        id 1CgNCc-0001pa-00; Mon, 20 Dec 2004 05:03:54 -0800
Received: from aj by localhost.localdomain with local (Exim 4.34)
        id 1CgNHJ-0002SM-J5; Mon, 20 Dec 2004 14:08:45 +0100
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
From: Andreas Jochens <[EMAIL PROTECTED]>
Subject: irmp3: FTBFS (amd64/gcc-4.0): invalid lvalue in assignment
Message-Id: <[EMAIL PROTECTED]>
Date: Mon, 20 Dec 2004 14:08:45 +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: irmp3
Severity: normal
Tags: patch

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

gcc -Wall -fno-builtin -O2  -DMOD_MPG123 -DMOD_PLAYLIST -DMOD_PLAYLISTLIST 
-DMOD_BEEP -DMOD_MIXER -DMOD_ENV -DMOD_TIMER -DMOD_ALARM -DMOD_LIRC 
-DMOD_LCDPROC -DMOD_NETCTL -DMOD_IDLE -DMOD_CD -DMOD_SAVE -c mod.c -o mod.o
mod.c: In function 'mod_sendmsg':
mod.c:67: error: invalid lvalue in assignment
make[1]: *** [mod.o] Error 1
make[1]: Leaving directory `/irmp3-0.4.3pre6'
make: *** [build-stamp] Error 2

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

Regards
Andreas Jochens

diff -urN ../tmp-orig/irmp3-0.4.3pre6/mod.c ./mod.c
--- ../tmp-orig/irmp3-0.4.3pre6/mod.c   2000-04-05 01:37:33.000000000 +0200
+++ ./mod.c     2004-12-20 14:00:46.579817384 +0100
@@ -64,7 +64,7 @@
        // append message to queue
        log_printf(LOG_NOISYDEBUG, "mod_sendmsg(): %d '%s'\n", newmsg->msgtype, 
newmsg->msg);
        for (m=mod_msgs; m && m->next; m=m->next);
-       m ? m->next : mod_msgs = newmsg;
+       if (m) m->next = newmsg; else mod_msgs = newmsg;
 }
 
 void mod_sendmsgf (int msgtype, char *msg, ...)
diff -urN ../tmp-orig/irmp3-0.4.3pre6/mod_cd.c ./mod_cd.c
--- ../tmp-orig/irmp3-0.4.3pre6/mod_cd.c        2001-05-08 20:02:37.000000000 
+0200
+++ ./mod_cd.c  2004-12-20 14:01:57.932970056 +0100
@@ -164,7 +164,6 @@
                        }
                        mod_sendmsg(MSGTYPE_PLAYER, "pause");
                        return 0;
-              default:         // ignore
               }
        }
        return 0;
diff -urN ../tmp-orig/irmp3-0.4.3pre6/mod_playlist.c ./mod_playlist.c
--- ../tmp-orig/irmp3-0.4.3pre6/mod_playlist.c  2001-05-17 18:49:50.000000000 
+0200
+++ ./mod_playlist.c    2004-12-20 14:01:16.362289760 +0100
@@ -94,7 +94,7 @@
        newentry->shuffleprev = NULL;
 
        // link new entry into playlist chain
-       lastentry ? lastentry->next : mod_playlist_list = newentry;
+       if (lastentry) lastentry->next = newentry; else mod_playlist_list = 
newentry;
        if (!mod_playlist_current)
                mod_playlist_current = mod_playlist_list;
        log_printf(LOG_NOISYDEBUG, "mod_playlist_add(): added '%s'\n", 
newentry->song);
diff -urN ../tmp-orig/irmp3-0.4.3pre6/mod_playlistlist.c ./mod_playlistlist.c
--- ../tmp-orig/irmp3-0.4.3pre6/mod_playlistlist.c      2000-04-21 
17:51:49.000000000 +0200
+++ ./mod_playlistlist.c        2004-12-20 14:01:44.078076320 +0100
@@ -88,7 +88,7 @@
        newentry->prev = lastentry;
 
        // link new entry into playlistlist chain
-       lastentry ? lastentry->next : mod_playlistlist_list = newentry;
+       if (lastentry) lastentry->next = newentry; else mod_playlistlist_list = 
newentry;
        if (!mod_playlistlist_current)
                mod_playlistlist_current = mod_playlistlist_list;
        log_printf(LOG_NOISYDEBUG, "mod_playlistlist_add(): added playlist 
'%s'\n", newentry->playlist);

---------------------------------------
Received: (at 286474-done) by bugs.debian.org; 30 Oct 2005 18:33:11 +0000
>From [EMAIL PROTECTED] Sun Oct 30 10:33:11 2005
Return-path: <[EMAIL PROTECTED]>
Received: from meitner.df7cb.de [217.160.132.97] (postfix)
        by spohr.debian.org with esmtp (Exim 3.36 1 (Debian))
        id 1EWHzT-0001HO-00; Sun, 30 Oct 2005 10:33:11 -0800
Received: from volta.df7cb.de (dslb-084-058-194-060.pools.arcor-ip.net 
[84.58.194.60])
        by meitner.df7cb.de (Postfix) with ESMTP id 07FA220C030;
        Sun, 30 Oct 2005 19:33:09 +0100 (CET)
Received: by volta.df7cb.de (Postfix, from userid 1000)
        id 7F14843063; Sun, 30 Oct 2005 19:33:10 +0100 (CET)
Date: Sun, 30 Oct 2005 19:33:10 +0100
From: Christoph Berg <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED], [EMAIL PROTECTED],
        [EMAIL PROTECTED], [EMAIL PROTECTED],
        [EMAIL PROTECTED], [EMAIL PROTECTED],
        [EMAIL PROTECTED], [EMAIL PROTECTED]
Subject: Closing irmp3 bugs
Message-ID: <[EMAIL PROTECTED]>
Mail-Followup-To: Christoph Berg <[EMAIL PROTECTED]>,
        [EMAIL PROTECTED], [EMAIL PROTECTED],
        [EMAIL PROTECTED], [EMAIL PROTECTED],
        [EMAIL PROTECTED], [EMAIL PROTECTED],
        [EMAIL PROTECTED], [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/signed; micalg=pgp-sha1;
        protocol="application/pgp-signature"; boundary="gKMricLos+KVdGMg"
Content-Disposition: inline
X-Face: ([EMAIL PROTECTED](D\O)J!Qu\q4fh8W^7WGqxpwTk&Xy0*ya<[EMAIL 
PROTECTED]/TA:l\Pde>wYj,M;75" 
N13_k}S.rS#lmX[G]QOuw[H"4#z$tSn$SkV<IurN'6;gkRFZw@/XLtl7":0v&kN3*-iM~q*;.*CfH@ 
qM>5ucV193Tz3IWj<]8at(6"K.ht//s"Ds,xMV9A\_bN/)[EMAIL PROTECTED]>-dF34Kw?,<G0ya
User-Agent: Mutt/1.5.9i
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=-3.0 required=4.0 tests=BAYES_00 autolearn=no 
        version=2.60-bugs.debian.org_2005_01_02
X-CrossAssassin-Score: 2


--gKMricLos+KVdGMg
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
Content-Transfer-Encoding: quoted-printable

irmp3 was removed [1] from unstable, and did not ship with sarge, I'm
closing all bugs now.

[1] http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=3D327629

Christoph
--=20
[EMAIL PROTECTED] | http://www.df7cb.de/

--gKMricLos+KVdGMg
Content-Type: application/pgp-signature; name="signature.asc"
Content-Description: Digital signature
Content-Disposition: inline

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

iQCVAwUBQ2UR5rRrkjttir5xAQLkPgQAyi0dPTjVSmDujZucHhj09mL2exjTLb+b
hlGDFYmAYpK8Djms66qk7k3qaar5jcbmLS0n8EzwfX7P4NeIqF5OTlj1AMQ1XCyR
CTdXfAukQenrLso2FV0+P0pbg7bc20au4mXG0tYpptuAPHQkQXaxTp0Z6BbU5t3j
pUfzpBaK4NU=
=/LLd
-----END PGP SIGNATURE-----

--gKMricLos+KVdGMg--


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

Reply via email to