mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-20 22:05:37 +00:00
Merge pull request #1607 from ethomson/hurd
qsort_r is broken on HURD, avoid
This commit is contained in:
commit
5e57cfa1b3
@ -685,7 +685,8 @@ static int GIT_STDLIB_CALL git__qsort_r_glue_cmp(
|
||||
void git__qsort_r(
|
||||
void *els, size_t nel, size_t elsize, git__sort_r_cmp cmp, void *payload)
|
||||
{
|
||||
#if defined(__MINGW32__) || defined(__OpenBSD__) || defined(AMIGA)
|
||||
#if defined(__MINGW32__) || defined(__OpenBSD__) || defined(AMIGA) || \
|
||||
defined(__gnu_hurd__)
|
||||
git__insertsort_r(els, nel, elsize, NULL, cmp, payload);
|
||||
#elif defined(GIT_WIN32)
|
||||
git__qsort_r_glue glue = { cmp, payload };
|
||||
|
Loading…
Reference in New Issue
Block a user