mirror of
https://github.com/git/git
synced 2024-11-05 01:58:18 +00:00
win32: fix building with NO_UNIX_SOCKETS
After 2406bf5f
(Win32: detect unix socket support at runtime,
2024-04-03), it fails with:
compat/mingw.c:4160:5: error: no previous prototype for function 'mingw_have_unix_sockets' [-Werror,-Wmissing-prototypes]
4160 | int mingw_have_unix_sockets(void)
| ^
because the prototype is behind `ifndef NO_UNIX_SOCKETS`.
Signed-off-by: Mike Hommey <mh@glandium.org>
Acked-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
2406bf5fc5
commit
395c130fd8
1 changed files with 2 additions and 0 deletions
|
@ -3159,6 +3159,7 @@ int uname(struct utsname *buf)
|
|||
return 0;
|
||||
}
|
||||
|
||||
#ifndef NO_UNIX_SOCKETS
|
||||
int mingw_have_unix_sockets(void)
|
||||
{
|
||||
SC_HANDLE scm, srvc;
|
||||
|
@ -3177,3 +3178,4 @@ int mingw_have_unix_sockets(void)
|
|||
}
|
||||
return ret;
|
||||
}
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue