summaryrefslogtreecommitdiff
path: root/m4/ax_decl_wchar_max.m4
diff options
context:
space:
mode:
authorReuben Thomas <rrt@sc3d.org>2009-08-06 17:10:52 +0100
committerReuben Thomas <rrt@sc3d.org>2009-08-06 17:10:52 +0100
commita332f3403142bb10f5d9c7c34ce28dac912b6e95 (patch)
tree13a4f5a2fd9c0009cb1ab520b966f74ca1f54872 /m4/ax_decl_wchar_max.m4
parent6b453698b5fff22ca6b4a3a3a4be8bed1d631c80 (diff)
downloadautoconf-archive-a332f3403142bb10f5d9c7c34ce28dac912b6e95.tar.gz
Rename more occurrences of vl_* to ax_*.
Diffstat (limited to 'm4/ax_decl_wchar_max.m4')
-rw-r--r--m4/ax_decl_wchar_max.m48
1 files changed, 4 insertions, 4 deletions
diff --git a/m4/ax_decl_wchar_max.m4 b/m4/ax_decl_wchar_max.m4
index 9aad3c8..7fb6f76 100644
--- a/m4/ax_decl_wchar_max.m4
+++ b/m4/ax_decl_wchar_max.m4
@@ -1,5 +1,5 @@
# ===========================================================================
-# http://www.nongnu.org/autoconf-archive/vl_decl_wchar_max.html
+# http://www.nongnu.org/autoconf-archive/ax_decl_wchar_max.html
# ===========================================================================
#
# SYNOPSIS
@@ -22,13 +22,13 @@
# and this notice are preserved.
AC_DEFUN([AX_DECL_WCHAR_MAX], [
- AC_CACHE_CHECK([whether WCHAR_MAX is defined], vl_cv_decl_wchar_max, [
+ AC_CACHE_CHECK([whether WCHAR_MAX is defined], ax_cv_decl_wchar_max, [
AC_TRY_COMPILE([
#ifdef HAVE_WCHAR_H
#include <wchar.h>
#endif
-],[WCHAR_MAX],[vl_cv_decl_wchar_max="yes"],[vl_cv_decl_wchar_max="no"])])
- if test $vl_cv_decl_wchar_max = "no"; then
+],[WCHAR_MAX],[ax_cv_decl_wchar_max="yes"],[ax_cv_decl_wchar_max="no"])])
+ if test $ax_cv_decl_wchar_max = "no"; then
AX_CHECK_SIGN([wchar_t],
[ wc_signed="yes"
AC_DEFINE(WCHAR_T_SIGNED, 1, [Define if wchar_t is signed]) ],