*** empty log message ***
authorJim Meyering <jim@meyering.net>
Mon, 19 Apr 1999 02:53:36 +0000 (02:53 +0000)
committerJim Meyering <jim@meyering.net>
Mon, 19 Apr 1999 02:53:36 +0000 (02:53 +0000)
m4/ChangeLog
m4/xstrtoumax.m4 [new file with mode: 0644]

index 133402b5841165904bbcbb721ad8c691fa317bbf..3bcda0ecaadf2d5f97ce80e62f4670339b4835f3 100644 (file)
@@ -1,3 +1,8 @@
+1999-04-18  Jim Meyering  <meyering@ascend.com>
+
+       * xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): New file/macro.
+       * jm-macros.m4: Use it.
+
 1999-04-06  Jim Meyering  <meyering@ascend.com>
 
        * strftime.m4: Remove test for %f.
diff --git a/m4/xstrtoumax.m4 b/m4/xstrtoumax.m4
new file mode 100644 (file)
index 0000000..ee87c9a
--- /dev/null
@@ -0,0 +1,10 @@
+#serial 1
+
+# autoconf tests required for use of xstrtoumax.c
+
+AC_DEFUN(jm_AC_PREREQ_XSTRTOUMAX,
+[
+  jm_AC_HEADER_INTTYPES_H
+  AC_CHECK_HEADERS(stdlib.h)
+  AC_CHECK_FUNCS(strtoull strtoumax strtouq)
+])