summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2019-12-20 07:29:02 +0100
committerBruno Haible <bruno@clisp.org>2019-12-20 07:29:02 +0100
commit1888ae227e3a3dc3a0af52cb0bb5640eaf04049d (patch)
treeaa06bda59ec355f049d91f0b3dbac73f754f8e0d
parent009b4fbe4a905995c40660550fc95bfa3a86c3c2 (diff)
downloadgnulib-1888ae227e3a3dc3a0af52cb0bb5640eaf04049d.tar.gz
localename, gettext: Fix host_os value for z/OS.
* m4/intl-thread-locale.m4 (gt_FUNC_USELOCALE): Fix host_os value in cross-configuration code.
-rw-r--r--ChangeLog6
-rw-r--r--m4/intl-thread-locale.m46
2 files changed, 9 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 84662a18ae..48ab97b0d8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2019-12-20 Bruno Haible <bruno@clisp.org>
+
+ localename, gettext: Fix host_os value for z/OS.
+ * m4/intl-thread-locale.m4 (gt_FUNC_USELOCALE): Fix host_os value in
+ cross-configuration code.
+
2019-12-19 Jim Meyering <meyering@fb.com>
nstrftime: avoid a shadowing warning
diff --git a/m4/intl-thread-locale.m4 b/m4/intl-thread-locale.m4
index f74f11646d..7f8817ffef 100644
--- a/m4/intl-thread-locale.m4
+++ b/m4/intl-thread-locale.m4
@@ -1,4 +1,4 @@
-# intl-thread-locale.m4 serial 6
+# intl-thread-locale.m4 serial 7
dnl Copyright (C) 2015-2019 Free Software Foundation, Inc.
dnl This file is free software; the Free Software Foundation
dnl gives unlimited permission to copy and/or distribute it,
@@ -171,8 +171,8 @@ int main ()
[gt_cv_func_uselocale_works=no],
[# Guess no on AIX and z/OS, yes otherwise.
case "$host_os" in
- aix* | mvs*) gt_cv_func_uselocale_works="guessing no" ;;
- *) gt_cv_func_uselocale_works="guessing yes" ;;
+ aix* | openedition*) gt_cv_func_uselocale_works="guessing no" ;;
+ *) gt_cv_func_uselocale_works="guessing yes" ;;
esac
])
])