Remove direct _llseek code and require long filesystem libc.

This commit is contained in:
Felix Janda 2015-01-22 19:54:36 +01:00 committed by Vladimir Serbinenko
parent 6866f2ba37
commit 3bac4caa2b
4 changed files with 13 additions and 24 deletions

View file

@ -366,6 +366,14 @@ case "$host_os" in
;;
esac
case "$host_os" in
cygwin | windows* | mingw32* | aros*)
;;
*)
AC_CHECK_SIZEOF(off_t)
test x"$ac_cv_sizeof_off_t" = x8 || AC_MSG_ERROR([Large file support is required]);;
esac
if test x$USE_NLS = xno; then
HOST_CFLAGS="$HOST_CFLAGS -fno-builtin-gettext"
fi