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

(-)Makefile (-4 lines)
Lines 11-20 Link Here
11
11
12
LICENSE=	BSD3CLAUSE
12
LICENSE=	BSD3CLAUSE
13
13
14
BROKEN_mips=		fails to compile: bgzip.c: error: invalid operands to binary &
15
BROKEN_mips64=		fails to compile: bgzip.c: error: invalid operands to binary &
16
BROKEN_powerpc64=	fails to compile: bgzip.c: error: invalid operands to binary &
17
18
LIB_DEPENDS=	libcurl.so:ftp/curl
14
LIB_DEPENDS=	libcurl.so:ftp/curl
19
15
20
USES=		autoreconf gmake libtool
16
USES=		autoreconf gmake libtool
(-)files/patch-io__lib_c__range__coder.h (+11 lines)
Line 0 Link Here
1
--- io_lib/c_range_coder.h.orig	2018-10-18 16:44:55 UTC
2
+++ io_lib/c_range_coder.h
3
@@ -14,8 +14,6 @@
4
 #define  DO(n)	   int _;for (_=0; _<n; _++)
5
 #define  TOP	   (1<<24)
6
 
7
-typedef unsigned char uc;
8
-
9
 typedef struct {
10
     uint64_t low;
11
     uint32_t range, code;
(-)files/patch-io__lib_tokenise__name3.c (+18 lines)
Line 0 Link Here
1
--- io_lib/tokenise_name3.c.orig	2018-10-18 16:21:37 UTC
2
+++ io_lib/tokenise_name3.c
3
@@ -457,13 +457,13 @@ static int encode_token_diff(name_context *ctx, uint32
4
 
5
 //-----------------------------------------------------------------------------
6
 // Trie implementation for tracking common name prefixes.
7
-typedef struct trie {
8
+struct trie {
9
     char c;
10
     int count;
11
     //struct trie *next[128];
12
     struct trie *next, *sibling;
13
     int n; // Nth line
14
-} trie_t;
15
+};
16
 
17
 //static trie_t *t_head = NULL;
18
 

Return to bug 232390