diff options
author | Ulrich Drepper <drepper@redhat.com> | 2001-04-04 00:01:02 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2001-04-04 00:01:02 +0000 |
commit | c891b2df087e0219319785c29d3af6042e4ac94f (patch) | |
tree | 35f252e14d0024b991068214f533f738d23bdab7 /posix | |
parent | f114375059d2f3ee90aaeea242120b3dda84787b (diff) | |
download | glibc-c891b2df087e0219319785c29d3af6042e4ac94f.tar glibc-c891b2df087e0219319785c29d3af6042e4ac94f.tar.gz glibc-c891b2df087e0219319785c29d3af6042e4ac94f.tar.bz2 glibc-c891b2df087e0219319785c29d3af6042e4ac94f.zip |
Update.
2001-04-03 Ulrich Drepper <drepper@redhat.com>
* misc/dirname.c (dirname): Handle multiple slashes correctly.
2001-04-03 Martin Schwidefsky <schwidefsky@de.ibm.com>
* sysdeps/s390/s390-64/initfini.c: Fix __gmon_start__ GOT access.
2001-04-03 Martin Schwidefsky <schwidefsky@de.ibm.com>
* sysdeps/s390/s390-32/bcopy.S: Optimize for speed.
* sysdeps/s390/s390-64/bcopy.S: Likewise.
* sysdeps/s390/s390-32/mempcy.S: Likewise.
* sysdeps/s390/s390-64/memcpy.S: Likewise.
2001-04-02 Bruno Haible <haible@clisp.cons.org>
* manual/message.texi (Advanced gettext functions): More specific
syntax in the plural formula examples.
2001-04-02 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
* sysdeps/powerpc/atomicity.h: Silence warnings.
* sysdeps/powerpc/dl-machine.h: Likewise.
* sysdeps/powerpc/register-dump.h: Likewise.
* sysdeps/powerpc/fpu/s_lrint.c: Likewise.
2001-04-02 Andreas Jaeger <aj@suse.de>
* misc/tst-dirname.c (main): Add more tests, derived from a bug
report by Michael Kerrisk <mtk16@ext.canterbury.ac.nz>.
2001-04-01 Andreas Jaeger <aj@suse.de>
* debug/xtrace.sh (pcprofileso): Use SLIBDIR since libpcprofile.so
is installed there.
* malloc/memusage.sh (memusageso): Likewise for libmemusage.so.
2001-04-01 H.J. Lu <hjl@gnu.org>
* posix/annexc.c (macrofile): Renamed from TMPFILE and set to
tmpnam (NULL).
* stdlib/isomac.c (macrofile): Likewise.
2001-03-30 Thorsten Kukuk <kukuk@suse.de>
* inet/rcmd.c: Allow AF_UNSPEC as parameter.
* nis/ypclnt.c (yp_all): Print error message only at last try,
check for protocoll error only if we don't have a network error.
Diffstat (limited to 'posix')
-rw-r--r-- | posix/annexc.c | 27 |
1 files changed, 15 insertions, 12 deletions
diff --git a/posix/annexc.c b/posix/annexc.c index 1dbc3f617b..78d70fa804 100644 --- a/posix/annexc.c +++ b/posix/annexc.c @@ -25,9 +25,10 @@ #include <signal.h> #include <sys/wait.h> -#define TMPFILE "/tmp/macros" #define HEADER_MAX 256 +static const char *macrofile; + /* <aio.h>. */ static const char *const aio_syms[] = { @@ -712,8 +713,10 @@ get_null_defines (void) FILE *input; int first = 1; + macrofile = tmpnam (NULL); + command = malloc (sizeof fmt + sizeof "/dev/null" + 2 * strlen (CC) - + strlen (INC) + strlen (TMPFILE)); + + strlen (INC) + strlen (macrofile)); if (command == NULL) { @@ -721,7 +724,7 @@ get_null_defines (void) exit (1); } - sprintf (command, fmt, "/dev/null", CC, INC, CC, TMPFILE); + sprintf (command, fmt, "/dev/null", CC, INC, CC, macrofile); if (xsystem (command)) { @@ -729,11 +732,11 @@ get_null_defines (void) return NULL; } free (command); - input = fopen (TMPFILE, "r"); + input = fopen (macrofile, "r"); if (input == NULL) { - printf ("Could not read %s: ", TMPFILE); + printf ("Could not read %s: ", macrofile); perror (NULL); return NULL; } @@ -782,7 +785,7 @@ get_null_defines (void) } result[result_len] = NULL; fclose (input); - remove (TMPFILE); + remove (macrofile); return (const char **) result; } @@ -799,7 +802,7 @@ check_header (const struct header *header, const char **except) memset (found, '\0', header->nsyms * sizeof (int)); command = alloca (sizeof fmt + strlen (header->name) + 2 * strlen (CC) - + strlen (INC) + strlen (TMPFILE)); + + strlen (INC) + strlen (macrofile)); if (command == NULL) @@ -809,13 +812,13 @@ check_header (const struct header *header, const char **except) } printf ("=== %s ===\n", header->name); - sprintf (command, fmt, header->name, CC, INC, CC, TMPFILE); + sprintf (command, fmt, header->name, CC, INC, CC, macrofile); /* First see whether this subset is supported at all. */ if (header->subset != NULL) { sprintf (line, testfmt, header->subset, header->subset, CC, INC, CC, - TMPFILE); + macrofile); if (xsystem (line)) { printf ("!! not available\n"); @@ -828,11 +831,11 @@ check_header (const struct header *header, const char **except) puts ("system() returned nonzero"); result = 1; } - input = fopen (TMPFILE, "r"); + input = fopen (macrofile, "r"); if (input == NULL) { - printf ("Could not read %s: ", TMPFILE); + printf ("Could not read %s: ", macrofile); perror (NULL); return 1; } @@ -884,7 +887,7 @@ check_header (const struct header *header, const char **except) result |= 1; } fclose (input); - remove (TMPFILE); + remove (macrofile); for (i = 0; i < header->nsyms; ++i) if (found[i] == 0) |