On Thu, Jan 12, 2006 at 04:39:02PM +0000, Roger Leigh wrote: > 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.
An updated patch is attached. This is a little cleaner than the last
because it involves no code changes, and will cope with future changes
to the postgresql packaging.
Uploaded to DELAYED/5-day.
Regards,
Roger
--
Roger Leigh
Printing on GNU/Linux? http://gutenprint.sourceforge.net/
Debian GNU/Linux http://www.debian.org/
GPG Public Key: 0x25BFB848. Please sign and encrypt your mail.
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-14
13:17:19.000000000 +0000
+++ libpgsql-ruby-0.7.1/debian/changelog 2006-01-14 13:19:52.494078905
+0000
@@ -1,3 +1,11 @@
+libpgsql-ruby (0.7.1-6.1) unstable; urgency=low
+
+ * Non-maintainer upload.
+ * debian/rules: Determine correct PostgreSQL includes using pg_config
+ (closes: #335972).
+
+ -- Roger Leigh <[EMAIL PROTECTED]> Sat, 14 Jan 2006 13:19:05 +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/debian/rules
libpgsql-ruby-0.7.1/debian/rules
--- libpgsql-ruby-0.7.1.original/debian/rules 2006-01-14 13:17:19.000000000
+0000
+++ libpgsql-ruby-0.7.1/debian/rules 2006-01-14 13:23:10.126023945 +0000
@@ -18,7 +18,7 @@
configure-1.6:
dh_testdir
-$(MAKE) distclean
- ruby1.6 extconf.rb --with-pgsql-include-dir=/usr/include/postgresql/8.0
+ ruby1.6 extconf.rb --with-pgsql-include-dir=$(shell pg_config
--includedir)
build-install-1.6: configure-1.6 install
$(MAKE)
@@ -27,7 +27,7 @@
configure-1.8:
dh_testdir
-$(MAKE) distclean
- ruby1.8 extconf.rb --with-pgsql-include-dir=/usr/include/postgresql/8.0
+ ruby1.8 extconf.rb --with-pgsql-include-dir=$(shell pg_config
--includedir)
build-install-1.8: configure-1.8 install
$(MAKE)
signature.asc
Description: Digital signature

