forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
app-admin/syslog-ng: fix building with dev-libs/json-c-0.13
Closes: https://bugs.gentoo.org/641688 Package-Manager: Portage-2.3.18, Repoman-2.3.6
- Loading branch information
1 parent
4592b65
commit d03a886
Showing
3 changed files
with
45 additions
and
2 deletions.
There are no files selected for viewing
33 changes: 33 additions & 0 deletions
33
app-admin/syslog-ng/files/patches/syslog-ng-3.12.1-json-c-0.13+.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
From 1b824dd6389e209eab752d5a698c6093f311e3e3 Mon Sep 17 00:00:00 2001 | ||
From: =?UTF-8?q?Bj=C3=B6rn=20Esser?= <[email protected]> | ||
Date: Mon, 11 Dec 2017 15:46:06 +0100 | ||
Subject: [PATCH] modules/json: Adaptions for json-c v0.13 | ||
|
||
--- | ||
modules/json/json-parser.c | 5 +++++ | ||
1 file changed, 5 insertions(+) | ||
|
||
diff --git a/modules/json/json-parser.c b/modules/json/json-parser.c | ||
index 0368ed8f7..356df48b9 100644 | ||
--- a/modules/json/json-parser.c | ||
+++ b/modules/json/json-parser.c | ||
@@ -20,6 +20,8 @@ | ||
* COPYING for details. | ||
*/ | ||
|
||
+#define JSON_C_VER_013 (13 << 8) | ||
+ | ||
#include "json-parser.h" | ||
#include "dot-notation.h" | ||
#include "scratch-buffers.h" | ||
@@ -28,7 +30,10 @@ | ||
#include <ctype.h> | ||
|
||
#include <json.h> | ||
+ | ||
+#if (!defined(JSON_C_VERSION_NUM)) || (JSON_C_VERSION_NUM < JSON_C_VER_013) | ||
#include <json_object_private.h> | ||
+#endif | ||
|
||
typedef struct _JSONParser | ||
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters