Mercurial > hg > octave-shane > gnulib-hg
annotate modules/regex @ 13922:120aa31e498d
* build-aux/gendocs.sh: restore x bit
author | Eric Blake <eblake@redhat.com> |
---|---|
date | Fri, 10 Dec 2010 09:40:08 -0700 |
parents | fdacdce28472 |
children | 550f5258de22 |
rev | line source |
---|---|
4110 | 1 Description: |
4172 | 2 Regular expression matching. |
4110 | 3 |
4 Files: | |
5 lib/regex.h | |
6 lib/regex.c | |
5968
541fed6ae301
* modules/regex (Files): Add lib/regex_internal.c,
Paul Eggert <eggert@cs.ucla.edu>
parents:
5965
diff
changeset
|
7 lib/regex_internal.c |
541fed6ae301
* modules/regex (Files): Add lib/regex_internal.c,
Paul Eggert <eggert@cs.ucla.edu>
parents:
5965
diff
changeset
|
8 lib/regex_internal.h |
541fed6ae301
* modules/regex (Files): Add lib/regex_internal.c,
Paul Eggert <eggert@cs.ucla.edu>
parents:
5965
diff
changeset
|
9 lib/regexec.c |
541fed6ae301
* modules/regex (Files): Add lib/regex_internal.c,
Paul Eggert <eggert@cs.ucla.edu>
parents:
5965
diff
changeset
|
10 lib/regcomp.c |
4110 | 11 m4/regex.m4 |
9809
b17288dc1d83
Fix regex compilation error on HP-UX 11.
Bruno Haible <bruno@clisp.org>
parents:
9102
diff
changeset
|
12 m4/mbstate_t.m4 |
4110 | 13 |
14 Depends-on: | |
13367
df004f9880d2
regex: Don't require alloca.
Bruno Haible <bruno@clisp.org>
parents:
12567
diff
changeset
|
15 alloca-opt |
10952
43dfcdcad689
update regex to use the emulated mb*/wc* functions
Paolo Bonzini <bonzini@gnu.org>
parents:
10750
diff
changeset
|
16 btowc |
5968
541fed6ae301
* modules/regex (Files): Add lib/regex_internal.c,
Paul Eggert <eggert@cs.ucla.edu>
parents:
5965
diff
changeset
|
17 extensions |
5965
cd3c62f1332e
Support programs like Emacs that use gnulib but not gettext.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5541
diff
changeset
|
18 gettext-h |
8153
0f48fdcc7a64
Fix regex code so it doesn't rely on strcasecmp.
Paul Eggert <eggert@cs.ucla.edu>
parents:
8115
diff
changeset
|
19 localcharset |
13597
2009960fc420
Rename module 'malloc' -> 'malloc-gnu'.
Bruno Haible <bruno@clisp.org>
parents:
13368
diff
changeset
|
20 malloc-gnu |
11064
a6bae222e34a
Revert "regex: do not depend on obsolete modules."
Paolo Bonzini <bonzini@gnu.org>
parents:
11058
diff
changeset
|
21 memcmp |
a6bae222e34a
Revert "regex: do not depend on obsolete modules."
Paolo Bonzini <bonzini@gnu.org>
parents:
11058
diff
changeset
|
22 memmove |
10952
43dfcdcad689
update regex to use the emulated mb*/wc* functions
Paolo Bonzini <bonzini@gnu.org>
parents:
10750
diff
changeset
|
23 mbrtowc |
43dfcdcad689
update regex to use the emulated mb*/wc* functions
Paolo Bonzini <bonzini@gnu.org>
parents:
10750
diff
changeset
|
24 mbsinit |
12567
ceb1562f60a5
regcomp: sync from glibc; always use nl_langinfo
Jim Meyering <meyering@redhat.com>
parents:
11064
diff
changeset
|
25 nl_langinfo |
8115
b68ea869ca2d
* modules/regex (Depends-on): Add stdbool.
Bruno Haible <bruno@clisp.org>
parents:
8061
diff
changeset
|
26 stdbool |
7162
19c2e5121b2f
Add and change modules to make it easier for coreutils to use
Paul Eggert <eggert@cs.ucla.edu>
parents:
7100
diff
changeset
|
27 stdint |
6726
af9abbcedfbd
Merge regex changes from libc, removing some of our
Paul Eggert <eggert@cs.ucla.edu>
parents:
6310
diff
changeset
|
28 ssize_t |
7888
b6376840b47b
* modules/fnmatch (Depends-on): Depend on wchar.
Eric Blake <ebb9@byu.net>
parents:
7733
diff
changeset
|
29 wchar |
10952
43dfcdcad689
update regex to use the emulated mb*/wc* functions
Paolo Bonzini <bonzini@gnu.org>
parents:
10750
diff
changeset
|
30 wcrtomb |
7733
9d60f39f35c1
* MODULES.html.sh: New module wctype.
Paul Eggert <eggert@cs.ucla.edu>
parents:
7497
diff
changeset
|
31 wctype |
4110 | 32 |
33 configure.ac: | |
34 gl_REGEX | |
35 | |
36 Makefile.am: | |
37 | |
38 Include: | |
13368
ad29a61a81b9
Adjust #include directive style.
Bruno Haible <bruno@clisp.org>
parents:
13367
diff
changeset
|
39 <regex.h> |
4110 | 40 |
13906
fdacdce28472
regex: Mention link dependencies.
Bruno Haible <bruno@clisp.org>
parents:
13597
diff
changeset
|
41 Link: |
fdacdce28472
regex: Mention link dependencies.
Bruno Haible <bruno@clisp.org>
parents:
13597
diff
changeset
|
42 $(LTLIBINTL) when linking with libtool, $(LIBINTL) otherwise |
fdacdce28472
regex: Mention link dependencies.
Bruno Haible <bruno@clisp.org>
parents:
13597
diff
changeset
|
43 |
5251
42b53a22aee5
Add a license tag to every module.
Bruno Haible <bruno@clisp.org>
parents:
4513
diff
changeset
|
44 License: |
9102
404dc8725caf
Use the synonymous term LGPLv2.
Bruno Haible <bruno@clisp.org>
parents:
8153
diff
changeset
|
45 LGPLv2+ |
5251
42b53a22aee5
Add a license tag to every module.
Bruno Haible <bruno@clisp.org>
parents:
4513
diff
changeset
|
46 |
4197 | 47 Maintainer: |
48 all |