2a7bfe014332561c87ca2257b97cf0700edf3f4a
[pspp] / 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 )