diff options
author | Thomas Schwinge <thomas@codesourcery.com> | 2012-05-29 21:28:57 +0200 |
---|---|---|
committer | Thomas Schwinge <tschwinge@gcc.gnu.org> | 2012-05-29 21:28:57 +0200 |
commit | 678abdd924dc88e2c202c9059fe1b502d876cd1b (patch) | |
tree | f723e93b2e50be366acaffeb6abd8ac0d9060ceb /fixincludes/configure | |
parent | 3f417959fd146f61f0b38968d73dab28f8bce0a3 (diff) | |
download | gcc-678abdd924dc88e2c202c9059fe1b502d876cd1b.zip gcc-678abdd924dc88e2c202c9059fe1b502d876cd1b.tar.gz gcc-678abdd924dc88e2c202c9059fe1b502d876cd1b.tar.bz2 |
configure.ac: Use GCC_AC_FUNC_MMAP_BLACKLIST instead of gcc_AC_FUNC_MMAP_BLACKLIST.
fixincludes/
* configure.ac: Use GCC_AC_FUNC_MMAP_BLACKLIST instead of
gcc_AC_FUNC_MMAP_BLACKLIST.
* Makefile.in (ACLOCAL_AMFLAGS): Don't include ../gcc.
* aclocal.m4: Regenerate.
* configure: Regenerate.
From-SVN: r187984
Diffstat (limited to 'fixincludes/configure')
-rwxr-xr-x | fixincludes/configure | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fixincludes/configure b/fixincludes/configure index ea889b8..4836cd8 100755 --- a/fixincludes/configure +++ b/fixincludes/configure @@ -5222,7 +5222,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* | ultrix*) + *vms* | ultrix*) gcc_cv_func_mmap_file=no ;; *) gcc_cv_func_mmap_file=yes;; @@ -5246,7 +5246,7 @@ else # Systems known to be in this category are Windows (all variants), # VMS, and Darwin. case "$host_os" in - vms* | cygwin* | pe | mingw* | darwin* | ultrix* | hpux10* | hpux11.00) + *vms* | cygwin* | pe | mingw* | darwin* | ultrix* | hpux10* | hpux11.00) gcc_cv_func_mmap_dev_zero=no ;; *) gcc_cv_func_mmap_dev_zero=yes;; @@ -5303,7 +5303,7 @@ else # above for use of /dev/zero. # Systems known to be in this category are Windows, VMS, and SCO Unix. case "$host_os" in - vms* | cygwin* | pe | mingw* | sco* | udk* ) + *vms* | cygwin* | pe | mingw* | sco* | udk* ) gcc_cv_func_mmap_anon=no ;; *) gcc_cv_func_mmap_anon=yes;; |