X-Git-Url: https://erislabs.net/gitweb/?a=blobdiff_plain;f=modules%2Ffnmatch;h=bf7158fb9bc688ca4d94610625e7919606f53da0;hb=a6dbbbfc876c64514a51fff76c99e002c8ed7580;hp=5abc7b3907ba0532c8155d6de54d9b2f92903e28;hpb=44fa0d78ad36205f393cd4aa4813d1e7a403d6dc;p=gnulib.git diff --git a/modules/fnmatch b/modules/fnmatch index 5abc7b390..bf7158fb9 100644 --- a/modules/fnmatch +++ b/modules/fnmatch @@ -1,30 +1,39 @@ 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 -wctype +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) # We need the following in order to create when the system # doesn't have one that supports the required API. -fnmatch.h: fnmatch_.h +fnmatch.h: fnmatch.in.h $(ARG_NONNULL_H) + $(AM_V_GEN)rm -f $@-t $@ && \ { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \ - cat $(srcdir)/fnmatch_.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 @@ -32,7 +41,7 @@ Include: License: -LGPL +LGPLv2+ Maintainer: all, glibc