Your message dated Mon, 26 Dec 2005 06:02:20 -0800
with message-id <[EMAIL PROTECTED]>
and subject line Bug#341978: fixed in libtool 1.5.22-1
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; 4 Dec 2005 15:59:13 +0000
>From [EMAIL PROTECTED] Sun Dec 04 07:59:13 2005
Return-path: <[EMAIL PROTECTED]>
Received: from farad.aurel32.net ([82.232.2.251])
        by spohr.debian.org with esmtp (Exim 4.50)
        id 1EiwGf-0005HA-Ds
        for [EMAIL PROTECTED]; Sun, 04 Dec 2005 07:59:13 -0800
Received: from hertz.aurel32.net ([2001:618:400:fc13:2e0:18ff:fea3:b80f])
        by farad.aurel32.net with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA:32)
        (Exim 4.50)
        id 1EiwGe-0005tT-Bd; Sun, 04 Dec 2005 16:59:12 +0100
Received: from aurel32 by hertz.aurel32.net with local (Exim 4.60)
        (envelope-from <[EMAIL PROTECTED]>)
        id 1EiwGe-000NM7-70; Sun, 04 Dec 2005 16:59:12 +0100
Content-Type: multipart/mixed; boundary="===============0620581067=="
MIME-Version: 1.0
From: Aurelien Jarno <[EMAIL PROTECTED]>
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
Subject: libtool: prune unused libs from the linker line on GNU/kFreeBSD
Message-ID: <[EMAIL PROTECTED]>
X-Mailer: reportbug 3.18
Date: Sun, 04 Dec 2005 16:59:12 +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-Level: 
X-Spam-Status: No, hits=-6.3 required=4.0 tests=BAYES_00,FROM_ENDS_IN_NUMS,
        HAS_PACKAGE,RCVD_IN_SORBS autolearn=no 
        version=2.60-bugs.debian.org_2005_01_02

This is a multi-part MIME message sent by reportbug.

--===============0620581067==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

Package: libtool
Version: 1.5.20-2
Severity: wishlist
Tags: patch

Hi,

The patch you added to libtool to prune unused libs from the linker line
is a very nice thing and will probably ease the next transitions.

However, it is currently only enabled on GNU/Linux. Could you please
also enable it on GNU/kFreeBSD? The attached patch does that.

Thanks in advance,
Aurelien

-- System Information:
Debian Release: testing/unstable
Architecture: kfreebsd-i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: GNU/kFreeBSD 5.4-1-686
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)

Versions of packages libtool depends on:
ii  autotools-dev            20050803.1      Update infrastructure for config.{
ii  cpp                      4:4.0.2-1       The GNU C preprocessor (cpp)
ii  file                     4.15-2          Determines file type using "magic"
ii  gcc [c-compiler]         4:4.0.2-1       The GNU C compiler
ii  gcc-3.4 [c-compiler]     3.4.5-1         The GNU C compiler
ii  gcc-4.0 [c-compiler]     4.0.2-5         The GNU C compiler
ii  libc0.1-dev [libc6-dev]  2.3-1+kbsd.14   GNU C Library: Development Librari

Versions of packages libtool recommends:
ii  libltdl3-dev                  1.5.20-2   A system independent dlopen wrappe

-- no debconf information

--===============0620581067==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename="libtool.diff"

diff -u libtool-1.5.20/debian/patches/link_all_deplibs.dpatch 
libtool-1.5.20/debian/patches/link_all_deplibs.dpatch
--- libtool-1.5.20/debian/patches/link_all_deplibs.dpatch
+++ libtool-1.5.20/debian/patches/link_all_deplibs.dpatch
@@ -11,17 +11,20 @@
 diff -urNad --exclude=CVS --exclude=.svn ./libtool.m4 
/tmp/dpep-work.DH3vrV/libtool-1.5.20/libtool.m4
 --- ./libtool.m4       2005-09-14 20:50:48.404325960 +0200
 +++ /tmp/dpep-work.DH3vrV/libtool-1.5.20/libtool.m4    2005-09-14 
20:50:48.488313192 +0200
-@@ -5216,6 +5216,9 @@
+@@ -5216,6 +5216,12 @@
    cygwin* | mingw*)
      _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | 
$global_symbol_pipe | $SED -e '\''/^[[BCDGRS]] /s/.* \([[^ ]]*\)/\1 DATA/;/^.* 
__nm__/s/^.* __nm__\([[^ ]]*\) [[^ ]]*/\1 DATA/;/^I /d;/^[[AITW]] /s/.* //'\'' 
| sort | uniq > $export_symbols'
    ;;
++  kfreebsd*-gnu)
++    _LT_AC_TAGVAR(link_all_deplibs, $1)=no
++  ;;
 +  linux*)
 +    _LT_AC_TAGVAR(link_all_deplibs, $1)=no
 +  ;;
    *)
      _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | 
$global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols'
    ;;
-@@ -5393,6 +5396,7 @@
+@@ -5393,6 +5399,7 @@
    $echo "local: *; };" >> $output_objdir/$libname.ver~
          $CC -shared'"$tmp_addflag"' $libobjs $deplibs $compiler_flags 
${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver 
-o $lib'
        fi


--===============0620581067==--

---------------------------------------
Received: (at 341978-close) by bugs.debian.org; 26 Dec 2005 14:11:24 +0000
>From [EMAIL PROTECTED] Mon Dec 26 06:11:24 2005
Return-path: <[EMAIL PROTECTED]>
Received: from katie by spohr.debian.org with local (Exim 4.50)
        id 1Eqsvc-0004vQ-Ss; Mon, 26 Dec 2005 06:02:20 -0800
From: Kurt Roeckx <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.65 $
Subject: Bug#341978: fixed in libtool 1.5.22-1
Message-Id: <[EMAIL PROTECTED]>
Sender: Archive Administrator <[EMAIL PROTECTED]>
Date: Mon, 26 Dec 2005 06:02:20 -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: libtool
Source-Version: 1.5.22-1

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

libltdl3-dev_1.5.22-1_i386.deb
  to pool/main/libt/libtool/libltdl3-dev_1.5.22-1_i386.deb
libltdl3_1.5.22-1_i386.deb
  to pool/main/libt/libtool/libltdl3_1.5.22-1_i386.deb
libtool-doc_1.5.22-1_all.deb
  to pool/main/libt/libtool/libtool-doc_1.5.22-1_all.deb
libtool_1.5.22-1.diff.gz
  to pool/main/libt/libtool/libtool_1.5.22-1.diff.gz
libtool_1.5.22-1.dsc
  to pool/main/libt/libtool/libtool_1.5.22-1.dsc
libtool_1.5.22-1_i386.deb
  to pool/main/libt/libtool/libtool_1.5.22-1_i386.deb
libtool_1.5.22.orig.tar.gz
  to pool/main/libt/libtool/libtool_1.5.22.orig.tar.gz



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.
Kurt Roeckx <[EMAIL PROTECTED]> (supplier of updated libtool 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: Mon, 26 Dec 2005 13:36:48 +0100
Source: libtool
Binary: libtool-doc libltdl3 libtool libltdl3-dev
Architecture: source i386 all
Version: 1.5.22-1
Distribution: unstable
Urgency: low
Maintainer: Kurt Roeckx <[EMAIL PROTECTED]>
Changed-By: Kurt Roeckx <[EMAIL PROTECTED]>
Description: 
 libltdl3   - A system independent dlopen wrapper for GNU libtool
 libltdl3-dev - A system independent dlopen wrapper for GNU libtool
 libtool    - Generic library support script
 libtool-doc - Generic library support script
Closes: 341978 344756
Changes: 
 libtool (1.5.22-1) unstable; urgency=low
 .
   * New upstream release
     - libtoolize --ltdl now fails if libltdl3-dev is not installed.
       (Closes: #344756)
   * Also set link_all_deplibs to no on kfreebsd*-gnu.  Patch from
     Aurelien Jarno <[EMAIL PROTECTED]>  (Closes: #341978)
Files: 
 e460d6578c132e5a5e81001edda0346c 754 devel optional libtool_1.5.22-1.dsc
 8e0ac9797b62ba4dcc8a2fb7936412b0 2921483 devel optional 
libtool_1.5.22.orig.tar.gz
 5efb4cdceebd291753ed122d54ea02f1 13523 devel optional libtool_1.5.22-1.diff.gz
 55cbbfe423f2605f7d71082a0c593f8d 339688 doc optional 
libtool-doc_1.5.22-1_all.deb
 892467a6861b414c03fedac9a18a909a 327860 devel optional 
libtool_1.5.22-1_i386.deb
 905843f8e6d93798a3d1d76de5b8b2ad 168066 libs optional 
libltdl3_1.5.22-1_i386.deb
 1e40198bec5d3b5a0178086dcb9ad32b 357594 libdevel optional 
libltdl3-dev_1.5.22-1_i386.deb

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

iD8DBQFDr/PjQdwckHJElwsRAqjoAKCRFD4Yalx+8S12266sxPd9Drcg7ACeN3w7
iG5kQP332JO+F9ZsiInOYzc=
=FCj5
-----END PGP SIGNATURE-----


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

Reply via email to