From 05d3f14b9a8c08bf3c87925a250bc81eb32f8dca Mon Sep 17 00:00:00 2001 From: David Fetter Date: Sun, 6 Dec 2009 18:42:00 -0800 Subject: [PATCH] The changes in src/handler/Makefile mean PGXS is the default, so no need to specify it when invoking 'make'. --- HOWTO | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/HOWTO b/HOWTO index 5747b72..dbec3c2 100644 --- a/HOWTO +++ b/HOWTO @@ -1,13 +1,12 @@ -You will need to have a Postgres database instance running (8.x) with the plpgsql PL language installed: +You will need to have a Postgres database instance running (8.2x, 8.3x, 8.4x, 8.5x) with the plpgsql PL language installed: cd ~/postgresql initdb test createlang plpgsql test - cd ~/git/plparrot - cd src/handler - make USE_PGXS=1 + cd ~/git/plparrot/src/handler + make cd ../.. psql testdb < t/test.sql