From 6c934891712c08121c0196d82c47bad1c7980499 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sat, 4 Jul 1998 00:05:23 +0000 Subject: [PATCH] . --- m4/regex.m4 | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 m4/regex.m4 diff --git a/m4/regex.m4 b/m4/regex.m4 new file mode 100644 index 0000000..2a7bfe0 --- /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" + ] +) -- 2.7.4