From: Jim Meyering Date: Sat, 4 Jul 1998 00:05:23 +0000 (+0000) Subject: . X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5591b1ab18345b4ec37df47fea367a6845dbb166;p=pspp . --- diff --git a/m4/regex.m4 b/m4/regex.m4 new file mode 100644 index 0000000000..2a7bfe0143 --- /dev/null +++ b/m4/regex.m4 @@ -0,0 +1,14 @@ +#serial 1 + +dnl From grep. + +AC_DEFUN(jm_WITH_REGEX, + [ + AC_ARG_WITH(included-regex, + [ --without-included-regex don't compile regex], + USE_REGEX=$withval, + USE_REGEX=yes) + + test "$USE_REGEX" = "yes" && LIBOBJS="$LIBOBJS regex.o" + ] +)