summaryrefslogtreecommitdiff
path: root/m4/host-os.m4
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2004-04-20 09:21:05 +0000
committerJim Meyering <jim@meyering.net>2004-04-20 09:21:05 +0000
commit32227588fc61addfefec0dc5545e1e1b16d29d91 (patch)
treed5c137d29e5c18918109d134fa16475a4ac6239d /m4/host-os.m4
parentae75db7d884c5b1e7686c01fb5933e67d2d62025 (diff)
downloadcoreutils-32227588fc61addfefec0dc5545e1e1b16d29d91.tar.xz
Change UTILS_ to gl_ in AC_DEFINE'd names.
Change utils_- and jm_-prefixed variables, too. * host-os.m4 (gl_HOST_OS): Renamed from UTILS_HOST_OS.
Diffstat (limited to 'm4/host-os.m4')
-rw-r--r--m4/host-os.m410
1 files changed, 5 insertions, 5 deletions
diff --git a/m4/host-os.m4 b/m4/host-os.m4
index d233ebc1b..52905f4d9 100644
--- a/m4/host-os.m4
+++ b/m4/host-os.m4
@@ -1,12 +1,12 @@
-#serial 3
+#serial 4
dnl From Paul Eggert.
# Define HOST_OPERATING_SYSTEM to a name for the host operating system.
-AC_DEFUN([UTILS_HOST_OS],
+AC_DEFUN([gl_HOST_OS],
[
AC_CACHE_CHECK([host operating system],
- utils_cv_host_operating_system,
+ gl_cv_host_operating_system,
[[case $host_os in
@@ -67,8 +67,8 @@ AC_DEFUN([UTILS_HOST_OS],
*)
os=$host_os;;
esac
- utils_cv_host_operating_system=$os]])
+ gl_cv_host_operating_system=$os]])
AC_DEFINE_UNQUOTED(HOST_OPERATING_SYSTEM,
- "$utils_cv_host_operating_system",
+ "$gl_cv_host_operating_system",
[The host operating system.])
])