X-Git-Url: https://erislabs.net/gitweb/?a=blobdiff_plain;f=modules%2Ffnmatch;h=bf7158fb9bc688ca4d94610625e7919606f53da0;hb=a6dbbbfc876c64514a51fff76c99e002c8ed7580;hp=477cf33b45a981d2f872beffdd2e40a3f8f178ab;hpb=f0081f71b5ac063b48f242d6f770d7826f2ec196;p=gnulib.git diff --git a/modules/fnmatch b/modules/fnmatch index 477cf33b4..bf7158fb9 100644 --- a/modules/fnmatch +++ b/modules/fnmatch @@ -1,5 +1,5 @@ Description: -GNU implementation of the fnmatch() function. +fnmatch() function: wildcard matching. Files: lib/fnmatch.in.h @@ -9,24 +9,31 @@ m4/mbstate_t.m4 m4/fnmatch.m4 Depends-on: +arg-nonnull extensions alloca stdbool wchar -wctype +wctype-h +memchr +memcmp +mbsrtowcs +mbsinit configure.ac: -# No macro. You should also use one of fnmatch-posix or fnmatch-gnu. +gl_FUNC_FNMATCH_POSIX Makefile.am: BUILT_SOURCES += $(FNMATCH_H) # We need the following in order to create when the system # doesn't have one that supports the required API. -fnmatch.h: fnmatch.in.h +fnmatch.h: fnmatch.in.h $(ARG_NONNULL_H) + $(AM_V_GEN)rm -f $@-t $@ && \ { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \ - cat $(srcdir)/fnmatch.in.h; \ - } > $@-t + sed -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \ + < $(srcdir)/fnmatch.in.h; \ + } > $@-t && \ mv -f $@-t $@ MOSTLYCLEANFILES += fnmatch.h fnmatch.h-t