diff options
-rw-r--r-- | psql/INSTALL | 20 | ||||
-rw-r--r-- | psql/README | 18 |
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 |