diff options
author | obrien <obrien@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-06-06 01:54:45 +0000 |
---|---|---|
committer | obrien <obrien@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-06-06 01:54:45 +0000 |
commit | 4490d2f1bca8aabc8c13a2dbbcd5f07ec0c4999b (patch) | |
tree | a482f5fe1c437aac5f6c9a78c9e0ce4e15b76305 | |
parent | a3eef8655ec7fb776ab66f283b26e3e2d2dbd402 (diff) | |
download | gcc-4490d2f1bca8aabc8c13a2dbbcd5f07ec0c4999b.tar.gz |
2001-06-05 David O'Brien <obrien@FreeBSD.org>
* config.gcc, config/i386/bsd386.h: Do not directly include
i386/386bsd.h. Instead do it via tm_file.
Approved by: Richard Henderson <rth@redhat.com>
Message-ID: <20010604154739.F25044@redhat.com>
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@42925 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config.gcc | 2 | ||||
-rw-r--r-- | gcc/config/i386/bsd386.h | 2 |
3 files changed, 6 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index ad9c7deaf7f..5c342bdd316 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,10 @@ 2001-06-05 David O'Brien <obrien@FreeBSD.org> + * config.gcc, config/i386/bsd386.h: Do not directly include + i386/386bsd.h. Instead do it via tm_file. + +2001-06-05 David O'Brien <obrien@FreeBSD.org> + * elfos.h (USING_ELFOS_H): Identify the use of elfos.h in the same way svr4.h does. diff --git a/gcc/config.gcc b/gcc/config.gcc index 69764552ab8..600a693d857 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -1039,7 +1039,7 @@ i[34567]86-*-beoself* | i[34567]86-*-beos*) extra_parts='crtbegin.o crtend.o' ;; i[34567]86-*-bsdi* | i[34567]86-*-bsd386*) - tm_file=i386/bsd386.h + tm_file="i386/386bsd.h i386/bsd386.h" # tmake_file=t-libc-ok ;; i[34567]86-*-bsd*) diff --git a/gcc/config/i386/bsd386.h b/gcc/config/i386/bsd386.h index caef05c05d5..8e0a6a1dc47 100644 --- a/gcc/config/i386/bsd386.h +++ b/gcc/config/i386/bsd386.h @@ -1,8 +1,6 @@ /* Configuration for an i386 running BSDI's BSD/OS (formerly known as BSD/386) as the target machine. */ -#include "i386/386bsd.h" - /* We exist mostly to add -Dbsdi and such to the predefines. */ #undef CPP_PREDEFINES |