Your message dated Mon, 08 Aug 2005 11:17:07 -0700 with message-id <[EMAIL PROTECTED]> and subject line Bug#321943: fixed in guile-simplesql 2.3.2-2 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; 8 Aug 2005 11:47:15 +0000 >From [EMAIL PROTECTED] Mon Aug 08 04:47:15 2005 Return-path: <[EMAIL PROTECTED]> Received: from d040154.adsl.hansenet.de (localhost.localdomain) [80.171.40.154] by spohr.debian.org with esmtp (Exim 3.36 1 (Debian)) id 1E2667-00005g-00; Mon, 08 Aug 2005 04:47:15 -0700 Received: from aj by localhost.localdomain with local (Exim 4.52) id 1E2663-0007K8-83; Mon, 08 Aug 2005 13:47:11 +0200 To: Debian Bug Tracking System <[EMAIL PROTECTED]> From: Andreas Jochens <[EMAIL PROTECTED]> Subject: guile-simplesql: FTBFS: postgresql/libpq-fe.h: No such file or directory Message-Id: <[EMAIL PROTECTED]> Date: Mon, 08 Aug 2005 13:47:11 +0200 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=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE autolearn=no version=2.60-bugs.debian.org_2005_01_02 Package: guile-simplesql Version: 2.3.2-1 Severity: serious Tags: patch When building 'guile-simplesql' on unstable, I get the following error: cc -DHAVE_CONFIG_H -I. -I. -I. -g -Wall -O2 -MT simplesql-postgresql.lo -MD -MP -MF .deps/simplesql-postgresql.Tpo -c simplesql-postgresql.c -fPIC -DPIC -o .libs/simplesql-postgresql.o simplesql-postgresql.c:26:33: error: postgresql/libpq-fe.h: No such file or directory simplesql-postgresql.c:34: error: syntax error before '*' token With the attached patch 'guile-simplesql' can be compiled. Regards Andreas Jochens diff -urN ../tmp-orig/guile-simplesql-2.3.2/simplesql-postgresql.c ./simplesql-postgresql.c --- ../tmp-orig/guile-simplesql-2.3.2/simplesql-postgresql.c 2004-10-01 20:48:21.000000000 +0000 +++ ./simplesql-postgresql.c 2005-08-08 11:41:28.000000000 +0000 @@ -23,7 +23,7 @@ #include "guile-simplesql.h" #include <libguile.h> -#include <postgresql/libpq-fe.h> +#include <postgresql/8.0/libpq-fe.h> #include <string.h> --------------------------------------- Received: (at 321943-close) by bugs.debian.org; 8 Aug 2005 18:19:51 +0000 >From [EMAIL PROTECTED] Mon Aug 08 11:19:50 2005 Return-path: <[EMAIL PROTECTED]> Received: from katie by spohr.debian.org with local (Exim 3.36 1 (Debian)) id 1E2CBP-00066o-00; Mon, 08 Aug 2005 11:17:07 -0700 From: =?utf-8?q?G=C3=B6ran_Weinholt?= <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] X-Katie: $Revision: 1.56 $ Subject: Bug#321943: fixed in guile-simplesql 2.3.2-2 Message-Id: <[EMAIL PROTECTED]> Sender: Archive Administrator <[EMAIL PROTECTED]> Date: Mon, 08 Aug 2005 11:17:07 -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: guile-simplesql Source-Version: 2.3.2-2 We believe that the bug you reported is fixed in the latest version of guile-simplesql, which is due to be installed in the Debian FTP archive: guile-simplesql_2.3.2-2.diff.gz to pool/main/g/guile-simplesql/guile-simplesql_2.3.2-2.diff.gz guile-simplesql_2.3.2-2.dsc to pool/main/g/guile-simplesql/guile-simplesql_2.3.2-2.dsc guile-simplesql_2.3.2-2_i386.deb to pool/main/g/guile-simplesql/guile-simplesql_2.3.2-2_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. Göran Weinholt <[EMAIL PROTECTED]> (supplier of updated guile-simplesql 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, 8 Aug 2005 19:44:42 +0200 Source: guile-simplesql Binary: guile-simplesql Architecture: source i386 Version: 2.3.2-2 Distribution: unstable Urgency: low Maintainer: Göran Weinholt <[EMAIL PROTECTED]> Changed-By: Göran Weinholt <[EMAIL PROTECTED]> Description: guile-simplesql - SQL library for Guile Closes: 321943 Changes: guile-simplesql (2.3.2-2) unstable; urgency=low . * debian/control: + Changed Build-Depends on postgresql-dev to libpq-dev. + Changed Build-Depends on libmysqlclient-dev to libmysqlclient12-dev. + Update to Standards-Version: 3.6.2 (no changes). * debian/rules: Pass pg_config --includedir to configure. * simplesql-postgresql.c: Use <libpq-fe.h> instead of <postgreqsl/libpq-fe.h> (closes: #321943). * Makefile.in: Add CPP="$(CPP)" before the guile-snarf invocation to work around bug #317600, just so I can upload. Files: d7381a298497fde0de66f753e0db081a 651 misc optional guile-simplesql_2.3.2-2.dsc 0b378702fe9f4a0c287fa2dd10a2c60b 2648 misc optional guile-simplesql_2.3.2-2.diff.gz fb325e52a9db8b357c77c8ac36e50ef3 27922 misc optional guile-simplesql_2.3.2-2_i386.deb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (GNU/Linux) iD8DBQFC950HjfWLtkqIVOYRAoZSAKCNOvgvdFpyvZZDbyUgVbS9UHJoXACcDYOp 4jKdEUlADQ4o/IgJuExnPjc= =W3go -----END PGP SIGNATURE----- -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]