diff options
author | Robert Lipe <robertl@gcc.gnu.org> | 1998-05-03 22:15:49 +0000 |
---|---|---|
committer | Robert Lipe <robertl@gcc.gnu.org> | 1998-05-03 22:15:49 +0000 |
commit | a4cbe801b3af8e25b9009ee002c4c1dea4fe1cce (patch) | |
tree | b02117debb8a3b9168c0826d6f1414c5143158a2 | |
parent | 48a51bf47871c265843dd059411d4b4473f8fd01 (diff) | |
download | gcc-a4cbe801b3af8e25b9009ee002c4c1dea4fe1cce.zip gcc-a4cbe801b3af8e25b9009ee002c4c1dea4fe1cce.tar.gz gcc-a4cbe801b3af8e25b9009ee002c4c1dea4fe1cce.tar.bz2 |
Make UnixWare 7 bootstrap support work with final shipping product.
d
Make UnixWare 7 bootstrap support work with final shipping product.
* configure.in: (i[34567]86-*-sysv5): append, not overwrite, xm_file.
Pick up xm-siglist and xm-alloca.
(xm_defines): Add USG so dbxout will build.
* configure: Regenerate.
From-SVN: r19529
-rw-r--r-- | gcc/configure.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/configure.in b/gcc/configure.in index 67b7fbd..8bae468 100644 --- a/gcc/configure.in +++ b/gcc/configure.in @@ -1013,7 +1013,8 @@ for machine in $build $host $target; do fi ;; i[[34567]]86-*-sysv5*) # Intel x86 on System V Release 5 - xm_file=i386/xm-sysv4.h + xm_file="xm-alloca.h xm-siglist.h ${xm_file}" + xm_defines="USG POSIX" tm_file=i386/sysv4.h if [[ x$stabs = xyes ]] then |