8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 22:03:03 +01:00

False positive for fdatasync on MacOS

This commit is contained in:
paulbeach 2011-07-08 11:31:08 +00:00
parent 7351527acb
commit 6307c50804

View File

@ -786,7 +786,14 @@ AC_CHECK_FUNCS(fchmod)
AC_CHECK_FUNCS(semtimedop)
AC_CHECK_FUNCS(fegetenv)
AC_CHECK_FUNCS(strerror_r)
case $host in
*-darwin*)
ac_cv_func_fdatasync=no
;;
*)
AC_CHECK_FUNCS(fdatasync fsync)
;;
esac
AC_CHECK_FUNCS(poll)
dnl AC_CHECK_FUNCS(AO_compare_and_swap_full)
AC_COMPILE_IFELSE(