Mercurial > hg > octave-lojdl > gnulib-hg
annotate modules/rpmatch @ 14730:f0a9a2cd267c
fclose: preserve fflush errors
Caught by gcc -Werror=unused-but-set-variable.
* lib/fclose.c (rpl_fclose): Don't lose fflush errors.
Reported by Jim Meyering.
Signed-off-by: Eric Blake <eblake@redhat.com>
author | Eric Blake <eblake@redhat.com> |
---|---|
date | Wed, 11 May 2011 11:35:06 -0600 |
parents | efab6978105e |
children | 0a705be282ae |
rev | line source |
---|---|
4110 | 1 Description: |
4172 | 2 Locale dependent classification of a response as matching "yes" or "no". |
4110 | 3 |
4 Files: | |
5 lib/rpmatch.c | |
6 m4/rpmatch.m4 | |
7 | |
8 Depends-on: | |
10001 | 9 stdlib |
10 extensions | |
14683
efab6978105e
Avoid unnecessary compilation units, through conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents:
13906
diff
changeset
|
11 stdbool [test $HAVE_RPMATCH = 0] |
efab6978105e
Avoid unnecessary compilation units, through conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents:
13906
diff
changeset
|
12 gettext-h [test $HAVE_RPMATCH = 0] |
efab6978105e
Avoid unnecessary compilation units, through conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents:
13906
diff
changeset
|
13 regex [test $HAVE_RPMATCH = 0] |
efab6978105e
Avoid unnecessary compilation units, through conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents:
13906
diff
changeset
|
14 strdup [test $HAVE_RPMATCH = 0] |
4110 | 15 |
16 configure.ac: | |
17 gl_FUNC_RPMATCH | |
10001 | 18 gl_STDLIB_MODULE_INDICATOR([rpmatch]) |
4110 | 19 |
20 Makefile.am: | |
21 | |
22 Include: | |
10001 | 23 <stdlib.h> |
4110 | 24 |
13906
fdacdce28472
regex: Mention link dependencies.
Bruno Haible <bruno@clisp.org>
parents:
10139
diff
changeset
|
25 Link: |
fdacdce28472
regex: Mention link dependencies.
Bruno Haible <bruno@clisp.org>
parents:
10139
diff
changeset
|
26 $(LTLIBINTL) when linking with libtool, $(LIBINTL) otherwise |
fdacdce28472
regex: Mention link dependencies.
Bruno Haible <bruno@clisp.org>
parents:
10139
diff
changeset
|
27 |
5251
42b53a22aee5
Add a license tag to every module.
Bruno Haible <bruno@clisp.org>
parents:
4197
diff
changeset
|
28 License: |
42b53a22aee5
Add a license tag to every module.
Bruno Haible <bruno@clisp.org>
parents:
4197
diff
changeset
|
29 GPL |
42b53a22aee5
Add a license tag to every module.
Bruno Haible <bruno@clisp.org>
parents:
4197
diff
changeset
|
30 |
4197 | 31 Maintainer: |
32 Jim Meyering | |
33 |