Mercurial > hg > octave-nkf > gnulib-hg
annotate modules/fnmatch @ 7888:b6376840b47b
* modules/fnmatch (Depends-on): Depend on wchar.
* lib/fnmatch.c (WIDE_CHAR_SUPPORT): Assume <wchar.h>.
* m4/fnmatch.m4: Likewise.
* modules/mbchar (Makefile.am): Assume <wchar.h>.
* m4/mbchar.m4: Likewise.
* modules/mbswidth (Depends-on): Depend on wchar.
* lib/mbswidth.c: Assume <wchar.h>.
* m4/mbswidth.m4: Likewise.
* modules/quotearg (Depends-on): Depend on wchar.
* lib/quotearg.c: Assume <wchar.h>.
* m4/quotearg.m4: Likewise.
* modules/regex (Depends-on): Depend on wchar.
* lib/regex_internal.h: Assume <wchar.h>.
* m4/regex.m4: Likewise.
* modules/stdint (Depends-on): Depend on wchar.
* lib/stdint_.h [!defined WCHAR_MIN]: Assume <wchar.h>.
* m4/stdint.m4: Likewise.
* tests/test-stdint.c [HAVE_WINT_T]: Likewise.
* modules/strftime (Depends-on): Depend on wchar.
* lib/strftime.c (DO_MULTIBYTE): Assume <wchar.h>.
* modules/strtol (Depends-on): Depend on wchar.
* lib/strtol.c: Assume <wchar.h>.
* modules/wcwidth (Depends-on): Depend on wchar.
* lib/wcwidth.h: Assume <wchar.h>.
* m4/wcwidth.m4: Likewise.
author | Eric Blake <ebb9@byu.net> |
---|---|
date | Tue, 16 Jan 2007 16:31:23 +0000 |
parents | 9d60f39f35c1 |
children | 404dc8725caf |
rev | line source |
---|---|
4110 | 1 Description: |
4172 | 2 GNU fnmatch() implementation. |
4110 | 3 |
4 Files: | |
5 lib/fnmatch_.h | |
6 lib/fnmatch.c | |
7 lib/fnmatch_loop.c | |
8 m4/mbstate_t.m4 | |
9 m4/fnmatch.m4 | |
10 | |
11 Depends-on: | |
12 alloca | |
5820
aec0a1f23054
(Depends-on): Add stdbool.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5251
diff
changeset
|
13 stdbool |
7888
b6376840b47b
* modules/fnmatch (Depends-on): Depend on wchar.
Eric Blake <ebb9@byu.net>
parents:
7733
diff
changeset
|
14 wchar |
7733
9d60f39f35c1
* MODULES.html.sh: New module wctype.
Paul Eggert <eggert@cs.ucla.edu>
parents:
7497
diff
changeset
|
15 wctype |
4110 | 16 |
17 configure.ac: | |
18 # No macro. You should also use one of fnmatch-posix or fnmatch-gnu. | |
19 | |
20 Makefile.am: | |
4578 | 21 BUILT_SOURCES += $(FNMATCH_H) |
4384
4bf5f9b5190a
Make .h file creation more reliable.
Bruno Haible <bruno@clisp.org>
parents:
4197
diff
changeset
|
22 |
6001
322a0918d54a
* modules/alloca-opt (Makefile.am): Remove explicit dependency on
Paul Eggert <eggert@cs.ucla.edu>
parents:
5820
diff
changeset
|
23 # We need the following in order to create <fnmatch.h> when the system |
4384
4bf5f9b5190a
Make .h file creation more reliable.
Bruno Haible <bruno@clisp.org>
parents:
4197
diff
changeset
|
24 # doesn't have one that supports the required API. |
4bf5f9b5190a
Make .h file creation more reliable.
Bruno Haible <bruno@clisp.org>
parents:
4197
diff
changeset
|
25 fnmatch.h: fnmatch_.h |
7421
8bace4b08db5
Mark generated files as "DO NOT EDIT".
Bruno Haible <bruno@clisp.org>
parents:
7274
diff
changeset
|
26 { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \ |
8bace4b08db5
Mark generated files as "DO NOT EDIT".
Bruno Haible <bruno@clisp.org>
parents:
7274
diff
changeset
|
27 cat $(srcdir)/fnmatch_.h; \ |
8bace4b08db5
Mark generated files as "DO NOT EDIT".
Bruno Haible <bruno@clisp.org>
parents:
7274
diff
changeset
|
28 } > $@-t |
7274
9ff9e0f3d681
Don't make generated files read-only. That would bother too many
Jim Meyering <jim@meyering.net>
parents:
7268
diff
changeset
|
29 mv -f $@-t $@ |
4384
4bf5f9b5190a
Make .h file creation more reliable.
Bruno Haible <bruno@clisp.org>
parents:
4197
diff
changeset
|
30 MOSTLYCLEANFILES += fnmatch.h fnmatch.h-t |
4110 | 31 |
32 Include: | |
4197 | 33 <fnmatch.h> |
4110 | 34 |
5251
42b53a22aee5
Add a license tag to every module.
Bruno Haible <bruno@clisp.org>
parents:
4578
diff
changeset
|
35 License: |
42b53a22aee5
Add a license tag to every module.
Bruno Haible <bruno@clisp.org>
parents:
4578
diff
changeset
|
36 LGPL |
42b53a22aee5
Add a license tag to every module.
Bruno Haible <bruno@clisp.org>
parents:
4578
diff
changeset
|
37 |
4197 | 38 Maintainer: |
39 all, glibc |