Port to Tandem NSK OSS, which has 64-bit signed int but at most
[gnulib.git] / modules / inttypes
1 Description:
2 An <inttypes.h> that nearly conforms to C99.
3
4 Files:
5 lib/inttypes_.h
6 m4/absolute-header.m4
7 m4/inttypes-pri.m4
8 m4/inttypes.m4
9
10 Depends-on:
11 stdint
12
13 configure.ac:
14 gl_INTTYPES_H
15
16 Makefile.am:
17 BUILT_SOURCES += $(INTTYPES_H)
18 EXTRA_DIST += inttypes_.h
19
20 # We need the following in order to create <inttypes.h> when the system
21 # doesn't have one that works with the given compiler.
22 inttypes.h: inttypes_.h
23         rm -f $@-t $@
24         { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
25           sed -e 's/@''HAVE_INTTYPES_H''@/$(HAVE_INTTYPES_H)/g' \
26               -e 's|@''ABSOLUTE_INTTYPES_H''@|$(ABSOLUTE_INTTYPES_H)|g' \
27               -e 's/@''PRI_MACROS_BROKEN''@/$(PRI_MACROS_BROKEN)/g' \
28               -e 's/@''HAVE_LONG_LONG_INT''@/$(HAVE_LONG_LONG_INT)/g' \
29               -e 's/@''HAVE_UNSIGNED_LONG_LONG_INT''@/$(HAVE_UNSIGNED_LONG_LONG_INT)/g' \
30               -e 's/@''PRIPTR_PREFIX''@/$(PRIPTR_PREFIX)/g' \
31               -e 's/@''HAVE_DECL_IMAXABS''@/$(HAVE_DECL_IMAXABS)/g' \
32               -e 's/@''HAVE_DECL_IMAXDIV''@/$(HAVE_DECL_IMAXDIV)/g' \
33               -e 's/@''HAVE_DECL_STRTOIMAX''@/$(HAVE_DECL_STRTOIMAX)/g' \
34               -e 's/@''HAVE_DECL_STRTOUMAX''@/$(HAVE_DECL_STRTOUMAX)/g' \
35               < $(srcdir)/inttypes_.h; \
36         } > $@-t
37         mv $@-t $@
38 MOSTLYCLEANFILES += inttypes.h inttypes.h-t
39
40 Include:
41 #include <inttypes.h>
42
43 License:
44 LGPL
45
46 Maintainer:
47 all