diff options
author | David Symonds <dsymonds@gmail.com> | 2007-11-07 14:24:28 +1100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-11-07 17:06:14 -0800 |
commit | 609a2289d76fd9a7dddceabc63d1654fe61e0ffb (patch) | |
tree | 1d1d2719a4936c8958259a1772a31b7f6baac6c8 /config.mak.in | |
parent | 6d0618a820a20846d60b665897fcce600f452eec (diff) | |
download | git-609a2289d76fd9a7dddceabc63d1654fe61e0ffb.tar.gz |
Improve accuracy of check for presence of deflateBound.
ZLIB_VERNUM isn't defined in some zlib versions, so this patch does a proper
linking test in autoconf to see whether deflateBound exists in zlib. Also,
setting NO_DEFLATE_BOUND will also work for folk not using autoconf.
Signed-off-by: David Symonds <dsymonds@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'config.mak.in')
-rw-r--r-- | config.mak.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/config.mak.in b/config.mak.in index a3032e389f..776b805659 100644 --- a/config.mak.in +++ b/config.mak.in @@ -38,3 +38,4 @@ NO_STRCASESTR=@NO_STRCASESTR@ NO_STRLCPY=@NO_STRLCPY@ NO_SETENV=@NO_SETENV@ NO_ICONV=@NO_ICONV@ +NO_DEFLATE_BOUND=@NO_DEFLATE_BOUND@ |