Your message dated Sat, 10 Sep 2005 10:17:04 -0700
with message-id <[EMAIL PROTECTED]>
and subject line Bug#321044: fixed in libapache-mod-auth-pgsql 0.9.12-9
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:07:02 +0000
>From [EMAIL PROTECTED] Tue Aug 02 19:07:02 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 1E08es-0003TY-00; Tue, 02 Aug 2005 19:07:02 -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 j73271fT027763
(version=TLSv1/SSLv3 cipher=AES256-SHA bits=256 verify=NO)
for <[EMAIL PROTECTED]>; Tue, 2 Aug 2005 19:07:02 -0700 (PDT)
(envelope-from [EMAIL PROTECTED])
Received: from kraai by localhost.localdomain with local (Exim 4.52)
id 1DzyN7-0007NO-BJ
for [EMAIL PROTECTED]; Tue, 02 Aug 2005 08:08:01 -0700
Date: Tue, 2 Aug 2005 08:08:01 -0700
From: Matt Kraai <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: FTBFS: Cannot find libpq-fe.h
Message-ID: <[EMAIL PROTECTED]>
Mime-Version: 1.0
Content-Type: multipart/signed; micalg=pgp-sha1;
protocol="application/pgp-signature"; boundary="7iMSBzlTiPOCCT2k"
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
--7iMSBzlTiPOCCT2k
Content-Type: multipart/mixed; boundary="FCuugMFkClbJLl1L"
Content-Disposition: inline
--FCuugMFkClbJLl1L
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
Content-Transfer-Encoding: quoted-printable
Package: libapache-mod-auth-pgsql
Version: 0.9.12-7
Severity: serious
Tags: patch
libapache-mod-auth-pgsql fails to build because it cannot find
libpq-fe.h, which has moved to /usr/include/postgresql/8.0:
> cc -c -I/usr/include/postgresql -I/usr/include/apache-1.3 -I -g -O2 -DE=
API -fPIC mod_auth_pgsql.c -o mod_auth_pgsql.o
> mod_auth_pgsql.c:98:22: error: libpq-fe.h: No such file or directory
> mod_auth_pgsql.c: In function 'auth_pg_md5':
> mod_auth_pgsql.c:420: warning: pointer targets in passing argument 2 of '=
ap_MD5Update' differ in signedness
> mod_auth_pgsql.c: In function 'auth_pg_md5_base64':
> mod_auth_pgsql.c:450: warning: pointer targets in passing argument 2 of '=
ap_MD5Update' differ in signedness
> mod_auth_pgsql.c: In function 'do_pg_query':
> mod_auth_pgsql.c:534: error: 'PGconn' undeclared (first use in this funct=
ion)
> mod_auth_pgsql.c:534: error: (Each undeclared identifier is reported only=
once
> mod_auth_pgsql.c:534: error: for each function it appears in.)
> mod_auth_pgsql.c:534: error: 'pg_conn' undeclared (first use in this func=
tion)
> mod_auth_pgsql.c:535: error: 'PGresult' undeclared (first use in this fun=
ction)
> mod_auth_pgsql.c:535: error: 'pg_result' undeclared (first use in this fu=
nction)
> mod_auth_pgsql.c:547: error: 'CONNECTION_OK' undeclared (first use in thi=
s function)
> mod_auth_pgsql.c:564: error: 'PGRES_EMPTY_QUERY' undeclared (first use in=
this function)
> mod_auth_pgsql.c:571: error: 'PGRES_TUPLES_OK' undeclared (first use in t=
his function)
> mod_auth_pgsql.c:582: warning: assignment makes pointer from integer with=
out a cast
The attached patch makes it look in the new location.
--=20
Matt
--FCuugMFkClbJLl1L
Content-Type: text/plain; charset=us-ascii
Content-Disposition: attachment; filename=patch
Content-Transfer-Encoding: quoted-printable
diff -u libapache-mod-auth-pgsql-0.9.12/debian/rules libapache-mod-auth-pgs=
ql-0.9.12/debian/rules
--- libapache-mod-auth-pgsql-0.9.12/debian/rules
+++ libapache-mod-auth-pgsql-0.9.12/debian/rules
@@ -12,9 +12,9 @@
build: build-stamp
build-stamp:
dh_testdir
- PG_DIR=3D/usr/include/postgresql PG_LIB=3D/usr/lib ./configure \
+ PG_DIR=3D/usr/include/postgresql/8.0 PG_LIB=3D/usr/lib ./configure \
--with-pgsql=3Dyes --with-apxs=3D/usr/bin/apxs
- $(MAKE) CPPFLAGS=3D-I/usr/include/postgresql
+ $(MAKE) CPPFLAGS=3D-I/usr/include/postgresql/8.0
touch build-stamp
=20
install: build
--FCuugMFkClbJLl1L--
--7iMSBzlTiPOCCT2k
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)
iD8DBQFC74xQfNdgYxVXvBARAgB+AJ9Som5J3XVj8+FG3eGAf792fhtMVQCcDLcQ
sjpie6BHJ3Mf2u1TQeGUDEk=
=nifU
-----END PGP SIGNATURE-----
--7iMSBzlTiPOCCT2k--
---------------------------------------
Received: (at 321044-close) by bugs.debian.org; 10 Sep 2005 17:18:25 +0000
>From [EMAIL PROTECTED] Sat Sep 10 10:18:25 2005
Return-path: <[EMAIL PROTECTED]>
Received: from katie by spohr.debian.org with local (Exim 3.36 1 (Debian))
id 1EE8yO-0005QF-00; Sat, 10 Sep 2005 10:17:04 -0700
From: Alberto Gonzalez Iniesta <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.56 $
Subject: Bug#321044: fixed in libapache-mod-auth-pgsql 0.9.12-9
Message-Id: <[EMAIL PROTECTED]>
Sender: Archive Administrator <[EMAIL PROTECTED]>
Date: Sat, 10 Sep 2005 10:17:04 -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: libapache-mod-auth-pgsql
Source-Version: 0.9.12-9
We believe that the bug you reported is fixed in the latest version of
libapache-mod-auth-pgsql, which is due to be installed in the Debian FTP
archive:
libapache-mod-auth-pgsql_0.9.12-9.diff.gz
to
pool/main/liba/libapache-mod-auth-pgsql/libapache-mod-auth-pgsql_0.9.12-9.diff.gz
libapache-mod-auth-pgsql_0.9.12-9.dsc
to
pool/main/liba/libapache-mod-auth-pgsql/libapache-mod-auth-pgsql_0.9.12-9.dsc
libapache-mod-auth-pgsql_0.9.12-9_i386.deb
to
pool/main/liba/libapache-mod-auth-pgsql/libapache-mod-auth-pgsql_0.9.12-9_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.
Alberto Gonzalez Iniesta <[EMAIL PROTECTED]> (supplier of updated
libapache-mod-auth-pgsql 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: Sat, 10 Sep 2005 19:01:08 +0200
Source: libapache-mod-auth-pgsql
Binary: libapache-mod-auth-pgsql
Architecture: source i386
Version: 0.9.12-9
Distribution: unstable
Urgency: low
Maintainer: Alberto Gonzalez Iniesta <[EMAIL PROTECTED]>
Changed-By: Alberto Gonzalez Iniesta <[EMAIL PROTECTED]>
Description:
libapache-mod-auth-pgsql - Apache module for PostgreSQL authentication
Closes: 321044
Changes:
libapache-mod-auth-pgsql (0.9.12-9) unstable; urgency=low
.
* Updated package to build with PostgreSQL 8.0. Again.
- Updated debian/rules. Thanks Kurt Roeckx for noticing my
system was out of date. (Closes: #321044)
Files:
40d49fbe1c9914ecec5153a1bb8ae855 666 web optional
libapache-mod-auth-pgsql_0.9.12-9.dsc
3a65ba96e0a42636f9b90c10acebc0ba 5444 web optional
libapache-mod-auth-pgsql_0.9.12-9.diff.gz
2618a8dd4e3e19bc58d73fcdce9d0d31 19496 web optional
libapache-mod-auth-pgsql_0.9.12-9_i386.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.1 (GNU/Linux)
iD8DBQFDIxJexRSvjkukAcMRAh1zAKDMWRdfrPXRrFfosrxD7d1ejnE1HACgtSiq
nymMx9eKTt0+jus2IL+TyXI=
=D2/C
-----END PGP SIGNATURE-----
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]