diff options
author | Nick Clifton <nickc@redhat.com> | 2006-10-13 09:43:29 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2006-10-13 09:43:29 +0000 |
commit | f9c026a85b129328be8ed9ce74f19fc0065454be (patch) | |
tree | 399caa063a9877ae0a03737895cb45214ca6a9d2 /binutils/ChangeLog | |
parent | ec6e49f44cf16f200634edd04c6e55ab0e2436b0 (diff) | |
download | gdb-f9c026a85b129328be8ed9ce74f19fc0065454be.zip gdb-f9c026a85b129328be8ed9ce74f19fc0065454be.tar.gz gdb-f9c026a85b129328be8ed9ce74f19fc0065454be.tar.bz2 |
PR binutils/2876
* configure.in: Check for the mkstemp and mkdtemp functions.
* configure: Regenerate.
* config.in (HAVE_MKDTEMP): New potential define.
(MAKE_MKSTEMP): Likewise.
* bucomm.c (make_tempname): Use mkstemp if it is available.
* make_tempdir): New function: Create a temporary directory using mkdtemp, if
it is available.
* bucomm.h (make_tempdir): New prototype.
* objcopy.c (copy_archive): Use make_tempdir if it is available.
(strip_main): Produce an warning message if a temporary file could not be
(copy_main): Likewise.
* ar.c (write_archive): Likewise.
Diffstat (limited to 'binutils/ChangeLog')
-rw-r--r-- | binutils/ChangeLog | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 0b454bd..f71bef3 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,20 @@ +2006-10-13 Robert Connolly <robert@linuxfromscratch.org> + + PR binutils/2876 + * configure.in: Check for the mkstemp and mkdtemp functions. + * configure: Regenerate. + * config.in (HAVE_MKDTEMP): New potential define. + (MAKE_MKSTEMP): Likewise. + * bucomm.c (make_tempname): Use mkstemp if it is available. + (make_tempdir): New function: Create a temporary directory using + mkdtemp, if it is available. + * bucomm.h (make_tempdir): New prototype. + * objcopy.c (copy_archive): Use make_tempdir if it is available. + (strip_main): Produce an warning message if a temporary file could + not be created. + (copy_main): Likewise. + * ar.c (write_archive): Likewise. + 2006-10-10 Andreas Schwab <schwab@suse.de> * dwarf.c (display_debug_loc): Don't dereference loc_offsets when |