Your message dated Mon, 24 Oct 2005 23:02:09 -0700 with message-id <[EMAIL PROTECTED]> and subject line Bug#297722: fixed in libxslt-ruby 0.3.4-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; 2 Mar 2005 14:42:18 +0000 >From [EMAIL PROTECTED] Wed Mar 02 06:42:18 2005 Return-path: <[EMAIL PROTECTED]> Received: from d155011.adsl.hansenet.de (localhost.localdomain) [80.171.155.11] by spohr.debian.org with esmtp (Exim 3.35 1 (Debian)) id 1D6V3J-0001qM-00; Wed, 02 Mar 2005 06:42:18 -0800 Received: from aj by localhost.localdomain with local (Exim 4.44) id 1D6Vze-0002LS-5I; Wed, 02 Mar 2005 16:42:34 +0100 To: Debian Bug Tracking System <[EMAIL PROTECTED]> From: Andreas Jochens <[EMAIL PROTECTED]> Subject: libxslt-ruby: FTBFS (amd64/gcc-4.0): unrecognized command line option "-Wall-Wall" Message-Id: <[EMAIL PROTECTED]> Date: Wed, 02 Mar 2005 16:42:34 +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: libxslt-ruby Severity: normal Tags: patch When building 'libxslt-ruby' on amd64 with gcc-4.0, I get the following error: make[1]: Entering directory `/libxslt-ruby-0.3.4' gcc -fPIC -g -Wall-Wall -g -O2 -fPIC -I/usr/include/libxml2 -I/usr/include/libxml2 -I. -I/usr/lib/ruby/1.8/x86_64-linux -I/usr/lib/ruby/1.8/x86_64-linux -I. -DHAVE_ZLIB_H -DHAVE_RUBY_XML_DOCUMENT_H -I./debian/include -c libxslt.c cc1: error: unrecognized command line option "-Wall-Wall" make[1]: *** [libxslt.o] Error 1 make[1]: Leaving directory `/libxslt-ruby-0.3.4' make: *** [debian/stamp-makefile-build] Error 2 With the attached patch 'libxslt-ruby' can be compiled on amd64 using gcc-4.0. Regards Andreas Jochens diff -urN ../tmp-orig/libxslt-ruby-0.3.4/extconf.rb ./extconf.rb --- ../tmp-orig/libxslt-ruby-0.3.4/extconf.rb 2002-10-23 07:47:51.000000000 +0200 +++ ./extconf.rb 2005-03-02 16:35:32.672271700 +0100 @@ -56,7 +56,7 @@ $CFLAGS << ' ' + `xslt-config --cflags`.chomp $CFLAGS << ' ' + `xml2-config --cflags`.chomp -$CFLAGS = '-g -Wall' + $CFLAGS +$CFLAGS = '-g -Wall ' + $CFLAGS create_header() --------------------------------------- Received: (at 297722-close) by bugs.debian.org; 25 Oct 2005 06:08:14 +0000 >From [EMAIL PROTECTED] Mon Oct 24 23:08:14 2005 Return-path: <[EMAIL PROTECTED]> Received: from katie by spohr.debian.org with local (Exim 3.36 1 (Debian)) id 1EUHsv-0007bz-00; Mon, 24 Oct 2005 23:02:09 -0700 From: Andres Salomon <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] X-Katie: $Revision: 1.56 $ Subject: Bug#297722: fixed in libxslt-ruby 0.3.4-3 Message-Id: <[EMAIL PROTECTED]> Sender: Archive Administrator <[EMAIL PROTECTED]> Date: Mon, 24 Oct 2005 23:02:09 -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: libxslt-ruby Source-Version: 0.3.4-3 We believe that the bug you reported is fixed in the latest version of libxslt-ruby, which is due to be installed in the Debian FTP archive: libxslt-ruby1.8_0.3.4-3_i386.deb to pool/main/libx/libxslt-ruby/libxslt-ruby1.8_0.3.4-3_i386.deb libxslt-ruby_0.3.4-3.diff.gz to pool/main/libx/libxslt-ruby/libxslt-ruby_0.3.4-3.diff.gz libxslt-ruby_0.3.4-3.dsc to pool/main/libx/libxslt-ruby/libxslt-ruby_0.3.4-3.dsc 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. Andres Salomon <[EMAIL PROTECTED]> (supplier of updated libxslt-ruby 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, 25 Oct 2005 01:47:19 -0400 Source: libxslt-ruby Binary: libxslt-ruby1.8 Architecture: source i386 Version: 0.3.4-3 Distribution: unstable Urgency: low Maintainer: Debian QA Group <[EMAIL PROTECTED]> Changed-By: Andres Salomon <[EMAIL PROTECTED]> Description: libxslt-ruby1.8 - Ruby interface to libxslt Closes: 297722 Changes: libxslt-ruby (0.3.4-3) unstable; urgency=low . * Orphan package, set maintainer to QA group. * Add 006-wall_fix.patch to fix a build error involving gcc args; thanks to Andreas Jochens (closes: #297722). Files: c258bc73aa05c7d7f85cb815de843fbe 654 admin optional libxslt-ruby_0.3.4-3.dsc 77f62ec3799fd97628ceefbdab144055 7740 admin optional libxslt-ruby_0.3.4-3.diff.gz bc29aaf572c6cb5dbe4b0740910a50bb 14874 admin optional libxslt-ruby1.8_0.3.4-3_i386.deb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (GNU/Linux) iD8DBQFDXcf678o9R9NraMQRAnAHAJ9OfsnTMlnf9A1spWt593/Xr8PIpwCfV2W/ +IwjUHJNYajCybYWVJDDVJ8= =8swl -----END PGP SIGNATURE----- -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]