fa6e5c40710de17a46d3c57408b56267226eca1f
[gnulib.git] / m4 / xstrtol.m4
1 #serial 8
2 dnl Copyright (C) 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
3 dnl This file is free software; the Free Software Foundation
4 dnl gives unlimited permission to copy and/or distribute it,
5 dnl with or without modifications, as long as this notice is preserved.
6
7 AC_DEFUN([gl_XSTRTOL],
8 [
9   AC_LIBSOURCES([xstrtol.c, xstrtol.h, xstrtoul.c, intprops.h])
10   AC_LIBOBJ([xstrtol])
11   AC_LIBOBJ([xstrtoul])
12
13   AC_REQUIRE([gl_PREREQ_XSTRTOL])
14   AC_REQUIRE([gl_PREREQ_XSTRTOUL])
15 ])
16
17 # Prerequisites of lib/xstrtol.h.
18 AC_DEFUN([gl_PREREQ_XSTRTOL_H],
19 [
20   AC_REQUIRE([gl_AC_TYPE_INTMAX_T])
21   AC_REQUIRE([gl_AC_TYPE_UINTMAX_T])
22 ])
23
24 # Prerequisites of lib/xstrtol.c.
25 AC_DEFUN([gl_PREREQ_XSTRTOL],
26 [
27   AC_REQUIRE([gl_PREREQ_XSTRTOL_H])
28   AC_CHECK_DECLS_ONCE([strtoimax])
29   AC_CHECK_DECLS_ONCE([strtoumax])
30 ])
31
32 # Prerequisites of lib/xstrtoul.c.
33 AC_DEFUN([gl_PREREQ_XSTRTOUL],
34 [
35   AC_REQUIRE([gl_PREREQ_XSTRTOL])
36 ])