summaryrefslogtreecommitdiff
path: root/databases/postgresql94-server/files/patch-src-backend-Makefile
diff options
context:
space:
mode:
authorPalle Girgensohn <girgen@FreeBSD.org>2014-05-18 14:44:53 +0000
committerPalle Girgensohn <girgen@FreeBSD.org>2014-05-18 14:44:53 +0000
commit871f7f31379da1ae8158460370c610c6b52183b4 (patch)
treeb4d2c17f35990de4b12e4eb870288590f7f0eb30 /databases/postgresql94-server/files/patch-src-backend-Makefile
parent- update to 0.6.21 (diff)
The PostgreSQL Global Development Group announced that the first beta
release of PostgreSQL 9.4, the latest version of the world's leading open source database, is available today. This beta contains previews of all of the features which will be available in version 9.4, and is ready for testing by the worldwide PostgreSQL community. Please download, test, and report what you find. Major Features -------------- The new major features available for testing in this beta include: * JSONB: 9.4 includes the new JSONB "binary JSON" type. This new storage format for document data is higher-performance, and comes with indexing, functions and operators for manipulating JSON data. * Replication: The new Data Change Streaming API allows decoding and transformation of the replication stream. This lays the foundation for new replication tools that support high-speed and more flexible replication and scale-out solutions. * Materialized Views with "Refresh Concurrently", which permit fast-response background summary reports for complex data. * ALTER SYSTEM SET, which enables modifications to postgresql.conf from the SQL command line and from remote clients, easing administration tasks.
Notes
Notes: svn path=/head/; revision=354425
Diffstat (limited to 'databases/postgresql94-server/files/patch-src-backend-Makefile')
-rw-r--r--databases/postgresql94-server/files/patch-src-backend-Makefile11
1 files changed, 11 insertions, 0 deletions
diff --git a/databases/postgresql94-server/files/patch-src-backend-Makefile b/databases/postgresql94-server/files/patch-src-backend-Makefile
new file mode 100644
index 000000000000..6d6fb0ce660b
--- /dev/null
+++ b/databases/postgresql94-server/files/patch-src-backend-Makefile
@@ -0,0 +1,11 @@
+--- src/backend/Makefile.orig 2009-07-07 15:58:33.000000000 +0200
++++ src/backend/Makefile 2009-07-07 15:58:57.000000000 +0200
+@@ -107,6 +107,8 @@
+ # Update the commonly used headers before building the subdirectories
+ $(SUBDIRS:%=%-recursive): $(top_builddir)/src/include/parser/gram.h $(top_builddir)/src/include/utils/fmgroids.h $(top_builddir)/src/include/utils/probes.h
+
++symlinks: $(top_builddir)/src/include/parser/gram.h $(top_builddir)/src/include/utils/fmgroids.h $(top_builddir)/src/include/utils/probes.h
++
+
+ # The postgres.o target is needed by the rule in Makefile.global that
+ # creates the exports file when MAKE_EXPORTS = true.