62 lines
868 B
Plaintext
62 lines
868 B
Plaintext
Description:
|
|
DFA matcher that was initially used by GNU grep, gawk and diffutils
|
|
|
|
Files:
|
|
lib/dfa.c
|
|
lib/dfa.h
|
|
lib/localeinfo.c
|
|
lib/localeinfo.h
|
|
|
|
Depends-on:
|
|
assert
|
|
c32isprint
|
|
c32isspace
|
|
c32rtomb
|
|
c32tob
|
|
c32tolower
|
|
c32toupper
|
|
c99
|
|
ctype
|
|
flexmember
|
|
idx
|
|
locale
|
|
mbrtoc32-regular
|
|
mbszero
|
|
regex
|
|
stdbool
|
|
stddef
|
|
stdint
|
|
stdio
|
|
stdlib
|
|
string
|
|
uchar
|
|
# The lonesome_lower array requires ISO C 23 semantics for char32_t.
|
|
# But uchar-c23 has a global effect, therefore leave it to each package
|
|
# to enable it.
|
|
#uchar-c23
|
|
verify
|
|
wchar
|
|
xalloc
|
|
xalloc-die
|
|
|
|
configure.ac:
|
|
AC_REQUIRE([AC_C_INLINE])
|
|
|
|
Makefile.am:
|
|
lib_SOURCES += dfa.c localeinfo.c
|
|
|
|
Include:
|
|
"dfa.h"
|
|
"localeinfo.h"
|
|
|
|
Link:
|
|
$(LTLIBUNISTRING) when linking with libtool, $(LIBUNISTRING) otherwise
|
|
$(MBRTOWC_LIB)
|
|
$(LTLIBC32CONV) when linking with libtool, $(LIBC32CONV) otherwise
|
|
|
|
License:
|
|
GPL
|
|
|
|
Maintainer:
|
|
Jim Meyering, Paul Eggert
|