Mercurial > hg > octave-nkf > gnulib-hg
annotate m4/inttostr.m4 @ 17729:874a5cc03904
test-userspec: don't look up numeric user names
* tests/test-userspec.c: I found a system for which getpwnam("0")
returned a pointer to a non-root user's entry, and that made the
test fail.
(T): Prefix each numeric input with "+", to inhibit lookup.
author | Jim Meyering <meyering@fb.com> |
---|---|
date | Fri, 18 Jul 2014 14:16:44 -0700 |
parents | 344018b6e5d7 |
children | ab58d4870664 |
rev | line source |
---|---|
13400
4a25c1663687
inttostr: add a new function, inttostr, and tests
Jim Meyering <meyering@redhat.com>
parents:
12559
diff
changeset
|
1 #serial 8 |
17587 | 2 dnl Copyright (C) 2004-2006, 2009-2014 Free Software Foundation, Inc. |
5611
87c42e194f4a
Use an all-permissive copyright notice, recommended by RMS.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5016
diff
changeset
|
3 dnl This file is free software; the Free Software Foundation |
87c42e194f4a
Use an all-permissive copyright notice, recommended by RMS.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5016
diff
changeset
|
4 dnl gives unlimited permission to copy and/or distribute it, |
87c42e194f4a
Use an all-permissive copyright notice, recommended by RMS.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5016
diff
changeset
|
5 dnl with or without modifications, as long as this notice is preserved. |
4983 | 6 |
7 AC_DEFUN([gl_INTTOSTR], | |
8 [ | |
9 gl_PREREQ_INTTOSTR | |
10 gl_PREREQ_IMAXTOSTR | |
11 gl_PREREQ_OFFTOSTR | |
12 gl_PREREQ_UMAXTOSTR | |
7543
8c6aad2a3515
* lib/getaddrinfo.c (getnameinfo): Use new lightweight uinttostr,
Jim Meyering <jim@meyering.net>
parents:
7162
diff
changeset
|
13 gl_PREREQ_UINTTOSTR |
4983 | 14 ]) |
15 | |
16 # Prerequisites of lib/inttostr.h. | |
17 AC_DEFUN([gl_PREREQ_INTTOSTR], [ | |
18 AC_REQUIRE([AC_TYPE_OFF_T]) | |
19 : | |
20 ]) | |
21 | |
22 # Prerequisites of lib/imaxtostr.c. | |
23 AC_DEFUN([gl_PREREQ_IMAXTOSTR], [:]) | |
24 | |
25 # Prerequisites of lib/offtostr.c. | |
26 AC_DEFUN([gl_PREREQ_OFFTOSTR], [:]) | |
27 | |
28 # Prerequisites of lib/umaxtostr.c. | |
29 AC_DEFUN([gl_PREREQ_UMAXTOSTR], [:]) | |
7543
8c6aad2a3515
* lib/getaddrinfo.c (getnameinfo): Use new lightweight uinttostr,
Jim Meyering <jim@meyering.net>
parents:
7162
diff
changeset
|
30 |
8c6aad2a3515
* lib/getaddrinfo.c (getnameinfo): Use new lightweight uinttostr,
Jim Meyering <jim@meyering.net>
parents:
7162
diff
changeset
|
31 # Prerequisites of lib/uinttostr.c. |
8c6aad2a3515
* lib/getaddrinfo.c (getnameinfo): Use new lightweight uinttostr,
Jim Meyering <jim@meyering.net>
parents:
7162
diff
changeset
|
32 AC_DEFUN([gl_PREREQ_UINTTOSTR], [:]) |