diff options
author | Zack Weinberg <zack@wolery.cumb.org> | 2000-02-27 00:10:15 +0000 |
---|---|---|
committer | Zack Weinberg <zack@gcc.gnu.org> | 2000-02-27 00:10:15 +0000 |
commit | f95e46b994d6ec4c98c05401af6c33889ce23fb0 (patch) | |
tree | 63b2be32f6dd38bcf17d841c48e044c5c31d50cb /gcc/cp | |
parent | 42a2c30e1b583239136fab633057bb03518c26b3 (diff) | |
download | gcc-f95e46b994d6ec4c98c05401af6c33889ce23fb0.zip gcc-f95e46b994d6ec4c98c05401af6c33889ce23fb0.tar.gz gcc-f95e46b994d6ec4c98c05401af6c33889ce23fb0.tar.bz2 |
Makefile.in (STMP_FIXINC): New toggle.
* Makefile.in (STMP_FIXINC): New toggle.
(LIBGCC2_DEPS): Delete all references.
(stmp-headers): Delete target. All references either deleted
or changed to stmp-int-headers.
(all.cross): Don't depend on stmp-headers or STMP_FIXPROTO.
(LIBCPP_OBJS): Take out cppalloc.o.
(cppalloc.o): Delete target.
(stmp-int-hdrs): Depend on $(STMP_FIXINC).
(gen-protos, fix-header): Link with libiberty.a.
* build-make: Don't change FIXINCLUDES. Override STMP_FIXINC
to empty.
* cp/Make-lang.in: Delete refs to LIBGCC2_DEPS.
* configure.in: Remove refs to strerror.
* acconfig.h: Take out NEED_DECLARATION_STRERROR.
* system.h: Take out strerror stanza.
* cpperror.c (my_strerror): Delete function.
(cpp_error_from_errno, cpp_notice_from_errno): Use xstrerror.
* cppmain.c (main): Call xmalloc_set_program_name first thing.
* cppalloc.c: Delete file.
* gen-protos.c: Don't provide xrealloc.
* fixinc/fixincl.c, fixinc/fixlib.c, fixinc/procopen.c: Use
xstrerror throughout.
From-SVN: r32200
Diffstat (limited to 'gcc/cp')
-rw-r--r-- | gcc/cp/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/cp/Make-lang.in | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index d482875..7cbf336 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,7 @@ +2000-02-26 Zack Weinberg <zack@wolery.cumb.org> + + * Make-lang.in: Delete refs to LIBGCC2_DEPS. + Fri Feb 25 14:52:33 2000 Jim Wilson <wilson@cygnus.com> * optimize.c (expand_call_inline): Emit the return label before diff --git a/gcc/cp/Make-lang.in b/gcc/cp/Make-lang.in index 3c6c243..619f2c51 100644 --- a/gcc/cp/Make-lang.in +++ b/gcc/cp/Make-lang.in @@ -187,7 +187,7 @@ cplib2.txt: $(CXX_LIB2SRCS) $(CXX_EXTRA_HEADERS) cplib2.ready # Don't try to do write if `.' is not writable; # in that case, we're installing from someone else's directory. # But go ahead and fail if that directory hasn't been properly built. -cplib2.ready: $(GCC_PASSES) $(LIBGCC2_DEPS) stmp-int-hdrs +cplib2.ready: $(GCC_PASSES) stmp-int-hdrs $(STMP_FIXPROTO) @if [ -r cplib2.txt -a -w . ]; then \ case " $(LANGUAGES) " in \ *" "[cC]"++ "*) \ |