summaryrefslogtreecommitdiff
path: root/m4/d-type.m4
diff options
context:
space:
mode:
authorJim Meyering <meyering@redhat.com>2007-11-01 18:34:38 +0100
committerJim Meyering <meyering@redhat.com>2007-11-08 10:28:27 +0100
commit5fe5923a00c8e66b8cae09da36b9b4e558cb47d8 (patch)
treec916caa23264e5b56793c2922edb2d70483cb543 /m4/d-type.m4
parentbf5ebbca03613397b66521e98dd4ce28741c4689 (diff)
downloadgnulib-5fe5923a00c8e66b8cae09da36b9b4e558cb47d8.tar.gz
Change cache variable name prefix "jm_" to "gl_" everywhere.
* m4/d-type.m4, m4/jm-winsz1.m4, m4/jm-winsz2.m4, m4/link-follow.m4: * m4/putenv.m4, m4/strtoimax.m4, m4/strtoumax.m4, m4/unlink-busy.m4: * m4/uptime.m4: s/gl_/jm_/
Diffstat (limited to 'm4/d-type.m4')
-rw-r--r--m4/d-type.m48
1 files changed, 4 insertions, 4 deletions
diff --git a/m4/d-type.m4 b/m4/d-type.m4
index 7675dd2b0e..92f9b15844 100644
--- a/m4/d-type.m4
+++ b/m4/d-type.m4
@@ -14,7 +14,7 @@ dnl
AC_DEFUN([gl_CHECK_TYPE_STRUCT_DIRENT_D_TYPE],
[AC_CACHE_CHECK([for d_type member in directory struct],
- jm_cv_struct_dirent_d_type,
+ gl_cv_struct_dirent_d_type,
[AC_TRY_LINK(dnl
[
#include <sys/types.h>
@@ -22,11 +22,11 @@ AC_DEFUN([gl_CHECK_TYPE_STRUCT_DIRENT_D_TYPE],
],
[struct dirent dp; dp.d_type = 0;],
- jm_cv_struct_dirent_d_type=yes,
- jm_cv_struct_dirent_d_type=no)
+ gl_cv_struct_dirent_d_type=yes,
+ gl_cv_struct_dirent_d_type=no)
]
)
- if test $jm_cv_struct_dirent_d_type = yes; then
+ if test $gl_cv_struct_dirent_d_type = yes; then
AC_DEFINE(HAVE_STRUCT_DIRENT_D_TYPE, 1,
[Define if there is a member named d_type in the struct describing
directory headers.])