.
[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],
9                 USE_REGEX=$withval,
10                 USE_REGEX=yes)
11
12     test "$USE_REGEX" = "yes" && LIBOBJS="$LIBOBJS regex.o"
13   ]
14 )