add warning
[gnulib.git] / m4 / regex.m4
1 #serial 1
2
3 dnl From grep.
4
5 AC_DEFUN(jm_WITH_REGEX,
6   [
7     AC_ARG_WITH(included-regex,
8             [  --without-included-regex don't compile regex (use with caution)],
9                 jm_with_regex=$withval,
10                 jm_with_regex=yes)
11     if test "$jm_with_regex" = yes; then
12       LIBOBJS="$LIBOBJS regex.o"
13     fi
14   ]
15 )