regexec() is needed for glibc 2.2.3
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2461
35c25a1d-7b9e-4130-9fde-
d3aeb78583b8
well as curses, consolidate the warning and error messages
dealing with UTF-8 support as much as possible, and add a few
minor consistency fixes.
+ - Mention explicitly that the check for the broken regexec() is
+ needed for glibc 2.2.3. (DLR)
- nanorc.sample:
- Fix the description for the whitespace option to mention that
only single-column characters are allowed. (DLR)
AC_HEADER_STDC
AC_CHECK_HEADERS(fcntl.h getopt.h libintl.h limits.h regex.h termios.h wchar.h wctype.h)
AC_CHECK_HEADER(regex.h,
- AC_MSG_CHECKING([for broken regexec])
+ AC_MSG_CHECKING([for broken regexec from glibc 2.2.3])
AC_TRY_RUN([
#include <sys/types.h>
#include <regex.h>
}],
AC_MSG_RESULT(no),
AC_MSG_RESULT(yes)
- AC_DEFINE(BROKEN_REGEXEC, 1, [Define this if your regexec() function segfaults when passed an empty string under certain conditions.]),
+ AC_DEFINE(BROKEN_REGEXEC, 1, [Define this if your regexec() function segfaults when passed an empty string under certain conditions, as the one from glibc 2.2.3 does.]),
AC_MSG_RESULT([cross-compiling; assuming no])))
dnl Checks for options.