Blame m4/ftell.m4

Packit aea12f
# ftell.m4 serial 3
Packit Service 991b93
dnl Copyright (C) 2007, 2009-2020 Free Software Foundation, Inc.
Packit aea12f
dnl This file is free software; the Free Software Foundation
Packit aea12f
dnl gives unlimited permission to copy and/or distribute it,
Packit aea12f
dnl with or without modifications, as long as this notice is preserved.
Packit aea12f
Packit aea12f
AC_DEFUN([gl_FUNC_FTELL],
Packit aea12f
[
Packit aea12f
  AC_REQUIRE([gl_STDIO_H_DEFAULTS])
Packit aea12f
  AC_REQUIRE([gl_FUNC_FTELLO])
Packit aea12f
  dnl When ftello needs fixes, ftell needs them too.
Packit aea12f
  if test $HAVE_FTELLO = 0 || test $REPLACE_FTELLO = 1; then
Packit aea12f
    REPLACE_FTELL=1
Packit aea12f
  fi
Packit aea12f
])