configure.ac: Check for qsort_r function before running the test program

When cross compiling, test programs cannot be run. In order to make it
easier to cross compile for targets that do not have qsort_r(), check
for the function before trying to run the test program.

This avoid having to populate cache with glib_cv_have_qsort_r=no with
e.g. mingw cross compiler.

https://bugzilla.gnome.org/show_bug.cgi?id=651920
This commit is contained in:
Kalev Lember 2011-06-05 14:34:33 +03:00
parent 886a3499e1
commit 03441e406c

View File

@ -579,16 +579,18 @@ AC_HEADER_STDC
AC_FUNC_VPRINTF
AC_FUNC_ALLOCA
AC_CHECK_FUNCS(mmap posix_memalign memalign valloc fsync pipe2)
AC_CHECK_FUNCS(atexit on_exit timegm gmtime_r)
# BSD has a qsort_r with wrong argument order
AC_CACHE_CHECK([for qsort_r], glib_cv_have_qsort_r, [
AC_RUN_IFELSE([AC_LANG_SOURCE([[
#define _GNU_SOURCE
#include <stdlib.h>
AC_CHECK_FUNCS(atexit on_exit timegm gmtime_r qsort_r)
static int
cmp (const void *a, const void *b, void *c)
{
# BSD has a qsort_r with wrong argument order
if test x$ac_cv_func_qsort_r = xyes ; then
AC_CACHE_CHECK([if qsort_r uses glibc compatible argument order], glib_cv_have_qsort_r, [
AC_RUN_IFELSE([AC_LANG_SOURCE([[
#define _GNU_SOURCE
#include <stdlib.h>
static int
cmp (const void *a, const void *b, void *c)
{
const int *ia = a;
const int *ib = b;
@ -598,11 +600,11 @@ cmp (const void *a, const void *b, void *c)
return 1;
else
return 0;
}
}
int
main (int argc, char **argv)
{
int
main (int argc, char **argv)
{
int arr[3] = { 1, 2, 0 };
int d = 3;
@ -612,7 +614,8 @@ main (int argc, char **argv)
return 0;
else
return 1;
}]])],[glib_cv_have_qsort_r=yes],[glib_cv_have_qsort_r=no])])
}]])],[glib_cv_have_qsort_r=yes],[glib_cv_have_qsort_r=no])])
fi
if test x$glib_cv_have_qsort_r = xyes ; then
AC_DEFINE(HAVE_QSORT_R, 1, [Define to 1 if you have the 'qsort_r' function])