mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-11 23:16:14 +01:00
configure.ac: Print qsort_r result only once
AC_CACHE_CHECK that was introduced in 70a19815
prints the result, so the
following AC_MSG_RESULT is no longer needed.
This commit is contained in:
parent
f3f5c410f0
commit
886a3499e1
@ -614,11 +614,8 @@ main (int argc, char **argv)
|
|||||||
return 1;
|
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])])
|
||||||
|
|
||||||
if test $glib_cv_have_qsort_r = yes ; then
|
if test x$glib_cv_have_qsort_r = xyes ; then
|
||||||
AC_MSG_RESULT([yes])
|
|
||||||
AC_DEFINE(HAVE_QSORT_R, 1, [Define to 1 if you have the 'qsort_r' function])
|
AC_DEFINE(HAVE_QSORT_R, 1, [Define to 1 if you have the 'qsort_r' function])
|
||||||
else
|
|
||||||
AC_MSG_RESULT([no])
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
AC_CHECK_SIZEOF(char)
|
AC_CHECK_SIZEOF(char)
|
||||||
|
Loading…
Reference in New Issue
Block a user