diff options
author | Andreas Klemm <andreas@FreeBSD.org> | 1998-04-21 21:52:10 +0000 |
---|---|---|
committer | Andreas Klemm <andreas@FreeBSD.org> | 1998-04-21 21:52:10 +0000 |
commit | 36f89aec96a7e05ab98027269654b5437626b6a2 (patch) | |
tree | adbe637cc1fe207c2ef0a21244a7b8df91b413fd /databases/postgresql74-server/files | |
parent | Upgrade to latest pgaccess version 0.86 (diff) |
Upgrade postgresql to version 6.3.2
Many bugfixes and cosmetic changes
Changes by Scrappy and me
My additional changes:
- had to link libpgtcl.so with the crypt library to get rid of the
pgaccess error message, that crypt is missing
- had to add -i option in the startup script, so that pgaccess is
able to connect to the postmaster process
- removed all unnecessary patches
- updated PLIST
Thanks to the postgresql developement team, who did a great job to
simplify the postgresql port, by applying the patches and making
the autoconf mechanism more consistent.
Submitted by: The Hermit Hacker <scrappy@hub.org>
Notes
Notes:
svn path=/head/; revision=10625
Diffstat (limited to 'databases/postgresql74-server/files')
-rw-r--r-- | databases/postgresql74-server/files/pgsql.sh.tmpl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/databases/postgresql74-server/files/pgsql.sh.tmpl b/databases/postgresql74-server/files/pgsql.sh.tmpl index 9fd81e4ff367..ed6c54d18839 100644 --- a/databases/postgresql74-server/files/pgsql.sh.tmpl +++ b/databases/postgresql74-server/files/pgsql.sh.tmpl @@ -1,6 +1,6 @@ #!/bin/sh -# $Id: pgsql.sh.tmpl,v 1.2 1997/10/03 18:26:54 andreas Exp $ +# $Id: pgsql.sh.tmpl,v 1.3 1997/10/05 21:00:49 andreas Exp $ # pgsql.sh - postgresql startup file for FreeBSD and possibly *BSD (untested) @@ -19,7 +19,7 @@ [ -d !!PREFIX!!/pgsql/lib ] && /sbin/ldconfig -m !!PREFIX!!/pgsql/lib [ -x !!PREFIX!!/pgsql/bin/postmaster ] && { - su -l pgsql -c 'exec !!PREFIX!!/pgsql/bin/postmaster \ - -S -o -F > !!PREFIX!!/pgsql/errlog' + su -l pgsql -c 'exec !!PREFIX!!/pgsql/bin/postmaster -i -S -o -F \ + -D!!PREFIX!!/pgsql/data > !!PREFIX!!/pgsql/errlog' echo -n ' pgsql' } |