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=532754bcd7f5cab4629f05df5d7a0c54898f8272;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 73161a6fa2..7d265cc712 100644 --- a/Open-ILS/src/extras/Makefile.install +++ b/Open-ILS/src/extras/Makefile.install @@ -78,6 +78,10 @@ postgres-server-ubuntu-xenial: @make -f $(DIR)/Makefile.ubuntu-xenial 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: @make -f $(DIR)/Makefile.fedora install_postgres_server diff --git a/Open-ILS/src/extras/install/Makefile.ubuntu-trusty b/Open-ILS/src/extras/install/Makefile.ubuntu-trusty index 5e836e6f2c..d22395efb2 100644 --- a/Open-ILS/src/extras/install/Makefile.ubuntu-trusty +++ b/Open-ILS/src/extras/install/Makefile.ubuntu-trusty @@ -102,6 +102,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. @@ -141,6 +148,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.