aboutsummaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorTristan Gingold <gingold@adacore.com>2012-04-03 12:07:28 +0000
committerTristan Gingold <gingold@gcc.gnu.org>2012-04-03 12:07:28 +0000
commit2f6935f455d9bb51da4a3038c2f987d78b07fccb (patch)
tree23fa331a7066f783cac20b994cf9360e06d86b2c /config
parent07b1bf209c2fa991491ea9317d8afe225dd44f97 (diff)
downloadgcc-2f6935f455d9bb51da4a3038c2f987d78b07fccb.zip
gcc-2f6935f455d9bb51da4a3038c2f987d78b07fccb.tar.gz
gcc-2f6935f455d9bb51da4a3038c2f987d78b07fccb.tar.bz2
mmap.m4: Use *vms* instead of vms*.
config/ 2012-04-03 Tristan Gingold <gingold@adacore.com> * mmap.m4: Use *vms* instead of vms*. gcc/ 2012-04-03 Tristan Gingold <gingold@adacore.com> * configure.ac: Use GCC_AC_FUNC_MMAP_BLACKLIST instead of gcc_AC_FUNC_MMAP_BLACKLIST. * acinclude.m4 (gcc_AC_FUNC_MMAP_BLACKLIST): Remove. * Makefile.in (aclocal_deps): Add mmap.m4. * configure: Regenerate. * aclocal.m4: Regenerate. libitm/ 2012-04-03 Tristan Gingold <gingold@adacore.com> * configure: Regenerate. From-SVN: r186106
Diffstat (limited to 'config')
-rw-r--r--config/ChangeLog4
-rw-r--r--config/mmap.m46
2 files changed, 7 insertions, 3 deletions
diff --git a/config/ChangeLog b/config/ChangeLog
index ab8916f..c1b15be 100644
--- a/config/ChangeLog
+++ b/config/ChangeLog
@@ -1,3 +1,7 @@
+2012-04-03 Tristan Gingold <gingold@adacore.com>
+
+ * mmap.m4: Use *vms* instead of vms*.
+
2012-04-02 Tristan Gingold <gingold@adacore.com>
* math.m4 (GCC_CHECK_MATH_FUNC): Remove if-present
diff --git a/config/mmap.m4 b/config/mmap.m4
index 39d79af..fba0d9d 100644
--- a/config/mmap.m4
+++ b/config/mmap.m4
@@ -24,7 +24,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;;
@@ -42,7 +42,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;;
@@ -74,7 +74,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;;