mirror of
https://github.com/void-linux/void-packages.git
synced 2025-08-04 03:42:56 +02:00
bti: rebuild against json-c-0.13
This commit is contained in:
parent
d09716c73d
commit
11ffeaf640
2 changed files with 43 additions and 1 deletions
|
@ -0,0 +1,42 @@
|
||||||
|
From 0db8dc6022f67a4e1f49397b8bf519b2a34f74c9 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Jelle van der Waa <jelle@vdwaa.nl>
|
||||||
|
Date: Wed, 27 Dec 2017 11:05:45 +0100
|
||||||
|
Subject: [PATCH] Replace removed is_error macro
|
||||||
|
|
||||||
|
The json-c library removed the is_error macro in 0.13, replaced the
|
||||||
|
macro calls with a != NULL statement.
|
||||||
|
---
|
||||||
|
bti.c | 6 +++---
|
||||||
|
1 file changed, 3 insertions(+), 3 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/bti.c b/bti.c
|
||||||
|
index 7f485a8..9b68e17 100644
|
||||||
|
--- bti.c
|
||||||
|
+++ bti.c
|
||||||
|
@@ -451,7 +451,7 @@ static void parse_timeline(char *document, struct session *session)
|
||||||
|
struct json_object *val; \
|
||||||
|
struct lh_entry *entry; \
|
||||||
|
for (entry = json_object_get_object(obj)->head; \
|
||||||
|
- ({ if(entry && !is_error(entry)) { \
|
||||||
|
+ ({ if(entry && entry != NULL) { \
|
||||||
|
key = (char*)entry->k; \
|
||||||
|
val = (struct json_object*)entry->v; \
|
||||||
|
} ; entry; }); \
|
||||||
|
@@ -667,7 +667,7 @@ static int parse_response_json(char *document, struct session *session)
|
||||||
|
|
||||||
|
/* make global for now */
|
||||||
|
store_session = session;
|
||||||
|
- if (!is_error(jobj)) {
|
||||||
|
+ if (jobj != NULL) {
|
||||||
|
/* guards against a json pre 0.10 bug */
|
||||||
|
json_parse(jobj,0);
|
||||||
|
}
|
||||||
|
@@ -692,7 +692,7 @@ static void parse_timeline_json(char *document, struct session *session)
|
||||||
|
|
||||||
|
/* make global for now */
|
||||||
|
store_session = session;
|
||||||
|
- if (!is_error(jobj)) {
|
||||||
|
+ if (jobj != NULL) {
|
||||||
|
/* guards against a json pre 0.10 bug */
|
||||||
|
if (json_object_get_type(jobj)==json_type_array) {
|
||||||
|
json_parse_array(jobj, NULL, 0);
|
|
@ -1,7 +1,7 @@
|
||||||
# Template file for 'bti'
|
# Template file for 'bti'
|
||||||
pkgname=bti
|
pkgname=bti
|
||||||
version=034
|
version=034
|
||||||
revision=1
|
revision=2
|
||||||
build_style=gnu-configure
|
build_style=gnu-configure
|
||||||
hostmakedepends="pkg-config"
|
hostmakedepends="pkg-config"
|
||||||
makedepends="pcre-devel libxml2-devel libcurl-devel json-c-devel liboauth-devel"
|
makedepends="pcre-devel libxml2-devel libcurl-devel json-c-devel liboauth-devel"
|
||||||
|
|
Loading…
Add table
Reference in a new issue