aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2012-09-16 14:27:20 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2012-09-16 14:27:20 +0000
commita3b17704ca94d77547c4c3d9c613e3fbcd94c7fa (patch)
tree7f7439e244ea29afba81c263aa8e04450c0c7270
parent3a38c6f716fca56a4562b1a4787114d0b75bb912 (diff)
folded install instructions into README
svn path=/trunk/externals/postlude/; revision=16238
-rw-r--r--psql/INSTALL20
-rw-r--r--psql/README18
2 files changed, 17 insertions, 21 deletions
diff --git a/psql/INSTALL b/psql/INSTALL
deleted file mode 100644
index dca6d37..0000000
--- a/psql/INSTALL
+++ /dev/null
@@ -1,20 +0,0 @@
-Requirements
-------------
-
-This object reuires
-
-libpq >= 7.4
-PD >= 0.37
-
-Installation
-------------
-
-Modify the Makefile so that PDDIR gives the base directory of your PD installation, and INCLUDE provides the path to your PostgreSQL headers.
-
-Then from a shell prompt type:
-
-make <option>
-sudo make install
-
-Where <option> is either 'pd_linux' or 'pd_darwin' (without the quotes).
-
diff --git a/psql/README b/psql/README
index 4e56def..7fcd7d8 100644
--- a/psql/README
+++ b/psql/README
@@ -25,11 +25,27 @@ psql outputs results of queries as lists. Often there will be more than one inst
At present 'psql' handles 6 PostgreSQL data types: PGINT4; PGFLOAT8; PGDOUBLE; PGDATE; PGDATETIME and PGVARCHAR. If a query returns tuples of a different data type, these will be compiled into a list (on output) as Pd 'symbols'. In contrast, PGINT4, PGFLOAT8 and PGDOUBLE are compiled into lists as floats. Like non-specified data types, PGDATE, PGDATETIME and PGVARCHAR are compiled into lists as 'symbols'.
+
+Requirements
+------------
+
+This object reuires
+
+libpq >= 7.4
+PD >= 0.37
+
Installation
------------
-See the INSTALL file.
+Make sure the Makefile includes the path to your PostgreSQL headers.
+On most GNU/Linux systems that will be /usr/include/postgresql, but on
+Mac OS X you'll need to get them via Fink, MacPorts or something like
+that.
+
+Then from a shell prompt type:
+make
+make install