Your message dated Tue, 12 Jul 2005 15:47:53 -0400
with message-id <[EMAIL PROTECTED]>
and subject line Bug#286950: fixed in guile-pg 0.16-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; 23 Dec 2004 07:53:10 +0000
>From [EMAIL PROTECTED] Wed Dec 22 23:53:10 2004
Return-path: <[EMAIL PROTECTED]>
Received: from c169031.adsl.hansenet.de (localhost.localdomain) [213.39.169.31]
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1ChNmY-0004LB-00; Wed, 22 Dec 2004 23:53:10 -0800
Received: from aj by localhost.localdomain with local (Exim 4.34)
id 1ChNrO-00053h-Kg; Thu, 23 Dec 2004 08:58:10 +0100
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
From: Andreas Jochens <[EMAIL PROTECTED]>
Subject: guile-pg: FTBFS (amd64/gcc-4.0): invalid lvalue in assignment
Message-Id: <[EMAIL PROTECTED]>
Date: Thu, 23 Dec 2004 08:58:10 +0100
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE
autolearn=no version=2.60-bugs.debian.org_2004_03_25
X-Spam-Level:
Package: guile-pg
Severity: normal
Tags: patch
When building 'guile-pg' on amd64 with gcc-4.0,
I get the following error:
gcc -DHAVE_CONFIG_H -I. -I. -I. -I. -I/usr/include/postgresql -g -O2 -Wall
-Wmissing-prototypes -MT libpostgres_lo.lo -MD -MP -MF .deps/libpostgres_lo.Tpo
-c libpostgres_lo.c -fPIC -DPIC -o .libs/libpostgres_lo.o
libpostgres_lo.c: In function 'lob_mklobport':
libpostgres_lo.c:226: error: invalid lvalue in assignment
With the attached patch 'guile-pg' can be compiled
on amd64 using gcc-4.0.
Regards
Andreas Jochens
diff -urN ../tmp-orig/guile-pg-0.16/libpostgres_lo.c ./libpostgres_lo.c
--- ../tmp-orig/guile-pg-0.16/libpostgres_lo.c 2003-08-13 12:11:19.000000000
+0200
+++ ./libpostgres_lo.c 2004-12-23 08:49:02.296911128 +0100
@@ -223,7 +223,8 @@
pt->read_pos = pt->read_end = pt->read_buf;
pt->read_buf_size = LOB_BUFLEN;
} else {
- pt->read_buf = ((unsigned char *) pt->read_pos) = pt->read_end =
&pt->shortbuf;
+ pt->read_pos = pt->read_end = &pt->shortbuf;
+ pt->read_buf = ((unsigned char *) pt->read_pos);
pt->read_buf_size = 1;
}
if (SCM_OUTPUT_PORT_P (port)) {
---------------------------------------
Received: (at 286950-close) by bugs.debian.org; 12 Jul 2005 19:53:49 +0000
>From [EMAIL PROTECTED] Tue Jul 12 12:53:49 2005
Return-path: <[EMAIL PROTECTED]>
Received: from newraff.debian.org [208.185.25.31] (mail)
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1DsQpB-0000ll-00; Tue, 12 Jul 2005 12:53:49 -0700
Received: from katie by newraff.debian.org with local (Exim 3.35 1 (Debian))
id 1DsQjR-00027x-00; Tue, 12 Jul 2005 15:47:53 -0400
From: Sam Hocevar (Debian packages) <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.56 $
Subject: Bug#286950: fixed in guile-pg 0.16-2
Message-Id: <[EMAIL PROTECTED]>
Sender: Archive Administrator <[EMAIL PROTECTED]>
Date: Tue, 12 Jul 2005 15:47:53 -0400
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-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
X-Spam-Level:
Source: guile-pg
Source-Version: 0.16-2
We believe that the bug you reported is fixed in the latest version of
guile-pg, which is due to be installed in the Debian FTP archive:
guile-pg_0.16-2.diff.gz
to pool/main/g/guile-pg/guile-pg_0.16-2.diff.gz
guile-pg_0.16-2.dsc
to pool/main/g/guile-pg/guile-pg_0.16-2.dsc
guile-pg_0.16-2_i386.deb
to pool/main/g/guile-pg/guile-pg_0.16-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.
Sam Hocevar (Debian packages) <[EMAIL PROTECTED]> (supplier of updated guile-pg
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: Tue, 12 Jul 2005 19:40:55 +0300
Source: guile-pg
Binary: guile-pg
Architecture: source i386
Version: 0.16-2
Distribution: unstable
Urgency: low
Maintainer: Sam Hocevar (Debian packages) <[EMAIL PROTECTED]>
Changed-By: Sam Hocevar (Debian packages) <[EMAIL PROTECTED]>
Description:
guile-pg - Guile bindings for the PostgreSQL client library
Closes: 286950
Changes:
guile-pg (0.16-2) unstable; urgency=low
.
* debian/control:
+ Set policy to 3.6.2.1.
* libpostgres_lo.c:
+ Fixed lvalue cast, courtesy of Andreas Jochens (Closes: #286950).
Files:
05715f3c9ef424b4e7a7d5db9b7428aa 624 interpreters optional guile-pg_0.16-2.dsc
6d2b76bff542442397c17f53fa8abe4f 349209 interpreters optional
guile-pg_0.16-2.diff.gz
208983d322967cd41494fa1cd54eba7e 80376 interpreters optional
guile-pg_0.16-2_i386.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.1 (GNU/Linux)
iD8DBQFC1BM8fPP1rylJn2ERAg8dAJ9t3788kF+gdBl/rKumAZPCARR0DACcDUoY
Hq94e/fqseL4aUEG5+Kg2kA=
=KWxO
-----END PGP SIGNATURE-----
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]