Your message dated Tue, 02 Aug 2005 01:32:07 -0700 with message-id <[EMAIL PROTECTED]> and subject line Bug#317489: fixed in adesklets 0.4.10-2 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; 9 Jul 2005 01:59:52 +0000 >From [EMAIL PROTECTED] Fri Jul 08 18:59:52 2005 Return-path: <[EMAIL PROTECTED]> Received: from zoot.lafn.org [206.117.18.6] by spohr.debian.org with esmtp (Exim 3.35 1 (Debian)) id 1Dr4dE-0006dI-00; Fri, 08 Jul 2005 18:59:52 -0700 Received: from localhost.localdomain (pool-71-104-165-253.lsanca.dsl-w.verizon.net [71.104.165.253]) (authenticated bits=0) by zoot.lafn.org (8.13.1/8.13.1) with ESMTP id j691xoLO080725 (version=TLSv1/SSLv3 cipher=AES256-SHA bits=256 verify=NO) for <[EMAIL PROTECTED]>; Fri, 8 Jul 2005 18:59:51 -0700 (PDT) (envelope-from [EMAIL PROTECTED]) Received: from kraai by localhost.localdomain with local (Exim 4.50) id 1Dquuq-0000wH-7L for [EMAIL PROTECTED]; Fri, 08 Jul 2005 08:37:24 -0700 Date: Fri, 8 Jul 2005 08:37:24 -0700 From: Matt Kraai <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Subject: FTBFS: configure breaks CFLAGS Message-ID: <[EMAIL PROTECTED]> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="pZs/OQEoSSbxGlYw" Content-Disposition: inline User-Agent: Mutt/1.5.9i X-Virus-Scanned: ClamAV version 0.85.1, clamav-milter version 0.85 on zoot.lafn.org X-Virus-Status: Clean 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=-2.4 required=4.0 tests=BAYES_00,DATE_IN_PAST_06_12 autolearn=no version=2.60-bugs.debian.org_2005_01_02 X-Spam-Level: --pZs/OQEoSSbxGlYw Content-Type: multipart/mixed; boundary="JWEK1jqKZ6MHAcjA" Content-Disposition: inline --JWEK1jqKZ6MHAcjA Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Package: adesklets Version: 0.4.10-1 Severity: serious Tags: patch adesklets fails to build from source: > checking for debugging symbols generation... no > checking for sigkill timeout... yes > checking for polling frequency... checking for bc... no > checking for lock files directory setting... yes > checking for control modifier on context menu... no > checking for date... (cached) no > checking for uname... (cached) no > checking for tputs in -lncurses... no > checking for tputs in -ltermcap... no > checking for tputs in -lcurses... no > configure: error: Could not find terminal management library for readline > (either ncurses, termcap or curses). > make: *** [config.status] Error 1 When configure determines that it can't use debugging symbols generation, it removes "\s*-g\s*" from CFLAGS. This sets CFLAGS to "-O2-Wall", which causes the failure. The attached patch makes it remove "\s*-g" instead, which fixes the problem. --=20 Matt --JWEK1jqKZ6MHAcjA Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename=patch Content-Transfer-Encoding: quoted-printable diff -u adesklets-0.4.10/debian/control adesklets-0.4.10/debian/control --- adesklets-0.4.10/debian/control +++ adesklets-0.4.10/debian/control @@ -2,7 +2,7 @@ Section: x11 Priority: optional Maintainer: Bartosz Fenski <[EMAIL PROTECTED]> -Build-Depends: debhelper (>=3D 4.0.0), autotools-dev, libimlib2-dev, pytho= n-dev, libncurses5-dev, libreadline5-dev, libfontconfig1-dev, libxt-dev +Build-Depends: debhelper (>=3D 4.0.0), autotools-dev, libimlib2-dev, pytho= n-dev, libncurses5-dev, libreadline5-dev, libfontconfig1-dev, libxt-dev, au= tomake1.8 Standards-Version: 3.6.1 =20 Package: adesklets diff -u adesklets-0.4.10/debian/rules adesklets-0.4.10/debian/rules --- adesklets-0.4.10/debian/rules +++ adesklets-0.4.10/debian/rules @@ -20,7 +20,7 @@ =20 config.status: configure dh_testdir - CFLAGS=3D"$(CFLAGS)" ./configure --host=3D$(DEB_HOST_GNU_TYPE) --build=3D= $(DEB_BUILD_GNU_TYPE) --prefix=3D/usr --mandir=3D\$${prefix}/share/man --in= fodir=3D\$${prefix}/share/info + CFLAGS=3D"$(CFLAGS)" ./configure --host=3D$(DEB_HOST_GNU_TYPE) --build=3D= $(DEB_BUILD_GNU_TYPE) --prefix=3D/usr --mandir=3D\$${prefix}/share/man --in= fodir=3D\$${prefix}/share/info || (cat config.log; exit 1) =20 =20 build: build-stamp only in patch2: unchanged: --- adesklets-0.4.10.orig/configure.ac +++ adesklets-0.4.10/configure.ac @@ -156,7 +156,7 @@ DEBUG=3Dyes else AC_MSG_RESULT([no]) - CFLAGS=3D`echo "$CFLAGS" | sed 's/@<:@@<:@:space:@:>@@:>@*-g@<:@@<:@:sp= ace:@:>@@:>@*//g'` + CFLAGS=3D`echo "$CFLAGS" | sed 's/@<:@@<:@:space:@:>@@:>@*-g//g'` fi =20 dnl SIGKILL timeout setting only in patch2: unchanged: --- adesklets-0.4.10.orig/configure +++ adesklets-0.4.10/configure @@ -5637,7 +5637,7 @@ else echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6 - CFLAGS=3D`echo "$CFLAGS" | sed 's/[[:space:]]*-g[[:space:]]*//g'` + CFLAGS=3D`echo "$CFLAGS" | sed 's/[[:space:]]*-g//g'` fi =20 enableval=3D --JWEK1jqKZ6MHAcjA-- --pZs/OQEoSSbxGlYw 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) iD8DBQFCzp2zfNdgYxVXvBARAnMPAKCms5Uct+KfGRIMLjqVp2MHVJYYQACbBQck 8vacG8TfkbiYZwJA2kDHM+c= =qNG0 -----END PGP SIGNATURE----- --pZs/OQEoSSbxGlYw-- --------------------------------------- Received: (at 317489-close) by bugs.debian.org; 2 Aug 2005 08:41:25 +0000 >From [EMAIL PROTECTED] Tue Aug 02 01:41:25 2005 Return-path: <[EMAIL PROTECTED]> Received: from katie by spohr.debian.org with local (Exim 3.36 1 (Debian)) id 1DzsBz-0004hk-00; Tue, 02 Aug 2005 01:32:07 -0700 From: Bartosz Fenski <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] X-Katie: $Revision: 1.56 $ Subject: Bug#317489: fixed in adesklets 0.4.10-2 Message-Id: <[EMAIL PROTECTED]> Sender: Archive Administrator <[EMAIL PROTECTED]> Date: Tue, 02 Aug 2005 01:32:07 -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: adesklets Source-Version: 0.4.10-2 We believe that the bug you reported is fixed in the latest version of adesklets, which is due to be installed in the Debian FTP archive: adesklets_0.4.10-2.diff.gz to pool/main/a/adesklets/adesklets_0.4.10-2.diff.gz adesklets_0.4.10-2.dsc to pool/main/a/adesklets/adesklets_0.4.10-2.dsc adesklets_0.4.10-2_i386.deb to pool/main/a/adesklets/adesklets_0.4.10-2_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. Bartosz Fenski <[EMAIL PROTECTED]> (supplier of updated adesklets 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, 2 Aug 2005 10:03:53 +0200 Source: adesklets Binary: adesklets Architecture: source i386 Version: 0.4.10-2 Distribution: unstable Urgency: low Maintainer: Bartosz Fenski <[EMAIL PROTECTED]> Changed-By: Bartosz Fenski <[EMAIL PROTECTED]> Description: adesklets - interactive Imlib2 console for the X Window System Closes: 317489 318184 318186 319949 Changes: adesklets (0.4.10-2) unstable; urgency=low . * Fixes in configure patch partially based on Matt Kraai's patch. (Closes: #317489) * Added README.Debian file with some explanations about configuration of desklets. (Closes: #318184) * Including INSTALL file cause README refers to it. (Closes: #318186) * Bumped Standards-Version to 3.6.2 (no changes needed). * Moved menu file to /usr/share instead of /usr/lib. * Whole documentation is now released under GPL (Closes: #319949) Mail from author included to document this change. Files: 512bb93807c31b486ca3daa2790b6fc9 694 x11 optional adesklets_0.4.10-2.dsc 6a58dbd332f81d11350809f6415221e8 58413 x11 optional adesklets_0.4.10-2.diff.gz a67dd3cf487689dae94dc795db531628 308114 x11 optional adesklets_0.4.10-2_i386.deb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (GNU/Linux) iD8DBQFC7yuXhQui3hP+/EARAlKPAJ9Sz/7pYAyu1nyfw3V+U9uSUD2WaQCePhEj FApQnbzZYNqiiNZZhQVeGXg= =jEP0 -----END PGP SIGNATURE----- -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]