2011-09-03 23:08:32 +00:00
|
|
|
# strtoumax.m4 serial 11
|
2013-01-01 09:11:05 +00:00
|
|
|
dnl Copyright (C) 2002-2004, 2006, 2009-2013 Free Software Foundation, Inc.
|
2011-04-21 19:12:13 +00:00
|
|
|
dnl This file is free software; the Free Software Foundation
|
|
|
|
dnl gives unlimited permission to copy and/or distribute it,
|
|
|
|
dnl with or without modifications, as long as this notice is preserved.
|
|
|
|
|
|
|
|
AC_DEFUN([gl_FUNC_STRTOUMAX],
|
|
|
|
[
|
2011-04-22 07:33:37 +00:00
|
|
|
AC_REQUIRE([gl_INTTYPES_H_DEFAULTS])
|
2011-04-21 19:12:13 +00:00
|
|
|
|
2011-09-03 23:08:32 +00:00
|
|
|
dnl On OSF/1 5.1 with cc, this function is declared but not defined.
|
|
|
|
AC_CHECK_FUNCS_ONCE([strtoumax])
|
2011-04-22 07:33:37 +00:00
|
|
|
AC_CHECK_DECLS_ONCE([strtoumax])
|
|
|
|
if test "$ac_cv_have_decl_strtoumax" != yes; then
|
|
|
|
HAVE_DECL_STRTOUMAX=0
|
2011-04-21 19:12:13 +00:00
|
|
|
fi
|
|
|
|
])
|
|
|
|
|
|
|
|
# Prerequisites of lib/strtoumax.c.
|
|
|
|
AC_DEFUN([gl_PREREQ_STRTOUMAX], [
|
2011-04-22 09:31:24 +00:00
|
|
|
AC_CHECK_DECLS([strtoull])
|
2011-04-21 19:12:13 +00:00
|
|
|
AC_REQUIRE([AC_TYPE_UNSIGNED_LONG_LONG_INT])
|
|
|
|
])
|