diff options
author | Roger Sayle <roger@eyesopen.com> | 2003-02-27 15:34:19 +0000 |
---|---|---|
committer | Roger Sayle <sayle@gcc.gnu.org> | 2003-02-27 15:34:19 +0000 |
commit | 3eae722decb9a03f6267d6e421bb69c6367c4001 (patch) | |
tree | 080a30ce9b5d8880b0d443e55b5d385122730e57 /gcc/config.gcc | |
parent | 601d71bc14e3d4eeb79b7c703939df3d270c4fa1 (diff) | |
download | gcc-3eae722decb9a03f6267d6e421bb69c6367c4001.zip gcc-3eae722decb9a03f6267d6e421bb69c6367c4001.tar.gz gcc-3eae722decb9a03f6267d6e421bb69c6367c4001.tar.bz2 |
cygwin.h: Don't include any other files directly.
* config/i386/cygwin.h: Don't include any other files directly.
* config/i386/mingw32.h: Don't include cygwin.h directly.
* config.gcc (cygwin, mingw32, uwin): Instead make these files
explicit in the tm_files variable.
From-SVN: r63508
Diffstat (limited to 'gcc/config.gcc')
-rw-r--r-- | gcc/config.gcc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/config.gcc b/gcc/config.gcc index 71ee45d..baa22d0 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -1312,7 +1312,7 @@ i[34567]86-*-pe | i[34567]86-*-cygwin*) xm_defines=POSIX xm_file=i386/xm-cygwin.h tmake_file=i386/t-cygwin - tm_file=i386/cygwin.h + tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h dbxcoff.h i386/cygwin.h" extra_objs=winnt.o if test x$enable_threads = xyes; then thread_file='win32' @@ -1320,7 +1320,7 @@ i[34567]86-*-pe | i[34567]86-*-cygwin*) exeext=.exe ;; i[34567]86-*-mingw32*) - tm_file=i386/mingw32.h + tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h dbxcoff.h i386/cygwin.h i386/mingw32.h" xm_defines=POSIX xm_file=i386/xm-mingw32.h tmake_file="i386/t-cygwin i386/t-mingw32" @@ -1338,7 +1338,7 @@ i[34567]86-*-mingw32*) esac ;; i[34567]86-*-uwin*) - tm_file="i386/cygwin.h i386/uwin.h" + tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h dbxcoff.h i386/cygwin.h i386/uwin.h" tmake_file="i386/t-cygwin i386/t-uwin" extra_objs=winnt.o if test x$enable_threads = xyes; then |