diff options
author | Palle Girgensohn <girgen@FreeBSD.org> | 2016-09-29 22:42:19 +0000 |
---|---|---|
committer | Palle Girgensohn <girgen@FreeBSD.org> | 2016-09-29 22:42:19 +0000 |
commit | 4eb50a146ea8e5ae295628d26929c585ed5de036 (patch) | |
tree | 39e45d5b5a95fef4a3ef4323cb483beaabeddb44 /databases/pg_qualstats/files/patch-Makefile | |
parent | - update to 7.30 (diff) |
Add a suite of real time metrics tools for PostgreSQL
The PostgreSQL Workload Analyzer is performance tool for PostgreSQL 9.4 and
later, allowing to collect, aggregate and purge statistics on a PostgreSQL
instance from various sources. It is implemented as a background worker.
pg_qualstats, providing data about predicates, i.e. where clauses
Notes
Notes:
svn path=/head/; revision=422953
Diffstat (limited to 'databases/pg_qualstats/files/patch-Makefile')
-rw-r--r-- | databases/pg_qualstats/files/patch-Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/databases/pg_qualstats/files/patch-Makefile b/databases/pg_qualstats/files/patch-Makefile new file mode 100644 index 000000000000..5daed1561a0a --- /dev/null +++ b/databases/pg_qualstats/files/patch-Makefile @@ -0,0 +1,11 @@ +--- Makefile.orig 2016-08-11 13:49:47 UTC ++++ Makefile +@@ -3,7 +3,7 @@ EXTVERSION = $(shell grep default_vers + TESTS = $(wildcard test/sql/*.sql) + REGRESS = $(patsubst test/sql/%.sql,%,$(TESTS)) + REGRESS_OPTS = --inputdir=test +-DOCS = $(wildcard doc/*.md) ++DOCS = $(wildcard doc/*.md) $(wildcard *LICENSE) + MODULES = $(patsubst %.c,%,$(wildcard *.c)) + PG_CONFIG ?= pg_config + |