summaryrefslogtreecommitdiff
path: root/databases/postgresql94/patches
diff options
context:
space:
mode:
authoradam <adam>2017-02-11 10:18:51 +0000
committeradam <adam>2017-02-11 10:18:51 +0000
commit5cf48ddd96dda84299e6addc2f9a5d8f0284fe2d (patch)
treeb2c287050ea7346bb17916cfe1b0be2a45d8e514 /databases/postgresql94/patches
parentaa95840866ef9426cddfe09c4f7cceb995d1a36b (diff)
downloadpkgsrc-5cf48ddd96dda84299e6addc2f9a5d8f0284fe2d.tar.gz
The PostgreSQL Global Development Group has released an update to all supported versions of our database system, including 9.6.2, 9.5.6, 9.4.11, 9.3.16, and 9.2.20. This release includes fixes that prevent data corruption issues in index builds and in certain write-ahead-log replay situations, which are detailed below. It also patches over 75 other bugs reported over the last three months.
Diffstat (limited to 'databases/postgresql94/patches')
-rw-r--r--databases/postgresql94/patches/patch-contrib_uuid-ossp_uuid-ossp.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/databases/postgresql94/patches/patch-contrib_uuid-ossp_uuid-ossp.c b/databases/postgresql94/patches/patch-contrib_uuid-ossp_uuid-ossp.c
index 93a82e34f61..a832000af7f 100644
--- a/databases/postgresql94/patches/patch-contrib_uuid-ossp_uuid-ossp.c
+++ b/databases/postgresql94/patches/patch-contrib_uuid-ossp_uuid-ossp.c
@@ -1,18 +1,18 @@
-$NetBSD: patch-contrib_uuid-ossp_uuid-ossp.c,v 1.1 2015/01/14 21:01:18 adam Exp $
+$NetBSD: patch-contrib_uuid-ossp_uuid-ossp.c,v 1.2 2017/02/11 10:18:52 adam Exp $
Explicitly define HAVE_UUID_H and HAVE_UUID_OSSP.
---- contrib/uuid-ossp/uuid-ossp.c.orig 2015-01-14 20:54:38.000000000 +0000
+--- contrib/uuid-ossp/uuid-ossp.c.orig 2017-02-06 21:49:02.000000000 +0000
+++ contrib/uuid-ossp/uuid-ossp.c
-@@ -26,6 +26,7 @@
+@@ -30,6 +30,7 @@
*/
#define uuid_hash bsd_uuid_hash
+#define HAVE_UUID_H
- #ifdef HAVE_UUID_H
+ #if defined(HAVE_UUID_H)
#include <uuid.h>
- #endif
-@@ -42,6 +43,7 @@
+ #elif defined(HAVE_OSSP_UUID_H)
+@@ -46,6 +47,7 @@
* Some BSD variants offer md5 and sha1 implementations but Linux does not,
* so we use a copy of the ones from pgcrypto. Not needed with OSSP, though.
*/