tags 599725 patch
thanks
/usr/bin/pg_config was provided by libpq-dev.
If we want to build for pg-8.4, we need use pg_config of pg-8.4.
This is in /usr/lib/postgresql/8.4/bin/pg_config.
I attached the patch which revised this bug.
But this patch fix only for pg-8.4.
Best regards,
Nobuhiro
--
Nobuhiro Iwamatsu
iwamatsu at {nigauri.org / debian.org}
GPG ID: 40AD1FA6
--- pgsql-asn1oid-0.0.20100818.orig/Makefile
+++ pgsql-asn1oid-0.0.20100818/Makefile
@@ -1,6 +1,7 @@
MODULES = asn1oid
-PGCONFIG = pg_config
+PG84_BIN = /usr/lib/postgresql/8.4/bin/
+PGCONFIG = $(PG84_BIN)pg_config
PGXS = $(shell $(PGCONFIG) --pgxs)