From: Chris Sharp Date: Thu, 14 Jan 2016 23:52:02 +0000 (-0500) Subject: Adding PG 9.4 installation targets X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=fd43b5d49913cba85f99448a4758450de2be0c67;p=evergreen%2Fpines.git Adding PG 9.4 installation targets --- diff --git a/Open-ILS/src/extras/Makefile.install b/Open-ILS/src/extras/Makefile.install index 3356b9f2c4..1c2aa7a69e 100644 --- a/Open-ILS/src/extras/Makefile.install +++ b/Open-ILS/src/extras/Makefile.install @@ -82,6 +82,8 @@ postgres-server-debian-squeeze: @make -f $(DIR)/Makefile.debian-squeeze install_postgres_server postgres-server-ubuntu-trusty: @make -f $(DIR)/Makefile.ubuntu-trusty install_postgres_server +postgres-server-ubuntu-trusty-94: + @make -f $(DIR)/Makefile.ubuntu-trusty install_postgres_server_94 postgres-server-ubuntu-precise: @make -f $(DIR)/Makefile.ubuntu-precise install_postgres_server postgres-server-fedora: diff --git a/Open-ILS/src/extras/install/Makefile.ubuntu-trusty b/Open-ILS/src/extras/install/Makefile.ubuntu-trusty index 49e0e77d91..2c99f1f2aa 100644 --- a/Open-ILS/src/extras/install/Makefile.ubuntu-trusty +++ b/Open-ILS/src/extras/install/Makefile.ubuntu-trusty @@ -101,6 +101,13 @@ PGSQL_SERVER_DEBS_93 = \ postgresql-plperl-9.3 \ postgresql-server-dev-9.3 +PGSQL_SERVER_DEBS_94 = \ + $(DEB_PGSQL_COMMON_MODS) \ + postgresql-9.4 \ + postgresql-contrib-9.4 \ + postgresql-plperl-9.4 \ + postgresql-server-dev-9.4 + # note: some prereqs are repeated in the developer/packager # sections to support building Evergreen packages on servers # where Evergreen and its prereqs are not installed. @@ -140,6 +147,8 @@ all: install_postgres_server: make -f $(DIR)/Makefile.debian DEBS="$(PGSQL_SERVER_DEBS_93)" +install_postgres_server_94: + make -f $(DIR)/Makefile.debian DEBS="$(PGSQL_SERVER_DEBS_94)" # note: if/when grunt-cli and bower are available as # packages, use the packaged versions instead.