Blame m4/strtoumax.m4

Packit 8f70b4
# strtoumax.m4 serial 12
Packit 8f70b4
dnl Copyright (C) 2002-2004, 2006, 2009-2018 Free Software Foundation, Inc.
Packit 8f70b4
dnl This file is free software; the Free Software Foundation
Packit 8f70b4
dnl gives unlimited permission to copy and/or distribute it,
Packit 8f70b4
dnl with or without modifications, as long as this notice is preserved.
Packit 8f70b4
Packit 8f70b4
AC_DEFUN([gl_FUNC_STRTOUMAX],
Packit 8f70b4
[
Packit 8f70b4
  AC_REQUIRE([gl_INTTYPES_H_DEFAULTS])
Packit 8f70b4
Packit 8f70b4
  dnl On OSF/1 5.1 with cc, this function is declared but not defined.
Packit 8f70b4
  AC_CHECK_FUNCS_ONCE([strtoumax])
Packit 8f70b4
  AC_CHECK_DECLS_ONCE([strtoumax])
Packit 8f70b4
  if test "$ac_cv_have_decl_strtoumax" = yes; then
Packit 8f70b4
    if test "$ac_cv_func_strtoumax" != yes; then
Packit 8f70b4
      # HP-UX 11.11 has "#define strtoimax(...) ..." but no function.
Packit 8f70b4
      REPLACE_STRTOUMAX=1
Packit 8f70b4
    fi
Packit 8f70b4
  else
Packit 8f70b4
    HAVE_DECL_STRTOUMAX=0
Packit 8f70b4
  fi
Packit 8f70b4
])
Packit 8f70b4
Packit 8f70b4
# Prerequisites of lib/strtoumax.c.
Packit 8f70b4
AC_DEFUN([gl_PREREQ_STRTOUMAX], [
Packit 8f70b4
  AC_CHECK_DECLS([strtoull])
Packit 8f70b4
  AC_REQUIRE([AC_TYPE_UNSIGNED_LONG_LONG_INT])
Packit 8f70b4
])