Mercurial > hg > octave-nkf > gnulib-hg
annotate modules/argp @ 10746:08e90860ec5e
Mark 'memchr' obsolete.
author | Bruno Haible <bruno@clisp.org> |
---|---|
date | Sun, 02 Nov 2008 16:34:09 +0100 |
parents | 54235d17e2af |
children | 3cb22d0bfd0b |
rev | line source |
---|---|
4386 | 1 Description: |
2 Hierarchical processing of command line arguments. | |
3 | |
9620
54235d17e2af
Make the functions argp_error, argp_failure known to xgettext.
Colin Watson <cjwatson@debian.org>
parents:
9224
diff
changeset
|
4 Notice: |
54235d17e2af
Make the functions argp_error, argp_failure known to xgettext.
Colin Watson <cjwatson@debian.org>
parents:
9224
diff
changeset
|
5 If you are using GNU gettext version 0.16.1 or older, add the following options |
54235d17e2af
Make the functions argp_error, argp_failure known to xgettext.
Colin Watson <cjwatson@debian.org>
parents:
9224
diff
changeset
|
6 to XGETTEXT_OPTIONS in your po/Makevars: |
54235d17e2af
Make the functions argp_error, argp_failure known to xgettext.
Colin Watson <cjwatson@debian.org>
parents:
9224
diff
changeset
|
7 --flag=argp_error:2:c-format --flag=argp_failure:4:c-format |
54235d17e2af
Make the functions argp_error, argp_failure known to xgettext.
Colin Watson <cjwatson@debian.org>
parents:
9224
diff
changeset
|
8 |
4386 | 9 Files: |
10 lib/argp.h | |
11 lib/argp-ba.c | |
12 lib/argp-eexst.c | |
13 lib/argp-fmtstream.c | |
14 lib/argp-fmtstream.h | |
15 lib/argp-fs-xinl.c | |
16 lib/argp-help.c | |
17 lib/argp-namefrob.h | |
18 lib/argp-parse.c | |
6478
61346b33f373
(Files): Add argp-pin.c
Sergey Poznyakoff <gray@gnu.org.ua>
parents:
5988
diff
changeset
|
19 lib/argp-pin.c |
4386 | 20 lib/argp-pv.c |
21 lib/argp-pvh.c | |
22 lib/argp-xinl.c | |
23 m4/argp.m4 | |
24 | |
25 Depends-on: | |
5067
1407b63897fd
Simplify argp by assuming alloca module.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5055
diff
changeset
|
26 alloca |
6478
61346b33f373
(Files): Add argp-pin.c
Sergey Poznyakoff <gray@gnu.org.ua>
parents:
5988
diff
changeset
|
27 dirname |
4386 | 28 getopt |
4595 | 29 strchrnul |
30 sysexits | |
7279 | 31 malloc |
4595 | 32 mempcpy |
33 strndup | |
4781
d762cb7714db
A little more dependencies of the 'argp' module.
Bruno Haible <bruno@clisp.org>
parents:
4595
diff
changeset
|
34 strcase |
5194
e1836405ab22
(Files): Add m4/unlocked-io.m4.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5067
diff
changeset
|
35 extensions |
5575 | 36 vsnprintf |
8788 | 37 sleep |
9224 | 38 strerror |
10746 | 39 memchr |
4386 | 40 |
41 configure.ac: | |
4595 | 42 gl_ARGP |
9620
54235d17e2af
Make the functions argp_error, argp_failure known to xgettext.
Colin Watson <cjwatson@debian.org>
parents:
9224
diff
changeset
|
43 m4_ifdef([AM_XGETTEXT_OPTION], |
54235d17e2af
Make the functions argp_error, argp_failure known to xgettext.
Colin Watson <cjwatson@debian.org>
parents:
9224
diff
changeset
|
44 [AM_XGETTEXT_OPTION([--flag=argp_error:2:c-format]) |
54235d17e2af
Make the functions argp_error, argp_failure known to xgettext.
Colin Watson <cjwatson@debian.org>
parents:
9224
diff
changeset
|
45 AM_XGETTEXT_OPTION([--flag=argp_failure:4:c-format])]) |
4386 | 46 |
47 Makefile.am: | |
48 lib_SOURCES += argp.h argp-ba.c argp-eexst.c \ | |
49 argp-fmtstream.c argp-fmtstream.h argp-fs-xinl.c argp-help.c \ | |
6478
61346b33f373
(Files): Add argp-pin.c
Sergey Poznyakoff <gray@gnu.org.ua>
parents:
5988
diff
changeset
|
50 argp-namefrob.h argp-parse.c argp-pin.c argp-pv.c argp-pvh.c \ |
61346b33f373
(Files): Add argp-pin.c
Sergey Poznyakoff <gray@gnu.org.ua>
parents:
5988
diff
changeset
|
51 argp-xinl.c |
4386 | 52 |
53 Include: | |
54 "argp.h" | |
55 | |
5251
42b53a22aee5
Add a license tag to every module.
Bruno Haible <bruno@clisp.org>
parents:
5194
diff
changeset
|
56 License: |
42b53a22aee5
Add a license tag to every module.
Bruno Haible <bruno@clisp.org>
parents:
5194
diff
changeset
|
57 LGPL |
42b53a22aee5
Add a license tag to every module.
Bruno Haible <bruno@clisp.org>
parents:
5194
diff
changeset
|
58 |
4386 | 59 Maintainer: |
5275
5d7573d9e8e7
(Maintainer): Replace Simon Josefsson by Sergey Poznyakoff.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5251
diff
changeset
|
60 Sergey Poznyakoff, glibc |