1#serial 7
2dnl Copyright (C) 2004, 2005, 2006 Free Software Foundation, Inc.
3dnl This file is free software; the Free Software Foundation
4dnl gives unlimited permission to copy and/or distribute it,
5dnl with or without modifications, as long as this notice is preserved.
6
7AC_DEFUN([gl_INTTOSTR],
8[
9  AC_LIBOBJ([imaxtostr])
10  AC_LIBOBJ([offtostr])
11  AC_LIBOBJ([umaxtostr])
12  AC_LIBOBJ([uinttostr])
13
14  gl_PREREQ_INTTOSTR
15  gl_PREREQ_IMAXTOSTR
16  gl_PREREQ_OFFTOSTR
17  gl_PREREQ_UMAXTOSTR
18  gl_PREREQ_UINTTOSTR
19])
20
21# Prerequisites of lib/inttostr.h.
22AC_DEFUN([gl_PREREQ_INTTOSTR], [
23  AC_REQUIRE([AC_TYPE_OFF_T])
24  :
25])
26
27# Prerequisites of lib/imaxtostr.c.
28AC_DEFUN([gl_PREREQ_IMAXTOSTR], [:])
29
30# Prerequisites of lib/offtostr.c.
31AC_DEFUN([gl_PREREQ_OFFTOSTR], [:])
32
33# Prerequisites of lib/umaxtostr.c.
34AC_DEFUN([gl_PREREQ_UMAXTOSTR], [:])
35
36# Prerequisites of lib/uinttostr.c.
37AC_DEFUN([gl_PREREQ_UINTTOSTR], [:])
38