Your message dated Fri, 14 Oct 2005 17:32:10 -0700
with message-id <[EMAIL PROTECTED]>
and subject line Bug#324875: fixed in lavaps 2.7-4
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; 24 Aug 2005 15:27:33 +0000
>From [EMAIL PROTECTED] Wed Aug 24 08:27:33 2005
Return-path: <[EMAIL PROTECTED]>
Received: from d020163.adsl.hansenet.de (localhost.localdomain) [80.171.20.163] 
        by spohr.debian.org with esmtp (Exim 3.36 1 (Debian))
        id 1E7xA5-0003GO-00; Wed, 24 Aug 2005 08:27:33 -0700
Received: from aj by localhost.localdomain with local (Exim 4.52)
        id 1E7xA3-0001Gw-6Q; Wed, 24 Aug 2005 17:27:31 +0200
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
From: Andreas Jochens <[EMAIL PROTECTED]>
Subject: lavaps: FTBFS (amd64): expected primary-expression before ')' token
Message-Id: <[EMAIL PROTECTED]>
Date: Wed, 24 Aug 2005 17:27:31 +0200
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: lavaps
Version: 2.7-3
Severity: serious
Tags: patch

When building 'lavaps' on amd64/unstable,
I get the following error:

                 from /usr/include/libgnomeui-2.0/gnome.h:5,
                 from gtk_blob.cc:36:
gtk_blob.cc:1062: error: expected primary-expression before ')' token
gtk_blob.cc:1066: error: expected primary-expression before ')' token
make[4]: *** [gtk_blob.o] Error 1
make[4]: Leaving directory `/lavaps-2.7/src'

This is because the dgettext test in the configure script fails because
the test program casts a pointer to an int which causes gcc to fail 
with a 'cast from void* to int loses precision' error.

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

Regards
Andreas Jochens

diff -urN ../tmp-orig/lavaps-2.7/acinclude.m4 ./acinclude.m4
--- ../tmp-orig/lavaps-2.7/acinclude.m4 2004-12-25 02:34:41.000000000 +0000
+++ ./acinclude.m4      2005-08-24 15:09:22.000000000 +0000
@@ -1556,7 +1556,7 @@
 ], [])[extern int _nl_msg_cat_cntr;
 extern int *_nl_domain_bindings;],
             [bindtextdomain ("", "");
-return (int) gettext ("")]ifelse([$2], [need-ngettext], [ + (int) ngettext 
("", "", 0)], [])[ + _nl_msg_cat_cntr + *_nl_domain_bindings],
+return (long) gettext ("")]ifelse([$2], [need-ngettext], [ + (long) ngettext 
("", "", 0)], [])[ + _nl_msg_cat_cntr + *_nl_domain_bindings],
             gt_cv_func_gnugettext_libc=yes,
             gt_cv_func_gnugettext_libc=no)])
 
@@ -1592,7 +1592,7 @@
 #endif
 const char *_nl_expand_alias ();],
               [bindtextdomain ("", "");
-return (int) gettext ("")]ifelse([$2], [need-ngettext], [ + (int) ngettext 
("", "", 0)], [])[ + _nl_msg_cat_cntr + *_nl_expand_alias (0)],
+return (long) gettext ("")]ifelse([$2], [need-ngettext], [ + (long) ngettext 
("", "", 0)], [])[ + _nl_msg_cat_cntr + *_nl_expand_alias (0)],
               gt_cv_func_gnugettext_libintl=yes,
               gt_cv_func_gnugettext_libintl=no)
             dnl Now see whether libintl exists and depends on libiconv.
@@ -1613,7 +1613,7 @@
 #endif
 const char *_nl_expand_alias ();],
                 [bindtextdomain ("", "");
-return (int) gettext ("")]ifelse([$2], [need-ngettext], [ + (int) ngettext 
("", "", 0)], [])[ + _nl_msg_cat_cntr + *_nl_expand_alias (0)],
+return (long) gettext ("")]ifelse([$2], [need-ngettext], [ + (long) ngettext 
("", "", 0)], [])[ + _nl_msg_cat_cntr + *_nl_expand_alias (0)],
                [LIBINTL="$LIBINTL $LIBICONV"
                 LTLIBINTL="$LTLIBINTL $LTLIBICONV"
                 gt_cv_func_gnugettext_libintl=yes
@@ -2077,7 +2077,7 @@
         [AC_TRY_LINK([
 #include <libintl.h>
 ],
-          [return (int) dgettext ("","")],
+          [return (long) dgettext ("","")],
          gt_cv_func_dgettext_libc=yes,
           gt_cv_func_dgettext_libc=no)
         ])
diff -urN ../tmp-orig/lavaps-2.7/configure ./configure
--- ../tmp-orig/lavaps-2.7/configure    2004-12-25 02:37:07.000000000 +0000
+++ ./configure 2005-08-24 15:10:24.000000000 +0000
@@ -7427,7 +7427,7 @@
 int
 main ()
 {
-return (int) dgettext ("","")
+return (long) dgettext ("","")
   ;
   return 0;
 }

---------------------------------------
Received: (at 324875-close) by bugs.debian.org; 15 Oct 2005 00:38:08 +0000
>From [EMAIL PROTECTED] Fri Oct 14 17:38:08 2005
Return-path: <[EMAIL PROTECTED]>
Received: from katie by spohr.debian.org with local (Exim 3.36 1 (Debian))
        id 1EQZy6-0006YG-00; Fri, 14 Oct 2005 17:32:10 -0700
From: [EMAIL PROTECTED] (Ashley T. Howes)
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.56 $
Subject: Bug#324875: fixed in lavaps 2.7-4
Message-Id: <[EMAIL PROTECTED]>
Sender: Archive Administrator <[EMAIL PROTECTED]>
Date: Fri, 14 Oct 2005 17:32:10 -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: lavaps
Source-Version: 2.7-4

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

lavaps_2.7-4.diff.gz
  to pool/main/l/lavaps/lavaps_2.7-4.diff.gz
lavaps_2.7-4.dsc
  to pool/main/l/lavaps/lavaps_2.7-4.dsc
lavaps_2.7-4_alpha.deb
  to pool/main/l/lavaps/lavaps_2.7-4_alpha.deb
lavaps_2.7-4_hppa.deb
  to pool/main/l/lavaps/lavaps_2.7-4_hppa.deb
lavaps_2.7-4_i386.deb
  to pool/main/l/lavaps/lavaps_2.7-4_i386.deb
lavaps_2.7-4_ia64.deb
  to pool/main/l/lavaps/lavaps_2.7-4_ia64.deb
lavaps_2.7-4_mips.deb
  to pool/main/l/lavaps/lavaps_2.7-4_mips.deb
lavaps_2.7-4_powerpc.deb
  to pool/main/l/lavaps/lavaps_2.7-4_powerpc.deb
lavaps_2.7-4_sparc.deb
  to pool/main/l/lavaps/lavaps_2.7-4_sparc.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.
Ashley T. Howes <[EMAIL PROTECTED]> (supplier of updated lavaps 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: Fri, 14 Oct 2005 08:38:13 +0100
Source: lavaps
Binary: lavaps
Architecture: alpha hppa i386 ia64 mips powerpc source sparc 
Version: 2.7-4
Distribution: unstable
Urgency: low
Maintainer: Ashley T. Howes <[EMAIL PROTECTED]>
Changed-By: Ashley T. Howes <[EMAIL PROTECTED]>
Description: 
 lavaps     - a lava lamp of currently running processes
Closes: 324875
Changes: 
 lavaps (2.7-4) unstable; urgency=low
 .
   * Lintian: changed copyright file to new address of Free Software Foundation
     (FSF)
   * Checked against latest Debian Policy and bumped Standards-Version field in
     debian/control to 3.6.2.1
   * Apply patch from Andreas Jochens to acinclude.m4 and configure to fix FTBFS
     on amd64.  Closes: #324875.
Files: 
 01d070a2946b0a40d0851e51abb05b99 169826 admin optional lavaps_2.7-4_ia64.deb
 025ba09278604f290e600f650ea32e06 150928 admin optional lavaps_2.7-4_mips.deb
 02f66334d719b4ee06577d15ed5d58e1 149770 admin optional lavaps_2.7-4_powerpc.deb
 1cf8f31a00c4feda8cc4a3360e2371ce 138748 admin optional lavaps_2.7-4_i386.deb
 1e0df93e068b8c62f52d2561f5286217 153542 admin optional lavaps_2.7-4_hppa.deb
 32e6d25a1699a815e0b9c5b74a918334 151768 admin optional lavaps_2.7-4_alpha.deb
 3b2d8c1d7519ffd94987c37e83aa309e 141248 admin optional lavaps_2.7-4_sparc.deb
 6af2ab6fc57725deafb21bd76fe45d71 8846 admin optional lavaps_2.7-4.diff.gz
 90147219f0391cc4d54624052274b085 614 admin optional lavaps_2.7-4.dsc

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

iD8DBQFDUEpzfDt5cIjHwfcRAsT8AJ49+DOplYKGFMZmqjUsmIEkuaRiXQCgk1rn
vvBFAq9RsorfoaaX1jCrvYQ=
=vS+1
-----END PGP SIGNATURE-----


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

Reply via email to