1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-20 18:56:39 +02:00
This commit is contained in:
Jim Meyering
1998-07-04 00:05:23 +00:00
parent 345c323ffd
commit 6c93489171

14
m4/regex.m4 Normal file
View File

@@ -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"
]
)