diff options
author | Ian Lance Taylor <ian@airs.com> | 2009-03-17 22:25:30 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 2009-03-17 22:25:30 +0000 |
commit | 9201d894910e26e87fbfc0af24d9460797b1890f (patch) | |
tree | 777029282e401e722d33f5fc0528fc02c267979f /gold/Makefile.in | |
parent | ef4ab7a8185e12b2a2e76982a9fe82c8d0f10a38 (diff) | |
download | gdb-9201d894910e26e87fbfc0af24d9460797b1890f.zip gdb-9201d894910e26e87fbfc0af24d9460797b1890f.tar.gz gdb-9201d894910e26e87fbfc0af24d9460797b1890f.tar.bz2 |
* configure.ac: Check for chsize and posix_fallocate. Replace
ftruncate.
* ftruncate.c: New file, from gnulib.
* output.cc (posix_fallocate): Define dummy version if not
HAVE_POSIX_FALLOCATE.
(Output_file::map): Call posix_fallocate rather than lseek and
write.
* gold.h (ftruncate): Declare if not HAVE_FTRUNCATE.
* configure, Makefile.in, config.in: Rebuild.
Diffstat (limited to 'gold/Makefile.in')
-rw-r--r-- | gold/Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gold/Makefile.in b/gold/Makefile.in index 20ad5b4..cb49fef 100644 --- a/gold/Makefile.in +++ b/gold/Makefile.in @@ -50,7 +50,7 @@ DIST_COMMON = README $(am__configure_deps) $(srcdir)/../config.guess \ $(srcdir)/../mkinstalldirs $(srcdir)/Makefile.am \ $(srcdir)/Makefile.in $(srcdir)/config.in \ $(top_srcdir)/configure $(top_srcdir)/po/Make-in ChangeLog \ - NEWS TODO pread.c yyscript.c yyscript.h + NEWS TODO ftruncate.c pread.c yyscript.c yyscript.h subdir = . ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/../config/depstand.m4 \ @@ -532,6 +532,7 @@ mostlyclean-compile: distclean-compile: -rm -f *.tab.c +@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/ftruncate.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/pread.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/archive.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/binary.Po@am__quote@ |