Mercurial > hg > octave-shane > gnulib-hg
annotate modules/fwriting @ 17632:86af85d364e1 default tip
unistd: port readlink to Mac OS X 10.3.9
* lib/unistd.in.h (_GL_INCLUDING_UNISTD_H): New macro, to work
around self-include problem in Mac OS X 10.3.9 when combined with
readlink module. Problem reported by Klaus Zietler in
<http://bugs.gnu.org/16825>.
author | Paul Eggert <eggert@penguin.cs.ucla.edu> |
---|---|
date | Tue, 25 Feb 2014 11:16:27 -0800 |
parents | 632892f73130 |
children |
rev | line source |
---|---|
8720 | 1 Description: |
2 fwriting() function: Determine whether a FILE stream is currently doing writing. | |
3 | |
4 Files: | |
5 lib/fwriting.h | |
6 lib/fwriting.c | |
9980
2c1ba629f5d5
New private include file lib/stdio-impl.h.
Bruno Haible <bruno@clisp.org>
parents:
8729
diff
changeset
|
7 lib/stdio-impl.h |
8720 | 8 m4/fwriting.m4 |
9 | |
10 Depends-on: | |
11 stdbool | |
12 | |
13 configure.ac: | |
14 gl_FUNC_FWRITING | |
14953
632892f73130
fwriting: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
9980
diff
changeset
|
15 if test $ac_cv_func___fwriting = no; then |
632892f73130
fwriting: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
9980
diff
changeset
|
16 AC_LIBOBJ([fwriting]) |
632892f73130
fwriting: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
9980
diff
changeset
|
17 fi |
8720 | 18 |
19 Makefile.am: | |
20 | |
21 Include: | |
22 "fwriting.h" | |
23 | |
24 License: | |
25 LGPL | |
26 | |
27 Maintainer: | |
8729
9901a6759c3a
I'm not responsible for these modules.
Bruno Haible <bruno@clisp.org>
parents:
8720
diff
changeset
|
28 Eric Blake |
8720 | 29 |