From: Jim Meyering Date: Wed, 8 Jun 2011 20:00:15 +0000 (+0200) Subject: build: avoid link failure: this time on i686 linux X-Git-Tag: v1.5~29 X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=579be3f041bab33171d65f61afc126e357dacd50;p=debian%2Fgzip build: avoid link failure: this time on i686 linux * deflate.c (good_match): Must not be static, since it may be used from lib/match.c. --- diff --git a/deflate.c b/deflate.c index c4a7648..b1fafde 100644 --- a/deflate.c +++ b/deflate.c @@ -209,7 +209,7 @@ local unsigned int max_lazy_match; local int compr_level; /* compression level (1..9) */ -static unsigned good_match; +unsigned good_match; /* Use a faster search when the previous match is longer than this */