Source: autoconf-archive
Version: 20111221-1
Severity: minor
Tags: patch upstream
Please see the attached patch.
--
Jakub Wilk
diff --git a/doc/autoconf-archive.info-4 b/doc/autoconf-archive.info-4
--- a/doc/autoconf-archive.info-4
+++ b/doc/autoconf-archive.info-4
@@ -113,7 +113,7 @@
AX_WITH_CURSES
if test "x$ax_cv_ncursesw" != xyes && test "x$ax_cv_ncurses" != xyes; then
- AX_MSG_ERROR([requires either NcursesW or Ncurses library])
+ AC_MSG_ERROR([requires either NcursesW or Ncurses library])
fi
If any Curses library will do (but one must be present and must support
diff --git a/doc/ax_with_curses.texi b/doc/ax_with_curses.texi
--- a/doc/ax_with_curses.texi
+++ b/doc/ax_with_curses.texi
@@ -104,7 +104,7 @@
@smallexample
AX_WITH_CURSES
if test "x$ax_cv_ncursesw" != xyes && test "x$ax_cv_ncurses" != xyes; then
- AX_MSG_ERROR([requires either NcursesW or Ncurses library])
+ AC_MSG_ERROR([requires either NcursesW or Ncurses library])
fi
@end smallexample
diff --git a/m4/ax_with_curses.m4 b/m4/ax_with_curses.m4
--- a/m4/ax_with_curses.m4
+++ b/m4/ax_with_curses.m4
@@ -88,7 +88,7 @@
#
# AX_WITH_CURSES
# if test "x$ax_cv_ncursesw" != xyes && test "x$ax_cv_ncurses" != xyes; then
-# AX_MSG_ERROR([requires either NcursesW or Ncurses library])
+# AC_MSG_ERROR([requires either NcursesW or Ncurses library])
# fi
#
# If any Curses library will do (but one must be present and must support