summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron W. Swenson <titanofold@gentoo.org>2019-02-10 07:11:28 -0500
committerAaron W. Swenson <titanofold@gentoo.org>2019-02-10 07:13:26 -0500
commit82a9c5cdc6e383a94c5a8b4f412d33629d44a5cf (patch)
treebd7ee7bb23b7ee41b2fa48855d1875a67bc710c0 /dev-db/postgis/files
parentsys-apps/dcfldd: Drop old (diff)
downloadgentoo-82a9c5cdc6e383a94c5a8b4f412d33629d44a5cf.tar.gz
gentoo-82a9c5cdc6e383a94c5a8b4f412d33629d44a5cf.tar.bz2
gentoo-82a9c5cdc6e383a94c5a8b4f412d33629d44a5cf.zip
dev-db/postgis: Cleanup old
Package-Manager: Portage-2.3.51, Repoman-2.3.11 Signed-off-by: Aaron W. Swenson <titanofold@gentoo.org>
Diffstat (limited to 'dev-db/postgis/files')
-rw-r--r--dev-db/postgis/files/postgis-2.4.2-jsonc_0.13.patch23
1 files changed, 0 insertions, 23 deletions
diff --git a/dev-db/postgis/files/postgis-2.4.2-jsonc_0.13.patch b/dev-db/postgis/files/postgis-2.4.2-jsonc_0.13.patch
deleted file mode 100644
index b980e77333d6..000000000000
--- a/dev-db/postgis/files/postgis-2.4.2-jsonc_0.13.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-diff -Naur postgis-2.4.2.old/liblwgeom/lwin_geojson.c postgis-2.4.2/liblwgeom/lwin_geojson.c
---- postgis-2.4.2.old/liblwgeom/lwin_geojson.c 2017-12-21 22:52:40.422802160 +0100
-+++ postgis-2.4.2/liblwgeom/lwin_geojson.c 2017-12-21 22:55:36.605430945 +0100
-@@ -31,13 +31,19 @@
-
- #if defined(HAVE_LIBJSON) || defined(HAVE_LIBJSON_C) /* --{ */
-
-+#define JSON_C_VERSION_013 (13 << 8)
-+
- #ifdef HAVE_LIBJSON_C
- #include <json-c/json.h>
-+#if !defined(JSON_C_VERSION_NUM) || JSON_C_VERSION_NUM < JSON_C_VERSION_013
- #include <json-c/json_object_private.h>
-+#endif
- #else
- #include <json/json.h>
-+#if !defined(JSON_C_VERSION_NUM) || JSON_C_VERSION_NUM < JSON_C_VERSION_013
- #include <json/json_object_private.h>
- #endif
-+#endif
-
- #ifndef JSON_C_VERSION
- /* Adds support for libjson < 0.10 */