Add patch for changes in json-c >= 0.13

This commit is contained in:
Björn Esser 2017-12-15 14:30:40 +01:00
parent a23e871557
commit 6e124e349a
No known key found for this signature in database
GPG Key ID: F52E98007594C21D
2 changed files with 41 additions and 1 deletions

View File

@ -0,0 +1,33 @@
From a079dba76b209b788e9ced3641e2289b0820216c Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Bj=C3=B6rn=20Esser?= <besser82@fedoraproject.org>
Date: Fri, 15 Dec 2017 13:35:40 +0100
Subject: [PATCH] geojson: Do not include private header for json-c >= 0.13
---
liblwgeom/lwin_geojson.c | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/liblwgeom/lwin_geojson.c b/liblwgeom/lwin_geojson.c
index 749d03374..ef907ee79 100644
--- a/liblwgeom/lwin_geojson.c
+++ b/liblwgeom/lwin_geojson.c
@@ -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 */

View File

@ -28,7 +28,7 @@
Summary: Geographic Information Systems Extensions to PostgreSQL
Name: postgis
Version: %majorversion.1
Release: 3%{?dist}
Release: 4%{?dist}
License: GPLv2+
Group: Applications/Databases
Source0: http://download.osgeo.org/%{name}/source/%{name}-%{version}.tar.gz
@ -40,6 +40,8 @@ Patch2: postgis-2.4.0-upgrade-2.3.3.patch
Patch3: postgis-2.4.0-install-desktop.patch
Patch4: postgis-2.4.0-code-check-only.patch
Patch5: postgis-2.4.0-check-gdal.patch
# Upstreamed.
Patch6: %{name}-2.4.1_json-c_013.patch
URL: http://www.postgis.net
BuildRequires: perl-generators
@ -140,11 +142,13 @@ cd %{name}-%{prevversion}
%patch1 -p0 -b .configureac21
./autogen.sh
%patch2 -p1
%patch6 -p1
)
%endif
%patch3 -p1
%patch4 -p1
%patch5 -p1
%patch6 -p1
cp -p %{SOURCE2} .
@ -343,6 +347,9 @@ fi
%changelog
* Fri Dec 15 2017 Björn Esser <besser82@fedoraproject.org> - 2.4.1-4
- Add patch for changes in json-c >= 0.13
* Sun Dec 10 2017 Björn Esser <besser82@fedoraproject.org> - 2.4.1-3
- Rebuilt for libjson-c.so.3