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

(-)tinycdb/Makefile (+1 lines)
Lines 8-13 Link Here
8
8
9
PORTNAME=	tinycdb
9
PORTNAME=	tinycdb
10
PORTVERSION=	0.73
10
PORTVERSION=	0.73
11
PORTREVISION=	1
11
CATEGORIES=	databases
12
CATEGORIES=	databases
12
MASTER_SITES=	ftp://ftp.corpit.ru/pub/tinycdb/
13
MASTER_SITES=	ftp://ftp.corpit.ru/pub/tinycdb/
13
14
(-)tinycdb/files/patch-cdb.c (+11 lines)
Line 0 Link Here
1
--- cdb.c.orig	Mon Dec 10 06:18:02 2001
2
+++ cdb.c	Mon Mar  3 08:38:57 2003
3
@@ -144,7 +144,7 @@
4
       if (printf(mode == 'd' ? "+%u,%u:" : "+%u:", klen, vlen) < 0) return -1;
5
     if (fcpy(f, stdout, klen, &pos, eod) != 0) return -1;
6
     if (mode == 'd')
7
-      if (!fputs(flags & F_MAP ? " " : "->", stdout))
8
+      if (fputs(flags & F_MAP ? " " : "->", stdout) == EOF)
9
 	return -1;
10
     if (fcpy(f, mode == 'd' ? stdout : NULL, vlen, &pos, eod) != 0)
11
       return -1;
(-)tinycdb/pkg-descr (+2 lines)
Lines 1-3 Link Here
1
It is analogous to cdb from D.J.Berstein, but written completely from scratch,
1
It is analogous to cdb from D.J.Berstein, but written completely from scratch,
2
has some functionality removed and some new added compared to DJB's one, a bit
2
has some functionality removed and some new added compared to DJB's one, a bit
3
faster, and much easier to use (only one library needed at link time).
3
faster, and much easier to use (only one library needed at link time).
4
5
WWW: http://www.corpit.ru/mjt/tinycdb.html

Return to bug 48857