Mercurial > hg > octave-shane > gnulib-hg
annotate modules/fwritable @ 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 | 36cb7e4a23d5 |
children |
rev | line source |
---|---|
8689 | 1 Description: |
2 fwritable() function: Determine whether a FILE stream supports writing. | |
3 | |
4 Files: | |
5 lib/fwritable.h | |
6 lib/fwritable.c | |
9980
2c1ba629f5d5
New private include file lib/stdio-impl.h.
Bruno Haible <bruno@clisp.org>
parents:
8689
diff
changeset
|
7 lib/stdio-impl.h |
8689 | 8 m4/fwritable.m4 |
9 | |
10 Depends-on: | |
11 stdbool | |
12 | |
13 configure.ac: | |
14 gl_FUNC_FWRITABLE | |
14952
36cb7e4a23d5
fwritable: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
9980
diff
changeset
|
15 if test $ac_cv_func___fwritable = no; then |
36cb7e4a23d5
fwritable: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
9980
diff
changeset
|
16 AC_LIBOBJ([fwritable]) |
36cb7e4a23d5
fwritable: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
9980
diff
changeset
|
17 fi |
8689 | 18 |
19 Makefile.am: | |
20 | |
21 Include: | |
22 "fwritable.h" | |
23 | |
24 License: | |
25 LGPL | |
26 | |
27 Maintainer: | |
28 Bruno Haible, Eric Blake | |
29 |