source: trunk/essentials/app-arch/cpio/m4/inttostr.m4

Last change on this file was 3332, checked in by bird, 18 years ago

cpio 2.7

File size: 787 bytes
Line 
1#serial 6
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
13 gl_PREREQ_INTTOSTR
14 gl_PREREQ_IMAXTOSTR
15 gl_PREREQ_OFFTOSTR
16 gl_PREREQ_UMAXTOSTR
17])
18
19# Prerequisites of lib/inttostr.h.
20AC_DEFUN([gl_PREREQ_INTTOSTR], [
21 AC_REQUIRE([AC_TYPE_OFF_T])
22 :
23])
24
25# Prerequisites of lib/imaxtostr.c.
26AC_DEFUN([gl_PREREQ_IMAXTOSTR], [:])
27
28# Prerequisites of lib/offtostr.c.
29AC_DEFUN([gl_PREREQ_OFFTOSTR], [:])
30
31# Prerequisites of lib/umaxtostr.c.
32AC_DEFUN([gl_PREREQ_UMAXTOSTR], [:])
Note: See TracBrowser for help on using the repository browser.