Your message dated Tue, 27 Dec 2005 09:02:07 -0800 with message-id <[EMAIL PROTECTED]> and subject line Bug#300549: fixed in kuake 0.3-5 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 Mar 2005 13:44:00 +0000 >From [EMAIL PROTECTED] Sun Mar 20 05:44:00 2005 Return-path: <[EMAIL PROTECTED]> Received: from c223012.adsl.hansenet.de (localhost.localdomain) [213.39.223.12] by spohr.debian.org with esmtp (Exim 3.35 1 (Debian)) id 1DD0il-0001gt-00; Sun, 20 Mar 2005 05:43:59 -0800 Received: from aj by localhost.localdomain with local (Exim 4.44) id 1DD0ik-0000hT-3T; Sun, 20 Mar 2005 14:43:58 +0100 To: Debian Bug Tracking System <[EMAIL PROTECTED]> From: Andreas Jochens <[EMAIL PROTECTED]> Subject: kuake: FTBFS (amd64/gcc-4.0): Can't find X libraries. Message-Id: <[EMAIL PROTECTED]> Date: Sun, 20 Mar 2005 14:43:58 +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: kuake Severity: normal Tags: patch When building 'kuake' on amd64 with gcc-4.0, I get the following error: checking for snprintf... yes checking for X... configure: error: Can't find X libraries. Please check your installation and add the correct paths! make: *** [config.status] Error 1 With the attached patch 'kuake' can be compiled on amd64 using gcc-4.0. Regards Andreas Jochens diff -urN ../tmp-orig/kuake-0.3/acinclude.m4 ./acinclude.m4 --- ../tmp-orig/kuake-0.3/acinclude.m4 2003-01-18 01:14:07.000000000 +0100 +++ ./acinclude.m4 2005-03-20 14:34:37.804372598 +0100 @@ -2857,7 +2857,7 @@ [/lib directory suffix (64,32,none)]), kdelibsuff=$enableval) if test "$kdelibsuff" = "none"; then - if test -d /lib64 ; then + if test -d /lib64 && ! test -L /lib64; then kdelibsuff=64 else kdelibsuff= @@ -6518,7 +6518,7 @@ libsuff= if test "x$LINUX_64_MODE" = x64; then # Some platforms are per default 64-bit, so there's no /lib64 - if test -d /lib64; then + if test -d /lib64 && ! test -L /lib64; then libsuff=64 fi fi diff -urN ../tmp-orig/kuake-0.3/aclocal.m4 ./aclocal.m4 --- ../tmp-orig/kuake-0.3/aclocal.m4 2003-01-18 01:14:10.000000000 +0100 +++ ./aclocal.m4 2005-03-20 14:33:27.049022902 +0100 @@ -2869,7 +2869,7 @@ [/lib directory suffix (64,32,none)]), kdelibsuff=$enableval) if test "$kdelibsuff" = "none"; then - if test -d /lib64 ; then + if test -d /lib64 && ! test -L /lib64; then kdelibsuff=64 else kdelibsuff= @@ -6508,7 +6508,7 @@ libsuff= if test "x$LINUX_64_MODE" = x64; then # Some platforms are per default 64-bit, so there's no /lib64 - if test -d /lib64; then + if test -d /lib64 && ! test -L /lib64; then libsuff=64 fi fi diff -urN ../tmp-orig/kuake-0.3/admin/acinclude.m4.in ./admin/acinclude.m4.in --- ../tmp-orig/kuake-0.3/admin/acinclude.m4.in 2002-11-03 00:10:09.000000000 +0100 +++ ./admin/acinclude.m4.in 2005-03-20 14:33:44.974564695 +0100 @@ -2857,7 +2857,7 @@ [/lib directory suffix (64,32,none)]), kdelibsuff=$enableval) if test "$kdelibsuff" = "none"; then - if test -d /lib64 ; then + if test -d /lib64 && ! test -L /lib64; then kdelibsuff=64 else kdelibsuff= diff -urN ../tmp-orig/kuake-0.3/admin/libtool.m4.in ./admin/libtool.m4.in --- ../tmp-orig/kuake-0.3/admin/libtool.m4.in 2002-10-06 18:30:21.000000000 +0200 +++ ./admin/libtool.m4.in 2005-03-20 14:33:58.011049673 +0100 @@ -1270,7 +1270,7 @@ libsuff= if test "x$LINUX_64_MODE" = x64; then # Some platforms are per default 64-bit, so there's no /lib64 - if test -d /lib64; then + if test -d /lib64 && ! test -L /lib64; then libsuff=64 fi fi diff -urN ../tmp-orig/kuake-0.3/configure ./configure --- ../tmp-orig/kuake-0.3/configure 2003-01-20 01:18:43.000000000 +0100 +++ ./configure 2005-03-20 14:34:24.543930864 +0100 @@ -5640,7 +5640,7 @@ kdelibsuff=$enableval fi; if test "$kdelibsuff" = "none"; then - if test -d /lib64 ; then + if test -d /lib64 && ! test -L /lib64; then kdelibsuff=64 else kdelibsuff= @@ -8930,7 +8930,7 @@ libsuff= if test "x$LINUX_64_MODE" = x64; then # Some platforms are per default 64-bit, so there's no /lib64 - if test -d /lib64; then + if test -d /lib64 && ! test -L /lib64; then libsuff=64 fi fi @@ -12141,7 +12141,7 @@ libsuff= if test "x$LINUX_64_MODE" = x64; then # Some platforms are per default 64-bit, so there's no /lib64 - if test -d /lib64; then + if test -d /lib64 && ! test -L /lib64; then libsuff=64 fi fi @@ -14873,7 +14873,7 @@ libsuff= if test "x$LINUX_64_MODE" = x64; then # Some platforms are per default 64-bit, so there's no /lib64 - if test -d /lib64; then + if test -d /lib64 && ! test -L /lib64; then libsuff=64 fi fi --------------------------------------- Received: (at 300549-close) by bugs.debian.org; 27 Dec 2005 17:10:57 +0000 >From [EMAIL PROTECTED] Tue Dec 27 09:10:57 2005 Return-path: <[EMAIL PROTECTED]> Received: from katie by spohr.debian.org with local (Exim 4.50) id 1ErID9-0007Cu-IJ; Tue, 27 Dec 2005 09:02:07 -0800 From: Jean-Michel Kelbert <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] X-Katie: $Revision: 1.65 $ Subject: Bug#300549: fixed in kuake 0.3-5 Message-Id: <[EMAIL PROTECTED]> Sender: Archive Administrator <[EMAIL PROTECTED]> Date: Tue, 27 Dec 2005 09:02: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: kuake Source-Version: 0.3-5 We believe that the bug you reported is fixed in the latest version of kuake, which is due to be installed in the Debian FTP archive: kuake_0.3-5.diff.gz to pool/main/k/kuake/kuake_0.3-5.diff.gz kuake_0.3-5.dsc to pool/main/k/kuake/kuake_0.3-5.dsc kuake_0.3-5_i386.deb to pool/main/k/kuake/kuake_0.3-5_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. Jean-Michel Kelbert <[EMAIL PROTECTED]> (supplier of updated kuake 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: Tue, 27 Dec 2005 16:46:52 +0000 Source: kuake Binary: kuake Architecture: source i386 Version: 0.3-5 Distribution: unstable Urgency: low Maintainer: Jean-Michel Kelbert <[EMAIL PROTECTED]> Changed-By: Jean-Michel Kelbert <[EMAIL PROTECTED]> Description: kuake - Console which looks like Quake game console Closes: 300549 Changes: kuake (0.3-5) unstable; urgency=low . * Apply a patch to build on amd64 with gcc 4.0 (closes: #300549) Files: a64f681384c15ea641ba330bb5a9ad2f 609 kde optional kuake_0.3-5.dsc e657f926040049ed9b08aeb8a4bf7a05 42590 kde optional kuake_0.3-5.diff.gz e96f8bd63c4108dcad48bf029e2302be 45346 kde optional kuake_0.3-5_i386.deb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (GNU/Linux) iD8DBQFDsXDpZA5kLi8vDN4RAr+JAKDT6iRkxCnKQHbfFruYOxY49uzFpACbBEbS nkL4M0M29CvqmsHV3sScLv8= =/FMM -----END PGP SIGNATURE----- -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]