view m4/regex.m4 @ 1403:e22d6722e033

.
author Jim Meyering <jim@meyering.net>
date Sat, 04 Jul 1998 00:05:23 +0000
parents
children a412042058e8
line wrap: on
line source

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