diff options
author | Adis Nezirovic <adis_at_linux.org.ba> | 2016-01-27 21:55:38 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2016-01-27 21:55:38 +0700 |
commit | 04236140f3ff66ef24745029b78af5556474eb53 (patch) | |
tree | 6e25411f423fde5c027efc7f039431da1ecc12b6 /system/postgresql/postgresql.SlackBuild | |
parent | f037a9a09e1e15fb0b5c141c742f8c655955eadb (diff) |
system/postgresql: Updated for version 9.5.0.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/postgresql/postgresql.SlackBuild')
-rw-r--r-- | system/postgresql/postgresql.SlackBuild | 26 |
1 files changed, 12 insertions, 14 deletions
diff --git a/system/postgresql/postgresql.SlackBuild b/system/postgresql/postgresql.SlackBuild index f41d2e9b38e0..3fe8a37f5ed4 100644 --- a/system/postgresql/postgresql.SlackBuild +++ b/system/postgresql/postgresql.SlackBuild @@ -2,10 +2,10 @@ # Slackware build script for PostgreSQL # -# $Revision: 6560bf705e09 $ -# $Date: 2015/10/23 04:29:48 $ +# $Revision$ +# $Date$ # -# Copyright 2007-2015 Adis Nezirovic <adis_at_linux.org.ba> +# Copyright 2007-2016 Adis Nezirovic <adis_at_linux.org.ba> # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -28,11 +28,11 @@ # Modified by the SlackBuilds.org Project PRGNAM=postgresql -VERSION=${VERSION:-9.4.5} +VERSION=${VERSION:-9.5.0} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} -PG_VERSION=${PG_VERSION:-9.4} +PG_VERSION=${PG_VERSION:-9.5} PG_PORT=${PG_PORT:-5432} PG_UID=${PG_UID:-209} PG_GID=${PG_GID:-209} @@ -72,16 +72,16 @@ else fi if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -mtune=i686 -DLINUX_OOM_SCORE_ADJ=0" + SLKCFLAGS="-O2 -march=i486 -mtune=i686" LIBDIRSUFFIX="" elif [ "$ARCH" = "i686" ]; then - SLKCFLAGS="-O2 -march=i686 -mtune=i686 -DLINUX_OOM_SCORE_ADJ=0" + SLKCFLAGS="-O2 -march=i686 -mtune=i686" LIBDIRSUFFIX="" elif [ "$ARCH" = "x86_64" ]; then - SLKCFLAGS="-O2 -fPIC -DLINUX_OOM_SCORE_ADJ=0" + SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" else - SLKCFLAGS="-O2 -DLINUX_OOM_SCORE_ADJ=0" + SLKCFLAGS="-O2" LIBDIRSUFFIX="" fi @@ -135,17 +135,15 @@ make install-docs DESTDIR=$PKG ) # Some interesting additional modules: -# http://www.postgresql.org/docs/9.4/static/contrib.html +# http://www.postgresql.org/docs/9.5/static/contrib.html # # adminpack - helper extension for pgAdmin # pgcrypto - extension for some business applications -# hstore, ltree, xml2 - useful extensions for developers -# pg_archivecleanup, pg_standby - high availability helpers -# pg_upgrade, pg_upgrade_support - online upgrade between postgresql versions +# ltree, xml2 - useful extensions for developers # postgres_fdw - foreign-data wrapper for access to external PostgreSQL servers # file_fdw - foreign-data wrapper for access to data files on filesystem -PG_EXTENSIONS=${PG_EXTENSIONS:-"adminpack pgcrypto hstore ltree xml2 pg_archivecleanup pg_standby pg_upgrade pg_upgrade_support postgres_fdw file_fdw"} +PG_EXTENSIONS=${PG_EXTENSIONS:-"adminpack pgcrypto ltree xml2 postgres_fdw file_fdw"} if [ "x$PG_EXTENSIONS" = "xALL" ];then cd $TMP/$PRGNAM-$VERSION/contrib |