mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-21 19:42:24 +01:00
system/postgresql: Fix for pg_upgrade (timezone_abbreviations).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
b8d9dc1de0
commit
2c03ec36ea
2 changed files with 6 additions and 4 deletions
|
@ -31,7 +31,7 @@ Additionally, rc.postgresql script has additional modes for stop/restart:
|
||||||
See http://www.postgresql.org/docs/9.4/static/app-pg-ctl.html
|
See http://www.postgresql.org/docs/9.4/static/app-pg-ctl.html
|
||||||
|
|
||||||
From PostgreSQL 9.3 we support in place database upgrades using pg_upgrade:
|
From PostgreSQL 9.3 we support in place database upgrades using pg_upgrade:
|
||||||
http://www.postgresql.org/docs/9.3/static/pgupgrade.html
|
http://www.postgresql.org/docs/9.4/static/pgupgrade.html
|
||||||
|
|
||||||
A few hints for PostgreSQL 9.3 -> 9.4 upgrade:
|
A few hints for PostgreSQL 9.3 -> 9.4 upgrade:
|
||||||
- Don't remove old PostgreSQL 9.3.x package
|
- Don't remove old PostgreSQL 9.3.x package
|
||||||
|
@ -50,7 +50,8 @@ To build PostgreSQL with all extensions, use the following command:
|
||||||
|
|
||||||
# PG_EXTENSIONS=ALL ./postgresql.SlackBuild
|
# PG_EXTENSIONS=ALL ./postgresql.SlackBuild
|
||||||
|
|
||||||
Please note that in order to actually use extension, you must execute 'CREATE EXTENSION [ IF NOT EXISTS ] extension_name' for each extension.
|
Please note that in order to actually use extension, you must execute
|
||||||
|
'CREATE EXTENSION [ IF NOT EXISTS ] extension_name' for each extension.
|
||||||
|
|
||||||
OpenLDAP Notes
|
OpenLDAP Notes
|
||||||
|
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
|
|
||||||
# Slackware build script for PostgreSQL
|
# Slackware build script for PostgreSQL
|
||||||
#
|
#
|
||||||
# $Revision: 1fcb141fcfb8 $
|
# $Revision: b43df5a7e4e0 $
|
||||||
# $Date: 2015/01/08 06:56:14 $
|
# $Date: 2015/01/20 18:50:25 $
|
||||||
#
|
#
|
||||||
# Copyright 2007-2014 Adis Nezirovic <adis_at_linux.org.ba>
|
# Copyright 2007-2014 Adis Nezirovic <adis_at_linux.org.ba>
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
|
@ -107,6 +107,7 @@ CFLAGS="$SLKCFLAGS" \
|
||||||
--datarootdir=/usr/share \
|
--datarootdir=/usr/share \
|
||||||
--mandir=/usr/man \
|
--mandir=/usr/man \
|
||||||
--docdir=/usr/doc/$PRGNAM-$VERSION \
|
--docdir=/usr/doc/$PRGNAM-$VERSION \
|
||||||
|
--datadir=/usr/share/$PRGNAM-$PG_VERSION \
|
||||||
--with-openssl \
|
--with-openssl \
|
||||||
--with-tcl \
|
--with-tcl \
|
||||||
--with-perl \
|
--with-perl \
|
||||||
|
|
Loading…
Reference in a new issue