-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
tags 335972 + patch pending
thanks
A patch to fix this RC bug follows. I will upload an NMU to the 7-day
delayed queue. If you upload a fixed version within the next 7 days,
this will supercede it.
Regards,
Roger
- --
Roger Leigh
Printing on GNU/Linux? http://gimp-print.sourceforge.net/
Debian GNU/Linux http://www.debian.org/
GPG Public Key: 0x25BFB848. Please sign and encrypt your mail.
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.2 (GNU/Linux)
Comment: Processed by Mailcrypt 3.5.8+ <http://mailcrypt.sourceforge.net/>
iD8DBQFDxoYSVcFcaSW/uEgRAhd6AJ9eDHnweTJqy+sh/lQrzDRrBe78AACfYIcw
dQU6yKZpigGPBqAdC6Bujqs=
=8OqT
-----END PGP SIGNATURE-----
diff -urN libpgsql-ruby-0.7.1.original/debian/changelog libpgsql-ruby-0.7.1/debian/changelog
--- libpgsql-ruby-0.7.1.original/debian/changelog 2006-01-12 16:19:41.000000000 +0000
+++ libpgsql-ruby-0.7.1/debian/changelog 2006-01-12 16:21:20.859974825 +0000
@@ -1,3 +1,11 @@
+libpgsql-ruby (0.7.1-6.1) unstable; urgency=low
+
+ * Non-maintainer upload.
+ * postgres.c: Use correct PostgreSQL includes. Applied patch from
+ Matt Kraai (closes: #335972).
+
+ -- Roger Leigh <[EMAIL PROTECTED]> Thu, 12 Jan 2006 16:20:26 +0000
+
libpgsql-ruby (0.7.1-6) unstable; urgency=low
* Followup-to new standard version: 3.6.2.1
diff -urN libpgsql-ruby-0.7.1.original/postgres.c libpgsql-ruby-0.7.1/postgres.c
--- libpgsql-ruby-0.7.1.original/postgres.c 2003-01-06 01:38:20.000000000 +0000
+++ libpgsql-ruby-0.7.1/postgres.c 2006-01-12 16:20:22.416020139 +0000
@@ -15,8 +15,8 @@
#include "ruby.h"
#include "rubyio.h"
-#include <libpq-fe.h>
-#include <libpq/libpq-fs.h> /* large-object interface */
+#include <postgresql/libpq-fe.h>
+#include <postgresql/libpq/libpq-fs.h> /* large-object interface */
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>