summaryrefslogtreecommitdiff
path: root/m4/jm-winsz2.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/jm-winsz2.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/jm-winsz2.m4')
-rw-r--r--m4/jm-winsz2.m410
1 files changed, 5 insertions, 5 deletions
diff --git a/m4/jm-winsz2.m4 b/m4/jm-winsz2.m4
index 66c5040925..ee710a552c 100644
--- a/m4/jm-winsz2.m4
+++ b/m4/jm-winsz2.m4
@@ -8,20 +8,20 @@
AC_DEFUN([gl_HEADER_TIOCGWINSZ_NEEDS_SYS_IOCTL],
[AC_REQUIRE([gl_HEADER_TIOCGWINSZ_IN_TERMIOS_H])
AC_CACHE_CHECK([whether use of TIOCGWINSZ requires sys/ioctl.h],
- jm_cv_sys_tiocgwinsz_needs_sys_ioctl_h,
- [jm_cv_sys_tiocgwinsz_needs_sys_ioctl_h=no
+ gl_cv_sys_tiocgwinsz_needs_sys_ioctl_h,
+ [gl_cv_sys_tiocgwinsz_needs_sys_ioctl_h=no
- if test $jm_cv_sys_tiocgwinsz_needs_termios_h = no; then
+ if test $gl_cv_sys_tiocgwinsz_needs_termios_h = no; then
AC_EGREP_CPP([yes],
[#include <sys/types.h>
# include <sys/ioctl.h>
# ifdef TIOCGWINSZ
yes
# endif
- ], jm_cv_sys_tiocgwinsz_needs_sys_ioctl_h=yes)
+ ], gl_cv_sys_tiocgwinsz_needs_sys_ioctl_h=yes)
fi
])
- if test $jm_cv_sys_tiocgwinsz_needs_sys_ioctl_h = yes; then
+ if test $gl_cv_sys_tiocgwinsz_needs_sys_ioctl_h = yes; then
AC_DEFINE(GWINSZ_IN_SYS_IOCTL, 1,
[Define if your system defines TIOCGWINSZ in sys/ioctl.h.])
fi