Skip to content

Commit

Permalink
Merge pull request #1609 from ethomson/qsort_r_glibc
Browse files Browse the repository at this point in the history
qsort_r appeared in glibc 2.8
  • Loading branch information
Vicent Martí committed May 25, 2013
2 parents 8528132 + c37fb41 commit 0d77647
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/util.c
Expand Up @@ -686,7 +686,8 @@ 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) || \
defined(__gnu_hurd__)
defined(__gnu_hurd__) || \
(__GLIBC__ == 2 && __GLIBC_MINOR__ < 8)
git__insertsort_r(els, nel, elsize, NULL, cmp, payload);
#elif defined(GIT_WIN32)
git__qsort_r_glue glue = { cmp, payload };
Expand Down

0 comments on commit 0d77647

Please sign in to comment.