View | Details | Raw Unified | Return to bug 171619
Collapse All | Expand All

(-)databases/hiredis/Makefile (-6 / +6 lines)
Lines 6-25 Link Here
6
#
6
#
7
7
8
PORTNAME=	hiredis
8
PORTNAME=	hiredis
9
DISTVERSION=	0.10.1
9
DISTVERSION=	0.11.0
10
CATEGORIES=	databases
10
CATEGORIES=	databases
11
MASTER_SITES=	https://github.com/antirez/hiredis/tarball/v${DISTVERSION}/
12
DISTNAME=	antirez-${PORTNAME}-v${DISTVERSION}-0-g${GITVERSION}
13
11
14
MAINTAINER=	magik@roorback.net
12
MAINTAINER=	magik@roorback.net
15
COMMENT=	Minimalistic C client library for the Redis database
13
COMMENT=	Minimalistic C client library for the Redis database
16
14
17
LICENSE=	BSD
15
LICENSE=	BSD
18
16
19
GITVERSION=	3cc6a7f
17
USE_GITHUB=	yes
20
FETCH_ARGS=	-pRr
18
GH_ACCOUNT=	antirez
21
WRKSRC=		${WRKDIR}/antirez-${PORTNAME}-${GITVERSION}
19
GH_TAGNAME=	v${DISTVERSION}
20
GH_COMMIT=	0fff0f1
22
21
22
ARCH=
23
USE_GMAKE=	yes
23
USE_GMAKE=	yes
24
CFLAGS+=	-fPIC
24
CFLAGS+=	-fPIC
25
USE_LDCONFIG=	yes
25
USE_LDCONFIG=	yes
(-)databases/hiredis/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (antirez-hiredis-v0.10.1-0-g3cc6a7f.tar.gz) = fed36cc82220a1e1232380ddf3d346956e8fa09708ca87c958371bdd594bcbae
1
SHA256 (hiredis-0.11.0.tar.gz) = 9340e3cb0f0daedd115b1fb5b2a631d5d8aaa3d460423f3a2a06f198d85959ff
2
SIZE (antirez-hiredis-v0.10.1-0-g3cc6a7f.tar.gz) = 40024
2
SIZE (hiredis-0.11.0.tar.gz) = 42159
(-)databases/hiredis/files/patch-hiredis.c (-11 lines)
Lines 1-11 Link Here
1
--- hiredis.c.orig	2011-09-16 15:11:57.000000000 +0800
2
+++ hiredis.c	2011-09-16 15:12:19.000000000 +0800
3
@@ -796,7 +796,7 @@ int redisvFormatCommand(char **target, c
4
                     }
5
 
6
                     /* Consume and discard vararg */
7
-                    va_arg(ap,void);
8
+                    va_arg(ap, void*);
9
                 }
10
             }
11

Return to bug 171619