1 dnl Reentrant sort function.
3 dnl Copyright 2014-2020 Free Software Foundation, Inc.
4 dnl This file is free software; the Free Software Foundation
5 dnl gives unlimited permission to copy and/or distribute it,
6 dnl with or without modifications, as long as this notice is preserved.
8 dnl Written by Paul Eggert.
10 AC_DEFUN([gl_FUNC_QSORT_R],
12 dnl Persuade glibc to declare qsort_r.
13 AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
15 AC_REQUIRE([gl_STDLIB_H_DEFAULTS])
17 AC_CHECK_FUNCS_ONCE([qsort_r])
18 if test $ac_cv_func_qsort_r = yes; then
19 AC_CACHE_CHECK([for qsort_r signature], [gl_cv_qsort_r_signature],
21 [AC_LANG_PROGRAM([[#include <stdlib.h>
22 void qsort_r (void *, size_t, size_t,
23 int (*) (void const *, void const *,
26 void (*p) (void *, size_t, size_t,
27 int (*) (void const *, void const *,
31 [gl_cv_qsort_r_signature=GNU],
33 [AC_LANG_PROGRAM([[#include <stdlib.h>
34 void qsort_r (void *, size_t, size_t, void *,
38 void (*p) (void *, size_t, size_t, void *,
39 int (*) (void *, void const *,
40 void const *)) = qsort_r;
42 [gl_cv_qsort_r_signature=BSD],
43 [gl_cv_qsort_r_signature=unknown])])])
44 case $gl_cv_qsort_r_signature in
46 BSD) REPLACE_QSORT_R=1 ;;
47 unknown) HAVE_QSORT_R=0 REPLACE_QSORT_R=1 ;;