Your message dated Fri, 09 Sep 2005 07:47:08 -0700
with message-id <[EMAIL PROTECTED]>
and subject line Bug#321044: fixed in libapache-mod-auth-pgsql 0.9.12-8
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; 9 Sep 2005 14:50:49 +0000
>From [EMAIL PROTECTED] Fri Sep 09 07:50:49 2005
Return-path: <[EMAIL PROTECTED]>
Received: from katie by spohr.debian.org with local (Exim 3.36 1 (Debian))
        id 1EDk9k-0002R0-00; Fri, 09 Sep 2005 07:47:08 -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-8
Message-Id: <[EMAIL PROTECTED]>
Sender: Archive Administrator <[EMAIL PROTECTED]>
Date: Fri, 09 Sep 2005 07:47:08 -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-8

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-8.diff.gz
  to 
pool/main/liba/libapache-mod-auth-pgsql/libapache-mod-auth-pgsql_0.9.12-8.diff.gz
libapache-mod-auth-pgsql_0.9.12-8.dsc
  to 
pool/main/liba/libapache-mod-auth-pgsql/libapache-mod-auth-pgsql_0.9.12-8.dsc
libapache-mod-auth-pgsql_0.9.12-8_i386.deb
  to 
pool/main/liba/libapache-mod-auth-pgsql/libapache-mod-auth-pgsql_0.9.12-8_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: Fri,  9 Sep 2005 16:21:24 +0200
Source: libapache-mod-auth-pgsql
Binary: libapache-mod-auth-pgsql
Architecture: source i386
Version: 0.9.12-8
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-8) unstable; urgency=low
 .
   * Updated package to build with PostgreSQL 8.0
     - debian/control changed Build-Depends to libpq-dev
     - Updated debian/rules. Thanks Matt Kraai for the patch.
       (Closes: #321044)
   * Moved to debhelper compatibility 4. Created debian/compat.
   * Bumped Standards-Version to 3.6.2.0
Files: 
 5115fdda524ea7c9673cb5a7039c5468 666 web optional 
libapache-mod-auth-pgsql_0.9.12-8.dsc
 8500fb1cd83ae00a084a93c96631466f 5371 web optional 
libapache-mod-auth-pgsql_0.9.12-8.diff.gz
 6f40eb09f616955981cc2bfdc65a714c 19378 web optional 
libapache-mod-auth-pgsql_0.9.12-8_i386.deb

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

iD8DBQFDIZ4SxRSvjkukAcMRApoDAKCjpRF5jNI5/tWPKPOLnYye4/xvIACeKQw/
msZCi5rbz67hXx55ILAE6VQ=
=gafn
-----END PGP SIGNATURE-----


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

Reply via email to