Mercurial > hg > octave-kai > gnulib-hg
annotate modules/fnmatch @ 5820:aec0a1f23054
(Depends-on): Add stdbool.
author | Paul Eggert <eggert@cs.ucla.edu> |
---|---|
date | Fri, 06 May 2005 17:22:45 +0000 |
parents | 42b53a22aee5 |
children | 322a0918d54a |
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 |
4110 | 14 |
15 configure.ac: | |
16 # No macro. You should also use one of fnmatch-posix or fnmatch-gnu. | |
17 | |
18 Makefile.am: | |
4578 | 19 BUILT_SOURCES += $(FNMATCH_H) |
4384
4bf5f9b5190a
Make .h file creation more reliable.
Bruno Haible <bruno@clisp.org>
parents:
4197
diff
changeset
|
20 EXTRA_DIST += fnmatch_.h fnmatch_loop.c |
4bf5f9b5190a
Make .h file creation more reliable.
Bruno Haible <bruno@clisp.org>
parents:
4197
diff
changeset
|
21 |
4bf5f9b5190a
Make .h file creation more reliable.
Bruno Haible <bruno@clisp.org>
parents:
4197
diff
changeset
|
22 # We need the following in order to create an <fnmatch.h> when the system |
4bf5f9b5190a
Make .h file creation more reliable.
Bruno Haible <bruno@clisp.org>
parents:
4197
diff
changeset
|
23 # doesn't have one that supports the required API. |
4552
24c461677d8c
Use the `$(VAR)' notation for AC_REPLACED variable names, rather than @VAR@.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4384
diff
changeset
|
24 all-local $(lib_OBJECTS): $(FNMATCH_H) |
4384
4bf5f9b5190a
Make .h file creation more reliable.
Bruno Haible <bruno@clisp.org>
parents:
4197
diff
changeset
|
25 fnmatch.h: fnmatch_.h |
4552
24c461677d8c
Use the `$(VAR)' notation for AC_REPLACED variable names, rather than @VAR@.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4384
diff
changeset
|
26 cp $(srcdir)/fnmatch_.h $@-t |
24c461677d8c
Use the `$(VAR)' notation for AC_REPLACED variable names, rather than @VAR@.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4384
diff
changeset
|
27 mv $@-t $@ |
4384
4bf5f9b5190a
Make .h file creation more reliable.
Bruno Haible <bruno@clisp.org>
parents:
4197
diff
changeset
|
28 MOSTLYCLEANFILES += fnmatch.h fnmatch.h-t |
4110 | 29 |
30 Include: | |
4197 | 31 <fnmatch.h> |
4110 | 32 |
5251
42b53a22aee5
Add a license tag to every module.
Bruno Haible <bruno@clisp.org>
parents:
4578
diff
changeset
|
33 License: |
42b53a22aee5
Add a license tag to every module.
Bruno Haible <bruno@clisp.org>
parents:
4578
diff
changeset
|
34 LGPL |
42b53a22aee5
Add a license tag to every module.
Bruno Haible <bruno@clisp.org>
parents:
4578
diff
changeset
|
35 |
4197 | 36 Maintainer: |
37 all, glibc |