X-Git-Url: https://erislabs.net/gitweb/?a=blobdiff_plain;f=modules%2Ffnmatch;h=bf7158fb9bc688ca4d94610625e7919606f53da0;hb=a6dbbbfc876c64514a51fff76c99e002c8ed7580;hp=18f278c7d0bc30aa1b6bb0adafaa7ecc11f30e50;hpb=9029f098c318e509ee94912bdba51d58c79dd102;p=gnulib.git diff --git a/modules/fnmatch b/modules/fnmatch index 18f278c7d..bf7158fb9 100644 --- a/modules/fnmatch +++ b/modules/fnmatch @@ -1,36 +1,47 @@ Description: -GNU fnmatch() implementation. +fnmatch() function: wildcard matching. Files: -lib/fnmatch_.h +lib/fnmatch.in.h lib/fnmatch.c lib/fnmatch_loop.c m4/mbstate_t.m4 m4/fnmatch.m4 Depends-on: +arg-nonnull +extensions alloca stdbool +wchar +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) -EXTRA_DIST += fnmatch_.h fnmatch_loop.c # We need the following in order to create when the system # doesn't have one that supports the required API. -fnmatch.h: fnmatch_.h - cp $(srcdir)/fnmatch_.h $@-t - mv $@-t $@ +fnmatch.h: fnmatch.in.h $(ARG_NONNULL_H) + $(AM_V_GEN)rm -f $@-t $@ && \ + { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \ + 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 Include: License: -LGPL +LGPLv2+ Maintainer: all, glibc