FTBFS: broken postgresql header include

Bug #19836 reported by Debian Bug Importer
4
Affects Status Importance Assigned to Milestone
cyrus-sasl2 (Debian)
Fix Released
Unknown
cyrus-sasl2 (Ubuntu)
Invalid
High
Martin Pitt

Bug Description

Automatically imported from Debian bug report #315177 http://bugs.debian.org/315177

Revision history for this message
In , Frank Lichtenheld (djpig) wrote : tagging 315177

# Automatically generated email from bts, devscripts version 2.9.4
tags 315177 patch

Revision history for this message
In , Frank Lichtenheld (djpig) wrote : Re: Bug#315177: FTBFS: broken postgresql header include

On Mon, Jun 20, 2005 at 08:26:52AM -0700, Matt Kraai wrote:
> diff -ruN cyrus-sasl-2.1.19-old/plugins/sql.c cyrus-sasl-2.1.19/plugins/sql.c
> --- cyrus-sasl-2.1.19-old/plugins/sql.c 2004-06-30 12:31:11.000000000 -0700
> +++ cyrus-sasl-2.1.19/plugins/sql.c 2005-06-20 07:05:00.000000000 -0700
> @@ -180,7 +180,7 @@
> #endif /* HAVE_MYSQL */
>
> #ifdef HAVE_PGSQL
> -#include <libpq-fe.h>
> +#include <postgresql/8.0/libpq-fe.h>
>
> static void *_pgsql_open(char *host, char *port, int usessl,
> const char *user, const char *password,

Hmm, I guess the "correct" fix would be to fix configure.in to detect
this path (easiest with pg_config --includedir probably)

Gruesse,
--
Frank Lichtenheld <email address hidden>
www: http://www.djpig.de/

Revision history for this message
Debian Bug Importer (debzilla) wrote :

Automatically imported from Debian bug report #315177 http://bugs.debian.org/315177

Revision history for this message
Debian Bug Importer (debzilla) wrote :
Download full text (4.6 KiB)

Message-Id: <email address hidden>
Date: Mon, 20 Jun 2005 08:26:52 -0700
From: Matt Kraai <email address hidden>
To: Debian Bug Tracking System <email address hidden>
Subject: FTBFS: broken postgresql header include

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

Package: cyrus-sasl2
Severity: serious
Justification: no longer builds from source

cyrus-sasl2 fails to include libpq-fe.h, which causes it to fail to
build:

 if /bin/sh ../libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I.. -I../include -I../lib -I../sasldb -I../include -I/usr/include/mysql -I/usr/include -Wall -W -fno-strict-aliasing -g -O2 -MT sql.lo -MD -MP -MF ".deps/sql.Tpo" \
   -c -o sql.lo `test -f 'sql.c' || echo './'`sql.c; \
 then mv -f ".deps/sql.Tpo" ".deps/sql.Plo"; \
 else rm -f ".deps/sql.Tpo"; exit 1; \
 fi
  gcc -DHAVE_CONFIG_H -I. -I. -I.. -I../include -I../lib -I../sasldb -I../include -I/usr/include/mysql -I/usr/include -Wall -W -fno-strict-aliasing -g -O2 -MT sql.lo -MD -MP -MF .deps/sql.Tpo -c sql.c -fPIC -DPIC -o .libs/sql.o
 sql.c:183:33: postgresql/libpq-fe.h: No such file or directory
 sql.c: In function `_pgsql_open':
 sql.c:189: error: `PGconn' undeclared (first use in this function)
 sql.c:189: error: (Each undeclared identifier is reported only once
 sql.c:189: error: for each function it appears in.)
 sql.c:189: error: `conn' undeclared (first use in this function)
 sql.c:247: warning: implicit declaration of function `PQconnectdb'
 sql.c:250: warning: implicit declaration of function `PQstatus'
 sql.c:250: error: `CONNECTION_OK' undeclared (first use in this function)
 sql.c:251: warning: implicit declaration of function `PQerrorMessage'
 sql.c: In function `_pgsql_escape_str':
 sql.c:260: warning: implicit declaration of function `PQescapeString'
 sql.c: In function `_pgsql_exec':
 sql.c:266: error: `PGresult' undeclared (first use in this function)
 sql.c:266: error: `result' undeclared (first use in this function)
 sql.c:268: error: `ExecStatusType' undeclared (first use in this function)
 sql.c:268: error: syntax error before "status"
 sql.c:271: warning: implicit declaration of function `PQexec'
 sql.c:274: error: `status' undeclared (first use in this function)
 sql.c:274: warning: implicit declaration of function `PQresultStatus'
 sql.c:275: error: `PGRES_COMMAND_OK' undeclared (first use in this function)
 sql.c:277: warning: implicit declaration of function `PQclear'
 sql.c:280: error: `PGRES_TUPLES_OK' undeclared (first use in this function)
 sql.c:283: warning: implicit declaration of function `PQresStatus'
 sql.c:289: warning: implicit declaration of function `PQntuples'
 sql.c:304: warning: implicit declaration of function `PQgetvalue'
 sql.c:304: warning: passing arg 1 of `strlen' makes pointer from integer without a cast
 sql.c:304: warning: passing arg 2 of `memcpy' makes pointer from integer without a cast
 sql.c:304: warning: passing arg 2 of `strncpy' makes pointer from integer without a cast
 sql.c:304: warning: passing arg 2 of `strncpy' makes pointer from integer without a cast
 sql.c: In function `_...

Read more...

Revision history for this message
Debian Bug Importer (debzilla) wrote :

Message-Id: <email address hidden>
Date: Sun, 7 Aug 2005 01:38:30 +0200
From: Frank Lichtenheld <email address hidden>
To: <email address hidden>
Subject: tagging 315177

# Automatically generated email from bts, devscripts version 2.9.4
tags 315177 patch

Revision history for this message
Debian Bug Importer (debzilla) wrote :

Message-ID: <email address hidden>
Date: Sun, 7 Aug 2005 15:03:56 +0200
From: Frank Lichtenheld <email address hidden>
To: Matt Kraai <email address hidden>, <email address hidden>
Subject: Re: Bug#315177: FTBFS: broken postgresql header include

On Mon, Jun 20, 2005 at 08:26:52AM -0700, Matt Kraai wrote:
> diff -ruN cyrus-sasl-2.1.19-old/plugins/sql.c cyrus-sasl-2.1.19/plugins/sql.c
> --- cyrus-sasl-2.1.19-old/plugins/sql.c 2004-06-30 12:31:11.000000000 -0700
> +++ cyrus-sasl-2.1.19/plugins/sql.c 2005-06-20 07:05:00.000000000 -0700
> @@ -180,7 +180,7 @@
> #endif /* HAVE_MYSQL */
>
> #ifdef HAVE_PGSQL
> -#include <libpq-fe.h>
> +#include <postgresql/8.0/libpq-fe.h>
>
> static void *_pgsql_open(char *host, char *port, int usessl,
> const char *user, const char *password,

Hmm, I guess the "correct" fix would be to fix configure.in to detect
this path (easiest with pg_config --includedir probably)

Gruesse,
--
Frank Lichtenheld <email address hidden>
www: http://www.djpig.de/

Revision history for this message
Martin Pitt (pitti) wrote :

I fixed this long ago in Ubuntu.

Revision history for this message
In , Steve Langasek (vorlon) wrote :

severity 322128 important
severity 315177 important
merge 322128 315177
thanks

The changes to the postgresql header path have been reverted, so this bug no
longer causes build failures. It would still be a good idea to update
cyrus-sasl2 to use pg_config to determine the header path, since AIUI the
header path will eventually change again; it's just not an RC bug at this
point.

Thanks,
--
Steve Langasek Give me a lever long enough and a Free OS
Debian Developer to set it on, and I can move the world.
<email address hidden> http://www.debian.org/

Revision history for this message
Debian Bug Importer (debzilla) wrote :

Message-ID: <email address hidden>
Date: Wed, 24 Aug 2005 19:39:23 -0700
From: Steve Langasek <email address hidden>
To: <email address hidden>, <email address hidden>
Subject: Re: FTBFS: broken postgresql header include

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

severity 322128 important
severity 315177 important
merge 322128 315177
thanks

The changes to the postgresql header path have been reverted, so this bug no
longer causes build failures. It would still be a good idea to update
cyrus-sasl2 to use pg_config to determine the header path, since AIUI the
header path will eventually change again; it's just not an RC bug at this
point.

Thanks,
--=20
Steve Langasek Give me a lever long enough and a Free OS
Debian Developer to set it on, and I can move the world.
<email address hidden> http://www.debian.org/

--/0U0QBNx7JIUZLHm
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)

iD8DBQFDDS9bKN6ufymYLloRAiCGAKC+sxiRLZQ9icYkoGtMhYKJBJ66VwCeIrW+
IRvSNvvqv4K3GPivlRu9KCk=
=G7Zo
-----END PGP SIGNATURE-----

--/0U0QBNx7JIUZLHm--

Revision history for this message
In , Steve Langasek (vorlon) wrote : cyrus-sasl2: NMU patch for multiple bugs

tags 345737 patch
tags 345880 patch
thanks

Hi Dima, Henrique,

I've prepared an NMU to fix the krb4 dependency in cyrus-sasl2, and also to
update to libmysqlclient15 and future-proof the package against the
anticipated changes in postgresql -dev packages (bug #315177). The
changelog entry is as follows:

cyrus-sasl2 (2.1.19-1.8) unstable; urgency=medium

  * Non-maintainer upload.
  * Medium-urgency upload for RC bugfixes.
  * Rebuild against current heimdal packages, dropping the build-dependency
    on the obsolete and soon-to-be-removed krb4 package; also drop the
    (misnamed) libsasl2-modules-kerberos-heimdal package as a result.
    Closes: #345737, 345880.
  * Drop mention of KERBEROS_V4 in the libsasl2 package description.
  * Build against libmysqlclient15 instead of the obsolete libmysqlclient10
    for libsasl2-modules-sql.
  * debian/patches/25_postgresql_pg_config.diff:
    Use pg-config --includedir in configure.in, so that cyrus-sasl2 continues
    to build when the postgresql include path changes as the postgresql
    maintainers are planning to do; and adjust the include path in
    plugins/sql.c accordingly. Closes: #315177.

 -- Steve Langasek <email address hidden> Sat, 7 Jan 2006 04:18:58 -0800

The full patch is attached; the package will be uploading to incoming
shortly.

Thanks,
--
Steve Langasek Give me a lever long enough and a Free OS
Debian Developer to set it on, and I can move the world.
<email address hidden> http://www.debian.org/

Revision history for this message
In , Steve Langasek (vorlon) wrote : Fixed in NMU of cyrus-sasl2 2.1.19-1.8

tag 315177 + fixed
tag 345737 + fixed
tag 345880 + fixed

quit

This message was generated automatically in response to a
non-maintainer upload. The .changes file follows.

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.7
Date: Sat, 7 Jan 2006 04:18:58 -0800
Source: cyrus-sasl2
Binary: libsasl2 libsasl2-modules-sql sasl2-bin libsasl2-modules libsasl2-dev libsasl2-modules-gssapi-heimdal
Architecture: source i386
Version: 2.1.19-1.8
Distribution: unstable
Urgency: medium
Maintainer: Dima Barsky <email address hidden>
Changed-By: Steve Langasek <email address hidden>
Description:
 libsasl2 - Authentication abstraction library
 libsasl2-dev - Development files for authentication abstraction library
 libsasl2-modules - Pluggable Authentication Modules for SASL
 libsasl2-modules-gssapi-heimdal - Pluggable Authentication Modules for SASL
 libsasl2-modules-sql - Pluggable Authentication Modules for SASL
 sasl2-bin - Programs for manipulating the SASL users database
Closes: 315177 345737 345880
Changes:
 cyrus-sasl2 (2.1.19-1.8) unstable; urgency=medium
 .
   * Non-maintainer upload.
   * Medium-urgency upload for RC bugfixes.
   * Rebuild against current heimdal packages, dropping the build-dependency
     on the obsolete and soon-to-be-removed krb4 package; also drop the
     (misnamed) libsasl2-modules-kerberos-heimdal package as a result.
     Closes: #345737, 345880.
   * Drop mention of KERBEROS_V4 in the libsasl2 package description.
   * Build against libmysqlclient15 instead of the obsolete libmysqlclient10
     for libsasl2-modules-sql.
   * debian/patches/25_postgresql_pg_config.diff:
     Use pg-config --includedir in configure.in, so that cyrus-sasl2 continues
     to build when the postgresql include path changes as the postgresql
     maintainers are planning to do; and adjust the include path in
     plugins/sql.c accordingly. Closes: #315177.
Files:
 824688c5186359b30cb56eb96f872a04 1022 devel important cyrus-sasl2_2.1.19-1.8.dsc
 1f356931959d64a468764c4eeafe6edc 32101 devel important cyrus-sasl2_2.1.19-1.8.diff.gz
 668c20e136c6872f7f02f3e115ae1965 113416 utils important sasl2-bin_2.1.19-1.8_i386.deb
 5f91943e0141661e85db77c38815d5aa 155864 libs important libsasl2-modules_2.1.19-1.8_i386.deb
 cd845b256d622dac9495e75f11351f85 51874 libs optional libsasl2-modules-sql_2.1.19-1.8_i386.deb
 92978868e9868d05c82ada12c8e4ec8d 53322 libs optional libsasl2-modules-gssapi-heimdal_2.1.19-1.8_i386.deb
 cb6b302765bc25a69286043f6cbbd5eb 260674 libs important libsasl2_2.1.19-1.8_i386.deb
 4c1b27b8d0bcba7acee1de85699710e8 239238 libdevel optional libsasl2-dev_2.1.19-1.8_i386.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.2 (GNU/Linux)

iD8DBQFDv9ftKN6ufymYLloRAiMaAKDA9oYKAeKl6h9EiXxnVb4oNMK2GwCeLTx8
DuSxTGNuNBtO37op4/KIOA4=
=kbxP
-----END PGP SIGNATURE-----

Revision history for this message
Debian Bug Importer (debzilla) wrote :
Download full text (9.2 KiB)

Message-ID: <email address hidden>
Date: Sat, 7 Jan 2006 06:51:48 -0800
From: Steve Langasek <email address hidden>
To: <email address hidden>, <email address hidden>,
 <email address hidden>
Subject: cyrus-sasl2: NMU patch for multiple bugs

--8NvZYKFJsRX2Djef
Content-Type: multipart/mixed; boundary="EuxKj2iCbKjpUGkD"
Content-Disposition: inline

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

tags 345737 patch
tags 345880 patch
thanks

Hi Dima, Henrique,

I've prepared an NMU to fix the krb4 dependency in cyrus-sasl2, and also to
update to libmysqlclient15 and future-proof the package against the
anticipated changes in postgresql -dev packages (bug #315177). The
changelog entry is as follows:

cyrus-sasl2 (2.1.19-1.8) unstable; urgency=3Dmedium

  * Non-maintainer upload.
  * Medium-urgency upload for RC bugfixes.
  * Rebuild against current heimdal packages, dropping the build-dependency
    on the obsolete and soon-to-be-removed krb4 package; also drop the
    (misnamed) libsasl2-modules-kerberos-heimdal package as a result.
    Closes: #345737, 345880.
  * Drop mention of KERBEROS_V4 in the libsasl2 package description.
  * Build against libmysqlclient15 instead of the obsolete libmysqlclient10
    for libsasl2-modules-sql.
  * debian/patches/25_postgresql_pg_config.diff:
    Use pg-config --includedir in configure.in, so that cyrus-sasl2 continu=
es
    to build when the postgresql include path changes as the postgresql
    maintainers are planning to do; and adjust the include path in
    plugins/sql.c accordingly. Closes: #315177.

 -- Steve Langasek <email address hidden> Sat, 7 Jan 2006 04:18:58 -0800

The full patch is attached; the package will be uploading to incoming
shortly.

Thanks,
--=20
Steve Langasek Give me a lever long enough and a Free OS
Debian Developer to set it on, and I can move the world.
<email address hidden> http://www.debian.org/

--EuxKj2iCbKjpUGkD
Content-Type: text/plain; charset=us-ascii
Content-Disposition: attachment; filename="cyrus-sasl2-NMU.diff"
Content-Transfer-Encoding: quoted-printable

diff -u cyrus-sasl2-2.1.19/debian/rules cyrus-sasl2-2.1.19/debian/rules
--- cyrus-sasl2-2.1.19/debian/rules
+++ cyrus-sasl2-2.1.19/debian/rules
@@ -35,7 +35,6 @@
  dh_testdir
  dh_movefiles -plibsasl2
  dh_movefiles -plibsasl2-modules-gssapi-heimdal
- dh_movefiles -plibsasl2-modules-kerberos-heimdal
  dh_movefiles -plibsasl2-modules-sql
  dh_movefiles
  touch $@
@@ -93,7 +92,7 @@
  cd saslauthd; \
  $(AUTOTOOLS); \
  cd ..; \
- ./configure --prefix=3D/usr --sysconfdir=3D/etc --mandir=3D/usr/share/man=
 --with-saslauthd=3D/var/run/saslauthd --enable-login --enable-auth-sasldb=
 --with-ldap --enable-sql --enable-ntlm --enable-static --enable-alwaystrue=
 --enable-krb4)
+ ./configure --prefix=3D/usr --sysconfdir=3D/etc --mandir=3D/usr/share/man=
 --with-saslauthd=3D/var/run/saslauthd --enable-login --enable-auth-sasldb=
 --with-ldap --enable-sql --enable-ntlm --enable-static --enable-alwaystrue)
=20
  touch $@
=20
reverted:
--- cyrus-sasl2-2.1.19/d...

Read more...

Revision history for this message
Debian Bug Importer (debzilla) wrote :

Message-Id: <email address hidden>
Date: Sat, 07 Jan 2006 07:17:12 -0800
From: Steve Langasek <email address hidden>
To: <email address hidden>
Cc: Steve Langasek <email address hidden>, Dima Barsky <email address hidden>
Subject: Fixed in NMU of cyrus-sasl2 2.1.19-1.8

tag 315177 + fixed
tag 345737 + fixed
tag 345880 + fixed

quit

This message was generated automatically in response to a
non-maintainer upload. The .changes file follows.

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.7
Date: Sat, 7 Jan 2006 04:18:58 -0800
Source: cyrus-sasl2
Binary: libsasl2 libsasl2-modules-sql sasl2-bin libsasl2-modules libsasl2-dev libsasl2-modules-gssapi-heimdal
Architecture: source i386
Version: 2.1.19-1.8
Distribution: unstable
Urgency: medium
Maintainer: Dima Barsky <email address hidden>
Changed-By: Steve Langasek <email address hidden>
Description:
 libsasl2 - Authentication abstraction library
 libsasl2-dev - Development files for authentication abstraction library
 libsasl2-modules - Pluggable Authentication Modules for SASL
 libsasl2-modules-gssapi-heimdal - Pluggable Authentication Modules for SASL
 libsasl2-modules-sql - Pluggable Authentication Modules for SASL
 sasl2-bin - Programs for manipulating the SASL users database
Closes: 315177 345737 345880
Changes:
 cyrus-sasl2 (2.1.19-1.8) unstable; urgency=medium
 .
   * Non-maintainer upload.
   * Medium-urgency upload for RC bugfixes.
   * Rebuild against current heimdal packages, dropping the build-dependency
     on the obsolete and soon-to-be-removed krb4 package; also drop the
     (misnamed) libsasl2-modules-kerberos-heimdal package as a result.
     Closes: #345737, 345880.
   * Drop mention of KERBEROS_V4 in the libsasl2 package description.
   * Build against libmysqlclient15 instead of the obsolete libmysqlclient10
     for libsasl2-modules-sql.
   * debian/patches/25_postgresql_pg_config.diff:
     Use pg-config --includedir in configure.in, so that cyrus-sasl2 continues
     to build when the postgresql include path changes as the postgresql
     maintainers are planning to do; and adjust the include path in
     plugins/sql.c accordingly. Closes: #315177.
Files:
 824688c5186359b30cb56eb96f872a04 1022 devel important cyrus-sasl2_2.1.19-1.8.dsc
 1f356931959d64a468764c4eeafe6edc 32101 devel important cyrus-sasl2_2.1.19-1.8.diff.gz
 668c20e136c6872f7f02f3e115ae1965 113416 utils important sasl2-bin_2.1.19-1.8_i386.deb
 5f91943e0141661e85db77c38815d5aa 155864 libs important libsasl2-modules_2.1.19-1.8_i386.deb
 cd845b256d622dac9495e75f11351f85 51874 libs optional libsasl2-modules-sql_2.1.19-1.8_i386.deb
 92978868e9868d05c82ada12c8e4ec8d 53322 libs optional libsasl2-modules-gssapi-heimdal_2.1.19-1.8_i386.deb
 cb6b302765bc25a69286043f6cbbd5eb 260674 libs important libsasl2_2.1.19-1.8_i386.deb
 4c1b27b8d0bcba7acee1de85699710e8 239238 libdevel optional libsasl2-dev_2.1.19-1.8_i386.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.2 (GNU/Linux)

iD8DBQFDv9ftKN6ufymYLloRAiMaAKDA9oYKAeKl6h9EiXxnVb4oNMK2GwCeLTx8
DuSxTGNuNBtO37op4/KIOA4=
=kbxP
-----END PGP SIGNATURE-----

Revision history for this message
In , Roberto C. Sanchez (roberto-connexer) wrote : add pending tags

tags 274087 pending
tags 344686 pending
tags 362511 pending
tags 245818 pending
tags 276637 pending
tags 285605 pending
tags 332703 pending
tags 336485 pending
tags 345880 pending
tags 357527 pending
tags 379846 pending
tags 248333 pending
tags 315177 pending
tags 324288 pending
tags 361937 pending
tags 242184 pending
tags 256808 pending
tags 202836 pending
tags 262339 pending
tags 265751 pending
tags 275498 pending
tags 276849 pending
tags 368370 pending
tags 282775 pending
tags 321760 pending
tags 205859 pending
tags 348685 pending
tags 286285 pending
tags 314724 pending
tags 316404 pending
tags 328879 pending
tags 296449 pending
tags 257306 pending
tags 310438 pending
tags 365183 pending
tags 327749 pending
tags 302280 pending
tags 365287 pending
tags 354413 pending
tags 254298 pending
tags 300710 pending
tags 287313 pending
tags 392571 pending
tags 211156 pending
tags 251735 pending
tags 257181 pending
tags 274402 pending
tags 190658 pending
thanks

--
Roberto C. Sanchez
http://people.connexer.com/~roberto
http://www.connexer.com

Revision history for this message
In , Fabian Fagerholm (fabbe-debian) wrote : Bug#315177: fixed in cyrus-sasl-2.1 2.1.22-0~pre01
Download full text (8.5 KiB)

Source: cyrus-sasl-2.1
Source-Version: 2.1.22-0~pre01

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

cyrus-sasl-2.1-bin_2.1.22-0~pre01_i386.deb
  to pool/main/c/cyrus-sasl-2.1/cyrus-sasl-2.1-bin_2.1.22-0~pre01_i386.deb
cyrus-sasl-2.1-doc_2.1.22-0~pre01_all.deb
  to pool/main/c/cyrus-sasl-2.1/cyrus-sasl-2.1-doc_2.1.22-0~pre01_all.deb
cyrus-sasl-2.1_2.1.22-0~pre01.diff.gz
  to pool/main/c/cyrus-sasl-2.1/cyrus-sasl-2.1_2.1.22-0~pre01.diff.gz
cyrus-sasl-2.1_2.1.22-0~pre01.dsc
  to pool/main/c/cyrus-sasl-2.1/cyrus-sasl-2.1_2.1.22-0~pre01.dsc
cyrus-sasl-2.1_2.1.22.orig.tar.gz
  to pool/main/c/cyrus-sasl-2.1/cyrus-sasl-2.1_2.1.22.orig.tar.gz
libsasl2-2-dev_2.1.22-0~pre01_i386.deb
  to pool/main/c/cyrus-sasl-2.1/libsasl2-2-dev_2.1.22-0~pre01_i386.deb
libsasl2-2-modules-gssapi-mit_2.1.22-0~pre01_i386.deb
  to pool/main/c/cyrus-sasl-2.1/libsasl2-2-modules-gssapi-mit_2.1.22-0~pre01_i386.deb
libsasl2-2-modules-otp_2.1.22-0~pre01_i386.deb
  to pool/main/c/cyrus-sasl-2.1/libsasl2-2-modules-otp_2.1.22-0~pre01_i386.deb
libsasl2-2-modules-sql_2.1.22-0~pre01_i386.deb
  to pool/main/c/cyrus-sasl-2.1/libsasl2-2-modules-sql_2.1.22-0~pre01_i386.deb
libsasl2-2-modules_2.1.22-0~pre01_i386.deb
  to pool/main/c/cyrus-sasl-2.1/libsasl2-2-modules_2.1.22-0~pre01_i386.deb
libsasl2-2_2.1.22-0~pre01_i386.deb
  to pool/main/c/cyrus-sasl-2.1/libsasl2-2_2.1.22-0~pre01_i386.deb
libsasl2-dev_2.1.22-0~pre01_i386.deb
  to pool/main/c/cyrus-sasl-2.1/libsasl2-dev_2.1.22-0~pre01_i386.deb
libsasl2-modules-gssapi-heimdal_2.1.22-0~pre01_i386.deb
  to pool/main/c/cyrus-sasl-2.1/libsasl2-modules-gssapi-heimdal_2.1.22-0~pre01_i386.deb
libsasl2-modules-sql_2.1.22-0~pre01_i386.deb
  to pool/main/c/cyrus-sasl-2.1/libsasl2-modules-sql_2.1.22-0~pre01_i386.deb
libsasl2-modules_2.1.22-0~pre01_i386.deb
  to pool/main/c/cyrus-sasl-2.1/libsasl2-modules_2.1.22-0~pre01_i386.deb
libsasl2_2.1.22-0~pre01_i386.deb
  to pool/main/c/cyrus-sasl-2.1/libsasl2_2.1.22-0~pre01_i386.deb
sasl2-bin_2.1.22-0~pre01_i386.deb
  to pool/main/c/cyrus-sasl-2.1/sasl2-bin_2.1.22-0~pre01_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 address hidden>,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Fabian Fagerholm <email address hidden> (supplier of updated cyrus-sasl-2.1 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 address hidden>)

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.7
Date: Thu, 19 Oct 2006 23:26:02 +0300
Source: cyrus-sasl-2.1
Binary: libsasl2-2 cyrus-sasl-2.1-bin libsasl2 libsasl2-2-dev sasl2-bin libsasl2-dev libsasl2-2-modules-gssapi-mit libsasl2-modules-gssapi-heimdal libsasl2-2-modules-otp cyrus-sasl-2.1-doc libsasl2-modules-sql libsasl2-2-modules-sql libsasl2-modules libsasl2-2-modules
Architecture: source i386 all
Version: 2.1.22-0~pre01
Distribution: ex...

Read more...

Changed in cyrus-sasl2:
status: Fix Committed → Fix Released
To post a comment you must log in.
This report contains Public information  
Everyone can see this information.

Other bug subscribers

Remote bug watches

Bug watches keep track of this bug in other bug trackers.