Your message dated Sat, 17 Sep 2005 15:47:15 -0700
with message-id <[EMAIL PROTECTED]>
and subject line Bug#321042: fixed in libadabindx 0.7.2-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; 3 Aug 2005 02:06:31 +0000
>From [EMAIL PROTECTED] Tue Aug 02 19:06:31 2005
Return-path: <[EMAIL PROTECTED]>
Received: from zoot.lafn.org [206.117.18.6] 
        by spohr.debian.org with esmtp (Exim 3.36 1 (Debian))
        id 1E08eN-00033N-00; Tue, 02 Aug 2005 19:06:31 -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 j7326U8m027747
        (version=TLSv1/SSLv3 cipher=AES256-SHA bits=256 verify=NO)
        for <[EMAIL PROTECTED]>; Tue, 2 Aug 2005 19:06:31 -0700 (PDT)
        (envelope-from [EMAIL PROTECTED])
Received: from kraai by localhost.localdomain with local (Exim 4.52)
        id 1DzymM-0007Pl-7g
        for [EMAIL PROTECTED]; Tue, 02 Aug 2005 08:34:06 -0700
Date: Tue, 2 Aug 2005 08:34:06 -0700
From: Matt Kraai <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: FTBFS: Unable to find libXau_pic.a
Message-ID: <[EMAIL PROTECTED]>
Mime-Version: 1.0
Content-Type: multipart/signed; micalg=pgp-sha1;
        protocol="application/pgp-signature"; boundary="Yylu36WmvOXNoKYn"
Content-Disposition: inline
User-Agent: Mutt/1.5.9i
X-Virus-Scanned: ClamAV 0.86.2/1001/Tue Aug  2 01:22:39 2005 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-Level: 
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


--Yylu36WmvOXNoKYn
Content-Type: multipart/mixed; boundary="Dxnq1zWXvFF0Q93v"
Content-Disposition: inline


--Dxnq1zWXvFF0Q93v
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
Content-Transfer-Encoding: quoted-printable

Package: libadabindx
Version: 0.7.2-4
Severity: serious
Tags: patch

libadabindx fails to build because it cannot find libXau_pic.a:

> gnatgcc -shared -o build/libadabindx.so.0.7.2 build/*.o \
>    -L/usr/lib/gcc-lib/i486-linux/2.8.1/adalib \
>    -lgnat -lgnarl \
>    -L/usr/X11R6/lib \
>    -lXpm -lXp -lXmu -lXm -lXt -lXp -lXext -lX11 -lSM -lICE \
>    /usr/X11R6/lib/libXau_pic.a \
>    -Wl,--export-dynamic -Wl,--soname,libadabindx.so.0
> gnatgcc: /usr/X11R6/lib/libXau_pic.a: No such file or directory

The attached patch adds a build-dependency on libxau-dev and changes
/usr/X11R6/lib/libXau_pic.a to -lXau, which fixes this problem.

--=20
Matt

--Dxnq1zWXvFF0Q93v
Content-Type: text/plain; charset=us-ascii
Content-Disposition: attachment; filename=patch
Content-Transfer-Encoding: quoted-printable

diff -u libadabindx-0.7.2/debian/control libadabindx-0.7.2/debian/control
--- libadabindx-0.7.2/debian/control
+++ libadabindx-0.7.2/debian/control
@@ -3,7 +3,7 @@
 Priority: optional
 Maintainer: Ludovic Brenta <[EMAIL PROTECTED]>
 Uploaders: Matthias Klose <[EMAIL PROTECTED]>
-Build-Depends: debhelper (>=3D 4.0.0), gnat (>=3D 3.15p-7), lesstif2-dev, =
libice-dev, libsm-dev, libx11-dev, libxmu-dev, libxp-dev, libxpm-dev, libxt=
-dev, libxext-dev, xlibs-static-pic
+Build-Depends: debhelper (>=3D 4.0.0), gnat (>=3D 3.15p-7), lesstif2-dev, =
libice-dev, libsm-dev, libx11-dev, libxmu-dev, libxp-dev, libxpm-dev, libxt=
-dev, libxext-dev, xlibs-static-pic, libxau-dev
 Standards-Version: 3.6.1
=20
 Package: libadabindx-dev
diff -u libadabindx-0.7.2/debian/rules libadabindx-0.7.2/debian/rules
--- libadabindx-0.7.2/debian/rules
+++ libadabindx-0.7.2/debian/rules
@@ -92,8 +92,7 @@
           -L/usr/lib/gcc-lib/$(gcc_host)/$(gcc_version)/adalib \
           -lgnat -lgnarl \
           -L/usr/X11R6/lib \
-          -lXpm -lXp -lXmu -lXm -lXt -lXp -lXext -lX11 -lSM -lICE \
-          /usr/X11R6/lib/libXau_pic.a \
+          -lXpm -lXp -lXmu -lXm -lXt -lXp -lXext -lX11 -lSM -lICE -lXau \
           -Wl,--export-dynamic -Wl,--soname,libadabindx.so.$(major)
        rm build/*.o
        chmod a=3Dr build/*.ali

--Dxnq1zWXvFF0Q93v--

--Yylu36WmvOXNoKYn
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)

iD8DBQFC75JtfNdgYxVXvBARAhVIAKCJsDFRz93gh24W7A4YT1UbYbI9ygCfaTz9
M76GZL9+c4vTQzS7CM8DNIU=
=oRBy
-----END PGP SIGNATURE-----

--Yylu36WmvOXNoKYn--

---------------------------------------
Received: (at 321042-close) by bugs.debian.org; 17 Sep 2005 22:48:47 +0000
>From [EMAIL PROTECTED] Sat Sep 17 15:48:47 2005
Return-path: <[EMAIL PROTECTED]>
Received: from katie by spohr.debian.org with local (Exim 3.36 1 (Debian))
        id 1EGlSl-00042X-00; Sat, 17 Sep 2005 15:47:15 -0700
From: Ludovic Brenta <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.56 $
Subject: Bug#321042: fixed in libadabindx 0.7.2-5
Message-Id: <[EMAIL PROTECTED]>
Sender: Archive Administrator <[EMAIL PROTECTED]>
Date: Sat, 17 Sep 2005 15:47:15 -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: libadabindx
Source-Version: 0.7.2-5

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

libadabindx-dev_0.7.2-5_i386.deb
  to pool/main/liba/libadabindx/libadabindx-dev_0.7.2-5_i386.deb
libadabindx0_0.7.2-5_i386.deb
  to pool/main/liba/libadabindx/libadabindx0_0.7.2-5_i386.deb
libadabindx_0.7.2-5.diff.gz
  to pool/main/liba/libadabindx/libadabindx_0.7.2-5.diff.gz
libadabindx_0.7.2-5.dsc
  to pool/main/liba/libadabindx/libadabindx_0.7.2-5.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.
Ludovic Brenta <[EMAIL PROTECTED]> (supplier of updated libadabindx 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: Thu, 25 Aug 2005 13:59:43 +0200
Source: libadabindx
Binary: libadabindx0 libadabindx-dev
Architecture: source i386
Version: 0.7.2-5
Distribution: unstable
Urgency: low
Maintainer: Ludovic Brenta <[EMAIL PROTECTED]>
Changed-By: Ludovic Brenta <[EMAIL PROTECTED]>
Description: 
 libadabindx-dev - Ada binding to the X Window System and *tif
 libadabindx0 - Ada binding to the X Window System and *tif
Closes: 321042
Changes: 
 libadabindx (0.7.2-5) unstable; urgency=low
 .
   * Apply patch from Matt Kraai to fix FTBFS with new xorg-x11 packages:
   * debian/control: build-depend on libxau-dev instead of xlibs-static-dev.
   * debian/rules: link with libXau.so instead of libXau_pic.a.
   * Closes: #321042.
   * Standards-Version := 3.6.2 (was 3.6.1).
   * Change maintainer's email address.
Files: 
 f8b17f4f143bc291418740137daf750b 804 libdevel optional libadabindx_0.7.2-5.dsc
 3a1acbb2e7b43be811b6d35ac3a51e03 32852 libdevel optional 
libadabindx_0.7.2-5.diff.gz
 d634b48a9acb8c489992750e97c70a10 1654462 libdevel optional 
libadabindx-dev_0.7.2-5_i386.deb
 a8ad6573ccde3818b6e4f2545157a6eb 315768 libs optional 
libadabindx0_0.7.2-5_i386.deb

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

iD8DBQFDLJs9StlRaw+TLJwRArX4AKDDCatvxlmZd5ZUnOpERQEFS0n16ACfbTW1
Qx2Bn2gmlxg1/L0Z74KM8Dk=
=W9X8
-----END PGP SIGNATURE-----


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

Reply via email to