diff options
author | Gary V. Vaughan <git@mlists.thewrittenword.com> | 2010-05-14 09:31:41 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-05-31 17:36:27 -0700 |
commit | 5a857c74baa96c4b20cdf9cab83a77972e6560de (patch) | |
tree | bb7bc0df5b1568d4f4f83691cd0f3dcfc20f3e5a /config.mak.in | |
parent | 0a9b167ede027c09eca7aa2ea7522f058e153a13 (diff) | |
download | git-5a857c74baa96c4b20cdf9cab83a77972e6560de.tar.gz |
Make NO_{INET_NTOP,INET_PTON} configured independently
Being careful not to overwrite the results of testing for hstrerror in
libresolv, also test whether inet_ntop/inet_pton are available from
that library.
Signed-off-by: Gary V. Vaughan <gary@thewrittenword.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'config.mak.in')
-rw-r--r-- | config.mak.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/config.mak.in b/config.mak.in index 9a0d8deacd..8667ac5b55 100644 --- a/config.mak.in +++ b/config.mak.in @@ -53,6 +53,8 @@ NO_SETENV=@NO_SETENV@ NO_UNSETENV=@NO_UNSETENV@ NO_MKDTEMP=@NO_MKDTEMP@ NO_MKSTEMPS=@NO_MKSTEMPS@ +NO_INET_NTOP=@NO_INET_NTOP@ +NO_INET_PTON=@NO_INET_PTON@ NO_ICONV=@NO_ICONV@ OLD_ICONV=@OLD_ICONV@ NO_DEFLATE_BOUND=@NO_DEFLATE_BOUND@ |