diff options
author | John David Anglin <dave.anglin@nrc-cnrc.gc.ca> | 2003-11-01 02:34:58 +0000 |
---|---|---|
committer | John David Anglin <danglin@gcc.gnu.org> | 2003-11-01 02:34:58 +0000 |
commit | e31f8eda092b52f32ef920253f92396a51ed0292 (patch) | |
tree | 461b42a2ae2cecf9ee2fc7a4317717db10536b49 | |
parent | 2b256a4627e08672acd155c76373934a55f4f1fc (diff) | |
download | gcc-e31f8eda092b52f32ef920253f92396a51ed0292.zip gcc-e31f8eda092b52f32ef920253f92396a51ed0292.tar.gz gcc-e31f8eda092b52f32ef920253f92396a51ed0292.tar.bz2 |
aclocal.m4: Blacklist ultrix* for mmap file.
* aclocal.m4: Blacklist ultrix* for mmap file.
* configure: Rebuilt.
From-SVN: r73169
-rw-r--r-- | gcc/ChangeLog | 3 | ||||
-rw-r--r-- | gcc/aclocal.m4 | 2 | ||||
-rwxr-xr-x | gcc/configure | 2 |
3 files changed, 5 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 4da2c7d..2dfc201 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,8 @@ 2003-10-31 John David Anglin <dave.anglin@nrc-cnrc.gc.ca> + * aclocal.m4: Blacklist ultrix* for mmap file. + * configure: Rebuilt. + * function.c (assign_parms): Add ATTRIBUTE_UNUSED to variable reg_parm_stack_space. * toplev.c (default_get_pch_validity): Fix warning. diff --git a/gcc/aclocal.m4 b/gcc/aclocal.m4 index ca7fa5c..9829363 100644 --- a/gcc/aclocal.m4 +++ b/gcc/aclocal.m4 @@ -424,7 +424,7 @@ else # read() to the same fd. The only system known to have a problem here # is VMS, where text files have record structure. case "$host_os" in - vms*) + vms* | ultrix*) gcc_cv_func_mmap_file=no ;; *) gcc_cv_func_mmap_file=yes;; diff --git a/gcc/configure b/gcc/configure index 4c193a5..274a14b 100755 --- a/gcc/configure +++ b/gcc/configure @@ -4011,7 +4011,7 @@ else # read() to the same fd. The only system known to have a problem here # is VMS, where text files have record structure. case "$host_os" in - vms*) + vms* | ultrix*) gcc_cv_func_mmap_file=no ;; *) gcc_cv_func_mmap_file=yes;; |