*** empty log message ***
[findutils.git] / m4 / regex.m4
blobc8194b2147c5dfa3d3cafa8a43fce40edf5f9826
1 #serial 7
3 dnl Initially derived from code in GNU grep.
4 dnl Mostly written by Jim Meyering.
6 dnl Usage: jm_INCLUDED_REGEX([lib/regex.c])
7 dnl
8 AC_DEFUN(jm_INCLUDED_REGEX,
9   [
10     dnl Even packages that don't use regex.c can use this macro.
11     dnl Of course, for them it doesn't do anything.
13     # Assume we'll default to using the included regex.c.
14     ac_use_included_regex=yes
16     # However, if the system regex support is good enough that it passes the
17     # the following run test, then default to *not* using the included regex.c.
18     # If cross compiling, assume the test would fail and use the included
19     # regex.c.  The first failing regular expression is from `Spencer ere
20     # test #75' in grep-2.3.
21     AC_CACHE_CHECK([for working re_compile_pattern],
22                    jm_cv_func_working_re_compile_pattern,
23       AC_TRY_RUN(
24 [#include <stdio.h>
25 #include <regex.h>
26           int
27           main ()
28           {
29             static struct re_pattern_buffer regex;
30             const char *s;
31             re_set_syntax (RE_SYNTAX_POSIX_EGREP);
32             /* Add this third left square bracket, [, to balance the
33                three right ones below.  Otherwise autoconf-2.14 chokes.  */
34             s = re_compile_pattern ("a[[:]:]]b\n", 9, &regex);
35             /* This should fail with _Invalid character class name_ error.  */
36             if (!s)
37               exit (1);
39             /* This should succeed, but doesn't for e.g. glibc-2.1.3.  */
40             s = re_compile_pattern ("{1", 2, &regex);
42             exit (s ? 1 : 0);
43           }
44         ],
45                jm_cv_func_working_re_compile_pattern=yes,
46                jm_cv_func_working_re_compile_pattern=no,
47                dnl When crosscompiling, assume it's broken.
48                jm_cv_func_working_re_compile_pattern=no))
49     if test $jm_cv_func_working_re_compile_pattern = yes; then
50       ac_use_included_regex=no
51     fi
53     test -n "$1" || AC_MSG_ERROR([missing argument])
54     syscmd([test -f $1])
55     ifelse(sysval, 0,
56       [
58         AC_ARG_WITH(included-regex,
59         [  --without-included-regex don't compile regex; this is the default on
60                           systems with version 2 of the GNU C library
61                           (use with caution on other system)],
62                     jm_with_regex=$withval,
63                     jm_with_regex=$ac_use_included_regex)
64         if test "$jm_with_regex" = yes; then
65           AC_SUBST(LIBOBJS)
66           LIBOBJS="$LIBOBJS regex.$ac_objext"
67         fi
68       ],
69     )
70   ]